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<pulumi.ID>, 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<string>;
    /**
     * The generated CA certificate in PEM format
     */
    readonly certificate: pulumi.Output<string>;
    /**
     * The certificate chain of the CA in PEM format
     */
    readonly certificateChain: pulumi.Output<string>;
    /**
     * 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<number>;
    /**
     * The date and time when the CA expires in RFC3339 format (e.g., '2034-01-01T00:00:00Z')
     */
    readonly notAfter: pulumi.Output<string>;
    /**
     * The date and time when the CA becomes valid in RFC3339 format (e.g., '2024-01-01T00:00:00Z')
     */
    readonly notBefore: pulumi.Output<string>;
    /**
     * The ID of the parent CA (required for intermediate CAs)
     */
    readonly parentCaId: pulumi.Output<string | undefined>;
    /**
     * The serial number of the CA certificate
     */
    readonly serialNumber: pulumi.Output<string>;
    /**
     * 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<string | undefined>;
    /**
     * The generated CA certificate in PEM format
     */
    certificate?: pulumi.Input<string | undefined>;
    /**
     * The certificate chain of the CA in PEM format
     */
    certificateChain?: pulumi.Input<string | undefined>;
    /**
     * The maximum number of intermediate CAs that may follow this CA in the certificate chain. Use -1 for no path limit
     */
    maxPathLength?: pulumi.Input<number | undefined>;
    /**
     * The date and time when the CA expires in RFC3339 format (e.g., '2034-01-01T00:00:00Z')
     */
    notAfter?: pulumi.Input<string | undefined>;
    /**
     * The date and time when the CA becomes valid in RFC3339 format (e.g., '2024-01-01T00:00:00Z')
     */
    notBefore?: pulumi.Input<string | undefined>;
    /**
     * The ID of the parent CA (required for intermediate CAs)
     */
    parentCaId?: pulumi.Input<string | undefined>;
    /**
     * The serial number of the CA certificate
     */
    serialNumber?: pulumi.Input<string | undefined>;
}
/**
 * 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<string>;
    /**
     * The maximum number of intermediate CAs that may follow this CA in the certificate chain. Use -1 for no path limit
     */
    maxPathLength?: pulumi.Input<number | undefined>;
    /**
     * The date and time when the CA expires in RFC3339 format (e.g., '2034-01-01T00:00:00Z')
     */
    notAfter: pulumi.Input<string>;
    /**
     * The date and time when the CA becomes valid in RFC3339 format (e.g., '2024-01-01T00:00:00Z')
     */
    notBefore: pulumi.Input<string>;
    /**
     * The ID of the parent CA (required for intermediate CAs)
     */
    parentCaId?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=certManagerCaCertificate.d.ts.map