import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage */ export declare class AuthenticatedOriginPulls extends pulumi.CustomResource { /** * Get an existing AuthenticatedOriginPulls 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?: AuthenticatedOriginPullsState, opts?: pulumi.CustomResourceOptions): AuthenticatedOriginPulls; /** * Returns true if the given object is an instance of AuthenticatedOriginPulls. 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 AuthenticatedOriginPulls; /** * Identifier. */ readonly certId: 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 certStatus: pulumi.Output; /** * The time when the certificate was updated. */ readonly certUpdatedAt: pulumi.Output; /** * The time when the certificate was uploaded. */ readonly certUploadedOn: pulumi.Output; /** * The hostname certificate. */ readonly certificate: pulumi.Output; readonly configs: pulumi.Output; /** * The time when the certificate was created. */ readonly createdAt: pulumi.Output; /** * Indicates whether hostname-level authenticated origin pulls is enabled. A null value voids the association. */ readonly enabled: pulumi.Output; /** * The date when the certificate expires. */ readonly expiresOn: pulumi.Output; /** * The hostname on the origin for which the client certificate uploaded will be used. */ readonly hostname: 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 updated. */ readonly updatedAt: pulumi.Output; /** * Identifier. */ readonly zoneId: pulumi.Output; /** * Create a AuthenticatedOriginPulls 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: AuthenticatedOriginPullsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AuthenticatedOriginPulls resources. */ export interface AuthenticatedOriginPullsState { /** * Identifier. */ certId?: pulumi.Input; /** * Status of the certificate or the association. * Available values: "initializing", "pending*deployment", "pending*deletion", "active", "deleted", "deployment*timed*out", "deletion*timed*out". */ certStatus?: pulumi.Input; /** * The time when the certificate was updated. */ certUpdatedAt?: pulumi.Input; /** * The time when the certificate was uploaded. */ certUploadedOn?: pulumi.Input; /** * The hostname certificate. */ certificate?: pulumi.Input; configs?: pulumi.Input[]>; /** * The time when the certificate was created. */ createdAt?: pulumi.Input; /** * Indicates whether hostname-level authenticated origin pulls is enabled. A null value voids the association. */ enabled?: pulumi.Input; /** * The date when the certificate expires. */ expiresOn?: pulumi.Input; /** * The hostname on the origin for which the client certificate uploaded will be used. */ hostname?: 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 updated. */ updatedAt?: pulumi.Input; /** * Identifier. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a AuthenticatedOriginPulls resource. */ export interface AuthenticatedOriginPullsArgs { configs: pulumi.Input[]>; /** * The hostname on the origin for which the client certificate uploaded will be used. */ hostname?: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; }