import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CpsDvEnrollment extends pulumi.CustomResource { /** * Get an existing CpsDvEnrollment 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?: CpsDvEnrollmentState, opts?: pulumi.CustomResourceOptions): CpsDvEnrollment; /** * Returns true if the given object is an instance of CpsDvEnrollment. 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 CpsDvEnrollment; /** * Whether acknowledge warnings before certificate verification. Default is false */ readonly acknowledgePreVerificationWarnings: pulumi.Output; /** * Contact information for the certificate administrator to use at organization */ readonly adminContact: pulumi.Output; /** * Allow to duplicate common name. Default is false */ readonly allowDuplicateCommonName: pulumi.Output; /** * Certificate trust chain type. Default is 'default' */ readonly certificateChainType: pulumi.Output; /** * Certificate type of enrollment */ readonly certificateType: pulumi.Output; /** * Common name used for enrollment */ readonly commonName: pulumi.Output; /** * Contract ID for which enrollment is retrieved */ readonly contractId: pulumi.Output; /** * Certificate signing request generated during enrollment creation */ readonly csr: pulumi.Output; /** * DNS challenge information */ readonly dnsChallenges: pulumi.Output; /** * HTTP challenge information */ readonly httpChallenges: pulumi.Output; /** * Settings containing network information and TLS Metadata used by CPS */ readonly networkConfiguration: pulumi.Output; /** * Organization information */ readonly organization: pulumi.Output; /** * The registration authority or certificate authority (CA) used to obtain a certificate */ readonly registrationAuthority: pulumi.Output; /** * List of SANs */ readonly sans: pulumi.Output; /** * Type of TLS deployment network */ readonly secureNetwork: pulumi.Output; /** * SHA algorithm type */ readonly signatureAlgorithm: pulumi.Output; /** * Whether Server Name Indication is used for enrollment */ readonly sniOnly: pulumi.Output; /** * Contact information for an administrator at Akamai */ readonly techContact: pulumi.Output; /** * Enables to set timeout for processing */ readonly timeouts: pulumi.Output; /** * Enrolment validation type */ readonly validationType: pulumi.Output; /** * Create a CpsDvEnrollment 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: CpsDvEnrollmentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CpsDvEnrollment resources. */ export interface CpsDvEnrollmentState { /** * Whether acknowledge warnings before certificate verification. Default is false */ acknowledgePreVerificationWarnings?: pulumi.Input; /** * Contact information for the certificate administrator to use at organization */ adminContact?: pulumi.Input; /** * Allow to duplicate common name. Default is false */ allowDuplicateCommonName?: pulumi.Input; /** * Certificate trust chain type. Default is 'default' */ certificateChainType?: pulumi.Input; /** * Certificate type of enrollment */ certificateType?: pulumi.Input; /** * Common name used for enrollment */ commonName?: pulumi.Input; /** * Contract ID for which enrollment is retrieved */ contractId?: pulumi.Input; /** * Certificate signing request generated during enrollment creation */ csr?: pulumi.Input; /** * DNS challenge information */ dnsChallenges?: pulumi.Input[] | undefined>; /** * HTTP challenge information */ httpChallenges?: pulumi.Input[] | undefined>; /** * Settings containing network information and TLS Metadata used by CPS */ networkConfiguration?: pulumi.Input; /** * Organization information */ organization?: pulumi.Input; /** * The registration authority or certificate authority (CA) used to obtain a certificate */ registrationAuthority?: pulumi.Input; /** * List of SANs */ sans?: pulumi.Input[] | undefined>; /** * Type of TLS deployment network */ secureNetwork?: pulumi.Input; /** * SHA algorithm type */ signatureAlgorithm?: pulumi.Input; /** * Whether Server Name Indication is used for enrollment */ sniOnly?: pulumi.Input; /** * Contact information for an administrator at Akamai */ techContact?: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * Enrolment validation type */ validationType?: pulumi.Input; } /** * The set of arguments for constructing a CpsDvEnrollment resource. */ export interface CpsDvEnrollmentArgs { /** * Whether acknowledge warnings before certificate verification. Default is false */ acknowledgePreVerificationWarnings?: pulumi.Input; /** * Contact information for the certificate administrator to use at organization */ adminContact: pulumi.Input; /** * Allow to duplicate common name. Default is false */ allowDuplicateCommonName?: pulumi.Input; /** * Certificate trust chain type. Default is 'default' */ certificateChainType?: pulumi.Input; /** * Common name used for enrollment */ commonName: pulumi.Input; /** * Contract ID for which enrollment is retrieved */ contractId: pulumi.Input; /** * Certificate signing request generated during enrollment creation */ csr: pulumi.Input; /** * Settings containing network information and TLS Metadata used by CPS */ networkConfiguration?: pulumi.Input; /** * Organization information */ organization: pulumi.Input; /** * List of SANs */ sans?: pulumi.Input[] | undefined>; /** * Type of TLS deployment network */ secureNetwork: pulumi.Input; /** * SHA algorithm type */ signatureAlgorithm: pulumi.Input; /** * Whether Server Name Indication is used for enrollment */ sniOnly: pulumi.Input; /** * Contact information for an administrator at Akamai */ techContact: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; } //# sourceMappingURL=cpsDvEnrollment.d.ts.map