@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
141 lines (140 loc) • 4.32 kB
TypeScript
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 Disk
*/
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 of ssl certificate
*/
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 Disk
*/
content?: pulumi.Input<string>;
/**
* Full Path Name of ssl certificate
*/
fullPath?: pulumi.Input<string>;
/**
* Specifies the issuer certificate.
*/
issuerCert?: pulumi.Input<string>;
/**
* Specifies the type of monitoring used.
*/
monitoringType?: pulumi.Input<string>;
/**
* Name of the SSL Certificate to be Imported on to BIGIP
*/
name?: pulumi.Input<string>;
/**
* Specifies the OCSP responder.
*/
ocsp?: pulumi.Input<string>;
/**
* Partition of ssl certificate
*/
partition?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a Certificate resource.
*/
export interface CertificateArgs {
/**
* Content of certificate on Disk
*/
content: pulumi.Input<string>;
/**
* Full Path Name of ssl certificate
*/
fullPath?: pulumi.Input<string>;
/**
* Specifies the issuer certificate.
*/
issuerCert?: pulumi.Input<string>;
/**
* Specifies the type of monitoring used.
*/
monitoringType?: pulumi.Input<string>;
/**
* Name of the SSL Certificate to be Imported on to BIGIP
*/
name: pulumi.Input<string>;
/**
* Specifies the OCSP responder.
*/
ocsp?: pulumi.Input<string>;
/**
* Partition of ssl certificate
*/
partition?: pulumi.Input<string>;
}