import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a new CertificateIssuanceConfig in a given project and location. */ export declare class CertificateIssuanceConfig extends pulumi.CustomResource { /** * Get an existing CertificateIssuanceConfig 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): CertificateIssuanceConfig; /** * Returns true if the given object is an instance of CertificateIssuanceConfig. 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 CertificateIssuanceConfig; /** * The CA that issues the workload certificate. It includes the CA address, type, authentication to CA service, etc. */ readonly certificateAuthorityConfig: pulumi.Output; /** * Required. A user-provided name of the certificate config. */ readonly certificateIssuanceConfigId: pulumi.Output; /** * The creation timestamp of a CertificateIssuanceConfig. */ readonly createTime: pulumi.Output; /** * One or more paragraphs of text description of a CertificateIssuanceConfig. */ readonly description: pulumi.Output; /** * The key algorithm to use when generating the private key. */ readonly keyAlgorithm: pulumi.Output; /** * Set of labels associated with a CertificateIssuanceConfig. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * Workload certificate lifetime requested. */ readonly lifetime: pulumi.Output; readonly location: pulumi.Output; /** * A user-defined name of the certificate issuance config. CertificateIssuanceConfig names must be unique globally and match pattern `projects/*/locations/*/certificateIssuanceConfigs/*`. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Specifies the percentage of elapsed time of the certificate lifetime to wait before renewing the certificate. Must be a number between 1-99, inclusive. */ readonly rotationWindowPercentage: pulumi.Output; /** * The last update timestamp of a CertificateIssuanceConfig. */ readonly updateTime: pulumi.Output; /** * Create a CertificateIssuanceConfig 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: CertificateIssuanceConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CertificateIssuanceConfig resource. */ export interface CertificateIssuanceConfigArgs { /** * The CA that issues the workload certificate. It includes the CA address, type, authentication to CA service, etc. */ certificateAuthorityConfig: pulumi.Input; /** * Required. A user-provided name of the certificate config. */ certificateIssuanceConfigId: pulumi.Input; /** * One or more paragraphs of text description of a CertificateIssuanceConfig. */ description?: pulumi.Input; /** * The key algorithm to use when generating the private key. */ keyAlgorithm: pulumi.Input; /** * Set of labels associated with a CertificateIssuanceConfig. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Workload certificate lifetime requested. */ lifetime: pulumi.Input; location?: pulumi.Input; /** * A user-defined name of the certificate issuance config. CertificateIssuanceConfig names must be unique globally and match pattern `projects/*/locations/*/certificateIssuanceConfigs/*`. */ name?: pulumi.Input; project?: pulumi.Input; /** * Specifies the percentage of elapsed time of the certificate lifetime to wait before renewing the certificate. Must be a number between 1-99, inclusive. */ rotationWindowPercentage: pulumi.Input; }