import * as pulumi from "@pulumi/pulumi"; export declare class CertManagerCaCertificate extends pulumi.CustomResource { /** * Get an existing CertManagerCaCertificate 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?: CertManagerCaCertificateState, opts?: pulumi.CustomResourceOptions): CertManagerCaCertificate; /** * Returns true if the given object is an instance of CertManagerCaCertificate. 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 CertManagerCaCertificate; /** * The ID of the certificate authority to generate a certificate for */ readonly caId: pulumi.Output; /** * The generated CA certificate in PEM format */ readonly certificate: pulumi.Output; /** * The certificate chain of the CA in PEM format */ readonly certificateChain: pulumi.Output; /** * The maximum number of intermediate CAs that may follow this CA in the certificate chain. Use -1 for no path limit */ readonly maxPathLength: pulumi.Output; /** * The date and time when the CA expires in RFC3339 format (e.g., '2034-01-01T00:00:00Z') */ readonly notAfter: pulumi.Output; /** * The date and time when the CA becomes valid in RFC3339 format (e.g., '2024-01-01T00:00:00Z') */ readonly notBefore: pulumi.Output; /** * The ID of the parent CA (required for intermediate CAs) */ readonly parentCaId: pulumi.Output; /** * The serial number of the CA certificate */ readonly serialNumber: pulumi.Output; /** * Create a CertManagerCaCertificate 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: CertManagerCaCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CertManagerCaCertificate resources. */ export interface CertManagerCaCertificateState { /** * The ID of the certificate authority to generate a certificate for */ caId?: pulumi.Input; /** * The generated CA certificate in PEM format */ certificate?: pulumi.Input; /** * The certificate chain of the CA in PEM format */ certificateChain?: pulumi.Input; /** * The maximum number of intermediate CAs that may follow this CA in the certificate chain. Use -1 for no path limit */ maxPathLength?: pulumi.Input; /** * The date and time when the CA expires in RFC3339 format (e.g., '2034-01-01T00:00:00Z') */ notAfter?: pulumi.Input; /** * The date and time when the CA becomes valid in RFC3339 format (e.g., '2024-01-01T00:00:00Z') */ notBefore?: pulumi.Input; /** * The ID of the parent CA (required for intermediate CAs) */ parentCaId?: pulumi.Input; /** * The serial number of the CA certificate */ serialNumber?: pulumi.Input; } /** * The set of arguments for constructing a CertManagerCaCertificate resource. */ export interface CertManagerCaCertificateArgs { /** * The ID of the certificate authority to generate a certificate for */ caId: pulumi.Input; /** * The maximum number of intermediate CAs that may follow this CA in the certificate chain. Use -1 for no path limit */ maxPathLength?: pulumi.Input; /** * The date and time when the CA expires in RFC3339 format (e.g., '2034-01-01T00:00:00Z') */ notAfter: pulumi.Input; /** * The date and time when the CA becomes valid in RFC3339 format (e.g., '2024-01-01T00:00:00Z') */ notBefore: pulumi.Input; /** * The ID of the parent CA (required for intermediate CAs) */ parentCaId?: pulumi.Input; } //# sourceMappingURL=certManagerCaCertificate.d.ts.map