@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
122 lines (121 loc) • 4.61 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* `f5bigip.ltm.CipherRule` Manages F5 BIG-IP LTM cipher rule using iControl REST.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as f5bigip from "@pulumi/f5bigip";
*
* const testCipherRule = new f5bigip.ltm.CipherRule("test_cipher_rule", {
* name: "/Common/test_cipher_rule",
* cipher: "TLS13-AES128-GCM-SHA256:TLS13-AES256-GCM-SHA384",
* dhGroups: "P256:P384:FFDHE2048:FFDHE3072:FFDHE4096",
* signatureAlgorithms: "DEFAULT",
* });
* ```
*
* ## Importing
*
* An existing cipher rule can be imported into this resource by supplying the cipher rule full path name ex : `/partition/name`
* An example is below:
* ```sh
* $ terraform import bigip_ltm_cipher_rule.test_cipher_rule /Common/test_cipher_rule
* ```
*/
export declare class CipherRule extends pulumi.CustomResource {
/**
* Get an existing CipherRule 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?: CipherRuleState, opts?: pulumi.CustomResourceOptions): CipherRule;
/**
* Returns true if the given object is an instance of CipherRule. 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 CipherRule;
/**
* Specifies one or more Cipher Suites used,this is a colon (:) separated string of cipher suites. example, `TLS13-AES128-GCM-SHA256:TLS13-AES256-GCM-SHA384`.
*/
readonly cipher: pulumi.Output<string>;
/**
* The Partition in which the Cipher Rule will be created.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Specifies the DH Groups algorithms, separated by colons (:).
*/
readonly dhGroups: pulumi.Output<string>;
/**
* Name of the Cipher Rule. Name should be in pattern `partition` + `cipherRuleName`
*/
readonly name: pulumi.Output<string>;
/**
* Specifies the Signature Algorithms, separated by colons (:).
*/
readonly signatureAlgorithms: pulumi.Output<string>;
/**
* Create a CipherRule 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: CipherRuleArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering CipherRule resources.
*/
export interface CipherRuleState {
/**
* Specifies one or more Cipher Suites used,this is a colon (:) separated string of cipher suites. example, `TLS13-AES128-GCM-SHA256:TLS13-AES256-GCM-SHA384`.
*/
cipher?: pulumi.Input<string>;
/**
* The Partition in which the Cipher Rule will be created.
*/
description?: pulumi.Input<string>;
/**
* Specifies the DH Groups algorithms, separated by colons (:).
*/
dhGroups?: pulumi.Input<string>;
/**
* Name of the Cipher Rule. Name should be in pattern `partition` + `cipherRuleName`
*/
name?: pulumi.Input<string>;
/**
* Specifies the Signature Algorithms, separated by colons (:).
*/
signatureAlgorithms?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a CipherRule resource.
*/
export interface CipherRuleArgs {
/**
* Specifies one or more Cipher Suites used,this is a colon (:) separated string of cipher suites. example, `TLS13-AES128-GCM-SHA256:TLS13-AES256-GCM-SHA384`.
*/
cipher: pulumi.Input<string>;
/**
* The Partition in which the Cipher Rule will be created.
*/
description?: pulumi.Input<string>;
/**
* Specifies the DH Groups algorithms, separated by colons (:).
*/
dhGroups?: pulumi.Input<string>;
/**
* Name of the Cipher Rule. Name should be in pattern `partition` + `cipherRuleName`
*/
name: pulumi.Input<string>;
/**
* Specifies the Signature Algorithms, separated by colons (:).
*/
signatureAlgorithms?: pulumi.Input<string>;
}