@pulumi/alicloud 3.62.0 → 3.62.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.
Files changed (68) hide show
  1. package/amqp/binding.d.ts +12 -13
  2. package/amqp/binding.js +12 -13
  3. package/amqp/binding.js.map +1 -1
  4. package/cen/trafficMarkingPolicy.d.ts +43 -23
  5. package/cen/trafficMarkingPolicy.js +3 -1
  6. package/cen/trafficMarkingPolicy.js.map +1 -1
  7. package/cen/transitRouterVpcAttachment.d.ts +120 -46
  8. package/cen/transitRouterVpcAttachment.js +10 -5
  9. package/cen/transitRouterVpcAttachment.js.map +1 -1
  10. package/cr/chartNamespace.d.ts +8 -3
  11. package/cr/chartNamespace.js +8 -3
  12. package/cr/chartNamespace.js.map +1 -1
  13. package/cr/endpointAclPolicy.d.ts +6 -1
  14. package/cr/endpointAclPolicy.js +6 -1
  15. package/cr/endpointAclPolicy.js.map +1 -1
  16. package/cr/namespace.d.ts +6 -1
  17. package/cr/namespace.js +6 -1
  18. package/cr/namespace.js.map +1 -1
  19. package/cs/registryEnterpriseSyncRule.d.ts +5 -5
  20. package/cs/registryEnterpriseSyncRule.js +5 -5
  21. package/ddos/bgpIp.d.ts +1 -1
  22. package/ens/instance.d.ts +157 -79
  23. package/ens/instance.js +9 -1
  24. package/ens/instance.js.map +1 -1
  25. package/expressconnect/physicalConnection.d.ts +118 -80
  26. package/expressconnect/physicalConnection.js +7 -1
  27. package/expressconnect/physicalConnection.js.map +1 -1
  28. package/fc/trigger.d.ts +8 -9
  29. package/fc/trigger.js +8 -9
  30. package/fc/trigger.js.map +1 -1
  31. package/ga/endpointGroup.d.ts +21 -6
  32. package/ga/endpointGroup.js +2 -0
  33. package/ga/endpointGroup.js.map +1 -1
  34. package/mongodb/instance.d.ts +24 -0
  35. package/mongodb/instance.js +4 -0
  36. package/mongodb/instance.js.map +1 -1
  37. package/nlb/getListeners.d.ts +36 -2
  38. package/nlb/getListeners.js +30 -2
  39. package/nlb/getListeners.js.map +1 -1
  40. package/nlb/getServerGroupServerAttachments.d.ts +8 -2
  41. package/nlb/getServerGroupServerAttachments.js +2 -2
  42. package/nlb/getServerGroupServerAttachments.js.map +1 -1
  43. package/nlb/listener.d.ts +135 -105
  44. package/nlb/listener.js.map +1 -1
  45. package/nlb/listenerAdditionalCertificateAttachment.d.ts +11 -11
  46. package/nlb/loadBalancer.d.ts +78 -105
  47. package/nlb/loadBalancer.js +1 -1
  48. package/nlb/loadBalancer.js.map +1 -1
  49. package/nlb/loadBalancerSecurityGroupAttachment.d.ts +13 -17
  50. package/nlb/loadBalancerSecurityGroupAttachment.js +4 -2
  51. package/nlb/loadBalancerSecurityGroupAttachment.js.map +1 -1
  52. package/nlb/loadbalancerCommonBandwidthPackageAttachment.d.ts +10 -8
  53. package/nlb/loadbalancerCommonBandwidthPackageAttachment.js +4 -2
  54. package/nlb/loadbalancerCommonBandwidthPackageAttachment.js.map +1 -1
  55. package/nlb/securityPolicy.d.ts +23 -11
  56. package/nlb/securityPolicy.js.map +1 -1
  57. package/nlb/serverGroup.d.ts +84 -57
  58. package/nlb/serverGroup.js.map +1 -1
  59. package/ocean/baseInstance.d.ts +181 -70
  60. package/ocean/baseInstance.js +8 -0
  61. package/ocean/baseInstance.js.map +1 -1
  62. package/package.json +2 -2
  63. package/servicemesh/extensionProvider.d.ts +1 -1
  64. package/servicemesh/extensionProvider.js +1 -1
  65. package/types/input.d.ts +134 -43
  66. package/types/output.d.ts +135 -44
  67. package/vpc/commonBandwithPackageAttachment.d.ts +1 -1
  68. package/vpc/commonBandwithPackageAttachment.js +1 -1
