@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
117 lines • 4.39 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* `f5bigip.ssl.Key` This resource will import SSL certificate key on BIG-IP LTM.
* Certificate key can be imported from certificate key 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_key = new f5bigip.ssl.Key("test-key", {
* name: "serverkey.key",
* content: std.file({
* input: "serverkey.key",
* }).then(invoke => invoke.result),
* partition: "Common",
* });
* ```
*/
export declare class Key extends pulumi.CustomResource {
/**
* Get an existing Key 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?: KeyState, opts?: pulumi.CustomResourceOptions): Key;
/**
* Returns true if the given object is an instance of Key. 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 Key;
/**
* Content of certificate key on Local Disk,path of SSL certificate key will be provided to terraform `file` function
*/
readonly content: pulumi.Output<string>;
/**
* Full Path Name of ssl key
*/
readonly fullPath: pulumi.Output<string>;
/**
* Name of the SSL Certificate key to be Imported on to BIGIP
*/
readonly name: pulumi.Output<string>;
/**
* Partition on to SSL Certificate key 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>;
/**
* Passphrase on key.
*/
readonly passphrase: pulumi.Output<string | undefined>;
/**
* Create a Key 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: KeyArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Key resources.
*/
export interface KeyState {
/**
* Content of certificate key on Local Disk,path of SSL certificate key will be provided to terraform `file` function
*/
content?: pulumi.Input<string | undefined>;
/**
* Full Path Name of ssl key
*/
fullPath?: pulumi.Input<string | undefined>;
/**
* Name of the SSL Certificate key to be Imported on to BIGIP
*/
name?: pulumi.Input<string | undefined>;
/**
* Partition on to SSL Certificate key 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>;
/**
* Passphrase on key.
*/
passphrase?: pulumi.Input<string | undefined>;
}
/**
* The set of arguments for constructing a Key resource.
*/
export interface KeyArgs {
/**
* Content of certificate key on Local Disk,path of SSL certificate key will be provided to terraform `file` function
*/
content: pulumi.Input<string>;
/**
* Full Path Name of ssl key
*/
fullPath?: pulumi.Input<string | undefined>;
/**
* Name of the SSL Certificate key to be Imported on to BIGIP
*/
name: pulumi.Input<string>;
/**
* Partition on to SSL Certificate key 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>;
/**
* Passphrase on key.
*/
passphrase?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=key.d.ts.map