@pulumi/openstack 3.16.0-alpha.1715927024 → 4.0.1-alpha.1721241521
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/README.md +1 -1
- package/blockstorage/getVolumeV3.d.ts +0 -4
- package/blockstorage/getVolumeV3.js.map +1 -1
- package/blockstorage/volume.d.ts +0 -18
- package/blockstorage/volume.js +0 -2
- package/blockstorage/volume.js.map +1 -1
- package/blockstorage/volumeAttachV2.d.ts +0 -12
- package/blockstorage/volumeAttachV2.js +0 -2
- package/blockstorage/volumeAttachV2.js.map +1 -1
- package/blockstorage/volumeTypeV3.d.ts +17 -0
- package/blockstorage/volumeTypeV3.js +17 -0
- package/blockstorage/volumeTypeV3.js.map +1 -1
- package/compute/instance.d.ts +0 -24
- package/compute/instance.js +0 -4
- package/compute/instance.js.map +1 -1
- package/compute/serverGroup.d.ts +22 -0
- package/compute/serverGroup.js +22 -0
- package/compute/serverGroup.js.map +1 -1
- package/compute/volumeAttach.d.ts +20 -2
- package/compute/volumeAttach.js +4 -2
- package/compute/volumeAttach.js.map +1 -1
- package/config/vars.d.ts +0 -4
- package/config/vars.js +0 -7
- package/config/vars.js.map +1 -1
- package/images/getImage.d.ts +13 -14
- package/images/getImage.js +1 -2
- package/images/getImage.js.map +1 -1
- package/images/getImageIds.d.ts +2 -44
- package/images/getImageIds.js +0 -2
- package/images/getImageIds.js.map +1 -1
- package/images/image.d.ts +0 -12
- package/images/image.js +0 -2
- package/images/image.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +15 -1
- package/index.js.map +1 -1
- package/keymanager/containerV1.d.ts +1 -1
- package/keymanager/containerV1.js +1 -1
- package/lbLoadbalancerV2.d.ts +299 -0
- package/lbLoadbalancerV2.js +100 -0
- package/lbLoadbalancerV2.js.map +1 -0
- package/loadbalancer/getFlavorV2.d.ts +34 -0
- package/loadbalancer/getFlavorV2.js +22 -0
- package/loadbalancer/getFlavorV2.js.map +1 -0
- package/loadbalancer/index.d.ts +3 -0
- package/loadbalancer/index.js +4 -1
- package/loadbalancer/index.js.map +1 -1
- package/loadbalancer/l7policyV2.d.ts +1 -1
- package/loadbalancer/l7policyV2.js +1 -1
- package/loadbalancer/l7ruleV2.d.ts +1 -1
- package/loadbalancer/l7ruleV2.js +1 -1
- package/loadbalancer/listener.d.ts +6 -6
- package/loadbalancer/loadBalancer.d.ts +2 -219
- package/loadbalancer/loadBalancer.js +4 -21
- package/loadbalancer/loadBalancer.js.map +1 -1
- package/loadbalancer/members.d.ts +0 -4
- package/loadbalancer/members.js +0 -4
- package/loadbalancer/members.js.map +1 -1
- package/loadbalancer/pool.d.ts +9 -12
- package/loadbalancer/pool.js.map +1 -1
- package/loadbalancer/poolV1.d.ts +0 -31
- package/loadbalancer/poolV1.js +0 -6
- package/loadbalancer/poolV1.js.map +1 -1
- package/loadbalancer/quota.d.ts +0 -2
- package/loadbalancer/quota.js +0 -2
- package/loadbalancer/quota.js.map +1 -1
- package/networking/getFloatingIp.d.ts +2 -2
- package/networking/getSubnet.d.ts +0 -12
- package/networking/getSubnet.js +0 -1
- package/networking/getSubnet.js.map +1 -1
- package/networking/router.d.ts +0 -30
- package/networking/router.js +0 -2
- package/networking/router.js.map +1 -1
- package/networking/subnet.d.ts +0 -54
- package/networking/subnet.js +0 -4
- package/networking/subnet.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +0 -6
- package/provider.js +1 -2
- package/provider.js.map +1 -1
- package/types/input.d.ts +24 -30
- package/types/output.d.ts +24 -30
- package/vpnaas/ikePolicy.d.ts +3 -3
package/images/getImage.d.ts
CHANGED
|
@@ -78,13 +78,13 @@ export interface GetImageArgs {
|
|
|
78
78
|
*/
|
|
79
79
|
sizeMin?: number;
|
|
80
80
|
/**
|
|
81
|
-
*
|
|
81
|
+
* Sorts the response by one or more attribute and sort
|
|
82
|
+
* direction combinations. You can also set multiple sort keys and directions.
|
|
83
|
+
* Default direction is `desc`. Use the comma (,) character to separate
|
|
84
|
+
* multiple values. For example expression `sort = "name:asc,status"`
|
|
85
|
+
* sorts ascending by name and descending by status.
|
|
82
86
|
*/
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* Sort images based on a certain key. Defaults to `name`.
|
|
86
|
-
*/
|
|
87
|
-
sortKey?: string;
|
|
87
|
+
sort?: string;
|
|
88
88
|
/**
|
|
89
89
|
* Search for images with a specific tag.
|
|
90
90
|
*/
|
|
@@ -173,8 +173,7 @@ export interface GetImageResult {
|
|
|
173
173
|
readonly sizeBytes: number;
|
|
174
174
|
readonly sizeMax?: number;
|
|
175
175
|
readonly sizeMin?: number;
|
|
176
|
-
readonly
|
|
177
|
-
readonly sortKey?: string;
|
|
176
|
+
readonly sort?: string;
|
|
178
177
|
readonly tag?: string;
|
|
179
178
|
/**
|
|
180
179
|
* The tags list of the image.
|
|
@@ -265,13 +264,13 @@ export interface GetImageOutputArgs {
|
|
|
265
264
|
*/
|
|
266
265
|
sizeMin?: pulumi.Input<number>;
|
|
267
266
|
/**
|
|
268
|
-
*
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
*
|
|
267
|
+
* Sorts the response by one or more attribute and sort
|
|
268
|
+
* direction combinations. You can also set multiple sort keys and directions.
|
|
269
|
+
* Default direction is `desc`. Use the comma (,) character to separate
|
|
270
|
+
* multiple values. For example expression `sort = "name:asc,status"`
|
|
271
|
+
* sorts ascending by name and descending by status.
|
|
273
272
|
*/
|
|
274
|
-
|
|
273
|
+
sort?: pulumi.Input<string>;
|
|
275
274
|
/**
|
|
276
275
|
* Search for images with a specific tag.
|
|
277
276
|
*/
|
package/images/getImage.js
CHANGED
|
@@ -37,8 +37,7 @@ function getImage(args, opts) {
|
|
|
37
37
|
"region": args.region,
|
|
38
38
|
"sizeMax": args.sizeMax,
|
|
39
39
|
"sizeMin": args.sizeMin,
|
|
40
|
-
"
|
|
41
|
-
"sortKey": args.sortKey,
|
|
40
|
+
"sort": args.sort,
|
|
42
41
|
"tag": args.tag,
|
|
43
42
|
"tags": args.tags,
|
|
44
43
|
"visibility": args.visibility,
|
package/images/getImage.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getImage.js","sourceRoot":"","sources":["../../images/getImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,
|
|
1
|
+
{"version":3,"file":"getImage.js","sourceRoot":"","sources":["../../images/getImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AApBD,4BAoBC;AAoKD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
|
package/images/getImageIds.d.ts
CHANGED
|
@@ -72,26 +72,9 @@ export interface GetImageIdsArgs {
|
|
|
72
72
|
* direction combinations. You can also set multiple sort keys and directions.
|
|
73
73
|
* Default direction is `desc`. Use the comma (,) character to separate
|
|
74
74
|
* multiple values. For example expression `sort = "name:asc,status"`
|
|
75
|
-
* sorts ascending by name and descending by status.
|
|
76
|
-
* simultaneously with `sortKey`. If both are present in a configuration
|
|
77
|
-
* then only `sort` will be used.
|
|
75
|
+
* sorts ascending by name and descending by status.
|
|
78
76
|
*/
|
|
79
77
|
sort?: string;
|
|
80
|
-
/**
|
|
81
|
-
* Order the results in either `asc` or `desc`.
|
|
82
|
-
* Can be applied only with `sortKey`. Defaults to `asc`
|
|
83
|
-
*
|
|
84
|
-
* @deprecated Use option 'sort' instead.
|
|
85
|
-
*/
|
|
86
|
-
sortDirection?: string;
|
|
87
|
-
/**
|
|
88
|
-
* Sort images based on a certain key. Defaults to
|
|
89
|
-
* `name`. `sortKey` cannot be used simultaneously with `sort`. If both
|
|
90
|
-
* are present in a configuration then only `sort` will be used.
|
|
91
|
-
*
|
|
92
|
-
* @deprecated Use option 'sort' instead.
|
|
93
|
-
*/
|
|
94
|
-
sortKey?: string;
|
|
95
78
|
/**
|
|
96
79
|
* Search for images with a specific tag.
|
|
97
80
|
*/
|
|
@@ -127,14 +110,6 @@ export interface GetImageIdsResult {
|
|
|
127
110
|
readonly sizeMax?: number;
|
|
128
111
|
readonly sizeMin?: number;
|
|
129
112
|
readonly sort?: string;
|
|
130
|
-
/**
|
|
131
|
-
* @deprecated Use option 'sort' instead.
|
|
132
|
-
*/
|
|
133
|
-
readonly sortDirection?: string;
|
|
134
|
-
/**
|
|
135
|
-
* @deprecated Use option 'sort' instead.
|
|
136
|
-
*/
|
|
137
|
-
readonly sortKey?: string;
|
|
138
113
|
readonly tag?: string;
|
|
139
114
|
readonly tags?: string[];
|
|
140
115
|
readonly visibility?: string;
|
|
@@ -212,26 +187,9 @@ export interface GetImageIdsOutputArgs {
|
|
|
212
187
|
* direction combinations. You can also set multiple sort keys and directions.
|
|
213
188
|
* Default direction is `desc`. Use the comma (,) character to separate
|
|
214
189
|
* multiple values. For example expression `sort = "name:asc,status"`
|
|
215
|
-
* sorts ascending by name and descending by status.
|
|
216
|
-
* simultaneously with `sortKey`. If both are present in a configuration
|
|
217
|
-
* then only `sort` will be used.
|
|
190
|
+
* sorts ascending by name and descending by status.
|
|
218
191
|
*/
|
|
219
192
|
sort?: pulumi.Input<string>;
|
|
220
|
-
/**
|
|
221
|
-
* Order the results in either `asc` or `desc`.
|
|
222
|
-
* Can be applied only with `sortKey`. Defaults to `asc`
|
|
223
|
-
*
|
|
224
|
-
* @deprecated Use option 'sort' instead.
|
|
225
|
-
*/
|
|
226
|
-
sortDirection?: pulumi.Input<string>;
|
|
227
|
-
/**
|
|
228
|
-
* Sort images based on a certain key. Defaults to
|
|
229
|
-
* `name`. `sortKey` cannot be used simultaneously with `sort`. If both
|
|
230
|
-
* are present in a configuration then only `sort` will be used.
|
|
231
|
-
*
|
|
232
|
-
* @deprecated Use option 'sort' instead.
|
|
233
|
-
*/
|
|
234
|
-
sortKey?: pulumi.Input<string>;
|
|
235
193
|
/**
|
|
236
194
|
* Search for images with a specific tag.
|
|
237
195
|
*/
|
package/images/getImageIds.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getImageIds.js","sourceRoot":"","sources":["../../images/getImageIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,
|
|
1
|
+
{"version":3,"file":"getImageIds.js","sourceRoot":"","sources":["../../images/getImageIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAlBD,kCAkBC;AA8FD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/images/image.d.ts
CHANGED
|
@@ -191,12 +191,6 @@ export declare class Image extends pulumi.CustomResource {
|
|
|
191
191
|
* At this time, it is not possible to delete all tags of an image.
|
|
192
192
|
*/
|
|
193
193
|
readonly tags: pulumi.Output<string[] | undefined>;
|
|
194
|
-
/**
|
|
195
|
-
* (**Deprecated** - use `updatedAt` instead)
|
|
196
|
-
*
|
|
197
|
-
* @deprecated Use updatedAt instead
|
|
198
|
-
*/
|
|
199
|
-
readonly updateAt: pulumi.Output<string>;
|
|
200
194
|
/**
|
|
201
195
|
* The date the image was last updated.
|
|
202
196
|
*/
|
|
@@ -360,12 +354,6 @@ export interface ImageState {
|
|
|
360
354
|
* At this time, it is not possible to delete all tags of an image.
|
|
361
355
|
*/
|
|
362
356
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
363
|
-
/**
|
|
364
|
-
* (**Deprecated** - use `updatedAt` instead)
|
|
365
|
-
*
|
|
366
|
-
* @deprecated Use updatedAt instead
|
|
367
|
-
*/
|
|
368
|
-
updateAt?: pulumi.Input<string>;
|
|
369
357
|
/**
|
|
370
358
|
* The date the image was last updated.
|
|
371
359
|
*/
|
package/images/image.js
CHANGED
|
@@ -106,7 +106,6 @@ class Image extends pulumi.CustomResource {
|
|
|
106
106
|
resourceInputs["sizeBytes"] = state ? state.sizeBytes : undefined;
|
|
107
107
|
resourceInputs["status"] = state ? state.status : undefined;
|
|
108
108
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
109
|
-
resourceInputs["updateAt"] = state ? state.updateAt : undefined;
|
|
110
109
|
resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
|
|
111
110
|
resourceInputs["verifyChecksum"] = state ? state.verifyChecksum : undefined;
|
|
112
111
|
resourceInputs["visibility"] = state ? state.visibility : undefined;
|
|
@@ -148,7 +147,6 @@ class Image extends pulumi.CustomResource {
|
|
|
148
147
|
resourceInputs["schema"] = undefined /*out*/;
|
|
149
148
|
resourceInputs["sizeBytes"] = undefined /*out*/;
|
|
150
149
|
resourceInputs["status"] = undefined /*out*/;
|
|
151
|
-
resourceInputs["updateAt"] = undefined /*out*/;
|
|
152
150
|
resourceInputs["updatedAt"] = undefined /*out*/;
|
|
153
151
|
}
|
|
154
152
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/images/image.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.js","sourceRoot":"","sources":["../../images/image.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,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,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;
|
|
1
|
+
{"version":3,"file":"image.js","sourceRoot":"","sources":["../../images/image.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ export declare const getFwPolicyV2Output: typeof import("./getFwPolicyV2").getFw
|
|
|
7
7
|
export { GetFwRuleV2Args, GetFwRuleV2Result, GetFwRuleV2OutputArgs } from "./getFwRuleV2";
|
|
8
8
|
export declare const getFwRuleV2: typeof import("./getFwRuleV2").getFwRuleV2;
|
|
9
9
|
export declare const getFwRuleV2Output: typeof import("./getFwRuleV2").getFwRuleV2Output;
|
|
10
|
+
export { LbLoadbalancerV2Args, LbLoadbalancerV2State } from "./lbLoadbalancerV2";
|
|
11
|
+
export type LbLoadbalancerV2 = import("./lbLoadbalancerV2").LbLoadbalancerV2;
|
|
12
|
+
export declare const LbLoadbalancerV2: typeof import("./lbLoadbalancerV2").LbLoadbalancerV2;
|
|
10
13
|
export { ProviderArgs } from "./provider";
|
|
11
14
|
export type Provider = import("./provider").Provider;
|
|
12
15
|
export declare const Provider: typeof import("./provider").Provider;
|
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.vpnaas = exports.types = exports.sharedfilesystem = exports.orchestration = exports.objectstorage = exports.networking = exports.loadbalancer = exports.keymanager = exports.images = exports.identity = exports.firewall = exports.dns = exports.database = exports.containerinfra = exports.config = exports.compute = exports.blockstorage = exports.Provider = exports.getFwRuleV2Output = exports.getFwRuleV2 = exports.getFwPolicyV2Output = exports.getFwPolicyV2 = exports.getFwGroupV2Output = exports.getFwGroupV2 = void 0;
|
|
5
|
+
exports.vpnaas = exports.types = exports.sharedfilesystem = exports.orchestration = exports.objectstorage = exports.networking = exports.loadbalancer = exports.keymanager = exports.images = exports.identity = exports.firewall = exports.dns = exports.database = exports.containerinfra = exports.config = exports.compute = exports.blockstorage = exports.Provider = exports.LbLoadbalancerV2 = exports.getFwRuleV2Output = exports.getFwRuleV2 = exports.getFwPolicyV2Output = exports.getFwPolicyV2 = exports.getFwGroupV2Output = exports.getFwGroupV2 = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.getFwGroupV2 = null;
|
|
@@ -14,6 +14,8 @@ utilities.lazyLoad(exports, ["getFwPolicyV2", "getFwPolicyV2Output"], () => requ
|
|
|
14
14
|
exports.getFwRuleV2 = null;
|
|
15
15
|
exports.getFwRuleV2Output = null;
|
|
16
16
|
utilities.lazyLoad(exports, ["getFwRuleV2", "getFwRuleV2Output"], () => require("./getFwRuleV2"));
|
|
17
|
+
exports.LbLoadbalancerV2 = null;
|
|
18
|
+
utilities.lazyLoad(exports, ["LbLoadbalancerV2"], () => require("./lbLoadbalancerV2"));
|
|
17
19
|
exports.Provider = null;
|
|
18
20
|
utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
|
|
19
21
|
// Export sub-modules:
|
|
@@ -51,6 +53,18 @@ const types = require("./types");
|
|
|
51
53
|
exports.types = types;
|
|
52
54
|
const vpnaas = require("./vpnaas");
|
|
53
55
|
exports.vpnaas = vpnaas;
|
|
56
|
+
const _module = {
|
|
57
|
+
version: utilities.getVersion(),
|
|
58
|
+
construct: (name, type, urn) => {
|
|
59
|
+
switch (type) {
|
|
60
|
+
case "openstack:index/lbLoadbalancerV2:LbLoadbalancerV2":
|
|
61
|
+
return new exports.LbLoadbalancerV2(name, undefined, { urn });
|
|
62
|
+
default:
|
|
63
|
+
throw new Error(`unknown resource type ${type}`);
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
pulumi.runtime.registerResourceModule("openstack", "index/lbLoadbalancerV2", _module);
|
|
54
68
|
pulumi.runtime.registerResourcePackage("openstack", {
|
|
55
69
|
version: utilities.getVersion(),
|
|
56
70
|
constructProvider: (name, type, urn) => {
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAI5B,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,aAAa,GAAmD,IAAW,CAAC;AAC5E,QAAA,mBAAmB,GAAyD,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,EAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAG1F,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIpF,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAGvE,sBAAsB;AACtB,+CAA+C;AAmB3C,oCAAY;AAlBhB,qCAAqC;AAmBjC,0BAAO;AAlBX,mCAAmC;AAmB/B,wBAAM;AAlBV,mDAAmD;AAmB/C,wCAAc;AAlBlB,uCAAuC;AAmBnC,4BAAQ;AAlBZ,6BAA6B;AAmBzB,kBAAG;AAlBP,uCAAuC;AAmBnC,4BAAQ;AAlBZ,uCAAuC;AAmBnC,4BAAQ;AAlBZ,mCAAmC;AAmB/B,wBAAM;AAlBV,2CAA2C;AAmBvC,gCAAU;AAlBd,+CAA+C;AAmB3C,oCAAY;AAlBhB,2CAA2C;AAmBvC,gCAAU;AAlBd,iDAAiD;AAmB7C,sCAAa;AAlBjB,iDAAiD;AAmB7C,sCAAa;AAlBjB,uDAAuD;AAmBnD,4CAAgB;AAlBpB,iCAAiC;AAmB7B,sBAAK;AAlBT,mCAAmC;AAmB/B,wBAAM;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
@@ -60,7 +60,7 @@ import * as outputs from "../types/output";
|
|
|
60
60
|
* const subnet1 = openstack.networking.getSubnet({
|
|
61
61
|
* name: "my-subnet",
|
|
62
62
|
* });
|
|
63
|
-
* const lb1 = new openstack.
|
|
63
|
+
* const lb1 = new openstack.LbLoadbalancerV2("lb_1", {
|
|
64
64
|
* name: "loadbalancer",
|
|
65
65
|
* vipSubnetId: subnet1.then(subnet1 => subnet1.id),
|
|
66
66
|
* });
|
|
@@ -64,7 +64,7 @@ const utilities = require("../utilities");
|
|
|
64
64
|
* const subnet1 = openstack.networking.getSubnet({
|
|
65
65
|
* name: "my-subnet",
|
|
66
66
|
* });
|
|
67
|
-
* const lb1 = new openstack.
|
|
67
|
+
* const lb1 = new openstack.LbLoadbalancerV2("lb_1", {
|
|
68
68
|
* name: "loadbalancer",
|
|
69
69
|
* vipSubnetId: subnet1.then(subnet1 => subnet1.id),
|
|
70
70
|
* });
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages a V2 loadbalancer resource within OpenStack.
|
|
4
|
+
*
|
|
5
|
+
* > **Note:** This resource has attributes that depend on octavia minor versions.
|
|
6
|
+
* Please ensure your Openstack cloud supports the required minor version.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as openstack from "@pulumi/openstack";
|
|
13
|
+
*
|
|
14
|
+
* const lb1 = new openstack.LbLoadbalancerV2("lb_1", {vipSubnetId: "d9415786-5f1a-428b-b35f-2f1523e146d2"});
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* ## Import
|
|
18
|
+
*
|
|
19
|
+
* Load Balancer can be imported using the Load Balancer ID, e.g.:
|
|
20
|
+
*
|
|
21
|
+
* ```sh
|
|
22
|
+
* $ pulumi import openstack:index/lbLoadbalancerV2:LbLoadbalancerV2 loadbalancer_1 19bcfdc7-c521-4a7e-9459-6750bd16df76
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export declare class LbLoadbalancerV2 extends pulumi.CustomResource {
|
|
26
|
+
/**
|
|
27
|
+
* Get an existing LbLoadbalancerV2 resource's state with the given name, ID, and optional extra
|
|
28
|
+
* properties used to qualify the lookup.
|
|
29
|
+
*
|
|
30
|
+
* @param name The _unique_ name of the resulting resource.
|
|
31
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
32
|
+
* @param state Any extra arguments used during the lookup.
|
|
33
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
34
|
+
*/
|
|
35
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: LbLoadbalancerV2State, opts?: pulumi.CustomResourceOptions): LbLoadbalancerV2;
|
|
36
|
+
/**
|
|
37
|
+
* Returns true if the given object is an instance of LbLoadbalancerV2. This is designed to work even
|
|
38
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
39
|
+
*/
|
|
40
|
+
static isInstance(obj: any): obj is LbLoadbalancerV2;
|
|
41
|
+
/**
|
|
42
|
+
* The administrative state of the Loadbalancer.
|
|
43
|
+
* A valid value is true (UP) or false (DOWN).
|
|
44
|
+
*/
|
|
45
|
+
readonly adminStateUp: pulumi.Output<boolean | undefined>;
|
|
46
|
+
/**
|
|
47
|
+
* The availability zone of the Loadbalancer.
|
|
48
|
+
* Changing this creates a new loadbalancer. Available only for Octavia
|
|
49
|
+
* **minor version 2.14 or later**.
|
|
50
|
+
*/
|
|
51
|
+
readonly availabilityZone: pulumi.Output<string | undefined>;
|
|
52
|
+
/**
|
|
53
|
+
* Human-readable description for the Loadbalancer.
|
|
54
|
+
*/
|
|
55
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
56
|
+
/**
|
|
57
|
+
* The UUID of a flavor. Changing this creates a new
|
|
58
|
+
* loadbalancer.
|
|
59
|
+
*/
|
|
60
|
+
readonly flavorId: pulumi.Output<string>;
|
|
61
|
+
/**
|
|
62
|
+
* The name of the provider. Changing this
|
|
63
|
+
* creates a new loadbalancer.
|
|
64
|
+
*/
|
|
65
|
+
readonly loadbalancerProvider: pulumi.Output<string>;
|
|
66
|
+
/**
|
|
67
|
+
* Human-readable name for the Loadbalancer. Does not have
|
|
68
|
+
* to be unique.
|
|
69
|
+
*/
|
|
70
|
+
readonly name: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* The region in which to obtain the V2 Networking client.
|
|
73
|
+
* A Networking client is needed to create an LB member. If omitted, the
|
|
74
|
+
* `region` argument of the provider is used. Changing this creates a new
|
|
75
|
+
* LB member.
|
|
76
|
+
*/
|
|
77
|
+
readonly region: pulumi.Output<string>;
|
|
78
|
+
/**
|
|
79
|
+
* A list of security group IDs to apply to the
|
|
80
|
+
* loadbalancer. The security groups must be specified by ID and not name (as
|
|
81
|
+
* opposed to how they are configured with the Compute Instance).
|
|
82
|
+
*/
|
|
83
|
+
readonly securityGroupIds: pulumi.Output<string[]>;
|
|
84
|
+
/**
|
|
85
|
+
* A list of simple strings assigned to the loadbalancer.
|
|
86
|
+
* Available only for Octavia **minor version 2.5 or later**.
|
|
87
|
+
*/
|
|
88
|
+
readonly tags: pulumi.Output<string[] | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* Required for admins. The UUID of the tenant who owns
|
|
91
|
+
* the Loadbalancer. Only administrative users can specify a tenant UUID
|
|
92
|
+
* other than their own. Changing this creates a new loadbalancer.
|
|
93
|
+
*/
|
|
94
|
+
readonly tenantId: pulumi.Output<string>;
|
|
95
|
+
/**
|
|
96
|
+
* The ip address of the load balancer.
|
|
97
|
+
* Changing this creates a new loadbalancer.
|
|
98
|
+
*/
|
|
99
|
+
readonly vipAddress: pulumi.Output<string>;
|
|
100
|
+
/**
|
|
101
|
+
* The network on which to allocate the
|
|
102
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
103
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
104
|
+
* are shared). Changing this creates a new loadbalancer.
|
|
105
|
+
* It is available only for Octavia.
|
|
106
|
+
*/
|
|
107
|
+
readonly vipNetworkId: pulumi.Output<string>;
|
|
108
|
+
/**
|
|
109
|
+
* The port UUID that the loadbalancer will use.
|
|
110
|
+
* Changing this creates a new loadbalancer. It is available only for Octavia.
|
|
111
|
+
*/
|
|
112
|
+
readonly vipPortId: pulumi.Output<string>;
|
|
113
|
+
/**
|
|
114
|
+
* The subnet on which to allocate the
|
|
115
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
116
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
117
|
+
* are shared). Changing this creates a new loadbalancer.
|
|
118
|
+
* It is required to Neutron LBaaS but optional for Octavia.
|
|
119
|
+
*/
|
|
120
|
+
readonly vipSubnetId: pulumi.Output<string>;
|
|
121
|
+
/**
|
|
122
|
+
* Create a LbLoadbalancerV2 resource with the given unique name, arguments, and options.
|
|
123
|
+
*
|
|
124
|
+
* @param name The _unique_ name of the resource.
|
|
125
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
126
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
127
|
+
*/
|
|
128
|
+
constructor(name: string, args?: LbLoadbalancerV2Args, opts?: pulumi.CustomResourceOptions);
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Input properties used for looking up and filtering LbLoadbalancerV2 resources.
|
|
132
|
+
*/
|
|
133
|
+
export interface LbLoadbalancerV2State {
|
|
134
|
+
/**
|
|
135
|
+
* The administrative state of the Loadbalancer.
|
|
136
|
+
* A valid value is true (UP) or false (DOWN).
|
|
137
|
+
*/
|
|
138
|
+
adminStateUp?: pulumi.Input<boolean>;
|
|
139
|
+
/**
|
|
140
|
+
* The availability zone of the Loadbalancer.
|
|
141
|
+
* Changing this creates a new loadbalancer. Available only for Octavia
|
|
142
|
+
* **minor version 2.14 or later**.
|
|
143
|
+
*/
|
|
144
|
+
availabilityZone?: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* Human-readable description for the Loadbalancer.
|
|
147
|
+
*/
|
|
148
|
+
description?: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* The UUID of a flavor. Changing this creates a new
|
|
151
|
+
* loadbalancer.
|
|
152
|
+
*/
|
|
153
|
+
flavorId?: pulumi.Input<string>;
|
|
154
|
+
/**
|
|
155
|
+
* The name of the provider. Changing this
|
|
156
|
+
* creates a new loadbalancer.
|
|
157
|
+
*/
|
|
158
|
+
loadbalancerProvider?: pulumi.Input<string>;
|
|
159
|
+
/**
|
|
160
|
+
* Human-readable name for the Loadbalancer. Does not have
|
|
161
|
+
* to be unique.
|
|
162
|
+
*/
|
|
163
|
+
name?: pulumi.Input<string>;
|
|
164
|
+
/**
|
|
165
|
+
* The region in which to obtain the V2 Networking client.
|
|
166
|
+
* A Networking client is needed to create an LB member. If omitted, the
|
|
167
|
+
* `region` argument of the provider is used. Changing this creates a new
|
|
168
|
+
* LB member.
|
|
169
|
+
*/
|
|
170
|
+
region?: pulumi.Input<string>;
|
|
171
|
+
/**
|
|
172
|
+
* A list of security group IDs to apply to the
|
|
173
|
+
* loadbalancer. The security groups must be specified by ID and not name (as
|
|
174
|
+
* opposed to how they are configured with the Compute Instance).
|
|
175
|
+
*/
|
|
176
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
177
|
+
/**
|
|
178
|
+
* A list of simple strings assigned to the loadbalancer.
|
|
179
|
+
* Available only for Octavia **minor version 2.5 or later**.
|
|
180
|
+
*/
|
|
181
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
182
|
+
/**
|
|
183
|
+
* Required for admins. The UUID of the tenant who owns
|
|
184
|
+
* the Loadbalancer. Only administrative users can specify a tenant UUID
|
|
185
|
+
* other than their own. Changing this creates a new loadbalancer.
|
|
186
|
+
*/
|
|
187
|
+
tenantId?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* The ip address of the load balancer.
|
|
190
|
+
* Changing this creates a new loadbalancer.
|
|
191
|
+
*/
|
|
192
|
+
vipAddress?: pulumi.Input<string>;
|
|
193
|
+
/**
|
|
194
|
+
* The network on which to allocate the
|
|
195
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
196
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
197
|
+
* are shared). Changing this creates a new loadbalancer.
|
|
198
|
+
* It is available only for Octavia.
|
|
199
|
+
*/
|
|
200
|
+
vipNetworkId?: pulumi.Input<string>;
|
|
201
|
+
/**
|
|
202
|
+
* The port UUID that the loadbalancer will use.
|
|
203
|
+
* Changing this creates a new loadbalancer. It is available only for Octavia.
|
|
204
|
+
*/
|
|
205
|
+
vipPortId?: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* The subnet on which to allocate the
|
|
208
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
209
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
210
|
+
* are shared). Changing this creates a new loadbalancer.
|
|
211
|
+
* It is required to Neutron LBaaS but optional for Octavia.
|
|
212
|
+
*/
|
|
213
|
+
vipSubnetId?: pulumi.Input<string>;
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* The set of arguments for constructing a LbLoadbalancerV2 resource.
|
|
217
|
+
*/
|
|
218
|
+
export interface LbLoadbalancerV2Args {
|
|
219
|
+
/**
|
|
220
|
+
* The administrative state of the Loadbalancer.
|
|
221
|
+
* A valid value is true (UP) or false (DOWN).
|
|
222
|
+
*/
|
|
223
|
+
adminStateUp?: pulumi.Input<boolean>;
|
|
224
|
+
/**
|
|
225
|
+
* The availability zone of the Loadbalancer.
|
|
226
|
+
* Changing this creates a new loadbalancer. Available only for Octavia
|
|
227
|
+
* **minor version 2.14 or later**.
|
|
228
|
+
*/
|
|
229
|
+
availabilityZone?: pulumi.Input<string>;
|
|
230
|
+
/**
|
|
231
|
+
* Human-readable description for the Loadbalancer.
|
|
232
|
+
*/
|
|
233
|
+
description?: pulumi.Input<string>;
|
|
234
|
+
/**
|
|
235
|
+
* The UUID of a flavor. Changing this creates a new
|
|
236
|
+
* loadbalancer.
|
|
237
|
+
*/
|
|
238
|
+
flavorId?: pulumi.Input<string>;
|
|
239
|
+
/**
|
|
240
|
+
* The name of the provider. Changing this
|
|
241
|
+
* creates a new loadbalancer.
|
|
242
|
+
*/
|
|
243
|
+
loadbalancerProvider?: pulumi.Input<string>;
|
|
244
|
+
/**
|
|
245
|
+
* Human-readable name for the Loadbalancer. Does not have
|
|
246
|
+
* to be unique.
|
|
247
|
+
*/
|
|
248
|
+
name?: pulumi.Input<string>;
|
|
249
|
+
/**
|
|
250
|
+
* The region in which to obtain the V2 Networking client.
|
|
251
|
+
* A Networking client is needed to create an LB member. If omitted, the
|
|
252
|
+
* `region` argument of the provider is used. Changing this creates a new
|
|
253
|
+
* LB member.
|
|
254
|
+
*/
|
|
255
|
+
region?: pulumi.Input<string>;
|
|
256
|
+
/**
|
|
257
|
+
* A list of security group IDs to apply to the
|
|
258
|
+
* loadbalancer. The security groups must be specified by ID and not name (as
|
|
259
|
+
* opposed to how they are configured with the Compute Instance).
|
|
260
|
+
*/
|
|
261
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
262
|
+
/**
|
|
263
|
+
* A list of simple strings assigned to the loadbalancer.
|
|
264
|
+
* Available only for Octavia **minor version 2.5 or later**.
|
|
265
|
+
*/
|
|
266
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
267
|
+
/**
|
|
268
|
+
* Required for admins. The UUID of the tenant who owns
|
|
269
|
+
* the Loadbalancer. Only administrative users can specify a tenant UUID
|
|
270
|
+
* other than their own. Changing this creates a new loadbalancer.
|
|
271
|
+
*/
|
|
272
|
+
tenantId?: pulumi.Input<string>;
|
|
273
|
+
/**
|
|
274
|
+
* The ip address of the load balancer.
|
|
275
|
+
* Changing this creates a new loadbalancer.
|
|
276
|
+
*/
|
|
277
|
+
vipAddress?: pulumi.Input<string>;
|
|
278
|
+
/**
|
|
279
|
+
* The network on which to allocate the
|
|
280
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
281
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
282
|
+
* are shared). Changing this creates a new loadbalancer.
|
|
283
|
+
* It is available only for Octavia.
|
|
284
|
+
*/
|
|
285
|
+
vipNetworkId?: pulumi.Input<string>;
|
|
286
|
+
/**
|
|
287
|
+
* The port UUID that the loadbalancer will use.
|
|
288
|
+
* Changing this creates a new loadbalancer. It is available only for Octavia.
|
|
289
|
+
*/
|
|
290
|
+
vipPortId?: pulumi.Input<string>;
|
|
291
|
+
/**
|
|
292
|
+
* The subnet on which to allocate the
|
|
293
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
294
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
295
|
+
* are shared). Changing this creates a new loadbalancer.
|
|
296
|
+
* It is required to Neutron LBaaS but optional for Octavia.
|
|
297
|
+
*/
|
|
298
|
+
vipSubnetId?: pulumi.Input<string>;
|
|
299
|
+
}
|