import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class PropertyDomainownershipLateValidation extends pulumi.CustomResource { /** * Get an existing PropertyDomainownershipLateValidation 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?: PropertyDomainownershipLateValidationState, opts?: pulumi.CustomResourceOptions): PropertyDomainownershipLateValidation; /** * Returns true if the given object is an instance of PropertyDomainownershipLateValidation. 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 PropertyDomainownershipLateValidation; /** * Contract ID of the Property. */ readonly contractId: pulumi.Output; /** * Group ID of the Property. */ readonly groupId: pulumi.Output; /** * Property ID of the Property which domains will be validated. */ readonly propertyId: pulumi.Output; readonly timeouts: pulumi.Output; /** * The method used to validate the domain. Possible values are: * * `DNS_CNAME` - For this method, Akamai generates a `cnameRecord` that you copy as the `target` to a `CNAME` record of your DNS configuration. The record's name needs to be in the `_acme-challenge.domain-name` format. * * `DNS_TXT` - For this method, Akamai generates a `txtRecord` with a token `value` that you copy as the `target` to a `TXT` record of your DNS configuration. The record's name needs to be in the `_akamai-{host|wildcard|domain}-challenge.domainName` format based on the validation scope. * * `HTTP` - Applies only to domains with the `HOST` validation scope. For this method, you create the file containing a token and place it on your HTTP server in the location specified by the `validation_challenge.http_file.path` or use a redirect to the `validation_challenge.http_redirect.to` with the token. */ readonly validationMethod: pulumi.Output; /** * Property version containing domains to be validated. */ readonly version: pulumi.Output; /** * Create a PropertyDomainownershipLateValidation 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: PropertyDomainownershipLateValidationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PropertyDomainownershipLateValidation resources. */ export interface PropertyDomainownershipLateValidationState { /** * Contract ID of the Property. */ contractId?: pulumi.Input; /** * Group ID of the Property. */ groupId?: pulumi.Input; /** * Property ID of the Property which domains will be validated. */ propertyId?: pulumi.Input; timeouts?: pulumi.Input; /** * The method used to validate the domain. Possible values are: * * `DNS_CNAME` - For this method, Akamai generates a `cnameRecord` that you copy as the `target` to a `CNAME` record of your DNS configuration. The record's name needs to be in the `_acme-challenge.domain-name` format. * * `DNS_TXT` - For this method, Akamai generates a `txtRecord` with a token `value` that you copy as the `target` to a `TXT` record of your DNS configuration. The record's name needs to be in the `_akamai-{host|wildcard|domain}-challenge.domainName` format based on the validation scope. * * `HTTP` - Applies only to domains with the `HOST` validation scope. For this method, you create the file containing a token and place it on your HTTP server in the location specified by the `validation_challenge.http_file.path` or use a redirect to the `validation_challenge.http_redirect.to` with the token. */ validationMethod?: pulumi.Input; /** * Property version containing domains to be validated. */ version?: pulumi.Input; } /** * The set of arguments for constructing a PropertyDomainownershipLateValidation resource. */ export interface PropertyDomainownershipLateValidationArgs { /** * Contract ID of the Property. */ contractId: pulumi.Input; /** * Group ID of the Property. */ groupId: pulumi.Input; /** * Property ID of the Property which domains will be validated. */ propertyId: pulumi.Input; timeouts?: pulumi.Input; /** * The method used to validate the domain. Possible values are: * * `DNS_CNAME` - For this method, Akamai generates a `cnameRecord` that you copy as the `target` to a `CNAME` record of your DNS configuration. The record's name needs to be in the `_acme-challenge.domain-name` format. * * `DNS_TXT` - For this method, Akamai generates a `txtRecord` with a token `value` that you copy as the `target` to a `TXT` record of your DNS configuration. The record's name needs to be in the `_akamai-{host|wildcard|domain}-challenge.domainName` format based on the validation scope. * * `HTTP` - Applies only to domains with the `HOST` validation scope. For this method, you create the file containing a token and place it on your HTTP server in the location specified by the `validation_challenge.http_file.path` or use a redirect to the `validation_challenge.http_redirect.to` with the token. */ validationMethod: pulumi.Input; /** * Property version containing domains to be validated. */ version: pulumi.Input; } //# sourceMappingURL=propertyDomainownershipLateValidation.d.ts.map