import * as pulumi from "@pulumi/pulumi";
export declare class PullzoneHostname extends pulumi.CustomResource {
    /**
     * Get an existing PullzoneHostname resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PullzoneHostnameState, opts?: pulumi.CustomResourceOptions): PullzoneHostname;
    /**
     * Returns true if the given object is an instance of PullzoneHostname.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is PullzoneHostname;
    /**
     * The certificate for the hostname, in PEM format. ***Important***: the Bunny API will not return the certificate data, so you'll have to make sure you're importing the correct certificate.
     */
    readonly certificate: pulumi.Output<string>;
    /**
     * The certificate private key for the hostname, in PEM format. ***Important***: the Bunny API will not return the certificate key, so you'll have to make sure you're importing the correct certificate key.
     */
    readonly certificateKey: pulumi.Output<string>;
    /**
     * Indicates whether SSL should be enforced for the hostname.
     */
    readonly forceSsl: pulumi.Output<boolean>;
    /**
     * Indicates whether the hostname is internal (in the CDN domain) or provided by the user.
     */
    readonly isInternal: pulumi.Output<boolean>;
    /**
     * The hostname value for the domain name.
     */
    readonly name: pulumi.Output<string>;
    /**
     * The ID of the linked pull zone.
     */
    readonly pullzone: pulumi.Output<number>;
    /**
     * The unique ID of the hostname.
     */
    readonly pullzoneHostnameId: pulumi.Output<number>;
    /**
     * Indicates whether the hostname should support HTTPS. If a custom certificate is not provided via the <code>certificate</code> attribute, a Domain-validated TLS certificate will be automatically obtained and managed by Bunny. ***Important***: it is not possible to tell managed and custom certificates apart for imported resources.
     */
    readonly tlsEnabled: pulumi.Output<boolean>;
    /**
     * Create a PullzoneHostname resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: PullzoneHostnameArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering PullzoneHostname resources.
 */
export interface PullzoneHostnameState {
    /**
     * The certificate for the hostname, in PEM format. ***Important***: the Bunny API will not return the certificate data, so you'll have to make sure you're importing the correct certificate.
     */
    certificate?: pulumi.Input<string | undefined>;
    /**
     * The certificate private key for the hostname, in PEM format. ***Important***: the Bunny API will not return the certificate key, so you'll have to make sure you're importing the correct certificate key.
     */
    certificateKey?: pulumi.Input<string | undefined>;
    /**
     * Indicates whether SSL should be enforced for the hostname.
     */
    forceSsl?: pulumi.Input<boolean | undefined>;
    /**
     * Indicates whether the hostname is internal (in the CDN domain) or provided by the user.
     */
    isInternal?: pulumi.Input<boolean | undefined>;
    /**
     * The hostname value for the domain name.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * The ID of the linked pull zone.
     */
    pullzone?: pulumi.Input<number | undefined>;
    /**
     * The unique ID of the hostname.
     */
    pullzoneHostnameId?: pulumi.Input<number | undefined>;
    /**
     * Indicates whether the hostname should support HTTPS. If a custom certificate is not provided via the <code>certificate</code> attribute, a Domain-validated TLS certificate will be automatically obtained and managed by Bunny. ***Important***: it is not possible to tell managed and custom certificates apart for imported resources.
     */
    tlsEnabled?: pulumi.Input<boolean | undefined>;
}
/**
 * The set of arguments for constructing a PullzoneHostname resource.
 */
export interface PullzoneHostnameArgs {
    /**
     * The certificate for the hostname, in PEM format. ***Important***: the Bunny API will not return the certificate data, so you'll have to make sure you're importing the correct certificate.
     */
    certificate?: pulumi.Input<string | undefined>;
    /**
     * The certificate private key for the hostname, in PEM format. ***Important***: the Bunny API will not return the certificate key, so you'll have to make sure you're importing the correct certificate key.
     */
    certificateKey?: pulumi.Input<string | undefined>;
    /**
     * Indicates whether SSL should be enforced for the hostname.
     */
    forceSsl?: pulumi.Input<boolean | undefined>;
    /**
     * The hostname value for the domain name.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * The ID of the linked pull zone.
     */
    pullzone: pulumi.Input<number>;
    /**
     * Indicates whether the hostname should support HTTPS. If a custom certificate is not provided via the <code>certificate</code> attribute, a Domain-validated TLS certificate will be automatically obtained and managed by Bunny. ***Important***: it is not possible to tell managed and custom certificates apart for imported resources.
     */
    tlsEnabled?: pulumi.Input<boolean | undefined>;
}
//# sourceMappingURL=pullzoneHostname.d.ts.map