import * as pulumi from "@pulumi/pulumi"; /** * Alias for `hcloud.UploadedCertificate` to remain backwards compatible. * Deprecated. */ export declare class Certificate extends pulumi.CustomResource { /** * Get an existing Certificate 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?: CertificateState, opts?: pulumi.CustomResourceOptions): Certificate; /** * Returns true if the given object is an instance of Certificate. 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 Certificate; readonly certificate: pulumi.Output; readonly created: pulumi.Output; readonly domainNames: pulumi.Output; readonly fingerprint: pulumi.Output; readonly labels: pulumi.Output<{ [key: string]: string; } | undefined>; readonly name: pulumi.Output; readonly notValidAfter: pulumi.Output; readonly notValidBefore: pulumi.Output; readonly privateKey: pulumi.Output; readonly type: pulumi.Output; /** * Create a Certificate 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: CertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Certificate resources. */ export interface CertificateState { certificate?: pulumi.Input; created?: pulumi.Input; domainNames?: pulumi.Input[]>; fingerprint?: pulumi.Input; labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; name?: pulumi.Input; notValidAfter?: pulumi.Input; notValidBefore?: pulumi.Input; privateKey?: pulumi.Input; type?: pulumi.Input; } /** * The set of arguments for constructing a Certificate resource. */ export interface CertificateArgs { certificate: pulumi.Input; labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; name?: pulumi.Input; privateKey: pulumi.Input; }