import * as pulumi from "@pulumi/pulumi"; export declare class MtlsCertificate extends pulumi.CustomResource { /** * Get an existing MtlsCertificate 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?: MtlsCertificateState, opts?: pulumi.CustomResourceOptions): MtlsCertificate; /** * Returns true if the given object is an instance of MtlsCertificate. 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 MtlsCertificate; /** * Identifier. */ readonly accountId: pulumi.Output; /** * Indicates whether the certificate is a CA or leaf certificate. */ readonly ca: pulumi.Output; /** * The uploaded root CA certificate or certificate chain. Certificates must be provided in PEM format with the certificate matching the private_key first in the chain. */ readonly certificates: pulumi.Output; /** * When the certificate expires. */ readonly expiresOn: pulumi.Output; /** * The certificate authority that issued the certificate. */ readonly issuer: pulumi.Output; /** * Optional unique name for the certificate. Only used for human readability. */ readonly name: pulumi.Output; /** * The private key for the certificate. This field is only needed for specific use cases such as using a custom certificate with Zero Trust's block page. */ readonly privateKey: pulumi.Output; /** * The certificate serial number. */ readonly serialNumber: pulumi.Output; /** * The type of hash used for the certificate. */ readonly signature: pulumi.Output; /** * This is the time the certificate was updated. */ readonly updatedAt: pulumi.Output; /** * This is the time the certificate was uploaded. */ readonly uploadedOn: pulumi.Output; /** * Create a MtlsCertificate 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: MtlsCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MtlsCertificate resources. */ export interface MtlsCertificateState { /** * Identifier. */ accountId?: pulumi.Input; /** * Indicates whether the certificate is a CA or leaf certificate. */ ca?: pulumi.Input; /** * The uploaded root CA certificate or certificate chain. Certificates must be provided in PEM format with the certificate matching the private_key first in the chain. */ certificates?: pulumi.Input; /** * When the certificate expires. */ expiresOn?: pulumi.Input; /** * The certificate authority that issued the certificate. */ issuer?: pulumi.Input; /** * Optional unique name for the certificate. Only used for human readability. */ name?: pulumi.Input; /** * The private key for the certificate. This field is only needed for specific use cases such as using a custom certificate with Zero Trust's block page. */ privateKey?: pulumi.Input; /** * The certificate serial number. */ serialNumber?: pulumi.Input; /** * The type of hash used for the certificate. */ signature?: pulumi.Input; /** * This is the time the certificate was updated. */ updatedAt?: pulumi.Input; /** * This is the time the certificate was uploaded. */ uploadedOn?: pulumi.Input; } /** * The set of arguments for constructing a MtlsCertificate resource. */ export interface MtlsCertificateArgs { /** * Identifier. */ accountId: pulumi.Input; /** * Indicates whether the certificate is a CA or leaf certificate. */ ca: pulumi.Input; /** * The uploaded root CA certificate or certificate chain. Certificates must be provided in PEM format with the certificate matching the private_key first in the chain. */ certificates: pulumi.Input; /** * Optional unique name for the certificate. Only used for human readability. */ name?: pulumi.Input; /** * The private key for the certificate. This field is only needed for specific use cases such as using a custom certificate with Zero Trust's block page. */ privateKey?: pulumi.Input; } //# sourceMappingURL=mtlsCertificate.d.ts.map