@volcengine/pulumi 0.0.34 → 0.0.36
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 +5 -0
- package/config/vars.js +12 -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/iam/getOidcProviders.d.ts +62 -0
- package/iam/getOidcProviders.js +42 -0
- package/iam/getOidcProviders.js.map +1 -0
- package/iam/index.d.ts +12 -0
- package/iam/index.js +17 -1
- package/iam/index.js.map +1 -1
- package/iam/oidcProvider.d.ts +164 -0
- package/iam/oidcProvider.js +109 -0
- package/iam/oidcProvider.js.map +1 -0
- package/iam/oidcProviders.d.ts +64 -0
- package/iam/oidcProviders.js +45 -0
- package/iam/oidcProviders.js.map +1 -0
- package/iam/serviceLinkedRole.d.ts +91 -0
- package/iam/serviceLinkedRole.js +77 -0
- package/iam/serviceLinkedRole.js.map +1 -0
- 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 +9 -0
- package/provider.js +2 -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/getPitrTimeWindows.d.ts +50 -0
- package/redis/getPitrTimeWindows.js +32 -0
- package/redis/getPitrTimeWindows.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/redis/pitrTimeWindows.d.ts +50 -0
- package/redis/pitrTimeWindows.js +32 -0
- package/redis/pitrTimeWindows.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 +280 -0
- package/types/output.d.ts +548 -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
|
@@ -12193,6 +12193,28 @@ export declare namespace config {
|
|
|
12193
12193
|
*/
|
|
12194
12194
|
policy?: string;
|
|
12195
12195
|
}
|
|
12196
|
+
interface AssumeRoleWithOidc {
|
|
12197
|
+
/**
|
|
12198
|
+
* The duration of the session when making the AssumeRole call. Its value ranges from 900 to 43200(seconds), and default is 3600 seconds.
|
|
12199
|
+
*/
|
|
12200
|
+
durationSeconds: number;
|
|
12201
|
+
/**
|
|
12202
|
+
* The OIDC token to use when making the AssumeRole call.
|
|
12203
|
+
*/
|
|
12204
|
+
oidcToken: string;
|
|
12205
|
+
/**
|
|
12206
|
+
* A more restrictive policy when making the AssumeRole call.
|
|
12207
|
+
*/
|
|
12208
|
+
policy?: string;
|
|
12209
|
+
/**
|
|
12210
|
+
* The session name to use when making the AssumeRole call.
|
|
12211
|
+
*/
|
|
12212
|
+
roleSessionName: string;
|
|
12213
|
+
/**
|
|
12214
|
+
* The TRN of the role to assume, in the format `trn:iam:${AccountId}:role/${RoleName}`.
|
|
12215
|
+
*/
|
|
12216
|
+
roleTrn: string;
|
|
12217
|
+
}
|
|
12196
12218
|
}
|
|
12197
12219
|
export declare namespace cr {
|
|
12198
12220
|
interface AuthorizationTokensToken {
|
|
@@ -15209,6 +15231,54 @@ export declare namespace ecs {
|
|
|
15209
15231
|
*/
|
|
15210
15232
|
value: string;
|
|
15211
15233
|
}
|
|
15234
|
+
interface CommandParameterDefinition {
|
|
15235
|
+
/**
|
|
15236
|
+
* The decimal precision of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15237
|
+
*/
|
|
15238
|
+
decimalPrecision: number;
|
|
15239
|
+
/**
|
|
15240
|
+
* The default value of the custom parameter.
|
|
15241
|
+
*/
|
|
15242
|
+
defaultValue: string;
|
|
15243
|
+
/**
|
|
15244
|
+
* The maximum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15245
|
+
*/
|
|
15246
|
+
maxLength: number;
|
|
15247
|
+
/**
|
|
15248
|
+
* The maximum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15249
|
+
*/
|
|
15250
|
+
maxValue: string;
|
|
15251
|
+
/**
|
|
15252
|
+
* The minimum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15253
|
+
*/
|
|
15254
|
+
minLength: number;
|
|
15255
|
+
/**
|
|
15256
|
+
* The minimum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15257
|
+
*/
|
|
15258
|
+
minValue: string;
|
|
15259
|
+
/**
|
|
15260
|
+
* The name of the custom parameter.
|
|
15261
|
+
*/
|
|
15262
|
+
name: string;
|
|
15263
|
+
/**
|
|
15264
|
+
* Whether the custom parameter is required.
|
|
15265
|
+
*/
|
|
15266
|
+
required: boolean;
|
|
15267
|
+
/**
|
|
15268
|
+
* The type of the custom parameter. Valid values: `String`, `Digit`.
|
|
15269
|
+
*/
|
|
15270
|
+
type: string;
|
|
15271
|
+
}
|
|
15272
|
+
interface CommandTag {
|
|
15273
|
+
/**
|
|
15274
|
+
* The Key of Tags.
|
|
15275
|
+
*/
|
|
15276
|
+
key: string;
|
|
15277
|
+
/**
|
|
15278
|
+
* The Value of Tags.
|
|
15279
|
+
*/
|
|
15280
|
+
value: string;
|
|
15281
|
+
}
|
|
15212
15282
|
interface CommandsCommand {
|
|
15213
15283
|
/**
|
|
15214
15284
|
* The base64 encoded content of the ecs command.
|
|
@@ -15222,6 +15292,10 @@ export declare namespace ecs {
|
|
|
15222
15292
|
* The provider of public command. When this field is not specified, query for custom commands.
|
|
15223
15293
|
*/
|
|
15224
15294
|
commandProvider: string;
|
|
15295
|
+
/**
|
|
15296
|
+
* Whether the command content is base64 encoded. Valid values: `Base64`, `PlainText`. Default is `Base64`.
|
|
15297
|
+
*/
|
|
15298
|
+
contentEncoding: string;
|
|
15225
15299
|
/**
|
|
15226
15300
|
* The create time of the ecs command.
|
|
15227
15301
|
*/
|
|
@@ -15230,6 +15304,10 @@ export declare namespace ecs {
|
|
|
15230
15304
|
* The description of the ecs command.
|
|
15231
15305
|
*/
|
|
15232
15306
|
description: string;
|
|
15307
|
+
/**
|
|
15308
|
+
* Whether to enable custom parameter. Default is `false`.
|
|
15309
|
+
*/
|
|
15310
|
+
enableParameter: boolean;
|
|
15233
15311
|
/**
|
|
15234
15312
|
* The id of the ecs command.
|
|
15235
15313
|
*/
|
|
@@ -15242,6 +15320,18 @@ export declare namespace ecs {
|
|
|
15242
15320
|
* The name of ecs command. This field support fuzzy query.
|
|
15243
15321
|
*/
|
|
15244
15322
|
name: string;
|
|
15323
|
+
/**
|
|
15324
|
+
* The custom parameter definitions of the ecs command.
|
|
15325
|
+
*/
|
|
15326
|
+
parameterDefinitions: outputs.ecs.CommandsCommandParameterDefinition[];
|
|
15327
|
+
/**
|
|
15328
|
+
* The project name of ecs command.
|
|
15329
|
+
*/
|
|
15330
|
+
projectName: string;
|
|
15331
|
+
/**
|
|
15332
|
+
* Tags.
|
|
15333
|
+
*/
|
|
15334
|
+
tags: outputs.ecs.CommandsCommandTag[];
|
|
15245
15335
|
/**
|
|
15246
15336
|
* The timeout of the ecs command.
|
|
15247
15337
|
*/
|
|
@@ -15263,6 +15353,64 @@ export declare namespace ecs {
|
|
|
15263
15353
|
*/
|
|
15264
15354
|
workingDir: string;
|
|
15265
15355
|
}
|
|
15356
|
+
interface CommandsCommandParameterDefinition {
|
|
15357
|
+
/**
|
|
15358
|
+
* The decimal precision of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15359
|
+
*/
|
|
15360
|
+
decimalPrecision: number;
|
|
15361
|
+
/**
|
|
15362
|
+
* The default value of the custom parameter.
|
|
15363
|
+
*/
|
|
15364
|
+
defaultValue: string;
|
|
15365
|
+
/**
|
|
15366
|
+
* The maximum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15367
|
+
*/
|
|
15368
|
+
maxLength: number;
|
|
15369
|
+
/**
|
|
15370
|
+
* The maximum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15371
|
+
*/
|
|
15372
|
+
maxValue: string;
|
|
15373
|
+
/**
|
|
15374
|
+
* The minimum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15375
|
+
*/
|
|
15376
|
+
minLength: number;
|
|
15377
|
+
/**
|
|
15378
|
+
* The minimum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15379
|
+
*/
|
|
15380
|
+
minValue: string;
|
|
15381
|
+
/**
|
|
15382
|
+
* The name of ecs command. This field support fuzzy query.
|
|
15383
|
+
*/
|
|
15384
|
+
name: string;
|
|
15385
|
+
/**
|
|
15386
|
+
* Whether the custom parameter is required.
|
|
15387
|
+
*/
|
|
15388
|
+
required: boolean;
|
|
15389
|
+
/**
|
|
15390
|
+
* The type of ecs command. Valid values: `Shell`.
|
|
15391
|
+
*/
|
|
15392
|
+
type: string;
|
|
15393
|
+
}
|
|
15394
|
+
interface CommandsCommandTag {
|
|
15395
|
+
/**
|
|
15396
|
+
* The Key of Tags.
|
|
15397
|
+
*/
|
|
15398
|
+
key: string;
|
|
15399
|
+
/**
|
|
15400
|
+
* The Value of Tags.
|
|
15401
|
+
*/
|
|
15402
|
+
value: string;
|
|
15403
|
+
}
|
|
15404
|
+
interface CommandsTag {
|
|
15405
|
+
/**
|
|
15406
|
+
* The Key of Tags.
|
|
15407
|
+
*/
|
|
15408
|
+
key: string;
|
|
15409
|
+
/**
|
|
15410
|
+
* The Value of Tags.
|
|
15411
|
+
*/
|
|
15412
|
+
value: string;
|
|
15413
|
+
}
|
|
15266
15414
|
interface DeploymentSetsDeploymentSet {
|
|
15267
15415
|
/**
|
|
15268
15416
|
* The ID of ECS DeploymentSet.
|
|
@@ -15336,6 +15484,10 @@ export declare namespace ecs {
|
|
|
15336
15484
|
* The provider of public command. When this field is not specified, query for custom commands.
|
|
15337
15485
|
*/
|
|
15338
15486
|
commandProvider: string;
|
|
15487
|
+
/**
|
|
15488
|
+
* Whether the command content is base64 encoded. Valid values: `Base64`, `PlainText`. Default is `Base64`.
|
|
15489
|
+
*/
|
|
15490
|
+
contentEncoding: string;
|
|
15339
15491
|
/**
|
|
15340
15492
|
* The create time of the ecs command.
|
|
15341
15493
|
*/
|
|
@@ -15344,6 +15496,10 @@ export declare namespace ecs {
|
|
|
15344
15496
|
* The description of the ecs command.
|
|
15345
15497
|
*/
|
|
15346
15498
|
description: string;
|
|
15499
|
+
/**
|
|
15500
|
+
* Whether to enable custom parameter. Default is `false`.
|
|
15501
|
+
*/
|
|
15502
|
+
enableParameter: boolean;
|
|
15347
15503
|
/**
|
|
15348
15504
|
* The id of the ecs command.
|
|
15349
15505
|
*/
|
|
@@ -15356,6 +15512,18 @@ export declare namespace ecs {
|
|
|
15356
15512
|
* The name of ecs command. This field support fuzzy query.
|
|
15357
15513
|
*/
|
|
15358
15514
|
name: string;
|
|
15515
|
+
/**
|
|
15516
|
+
* The custom parameter definitions of the ecs command.
|
|
15517
|
+
*/
|
|
15518
|
+
parameterDefinitions: outputs.ecs.GetCommandsCommandParameterDefinition[];
|
|
15519
|
+
/**
|
|
15520
|
+
* The project name of ecs command.
|
|
15521
|
+
*/
|
|
15522
|
+
projectName: string;
|
|
15523
|
+
/**
|
|
15524
|
+
* Tags.
|
|
15525
|
+
*/
|
|
15526
|
+
tags: outputs.ecs.GetCommandsCommandTag[];
|
|
15359
15527
|
/**
|
|
15360
15528
|
* The timeout of the ecs command.
|
|
15361
15529
|
*/
|
|
@@ -15377,6 +15545,64 @@ export declare namespace ecs {
|
|
|
15377
15545
|
*/
|
|
15378
15546
|
workingDir: string;
|
|
15379
15547
|
}
|
|
15548
|
+
interface GetCommandsCommandParameterDefinition {
|
|
15549
|
+
/**
|
|
15550
|
+
* The decimal precision of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15551
|
+
*/
|
|
15552
|
+
decimalPrecision: number;
|
|
15553
|
+
/**
|
|
15554
|
+
* The default value of the custom parameter.
|
|
15555
|
+
*/
|
|
15556
|
+
defaultValue: string;
|
|
15557
|
+
/**
|
|
15558
|
+
* The maximum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15559
|
+
*/
|
|
15560
|
+
maxLength: number;
|
|
15561
|
+
/**
|
|
15562
|
+
* The maximum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15563
|
+
*/
|
|
15564
|
+
maxValue: string;
|
|
15565
|
+
/**
|
|
15566
|
+
* The minimum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
15567
|
+
*/
|
|
15568
|
+
minLength: number;
|
|
15569
|
+
/**
|
|
15570
|
+
* The minimum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
15571
|
+
*/
|
|
15572
|
+
minValue: string;
|
|
15573
|
+
/**
|
|
15574
|
+
* The name of ecs command. This field support fuzzy query.
|
|
15575
|
+
*/
|
|
15576
|
+
name: string;
|
|
15577
|
+
/**
|
|
15578
|
+
* Whether the custom parameter is required.
|
|
15579
|
+
*/
|
|
15580
|
+
required: boolean;
|
|
15581
|
+
/**
|
|
15582
|
+
* The type of ecs command. Valid values: `Shell`.
|
|
15583
|
+
*/
|
|
15584
|
+
type: string;
|
|
15585
|
+
}
|
|
15586
|
+
interface GetCommandsCommandTag {
|
|
15587
|
+
/**
|
|
15588
|
+
* The Key of Tags.
|
|
15589
|
+
*/
|
|
15590
|
+
key: string;
|
|
15591
|
+
/**
|
|
15592
|
+
* The Value of Tags.
|
|
15593
|
+
*/
|
|
15594
|
+
value: string;
|
|
15595
|
+
}
|
|
15596
|
+
interface GetCommandsTag {
|
|
15597
|
+
/**
|
|
15598
|
+
* The Key of Tags.
|
|
15599
|
+
*/
|
|
15600
|
+
key: string;
|
|
15601
|
+
/**
|
|
15602
|
+
* The Value of Tags.
|
|
15603
|
+
*/
|
|
15604
|
+
value: string;
|
|
15605
|
+
}
|
|
15380
15606
|
interface GetDeploymentSetsDeploymentSet {
|
|
15381
15607
|
/**
|
|
15382
15608
|
* The ID of ECS DeploymentSet.
|
|
@@ -15706,6 +15932,10 @@ export declare namespace ecs {
|
|
|
15706
15932
|
* The description of ECS instance.
|
|
15707
15933
|
*/
|
|
15708
15934
|
description: string;
|
|
15935
|
+
/**
|
|
15936
|
+
* The EIP address of the ECS instance.
|
|
15937
|
+
*/
|
|
15938
|
+
eipAddresses: outputs.ecs.GetInstancesInstanceEipAddress[];
|
|
15709
15939
|
/**
|
|
15710
15940
|
* The GPU device info of Instance.
|
|
15711
15941
|
*/
|
|
@@ -15798,6 +16028,10 @@ export declare namespace ecs {
|
|
|
15798
16028
|
* The update time of ECS instance.
|
|
15799
16029
|
*/
|
|
15800
16030
|
updatedAt: string;
|
|
16031
|
+
/**
|
|
16032
|
+
* The volume ID list of ECS instance.
|
|
16033
|
+
*/
|
|
16034
|
+
volumeIds: string[];
|
|
15801
16035
|
/**
|
|
15802
16036
|
* The volume detail collection of volume.
|
|
15803
16037
|
*/
|
|
@@ -15811,6 +16045,16 @@ export declare namespace ecs {
|
|
|
15811
16045
|
*/
|
|
15812
16046
|
zoneId: string;
|
|
15813
16047
|
}
|
|
16048
|
+
interface GetInstancesInstanceEipAddress {
|
|
16049
|
+
/**
|
|
16050
|
+
* The EIP ID of the ECS instance.
|
|
16051
|
+
*/
|
|
16052
|
+
allocationId: string;
|
|
16053
|
+
/**
|
|
16054
|
+
* The EIP address of the ECS instance.
|
|
16055
|
+
*/
|
|
16056
|
+
ipAddress: string;
|
|
16057
|
+
}
|
|
15814
16058
|
interface GetInstancesInstanceGpuDevice {
|
|
15815
16059
|
/**
|
|
15816
16060
|
* The Count of GPU device.
|
|
@@ -16016,6 +16260,14 @@ export declare namespace ecs {
|
|
|
16016
16260
|
* The launch time of the ecs invocation.
|
|
16017
16261
|
*/
|
|
16018
16262
|
launchTime: string;
|
|
16263
|
+
/**
|
|
16264
|
+
* The custom parameters of the ecs invocation.
|
|
16265
|
+
*/
|
|
16266
|
+
parameters: string;
|
|
16267
|
+
/**
|
|
16268
|
+
* The project name of ecs invocation.
|
|
16269
|
+
*/
|
|
16270
|
+
projectName: string;
|
|
16019
16271
|
/**
|
|
16020
16272
|
* The recurrence end time of the ecs invocation.
|
|
16021
16273
|
*/
|
|
@@ -16028,6 +16280,10 @@ export declare namespace ecs {
|
|
|
16028
16280
|
* The start time of the ecs invocation.
|
|
16029
16281
|
*/
|
|
16030
16282
|
startTime: string;
|
|
16283
|
+
/**
|
|
16284
|
+
* Tags.
|
|
16285
|
+
*/
|
|
16286
|
+
tags: outputs.ecs.GetInvocationsInvocationTag[];
|
|
16031
16287
|
/**
|
|
16032
16288
|
* The timeout of the ecs command.
|
|
16033
16289
|
*/
|
|
@@ -16041,6 +16297,26 @@ export declare namespace ecs {
|
|
|
16041
16297
|
*/
|
|
16042
16298
|
workingDir: string;
|
|
16043
16299
|
}
|
|
16300
|
+
interface GetInvocationsInvocationTag {
|
|
16301
|
+
/**
|
|
16302
|
+
* The Key of Tags.
|
|
16303
|
+
*/
|
|
16304
|
+
key: string;
|
|
16305
|
+
/**
|
|
16306
|
+
* The Value of Tags.
|
|
16307
|
+
*/
|
|
16308
|
+
value: string;
|
|
16309
|
+
}
|
|
16310
|
+
interface GetInvocationsTag {
|
|
16311
|
+
/**
|
|
16312
|
+
* The Key of Tags.
|
|
16313
|
+
*/
|
|
16314
|
+
key: string;
|
|
16315
|
+
/**
|
|
16316
|
+
* The Value of Tags.
|
|
16317
|
+
*/
|
|
16318
|
+
value: string;
|
|
16319
|
+
}
|
|
16044
16320
|
interface GetKeyPairsKeyPair {
|
|
16045
16321
|
/**
|
|
16046
16322
|
* The creation time of key pair.
|
|
@@ -16628,6 +16904,10 @@ export declare namespace ecs {
|
|
|
16628
16904
|
* The description of ECS instance.
|
|
16629
16905
|
*/
|
|
16630
16906
|
description: string;
|
|
16907
|
+
/**
|
|
16908
|
+
* The EIP address of the ECS instance.
|
|
16909
|
+
*/
|
|
16910
|
+
eipAddresses: outputs.ecs.InstancesInstanceEipAddress[];
|
|
16631
16911
|
/**
|
|
16632
16912
|
* The GPU device info of Instance.
|
|
16633
16913
|
*/
|
|
@@ -16720,6 +17000,10 @@ export declare namespace ecs {
|
|
|
16720
17000
|
* The update time of ECS instance.
|
|
16721
17001
|
*/
|
|
16722
17002
|
updatedAt: string;
|
|
17003
|
+
/**
|
|
17004
|
+
* The volume ID list of ECS instance.
|
|
17005
|
+
*/
|
|
17006
|
+
volumeIds: string[];
|
|
16723
17007
|
/**
|
|
16724
17008
|
* The volume detail collection of volume.
|
|
16725
17009
|
*/
|
|
@@ -16733,6 +17017,16 @@ export declare namespace ecs {
|
|
|
16733
17017
|
*/
|
|
16734
17018
|
zoneId: string;
|
|
16735
17019
|
}
|
|
17020
|
+
interface InstancesInstanceEipAddress {
|
|
17021
|
+
/**
|
|
17022
|
+
* The EIP ID of the ECS instance.
|
|
17023
|
+
*/
|
|
17024
|
+
allocationId: string;
|
|
17025
|
+
/**
|
|
17026
|
+
* The EIP address of the ECS instance.
|
|
17027
|
+
*/
|
|
17028
|
+
ipAddress: string;
|
|
17029
|
+
}
|
|
16736
17030
|
interface InstancesInstanceGpuDevice {
|
|
16737
17031
|
/**
|
|
16738
17032
|
* The Count of GPU device.
|
|
@@ -16819,6 +17113,16 @@ export declare namespace ecs {
|
|
|
16819
17113
|
*/
|
|
16820
17114
|
value: string;
|
|
16821
17115
|
}
|
|
17116
|
+
interface InvocationParameter {
|
|
17117
|
+
/**
|
|
17118
|
+
* The name of the parameter.
|
|
17119
|
+
*/
|
|
17120
|
+
name: string;
|
|
17121
|
+
/**
|
|
17122
|
+
* The value of the parameter.
|
|
17123
|
+
*/
|
|
17124
|
+
value: string;
|
|
17125
|
+
}
|
|
16822
17126
|
interface InvocationResultsInvocationResult {
|
|
16823
17127
|
/**
|
|
16824
17128
|
* The id of ecs command.
|
|
@@ -16873,6 +17177,16 @@ export declare namespace ecs {
|
|
|
16873
17177
|
*/
|
|
16874
17178
|
username: string;
|
|
16875
17179
|
}
|
|
17180
|
+
interface InvocationTag {
|
|
17181
|
+
/**
|
|
17182
|
+
* The Key of Tags.
|
|
17183
|
+
*/
|
|
17184
|
+
key: string;
|
|
17185
|
+
/**
|
|
17186
|
+
* The Value of Tags.
|
|
17187
|
+
*/
|
|
17188
|
+
value: string;
|
|
17189
|
+
}
|
|
16876
17190
|
interface InvocationsInvocation {
|
|
16877
17191
|
/**
|
|
16878
17192
|
* The base64 encoded content of the ecs command.
|
|
@@ -16938,6 +17252,14 @@ export declare namespace ecs {
|
|
|
16938
17252
|
* The launch time of the ecs invocation.
|
|
16939
17253
|
*/
|
|
16940
17254
|
launchTime: string;
|
|
17255
|
+
/**
|
|
17256
|
+
* The custom parameters of the ecs invocation.
|
|
17257
|
+
*/
|
|
17258
|
+
parameters: string;
|
|
17259
|
+
/**
|
|
17260
|
+
* The project name of ecs invocation.
|
|
17261
|
+
*/
|
|
17262
|
+
projectName: string;
|
|
16941
17263
|
/**
|
|
16942
17264
|
* The recurrence end time of the ecs invocation.
|
|
16943
17265
|
*/
|
|
@@ -16950,6 +17272,10 @@ export declare namespace ecs {
|
|
|
16950
17272
|
* The start time of the ecs invocation.
|
|
16951
17273
|
*/
|
|
16952
17274
|
startTime: string;
|
|
17275
|
+
/**
|
|
17276
|
+
* Tags.
|
|
17277
|
+
*/
|
|
17278
|
+
tags: outputs.ecs.InvocationsInvocationTag[];
|
|
16953
17279
|
/**
|
|
16954
17280
|
* The timeout of the ecs command.
|
|
16955
17281
|
*/
|
|
@@ -16963,6 +17289,26 @@ export declare namespace ecs {
|
|
|
16963
17289
|
*/
|
|
16964
17290
|
workingDir: string;
|
|
16965
17291
|
}
|
|
17292
|
+
interface InvocationsInvocationTag {
|
|
17293
|
+
/**
|
|
17294
|
+
* The Key of Tags.
|
|
17295
|
+
*/
|
|
17296
|
+
key: string;
|
|
17297
|
+
/**
|
|
17298
|
+
* The Value of Tags.
|
|
17299
|
+
*/
|
|
17300
|
+
value: string;
|
|
17301
|
+
}
|
|
17302
|
+
interface InvocationsTag {
|
|
17303
|
+
/**
|
|
17304
|
+
* The Key of Tags.
|
|
17305
|
+
*/
|
|
17306
|
+
key: string;
|
|
17307
|
+
/**
|
|
17308
|
+
* The Value of Tags.
|
|
17309
|
+
*/
|
|
17310
|
+
value: string;
|
|
17311
|
+
}
|
|
16966
17312
|
interface KeyPairsKeyPair {
|
|
16967
17313
|
/**
|
|
16968
17314
|
* The creation time of key pair.
|
|
@@ -20460,6 +20806,44 @@ export declare namespace iam {
|
|
|
20460
20806
|
*/
|
|
20461
20807
|
userName: string;
|
|
20462
20808
|
}
|
|
20809
|
+
interface GetOidcProvidersOidcProvider {
|
|
20810
|
+
/**
|
|
20811
|
+
* The client IDs of the OIDC provider.
|
|
20812
|
+
*/
|
|
20813
|
+
clientIds: string[];
|
|
20814
|
+
/**
|
|
20815
|
+
* The create date of the OIDC provider.
|
|
20816
|
+
*/
|
|
20817
|
+
createDate: string;
|
|
20818
|
+
/**
|
|
20819
|
+
* The description of the OIDC provider.
|
|
20820
|
+
*/
|
|
20821
|
+
description: string;
|
|
20822
|
+
/**
|
|
20823
|
+
* The issuance limit time of the OIDC provider.
|
|
20824
|
+
*/
|
|
20825
|
+
issuanceLimitTime: number;
|
|
20826
|
+
/**
|
|
20827
|
+
* The URL of the OIDC provider.
|
|
20828
|
+
*/
|
|
20829
|
+
issuerUrl: string;
|
|
20830
|
+
/**
|
|
20831
|
+
* The name of the OIDC provider.
|
|
20832
|
+
*/
|
|
20833
|
+
providerName: string;
|
|
20834
|
+
/**
|
|
20835
|
+
* The thumbprints of the OIDC provider.
|
|
20836
|
+
*/
|
|
20837
|
+
thumbprints: string[];
|
|
20838
|
+
/**
|
|
20839
|
+
* The trn of OIDC provider.
|
|
20840
|
+
*/
|
|
20841
|
+
trn: string;
|
|
20842
|
+
/**
|
|
20843
|
+
* The update date of the OIDC provider.
|
|
20844
|
+
*/
|
|
20845
|
+
updateDate: string;
|
|
20846
|
+
}
|
|
20463
20847
|
interface GetPoliciesPolicy {
|
|
20464
20848
|
/**
|
|
20465
20849
|
* The create time of the Policy.
|
|
@@ -20668,6 +21052,44 @@ export declare namespace iam {
|
|
|
20668
21052
|
*/
|
|
20669
21053
|
userName: string;
|
|
20670
21054
|
}
|
|
21055
|
+
interface OidcProvidersOidcProvider {
|
|
21056
|
+
/**
|
|
21057
|
+
* The client IDs of the OIDC provider.
|
|
21058
|
+
*/
|
|
21059
|
+
clientIds: string[];
|
|
21060
|
+
/**
|
|
21061
|
+
* The create date of the OIDC provider.
|
|
21062
|
+
*/
|
|
21063
|
+
createDate: string;
|
|
21064
|
+
/**
|
|
21065
|
+
* The description of the OIDC provider.
|
|
21066
|
+
*/
|
|
21067
|
+
description: string;
|
|
21068
|
+
/**
|
|
21069
|
+
* The issuance limit time of the OIDC provider.
|
|
21070
|
+
*/
|
|
21071
|
+
issuanceLimitTime: number;
|
|
21072
|
+
/**
|
|
21073
|
+
* The URL of the OIDC provider.
|
|
21074
|
+
*/
|
|
21075
|
+
issuerUrl: string;
|
|
21076
|
+
/**
|
|
21077
|
+
* The name of the OIDC provider.
|
|
21078
|
+
*/
|
|
21079
|
+
providerName: string;
|
|
21080
|
+
/**
|
|
21081
|
+
* The thumbprints of the OIDC provider.
|
|
21082
|
+
*/
|
|
21083
|
+
thumbprints: string[];
|
|
21084
|
+
/**
|
|
21085
|
+
* The trn of OIDC provider.
|
|
21086
|
+
*/
|
|
21087
|
+
trn: string;
|
|
21088
|
+
/**
|
|
21089
|
+
* The update date of the OIDC provider.
|
|
21090
|
+
*/
|
|
21091
|
+
updateDate: string;
|
|
21092
|
+
}
|
|
20671
21093
|
interface PoliciesPolicy {
|
|
20672
21094
|
/**
|
|
20673
21095
|
* The create time of the Policy.
|
|
@@ -41546,6 +41968,52 @@ export declare namespace tos {
|
|
|
41546
41968
|
*/
|
|
41547
41969
|
permission: string;
|
|
41548
41970
|
}
|
|
41971
|
+
interface BucketCorsCorsRule {
|
|
41972
|
+
/**
|
|
41973
|
+
* The list of headers that are allowed in a preflight request.
|
|
41974
|
+
*/
|
|
41975
|
+
allowedHeaders?: string[];
|
|
41976
|
+
/**
|
|
41977
|
+
* The list of HTTP methods that are allowed in a preflight request. Valid values: `PUT`, `POST`, `DELETE`, `GET`, `HEAD`.
|
|
41978
|
+
*/
|
|
41979
|
+
allowedMethods: string[];
|
|
41980
|
+
/**
|
|
41981
|
+
* The list of origins that are allowed to make requests to the bucket.
|
|
41982
|
+
*/
|
|
41983
|
+
allowedOrigins: string[];
|
|
41984
|
+
/**
|
|
41985
|
+
* 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.
|
|
41986
|
+
*/
|
|
41987
|
+
exposeHeaders?: string[];
|
|
41988
|
+
/**
|
|
41989
|
+
* The maximum amount of time that a preflight request can be cached. Unit: second. Default value: 3600.
|
|
41990
|
+
*/
|
|
41991
|
+
maxAgeSeconds: number;
|
|
41992
|
+
/**
|
|
41993
|
+
* Indicates whether the bucket returns the 'Vary: Origin' header in the response to preflight requests. Default value: false.
|
|
41994
|
+
*/
|
|
41995
|
+
responseVary: boolean;
|
|
41996
|
+
}
|
|
41997
|
+
interface BucketEncryptionRule {
|
|
41998
|
+
/**
|
|
41999
|
+
* The server side encryption configuration.
|
|
42000
|
+
*/
|
|
42001
|
+
applyServerSideEncryptionByDefault: outputs.tos.BucketEncryptionRuleApplyServerSideEncryptionByDefault;
|
|
42002
|
+
}
|
|
42003
|
+
interface BucketEncryptionRuleApplyServerSideEncryptionByDefault {
|
|
42004
|
+
/**
|
|
42005
|
+
* The kms data encryption. Valid values: `AES256`, `SM4`. Default is `AES256`.
|
|
42006
|
+
*/
|
|
42007
|
+
kmsDataEncryption: string;
|
|
42008
|
+
/**
|
|
42009
|
+
* The kms master key id. This field is required when `sseAlgorithm` is `kms`. The format is `trn:kms:<region>:<accountID>:keyrings/<keyring>/keys/<key>`.
|
|
42010
|
+
*/
|
|
42011
|
+
kmsMasterKeyId: string;
|
|
42012
|
+
/**
|
|
42013
|
+
* The server side encryption algorithm. Valid values: `kms`, `AES256`, `SM4`.
|
|
42014
|
+
*/
|
|
42015
|
+
sseAlgorithm: string;
|
|
42016
|
+
}
|
|
41549
42017
|
interface BucketInventoriesInventoryConfiguration {
|
|
41550
42018
|
/**
|
|
41551
42019
|
* The name the TOS bucket.
|
|
@@ -41672,6 +42140,58 @@ export declare namespace tos {
|
|
|
41672
42140
|
*/
|
|
41673
42141
|
frequency: string;
|
|
41674
42142
|
}
|
|
42143
|
+
interface BucketNotificationRules {
|
|
42144
|
+
/**
|
|
42145
|
+
* The destination info of the notification.
|
|
42146
|
+
*/
|
|
42147
|
+
destination: outputs.tos.BucketNotificationRulesDestination;
|
|
42148
|
+
/**
|
|
42149
|
+
* The event type of the notification.
|
|
42150
|
+
*/
|
|
42151
|
+
events: string[];
|
|
42152
|
+
/**
|
|
42153
|
+
* The filter of the notification.
|
|
42154
|
+
*/
|
|
42155
|
+
filter?: outputs.tos.BucketNotificationRulesFilter;
|
|
42156
|
+
/**
|
|
42157
|
+
* The rule name of the notification.
|
|
42158
|
+
*/
|
|
42159
|
+
ruleId: string;
|
|
42160
|
+
}
|
|
42161
|
+
interface BucketNotificationRulesDestination {
|
|
42162
|
+
/**
|
|
42163
|
+
* The VeFaas info of the destination.
|
|
42164
|
+
*/
|
|
42165
|
+
veFaas?: outputs.tos.BucketNotificationRulesDestinationVeFaa[];
|
|
42166
|
+
}
|
|
42167
|
+
interface BucketNotificationRulesDestinationVeFaa {
|
|
42168
|
+
/**
|
|
42169
|
+
* The function id of the destination.
|
|
42170
|
+
*/
|
|
42171
|
+
functionId: string;
|
|
42172
|
+
}
|
|
42173
|
+
interface BucketNotificationRulesFilter {
|
|
42174
|
+
/**
|
|
42175
|
+
* The tos filter of the notification.
|
|
42176
|
+
*/
|
|
42177
|
+
tosKey?: outputs.tos.BucketNotificationRulesFilterTosKey;
|
|
42178
|
+
}
|
|
42179
|
+
interface BucketNotificationRulesFilterTosKey {
|
|
42180
|
+
/**
|
|
42181
|
+
* The filter rules of the notification.
|
|
42182
|
+
*/
|
|
42183
|
+
filterRules?: outputs.tos.BucketNotificationRulesFilterTosKeyFilterRule[];
|
|
42184
|
+
}
|
|
42185
|
+
interface BucketNotificationRulesFilterTosKeyFilterRule {
|
|
42186
|
+
/**
|
|
42187
|
+
* The name of the filter rule. Valid values: `prefix`, `suffix`.
|
|
42188
|
+
*/
|
|
42189
|
+
name?: string;
|
|
42190
|
+
/**
|
|
42191
|
+
* The value of the filter rule.
|
|
42192
|
+
*/
|
|
42193
|
+
value?: string;
|
|
42194
|
+
}
|
|
41675
42195
|
interface BucketObjectAccountAcl {
|
|
41676
42196
|
/**
|
|
41677
42197
|
* The accountId to control.
|
|
@@ -50921,6 +51441,10 @@ export declare namespace vke {
|
|
|
50921
51441
|
* The NamePrefix of NodeConfig.
|
|
50922
51442
|
*/
|
|
50923
51443
|
namePrefix: string;
|
|
51444
|
+
/**
|
|
51445
|
+
* The PreScript of NodeConfig.
|
|
51446
|
+
*/
|
|
51447
|
+
preScript: string;
|
|
50924
51448
|
/**
|
|
50925
51449
|
* The Security of NodeConfig.
|
|
50926
51450
|
*/
|
|
@@ -51055,6 +51579,10 @@ export declare namespace vke {
|
|
|
51055
51579
|
* The NamePrefix of NodeConfig.
|
|
51056
51580
|
*/
|
|
51057
51581
|
namePrefix?: string;
|
|
51582
|
+
/**
|
|
51583
|
+
* The PreScript of NodeConfig.
|
|
51584
|
+
*/
|
|
51585
|
+
preScript?: string;
|
|
51058
51586
|
/**
|
|
51059
51587
|
* The Security of NodeConfig.
|
|
51060
51588
|
*/
|
|
@@ -51643,6 +52171,10 @@ export declare namespace vke {
|
|
|
51643
52171
|
* The Phase of Status.
|
|
51644
52172
|
*/
|
|
51645
52173
|
phase: string;
|
|
52174
|
+
/**
|
|
52175
|
+
* The PreScript of NodeConfig.
|
|
52176
|
+
*/
|
|
52177
|
+
preScript: string;
|
|
51646
52178
|
/**
|
|
51647
52179
|
* The Priority of AutoScaling.
|
|
51648
52180
|
*/
|
|
@@ -51913,6 +52445,10 @@ export declare namespace vke {
|
|
|
51913
52445
|
* The Phase of Node.
|
|
51914
52446
|
*/
|
|
51915
52447
|
phase: string;
|
|
52448
|
+
/**
|
|
52449
|
+
* The PreScript of NodeConfig.
|
|
52450
|
+
*/
|
|
52451
|
+
preScript: string;
|
|
51916
52452
|
/**
|
|
51917
52453
|
* The roles of node.
|
|
51918
52454
|
*/
|
|
@@ -52315,6 +52851,10 @@ export declare namespace vke {
|
|
|
52315
52851
|
* 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
52852
|
*/
|
|
52317
52853
|
period: number;
|
|
52854
|
+
/**
|
|
52855
|
+
* The PreScript of NodeConfig.
|
|
52856
|
+
*/
|
|
52857
|
+
preScript?: string;
|
|
52318
52858
|
/**
|
|
52319
52859
|
* The project name of the ecs instance.
|
|
52320
52860
|
*/
|
|
@@ -52569,6 +53109,10 @@ export declare namespace vke {
|
|
|
52569
53109
|
* The Phase of Status.
|
|
52570
53110
|
*/
|
|
52571
53111
|
phase: string;
|
|
53112
|
+
/**
|
|
53113
|
+
* The PreScript of NodeConfig.
|
|
53114
|
+
*/
|
|
53115
|
+
preScript: string;
|
|
52572
53116
|
/**
|
|
52573
53117
|
* The Priority of AutoScaling.
|
|
52574
53118
|
*/
|
|
@@ -52839,6 +53383,10 @@ export declare namespace vke {
|
|
|
52839
53383
|
* The Phase of Node.
|
|
52840
53384
|
*/
|
|
52841
53385
|
phase: string;
|
|
53386
|
+
/**
|
|
53387
|
+
* The PreScript of NodeConfig.
|
|
53388
|
+
*/
|
|
53389
|
+
preScript: string;
|
|
52842
53390
|
/**
|
|
52843
53391
|
* The roles of node.
|
|
52844
53392
|
*/
|