import * as pulumi from "@pulumi/pulumi"; export declare class AuthenticatedOriginPullsCertificate extends pulumi.CustomResource { /** * Get an existing AuthenticatedOriginPullsCertificate 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?: AuthenticatedOriginPullsCertificateState, opts?: pulumi.CustomResourceOptions): AuthenticatedOriginPullsCertificate; /** * Returns true if the given object is an instance of AuthenticatedOriginPullsCertificate. 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 AuthenticatedOriginPullsCertificate; /** * The zone's leaf certificate. */ readonly certificate: pulumi.Output; /** * Identifier. */ readonly certificateId: pulumi.Output; /** * Indicates whether zone-level authenticated origin pulls is enabled. */ readonly enabled: pulumi.Output; /** * When the certificate from the authority expires. */ readonly expiresOn: pulumi.Output; /** * The certificate authority that issued the certificate. */ readonly issuer: pulumi.Output; /** * The zone's private key. */ readonly privateKey: pulumi.Output; /** * The serial number on the uploaded certificate. */ readonly serialNumber: pulumi.Output; /** * The type of hash used for the certificate. */ readonly signature: pulumi.Output; /** * Status of the certificate activation. * Available values: "initializing", "pending_deployment", "pending_deletion", "active", "deleted", "deployment_timed_out", "deletion_timed_out". */ readonly status: pulumi.Output; /** * This is the time the certificate was uploaded. */ readonly uploadedOn: pulumi.Output; /** * Identifier. */ readonly zoneId: pulumi.Output; /** * Create a AuthenticatedOriginPullsCertificate 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: AuthenticatedOriginPullsCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AuthenticatedOriginPullsCertificate resources. */ export interface AuthenticatedOriginPullsCertificateState { /** * The zone's leaf certificate. */ certificate?: pulumi.Input; /** * Identifier. */ certificateId?: pulumi.Input; /** * Indicates whether zone-level authenticated origin pulls is enabled. */ enabled?: pulumi.Input; /** * When the certificate from the authority expires. */ expiresOn?: pulumi.Input; /** * The certificate authority that issued the certificate. */ issuer?: pulumi.Input; /** * The zone's private key. */ privateKey?: pulumi.Input; /** * The serial number on the uploaded certificate. */ serialNumber?: pulumi.Input; /** * The type of hash used for the certificate. */ signature?: pulumi.Input; /** * Status of the certificate activation. * Available values: "initializing", "pending_deployment", "pending_deletion", "active", "deleted", "deployment_timed_out", "deletion_timed_out". */ status?: pulumi.Input; /** * This is the time the certificate was uploaded. */ uploadedOn?: pulumi.Input; /** * Identifier. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a AuthenticatedOriginPullsCertificate resource. */ export interface AuthenticatedOriginPullsCertificateArgs { /** * The zone's leaf certificate. */ certificate: pulumi.Input; /** * The zone's private key. */ privateKey: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; } //# sourceMappingURL=authenticatedOriginPullsCertificate.d.ts.map