import * as pulumi from "@pulumi/pulumi"; export declare class AuthenticatedOriginPullsHostnameCertificate extends pulumi.CustomResource { /** * Get an existing AuthenticatedOriginPullsHostnameCertificate 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?: AuthenticatedOriginPullsHostnameCertificateState, opts?: pulumi.CustomResourceOptions): AuthenticatedOriginPullsHostnameCertificate; /** * Returns true if the given object is an instance of AuthenticatedOriginPullsHostnameCertificate. 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 AuthenticatedOriginPullsHostnameCertificate; /** * The hostname certificate. */ readonly certificate: pulumi.Output; /** * The date when the certificate expires. */ readonly expiresOn: pulumi.Output; /** * The certificate authority that issued the certificate. */ readonly issuer: pulumi.Output; /** * The hostname certificate'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 or the association. * Available values: "initializing", "pending_deployment", "pending_deletion", "active", "deleted", "deployment_timed_out", "deletion_timed_out". */ readonly status: pulumi.Output; /** * The time when the certificate was uploaded. */ readonly uploadedOn: pulumi.Output; /** * Identifier. */ readonly zoneId: pulumi.Output; /** * Create a AuthenticatedOriginPullsHostnameCertificate 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: AuthenticatedOriginPullsHostnameCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AuthenticatedOriginPullsHostnameCertificate resources. */ export interface AuthenticatedOriginPullsHostnameCertificateState { /** * The hostname certificate. */ certificate?: pulumi.Input; /** * The date when the certificate expires. */ expiresOn?: pulumi.Input; /** * The certificate authority that issued the certificate. */ issuer?: pulumi.Input; /** * The hostname certificate'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 or the association. * Available values: "initializing", "pending_deployment", "pending_deletion", "active", "deleted", "deployment_timed_out", "deletion_timed_out". */ status?: pulumi.Input; /** * The time when the certificate was uploaded. */ uploadedOn?: pulumi.Input; /** * Identifier. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a AuthenticatedOriginPullsHostnameCertificate resource. */ export interface AuthenticatedOriginPullsHostnameCertificateArgs { /** * The hostname certificate. */ certificate: pulumi.Input; /** * The hostname certificate's private key. */ privateKey: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; } //# sourceMappingURL=authenticatedOriginPullsHostnameCertificate.d.ts.map