@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.
- package/amqp/binding.d.ts +12 -13
- package/amqp/binding.js +12 -13
- package/amqp/binding.js.map +1 -1
- package/cen/trafficMarkingPolicy.d.ts +43 -23
- package/cen/trafficMarkingPolicy.js +3 -1
- package/cen/trafficMarkingPolicy.js.map +1 -1
- package/cen/transitRouterVpcAttachment.d.ts +120 -46
- package/cen/transitRouterVpcAttachment.js +10 -5
- package/cen/transitRouterVpcAttachment.js.map +1 -1
- package/cr/chartNamespace.d.ts +8 -3
- package/cr/chartNamespace.js +8 -3
- package/cr/chartNamespace.js.map +1 -1
- package/cr/endpointAclPolicy.d.ts +6 -1
- package/cr/endpointAclPolicy.js +6 -1
- package/cr/endpointAclPolicy.js.map +1 -1
- package/cr/namespace.d.ts +6 -1
- package/cr/namespace.js +6 -1
- package/cr/namespace.js.map +1 -1
- package/cs/registryEnterpriseSyncRule.d.ts +5 -5
- package/cs/registryEnterpriseSyncRule.js +5 -5
- package/ddos/bgpIp.d.ts +1 -1
- package/ens/instance.d.ts +157 -79
- package/ens/instance.js +9 -1
- package/ens/instance.js.map +1 -1
- package/expressconnect/physicalConnection.d.ts +118 -80
- package/expressconnect/physicalConnection.js +7 -1
- package/expressconnect/physicalConnection.js.map +1 -1
- package/fc/trigger.d.ts +8 -9
- package/fc/trigger.js +8 -9
- package/fc/trigger.js.map +1 -1
- package/ga/endpointGroup.d.ts +21 -6
- package/ga/endpointGroup.js +2 -0
- package/ga/endpointGroup.js.map +1 -1
- package/mongodb/instance.d.ts +24 -0
- package/mongodb/instance.js +4 -0
- package/mongodb/instance.js.map +1 -1
- package/nlb/getListeners.d.ts +36 -2
- package/nlb/getListeners.js +30 -2
- package/nlb/getListeners.js.map +1 -1
- package/nlb/getServerGroupServerAttachments.d.ts +8 -2
- package/nlb/getServerGroupServerAttachments.js +2 -2
- package/nlb/getServerGroupServerAttachments.js.map +1 -1
- package/nlb/listener.d.ts +135 -105
- package/nlb/listener.js.map +1 -1
- package/nlb/listenerAdditionalCertificateAttachment.d.ts +11 -11
- package/nlb/loadBalancer.d.ts +78 -105
- package/nlb/loadBalancer.js +1 -1
- package/nlb/loadBalancer.js.map +1 -1
- package/nlb/loadBalancerSecurityGroupAttachment.d.ts +13 -17
- package/nlb/loadBalancerSecurityGroupAttachment.js +4 -2
- package/nlb/loadBalancerSecurityGroupAttachment.js.map +1 -1
- package/nlb/loadbalancerCommonBandwidthPackageAttachment.d.ts +10 -8
- package/nlb/loadbalancerCommonBandwidthPackageAttachment.js +4 -2
- package/nlb/loadbalancerCommonBandwidthPackageAttachment.js.map +1 -1
- package/nlb/securityPolicy.d.ts +23 -11
- package/nlb/securityPolicy.js.map +1 -1
- package/nlb/serverGroup.d.ts +84 -57
- package/nlb/serverGroup.js.map +1 -1
- package/ocean/baseInstance.d.ts +181 -70
- package/ocean/baseInstance.js +8 -0
- package/ocean/baseInstance.js.map +1 -1
- package/package.json +2 -2
- package/servicemesh/extensionProvider.d.ts +1 -1
- package/servicemesh/extensionProvider.js +1 -1
- package/types/input.d.ts +134 -43
- package/types/output.d.ts +135 -44
- package/vpc/commonBandwithPackageAttachment.d.ts +1 -1
- package/vpc/commonBandwithPackageAttachment.js +1 -1
package/ocean/baseInstance.d.ts
CHANGED
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
115
|
-
*
|
|
116
|
-
* -
|
|
117
|
-
* -
|
|
118
|
-
* -
|
|
119
|
-
* -
|
|
120
|
-
* -
|
|
121
|
-
* -
|
|
122
|
-
* -
|
|
123
|
-
* -
|
|
124
|
-
* -
|
|
125
|
-
* -
|
|
126
|
-
* -
|
|
127
|
-
* -
|
|
128
|
-
* -
|
|
129
|
-
* -
|
|
130
|
-
* -
|
|
131
|
-
* -
|
|
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.
|
|
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.
|
|
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
|
-
*
|
|
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
|
-
*
|
|
242
|
-
*
|
|
243
|
-
* -
|
|
244
|
-
* -
|
|
245
|
-
* -
|
|
246
|
-
* -
|
|
247
|
-
* -
|
|
248
|
-
* -
|
|
249
|
-
* -
|
|
250
|
-
* -
|
|
251
|
-
* -
|
|
252
|
-
* -
|
|
253
|
-
* -
|
|
254
|
-
* -
|
|
255
|
-
* -
|
|
256
|
-
* -
|
|
257
|
-
* -
|
|
258
|
-
* -
|
|
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.
|
|
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.
|
|
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
|
-
*
|
|
349
|
-
*
|
|
350
|
-
* -
|
|
351
|
-
* -
|
|
352
|
-
* -
|
|
353
|
-
* -
|
|
354
|
-
* -
|
|
355
|
-
* -
|
|
356
|
-
* -
|
|
357
|
-
* -
|
|
358
|
-
* -
|
|
359
|
-
* -
|
|
360
|
-
* -
|
|
361
|
-
* -
|
|
362
|
-
* -
|
|
363
|
-
* -
|
|
364
|
-
* -
|
|
365
|
-
* -
|
|
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.
|
|
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.
|
|
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
|
*/
|
package/ocean/baseInstance.js
CHANGED
|
@@ -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":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;
|
|
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.
|
|
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.
|
|
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
|
|
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
|
|
13
|
+
* > **NOTE:** Available since v1.191.0.
|
|
14
14
|
*
|
|
15
15
|
* ## Import
|
|
16
16
|
*
|