import * as pulumi from "@pulumi/pulumi"; /** * Creates a new custom SSL certificate on your IP Load Balancing * * ## Import * * SSL can be imported using the following format `service_name` and the `id` of the ssl, separated by "/" e.g. * * bash * * ```sh * $ pulumi import ovh:IpLoadBalancing/ssl:Ssl sslname service_name/ssl_id * ``` */ export declare class Ssl extends pulumi.CustomResource { /** * Get an existing Ssl 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?: SslState, opts?: pulumi.CustomResourceOptions): Ssl; /** * Returns true if the given object is an instance of Ssl. 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 Ssl; /** * Certificate */ readonly certificate: pulumi.Output; /** * Certificate chain */ readonly chain: pulumi.Output; /** * Readable label for loadbalancer ssl */ readonly displayName: pulumi.Output; /** * Expire date of your SSL certificate. */ readonly expireDate: pulumi.Output; /** * Fingerprint of your SSL certificate. */ readonly fingerprint: pulumi.Output; /** * Certificate key */ readonly key: pulumi.Output; /** * Subject Alternative Name of your SSL certificate. */ readonly sans: pulumi.Output; /** * Serial of your SSL certificate (Deprecated, use fingerprint instead !) */ readonly serial: pulumi.Output; /** * The internal name of your IP load balancing */ readonly serviceName: pulumi.Output; /** * Subject of your SSL certificate. */ readonly subject: pulumi.Output; /** * Type of your SSL certificate. 'built' for SSL certificates managed by the IP Load Balancing. 'custom' for user manager certificates. */ readonly type: pulumi.Output; /** * Create a Ssl 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: SslArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Ssl resources. */ export interface SslState { /** * Certificate */ certificate?: pulumi.Input; /** * Certificate chain */ chain?: pulumi.Input; /** * Readable label for loadbalancer ssl */ displayName?: pulumi.Input; /** * Expire date of your SSL certificate. */ expireDate?: pulumi.Input; /** * Fingerprint of your SSL certificate. */ fingerprint?: pulumi.Input; /** * Certificate key */ key?: pulumi.Input; /** * Subject Alternative Name of your SSL certificate. */ sans?: pulumi.Input[]>; /** * Serial of your SSL certificate (Deprecated, use fingerprint instead !) */ serial?: pulumi.Input; /** * The internal name of your IP load balancing */ serviceName?: pulumi.Input; /** * Subject of your SSL certificate. */ subject?: pulumi.Input; /** * Type of your SSL certificate. 'built' for SSL certificates managed by the IP Load Balancing. 'custom' for user manager certificates. */ type?: pulumi.Input; } /** * The set of arguments for constructing a Ssl resource. */ export interface SslArgs { /** * Certificate */ certificate: pulumi.Input; /** * Certificate chain */ chain?: pulumi.Input; /** * Readable label for loadbalancer ssl */ displayName?: pulumi.Input; /** * Certificate key */ key: pulumi.Input; /** * The internal name of your IP load balancing */ serviceName: pulumi.Input; }