@pulumi/f5bigip 3.8.0 → 3.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/as3.d.ts +1 -1
  2. package/as3.js +1 -1
  3. package/fastHttpApp.d.ts +199 -0
  4. package/fastHttpApp.js +96 -0
  5. package/fastHttpApp.js.map +1 -0
  6. package/fastHttpsApp.d.ts +226 -0
  7. package/fastHttpsApp.js +100 -0
  8. package/fastHttpsApp.js.map +1 -0
  9. package/fastTcpApp.d.ts +215 -0
  10. package/fastTcpApp.js +106 -0
  11. package/fastTcpApp.js.map +1 -0
  12. package/index.d.ts +3 -0
  13. package/index.js +15 -0
  14. package/index.js.map +1 -1
  15. package/ltm/monitor.d.ts +6 -6
  16. package/ltm/monitor.js +3 -3
  17. package/ltm/node.d.ts +3 -2
  18. package/ltm/node.js +2 -1
  19. package/ltm/node.js.map +1 -1
  20. package/ltm/policy.d.ts +2 -1
  21. package/ltm/policy.js +2 -1
  22. package/ltm/policy.js.map +1 -1
  23. package/ltm/pool.d.ts +5 -4
  24. package/ltm/pool.js +2 -1
  25. package/ltm/pool.js.map +1 -1
  26. package/ltm/virtualServer.d.ts +2 -1
  27. package/ltm/virtualServer.js +2 -1
  28. package/ltm/virtualServer.js.map +1 -1
  29. package/net/selfIp.d.ts +19 -3
  30. package/net/selfIp.js +16 -0
  31. package/net/selfIp.js.map +1 -1
  32. package/package.json +4 -3
  33. package/package.json.bak +2 -1
  34. package/package.json.dev +4 -3
  35. package/ssl/certificate.d.ts +1 -1
  36. package/ssl/certificate.js +1 -1
  37. package/ssl/getWafSignatures.d.ts +11 -1
  38. package/ssl/getWafSignatures.js +3 -0
  39. package/ssl/getWafSignatures.js.map +1 -1
  40. package/ssl/key.d.ts +1 -1
  41. package/ssl/key.js +1 -1
  42. package/sys/iapp.d.ts +1 -1
  43. package/sys/iapp.js +1 -1
  44. package/types/input.d.ts +319 -125
  45. package/types/output.d.ts +196 -2
  46. package/wafPolicy.d.ts +93 -10
  47. package/wafPolicy.js +14 -1
  48. package/wafPolicy.js.map +1 -1
