@pulumi/f5bigip 3.6.0 → 3.6.1
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.
- package/do.d.ts +72 -0
- package/do.js +10 -0
- package/do.js.map +1 -1
- package/net/selfIp.d.ts +17 -0
- package/net/selfIp.js +7 -0
- package/net/selfIp.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
package/do.d.ts
CHANGED
|
@@ -32,6 +32,30 @@ export declare class Do extends pulumi.CustomResource {
|
|
|
32
32
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
33
|
*/
|
|
34
34
|
static isInstance(obj: any): obj is Do;
|
|
35
|
+
/**
|
|
36
|
+
* IP Address of BIGIP Host to be used for this resource,this is optional parameter.
|
|
37
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
38
|
+
*/
|
|
39
|
+
readonly bigipAddress: pulumi.Output<string | undefined>;
|
|
40
|
+
/**
|
|
41
|
+
* Password of BIGIP host to be used for this resource,this is optional parameter.
|
|
42
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
43
|
+
*/
|
|
44
|
+
readonly bigipPassword: pulumi.Output<string | undefined>;
|
|
45
|
+
/**
|
|
46
|
+
* Port number of BIGIP host to be used for this resource,this is optional parameter.
|
|
47
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
48
|
+
*/
|
|
49
|
+
readonly bigipPort: pulumi.Output<string | undefined>;
|
|
50
|
+
/**
|
|
51
|
+
* Enable to use an external authentication source (LDAP, TACACS, etc)
|
|
52
|
+
*/
|
|
53
|
+
readonly bigipTokenAuth: pulumi.Output<boolean | undefined>;
|
|
54
|
+
/**
|
|
55
|
+
* UserName of BIGIP host to be used for this resource,this is optional parameter.
|
|
56
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
57
|
+
*/
|
|
58
|
+
readonly bigipUser: pulumi.Output<string | undefined>;
|
|
35
59
|
/**
|
|
36
60
|
* Name of the of the Declarative DO JSON file
|
|
37
61
|
*/
|
|
@@ -59,6 +83,30 @@ export declare class Do extends pulumi.CustomResource {
|
|
|
59
83
|
* Input properties used for looking up and filtering Do resources.
|
|
60
84
|
*/
|
|
61
85
|
export interface DoState {
|
|
86
|
+
/**
|
|
87
|
+
* IP Address of BIGIP Host to be used for this resource,this is optional parameter.
|
|
88
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
89
|
+
*/
|
|
90
|
+
bigipAddress?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Password of BIGIP host to be used for this resource,this is optional parameter.
|
|
93
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
94
|
+
*/
|
|
95
|
+
bigipPassword?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Port number of BIGIP host to be used for this resource,this is optional parameter.
|
|
98
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
99
|
+
*/
|
|
100
|
+
bigipPort?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* Enable to use an external authentication source (LDAP, TACACS, etc)
|
|
103
|
+
*/
|
|
104
|
+
bigipTokenAuth?: pulumi.Input<boolean>;
|
|
105
|
+
/**
|
|
106
|
+
* UserName of BIGIP host to be used for this resource,this is optional parameter.
|
|
107
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
108
|
+
*/
|
|
109
|
+
bigipUser?: pulumi.Input<string>;
|
|
62
110
|
/**
|
|
63
111
|
* Name of the of the Declarative DO JSON file
|
|
64
112
|
*/
|
|
@@ -78,6 +126,30 @@ export interface DoState {
|
|
|
78
126
|
* The set of arguments for constructing a Do resource.
|
|
79
127
|
*/
|
|
80
128
|
export interface DoArgs {
|
|
129
|
+
/**
|
|
130
|
+
* IP Address of BIGIP Host to be used for this resource,this is optional parameter.
|
|
131
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
132
|
+
*/
|
|
133
|
+
bigipAddress?: pulumi.Input<string>;
|
|
134
|
+
/**
|
|
135
|
+
* Password of BIGIP host to be used for this resource,this is optional parameter.
|
|
136
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
137
|
+
*/
|
|
138
|
+
bigipPassword?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Port number of BIGIP host to be used for this resource,this is optional parameter.
|
|
141
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
142
|
+
*/
|
|
143
|
+
bigipPort?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* Enable to use an external authentication source (LDAP, TACACS, etc)
|
|
146
|
+
*/
|
|
147
|
+
bigipTokenAuth?: pulumi.Input<boolean>;
|
|
148
|
+
/**
|
|
149
|
+
* UserName of BIGIP host to be used for this resource,this is optional parameter.
|
|
150
|
+
* whenever we specify this parameter it gets overwrite provider configuration
|
|
151
|
+
*/
|
|
152
|
+
bigipUser?: pulumi.Input<string>;
|
|
81
153
|
/**
|
|
82
154
|
* Name of the of the Declarative DO JSON file
|
|
83
155
|
*/
|
package/do.js
CHANGED
|
@@ -28,6 +28,11 @@ class Do extends pulumi.CustomResource {
|
|
|
28
28
|
opts = opts || {};
|
|
29
29
|
if (opts.id) {
|
|
30
30
|
const state = argsOrState;
|
|
31
|
+
inputs["bigipAddress"] = state ? state.bigipAddress : undefined;
|
|
32
|
+
inputs["bigipPassword"] = state ? state.bigipPassword : undefined;
|
|
33
|
+
inputs["bigipPort"] = state ? state.bigipPort : undefined;
|
|
34
|
+
inputs["bigipTokenAuth"] = state ? state.bigipTokenAuth : undefined;
|
|
35
|
+
inputs["bigipUser"] = state ? state.bigipUser : undefined;
|
|
31
36
|
inputs["doJson"] = state ? state.doJson : undefined;
|
|
32
37
|
inputs["tenantName"] = state ? state.tenantName : undefined;
|
|
33
38
|
inputs["timeout"] = state ? state.timeout : undefined;
|
|
@@ -37,6 +42,11 @@ class Do extends pulumi.CustomResource {
|
|
|
37
42
|
if ((!args || args.doJson === undefined) && !opts.urn) {
|
|
38
43
|
throw new Error("Missing required property 'doJson'");
|
|
39
44
|
}
|
|
45
|
+
inputs["bigipAddress"] = args ? args.bigipAddress : undefined;
|
|
46
|
+
inputs["bigipPassword"] = args ? args.bigipPassword : undefined;
|
|
47
|
+
inputs["bigipPort"] = args ? args.bigipPort : undefined;
|
|
48
|
+
inputs["bigipTokenAuth"] = args ? args.bigipTokenAuth : undefined;
|
|
49
|
+
inputs["bigipUser"] = args ? args.bigipUser : undefined;
|
|
40
50
|
inputs["doJson"] = args ? args.doJson : undefined;
|
|
41
51
|
inputs["tenantName"] = args ? args.tenantName : undefined;
|
|
42
52
|
inputs["timeout"] = args ? args.timeout : undefined;
|
package/do.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"do.js","sourceRoot":"","sources":["../do.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,EAAG,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"do.js","sourceRoot":"","sources":["../do.ts"],"names":[],"mappings":"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"}
|
package/net/selfIp.d.ts
CHANGED
|
@@ -15,6 +15,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
15
15
|
* ip: "11.1.1.1/24",
|
|
16
16
|
* vlan: "/Common/internal",
|
|
17
17
|
* trafficGroup: "traffic-group-1",
|
|
18
|
+
* portLockdowns: [
|
|
19
|
+
* "tcp:4040",
|
|
20
|
+
* "udp:5050",
|
|
21
|
+
* "egp:0",
|
|
22
|
+
* ],
|
|
18
23
|
* }, {
|
|
19
24
|
* dependsOn: [bigip_net_vlan.vlan1],
|
|
20
25
|
* });
|
|
@@ -44,6 +49,10 @@ export declare class SelfIp extends pulumi.CustomResource {
|
|
|
44
49
|
* Name of the selfip
|
|
45
50
|
*/
|
|
46
51
|
readonly name: pulumi.Output<string>;
|
|
52
|
+
/**
|
|
53
|
+
* Specifies the port lockdown, defaults to `Allow Default` if not specified.
|
|
54
|
+
*/
|
|
55
|
+
readonly portLockdowns: pulumi.Output<string[] | undefined>;
|
|
47
56
|
/**
|
|
48
57
|
* Specifies the traffic group, defaults to `traffic-group-local-only` if not specified.
|
|
49
58
|
*/
|
|
@@ -73,6 +82,10 @@ export interface SelfIpState {
|
|
|
73
82
|
* Name of the selfip
|
|
74
83
|
*/
|
|
75
84
|
name?: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* Specifies the port lockdown, defaults to `Allow Default` if not specified.
|
|
87
|
+
*/
|
|
88
|
+
portLockdowns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
76
89
|
/**
|
|
77
90
|
* Specifies the traffic group, defaults to `traffic-group-local-only` if not specified.
|
|
78
91
|
*/
|
|
@@ -94,6 +107,10 @@ export interface SelfIpArgs {
|
|
|
94
107
|
* Name of the selfip
|
|
95
108
|
*/
|
|
96
109
|
name: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* Specifies the port lockdown, defaults to `Allow Default` if not specified.
|
|
112
|
+
*/
|
|
113
|
+
portLockdowns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
97
114
|
/**
|
|
98
115
|
* Specifies the traffic group, defaults to `traffic-group-local-only` if not specified.
|
|
99
116
|
*/
|
package/net/selfIp.js
CHANGED
|
@@ -21,6 +21,11 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* ip: "11.1.1.1/24",
|
|
22
22
|
* vlan: "/Common/internal",
|
|
23
23
|
* trafficGroup: "traffic-group-1",
|
|
24
|
+
* portLockdowns: [
|
|
25
|
+
* "tcp:4040",
|
|
26
|
+
* "udp:5050",
|
|
27
|
+
* "egp:0",
|
|
28
|
+
* ],
|
|
24
29
|
* }, {
|
|
25
30
|
* dependsOn: [bigip_net_vlan.vlan1],
|
|
26
31
|
* });
|
|
@@ -34,6 +39,7 @@ class SelfIp extends pulumi.CustomResource {
|
|
|
34
39
|
const state = argsOrState;
|
|
35
40
|
inputs["ip"] = state ? state.ip : undefined;
|
|
36
41
|
inputs["name"] = state ? state.name : undefined;
|
|
42
|
+
inputs["portLockdowns"] = state ? state.portLockdowns : undefined;
|
|
37
43
|
inputs["trafficGroup"] = state ? state.trafficGroup : undefined;
|
|
38
44
|
inputs["vlan"] = state ? state.vlan : undefined;
|
|
39
45
|
}
|
|
@@ -50,6 +56,7 @@ class SelfIp extends pulumi.CustomResource {
|
|
|
50
56
|
}
|
|
51
57
|
inputs["ip"] = args ? args.ip : undefined;
|
|
52
58
|
inputs["name"] = args ? args.name : undefined;
|
|
59
|
+
inputs["portLockdowns"] = args ? args.portLockdowns : undefined;
|
|
53
60
|
inputs["trafficGroup"] = args ? args.trafficGroup : undefined;
|
|
54
61
|
inputs["vlan"] = args ? args.vlan : undefined;
|
|
55
62
|
}
|
package/net/selfIp.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"selfIp.js","sourceRoot":"","sources":["../../net/selfIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"selfIp.js","sourceRoot":"","sources":["../../net/selfIp.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/f5bigip",
|
|
3
|
-
"version": "v3.6.
|
|
3
|
+
"version": "v3.6.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing F5 BigIP resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource f5bigip v3.6.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource f5bigip v3.6.1"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|