@pulumi/openstack 5.1.0-alpha.1747981761 → 5.1.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.
- package/blockstorage/quoteSetV3.d.ts +0 -3
- package/blockstorage/quoteSetV3.js +0 -3
- package/blockstorage/quoteSetV3.js.map +1 -1
- package/blockstorage/volume.d.ts +24 -6
- package/blockstorage/volume.js +2 -0
- package/blockstorage/volume.js.map +1 -1
- package/compute/getHypervisorV2.d.ts +4 -4
- package/compute/getHypervisorV2.js +2 -0
- package/compute/getHypervisorV2.js.map +1 -1
- package/compute/instance.d.ts +36 -6
- package/compute/instance.js +2 -0
- package/compute/instance.js.map +1 -1
- package/dns/zone.d.ts +10 -13
- package/dns/zone.js +1 -1
- package/dns/zone.js.map +1 -1
- package/identity/getUser.d.ts +1 -1
- package/index.d.ts +3 -0
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/objectstorage/container.d.ts +106 -60
- package/objectstorage/container.js +15 -0
- package/objectstorage/container.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +3 -1
- package/types/output.d.ts +3 -1
- package/vpnaas/ikePolicy.d.ts +21 -15
- package/vpnaas/ikePolicy.js.map +1 -1
- package/vpnaas/ipSecPolicy.d.ts +21 -15
- package/vpnaas/ipSecPolicy.js.map +1 -1
- package/workflowWorkflowV2.d.ts +120 -0
- package/workflowWorkflowV2.js +58 -0
- package/workflowWorkflowV2.js.map +1 -0
|
@@ -89,6 +89,19 @@ import * as outputs from "../types/output";
|
|
|
89
89
|
* });
|
|
90
90
|
* ```
|
|
91
91
|
*
|
|
92
|
+
* ### Set a custom storage class in the Ceph RGW Swift API
|
|
93
|
+
*
|
|
94
|
+
* ```typescript
|
|
95
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
96
|
+
* import * as openstack from "@pulumi/openstack";
|
|
97
|
+
*
|
|
98
|
+
* const container1 = new openstack.objectstorage.Container("container_1", {
|
|
99
|
+
* name: "tf-test-container-1",
|
|
100
|
+
* storagePolicy: "az1",
|
|
101
|
+
* storageClass: "SSD",
|
|
102
|
+
* });
|
|
103
|
+
* ```
|
|
104
|
+
*
|
|
92
105
|
* ## Import
|
|
93
106
|
*
|
|
94
107
|
* This resource can be imported by specifying the name of the container:
|
|
@@ -124,24 +137,24 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
124
137
|
static isInstance(obj: any): obj is Container;
|
|
125
138
|
/**
|
|
126
139
|
* Sets an access control list (ACL) that grants
|
|
127
|
-
* read access. This header can contain a comma-delimited list of users that
|
|
128
|
-
*
|
|
129
|
-
*
|
|
140
|
+
* read access. This header can contain a comma-delimited list of users that can
|
|
141
|
+
* read the container (allows the GET method for all objects in the container).
|
|
142
|
+
* Changing this updates the access control list read access.
|
|
130
143
|
*/
|
|
131
144
|
readonly containerRead: pulumi.Output<string | undefined>;
|
|
132
145
|
/**
|
|
133
|
-
* The secret key for container
|
|
134
|
-
* Changing this updates container synchronization.
|
|
146
|
+
* The secret key for container
|
|
147
|
+
* synchronization. Changing this updates container synchronization.
|
|
135
148
|
*/
|
|
136
149
|
readonly containerSyncKey: pulumi.Output<string | undefined>;
|
|
137
150
|
/**
|
|
138
|
-
* The destination for container
|
|
139
|
-
* Changing this updates container synchronization.
|
|
151
|
+
* The destination for container
|
|
152
|
+
* synchronization. Changing this updates container synchronization.
|
|
140
153
|
*/
|
|
141
154
|
readonly containerSyncTo: pulumi.Output<string | undefined>;
|
|
142
155
|
/**
|
|
143
|
-
* Sets an ACL that grants write access.
|
|
144
|
-
*
|
|
156
|
+
* Sets an ACL that grants write access. Changing
|
|
157
|
+
* this updates the access control list write access.
|
|
145
158
|
*/
|
|
146
159
|
readonly containerWrite: pulumi.Output<string | undefined>;
|
|
147
160
|
/**
|
|
@@ -150,12 +163,14 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
150
163
|
*/
|
|
151
164
|
readonly contentType: pulumi.Output<string | undefined>;
|
|
152
165
|
/**
|
|
153
|
-
* A boolean that indicates all
|
|
166
|
+
* A boolean that indicates all
|
|
167
|
+
* objects should be deleted from the container so that the container can be
|
|
168
|
+
* destroyed without error. These objects are not recoverable.
|
|
154
169
|
*/
|
|
155
170
|
readonly forceDestroy: pulumi.Output<boolean | undefined>;
|
|
156
171
|
/**
|
|
157
|
-
* Custom key/value pairs to associate with the
|
|
158
|
-
* Changing this updates the existing container metadata.
|
|
172
|
+
* Custom key/value pairs to associate with the
|
|
173
|
+
* container. Changing this updates the existing container metadata.
|
|
159
174
|
*/
|
|
160
175
|
readonly metadata: pulumi.Output<{
|
|
161
176
|
[key: string]: string;
|
|
@@ -167,26 +182,35 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
167
182
|
readonly name: pulumi.Output<string>;
|
|
168
183
|
/**
|
|
169
184
|
* The region in which to create the container. If
|
|
170
|
-
* omitted, the `region` argument of the provider is used. Changing this
|
|
171
|
-
*
|
|
185
|
+
* omitted, the `region` argument of the provider is used. Changing this creates
|
|
186
|
+
* a new container.
|
|
172
187
|
*/
|
|
173
188
|
readonly region: pulumi.Output<string>;
|
|
174
189
|
/**
|
|
175
|
-
* The storage
|
|
176
|
-
* Changing this creates a new container.
|
|
190
|
+
* The storage class to be used for the container.
|
|
191
|
+
* Changing this creates a new container. This option is only available in Ceph
|
|
192
|
+
* RGW Swift API implementation.
|
|
193
|
+
*/
|
|
194
|
+
readonly storageClass: pulumi.Output<string>;
|
|
195
|
+
/**
|
|
196
|
+
* The storage policy to be used for the
|
|
197
|
+
* container. Changing this creates a new container.
|
|
177
198
|
*/
|
|
178
199
|
readonly storagePolicy: pulumi.Output<string>;
|
|
179
200
|
/**
|
|
180
201
|
* A boolean that can enable or disable object
|
|
181
202
|
* versioning. The default value is `false`. To use this feature, your Swift
|
|
182
|
-
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri
|
|
203
|
+
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri
|
|
204
|
+
* release
|
|
205
|
+
* notes](https://docs.openstack.org/releasenotes/swift/ussuri.html#relnotes-2-24-0-stable-ussuri)),
|
|
183
206
|
* and a cloud administrator must have set the `allowObjectVersioning = true`
|
|
184
|
-
* configuration option in Swift. If you cannot set this versioning type, you
|
|
185
|
-
* want to consider using `versioningLegacy` instead.
|
|
207
|
+
* configuration option in Swift. If you cannot set this versioning type, you
|
|
208
|
+
* may want to consider using `versioningLegacy` instead.
|
|
186
209
|
*/
|
|
187
210
|
readonly versioning: pulumi.Output<boolean | undefined>;
|
|
188
211
|
/**
|
|
189
|
-
* Enable legacy object versioning. The
|
|
212
|
+
* Enable legacy object versioning. The
|
|
213
|
+
* structure is described below.
|
|
190
214
|
*
|
|
191
215
|
* @deprecated Use newer "versioning" implementation
|
|
192
216
|
*/
|
|
@@ -206,24 +230,24 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
206
230
|
export interface ContainerState {
|
|
207
231
|
/**
|
|
208
232
|
* Sets an access control list (ACL) that grants
|
|
209
|
-
* read access. This header can contain a comma-delimited list of users that
|
|
210
|
-
*
|
|
211
|
-
*
|
|
233
|
+
* read access. This header can contain a comma-delimited list of users that can
|
|
234
|
+
* read the container (allows the GET method for all objects in the container).
|
|
235
|
+
* Changing this updates the access control list read access.
|
|
212
236
|
*/
|
|
213
237
|
containerRead?: pulumi.Input<string>;
|
|
214
238
|
/**
|
|
215
|
-
* The secret key for container
|
|
216
|
-
* Changing this updates container synchronization.
|
|
239
|
+
* The secret key for container
|
|
240
|
+
* synchronization. Changing this updates container synchronization.
|
|
217
241
|
*/
|
|
218
242
|
containerSyncKey?: pulumi.Input<string>;
|
|
219
243
|
/**
|
|
220
|
-
* The destination for container
|
|
221
|
-
* Changing this updates container synchronization.
|
|
244
|
+
* The destination for container
|
|
245
|
+
* synchronization. Changing this updates container synchronization.
|
|
222
246
|
*/
|
|
223
247
|
containerSyncTo?: pulumi.Input<string>;
|
|
224
248
|
/**
|
|
225
|
-
* Sets an ACL that grants write access.
|
|
226
|
-
*
|
|
249
|
+
* Sets an ACL that grants write access. Changing
|
|
250
|
+
* this updates the access control list write access.
|
|
227
251
|
*/
|
|
228
252
|
containerWrite?: pulumi.Input<string>;
|
|
229
253
|
/**
|
|
@@ -232,12 +256,14 @@ export interface ContainerState {
|
|
|
232
256
|
*/
|
|
233
257
|
contentType?: pulumi.Input<string>;
|
|
234
258
|
/**
|
|
235
|
-
* A boolean that indicates all
|
|
259
|
+
* A boolean that indicates all
|
|
260
|
+
* objects should be deleted from the container so that the container can be
|
|
261
|
+
* destroyed without error. These objects are not recoverable.
|
|
236
262
|
*/
|
|
237
263
|
forceDestroy?: pulumi.Input<boolean>;
|
|
238
264
|
/**
|
|
239
|
-
* Custom key/value pairs to associate with the
|
|
240
|
-
* Changing this updates the existing container metadata.
|
|
265
|
+
* Custom key/value pairs to associate with the
|
|
266
|
+
* container. Changing this updates the existing container metadata.
|
|
241
267
|
*/
|
|
242
268
|
metadata?: pulumi.Input<{
|
|
243
269
|
[key: string]: pulumi.Input<string>;
|
|
@@ -249,26 +275,35 @@ export interface ContainerState {
|
|
|
249
275
|
name?: pulumi.Input<string>;
|
|
250
276
|
/**
|
|
251
277
|
* The region in which to create the container. If
|
|
252
|
-
* omitted, the `region` argument of the provider is used. Changing this
|
|
253
|
-
*
|
|
278
|
+
* omitted, the `region` argument of the provider is used. Changing this creates
|
|
279
|
+
* a new container.
|
|
254
280
|
*/
|
|
255
281
|
region?: pulumi.Input<string>;
|
|
256
282
|
/**
|
|
257
|
-
* The storage
|
|
258
|
-
* Changing this creates a new container.
|
|
283
|
+
* The storage class to be used for the container.
|
|
284
|
+
* Changing this creates a new container. This option is only available in Ceph
|
|
285
|
+
* RGW Swift API implementation.
|
|
286
|
+
*/
|
|
287
|
+
storageClass?: pulumi.Input<string>;
|
|
288
|
+
/**
|
|
289
|
+
* The storage policy to be used for the
|
|
290
|
+
* container. Changing this creates a new container.
|
|
259
291
|
*/
|
|
260
292
|
storagePolicy?: pulumi.Input<string>;
|
|
261
293
|
/**
|
|
262
294
|
* A boolean that can enable or disable object
|
|
263
295
|
* versioning. The default value is `false`. To use this feature, your Swift
|
|
264
|
-
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri
|
|
296
|
+
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri
|
|
297
|
+
* release
|
|
298
|
+
* notes](https://docs.openstack.org/releasenotes/swift/ussuri.html#relnotes-2-24-0-stable-ussuri)),
|
|
265
299
|
* and a cloud administrator must have set the `allowObjectVersioning = true`
|
|
266
|
-
* configuration option in Swift. If you cannot set this versioning type, you
|
|
267
|
-
* want to consider using `versioningLegacy` instead.
|
|
300
|
+
* configuration option in Swift. If you cannot set this versioning type, you
|
|
301
|
+
* may want to consider using `versioningLegacy` instead.
|
|
268
302
|
*/
|
|
269
303
|
versioning?: pulumi.Input<boolean>;
|
|
270
304
|
/**
|
|
271
|
-
* Enable legacy object versioning. The
|
|
305
|
+
* Enable legacy object versioning. The
|
|
306
|
+
* structure is described below.
|
|
272
307
|
*
|
|
273
308
|
* @deprecated Use newer "versioning" implementation
|
|
274
309
|
*/
|
|
@@ -280,24 +315,24 @@ export interface ContainerState {
|
|
|
280
315
|
export interface ContainerArgs {
|
|
281
316
|
/**
|
|
282
317
|
* Sets an access control list (ACL) that grants
|
|
283
|
-
* read access. This header can contain a comma-delimited list of users that
|
|
284
|
-
*
|
|
285
|
-
*
|
|
318
|
+
* read access. This header can contain a comma-delimited list of users that can
|
|
319
|
+
* read the container (allows the GET method for all objects in the container).
|
|
320
|
+
* Changing this updates the access control list read access.
|
|
286
321
|
*/
|
|
287
322
|
containerRead?: pulumi.Input<string>;
|
|
288
323
|
/**
|
|
289
|
-
* The secret key for container
|
|
290
|
-
* Changing this updates container synchronization.
|
|
324
|
+
* The secret key for container
|
|
325
|
+
* synchronization. Changing this updates container synchronization.
|
|
291
326
|
*/
|
|
292
327
|
containerSyncKey?: pulumi.Input<string>;
|
|
293
328
|
/**
|
|
294
|
-
* The destination for container
|
|
295
|
-
* Changing this updates container synchronization.
|
|
329
|
+
* The destination for container
|
|
330
|
+
* synchronization. Changing this updates container synchronization.
|
|
296
331
|
*/
|
|
297
332
|
containerSyncTo?: pulumi.Input<string>;
|
|
298
333
|
/**
|
|
299
|
-
* Sets an ACL that grants write access.
|
|
300
|
-
*
|
|
334
|
+
* Sets an ACL that grants write access. Changing
|
|
335
|
+
* this updates the access control list write access.
|
|
301
336
|
*/
|
|
302
337
|
containerWrite?: pulumi.Input<string>;
|
|
303
338
|
/**
|
|
@@ -306,12 +341,14 @@ export interface ContainerArgs {
|
|
|
306
341
|
*/
|
|
307
342
|
contentType?: pulumi.Input<string>;
|
|
308
343
|
/**
|
|
309
|
-
* A boolean that indicates all
|
|
344
|
+
* A boolean that indicates all
|
|
345
|
+
* objects should be deleted from the container so that the container can be
|
|
346
|
+
* destroyed without error. These objects are not recoverable.
|
|
310
347
|
*/
|
|
311
348
|
forceDestroy?: pulumi.Input<boolean>;
|
|
312
349
|
/**
|
|
313
|
-
* Custom key/value pairs to associate with the
|
|
314
|
-
* Changing this updates the existing container metadata.
|
|
350
|
+
* Custom key/value pairs to associate with the
|
|
351
|
+
* container. Changing this updates the existing container metadata.
|
|
315
352
|
*/
|
|
316
353
|
metadata?: pulumi.Input<{
|
|
317
354
|
[key: string]: pulumi.Input<string>;
|
|
@@ -323,26 +360,35 @@ export interface ContainerArgs {
|
|
|
323
360
|
name?: pulumi.Input<string>;
|
|
324
361
|
/**
|
|
325
362
|
* The region in which to create the container. If
|
|
326
|
-
* omitted, the `region` argument of the provider is used. Changing this
|
|
327
|
-
*
|
|
363
|
+
* omitted, the `region` argument of the provider is used. Changing this creates
|
|
364
|
+
* a new container.
|
|
328
365
|
*/
|
|
329
366
|
region?: pulumi.Input<string>;
|
|
330
367
|
/**
|
|
331
|
-
* The storage
|
|
332
|
-
* Changing this creates a new container.
|
|
368
|
+
* The storage class to be used for the container.
|
|
369
|
+
* Changing this creates a new container. This option is only available in Ceph
|
|
370
|
+
* RGW Swift API implementation.
|
|
371
|
+
*/
|
|
372
|
+
storageClass?: pulumi.Input<string>;
|
|
373
|
+
/**
|
|
374
|
+
* The storage policy to be used for the
|
|
375
|
+
* container. Changing this creates a new container.
|
|
333
376
|
*/
|
|
334
377
|
storagePolicy?: pulumi.Input<string>;
|
|
335
378
|
/**
|
|
336
379
|
* A boolean that can enable or disable object
|
|
337
380
|
* versioning. The default value is `false`. To use this feature, your Swift
|
|
338
|
-
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri
|
|
381
|
+
* version must be 2.24 or higher (as described in the [OpenStack Swift Ussuri
|
|
382
|
+
* release
|
|
383
|
+
* notes](https://docs.openstack.org/releasenotes/swift/ussuri.html#relnotes-2-24-0-stable-ussuri)),
|
|
339
384
|
* and a cloud administrator must have set the `allowObjectVersioning = true`
|
|
340
|
-
* configuration option in Swift. If you cannot set this versioning type, you
|
|
341
|
-
* want to consider using `versioningLegacy` instead.
|
|
385
|
+
* configuration option in Swift. If you cannot set this versioning type, you
|
|
386
|
+
* may want to consider using `versioningLegacy` instead.
|
|
342
387
|
*/
|
|
343
388
|
versioning?: pulumi.Input<boolean>;
|
|
344
389
|
/**
|
|
345
|
-
* Enable legacy object versioning. The
|
|
390
|
+
* Enable legacy object versioning. The
|
|
391
|
+
* structure is described below.
|
|
346
392
|
*
|
|
347
393
|
* @deprecated Use newer "versioning" implementation
|
|
348
394
|
*/
|
|
@@ -93,6 +93,19 @@ const utilities = require("../utilities");
|
|
|
93
93
|
* });
|
|
94
94
|
* ```
|
|
95
95
|
*
|
|
96
|
+
* ### Set a custom storage class in the Ceph RGW Swift API
|
|
97
|
+
*
|
|
98
|
+
* ```typescript
|
|
99
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
100
|
+
* import * as openstack from "@pulumi/openstack";
|
|
101
|
+
*
|
|
102
|
+
* const container1 = new openstack.objectstorage.Container("container_1", {
|
|
103
|
+
* name: "tf-test-container-1",
|
|
104
|
+
* storagePolicy: "az1",
|
|
105
|
+
* storageClass: "SSD",
|
|
106
|
+
* });
|
|
107
|
+
* ```
|
|
108
|
+
*
|
|
96
109
|
* ## Import
|
|
97
110
|
*
|
|
98
111
|
* This resource can be imported by specifying the name of the container:
|
|
@@ -147,6 +160,7 @@ class Container extends pulumi.CustomResource {
|
|
|
147
160
|
resourceInputs["metadata"] = state ? state.metadata : undefined;
|
|
148
161
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
149
162
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
163
|
+
resourceInputs["storageClass"] = state ? state.storageClass : undefined;
|
|
150
164
|
resourceInputs["storagePolicy"] = state ? state.storagePolicy : undefined;
|
|
151
165
|
resourceInputs["versioning"] = state ? state.versioning : undefined;
|
|
152
166
|
resourceInputs["versioningLegacy"] = state ? state.versioningLegacy : undefined;
|
|
@@ -162,6 +176,7 @@ class Container extends pulumi.CustomResource {
|
|
|
162
176
|
resourceInputs["metadata"] = args ? args.metadata : undefined;
|
|
163
177
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
164
178
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
179
|
+
resourceInputs["storageClass"] = args ? args.storageClass : undefined;
|
|
165
180
|
resourceInputs["storagePolicy"] = args ? args.storagePolicy : undefined;
|
|
166
181
|
resourceInputs["versioning"] = args ? args.versioning : undefined;
|
|
167
182
|
resourceInputs["versioningLegacy"] = args ? args.versioningLegacy : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.js","sourceRoot":"","sources":["../../objectstorage/container.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"container.js","sourceRoot":"","sources":["../../objectstorage/container.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/openstack",
|
|
3
|
-
"version": "5.1.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing OpenStack cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "openstack",
|
|
25
|
-
"version": "5.1.0
|
|
25
|
+
"version": "5.1.0"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -754,7 +754,9 @@ export declare namespace objectstorage {
|
|
|
754
754
|
*/
|
|
755
755
|
location: pulumi.Input<string>;
|
|
756
756
|
/**
|
|
757
|
-
* Versioning type which can be `versions` or `history`
|
|
757
|
+
* Versioning type which can be `versions` or `history`
|
|
758
|
+
* according to [OpenStack
|
|
759
|
+
* documentation](https://docs.openstack.org/swift/latest/api/object_versioning.html).
|
|
758
760
|
*/
|
|
759
761
|
type: pulumi.Input<string>;
|
|
760
762
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -935,7 +935,9 @@ export declare namespace objectstorage {
|
|
|
935
935
|
*/
|
|
936
936
|
location: string;
|
|
937
937
|
/**
|
|
938
|
-
* Versioning type which can be `versions` or `history`
|
|
938
|
+
* Versioning type which can be `versions` or `history`
|
|
939
|
+
* according to [OpenStack
|
|
940
|
+
* documentation](https://docs.openstack.org/swift/latest/api/object_versioning.html).
|
|
939
941
|
*/
|
|
940
942
|
type: string;
|
|
941
943
|
}
|
package/vpnaas/ikePolicy.d.ts
CHANGED
|
@@ -38,8 +38,9 @@ export declare class IkePolicy extends pulumi.CustomResource {
|
|
|
38
38
|
*/
|
|
39
39
|
static isInstance(obj: any): obj is IkePolicy;
|
|
40
40
|
/**
|
|
41
|
-
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512
|
|
42
|
-
* Default is sha1.
|
|
41
|
+
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512,
|
|
42
|
+
* aes-xcbc, aes-cmac. Default is sha1.
|
|
43
|
+
* Changing this updates the algorithm of the existing policy.
|
|
43
44
|
*/
|
|
44
45
|
readonly authAlgorithm: pulumi.Output<string | undefined>;
|
|
45
46
|
/**
|
|
@@ -48,7 +49,8 @@ export declare class IkePolicy extends pulumi.CustomResource {
|
|
|
48
49
|
*/
|
|
49
50
|
readonly description: pulumi.Output<string | undefined>;
|
|
50
51
|
/**
|
|
51
|
-
* The encryption algorithm. Valid values are 3des, aes-128, aes-192
|
|
52
|
+
* The encryption algorithm. Valid values are 3des, aes-128, aes-192, aes-256,
|
|
53
|
+
* aes-KKK-ctr, aes-KKK-ccm-II, aes-KKK-gcm-II (with KKK = 128/192/256 bits key size and II = 8/12/16 octets ICV).
|
|
52
54
|
* The default value is aes-128. Changing this updates the existing policy.
|
|
53
55
|
*/
|
|
54
56
|
readonly encryptionAlgorithm: pulumi.Output<string | undefined>;
|
|
@@ -67,8 +69,8 @@ export declare class IkePolicy extends pulumi.CustomResource {
|
|
|
67
69
|
*/
|
|
68
70
|
readonly name: pulumi.Output<string>;
|
|
69
71
|
/**
|
|
70
|
-
* The perfect forward secrecy mode. Valid values are
|
|
71
|
-
* Changing this updates the existing policy.
|
|
72
|
+
* The perfect forward secrecy mode. Valid values are group2, group5 and group14 to group31.
|
|
73
|
+
* Default is group5. Changing this updates the existing policy.
|
|
72
74
|
*/
|
|
73
75
|
readonly pfs: pulumi.Output<string | undefined>;
|
|
74
76
|
/**
|
|
@@ -108,8 +110,9 @@ export declare class IkePolicy extends pulumi.CustomResource {
|
|
|
108
110
|
*/
|
|
109
111
|
export interface IkePolicyState {
|
|
110
112
|
/**
|
|
111
|
-
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512
|
|
112
|
-
* Default is sha1.
|
|
113
|
+
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512,
|
|
114
|
+
* aes-xcbc, aes-cmac. Default is sha1.
|
|
115
|
+
* Changing this updates the algorithm of the existing policy.
|
|
113
116
|
*/
|
|
114
117
|
authAlgorithm?: pulumi.Input<string>;
|
|
115
118
|
/**
|
|
@@ -118,7 +121,8 @@ export interface IkePolicyState {
|
|
|
118
121
|
*/
|
|
119
122
|
description?: pulumi.Input<string>;
|
|
120
123
|
/**
|
|
121
|
-
* The encryption algorithm. Valid values are 3des, aes-128, aes-192
|
|
124
|
+
* The encryption algorithm. Valid values are 3des, aes-128, aes-192, aes-256,
|
|
125
|
+
* aes-KKK-ctr, aes-KKK-ccm-II, aes-KKK-gcm-II (with KKK = 128/192/256 bits key size and II = 8/12/16 octets ICV).
|
|
122
126
|
* The default value is aes-128. Changing this updates the existing policy.
|
|
123
127
|
*/
|
|
124
128
|
encryptionAlgorithm?: pulumi.Input<string>;
|
|
@@ -137,8 +141,8 @@ export interface IkePolicyState {
|
|
|
137
141
|
*/
|
|
138
142
|
name?: pulumi.Input<string>;
|
|
139
143
|
/**
|
|
140
|
-
* The perfect forward secrecy mode. Valid values are
|
|
141
|
-
* Changing this updates the existing policy.
|
|
144
|
+
* The perfect forward secrecy mode. Valid values are group2, group5 and group14 to group31.
|
|
145
|
+
* Default is group5. Changing this updates the existing policy.
|
|
142
146
|
*/
|
|
143
147
|
pfs?: pulumi.Input<string>;
|
|
144
148
|
/**
|
|
@@ -170,8 +174,9 @@ export interface IkePolicyState {
|
|
|
170
174
|
*/
|
|
171
175
|
export interface IkePolicyArgs {
|
|
172
176
|
/**
|
|
173
|
-
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512
|
|
174
|
-
* Default is sha1.
|
|
177
|
+
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512,
|
|
178
|
+
* aes-xcbc, aes-cmac. Default is sha1.
|
|
179
|
+
* Changing this updates the algorithm of the existing policy.
|
|
175
180
|
*/
|
|
176
181
|
authAlgorithm?: pulumi.Input<string>;
|
|
177
182
|
/**
|
|
@@ -180,7 +185,8 @@ export interface IkePolicyArgs {
|
|
|
180
185
|
*/
|
|
181
186
|
description?: pulumi.Input<string>;
|
|
182
187
|
/**
|
|
183
|
-
* The encryption algorithm. Valid values are 3des, aes-128, aes-192
|
|
188
|
+
* The encryption algorithm. Valid values are 3des, aes-128, aes-192, aes-256,
|
|
189
|
+
* aes-KKK-ctr, aes-KKK-ccm-II, aes-KKK-gcm-II (with KKK = 128/192/256 bits key size and II = 8/12/16 octets ICV).
|
|
184
190
|
* The default value is aes-128. Changing this updates the existing policy.
|
|
185
191
|
*/
|
|
186
192
|
encryptionAlgorithm?: pulumi.Input<string>;
|
|
@@ -199,8 +205,8 @@ export interface IkePolicyArgs {
|
|
|
199
205
|
*/
|
|
200
206
|
name?: pulumi.Input<string>;
|
|
201
207
|
/**
|
|
202
|
-
* The perfect forward secrecy mode. Valid values are
|
|
203
|
-
* Changing this updates the existing policy.
|
|
208
|
+
* The perfect forward secrecy mode. Valid values are group2, group5 and group14 to group31.
|
|
209
|
+
* Default is group5. Changing this updates the existing policy.
|
|
204
210
|
*/
|
|
205
211
|
pfs?: pulumi.Input<string>;
|
|
206
212
|
/**
|
package/vpnaas/ikePolicy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ikePolicy.js","sourceRoot":"","sources":["../../vpnaas/ikePolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"ikePolicy.js","sourceRoot":"","sources":["../../vpnaas/ikePolicy.ts"],"names":[],"mappings":"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"}
|
package/vpnaas/ipSecPolicy.d.ts
CHANGED
|
@@ -38,8 +38,9 @@ export declare class IpSecPolicy extends pulumi.CustomResource {
|
|
|
38
38
|
*/
|
|
39
39
|
static isInstance(obj: any): obj is IpSecPolicy;
|
|
40
40
|
/**
|
|
41
|
-
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512
|
|
42
|
-
* Default is sha1.
|
|
41
|
+
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512,
|
|
42
|
+
* aes-xcbc, aes-cmac. Default is sha1.
|
|
43
|
+
* Changing this updates the algorithm of the existing policy.
|
|
43
44
|
*/
|
|
44
45
|
readonly authAlgorithm: pulumi.Output<string>;
|
|
45
46
|
/**
|
|
@@ -53,7 +54,8 @@ export declare class IpSecPolicy extends pulumi.CustomResource {
|
|
|
53
54
|
*/
|
|
54
55
|
readonly encapsulationMode: pulumi.Output<string>;
|
|
55
56
|
/**
|
|
56
|
-
* The encryption algorithm. Valid values are 3des, aes-128, aes-192
|
|
57
|
+
* The encryption algorithm. Valid values are 3des, aes-128, aes-192, aes-256,
|
|
58
|
+
* aes-KKK-ctr, aes-KKK-ccm-II, aes-KKK-gcm-II (with KKK = 128/192/256 bits key size and II = 8/12/16 octets ICV).
|
|
57
59
|
* The default value is aes-128. Changing this updates the existing policy.
|
|
58
60
|
*/
|
|
59
61
|
readonly encryptionAlgorithm: pulumi.Output<string>;
|
|
@@ -67,8 +69,8 @@ export declare class IpSecPolicy extends pulumi.CustomResource {
|
|
|
67
69
|
*/
|
|
68
70
|
readonly name: pulumi.Output<string>;
|
|
69
71
|
/**
|
|
70
|
-
* The perfect forward secrecy mode. Valid values are group2, group5 and group14.
|
|
71
|
-
* is group5. Changing this updates the existing policy.
|
|
72
|
+
* The perfect forward secrecy mode. Valid values are group2, group5 and group14 to group31.
|
|
73
|
+
* Default is group5. Changing this updates the existing policy.
|
|
72
74
|
*/
|
|
73
75
|
readonly pfs: pulumi.Output<string>;
|
|
74
76
|
/**
|
|
@@ -108,8 +110,9 @@ export declare class IpSecPolicy extends pulumi.CustomResource {
|
|
|
108
110
|
*/
|
|
109
111
|
export interface IpSecPolicyState {
|
|
110
112
|
/**
|
|
111
|
-
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512
|
|
112
|
-
* Default is sha1.
|
|
113
|
+
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512,
|
|
114
|
+
* aes-xcbc, aes-cmac. Default is sha1.
|
|
115
|
+
* Changing this updates the algorithm of the existing policy.
|
|
113
116
|
*/
|
|
114
117
|
authAlgorithm?: pulumi.Input<string>;
|
|
115
118
|
/**
|
|
@@ -123,7 +126,8 @@ export interface IpSecPolicyState {
|
|
|
123
126
|
*/
|
|
124
127
|
encapsulationMode?: pulumi.Input<string>;
|
|
125
128
|
/**
|
|
126
|
-
* The encryption algorithm. Valid values are 3des, aes-128, aes-192
|
|
129
|
+
* The encryption algorithm. Valid values are 3des, aes-128, aes-192, aes-256,
|
|
130
|
+
* aes-KKK-ctr, aes-KKK-ccm-II, aes-KKK-gcm-II (with KKK = 128/192/256 bits key size and II = 8/12/16 octets ICV).
|
|
127
131
|
* The default value is aes-128. Changing this updates the existing policy.
|
|
128
132
|
*/
|
|
129
133
|
encryptionAlgorithm?: pulumi.Input<string>;
|
|
@@ -137,8 +141,8 @@ export interface IpSecPolicyState {
|
|
|
137
141
|
*/
|
|
138
142
|
name?: pulumi.Input<string>;
|
|
139
143
|
/**
|
|
140
|
-
* The perfect forward secrecy mode. Valid values are group2, group5 and group14.
|
|
141
|
-
* is group5. Changing this updates the existing policy.
|
|
144
|
+
* The perfect forward secrecy mode. Valid values are group2, group5 and group14 to group31.
|
|
145
|
+
* Default is group5. Changing this updates the existing policy.
|
|
142
146
|
*/
|
|
143
147
|
pfs?: pulumi.Input<string>;
|
|
144
148
|
/**
|
|
@@ -170,8 +174,9 @@ export interface IpSecPolicyState {
|
|
|
170
174
|
*/
|
|
171
175
|
export interface IpSecPolicyArgs {
|
|
172
176
|
/**
|
|
173
|
-
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512
|
|
174
|
-
* Default is sha1.
|
|
177
|
+
* The authentication hash algorithm. Valid values are sha1, sha256, sha384, sha512,
|
|
178
|
+
* aes-xcbc, aes-cmac. Default is sha1.
|
|
179
|
+
* Changing this updates the algorithm of the existing policy.
|
|
175
180
|
*/
|
|
176
181
|
authAlgorithm?: pulumi.Input<string>;
|
|
177
182
|
/**
|
|
@@ -185,7 +190,8 @@ export interface IpSecPolicyArgs {
|
|
|
185
190
|
*/
|
|
186
191
|
encapsulationMode?: pulumi.Input<string>;
|
|
187
192
|
/**
|
|
188
|
-
* The encryption algorithm. Valid values are 3des, aes-128, aes-192
|
|
193
|
+
* The encryption algorithm. Valid values are 3des, aes-128, aes-192, aes-256,
|
|
194
|
+
* aes-KKK-ctr, aes-KKK-ccm-II, aes-KKK-gcm-II (with KKK = 128/192/256 bits key size and II = 8/12/16 octets ICV).
|
|
189
195
|
* The default value is aes-128. Changing this updates the existing policy.
|
|
190
196
|
*/
|
|
191
197
|
encryptionAlgorithm?: pulumi.Input<string>;
|
|
@@ -199,8 +205,8 @@ export interface IpSecPolicyArgs {
|
|
|
199
205
|
*/
|
|
200
206
|
name?: pulumi.Input<string>;
|
|
201
207
|
/**
|
|
202
|
-
* The perfect forward secrecy mode. Valid values are group2, group5 and group14.
|
|
203
|
-
* is group5. Changing this updates the existing policy.
|
|
208
|
+
* The perfect forward secrecy mode. Valid values are group2, group5 and group14 to group31.
|
|
209
|
+
* Default is group5. Changing this updates the existing policy.
|
|
204
210
|
*/
|
|
205
211
|
pfs?: pulumi.Input<string>;
|
|
206
212
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ipSecPolicy.js","sourceRoot":"","sources":["../../vpnaas/ipSecPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;
|
|
1
|
+
{"version":3,"file":"ipSecPolicy.js","sourceRoot":"","sources":["../../vpnaas/ipSecPolicy.ts"],"names":[],"mappings":"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"}
|