@volcengine/pulumi 0.0.34 → 0.0.35
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/autoscaling/scalingGroup.d.ts +24 -0
- package/autoscaling/scalingGroup.js +4 -0
- package/autoscaling/scalingGroup.js.map +1 -1
- package/config/vars.d.ts +4 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/ecs/command.d.ts +65 -18
- package/ecs/command.js +10 -15
- package/ecs/command.js.map +1 -1
- package/ecs/commands.d.ts +26 -1
- package/ecs/commands.js +2 -0
- package/ecs/commands.js.map +1 -1
- package/ecs/getCommands.d.ts +26 -1
- package/ecs/getCommands.js +2 -0
- package/ecs/getCommands.js.map +1 -1
- package/ecs/getInvocations.d.ts +25 -0
- package/ecs/getInvocations.js +2 -0
- package/ecs/getInvocations.js.map +1 -1
- package/ecs/instance.d.ts +20 -0
- package/ecs/instance.js +4 -0
- package/ecs/instance.js.map +1 -1
- package/ecs/invocation.d.ts +53 -6
- package/ecs/invocation.js +15 -0
- package/ecs/invocation.js.map +1 -1
- package/ecs/invocations.d.ts +25 -0
- package/ecs/invocations.js +2 -0
- package/ecs/invocations.js.map +1 -1
- package/kafka/instance.d.ts +12 -0
- package/kafka/instance.js +2 -0
- package/kafka/instance.js.map +1 -1
- package/package.json +1 -1
- package/provider.d.ts +4 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/redis/getParameterGroups.d.ts +22 -0
- package/redis/getParameterGroups.js +22 -0
- package/redis/getParameterGroups.js.map +1 -1
- package/redis/parameterGroups.d.ts +22 -0
- package/redis/parameterGroups.js +22 -0
- package/redis/parameterGroups.js.map +1 -1
- package/tos/bucketCors.d.ts +120 -0
- package/tos/bucketCors.js +115 -0
- package/tos/bucketCors.js.map +1 -0
- package/tos/bucketEncryption.d.ts +105 -0
- package/tos/bucketEncryption.js +100 -0
- package/tos/bucketEncryption.js.map +1 -0
- package/tos/bucketNotification.d.ts +166 -0
- package/tos/bucketNotification.js +155 -0
- package/tos/bucketNotification.js.map +1 -0
- package/tos/index.d.ts +9 -0
- package/tos/index.js +16 -1
- package/tos/index.js.map +1 -1
- package/types/input.d.ts +258 -0
- package/types/output.d.ts +450 -0
- package/vke/node.d.ts +12 -0
- package/vke/node.js +2 -0
- package/vke/node.js.map +1 -1
- package/vpc/networkInterface.d.ts +27 -7
- package/vpc/networkInterface.js +27 -7
- package/vpc/networkInterface.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -15209,6 +15209,54 @@ export declare namespace ecs {
|
|
|
15209
15209
|
*/
|
|
15210
15210
|
value: string;
|
|
15211
15211
|
}
|
|
15212
|
+
interface CommandParameterDefinition {
|
|
15213
|
+
/**
|
|
15214
|
+
* The decimal precision of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15215
|
+
*/
|
|
15216
|
+
decimalPrecision: number;
|
|
15217
|
+
/**
|
|
15218
|
+
* The default value of the custom parameter.
|
|
15219
|
+
*/
|
|
15220
|
+
defaultValue: string;
|
|
15221
|
+
/**
|
|
15222
|
+
* The maximum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15223
|
+
*/
|
|
15224
|
+
maxLength: number;
|
|
15225
|
+
/**
|
|
15226
|
+
* The maximum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15227
|
+
*/
|
|
15228
|
+
maxValue: string;
|
|
15229
|
+
/**
|
|
15230
|
+
* The minimum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15231
|
+
*/
|
|
15232
|
+
minLength: number;
|
|
15233
|
+
/**
|
|
15234
|
+
* The minimum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15235
|
+
*/
|
|
15236
|
+
minValue: string;
|
|
15237
|
+
/**
|
|
15238
|
+
* The name of the custom parameter.
|
|
15239
|
+
*/
|
|
15240
|
+
name: string;
|
|
15241
|
+
/**
|
|
15242
|
+
* Whether the custom parameter is required.
|
|
15243
|
+
*/
|
|
15244
|
+
required: boolean;
|
|
15245
|
+
/**
|
|
15246
|
+
* The type of the custom parameter. Valid values: `String`, `Digit`.
|
|
15247
|
+
*/
|
|
15248
|
+
type: string;
|
|
15249
|
+
}
|
|
15250
|
+
interface CommandTag {
|
|
15251
|
+
/**
|
|
15252
|
+
* The Key of Tags.
|
|
15253
|
+
*/
|
|
15254
|
+
key: string;
|
|
15255
|
+
/**
|
|
15256
|
+
* The Value of Tags.
|
|
15257
|
+
*/
|
|
15258
|
+
value: string;
|
|
15259
|
+
}
|
|
15212
15260
|
interface CommandsCommand {
|
|
15213
15261
|
/**
|
|
15214
15262
|
* The base64 encoded content of the ecs command.
|
|
@@ -15222,6 +15270,10 @@ export declare namespace ecs {
|
|
|
15222
15270
|
* The provider of public command. When this field is not specified, query for custom commands.
|
|
15223
15271
|
*/
|
|
15224
15272
|
commandProvider: string;
|
|
15273
|
+
/**
|
|
15274
|
+
* Whether the command content is base64 encoded. Valid values: `Base64`, `PlainText`. Default is `Base64`.
|
|
15275
|
+
*/
|
|
15276
|
+
contentEncoding: string;
|
|
15225
15277
|
/**
|
|
15226
15278
|
* The create time of the ecs command.
|
|
15227
15279
|
*/
|
|
@@ -15230,6 +15282,10 @@ export declare namespace ecs {
|
|
|
15230
15282
|
* The description of the ecs command.
|
|
15231
15283
|
*/
|
|
15232
15284
|
description: string;
|
|
15285
|
+
/**
|
|
15286
|
+
* Whether to enable custom parameter. Default is `false`.
|
|
15287
|
+
*/
|
|
15288
|
+
enableParameter: boolean;
|
|
15233
15289
|
/**
|
|
15234
15290
|
* The id of the ecs command.
|
|
15235
15291
|
*/
|
|
@@ -15242,6 +15298,18 @@ export declare namespace ecs {
|
|
|
15242
15298
|
* The name of ecs command. This field support fuzzy query.
|
|
15243
15299
|
*/
|
|
15244
15300
|
name: string;
|
|
15301
|
+
/**
|
|
15302
|
+
* The custom parameter definitions of the ecs command.
|
|
15303
|
+
*/
|
|
15304
|
+
parameterDefinitions: outputs.ecs.CommandsCommandParameterDefinition[];
|
|
15305
|
+
/**
|
|
15306
|
+
* The project name of ecs command.
|
|
15307
|
+
*/
|
|
15308
|
+
projectName: string;
|
|
15309
|
+
/**
|
|
15310
|
+
* Tags.
|
|
15311
|
+
*/
|
|
15312
|
+
tags: outputs.ecs.CommandsCommandTag[];
|
|
15245
15313
|
/**
|
|
15246
15314
|
* The timeout of the ecs command.
|
|
15247
15315
|
*/
|
|
@@ -15263,6 +15331,64 @@ export declare namespace ecs {
|
|
|
15263
15331
|
*/
|
|
15264
15332
|
workingDir: string;
|
|
15265
15333
|
}
|
|
15334
|
+
interface CommandsCommandParameterDefinition {
|
|
15335
|
+
/**
|
|
15336
|
+
* The decimal precision of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15337
|
+
*/
|
|
15338
|
+
decimalPrecision: number;
|
|
15339
|
+
/**
|
|
15340
|
+
* The default value of the custom parameter.
|
|
15341
|
+
*/
|
|
15342
|
+
defaultValue: string;
|
|
15343
|
+
/**
|
|
15344
|
+
* The maximum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15345
|
+
*/
|
|
15346
|
+
maxLength: number;
|
|
15347
|
+
/**
|
|
15348
|
+
* The maximum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15349
|
+
*/
|
|
15350
|
+
maxValue: string;
|
|
15351
|
+
/**
|
|
15352
|
+
* The minimum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15353
|
+
*/
|
|
15354
|
+
minLength: number;
|
|
15355
|
+
/**
|
|
15356
|
+
* The minimum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15357
|
+
*/
|
|
15358
|
+
minValue: string;
|
|
15359
|
+
/**
|
|
15360
|
+
* The name of ecs command. This field support fuzzy query.
|
|
15361
|
+
*/
|
|
15362
|
+
name: string;
|
|
15363
|
+
/**
|
|
15364
|
+
* Whether the custom parameter is required.
|
|
15365
|
+
*/
|
|
15366
|
+
required: boolean;
|
|
15367
|
+
/**
|
|
15368
|
+
* The type of ecs command. Valid values: `Shell`.
|
|
15369
|
+
*/
|
|
15370
|
+
type: string;
|
|
15371
|
+
}
|
|
15372
|
+
interface CommandsCommandTag {
|
|
15373
|
+
/**
|
|
15374
|
+
* The Key of Tags.
|
|
15375
|
+
*/
|
|
15376
|
+
key: string;
|
|
15377
|
+
/**
|
|
15378
|
+
* The Value of Tags.
|
|
15379
|
+
*/
|
|
15380
|
+
value: string;
|
|
15381
|
+
}
|
|
15382
|
+
interface CommandsTag {
|
|
15383
|
+
/**
|
|
15384
|
+
* The Key of Tags.
|
|
15385
|
+
*/
|
|
15386
|
+
key: string;
|
|
15387
|
+
/**
|
|
15388
|
+
* The Value of Tags.
|
|
15389
|
+
*/
|
|
15390
|
+
value: string;
|
|
15391
|
+
}
|
|
15266
15392
|
interface DeploymentSetsDeploymentSet {
|
|
15267
15393
|
/**
|
|
15268
15394
|
* The ID of ECS DeploymentSet.
|
|
@@ -15336,6 +15462,10 @@ export declare namespace ecs {
|
|
|
15336
15462
|
* The provider of public command. When this field is not specified, query for custom commands.
|
|
15337
15463
|
*/
|
|
15338
15464
|
commandProvider: string;
|
|
15465
|
+
/**
|
|
15466
|
+
* Whether the command content is base64 encoded. Valid values: `Base64`, `PlainText`. Default is `Base64`.
|
|
15467
|
+
*/
|
|
15468
|
+
contentEncoding: string;
|
|
15339
15469
|
/**
|
|
15340
15470
|
* The create time of the ecs command.
|
|
15341
15471
|
*/
|
|
@@ -15344,6 +15474,10 @@ export declare namespace ecs {
|
|
|
15344
15474
|
* The description of the ecs command.
|
|
15345
15475
|
*/
|
|
15346
15476
|
description: string;
|
|
15477
|
+
/**
|
|
15478
|
+
* Whether to enable custom parameter. Default is `false`.
|
|
15479
|
+
*/
|
|
15480
|
+
enableParameter: boolean;
|
|
15347
15481
|
/**
|
|
15348
15482
|
* The id of the ecs command.
|
|
15349
15483
|
*/
|
|
@@ -15356,6 +15490,18 @@ export declare namespace ecs {
|
|
|
15356
15490
|
* The name of ecs command. This field support fuzzy query.
|
|
15357
15491
|
*/
|
|
15358
15492
|
name: string;
|
|
15493
|
+
/**
|
|
15494
|
+
* The custom parameter definitions of the ecs command.
|
|
15495
|
+
*/
|
|
15496
|
+
parameterDefinitions: outputs.ecs.GetCommandsCommandParameterDefinition[];
|
|
15497
|
+
/**
|
|
15498
|
+
* The project name of ecs command.
|
|
15499
|
+
*/
|
|
15500
|
+
projectName: string;
|
|
15501
|
+
/**
|
|
15502
|
+
* Tags.
|
|
15503
|
+
*/
|
|
15504
|
+
tags: outputs.ecs.GetCommandsCommandTag[];
|
|
15359
15505
|
/**
|
|
15360
15506
|
* The timeout of the ecs command.
|
|
15361
15507
|
*/
|
|
@@ -15377,6 +15523,64 @@ export declare namespace ecs {
|
|
|
15377
15523
|
*/
|
|
15378
15524
|
workingDir: string;
|
|
15379
15525
|
}
|
|
15526
|
+
interface GetCommandsCommandParameterDefinition {
|
|
15527
|
+
/**
|
|
15528
|
+
* The decimal precision of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15529
|
+
*/
|
|
15530
|
+
decimalPrecision: number;
|
|
15531
|
+
/**
|
|
15532
|
+
* The default value of the custom parameter.
|
|
15533
|
+
*/
|
|
15534
|
+
defaultValue: string;
|
|
15535
|
+
/**
|
|
15536
|
+
* The maximum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15537
|
+
*/
|
|
15538
|
+
maxLength: number;
|
|
15539
|
+
/**
|
|
15540
|
+
* The maximum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15541
|
+
*/
|
|
15542
|
+
maxValue: string;
|
|
15543
|
+
/**
|
|
15544
|
+
* The minimum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15545
|
+
*/
|
|
15546
|
+
minLength: number;
|
|
15547
|
+
/**
|
|
15548
|
+
* The minimum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15549
|
+
*/
|
|
15550
|
+
minValue: string;
|
|
15551
|
+
/**
|
|
15552
|
+
* The name of ecs command. This field support fuzzy query.
|
|
15553
|
+
*/
|
|
15554
|
+
name: string;
|
|
15555
|
+
/**
|
|
15556
|
+
* Whether the custom parameter is required.
|
|
15557
|
+
*/
|
|
15558
|
+
required: boolean;
|
|
15559
|
+
/**
|
|
15560
|
+
* The type of ecs command. Valid values: `Shell`.
|
|
15561
|
+
*/
|
|
15562
|
+
type: string;
|
|
15563
|
+
}
|
|
15564
|
+
interface GetCommandsCommandTag {
|
|
15565
|
+
/**
|
|
15566
|
+
* The Key of Tags.
|
|
15567
|
+
*/
|
|
15568
|
+
key: string;
|
|
15569
|
+
/**
|
|
15570
|
+
* The Value of Tags.
|
|
15571
|
+
*/
|
|
15572
|
+
value: string;
|
|
15573
|
+
}
|
|
15574
|
+
interface GetCommandsTag {
|
|
15575
|
+
/**
|
|
15576
|
+
* The Key of Tags.
|
|
15577
|
+
*/
|
|
15578
|
+
key: string;
|
|
15579
|
+
/**
|
|
15580
|
+
* The Value of Tags.
|
|
15581
|
+
*/
|
|
15582
|
+
value: string;
|
|
15583
|
+
}
|
|
15380
15584
|
interface GetDeploymentSetsDeploymentSet {
|
|
15381
15585
|
/**
|
|
15382
15586
|
* The ID of ECS DeploymentSet.
|
|
@@ -15706,6 +15910,10 @@ export declare namespace ecs {
|
|
|
15706
15910
|
* The description of ECS instance.
|
|
15707
15911
|
*/
|
|
15708
15912
|
description: string;
|
|
15913
|
+
/**
|
|
15914
|
+
* The EIP address of the ECS instance.
|
|
15915
|
+
*/
|
|
15916
|
+
eipAddresses: outputs.ecs.GetInstancesInstanceEipAddress[];
|
|
15709
15917
|
/**
|
|
15710
15918
|
* The GPU device info of Instance.
|
|
15711
15919
|
*/
|
|
@@ -15798,6 +16006,10 @@ export declare namespace ecs {
|
|
|
15798
16006
|
* The update time of ECS instance.
|
|
15799
16007
|
*/
|
|
15800
16008
|
updatedAt: string;
|
|
16009
|
+
/**
|
|
16010
|
+
* The volume ID list of ECS instance.
|
|
16011
|
+
*/
|
|
16012
|
+
volumeIds: string[];
|
|
15801
16013
|
/**
|
|
15802
16014
|
* The volume detail collection of volume.
|
|
15803
16015
|
*/
|
|
@@ -15811,6 +16023,16 @@ export declare namespace ecs {
|
|
|
15811
16023
|
*/
|
|
15812
16024
|
zoneId: string;
|
|
15813
16025
|
}
|
|
16026
|
+
interface GetInstancesInstanceEipAddress {
|
|
16027
|
+
/**
|
|
16028
|
+
* The EIP ID of the ECS instance.
|
|
16029
|
+
*/
|
|
16030
|
+
allocationId: string;
|
|
16031
|
+
/**
|
|
16032
|
+
* The EIP address of the ECS instance.
|
|
16033
|
+
*/
|
|
16034
|
+
ipAddress: string;
|
|
16035
|
+
}
|
|
15814
16036
|
interface GetInstancesInstanceGpuDevice {
|
|
15815
16037
|
/**
|
|
15816
16038
|
* The Count of GPU device.
|
|
@@ -16016,6 +16238,14 @@ export declare namespace ecs {
|
|
|
16016
16238
|
* The launch time of the ecs invocation.
|
|
16017
16239
|
*/
|
|
16018
16240
|
launchTime: string;
|
|
16241
|
+
/**
|
|
16242
|
+
* The custom parameters of the ecs invocation.
|
|
16243
|
+
*/
|
|
16244
|
+
parameters: string;
|
|
16245
|
+
/**
|
|
16246
|
+
* The project name of ecs invocation.
|
|
16247
|
+
*/
|
|
16248
|
+
projectName: string;
|
|
16019
16249
|
/**
|
|
16020
16250
|
* The recurrence end time of the ecs invocation.
|
|
16021
16251
|
*/
|
|
@@ -16028,6 +16258,10 @@ export declare namespace ecs {
|
|
|
16028
16258
|
* The start time of the ecs invocation.
|
|
16029
16259
|
*/
|
|
16030
16260
|
startTime: string;
|
|
16261
|
+
/**
|
|
16262
|
+
* Tags.
|
|
16263
|
+
*/
|
|
16264
|
+
tags: outputs.ecs.GetInvocationsInvocationTag[];
|
|
16031
16265
|
/**
|
|
16032
16266
|
* The timeout of the ecs command.
|
|
16033
16267
|
*/
|
|
@@ -16041,6 +16275,26 @@ export declare namespace ecs {
|
|
|
16041
16275
|
*/
|
|
16042
16276
|
workingDir: string;
|
|
16043
16277
|
}
|
|
16278
|
+
interface GetInvocationsInvocationTag {
|
|
16279
|
+
/**
|
|
16280
|
+
* The Key of Tags.
|
|
16281
|
+
*/
|
|
16282
|
+
key: string;
|
|
16283
|
+
/**
|
|
16284
|
+
* The Value of Tags.
|
|
16285
|
+
*/
|
|
16286
|
+
value: string;
|
|
16287
|
+
}
|
|
16288
|
+
interface GetInvocationsTag {
|
|
16289
|
+
/**
|
|
16290
|
+
* The Key of Tags.
|
|
16291
|
+
*/
|
|
16292
|
+
key: string;
|
|
16293
|
+
/**
|
|
16294
|
+
* The Value of Tags.
|
|
16295
|
+
*/
|
|
16296
|
+
value: string;
|
|
16297
|
+
}
|
|
16044
16298
|
interface GetKeyPairsKeyPair {
|
|
16045
16299
|
/**
|
|
16046
16300
|
* The creation time of key pair.
|
|
@@ -16628,6 +16882,10 @@ export declare namespace ecs {
|
|
|
16628
16882
|
* The description of ECS instance.
|
|
16629
16883
|
*/
|
|
16630
16884
|
description: string;
|
|
16885
|
+
/**
|
|
16886
|
+
* The EIP address of the ECS instance.
|
|
16887
|
+
*/
|
|
16888
|
+
eipAddresses: outputs.ecs.InstancesInstanceEipAddress[];
|
|
16631
16889
|
/**
|
|
16632
16890
|
* The GPU device info of Instance.
|
|
16633
16891
|
*/
|
|
@@ -16720,6 +16978,10 @@ export declare namespace ecs {
|
|
|
16720
16978
|
* The update time of ECS instance.
|
|
16721
16979
|
*/
|
|
16722
16980
|
updatedAt: string;
|
|
16981
|
+
/**
|
|
16982
|
+
* The volume ID list of ECS instance.
|
|
16983
|
+
*/
|
|
16984
|
+
volumeIds: string[];
|
|
16723
16985
|
/**
|
|
16724
16986
|
* The volume detail collection of volume.
|
|
16725
16987
|
*/
|
|
@@ -16733,6 +16995,16 @@ export declare namespace ecs {
|
|
|
16733
16995
|
*/
|
|
16734
16996
|
zoneId: string;
|
|
16735
16997
|
}
|
|
16998
|
+
interface InstancesInstanceEipAddress {
|
|
16999
|
+
/**
|
|
17000
|
+
* The EIP ID of the ECS instance.
|
|
17001
|
+
*/
|
|
17002
|
+
allocationId: string;
|
|
17003
|
+
/**
|
|
17004
|
+
* The EIP address of the ECS instance.
|
|
17005
|
+
*/
|
|
17006
|
+
ipAddress: string;
|
|
17007
|
+
}
|
|
16736
17008
|
interface InstancesInstanceGpuDevice {
|
|
16737
17009
|
/**
|
|
16738
17010
|
* The Count of GPU device.
|
|
@@ -16819,6 +17091,16 @@ export declare namespace ecs {
|
|
|
16819
17091
|
*/
|
|
16820
17092
|
value: string;
|
|
16821
17093
|
}
|
|
17094
|
+
interface InvocationParameter {
|
|
17095
|
+
/**
|
|
17096
|
+
* The name of the parameter.
|
|
17097
|
+
*/
|
|
17098
|
+
name: string;
|
|
17099
|
+
/**
|
|
17100
|
+
* The value of the parameter.
|
|
17101
|
+
*/
|
|
17102
|
+
value: string;
|
|
17103
|
+
}
|
|
16822
17104
|
interface InvocationResultsInvocationResult {
|
|
16823
17105
|
/**
|
|
16824
17106
|
* The id of ecs command.
|
|
@@ -16873,6 +17155,16 @@ export declare namespace ecs {
|
|
|
16873
17155
|
*/
|
|
16874
17156
|
username: string;
|
|
16875
17157
|
}
|
|
17158
|
+
interface InvocationTag {
|
|
17159
|
+
/**
|
|
17160
|
+
* The Key of Tags.
|
|
17161
|
+
*/
|
|
17162
|
+
key: string;
|
|
17163
|
+
/**
|
|
17164
|
+
* The Value of Tags.
|
|
17165
|
+
*/
|
|
17166
|
+
value: string;
|
|
17167
|
+
}
|
|
16876
17168
|
interface InvocationsInvocation {
|
|
16877
17169
|
/**
|
|
16878
17170
|
* The base64 encoded content of the ecs command.
|
|
@@ -16938,6 +17230,14 @@ export declare namespace ecs {
|
|
|
16938
17230
|
* The launch time of the ecs invocation.
|
|
16939
17231
|
*/
|
|
16940
17232
|
launchTime: string;
|
|
17233
|
+
/**
|
|
17234
|
+
* The custom parameters of the ecs invocation.
|
|
17235
|
+
*/
|
|
17236
|
+
parameters: string;
|
|
17237
|
+
/**
|
|
17238
|
+
* The project name of ecs invocation.
|
|
17239
|
+
*/
|
|
17240
|
+
projectName: string;
|
|
16941
17241
|
/**
|
|
16942
17242
|
* The recurrence end time of the ecs invocation.
|
|
16943
17243
|
*/
|
|
@@ -16950,6 +17250,10 @@ export declare namespace ecs {
|
|
|
16950
17250
|
* The start time of the ecs invocation.
|
|
16951
17251
|
*/
|
|
16952
17252
|
startTime: string;
|
|
17253
|
+
/**
|
|
17254
|
+
* Tags.
|
|
17255
|
+
*/
|
|
17256
|
+
tags: outputs.ecs.InvocationsInvocationTag[];
|
|
16953
17257
|
/**
|
|
16954
17258
|
* The timeout of the ecs command.
|
|
16955
17259
|
*/
|
|
@@ -16963,6 +17267,26 @@ export declare namespace ecs {
|
|
|
16963
17267
|
*/
|
|
16964
17268
|
workingDir: string;
|
|
16965
17269
|
}
|
|
17270
|
+
interface InvocationsInvocationTag {
|
|
17271
|
+
/**
|
|
17272
|
+
* The Key of Tags.
|
|
17273
|
+
*/
|
|
17274
|
+
key: string;
|
|
17275
|
+
/**
|
|
17276
|
+
* The Value of Tags.
|
|
17277
|
+
*/
|
|
17278
|
+
value: string;
|
|
17279
|
+
}
|
|
17280
|
+
interface InvocationsTag {
|
|
17281
|
+
/**
|
|
17282
|
+
* The Key of Tags.
|
|
17283
|
+
*/
|
|
17284
|
+
key: string;
|
|
17285
|
+
/**
|
|
17286
|
+
* The Value of Tags.
|
|
17287
|
+
*/
|
|
17288
|
+
value: string;
|
|
17289
|
+
}
|
|
16966
17290
|
interface KeyPairsKeyPair {
|
|
16967
17291
|
/**
|
|
16968
17292
|
* The creation time of key pair.
|
|
@@ -41546,6 +41870,52 @@ export declare namespace tos {
|
|
|
41546
41870
|
*/
|
|
41547
41871
|
permission: string;
|
|
41548
41872
|
}
|
|
41873
|
+
interface BucketCorsCorsRule {
|
|
41874
|
+
/**
|
|
41875
|
+
* The list of headers that are allowed in a preflight request.
|
|
41876
|
+
*/
|
|
41877
|
+
allowedHeaders?: string[];
|
|
41878
|
+
/**
|
|
41879
|
+
* The list of HTTP methods that are allowed in a preflight request. Valid values: `PUT`, `POST`, `DELETE`, `GET`, `HEAD`.
|
|
41880
|
+
*/
|
|
41881
|
+
allowedMethods: string[];
|
|
41882
|
+
/**
|
|
41883
|
+
* The list of origins that are allowed to make requests to the bucket.
|
|
41884
|
+
*/
|
|
41885
|
+
allowedOrigins: string[];
|
|
41886
|
+
/**
|
|
41887
|
+
* The list of headers that are exposed in the response to a preflight request. It is recommended to add two expose headers, X-Tos-Request-Id and ETag.
|
|
41888
|
+
*/
|
|
41889
|
+
exposeHeaders?: string[];
|
|
41890
|
+
/**
|
|
41891
|
+
* The maximum amount of time that a preflight request can be cached. Unit: second. Default value: 3600.
|
|
41892
|
+
*/
|
|
41893
|
+
maxAgeSeconds: number;
|
|
41894
|
+
/**
|
|
41895
|
+
* Indicates whether the bucket returns the 'Vary: Origin' header in the response to preflight requests. Default value: false.
|
|
41896
|
+
*/
|
|
41897
|
+
responseVary: boolean;
|
|
41898
|
+
}
|
|
41899
|
+
interface BucketEncryptionRule {
|
|
41900
|
+
/**
|
|
41901
|
+
* The server side encryption configuration.
|
|
41902
|
+
*/
|
|
41903
|
+
applyServerSideEncryptionByDefault: outputs.tos.BucketEncryptionRuleApplyServerSideEncryptionByDefault;
|
|
41904
|
+
}
|
|
41905
|
+
interface BucketEncryptionRuleApplyServerSideEncryptionByDefault {
|
|
41906
|
+
/**
|
|
41907
|
+
* The kms data encryption. Valid values: `AES256`, `SM4`. Default is `AES256`.
|
|
41908
|
+
*/
|
|
41909
|
+
kmsDataEncryption: string;
|
|
41910
|
+
/**
|
|
41911
|
+
* The kms master key id. This field is required when `sseAlgorithm` is `kms`. The format is `trn:kms:<region>:<accountID>:keyrings/<keyring>/keys/<key>`.
|
|
41912
|
+
*/
|
|
41913
|
+
kmsMasterKeyId: string;
|
|
41914
|
+
/**
|
|
41915
|
+
* The server side encryption algorithm. Valid values: `kms`, `AES256`, `SM4`.
|
|
41916
|
+
*/
|
|
41917
|
+
sseAlgorithm: string;
|
|
41918
|
+
}
|
|
41549
41919
|
interface BucketInventoriesInventoryConfiguration {
|
|
41550
41920
|
/**
|
|
41551
41921
|
* The name the TOS bucket.
|
|
@@ -41672,6 +42042,58 @@ export declare namespace tos {
|
|
|
41672
42042
|
*/
|
|
41673
42043
|
frequency: string;
|
|
41674
42044
|
}
|
|
42045
|
+
interface BucketNotificationRules {
|
|
42046
|
+
/**
|
|
42047
|
+
* The destination info of the notification.
|
|
42048
|
+
*/
|
|
42049
|
+
destination: outputs.tos.BucketNotificationRulesDestination;
|
|
42050
|
+
/**
|
|
42051
|
+
* The event type of the notification.
|
|
42052
|
+
*/
|
|
42053
|
+
events: string[];
|
|
42054
|
+
/**
|
|
42055
|
+
* The filter of the notification.
|
|
42056
|
+
*/
|
|
42057
|
+
filter?: outputs.tos.BucketNotificationRulesFilter;
|
|
42058
|
+
/**
|
|
42059
|
+
* The rule name of the notification.
|
|
42060
|
+
*/
|
|
42061
|
+
ruleId: string;
|
|
42062
|
+
}
|
|
42063
|
+
interface BucketNotificationRulesDestination {
|
|
42064
|
+
/**
|
|
42065
|
+
* The VeFaas info of the destination.
|
|
42066
|
+
*/
|
|
42067
|
+
veFaas?: outputs.tos.BucketNotificationRulesDestinationVeFaa[];
|
|
42068
|
+
}
|
|
42069
|
+
interface BucketNotificationRulesDestinationVeFaa {
|
|
42070
|
+
/**
|
|
42071
|
+
* The function id of the destination.
|
|
42072
|
+
*/
|
|
42073
|
+
functionId: string;
|
|
42074
|
+
}
|
|
42075
|
+
interface BucketNotificationRulesFilter {
|
|
42076
|
+
/**
|
|
42077
|
+
* The tos filter of the notification.
|
|
42078
|
+
*/
|
|
42079
|
+
tosKey?: outputs.tos.BucketNotificationRulesFilterTosKey;
|
|
42080
|
+
}
|
|
42081
|
+
interface BucketNotificationRulesFilterTosKey {
|
|
42082
|
+
/**
|
|
42083
|
+
* The filter rules of the notification.
|
|
42084
|
+
*/
|
|
42085
|
+
filterRules?: outputs.tos.BucketNotificationRulesFilterTosKeyFilterRule[];
|
|
42086
|
+
}
|
|
42087
|
+
interface BucketNotificationRulesFilterTosKeyFilterRule {
|
|
42088
|
+
/**
|
|
42089
|
+
* The name of the filter rule. Valid values: `prefix`, `suffix`.
|
|
42090
|
+
*/
|
|
42091
|
+
name?: string;
|
|
42092
|
+
/**
|
|
42093
|
+
* The value of the filter rule.
|
|
42094
|
+
*/
|
|
42095
|
+
value?: string;
|
|
42096
|
+
}
|
|
41675
42097
|
interface BucketObjectAccountAcl {
|
|
41676
42098
|
/**
|
|
41677
42099
|
* The accountId to control.
|
|
@@ -50921,6 +51343,10 @@ export declare namespace vke {
|
|
|
50921
51343
|
* The NamePrefix of NodeConfig.
|
|
50922
51344
|
*/
|
|
50923
51345
|
namePrefix: string;
|
|
51346
|
+
/**
|
|
51347
|
+
* The PreScript of NodeConfig.
|
|
51348
|
+
*/
|
|
51349
|
+
preScript: string;
|
|
50924
51350
|
/**
|
|
50925
51351
|
* The Security of NodeConfig.
|
|
50926
51352
|
*/
|
|
@@ -51055,6 +51481,10 @@ export declare namespace vke {
|
|
|
51055
51481
|
* The NamePrefix of NodeConfig.
|
|
51056
51482
|
*/
|
|
51057
51483
|
namePrefix?: string;
|
|
51484
|
+
/**
|
|
51485
|
+
* The PreScript of NodeConfig.
|
|
51486
|
+
*/
|
|
51487
|
+
preScript?: string;
|
|
51058
51488
|
/**
|
|
51059
51489
|
* The Security of NodeConfig.
|
|
51060
51490
|
*/
|
|
@@ -51643,6 +52073,10 @@ export declare namespace vke {
|
|
|
51643
52073
|
* The Phase of Status.
|
|
51644
52074
|
*/
|
|
51645
52075
|
phase: string;
|
|
52076
|
+
/**
|
|
52077
|
+
* The PreScript of NodeConfig.
|
|
52078
|
+
*/
|
|
52079
|
+
preScript: string;
|
|
51646
52080
|
/**
|
|
51647
52081
|
* The Priority of AutoScaling.
|
|
51648
52082
|
*/
|
|
@@ -51913,6 +52347,10 @@ export declare namespace vke {
|
|
|
51913
52347
|
* The Phase of Node.
|
|
51914
52348
|
*/
|
|
51915
52349
|
phase: string;
|
|
52350
|
+
/**
|
|
52351
|
+
* The PreScript of NodeConfig.
|
|
52352
|
+
*/
|
|
52353
|
+
preScript: string;
|
|
51916
52354
|
/**
|
|
51917
52355
|
* The roles of node.
|
|
51918
52356
|
*/
|
|
@@ -52315,6 +52753,10 @@ export declare namespace vke {
|
|
|
52315
52753
|
* The Period of PrePaid instance of NodeConfig. Valid values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. Unit: month. when InstanceChargeType is PrePaid, default value is 12.
|
|
52316
52754
|
*/
|
|
52317
52755
|
period: number;
|
|
52756
|
+
/**
|
|
52757
|
+
* The PreScript of NodeConfig.
|
|
52758
|
+
*/
|
|
52759
|
+
preScript?: string;
|
|
52318
52760
|
/**
|
|
52319
52761
|
* The project name of the ecs instance.
|
|
52320
52762
|
*/
|
|
@@ -52569,6 +53011,10 @@ export declare namespace vke {
|
|
|
52569
53011
|
* The Phase of Status.
|
|
52570
53012
|
*/
|
|
52571
53013
|
phase: string;
|
|
53014
|
+
/**
|
|
53015
|
+
* The PreScript of NodeConfig.
|
|
53016
|
+
*/
|
|
53017
|
+
preScript: string;
|
|
52572
53018
|
/**
|
|
52573
53019
|
* The Priority of AutoScaling.
|
|
52574
53020
|
*/
|
|
@@ -52839,6 +53285,10 @@ export declare namespace vke {
|
|
|
52839
53285
|
* The Phase of Node.
|
|
52840
53286
|
*/
|
|
52841
53287
|
phase: string;
|
|
53288
|
+
/**
|
|
53289
|
+
* The PreScript of NodeConfig.
|
|
53290
|
+
*/
|
|
53291
|
+
preScript: string;
|
|
52842
53292
|
/**
|
|
52843
53293
|
* The roles of node.
|
|
52844
53294
|
*/
|
package/vke/node.d.ts
CHANGED
|
@@ -200,6 +200,10 @@ export declare class Node extends pulumi.CustomResource {
|
|
|
200
200
|
* The node pool id. This field is used to specify the custom node pool to which you want to add nodes. If not filled in, it means added to the default node pool.
|
|
201
201
|
*/
|
|
202
202
|
readonly nodePoolId: pulumi.Output<string>;
|
|
203
|
+
/**
|
|
204
|
+
* The PreScript of Node. This field is valid only when adding an existing instance to the default node pool.
|
|
205
|
+
*/
|
|
206
|
+
readonly preScript: pulumi.Output<string>;
|
|
203
207
|
/**
|
|
204
208
|
* Create a Node resource with the given unique name, arguments, and options.
|
|
205
209
|
*
|
|
@@ -253,6 +257,10 @@ export interface NodeState {
|
|
|
253
257
|
* The node pool id. This field is used to specify the custom node pool to which you want to add nodes. If not filled in, it means added to the default node pool.
|
|
254
258
|
*/
|
|
255
259
|
nodePoolId?: pulumi.Input<string>;
|
|
260
|
+
/**
|
|
261
|
+
* The PreScript of Node. This field is valid only when adding an existing instance to the default node pool.
|
|
262
|
+
*/
|
|
263
|
+
preScript?: pulumi.Input<string>;
|
|
256
264
|
}
|
|
257
265
|
/**
|
|
258
266
|
* The set of arguments for constructing a Node resource.
|
|
@@ -298,4 +306,8 @@ export interface NodeArgs {
|
|
|
298
306
|
* The node pool id. This field is used to specify the custom node pool to which you want to add nodes. If not filled in, it means added to the default node pool.
|
|
299
307
|
*/
|
|
300
308
|
nodePoolId?: pulumi.Input<string>;
|
|
309
|
+
/**
|
|
310
|
+
* The PreScript of Node. This field is valid only when adding an existing instance to the default node pool.
|
|
311
|
+
*/
|
|
312
|
+
preScript?: pulumi.Input<string>;
|
|
301
313
|
}
|
package/vke/node.js
CHANGED
|
@@ -186,6 +186,7 @@ class Node extends pulumi.CustomResource {
|
|
|
186
186
|
resourceInputs["keepInstanceName"] = state ? state.keepInstanceName : undefined;
|
|
187
187
|
resourceInputs["kubernetesConfig"] = state ? state.kubernetesConfig : undefined;
|
|
188
188
|
resourceInputs["nodePoolId"] = state ? state.nodePoolId : undefined;
|
|
189
|
+
resourceInputs["preScript"] = state ? state.preScript : undefined;
|
|
189
190
|
}
|
|
190
191
|
else {
|
|
191
192
|
const args = argsOrState;
|
|
@@ -205,6 +206,7 @@ class Node extends pulumi.CustomResource {
|
|
|
205
206
|
resourceInputs["keepInstanceName"] = args ? args.keepInstanceName : undefined;
|
|
206
207
|
resourceInputs["kubernetesConfig"] = args ? args.kubernetesConfig : undefined;
|
|
207
208
|
resourceInputs["nodePoolId"] = args ? args.nodePoolId : undefined;
|
|
209
|
+
resourceInputs["preScript"] = args ? args.preScript : undefined;
|
|
208
210
|
}
|
|
209
211
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
210
212
|
super(Node.__pulumiType, name, resourceInputs, opts);
|