UNPKG

@pulumi/f5bigip

Version:

A Pulumi package for creating and managing F5 BigIP resources.

117 lines (116 loc) 3.62 kB
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 SSL certificate key present on local Disk */ 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 of ssl certificate key */ 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 SSL certificate key present on local Disk */ content?: pulumi.Input<string>; /** * Full Path Name of ssl key */ fullPath?: pulumi.Input<string>; /** * Name of the SSL Certificate key to be Imported on to BIGIP */ name?: pulumi.Input<string>; /** * Partition of ssl certificate key */ partition?: pulumi.Input<string>; /** * Passphrase on key. */ passphrase?: pulumi.Input<string>; } /** * The set of arguments for constructing a Key resource. */ export interface KeyArgs { /** * Content of SSL certificate key present on local Disk */ content: pulumi.Input<string>; /** * Full Path Name of ssl key */ fullPath?: pulumi.Input<string>; /** * Name of the SSL Certificate key to be Imported on to BIGIP */ name: pulumi.Input<string>; /** * Partition of ssl certificate key */ partition?: pulumi.Input<string>; /** * Passphrase on key. */ passphrase?: pulumi.Input<string>; }