import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CpsUploadCertificate extends pulumi.CustomResource { /** * Get an existing CpsUploadCertificate 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?: CpsUploadCertificateState, opts?: pulumi.CustomResourceOptions): CpsUploadCertificate; /** * Returns true if the given object is an instance of CpsUploadCertificate. 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 CpsUploadCertificate; /** * Whether to acknowledge change management */ readonly acknowledgeChangeManagement: pulumi.Output; /** * Whether to acknowledge post-verification warnings */ readonly acknowledgePostVerificationWarnings: pulumi.Output; /** * List of post-verification warnings to be automatically acknowledged */ readonly autoApproveWarnings: pulumi.Output; /** * ECDSA certificate in pem format to be uploaded */ readonly certificateEcdsaPem: pulumi.Output; /** * RSA certificate in pem format to be uploaded */ readonly certificateRsaPem: pulumi.Output; /** * The unique identifier of the enrollment */ readonly enrollmentId: pulumi.Output; /** * Enables to set timeout for processing */ readonly timeouts: pulumi.Output; /** * Trust chain in pem format for provided ECDSA certificate */ readonly trustChainEcdsaPem: pulumi.Output; /** * Trust chain in pem format for provided RSA certificate */ readonly trustChainRsaPem: pulumi.Output; /** * Whether to wait for certificate to be deployed */ readonly waitForDeployment: pulumi.Output; /** * Create a CpsUploadCertificate 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: CpsUploadCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CpsUploadCertificate resources. */ export interface CpsUploadCertificateState { /** * Whether to acknowledge change management */ acknowledgeChangeManagement?: pulumi.Input; /** * Whether to acknowledge post-verification warnings */ acknowledgePostVerificationWarnings?: pulumi.Input; /** * List of post-verification warnings to be automatically acknowledged */ autoApproveWarnings?: pulumi.Input[] | undefined>; /** * ECDSA certificate in pem format to be uploaded */ certificateEcdsaPem?: pulumi.Input; /** * RSA certificate in pem format to be uploaded */ certificateRsaPem?: pulumi.Input; /** * The unique identifier of the enrollment */ enrollmentId?: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * Trust chain in pem format for provided ECDSA certificate */ trustChainEcdsaPem?: pulumi.Input; /** * Trust chain in pem format for provided RSA certificate */ trustChainRsaPem?: pulumi.Input; /** * Whether to wait for certificate to be deployed */ waitForDeployment?: pulumi.Input; } /** * The set of arguments for constructing a CpsUploadCertificate resource. */ export interface CpsUploadCertificateArgs { /** * Whether to acknowledge change management */ acknowledgeChangeManagement?: pulumi.Input; /** * Whether to acknowledge post-verification warnings */ acknowledgePostVerificationWarnings?: pulumi.Input; /** * List of post-verification warnings to be automatically acknowledged */ autoApproveWarnings?: pulumi.Input[] | undefined>; /** * ECDSA certificate in pem format to be uploaded */ certificateEcdsaPem?: pulumi.Input; /** * RSA certificate in pem format to be uploaded */ certificateRsaPem?: pulumi.Input; /** * The unique identifier of the enrollment */ enrollmentId: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * Trust chain in pem format for provided ECDSA certificate */ trustChainEcdsaPem?: pulumi.Input; /** * Trust chain in pem format for provided RSA certificate */ trustChainRsaPem?: pulumi.Input; /** * Whether to wait for certificate to be deployed */ waitForDeployment?: pulumi.Input; } //# sourceMappingURL=cpsUploadCertificate.d.ts.map