@@ -61,6 +61,7 @@ export declare class BaseInstance extends pulumi.CustomResource {
61
61
  static isInstance(obj: any): obj is BaseInstance;
62
62
  /**
63
63
  * Whether to automatically renew.
64
+ *
64
65
  * It takes effect when the parameter ChargeType is PrePaid. Value range:
65
66
  * - true: automatic renewal.
66
67
  * - false (default): no automatic renewal.
@@ -77,6 +78,7 @@ export declare class BaseInstance extends pulumi.CustomResource {
77
78
  * - receive_all: Keep all backup sets;
78
79
  * - delete_all: delete all backup sets;
79
80
  * - receive_last: Keep the last backup set.
81
+ *
80
82
  * > **NOTE:** The default value is delete_all.
81
83
  */
82
84
  readonly backupRetainMode: pulumi.Output<string | undefined>;
@@ -89,54 +91,71 @@ export declare class BaseInstance extends pulumi.CustomResource {
89
91
  */
90
92
  readonly cpu: pulumi.Output<number>;
91
93
  /**
92
- * The creation time of the resource.
94
+ * Cpu architecture, x86, arm. If no, the default value is x86
95
+ */
96
+ readonly cpuArch: pulumi.Output<string>;
97
+ /**
98
+ * The creation time of the resource
93
99
  */
94
100
  readonly createTime: pulumi.Output<string>;
95
101
  /**
96
102
  * The size of the storage space, in GB.
103
+ *
97
104
  * The limits of storage space vary according to the cluster specifications, as follows:
98
105
  * - 8C32GB:100GB ~ 10000GB
99
106
  * - 14C70GB:200GB ~ 10000GB
100
107
  * - 30C180GB:400GB ~ 10000GB
101
108
  * - 62C400G:800GB ~ 10000GB.
109
+ *
102
110
  * The default value of each package is its minimum value.
103
111
  */
104
112
  readonly diskSize: pulumi.Output<number>;
105
113
  /**
106
114
  * The storage type of the cluster. Effective only in the standard cluster version (cloud disk).
115
+ *
107
116
  * Two types are currently supported:
108
117
  * - cloud_essd_pl1: cloud disk ESSD pl1.
109
118
  * - cloud_essd_pl0: cloud disk ESSD pl0. The default value is cloud_essd_pl1.
110
119
  */
111
120
  readonly diskType: pulumi.Output<string>;
112
121
  /**
113
- * Cluster specification information.
114
- * Four packages are currently supported:
115
- * - 4C16GB:4cores 16GB
116
- * - 8C32GB:8cores 32GB
117
- * - 14C70GB:14cores 70GB
118
- * - 24C120GB:24cores 120GB
119
- * - 30C180GB:30cores 180GB
120
- * - 62C400GB:62cores 400GB
121
- * - 104C600GB:104cores 600GB
122
- * - 16C70GB:16cores 70GB
123
- * - 32C160GB:32cores 160GB
124
- * - 64C380GB:64cores 380GB
125
- * - 20C32GB:20cores 32GB
126
- * - 40C64GB:40cores 64GB
127
- * - 16C32GB:16cores 32GB
128
- * - 32C70GB:32cores 70GB
129
- * - 64C180GB:64cores 180GB
130
- * - 32C180GB:32cores 180GB
131
- * - 64C400GB:64cores 400GB.
122
+ * Cluster specification information. Note Please enter the shape as xCxxG, not xCxxGB
123
+ *
124
+ * The x86 cluster architecture currently supports the following packages:
125
+ * - 4C16G:4 core 16GB
126
+ * - 8C32G:8 core 32GB
127
+ * - 14C70G:14 core 70GB
128
+ * - 24C120G:24 core 120GB
129
+ * - 30C180G:30 core 180GB
130
+ * - 62C400G:62 core 400GB
131
+ * - 104C600G:104 core 600GB
132
+ * - 16C70G:16 core 70GB
133
+ * - 32C160G:32 core 160GB
134
+ * - 64C380G:64 core 380GB
135
+ * - 20C32G:20 core 32GB
136
+ * - 40C64G:40 core 64GB
137
+ * - 16C32G:16 core 32GB
138
+ * - 32C70G:32 core 70GB
139
+ * - 64C180G:64 core 180GB
140
+ * - 32C180G:32 core 180GB
141
+ * - 64C400G:64 core 400GB,
142
+ *
143
+ * The cluster architecture of arm currently supports the following packages:
144
+ * - 8C32G:8 core 32GB
145
+ * - 16C70G:16 core 70GB
146
+ * - 32C180G:32 core 180GB
132
147
  */
133
148
  readonly instanceClass: pulumi.Output<string>;
134
149
  /**
135
- * OceanBase cluster name.The length is 1 to 20 English or Chinese characters.If this parameter is not specified, the default value is the InstanceId of the cluster.
150
+ * OceanBase cluster name.
151
+ *
152
+ * The length is 1 to 20 English or Chinese characters.
153
+ *
154
+ * If this parameter is not specified, the default value is the InstanceId of the cluster.
136
155
  */
137
156
  readonly instanceName: pulumi.Output<string>;
138
157
  /**
139
- * The number of nodes in the cluster. If the deployment mode is n-n-n, the number of nodes is n * 3.
158
+ * The number of nodes in the cluster. If the deployment mode is n-n-n, the number of nodes is n * 3
140
159
  */
141
160
  readonly nodeNum: pulumi.Output<string>;
142
161
  /**
@@ -154,9 +173,21 @@ export declare class BaseInstance extends pulumi.CustomResource {
154
173
  */
155
174
  readonly period: pulumi.Output<number | undefined>;
156
175
  /**
157
- * The duration of the purchase of resources.Package year and Month value range: Month.Default value: Month of the package, which is billed by volume. The default period is Hour.
176
+ * The duration of the purchase of resources.
177
+ *
178
+ * Package year and Month value range: Month.
179
+ *
180
+ * Default value: Month of the package, which is billed by volume. The default period is Hour.
158
181
  */
159
182
  readonly periodUnit: pulumi.Output<string | undefined>;
183
+ /**
184
+ * The ID of the primary instance.
185
+ */
186
+ readonly primaryInstance: pulumi.Output<string | undefined>;
187
+ /**
188
+ * The primary instance Region.
189
+ */
190
+ readonly primaryRegion: pulumi.Output<string | undefined>;
160
191
  /**
161
192
  * The ID of the enterprise resource group to which the instance resides.
162
193
  */
@@ -166,9 +197,15 @@ export declare class BaseInstance extends pulumi.CustomResource {
166
197
  */
167
198
  readonly series: pulumi.Output<string>;
168
199
  /**
169
- * The status of the resource.
200
+ * The status of the resource
170
201
  */
171
202
  readonly status: pulumi.Output<string>;
203
+ /**
204
+ * Valid values:
205
+ * - false: migration and configuration change.
206
+ * - true: in-situ matching
207
+ */
208
+ readonly upgradeSpecNative: pulumi.Output<boolean | undefined>;
172
209
  /**
173
210
  * Information about the zone where the cluster is deployed.
174
211
  */
@@ -188,6 +225,7 @@ export declare class BaseInstance extends pulumi.CustomResource {
188
225
  export interface BaseInstanceState {
189
226
  /**
190
227
  * Whether to automatically renew.
228
+ *
191
229
  * It takes effect when the parameter ChargeType is PrePaid. Value range:
192
230
  * - true: automatic renewal.
193
231
  * - false (default): no automatic renewal.
@@ -204,6 +242,7 @@ export interface BaseInstanceState {
204
242
  * - receive_all: Keep all backup sets;
205
243
  * - delete_all: delete all backup sets;
206
244
  * - receive_last: Keep the last backup set.
245
+ *
207
246
  * > **NOTE:** The default value is delete_all.
208
247
  */
209
248
  backupRetainMode?: pulumi.Input<string>;
@@ -216,54 +255,71 @@ export interface BaseInstanceState {
216
255
  */
217
256
  cpu?: pulumi.Input<number>;
218
257
  /**
219
- * The creation time of the resource.
258
+ * Cpu architecture, x86, arm. If no, the default value is x86
259
+ */
260
+ cpuArch?: pulumi.Input<string>;
261
+ /**
262
+ * The creation time of the resource
220
263
  */
221
264
  createTime?: pulumi.Input<string>;
222
265
  /**
223
266
  * The size of the storage space, in GB.
267
+ *
224
268
  * The limits of storage space vary according to the cluster specifications, as follows:
225
269
  * - 8C32GB:100GB ~ 10000GB
226
270
  * - 14C70GB:200GB ~ 10000GB
227
271
  * - 30C180GB:400GB ~ 10000GB
228
272
  * - 62C400G:800GB ~ 10000GB.
273
+ *
229
274
  * The default value of each package is its minimum value.
230
275
  */
231
276
  diskSize?: pulumi.Input<number>;
232
277
  /**
233
278
  * The storage type of the cluster. Effective only in the standard cluster version (cloud disk).
279
+ *
234
280
  * Two types are currently supported:
235
281
  * - cloud_essd_pl1: cloud disk ESSD pl1.
236
282
  * - cloud_essd_pl0: cloud disk ESSD pl0. The default value is cloud_essd_pl1.
237
283
  */
238
284
  diskType?: pulumi.Input<string>;
239
285
  /**
240
- * Cluster specification information.
241
- * Four packages are currently supported:
242
- * - 4C16GB:4cores 16GB
243
- * - 8C32GB:8cores 32GB
244
- * - 14C70GB:14cores 70GB
245
- * - 24C120GB:24cores 120GB
246
- * - 30C180GB:30cores 180GB
247
- * - 62C400GB:62cores 400GB
248
- * - 104C600GB:104cores 600GB
249
- * - 16C70GB:16cores 70GB
250
- * - 32C160GB:32cores 160GB
251
- * - 64C380GB:64cores 380GB
252
- * - 20C32GB:20cores 32GB
253
- * - 40C64GB:40cores 64GB
254
- * - 16C32GB:16cores 32GB
255
- * - 32C70GB:32cores 70GB
256
- * - 64C180GB:64cores 180GB
257
- * - 32C180GB:32cores 180GB
258
- * - 64C400GB:64cores 400GB.
286
+ * Cluster specification information. Note Please enter the shape as xCxxG, not xCxxGB
287
+ *
288
+ * The x86 cluster architecture currently supports the following packages:
289
+ * - 4C16G:4 core 16GB
290
+ * - 8C32G:8 core 32GB
291
+ * - 14C70G:14 core 70GB
292
+ * - 24C120G:24 core 120GB
293
+ * - 30C180G:30 core 180GB
294
+ * - 62C400G:62 core 400GB
295
+ * - 104C600G:104 core 600GB
296
+ * - 16C70G:16 core 70GB
297
+ * - 32C160G:32 core 160GB
298
+ * - 64C380G:64 core 380GB
299
+ * - 20C32G:20 core 32GB
300
+ * - 40C64G:40 core 64GB
301
+ * - 16C32G:16 core 32GB
302
+ * - 32C70G:32 core 70GB
303
+ * - 64C180G:64 core 180GB
304
+ * - 32C180G:32 core 180GB
305
+ * - 64C400G:64 core 400GB,
306
+ *
307
+ * The cluster architecture of arm currently supports the following packages:
308
+ * - 8C32G:8 core 32GB
309
+ * - 16C70G:16 core 70GB
310
+ * - 32C180G:32 core 180GB
259
311
  */
260
312
  instanceClass?: pulumi.Input<string>;
261
313
  /**
262
- * OceanBase cluster name.The length is 1 to 20 English or Chinese characters.If this parameter is not specified, the default value is the InstanceId of the cluster.
314
+ * OceanBase cluster name.
315
+ *
316
+ * The length is 1 to 20 English or Chinese characters.
317
+ *
318
+ * If this parameter is not specified, the default value is the InstanceId of the cluster.
263
319
  */
264
320
  instanceName?: pulumi.Input<string>;
265
321
  /**
266
- * The number of nodes in the cluster. If the deployment mode is n-n-n, the number of nodes is n * 3.
322
+ * The number of nodes in the cluster. If the deployment mode is n-n-n, the number of nodes is n * 3
267
323
  */
268
324
  nodeNum?: pulumi.Input<string>;
269
325
  /**
@@ -281,9 +337,21 @@ export interface BaseInstanceState {
281
337
  */
282
338
  period?: pulumi.Input<number>;
283
339
  /**
284
- * The duration of the purchase of resources.Package year and Month value range: Month.Default value: Month of the package, which is billed by volume. The default period is Hour.
340
+ * The duration of the purchase of resources.
341
+ *
342
+ * Package year and Month value range: Month.
343
+ *
344
+ * Default value: Month of the package, which is billed by volume. The default period is Hour.
285
345
  */
286
346
  periodUnit?: pulumi.Input<string>;
347
+ /**
348
+ * The ID of the primary instance.
349
+ */
350
+ primaryInstance?: pulumi.Input<string>;
351
+ /**
352
+ * The primary instance Region.
353
+ */
354
+ primaryRegion?: pulumi.Input<string>;
287
355
  /**
288
356
  * The ID of the enterprise resource group to which the instance resides.
289
357
  */
@@ -293,9 +361,15 @@ export interface BaseInstanceState {
293
361
  */
294
362
  series?: pulumi.Input<string>;
295
363
  /**
296
- * The status of the resource.
364
+ * The status of the resource
297
365
  */
298
366
  status?: pulumi.Input<string>;
367
+ /**
368
+ * Valid values:
369
+ * - false: migration and configuration change.
370
+ * - true: in-situ matching
371
+ */
372
+ upgradeSpecNative?: pulumi.Input<boolean>;
299
373
  /**
300
374
  * Information about the zone where the cluster is deployed.
301
375
  */
@@ -307,6 +381,7 @@ export interface BaseInstanceState {
307
381
  export interface BaseInstanceArgs {
308
382
  /**
309
383
  * Whether to automatically renew.
384
+ *
310
385
  * It takes effect when the parameter ChargeType is PrePaid. Value range:
311
386
  * - true: automatic renewal.
312
387
  * - false (default): no automatic renewal.
@@ -323,54 +398,72 @@ export interface BaseInstanceArgs {
323
398
  * - receive_all: Keep all backup sets;
324
399
  * - delete_all: delete all backup sets;
325
400
  * - receive_last: Keep the last backup set.
401
+ *
326
402
  * > **NOTE:** The default value is delete_all.
327
403
  */
328
404
  backupRetainMode?: pulumi.Input<string>;
405
+ /**
406
+ * Cpu architecture, x86, arm. If no, the default value is x86
407
+ */
408
+ cpuArch?: pulumi.Input<string>;
329
409
  /**
330
410
  * The size of the storage space, in GB.
411
+ *
331
412
  * The limits of storage space vary according to the cluster specifications, as follows:
332
413
  * - 8C32GB:100GB ~ 10000GB
333
414
  * - 14C70GB:200GB ~ 10000GB
334
415
  * - 30C180GB:400GB ~ 10000GB
335
416
  * - 62C400G:800GB ~ 10000GB.
417
+ *
336
418
  * The default value of each package is its minimum value.
337
419
  */
338
420
  diskSize: pulumi.Input<number>;
339
421
  /**
340
422
  * The storage type of the cluster. Effective only in the standard cluster version (cloud disk).
423
+ *
341
424
  * Two types are currently supported:
342
425
  * - cloud_essd_pl1: cloud disk ESSD pl1.
343
426
  * - cloud_essd_pl0: cloud disk ESSD pl0. The default value is cloud_essd_pl1.
344
427
  */
345
428
  diskType?: pulumi.Input<string>;
346
429
  /**
347
- * Cluster specification information.
348
- * Four packages are currently supported:
349
- * - 4C16GB:4cores 16GB
350
- * - 8C32GB:8cores 32GB
351
- * - 14C70GB:14cores 70GB
352
- * - 24C120GB:24cores 120GB
353
- * - 30C180GB:30cores 180GB
354
- * - 62C400GB:62cores 400GB
355
- * - 104C600GB:104cores 600GB
356
- * - 16C70GB:16cores 70GB
357
- * - 32C160GB:32cores 160GB
358
- * - 64C380GB:64cores 380GB
359
- * - 20C32GB:20cores 32GB
360
- * - 40C64GB:40cores 64GB
361
- * - 16C32GB:16cores 32GB
362
- * - 32C70GB:32cores 70GB
363
- * - 64C180GB:64cores 180GB
364
- * - 32C180GB:32cores 180GB
365
- * - 64C400GB:64cores 400GB.
430
+ * Cluster specification information. Note Please enter the shape as xCxxG, not xCxxGB
431
+ *
432
+ * The x86 cluster architecture currently supports the following packages:
433
+ * - 4C16G:4 core 16GB
434
+ * - 8C32G:8 core 32GB
435
+ * - 14C70G:14 core 70GB
436
+ * - 24C120G:24 core 120GB
437
+ * - 30C180G:30 core 180GB
438
+ * - 62C400G:62 core 400GB
439
+ * - 104C600G:104 core 600GB
440
+ * - 16C70G:16 core 70GB
441
+ * - 32C160G:32 core 160GB
442
+ * - 64C380G:64 core 380GB
443
+ * - 20C32G:20 core 32GB
444
+ * - 40C64G:40 core 64GB
445
+ * - 16C32G:16 core 32GB
446
+ * - 32C70G:32 core 70GB
447
+ * - 64C180G:64 core 180GB
448
+ * - 32C180G:32 core 180GB
449
+ * - 64C400G:64 core 400GB,
450
+ *
451
+ * The cluster architecture of arm currently supports the following packages:
452
+ * - 8C32G:8 core 32GB
453
+ * - 16C70G:16 core 70GB
454
+ * - 32C180G:32 core 180GB
366
455
  */
367
456
  instanceClass: pulumi.Input<string>;
368
457
  /**
369
- * OceanBase cluster name.The length is 1 to 20 English or Chinese characters.If this parameter is not specified, the default value is the InstanceId of the cluster.
458
+ * OceanBase cluster name.
459
+ *
460
+ * The length is 1 to 20 English or Chinese characters.
461
+ *
462
+ * If this parameter is not specified, the default value is the InstanceId of the cluster.
370
463
  */
371
464
  instanceName?: pulumi.Input<string>;
372
465
  /**
373
- * The number of nodes in the cluster. If the deployment mode is n-n-n, the number of nodes is n * 3.
466
+ * The number of nodes in the cluster. If the deployment mode is n-n-n, the number of nodes is n * 3
374
467
  */
375
468
  nodeNum?: pulumi.Input<string>;
376
469
  /**
@@ -388,9 +481,21 @@ export interface BaseInstanceArgs {
388
481
  */
389
482
  period?: pulumi.Input<number>;
390
483
  /**
391
- * The duration of the purchase of resources.Package year and Month value range: Month.Default value: Month of the package, which is billed by volume. The default period is Hour.
484
+ * The duration of the purchase of resources.
485
+ *
486
+ * Package year and Month value range: Month.
487
+ *
488
+ * Default value: Month of the package, which is billed by volume. The default period is Hour.
392
489
  */
393
490
  periodUnit?: pulumi.Input<string>;
491
+ /**
492
+ * The ID of the primary instance.
493
+ */
494
+ primaryInstance?: pulumi.Input<string>;
495
+ /**
496
+ * The primary instance Region.
497
+ */
498
+ primaryRegion?: pulumi.Input<string>;
394
499
  /**
395
500
  * The ID of the enterprise resource group to which the instance resides.
396
501
  */
@@ -399,6 +504,12 @@ export interface BaseInstanceArgs {
399
504
  * Series of OceanBase cluster instances-normal (default): Standard cluster version (cloud disk)-normal_SSD: Standard cluster version (local disk)-history: history Library cluster version.
400
505
  */
401
506
  series: pulumi.Input<string>;
507
+ /**
508
+ * Valid values:
509
+ * - false: migration and configuration change.
510
+ * - true: in-situ matching
511
+ */
512
+ upgradeSpecNative?: pulumi.Input<boolean>;
402
513
  /**
403
514
  * Information about the zone where the cluster is deployed.
404
515
  */
@@ -82,6 +82,7 @@ class BaseInstance extends pulumi.CustomResource {
82
82
  resourceInputs["backupRetainMode"] = state ? state.backupRetainMode : undefined;
83
83
  resourceInputs["commodityCode"] = state ? state.commodityCode : undefined;
84
84
  resourceInputs["cpu"] = state ? state.cpu : undefined;
85
+ resourceInputs["cpuArch"] = state ? state.cpuArch : undefined;
85
86
  resourceInputs["createTime"] = state ? state.createTime : undefined;
86
87
  resourceInputs["diskSize"] = state ? state.diskSize : undefined;
87
88
  resourceInputs["diskType"] = state ? state.diskType : undefined;
@@ -92,9 +93,12 @@ class BaseInstance extends pulumi.CustomResource {
92
93
  resourceInputs["paymentType"] = state ? state.paymentType : undefined;
93
94
  resourceInputs["period"] = state ? state.period : undefined;
94
95
  resourceInputs["periodUnit"] = state ? state.periodUnit : undefined;
96
+ resourceInputs["primaryInstance"] = state ? state.primaryInstance : undefined;
97
+ resourceInputs["primaryRegion"] = state ? state.primaryRegion : undefined;
95
98
  resourceInputs["resourceGroupId"] = state ? state.resourceGroupId : undefined;
96
99
  resourceInputs["series"] = state ? state.series : undefined;
97
100
  resourceInputs["status"] = state ? state.status : undefined;
101
+ resourceInputs["upgradeSpecNative"] = state ? state.upgradeSpecNative : undefined;
98
102
  resourceInputs["zones"] = state ? state.zones : undefined;
99
103
  }
100
104
  else {
@@ -117,6 +121,7 @@ class BaseInstance extends pulumi.CustomResource {
117
121
  resourceInputs["autoRenew"] = args ? args.autoRenew : undefined;
118
122
  resourceInputs["autoRenewPeriod"] = args ? args.autoRenewPeriod : undefined;
119
123
  resourceInputs["backupRetainMode"] = args ? args.backupRetainMode : undefined;
124
+ resourceInputs["cpuArch"] = args ? args.cpuArch : undefined;
120
125
  resourceInputs["diskSize"] = args ? args.diskSize : undefined;
121
126
  resourceInputs["diskType"] = args ? args.diskType : undefined;
122
127
  resourceInputs["instanceClass"] = args ? args.instanceClass : undefined;
@@ -126,8 +131,11 @@ class BaseInstance extends pulumi.CustomResource {
126
131
  resourceInputs["paymentType"] = args ? args.paymentType : undefined;
127
132
  resourceInputs["period"] = args ? args.period : undefined;
128
133
  resourceInputs["periodUnit"] = args ? args.periodUnit : undefined;
134
+ resourceInputs["primaryInstance"] = args ? args.primaryInstance : undefined;
135
+ resourceInputs["primaryRegion"] = args ? args.primaryRegion : undefined;
129
136
  resourceInputs["resourceGroupId"] = args ? args.resourceGroupId : undefined;
130
137
  resourceInputs["series"] = args ? args.series : undefined;
138
+ resourceInputs["upgradeSpecNative"] = args ? args.upgradeSpecNative : undefined;
131
139
  resourceInputs["zones"] = args ? args.zones : undefined;
132
140
  resourceInputs["commodityCode"] = undefined /*out*/;
133
141
  resourceInputs["cpu"] = undefined /*out*/;
@@ -1 +1 @@
1
- {"version":3,"file":"baseInstance.js","sourceRoot":"","sources":["../../ocean/baseInstance.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"baseInstance.js","sourceRoot":"","sources":["../../ocean/baseInstance.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/alicloud",
3
- "version": "3.62.0",
3
+ "version": "3.62.1",
4
4
  "description": "A Pulumi package for creating and managing AliCloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "alicloud",
25
- "version": "3.62.0"
25
+ "version": "3.62.1"
26
26
  }
27
27
  }
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
4
4
  *
5
5
  * For information about Service Mesh Extension Provider and how to use it, see [What is Extension Provider](https://help.aliyun.com/document_detail/461549.html).
6
6
  *
7
- * > **NOTE:** Available in v1.191.0+.
7
+ * > **NOTE:** Available since v1.191.0.
8
8
  *
9
9
  * ## Import
10
10
  *
@@ -10,7 +10,7 @@ const utilities = require("../utilities");
10
10
  *
11
11
  * For information about Service Mesh Extension Provider and how to use it, see [What is Extension Provider](https://help.aliyun.com/document_detail/461549.html).
12
12
  *
13
- * > **NOTE:** Available in v1.191.0+.
13
+ * > **NOTE:** Available since v1.191.0.
14
14
  *
15
15
  * ## Import
16
16
  *