import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class LbCertificate extends pulumi.CustomResource { /** * Get an existing LbCertificate 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?: LbCertificateState, opts?: pulumi.CustomResourceOptions): LbCertificate; /** * Returns true if the given object is an instance of LbCertificate. 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 LbCertificate; /** * Main domain of the certificate */ readonly commonName: pulumi.Output; /** * The custom type certificate type configuration */ readonly customCertificate: pulumi.Output; /** * The identifier (SHA-1) of the certificate */ readonly fingerprint: pulumi.Output; /** * The load-balancer ID */ readonly lbId: pulumi.Output; /** * The Let's Encrypt type certificate configuration */ readonly letsencrypt: pulumi.Output; /** * The name of the load-balancer certificate */ readonly name: pulumi.Output; /** * The not valid after validity bound timestamp */ readonly notValidAfter: pulumi.Output; /** * The not valid before validity bound timestamp */ readonly notValidBefore: pulumi.Output; /** * Certificate status */ readonly status: pulumi.Output; /** * The alternative domain names of the certificate */ readonly subjectAlternativeNames: pulumi.Output; /** * Create a LbCertificate 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: LbCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LbCertificate resources. */ export interface LbCertificateState { /** * Main domain of the certificate */ commonName?: pulumi.Input; /** * The custom type certificate type configuration */ customCertificate?: pulumi.Input; /** * The identifier (SHA-1) of the certificate */ fingerprint?: pulumi.Input; /** * The load-balancer ID */ lbId?: pulumi.Input; /** * The Let's Encrypt type certificate configuration */ letsencrypt?: pulumi.Input; /** * The name of the load-balancer certificate */ name?: pulumi.Input; /** * The not valid after validity bound timestamp */ notValidAfter?: pulumi.Input; /** * The not valid before validity bound timestamp */ notValidBefore?: pulumi.Input; /** * Certificate status */ status?: pulumi.Input; /** * The alternative domain names of the certificate */ subjectAlternativeNames?: pulumi.Input[]>; } /** * The set of arguments for constructing a LbCertificate resource. */ export interface LbCertificateArgs { /** * The custom type certificate type configuration */ customCertificate?: pulumi.Input; /** * The load-balancer ID */ lbId: pulumi.Input; /** * The Let's Encrypt type certificate configuration */ letsencrypt?: pulumi.Input; /** * The name of the load-balancer certificate */ name?: pulumi.Input; }