import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class PropertyHostnameBucket extends pulumi.CustomResource { /** * Get an existing PropertyHostnameBucket 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, state?: PropertyHostnameBucketState, opts?: pulumi.CustomResourceOptions): PropertyHostnameBucket; /** * Returns true if the given object is an instance of PropertyHostnameBucket. 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 PropertyHostnameBucket; /** * The ID of the latest hostname bucket activation. */ readonly activationId: pulumi.Output; /** * The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible */ readonly contractId: pulumi.Output; /** * The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible */ readonly groupId: pulumi.Output; /** * The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes. */ readonly hostnameCount: pulumi.Output; /** * The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname. */ readonly hostnames: pulumi.Output<{ [key: string]: outputs.PropertyHostnameBucketHostnames; }>; /** * The network to activate on, either `STAGING` or `PRODUCTION`. */ readonly network: pulumi.Output; /** * Assigns a log message to the request. */ readonly note: pulumi.Output; /** * Email addresses to notify when the activation status changes. */ readonly notifyEmails: pulumi.Output; /** * The number of hostnames with a `DEFAULT` certificate type that are still in the `PENDING` state. */ readonly pendingDefaultCerts: pulumi.Output; /** * The unique identifier for the property. */ readonly propertyId: pulumi.Output; /** * The timeout value in minutes after which a single hostname activation will be canceled. Defaults to 120 minutes. */ readonly timeoutForActivation: pulumi.Output; /** * Create a PropertyHostnameBucket 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: PropertyHostnameBucketArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PropertyHostnameBucket resources. */ export interface PropertyHostnameBucketState { /** * The ID of the latest hostname bucket activation. */ activationId?: pulumi.Input; /** * The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible */ contractId?: pulumi.Input; /** * The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible */ groupId?: pulumi.Input; /** * The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes. */ hostnameCount?: pulumi.Input; /** * The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname. */ hostnames?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The network to activate on, either `STAGING` or `PRODUCTION`. */ network?: pulumi.Input; /** * Assigns a log message to the request. */ note?: pulumi.Input; /** * Email addresses to notify when the activation status changes. */ notifyEmails?: pulumi.Input[] | undefined>; /** * The number of hostnames with a `DEFAULT` certificate type that are still in the `PENDING` state. */ pendingDefaultCerts?: pulumi.Input; /** * The unique identifier for the property. */ propertyId?: pulumi.Input; /** * The timeout value in minutes after which a single hostname activation will be canceled. Defaults to 120 minutes. */ timeoutForActivation?: pulumi.Input; } /** * The set of arguments for constructing a PropertyHostnameBucket resource. */ export interface PropertyHostnameBucketArgs { /** * The unique identifier for the contract. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible */ contractId?: pulumi.Input; /** * The unique identifier for the group. Provide it if resolving the property without 'contract_id' and 'group_id' is not possible */ groupId?: pulumi.Input; /** * The computed number of hostnames after applying desired modifications. Used only to informduring the plan phase about the number of hostnames that will be active after making the changes. */ hostnameCount?: pulumi.Input; /** * The hostnames mapping. The key represents 'cname_from' and the value contains hostnames details, consisting of certificate provisioning type and edge hostname. */ hostnames: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The network to activate on, either `STAGING` or `PRODUCTION`. */ network: pulumi.Input; /** * Assigns a log message to the request. */ note?: pulumi.Input; /** * Email addresses to notify when the activation status changes. */ notifyEmails?: pulumi.Input[] | undefined>; /** * The unique identifier for the property. */ propertyId: pulumi.Input; /** * The timeout value in minutes after which a single hostname activation will be canceled. Defaults to 120 minutes. */ timeoutForActivation?: pulumi.Input; } //# sourceMappingURL=propertyHostnameBucket.d.ts.map