@@ -0,0 +1,215 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import { input as inputs, output as outputs } from "./types";
3
+ /**
4
+ * `f5bigip.FastTcpApp` This resource will create and manage FAST TCP applications on BIG-IP from provided JSON declaration.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as f5bigip from "@pulumi/f5bigip";
11
+ *
12
+ * const fast_tcp_app = new f5bigip.FastTcpApp("fast-tcp-app", {
13
+ * application: "tcp_app_2",
14
+ * fastCreatePoolMembers: [{
15
+ * addresses: [
16
+ * "10.11.34.65",
17
+ * "56.43.23.76",
18
+ * ],
19
+ * connectionLimit: 4,
20
+ * port: 443,
21
+ * priorityGroup: 1,
22
+ * shareNodes: true,
23
+ * }],
24
+ * tenant: "tcp_app_tenant",
25
+ * virtualServer: {
26
+ * ip: "11.12.16.30",
27
+ * port: 443,
28
+ * },
29
+ * });
30
+ * ```
31
+ */
32
+ export declare class FastTcpApp extends pulumi.CustomResource {
33
+ /**
34
+ * Get an existing FastTcpApp resource's state with the given name, ID, and optional extra
35
+ * properties used to qualify the lookup.
36
+ *
37
+ * @param name The _unique_ name of the resulting resource.
38
+ * @param id The _unique_ provider ID of the resource to lookup.
39
+ * @param state Any extra arguments used during the lookup.
40
+ * @param opts Optional settings to control the behavior of the CustomResource.
41
+ */
42
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: FastTcpAppState, opts?: pulumi.CustomResourceOptions): FastTcpApp;
43
+ /**
44
+ * Returns true if the given object is an instance of FastTcpApp. This is designed to work even
45
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
46
+ */
47
+ static isInstance(obj: any): obj is FastTcpApp;
48
+ /**
49
+ * Name of the FAST TCP application.
50
+ */
51
+ readonly application: pulumi.Output<string>;
52
+ /**
53
+ * Name of an existing BIG-IP pool.
54
+ */
55
+ readonly existPoolName: pulumi.Output<string | undefined>;
56
+ /**
57
+ * Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
58
+ */
59
+ readonly existingMonitor: pulumi.Output<string | undefined>;
60
+ /**
61
+ * Name of an existing BIG-IP SNAT pool.
62
+ */
63
+ readonly existingSnatPool: pulumi.Output<string | undefined>;
64
+ /**
65
+ * `fastCreateMonitor` block takes input for FAST-Generated Pool Monitor.
66
+ * See Pool Monitor below for more details.
67
+ */
68
+ readonly fastCreateMonitor: pulumi.Output<outputs.FastTcpAppFastCreateMonitor | undefined>;
69
+ /**
70
+ * `fastCreatePoolMembers` block takes input for FAST-Generated Pool.
71
+ * See Pool Members below for more details.
72
+ */
73
+ readonly fastCreatePoolMembers: pulumi.Output<outputs.FastTcpAppFastCreatePoolMember[] | undefined>;
74
+ /**
75
+ * List of address to be used for FAST-Generated SNAT Pool.
76
+ */
77
+ readonly fastCreateSnatPoolAddresses: pulumi.Output<string[] | undefined>;
78
+ /**
79
+ * Json payload for FAST TCP application.
80
+ */
81
+ readonly fastTcpJson: pulumi.Output<string>;
82
+ /**
83
+ * A `load balancing method` is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
84
+ */
85
+ readonly loadBalancingMode: pulumi.Output<string | undefined>;
86
+ /**
87
+ * Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
88
+ */
89
+ readonly slowRampTime: pulumi.Output<number | undefined>;
90
+ /**
91
+ * Name of the FAST TCP application tenant.
92
+ */
93
+ readonly tenant: pulumi.Output<string>;
94
+ /**
95
+ * `virtualServer` block will provide `ip` and `port` options to be used for virtual server.
96
+ * See virtual server below for more details.
97
+ */
98
+ readonly virtualServer: pulumi.Output<outputs.FastTcpAppVirtualServer | undefined>;
99
+ /**
100
+ * Create a FastTcpApp resource with the given unique name, arguments, and options.
101
+ *
102
+ * @param name The _unique_ name of the resource.
103
+ * @param args The arguments to use to populate this resource's properties.
104
+ * @param opts A bag of options that control this resource's behavior.
105
+ */
106
+ constructor(name: string, args: FastTcpAppArgs, opts?: pulumi.CustomResourceOptions);
107
+ }
108
+ /**
109
+ * Input properties used for looking up and filtering FastTcpApp resources.
110
+ */
111
+ export interface FastTcpAppState {
112
+ /**
113
+ * Name of the FAST TCP application.
114
+ */
115
+ application?: pulumi.Input<string>;
116
+ /**
117
+ * Name of an existing BIG-IP pool.
118
+ */
119
+ existPoolName?: pulumi.Input<string>;
120
+ /**
121
+ * Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
122
+ */
123
+ existingMonitor?: pulumi.Input<string>;
124
+ /**
125
+ * Name of an existing BIG-IP SNAT pool.
126
+ */
127
+ existingSnatPool?: pulumi.Input<string>;
128
+ /**
129
+ * `fastCreateMonitor` block takes input for FAST-Generated Pool Monitor.
130
+ * See Pool Monitor below for more details.
131
+ */
132
+ fastCreateMonitor?: pulumi.Input<inputs.FastTcpAppFastCreateMonitor>;
133
+ /**
134
+ * `fastCreatePoolMembers` block takes input for FAST-Generated Pool.
135
+ * See Pool Members below for more details.
136
+ */
137
+ fastCreatePoolMembers?: pulumi.Input<pulumi.Input<inputs.FastTcpAppFastCreatePoolMember>[]>;
138
+ /**
139
+ * List of address to be used for FAST-Generated SNAT Pool.
140
+ */
141
+ fastCreateSnatPoolAddresses?: pulumi.Input<pulumi.Input<string>[]>;
142
+ /**
143
+ * Json payload for FAST TCP application.
144
+ */
145
+ fastTcpJson?: pulumi.Input<string>;
146
+ /**
147
+ * A `load balancing method` is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
148
+ */
149
+ loadBalancingMode?: pulumi.Input<string>;
150
+ /**
151
+ * Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
152
+ */
153
+ slowRampTime?: pulumi.Input<number>;
154
+ /**
155
+ * Name of the FAST TCP application tenant.
156
+ */
157
+ tenant?: pulumi.Input<string>;
158
+ /**
159
+ * `virtualServer` block will provide `ip` and `port` options to be used for virtual server.
160
+ * See virtual server below for more details.
161
+ */
162
+ virtualServer?: pulumi.Input<inputs.FastTcpAppVirtualServer>;
163
+ }
164
+ /**
165
+ * The set of arguments for constructing a FastTcpApp resource.
166
+ */
167
+ export interface FastTcpAppArgs {
168
+ /**
169
+ * Name of the FAST TCP application.
170
+ */
171
+ application: pulumi.Input<string>;
172
+ /**
173
+ * Name of an existing BIG-IP pool.
174
+ */
175
+ existPoolName?: pulumi.Input<string>;
176
+ /**
177
+ * Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
178
+ */
179
+ existingMonitor?: pulumi.Input<string>;
180
+ /**
181
+ * Name of an existing BIG-IP SNAT pool.
182
+ */
183
+ existingSnatPool?: pulumi.Input<string>;
184
+ /**
185
+ * `fastCreateMonitor` block takes input for FAST-Generated Pool Monitor.
186
+ * See Pool Monitor below for more details.
187
+ */
188
+ fastCreateMonitor?: pulumi.Input<inputs.FastTcpAppFastCreateMonitor>;
189
+ /**
190
+ * `fastCreatePoolMembers` block takes input for FAST-Generated Pool.
191
+ * See Pool Members below for more details.
192
+ */
193
+ fastCreatePoolMembers?: pulumi.Input<pulumi.Input<inputs.FastTcpAppFastCreatePoolMember>[]>;
194
+ /**
195
+ * List of address to be used for FAST-Generated SNAT Pool.
196
+ */
197
+ fastCreateSnatPoolAddresses?: pulumi.Input<pulumi.Input<string>[]>;
198
+ /**
199
+ * A `load balancing method` is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method
200
+ */
201
+ loadBalancingMode?: pulumi.Input<string>;
202
+ /**
203
+ * Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
204
+ */
205
+ slowRampTime?: pulumi.Input<number>;
206
+ /**
207
+ * Name of the FAST TCP application tenant.
208
+ */
209
+ tenant: pulumi.Input<string>;
210
+ /**
211
+ * `virtualServer` block will provide `ip` and `port` options to be used for virtual server.
212
+ * See virtual server below for more details.
213
+ */
214
+ virtualServer?: pulumi.Input<inputs.FastTcpAppVirtualServer>;
215
+ }
package/fastTcpApp.js ADDED
@@ -0,0 +1,106 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.FastTcpApp = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * `f5bigip.FastTcpApp` This resource will create and manage FAST TCP applications on BIG-IP from provided JSON declaration.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as f5bigip from "@pulumi/f5bigip";
16
+ *
17
+ * const fast_tcp_app = new f5bigip.FastTcpApp("fast-tcp-app", {
18
+ * application: "tcp_app_2",
19
+ * fastCreatePoolMembers: [{
20
+ * addresses: [
21
+ * "10.11.34.65",
22
+ * "56.43.23.76",
23
+ * ],
24
+ * connectionLimit: 4,
25
+ * port: 443,
26
+ * priorityGroup: 1,
27
+ * shareNodes: true,
28
+ * }],
29
+ * tenant: "tcp_app_tenant",
30
+ * virtualServer: {
31
+ * ip: "11.12.16.30",
32
+ * port: 443,
33
+ * },
34
+ * });
35
+ * ```
36
+ */
37
+ class FastTcpApp extends pulumi.CustomResource {
38
+ constructor(name, argsOrState, opts) {
39
+ let resourceInputs = {};
40
+ opts = opts || {};
41
+ if (opts.id) {
42
+ const state = argsOrState;
43
+ resourceInputs["application"] = state ? state.application : undefined;
44
+ resourceInputs["existPoolName"] = state ? state.existPoolName : undefined;
45
+ resourceInputs["existingMonitor"] = state ? state.existingMonitor : undefined;
46
+ resourceInputs["existingSnatPool"] = state ? state.existingSnatPool : undefined;
47
+ resourceInputs["fastCreateMonitor"] = state ? state.fastCreateMonitor : undefined;
48
+ resourceInputs["fastCreatePoolMembers"] = state ? state.fastCreatePoolMembers : undefined;
49
+ resourceInputs["fastCreateSnatPoolAddresses"] = state ? state.fastCreateSnatPoolAddresses : undefined;
50
+ resourceInputs["fastTcpJson"] = state ? state.fastTcpJson : undefined;
51
+ resourceInputs["loadBalancingMode"] = state ? state.loadBalancingMode : undefined;
52
+ resourceInputs["slowRampTime"] = state ? state.slowRampTime : undefined;
53
+ resourceInputs["tenant"] = state ? state.tenant : undefined;
54
+ resourceInputs["virtualServer"] = state ? state.virtualServer : undefined;
55
+ }
56
+ else {
57
+ const args = argsOrState;
58
+ if ((!args || args.application === undefined) && !opts.urn) {
59
+ throw new Error("Missing required property 'application'");
60
+ }
61
+ if ((!args || args.tenant === undefined) && !opts.urn) {
62
+ throw new Error("Missing required property 'tenant'");
63
+ }
64
+ resourceInputs["application"] = args ? args.application : undefined;
65
+ resourceInputs["existPoolName"] = args ? args.existPoolName : undefined;
66
+ resourceInputs["existingMonitor"] = args ? args.existingMonitor : undefined;
67
+ resourceInputs["existingSnatPool"] = args ? args.existingSnatPool : undefined;
68
+ resourceInputs["fastCreateMonitor"] = args ? args.fastCreateMonitor : undefined;
69
+ resourceInputs["fastCreatePoolMembers"] = args ? args.fastCreatePoolMembers : undefined;
70
+ resourceInputs["fastCreateSnatPoolAddresses"] = args ? args.fastCreateSnatPoolAddresses : undefined;
71
+ resourceInputs["loadBalancingMode"] = args ? args.loadBalancingMode : undefined;
72
+ resourceInputs["slowRampTime"] = args ? args.slowRampTime : undefined;
73
+ resourceInputs["tenant"] = args ? args.tenant : undefined;
74
+ resourceInputs["virtualServer"] = args ? args.virtualServer : undefined;
75
+ resourceInputs["fastTcpJson"] = undefined /*out*/;
76
+ }
77
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
78
+ super(FastTcpApp.__pulumiType, name, resourceInputs, opts);
79
+ }
80
+ /**
81
+ * Get an existing FastTcpApp resource's state with the given name, ID, and optional extra
82
+ * properties used to qualify the lookup.
83
+ *
84
+ * @param name The _unique_ name of the resulting resource.
85
+ * @param id The _unique_ provider ID of the resource to lookup.
86
+ * @param state Any extra arguments used during the lookup.
87
+ * @param opts Optional settings to control the behavior of the CustomResource.
88
+ */
89
+ static get(name, id, state, opts) {
90
+ return new FastTcpApp(name, state, Object.assign(Object.assign({}, opts), { id: id }));
91
+ }
92
+ /**
93
+ * Returns true if the given object is an instance of FastTcpApp. This is designed to work even
94
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
95
+ */
96
+ static isInstance(obj) {
97
+ if (obj === undefined || obj === null) {
98
+ return false;
99
+ }
100
+ return obj['__pulumiType'] === FastTcpApp.__pulumiType;
101
+ }
102
+ }
103
+ exports.FastTcpApp = FastTcpApp;
104
+ /** @internal */
105
+ FastTcpApp.__pulumiType = 'f5bigip:index/fastTcpApp:FastTcpApp';
106
+ //# sourceMappingURL=fastTcpApp.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fastTcpApp.js","sourceRoot":"","sources":["../fastTcpApp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IAwFjD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IA/HD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AA1BL,gCAiIC;AAnHG,gBAAgB;AACO,uBAAY,GAAG,qCAAqC,CAAC"}
package/index.d.ts CHANGED
@@ -5,6 +5,9 @@ export * from "./commonLicenseManageBigIq";
5
5
  export * from "./do";
6
6
  export * from "./eventServiceDiscovery";
7
7
  export * from "./fastApplication";
8
+ export * from "./fastHttpApp";
9
+ export * from "./fastHttpsApp";
10
+ export * from "./fastTcpApp";
8
11
  export * from "./fastTemplate";
9
12
  export * from "./ipsecPolicy";
10
13
  export * from "./ipsecProfile";
package/index.js CHANGED
@@ -27,6 +27,9 @@ __exportStar(require("./commonLicenseManageBigIq"), exports);
27
27
  __exportStar(require("./do"), exports);
28
28
  __exportStar(require("./eventServiceDiscovery"), exports);
29
29
  __exportStar(require("./fastApplication"), exports);
30
+ __exportStar(require("./fastHttpApp"), exports);
31
+ __exportStar(require("./fastHttpsApp"), exports);
32
+ __exportStar(require("./fastTcpApp"), exports);
30
33
  __exportStar(require("./fastTemplate"), exports);
31
34
  __exportStar(require("./ipsecPolicy"), exports);
32
35
  __exportStar(require("./ipsecProfile"), exports);
@@ -58,6 +61,9 @@ const commonLicenseManageBigIq_1 = require("./commonLicenseManageBigIq");
58
61
  const do_1 = require("./do");
59
62
  const eventServiceDiscovery_1 = require("./eventServiceDiscovery");
60
63
  const fastApplication_1 = require("./fastApplication");
64
+ const fastHttpApp_1 = require("./fastHttpApp");
65
+ const fastHttpsApp_1 = require("./fastHttpsApp");
66
+ const fastTcpApp_1 = require("./fastTcpApp");
61
67
  const fastTemplate_1 = require("./fastTemplate");
62
68
  const ipsecPolicy_1 = require("./ipsecPolicy");
63
69
  const ipsecProfile_1 = require("./ipsecProfile");
@@ -83,6 +89,12 @@ const _module = {
83
89
  return new eventServiceDiscovery_1.EventServiceDiscovery(name, undefined, { urn });
84
90
  case "f5bigip:index/fastApplication:FastApplication":
85
91
  return new fastApplication_1.FastApplication(name, undefined, { urn });
92
+ case "f5bigip:index/fastHttpApp:FastHttpApp":
93
+ return new fastHttpApp_1.FastHttpApp(name, undefined, { urn });
94
+ case "f5bigip:index/fastHttpsApp:FastHttpsApp":
95
+ return new fastHttpsApp_1.FastHttpsApp(name, undefined, { urn });
96
+ case "f5bigip:index/fastTcpApp:FastTcpApp":
97
+ return new fastTcpApp_1.FastTcpApp(name, undefined, { urn });
86
98
  case "f5bigip:index/fastTemplate:FastTemplate":
87
99
  return new fastTemplate_1.FastTemplate(name, undefined, { urn });
88
100
  case "f5bigip:index/ipsecPolicy:IpsecPolicy":
@@ -109,6 +121,9 @@ pulumi.runtime.registerResourceModule("f5bigip", "index/commonLicenseManageBigIq
109
121
  pulumi.runtime.registerResourceModule("f5bigip", "index/do", _module);
110
122
  pulumi.runtime.registerResourceModule("f5bigip", "index/eventServiceDiscovery", _module);
111
123
  pulumi.runtime.registerResourceModule("f5bigip", "index/fastApplication", _module);
124
+ pulumi.runtime.registerResourceModule("f5bigip", "index/fastHttpApp", _module);
125
+ pulumi.runtime.registerResourceModule("f5bigip", "index/fastHttpsApp", _module);
126
+ pulumi.runtime.registerResourceModule("f5bigip", "index/fastTcpApp", _module);
112
127
  pulumi.runtime.registerResourceModule("f5bigip", "index/fastTemplate", _module);
113
128
  pulumi.runtime.registerResourceModule("f5bigip", "index/ipsecPolicy", _module);
114
129
  pulumi.runtime.registerResourceModule("f5bigip", "index/ipsecProfile", _module);
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,wCAAsB;AACtB,6CAA2B;AAC3B,4CAA0B;AAC1B,6DAA2C;AAC3C,uCAAqB;AACrB,0DAAwC;AACxC,oDAAkC;AAClC,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,iDAA+B;AAC/B,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,8CAA4B;AAC5B,6CAA2B;AAC3B,oDAAkC;AAClC,8CAA4B;AAE5B,sBAAsB;AACtB,2BAA2B;AASvB,gBAAE;AARN,mCAAmC;AAS/B,wBAAM;AARV,6BAA6B;AASzB,kBAAG;AARP,6BAA6B;AASzB,kBAAG;AARP,6BAA6B;AASzB,kBAAG;AARP,6BAA6B;AASzB,kBAAG;AARP,iCAAiC;AAS7B,sBAAK;AAGT,gCAAgC;AAChC,+BAA4B;AAC5B,yCAAsC;AACtC,uCAAoC;AACpC,yEAAsE;AACtE,6BAA0B;AAC1B,mEAAgE;AAChE,uDAAoD;AACpD,+CAA4C;AAC5C,iDAA8C;AAC9C,6CAA0C;AAC1C,iDAA8C;AAC9C,+CAA4C;AAC5C,iDAA8C;AAC9C,6CAA0C;AAC1C,2CAAwC;AACxC,uDAAoD;AACpD,2CAAwC;AAExC,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,uBAAuB;gBACxB,OAAO,IAAI,SAAG,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjD,KAAK,iCAAiC;gBAClC,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,+BAA+B;gBAChC,OAAO,IAAI,iBAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,iEAAiE;gBAClE,OAAO,IAAI,mDAAwB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtE,KAAK,qBAAqB;gBACtB,OAAO,IAAI,OAAE,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChD,KAAK,2DAA2D;gBAC5D,OAAO,IAAI,6CAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,+CAA+C;gBAChD,OAAO,IAAI,iCAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,yBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,2BAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,qCAAqC;gBACtC,OAAO,IAAI,uBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,2BAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,yBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,2BAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,qCAAqC;gBACtC,OAAO,IAAI,uBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,mCAAmC;gBACpC,OAAO,IAAI,qBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,+CAA+C;gBAChD,OAAO,IAAI,iCAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,mCAAmC;gBACpC,OAAO,IAAI,qBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,WAAW,EAAE,OAAO,CAAC,CAAA;AACtE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AAC3E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,gCAAgC,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA;AACrE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AACxF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,SAAS,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AAE5E,yCAAsC;AAEtC,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,SAAS,EAAE;IAC9C,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,iBAAiB,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAA2B,EAAE;QACpF,IAAI,IAAI,KAAK,0BAA0B,EAAE;YACrC,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACpD;QACD,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IACvD,CAAC;CACJ,CAAC,CAAC"}
package/ltm/monitor.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * `f5bigip.ltm.Monitor` Configures a custom monitor for use by health checks.
4
4
  *
5
- * For resources should be named with their "full path". The full path is the combination of the partition + name of the resource. For example /Common/my-pool.
5
+ * For resources should be named with their `full path`. The full path is the combination of the `partition + name` of the resource. For example `/Common/test-monitor`.
6
6
  *
7
7
  * ## Example Usage
8
8
  *
@@ -12,7 +12,7 @@ import * as pulumi from "@pulumi/pulumi";
12
12
  *
13
13
  * const monitor = new f5bigip.ltm.Monitor("monitor", {
14
14
  * destination: "1.2.3.4:1234",
15
- * interval: 999,
15
+ * interval: 998,
16
16
  * name: "/Common/terraform_monitor",
17
17
  * parent: "/Common/http",
18
18
  * send: "GET /some/path
@@ -26,7 +26,7 @@ import * as pulumi from "@pulumi/pulumi";
26
26
  * send: "GET /some/path
27
27
  \n",
28
28
  * sslProfile: "/Common/serverssl",
29
- * timeout: 999,
29
+ * timeout: 1000,
30
30
  * });
31
31
  * const test_ftp_monitor = new f5bigip.ltm.Monitor("test-ftp-monitor", {
32
32
  * destination: "*:8008",
@@ -90,7 +90,7 @@ export declare class Monitor extends pulumi.CustomResource {
90
90
  */
91
91
  readonly filename: pulumi.Output<string | undefined>;
92
92
  /**
93
- * Specifies, in seconds, the frequency at which the system issues the monitor check when either the resource is down or the status of the resource is unknown. The default is `5`
93
+ * Specifies, in seconds, the frequency at which the system issues the monitor check when either the resource is down or the status of the resource is unknown,value of `interval` should be always less than `timeout`. Default is `5`.
94
94
  */
95
95
  readonly interval: pulumi.Output<number>;
96
96
  /**
@@ -195,7 +195,7 @@ export interface MonitorState {
195
195
  */
196
196
  filename?: pulumi.Input<string>;
197
197
  /**
198
- * Specifies, in seconds, the frequency at which the system issues the monitor check when either the resource is down or the status of the resource is unknown. The default is `5`
198
+ * Specifies, in seconds, the frequency at which the system issues the monitor check when either the resource is down or the status of the resource is unknown,value of `interval` should be always less than `timeout`. Default is `5`.
199
199
  */
200
200
  interval?: pulumi.Input<number>;
201
201
  /**
@@ -292,7 +292,7 @@ export interface MonitorArgs {
292
292
  */
293
293
  filename?: pulumi.Input<string>;
294
294
  /**
295
- * Specifies, in seconds, the frequency at which the system issues the monitor check when either the resource is down or the status of the resource is unknown. The default is `5`
295
+ * Specifies, in seconds, the frequency at which the system issues the monitor check when either the resource is down or the status of the resource is unknown,value of `interval` should be always less than `timeout`. Default is `5`.
296
296
  */
297
297
  interval?: pulumi.Input<number>;
298
298
  /**
package/ltm/monitor.js CHANGED
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * `f5bigip.ltm.Monitor` Configures a custom monitor for use by health checks.
10
10
  *
11
- * For resources should be named with their "full path". The full path is the combination of the partition + name of the resource. For example /Common/my-pool.
11
+ * For resources should be named with their `full path`. The full path is the combination of the `partition + name` of the resource. For example `/Common/test-monitor`.
12
12
  *
13
13
  * ## Example Usage
14
14
  *
@@ -18,7 +18,7 @@ const utilities = require("../utilities");
18
18
  *
19
19
  * const monitor = new f5bigip.ltm.Monitor("monitor", {
20
20
  * destination: "1.2.3.4:1234",
21
- * interval: 999,
21
+ * interval: 998,
22
22
  * name: "/Common/terraform_monitor",
23
23
  * parent: "/Common/http",
24
24
  * send: "GET /some/path
@@ -32,7 +32,7 @@ const utilities = require("../utilities");
32
32
  * send: "GET /some/path
33
33
  \n",
34
34
  * sslProfile: "/Common/serverssl",
35
- * timeout: 999,
35
+ * timeout: 1000,
36
36
  * });
37
37
  * const test_ftp_monitor = new f5bigip.ltm.Monitor("test-ftp-monitor", {
38
38
  * destination: "*:8008",
package/ltm/node.d.ts CHANGED
@@ -3,7 +3,8 @@ import { input as inputs, output as outputs } from "../types";
3
3
  /**
4
4
  * `f5bigip.ltm.Node` Manages a node configuration
5
5
  *
6
- * For resources should be named with their "full path".The full path is the combination of the partition + name of the resource( example: /Common/my-node ) or partition + Direcroty + nameof the resource ( example: /Common/test/my-node ).When including directory in fullpath we have to make sure it is created in the given partition before using it.
6
+ * For resources should be named with their `full path`.The full path is the combination of the `partition + name` of the resource( example: `/Common/my-node` ) or `partition + Direcroty + name` of the resource ( example: `/Common/test/my-node` ).
7
+ * When including directory in `full path` we have to make sure it is created in the given partition before using it.
7
8
  *
8
9
  * ## Example Usage
9
10
  *
@@ -82,7 +83,7 @@ export declare class Node extends pulumi.CustomResource {
82
83
  /**
83
84
  * Default is "user-up" you can set to "user-down" if you want to disable
84
85
  */
85
- readonly state: pulumi.Output<string | undefined>;
86
+ readonly state: pulumi.Output<string>;
86
87
  /**
87
88
  * Create a Node resource with the given unique name, arguments, and options.
88
89
  *
package/ltm/node.js CHANGED
@@ -8,7 +8,8 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * `f5bigip.ltm.Node` Manages a node configuration
10
10
  *
11
- * For resources should be named with their "full path".The full path is the combination of the partition + name of the resource( example: /Common/my-node ) or partition + Direcroty + nameof the resource ( example: /Common/test/my-node ).When including directory in fullpath we have to make sure it is created in the given partition before using it.
11
+ * For resources should be named with their `full path`.The full path is the combination of the `partition + name` of the resource( example: `/Common/my-node` ) or `partition + Direcroty + name` of the resource ( example: `/Common/test/my-node` ).
12
+ * When including directory in `full path` we have to make sure it is created in the given partition before using it.
12
13
  *
13
14
  * ## Example Usage
14
15
  *
package/ltm/node.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"node.js","sourceRoot":"","sources":["../../ltm/node.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"node.js","sourceRoot":"","sources":["../../ltm/node.ts"],"names":[],"mappings":"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"}
package/ltm/policy.d.ts CHANGED
@@ -3,7 +3,7 @@ import { input as inputs, output as outputs } from "../types";
3
3
  /**
4
4
  * `f5bigip.ltm.Policy` Configures ltm policies to manage traffic assigned to a virtual server
5
5
  *
6
- * For resources should be named with their "full path". The full path is the combination of the partition + name of the resource. For example /Common/my-pool.
6
+ * For resources should be named with their `full path`. The full path is the combination of the `partition + name` of the resource. For example `/Common/test-policy`.
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -26,6 +26,7 @@ import { input as inputs, output as outputs } from "../types";
26
26
  * name: "rule6",
27
27
  * actions: [{
28
28
  * forward: true,
29
+ * connection: false,
29
30
  * pool: mypool.name,
30
31
  * }],
31
32
  * }],
package/ltm/policy.js CHANGED
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * `f5bigip.ltm.Policy` Configures ltm policies to manage traffic assigned to a virtual server
10
10
  *
11
- * For resources should be named with their "full path". The full path is the combination of the partition + name of the resource. For example /Common/my-pool.
11
+ * For resources should be named with their `full path`. The full path is the combination of the `partition + name` of the resource. For example `/Common/test-policy`.
12
12
  *
13
13
  * ## Example Usage
14
14
  *
@@ -31,6 +31,7 @@ const utilities = require("../utilities");
31
31
  * name: "rule6",
32
32
  * actions: [{
33
33
  * forward: true,
34
+ * connection: false,
34
35
  * pool: mypool.name,
35
36
  * }],
36
37
  * }],
package/ltm/policy.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"policy.js","sourceRoot":"","sources":["../../ltm/policy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IA6D7C,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;IArFD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;;AA1BL,wBAuFC;AAzEG,gBAAgB;AACO,mBAAY,GAAG,2BAA2B,CAAC"}
1
+ {"version":3,"file":"policy.js","sourceRoot":"","sources":["../../ltm/policy.ts"],"names":[],"mappings":"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"}
package/ltm/pool.d.ts CHANGED
@@ -2,7 +2,8 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * `f5bigip.ltm.Pool` Manages F5 BIG-IP LTM pools via iControl REST API.
4
4
  *
5
- * Resources should be named with their "full path". The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
5
+ * For resources should be named with their `full path`. The full path is the combination of the `partition + name` of the resource or `partition + directory + name`.
6
+ * For example `/Common/my-pool`.
6
7
  *
7
8
  * ## Example Usage
8
9
  *
@@ -63,7 +64,7 @@ export declare class Pool extends pulumi.CustomResource {
63
64
  */
64
65
  readonly monitors: pulumi.Output<string[]>;
65
66
  /**
66
- * Name of the pool,it should be "full path".The full path is the combination of the partition + name of the pool.(For example `/Common/my-pool`)
67
+ * Name of the pool,it should be `full path`.The full path is the combination of the `partition + name` of the pool.(For example `/Common/my-pool`)
67
68
  */
68
69
  readonly name: pulumi.Output<string>;
69
70
  /**
@@ -116,7 +117,7 @@ export interface PoolState {
116
117
  */
117
118
  monitors?: pulumi.Input<pulumi.Input<string>[]>;
118
119
  /**
119
- * Name of the pool,it should be "full path".The full path is the combination of the partition + name of the pool.(For example `/Common/my-pool`)
120
+ * Name of the pool,it should be `full path`.The full path is the combination of the `partition + name` of the pool.(For example `/Common/my-pool`)
120
121
  */
121
122
  name?: pulumi.Input<string>;
122
123
  /**
@@ -161,7 +162,7 @@ export interface PoolArgs {
161
162
  */
162
163
  monitors?: pulumi.Input<pulumi.Input<string>[]>;
163
164
  /**
164
- * Name of the pool,it should be "full path".The full path is the combination of the partition + name of the pool.(For example `/Common/my-pool`)
165
+ * Name of the pool,it should be `full path`.The full path is the combination of the `partition + name` of the pool.(For example `/Common/my-pool`)
165
166
  */
166
167
  name: pulumi.Input<string>;
167
168
  /**
package/ltm/pool.js CHANGED
@@ -8,7 +8,8 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * `f5bigip.ltm.Pool` Manages F5 BIG-IP LTM pools via iControl REST API.
10
10
  *
11
- * Resources should be named with their "full path". The full path is the combination of the partition + name (example: /Common/my-pool ) or partition + directory + name of the resource (example: /Common/test/my-pool )
11
+ * For resources should be named with their `full path`. The full path is the combination of the `partition + name` of the resource or `partition + directory + name`.
12
+ * For example `/Common/my-pool`.
12
13
  *
13
14
  * ## Example Usage
14
15
  *