UNPKG

@pulumi/f5bigip

Version:

A Pulumi package for creating and managing F5 BigIP resources.

141 lines 5.18 kB
import * as pulumi from "@pulumi/pulumi"; /** * `f5bigip.ssl.Certificate` This resource will import SSL certificates on BIG-IP LTM. * Certificates can be imported from certificate files on the local disk, in PEM format * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as f5bigip from "@pulumi/f5bigip"; * import * as std from "@pulumi/std"; * * const test_cert = new f5bigip.ssl.Certificate("test-cert", { * name: "servercert.crt", * content: std.file({ * input: "servercert.crt", * }).then(invoke => invoke.result), * partition: "Common", * }); * ``` */ 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<pulumi.ID>, 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; /** * Content of certificate on Local Disk,path of SSL certificate will be provided to terraform `file` function */ readonly content: pulumi.Output<string>; /** * Full Path Name of ssl certificate */ readonly fullPath: pulumi.Output<string>; /** * Specifies the issuer certificate. */ readonly issuerCert: pulumi.Output<string | undefined>; /** * Specifies the type of monitoring used. */ readonly monitoringType: pulumi.Output<string | undefined>; /** * Name of the SSL Certificate to be Imported on to BIGIP */ readonly name: pulumi.Output<string>; /** * Specifies the OCSP responder. */ readonly ocsp: pulumi.Output<string | undefined>; /** * Partition on to SSL Certificate to be imported. The parameter is not required when running terraform import operation. In such case the name must be provided in fullPath format. */ readonly partition: pulumi.Output<string | undefined>; /** * 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 { /** * Content of certificate on Local Disk,path of SSL certificate will be provided to terraform `file` function */ content?: pulumi.Input<string | undefined>; /** * Full Path Name of ssl certificate */ fullPath?: pulumi.Input<string | undefined>; /** * Specifies the issuer certificate. */ issuerCert?: pulumi.Input<string | undefined>; /** * Specifies the type of monitoring used. */ monitoringType?: pulumi.Input<string | undefined>; /** * Name of the SSL Certificate to be Imported on to BIGIP */ name?: pulumi.Input<string | undefined>; /** * Specifies the OCSP responder. */ ocsp?: pulumi.Input<string | undefined>; /** * Partition on to SSL Certificate to be imported. The parameter is not required when running terraform import operation. In such case the name must be provided in fullPath format. */ partition?: pulumi.Input<string | undefined>; } /** * The set of arguments for constructing a Certificate resource. */ export interface CertificateArgs { /** * Content of certificate on Local Disk,path of SSL certificate will be provided to terraform `file` function */ content: pulumi.Input<string>; /** * Full Path Name of ssl certificate */ fullPath?: pulumi.Input<string | undefined>; /** * Specifies the issuer certificate. */ issuerCert?: pulumi.Input<string | undefined>; /** * Specifies the type of monitoring used. */ monitoringType?: pulumi.Input<string | undefined>; /** * Name of the SSL Certificate to be Imported on to BIGIP */ name: pulumi.Input<string>; /** * Specifies the OCSP responder. */ ocsp?: pulumi.Input<string | undefined>; /** * Partition on to SSL Certificate to be imported. The parameter is not required when running terraform import operation. In such case the name must be provided in fullPath format. */ partition?: pulumi.Input<string | undefined>; } //# sourceMappingURL=certificate.d.ts.map