@alicloud/cs20151215 4.8.9 → 4.8.10
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/dist/client.d.ts +162 -34
- package/dist/client.js +807 -136
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +967 -166
package/src/client.ts
CHANGED
|
@@ -1142,117 +1142,190 @@ export class CheckServiceRoleResponseBodyRoles extends $dara.Model {
|
|
|
1142
1142
|
|
|
1143
1143
|
export class CreateClusterRequestControlPlaneConfig extends $dara.Model {
|
|
1144
1144
|
/**
|
|
1145
|
+
* @remarks
|
|
1146
|
+
* Indicates whether auto-renewal is enabled for the control plane node.
|
|
1147
|
+
*
|
|
1145
1148
|
* @example
|
|
1146
1149
|
* true
|
|
1147
1150
|
*/
|
|
1148
1151
|
autoRenew?: boolean;
|
|
1149
1152
|
/**
|
|
1153
|
+
* @remarks
|
|
1154
|
+
* The auto-renewal duration for the control plane node.
|
|
1155
|
+
*
|
|
1150
1156
|
* @example
|
|
1151
1157
|
* 1
|
|
1152
1158
|
*/
|
|
1153
1159
|
autoRenewPeriod?: number;
|
|
1154
1160
|
/**
|
|
1161
|
+
* @remarks
|
|
1162
|
+
* The billing method of the control plane node.
|
|
1163
|
+
*
|
|
1155
1164
|
* @example
|
|
1156
1165
|
* PrePaid
|
|
1157
1166
|
*/
|
|
1158
1167
|
chargeType?: string;
|
|
1159
1168
|
/**
|
|
1169
|
+
* @remarks
|
|
1170
|
+
* Indicates whether to install CloudMonitor for the node.
|
|
1171
|
+
*
|
|
1160
1172
|
* @example
|
|
1161
1173
|
* true
|
|
1162
1174
|
*/
|
|
1163
1175
|
cloudMonitorFlags?: boolean;
|
|
1164
1176
|
/**
|
|
1177
|
+
* @remarks
|
|
1178
|
+
* The CPU management policy of nodes in the node pool.
|
|
1179
|
+
*
|
|
1165
1180
|
* @example
|
|
1166
1181
|
* none
|
|
1167
1182
|
*/
|
|
1168
1183
|
cpuPolicy?: string;
|
|
1169
1184
|
/**
|
|
1185
|
+
* @remarks
|
|
1186
|
+
* The ID of the deployment set.
|
|
1187
|
+
*
|
|
1170
1188
|
* @example
|
|
1171
1189
|
* ds-bp10b35imuam5amw****
|
|
1172
1190
|
*/
|
|
1173
1191
|
deploymentsetId?: string;
|
|
1174
1192
|
/**
|
|
1193
|
+
* @remarks
|
|
1194
|
+
* The ID of the image.
|
|
1195
|
+
*
|
|
1175
1196
|
* @example
|
|
1176
1197
|
* aliyun_3_x64_20G_alibase_20240819.vhd
|
|
1177
1198
|
*/
|
|
1178
1199
|
imageId?: string;
|
|
1179
1200
|
/**
|
|
1201
|
+
* @remarks
|
|
1202
|
+
* The type of the OS image.
|
|
1203
|
+
*
|
|
1180
1204
|
* @example
|
|
1181
1205
|
* AliyunLinux3
|
|
1182
1206
|
*/
|
|
1183
1207
|
imageType?: string;
|
|
1208
|
+
/**
|
|
1209
|
+
* @remarks
|
|
1210
|
+
* The instance type of the node.
|
|
1211
|
+
*/
|
|
1184
1212
|
instanceTypes?: string[];
|
|
1185
1213
|
/**
|
|
1214
|
+
* @remarks
|
|
1215
|
+
* The name of the key pair. You must set key_pair or login_password.
|
|
1216
|
+
*
|
|
1186
1217
|
* @example
|
|
1187
1218
|
* ack
|
|
1188
1219
|
*/
|
|
1189
1220
|
keyPair?: string;
|
|
1190
1221
|
/**
|
|
1222
|
+
* @remarks
|
|
1223
|
+
* The SSH logon password. The password must be 8 to 30 characters in length and contain a minimum of three of the following character types: uppercase letters, lowercase letters, digits, and special characters. You must set login_password or key_pair.
|
|
1224
|
+
*
|
|
1191
1225
|
* @example
|
|
1192
1226
|
* ack@Test
|
|
1193
1227
|
*/
|
|
1194
1228
|
loginPassword?: string;
|
|
1195
1229
|
/**
|
|
1230
|
+
* @remarks
|
|
1231
|
+
* The node port range.
|
|
1232
|
+
*
|
|
1196
1233
|
* @example
|
|
1197
1234
|
* 30000-32767
|
|
1198
1235
|
*/
|
|
1199
1236
|
nodePortRange?: string;
|
|
1200
1237
|
/**
|
|
1238
|
+
* @remarks
|
|
1239
|
+
* The subscription duration of the control plane node.
|
|
1240
|
+
*
|
|
1201
1241
|
* @example
|
|
1202
1242
|
* 1
|
|
1203
1243
|
*/
|
|
1204
1244
|
period?: number;
|
|
1205
1245
|
/**
|
|
1246
|
+
* @remarks
|
|
1247
|
+
* The unit of the subscription duration of the control plane node.
|
|
1248
|
+
*
|
|
1206
1249
|
* @example
|
|
1207
1250
|
* Month
|
|
1208
1251
|
*/
|
|
1209
1252
|
periodUnit?: string;
|
|
1210
1253
|
/**
|
|
1254
|
+
* @remarks
|
|
1255
|
+
* The runtime.
|
|
1256
|
+
*
|
|
1211
1257
|
* @example
|
|
1212
1258
|
* containerd
|
|
1213
1259
|
*/
|
|
1214
1260
|
runtime?: string;
|
|
1215
1261
|
/**
|
|
1262
|
+
* @remarks
|
|
1263
|
+
* Indicates whether to enable Alibaba Cloud Linux Security Hardening.
|
|
1264
|
+
*
|
|
1216
1265
|
* @example
|
|
1217
1266
|
* true
|
|
1218
1267
|
*/
|
|
1219
1268
|
securityHardeningOs?: boolean;
|
|
1220
1269
|
/**
|
|
1270
|
+
* @remarks
|
|
1271
|
+
* The number of control plane nodes.
|
|
1272
|
+
*
|
|
1221
1273
|
* @example
|
|
1222
1274
|
* 3
|
|
1223
1275
|
*/
|
|
1224
1276
|
size?: number;
|
|
1225
1277
|
/**
|
|
1278
|
+
* @remarks
|
|
1279
|
+
* Indicates whether to enable MLPS security hardening.
|
|
1280
|
+
*
|
|
1226
1281
|
* @example
|
|
1227
1282
|
* true
|
|
1228
1283
|
*/
|
|
1229
1284
|
socEnabled?: boolean;
|
|
1230
1285
|
/**
|
|
1286
|
+
* @remarks
|
|
1287
|
+
* Indicates whether to enable the burst feature for the system disk.
|
|
1288
|
+
*
|
|
1231
1289
|
* @example
|
|
1232
1290
|
* true
|
|
1233
1291
|
*/
|
|
1234
1292
|
systemDiskBurstingEnabled?: boolean;
|
|
1235
1293
|
/**
|
|
1294
|
+
* @remarks
|
|
1295
|
+
* The category of the system disk for nodes.
|
|
1296
|
+
*
|
|
1236
1297
|
* @example
|
|
1237
1298
|
* cloud_essd
|
|
1238
1299
|
*/
|
|
1239
1300
|
systemDiskCategory?: string;
|
|
1240
1301
|
/**
|
|
1302
|
+
* @remarks
|
|
1303
|
+
* The performance level (PL) of the system disk that you want to use for the node. This parameter takes effect only for ESSDs.
|
|
1304
|
+
*
|
|
1241
1305
|
* @example
|
|
1242
1306
|
* PL1
|
|
1243
1307
|
*/
|
|
1244
1308
|
systemDiskPerformanceLevel?: string;
|
|
1245
1309
|
/**
|
|
1310
|
+
* @remarks
|
|
1311
|
+
* The preset read/write IOPS of the system disk.
|
|
1312
|
+
*
|
|
1246
1313
|
* @example
|
|
1247
1314
|
* 1000
|
|
1248
1315
|
*/
|
|
1249
1316
|
systemDiskProvisionedIops?: number;
|
|
1250
1317
|
/**
|
|
1318
|
+
* @remarks
|
|
1319
|
+
* The system disk size of the node. The value must be at least 40 GB.
|
|
1320
|
+
*
|
|
1251
1321
|
* @example
|
|
1252
1322
|
* 120
|
|
1253
1323
|
*/
|
|
1254
1324
|
systemDiskSize?: number;
|
|
1255
1325
|
/**
|
|
1326
|
+
* @remarks
|
|
1327
|
+
* The automatic snapshot policy of the node.
|
|
1328
|
+
*
|
|
1256
1329
|
* @example
|
|
1257
1330
|
* sp-2zej1nogjvovnz4z****
|
|
1258
1331
|
*/
|
|
@@ -9767,6 +9840,12 @@ export class DescribeKubernetesVersionMetadataResponseBody extends $dara.Model {
|
|
|
9767
9840
|
/**
|
|
9768
9841
|
* @remarks
|
|
9769
9842
|
* Features of the queried Kubernetes version.
|
|
9843
|
+
*
|
|
9844
|
+
* @example
|
|
9845
|
+
* {
|
|
9846
|
+
* "AnyAZ": true,
|
|
9847
|
+
* "ChargeType": "PostPaid"
|
|
9848
|
+
* }
|
|
9770
9849
|
*/
|
|
9771
9850
|
capabilities?: { [key: string]: any };
|
|
9772
9851
|
/**
|
|
@@ -9777,11 +9856,18 @@ export class DescribeKubernetesVersionMetadataResponseBody extends $dara.Model {
|
|
|
9777
9856
|
/**
|
|
9778
9857
|
* @remarks
|
|
9779
9858
|
* The metadata of the Kubernetes version.
|
|
9859
|
+
*
|
|
9860
|
+
* @example
|
|
9861
|
+
* {
|
|
9862
|
+
* "KubernetesVersion": "1.31.1-aliyun.1",
|
|
9863
|
+
* "SubClass": "default",
|
|
9864
|
+
* "ServiceCIDR": ""
|
|
9865
|
+
* }
|
|
9780
9866
|
*/
|
|
9781
9867
|
metaData?: { [key: string]: any };
|
|
9782
9868
|
/**
|
|
9783
9869
|
* @remarks
|
|
9784
|
-
*
|
|
9870
|
+
* The container runtime configurations.
|
|
9785
9871
|
*/
|
|
9786
9872
|
runtimes?: Runtime[];
|
|
9787
9873
|
/**
|
|
@@ -14708,7 +14794,18 @@ export class ModifyNodePoolNodeConfigRequestRollingPolicy extends $dara.Model {
|
|
|
14708
14794
|
}
|
|
14709
14795
|
|
|
14710
14796
|
export class RepairClusterNodePoolRequestOperations extends $dara.Model {
|
|
14797
|
+
/**
|
|
14798
|
+
* @remarks
|
|
14799
|
+
* List of repair operation parameters.
|
|
14800
|
+
*/
|
|
14711
14801
|
args?: string[];
|
|
14802
|
+
/**
|
|
14803
|
+
* @remarks
|
|
14804
|
+
* Repair operation ID.
|
|
14805
|
+
*
|
|
14806
|
+
* @example
|
|
14807
|
+
* remove.containerdContainer
|
|
14808
|
+
*/
|
|
14712
14809
|
operationId?: string;
|
|
14713
14810
|
static names(): { [key: string]: string } {
|
|
14714
14811
|
return {
|
|
@@ -14887,7 +14984,10 @@ export class ScaleOutClusterRequestWorkerDataDisks extends $dara.Model {
|
|
|
14887
14984
|
export class UnInstallClusterAddonsRequestAddons extends $dara.Model {
|
|
14888
14985
|
/**
|
|
14889
14986
|
* @remarks
|
|
14890
|
-
* Specifies whether to
|
|
14987
|
+
* Specifies whether to clear cloud resources.
|
|
14988
|
+
*
|
|
14989
|
+
* * true: clears the data and cloud resources.
|
|
14990
|
+
* * false: retains the data and cloud resources.
|
|
14891
14991
|
*
|
|
14892
14992
|
* @example
|
|
14893
14993
|
* true
|
|
@@ -14895,7 +14995,7 @@ export class UnInstallClusterAddonsRequestAddons extends $dara.Model {
|
|
|
14895
14995
|
cleanupCloudResources?: boolean;
|
|
14896
14996
|
/**
|
|
14897
14997
|
* @remarks
|
|
14898
|
-
* The component
|
|
14998
|
+
* The name of the component.
|
|
14899
14999
|
*
|
|
14900
15000
|
* @example
|
|
14901
15001
|
* ack-node-problem-detector
|
|
@@ -15375,6 +15475,7 @@ export class InstancePatterns extends $dara.Model {
|
|
|
15375
15475
|
* EnterpriseLevel
|
|
15376
15476
|
*/
|
|
15377
15477
|
instanceFamilyLevel?: string;
|
|
15478
|
+
instanceTypeFamilies?: string[];
|
|
15378
15479
|
/**
|
|
15379
15480
|
* @example
|
|
15380
15481
|
* 8
|
|
@@ -15392,6 +15493,7 @@ export class InstancePatterns extends $dara.Model {
|
|
|
15392
15493
|
* @deprecated
|
|
15393
15494
|
*/
|
|
15394
15495
|
maxPrice?: number;
|
|
15496
|
+
maximumGpuAmount?: number;
|
|
15395
15497
|
/**
|
|
15396
15498
|
* @example
|
|
15397
15499
|
* 8
|
|
@@ -15407,6 +15509,9 @@ export class InstancePatterns extends $dara.Model {
|
|
|
15407
15509
|
* 8
|
|
15408
15510
|
*/
|
|
15409
15511
|
minMemorySize?: number;
|
|
15512
|
+
minimumEniIpv6AddressQuantity?: number;
|
|
15513
|
+
minimumEniPrivateIpAddressQuantity?: number;
|
|
15514
|
+
minimumEniQuantity?: number;
|
|
15410
15515
|
static names(): { [key: string]: string } {
|
|
15411
15516
|
return {
|
|
15412
15517
|
architectures: 'architectures',
|
|
@@ -15417,12 +15522,17 @@ export class InstancePatterns extends $dara.Model {
|
|
|
15417
15522
|
excludedInstanceTypes: 'excluded_instance_types',
|
|
15418
15523
|
instanceCategories: 'instance_categories',
|
|
15419
15524
|
instanceFamilyLevel: 'instance_family_level',
|
|
15525
|
+
instanceTypeFamilies: 'instance_type_families',
|
|
15420
15526
|
maxCpuCores: 'max_cpu_cores',
|
|
15421
15527
|
maxMemorySize: 'max_memory_size',
|
|
15422
15528
|
maxPrice: 'max_price',
|
|
15529
|
+
maximumGpuAmount: 'maximum_gpu_amount',
|
|
15423
15530
|
memory: 'memory',
|
|
15424
15531
|
minCpuCores: 'min_cpu_cores',
|
|
15425
15532
|
minMemorySize: 'min_memory_size',
|
|
15533
|
+
minimumEniIpv6AddressQuantity: 'minimum_eni_ipv6_address_quantity',
|
|
15534
|
+
minimumEniPrivateIpAddressQuantity: 'minimum_eni_private_ip_address_quantity',
|
|
15535
|
+
minimumEniQuantity: 'minimum_eni_quantity',
|
|
15426
15536
|
};
|
|
15427
15537
|
}
|
|
15428
15538
|
|
|
@@ -15436,12 +15546,17 @@ export class InstancePatterns extends $dara.Model {
|
|
|
15436
15546
|
excludedInstanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
15437
15547
|
instanceCategories: { 'type': 'array', 'itemType': 'string' },
|
|
15438
15548
|
instanceFamilyLevel: 'string',
|
|
15549
|
+
instanceTypeFamilies: { 'type': 'array', 'itemType': 'string' },
|
|
15439
15550
|
maxCpuCores: 'number',
|
|
15440
15551
|
maxMemorySize: 'number',
|
|
15441
15552
|
maxPrice: 'number',
|
|
15553
|
+
maximumGpuAmount: 'number',
|
|
15442
15554
|
memory: 'number',
|
|
15443
15555
|
minCpuCores: 'number',
|
|
15444
15556
|
minMemorySize: 'number',
|
|
15557
|
+
minimumEniIpv6AddressQuantity: 'number',
|
|
15558
|
+
minimumEniPrivateIpAddressQuantity: 'number',
|
|
15559
|
+
minimumEniQuantity: 'number',
|
|
15445
15560
|
};
|
|
15446
15561
|
}
|
|
15447
15562
|
|
|
@@ -15458,6 +15573,9 @@ export class InstancePatterns extends $dara.Model {
|
|
|
15458
15573
|
if(Array.isArray(this.instanceCategories)) {
|
|
15459
15574
|
$dara.Model.validateArray(this.instanceCategories);
|
|
15460
15575
|
}
|
|
15576
|
+
if(Array.isArray(this.instanceTypeFamilies)) {
|
|
15577
|
+
$dara.Model.validateArray(this.instanceTypeFamilies);
|
|
15578
|
+
}
|
|
15461
15579
|
super.validate();
|
|
15462
15580
|
}
|
|
15463
15581
|
|
|
@@ -17144,6 +17262,10 @@ export class CreateAutoscalingConfigRequest extends $dara.Model {
|
|
|
17144
17262
|
* 0
|
|
17145
17263
|
*/
|
|
17146
17264
|
minReplicaCount?: number;
|
|
17265
|
+
/**
|
|
17266
|
+
* @remarks
|
|
17267
|
+
* Auto-scaling priority configuration. After creating a node pool with elasticity enabled, you can choose whether to configure a priority strategy and priority settings through [Enabling Node Auto-scaling](https://help.aliyun.com/document_detail/119099.html). This allows you to set priorities for the specified auto-scaling node pool scaling group. The priority value range is [1, 100] and must be a positive integer.
|
|
17268
|
+
*/
|
|
17147
17269
|
priorities?: { [key: string]: string[] };
|
|
17148
17270
|
/**
|
|
17149
17271
|
* @remarks
|
|
@@ -17179,8 +17301,14 @@ export class CreateAutoscalingConfigRequest extends $dara.Model {
|
|
|
17179
17301
|
*/
|
|
17180
17302
|
scaleUpFromZero?: boolean;
|
|
17181
17303
|
/**
|
|
17304
|
+
* @remarks
|
|
17305
|
+
* Elastic component type, default is goatscaler for cluster version 1.24 and above, and cluster-autoscaler below that. Values:
|
|
17306
|
+
*
|
|
17307
|
+
* - `goatscaler`: Instant elasticity.
|
|
17308
|
+
* - `cluster-autoscaler`: Auto-scaling.
|
|
17309
|
+
*
|
|
17182
17310
|
* @example
|
|
17183
|
-
*
|
|
17311
|
+
* goatscaler
|
|
17184
17312
|
*/
|
|
17185
17313
|
scalerType?: string;
|
|
17186
17314
|
/**
|
|
@@ -17418,6 +17546,8 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17418
17546
|
apiAudiences?: string;
|
|
17419
17547
|
/**
|
|
17420
17548
|
* @remarks
|
|
17549
|
+
* **This parameter is deprecated.**
|
|
17550
|
+
*
|
|
17421
17551
|
* Specifies whether to enable auto-renewal. This parameter takes effect only when `charge_type` is set to `PrePaid`. Valid values:
|
|
17422
17552
|
*
|
|
17423
17553
|
* * `true`: enables auto-renewal.
|
|
@@ -17435,9 +17565,11 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17435
17565
|
autoRenew?: boolean;
|
|
17436
17566
|
/**
|
|
17437
17567
|
* @remarks
|
|
17568
|
+
* **This parameter is deprecated.**
|
|
17569
|
+
*
|
|
17438
17570
|
* The auto-renewal duration. This parameter takes effect only if charge_type is set to PrePaid and auto_renew is set to true. If you set `period_unit` to Month, the valid values of auto_renew_period are 1, 2, 3, 6, and 12.
|
|
17439
17571
|
*
|
|
17440
|
-
* Default value: 1
|
|
17572
|
+
* Default value: 1.
|
|
17441
17573
|
*
|
|
17442
17574
|
* This parameter was changed on October 15, 2024. For more information, see [Announcement on changes to the parameter behavior of the CreateCluster operation](https://help.aliyun.com/document_detail/2849194.html).
|
|
17443
17575
|
*
|
|
@@ -17449,19 +17581,18 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17449
17581
|
autoRenewPeriod?: number;
|
|
17450
17582
|
/**
|
|
17451
17583
|
* @remarks
|
|
17452
|
-
* The billing method of the
|
|
17453
|
-
*
|
|
17454
|
-
* The internal-facing SLB instance used by the API server.
|
|
17584
|
+
* The billing method of the Classic Load Balancer (CLB) instance that is used by the API server. Default value: PostPaid. Valid values:
|
|
17455
17585
|
*
|
|
17456
|
-
*
|
|
17586
|
+
* * PostPaid: pay-as-you-go
|
|
17587
|
+
* * PrePaid: subscription. The newly created billing method for the CLB instance is not supported.
|
|
17457
17588
|
*
|
|
17458
|
-
*
|
|
17589
|
+
* >
|
|
17459
17590
|
*
|
|
17460
|
-
*
|
|
17591
|
+
* * This parameter was changed on October 15, 2024. For more information, see [Announcement on changes to the parameter behavior of the CreateCluster operation](https://help.aliyun.com/document_detail/2849194.html).
|
|
17461
17592
|
*
|
|
17462
|
-
*
|
|
17593
|
+
* * Starting from December 1, 2024, new CLB instances no longer support the subscription billing method and will be charged for the instances.
|
|
17463
17594
|
*
|
|
17464
|
-
*
|
|
17595
|
+
* For more information, see [CLB billing adjustments](https://help.aliyun.com/document_detail/2839797.html).
|
|
17465
17596
|
*
|
|
17466
17597
|
* @example
|
|
17467
17598
|
* 1
|
|
@@ -17539,6 +17670,10 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17539
17670
|
* 172.20.0.0/16
|
|
17540
17671
|
*/
|
|
17541
17672
|
containerCidr?: string;
|
|
17673
|
+
/**
|
|
17674
|
+
* @remarks
|
|
17675
|
+
* The control plane configurations of an ACK dedicated cluster.
|
|
17676
|
+
*/
|
|
17542
17677
|
controlPlaneConfig?: CreateClusterRequestControlPlaneConfig;
|
|
17543
17678
|
/**
|
|
17544
17679
|
* @remarks
|
|
@@ -17836,7 +17971,7 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17836
17971
|
*
|
|
17837
17972
|
* Valid values: 1, 2, 3, 6, and 12.
|
|
17838
17973
|
*
|
|
17839
|
-
* Default value: 1
|
|
17974
|
+
* Default value: 1.
|
|
17840
17975
|
*
|
|
17841
17976
|
* @example
|
|
17842
17977
|
* 1
|
|
@@ -17860,8 +17995,8 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17860
17995
|
* @remarks
|
|
17861
17996
|
* The billing method of master nodes. Valid values:
|
|
17862
17997
|
*
|
|
17863
|
-
* * `PrePaid`: subscription
|
|
17864
|
-
* * `PostPaid`: the pay-as-you-go
|
|
17998
|
+
* * `PrePaid`: subscription
|
|
17999
|
+
* * `PostPaid`: the pay-as-you-go
|
|
17865
18000
|
*
|
|
17866
18001
|
* Default value: `PostPaid`
|
|
17867
18002
|
*
|
|
@@ -17884,7 +18019,7 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17884
18019
|
*
|
|
17885
18020
|
* Valid values: 1, 2, 3, 6, 12, 24, 36, 48, and 60.
|
|
17886
18021
|
*
|
|
17887
|
-
* Default value: 1
|
|
18022
|
+
* Default value: 1.
|
|
17888
18023
|
*
|
|
17889
18024
|
* @example
|
|
17890
18025
|
* 1
|
|
@@ -17909,8 +18044,8 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
17909
18044
|
* The system disk type of master nodes. Valid values:
|
|
17910
18045
|
*
|
|
17911
18046
|
* * `cloud_efficiency`: ultra disk
|
|
17912
|
-
* * `cloud_ssd`: standard SSD
|
|
17913
|
-
* * `cloud_essd`: Enterprise SSD (ESSD)
|
|
18047
|
+
* * `cloud_ssd`: standard SSD
|
|
18048
|
+
* * `cloud_essd`: Enterprise SSD (ESSD)
|
|
17914
18049
|
*
|
|
17915
18050
|
* Default value: `cloud_ssd`. The default value may vary in different zones.
|
|
17916
18051
|
*
|
|
@@ -18055,11 +18190,13 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
18055
18190
|
osType?: string;
|
|
18056
18191
|
/**
|
|
18057
18192
|
* @remarks
|
|
18193
|
+
* **This parameter is deprecated.**
|
|
18194
|
+
*
|
|
18058
18195
|
* The subscription duration of the instance. This parameter takes effect and is required only when you set charge_type to PrePaid.
|
|
18059
18196
|
*
|
|
18060
18197
|
* Valid values: 1, 2, 3, 6, 12, 24, 36, 48, and 60.
|
|
18061
18198
|
*
|
|
18062
|
-
* Default value: 1
|
|
18199
|
+
* Default value: 1.
|
|
18063
18200
|
*
|
|
18064
18201
|
* This parameter was changed on October 15, 2024. For more information, see [Announcement on changes to the parameter behavior of the CreateCluster operation](https://help.aliyun.com/document_detail/2849194.html).
|
|
18065
18202
|
*
|
|
@@ -18071,6 +18208,8 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
18071
18208
|
period?: number;
|
|
18072
18209
|
/**
|
|
18073
18210
|
* @remarks
|
|
18211
|
+
* **This parameter is deprecated.**
|
|
18212
|
+
*
|
|
18074
18213
|
* The billing cycle. This parameter is required if charge_type is set to PrePaid.
|
|
18075
18214
|
*
|
|
18076
18215
|
* Valid value: Month, which indicates that resources are billed only on a monthly basis.
|
|
@@ -18277,7 +18416,7 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
18277
18416
|
tags?: Tag[];
|
|
18278
18417
|
/**
|
|
18279
18418
|
* @remarks
|
|
18280
|
-
* The
|
|
18419
|
+
* The taint. Taints can be used together with tolerations to avoid scheduling pods to specified nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
|
|
18281
18420
|
*
|
|
18282
18421
|
* @deprecated
|
|
18283
18422
|
*/
|
|
@@ -18369,8 +18508,8 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
18369
18508
|
* @remarks
|
|
18370
18509
|
* The billing method of worker nodes. Valid values:
|
|
18371
18510
|
*
|
|
18372
|
-
* * `PrePaid`: subscription
|
|
18373
|
-
* * `PostPaid`: the pay-as-you-go
|
|
18511
|
+
* * `PrePaid`: subscription
|
|
18512
|
+
* * `PostPaid`: the pay-as-you-go
|
|
18374
18513
|
*
|
|
18375
18514
|
* Default value: PostPaid.
|
|
18376
18515
|
*
|
|
@@ -18393,7 +18532,7 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
18393
18532
|
*
|
|
18394
18533
|
* Valid values: 1, 2, 3, 6, 12, 24, 36, 48, and 60.
|
|
18395
18534
|
*
|
|
18396
|
-
* Default value: 1
|
|
18535
|
+
* Default value: 1.
|
|
18397
18536
|
*
|
|
18398
18537
|
* @example
|
|
18399
18538
|
* 1
|
|
@@ -18419,10 +18558,10 @@ export class CreateClusterRequest extends $dara.Model {
|
|
|
18419
18558
|
*
|
|
18420
18559
|
* Valid values:
|
|
18421
18560
|
*
|
|
18422
|
-
* * `cloud_efficiency`: ultra disk
|
|
18423
|
-
* * `cloud_ssd`: standard SSD
|
|
18561
|
+
* * `cloud_efficiency`: ultra disk
|
|
18562
|
+
* * `cloud_ssd`: standard SSD
|
|
18424
18563
|
*
|
|
18425
|
-
* Default value: `cloud_ssd
|
|
18564
|
+
* Default value: `cloud_ssd`
|
|
18426
18565
|
*
|
|
18427
18566
|
* @example
|
|
18428
18567
|
* cloud_efficiency
|
|
@@ -26737,7 +26876,7 @@ export class GetClusterAuditProjectResponse extends $dara.Model {
|
|
|
26737
26876
|
export class GetClusterCheckResponseBody extends $dara.Model {
|
|
26738
26877
|
/**
|
|
26739
26878
|
* @remarks
|
|
26740
|
-
*
|
|
26879
|
+
* The ID of the cluster check task.
|
|
26741
26880
|
*
|
|
26742
26881
|
* @example
|
|
26743
26882
|
* 1697100584236600453-ce0da5a1d627e4e9e9f96cae8ad07****-clustercheck-lboto
|
|
@@ -30047,6 +30186,10 @@ export class RepairClusterNodePoolRequest extends $dara.Model {
|
|
|
30047
30186
|
* The list of nodes. If you do not specify nodes, all nodes in the node pool are selected.
|
|
30048
30187
|
*/
|
|
30049
30188
|
nodes?: string[];
|
|
30189
|
+
/**
|
|
30190
|
+
* @remarks
|
|
30191
|
+
* The repair operation to be performed. If not specified, all repair operations will be executed by default. Generally, there is no need to specify this in most scenarios.
|
|
30192
|
+
*/
|
|
30050
30193
|
operations?: RepairClusterNodePoolRequestOperations[];
|
|
30051
30194
|
static names(): { [key: string]: string } {
|
|
30052
30195
|
return {
|
|
@@ -30359,7 +30502,7 @@ export class RunClusterCheckResponseBody extends $dara.Model {
|
|
|
30359
30502
|
checkId?: string;
|
|
30360
30503
|
/**
|
|
30361
30504
|
* @remarks
|
|
30362
|
-
*
|
|
30505
|
+
* The ID of the request.
|
|
30363
30506
|
*
|
|
30364
30507
|
* @example
|
|
30365
30508
|
* F04DF81D-5C12-1524-B36A-86E02526****
|
|
@@ -31547,7 +31690,7 @@ export class TagResourcesResponse extends $dara.Model {
|
|
|
31547
31690
|
export class UnInstallClusterAddonsRequest extends $dara.Model {
|
|
31548
31691
|
/**
|
|
31549
31692
|
* @remarks
|
|
31550
|
-
* The components that you want to uninstall. The list is an array.
|
|
31693
|
+
* The list of components that you want to uninstall. The list is an array.
|
|
31551
31694
|
*/
|
|
31552
31695
|
addons?: UnInstallClusterAddonsRequestAddons[];
|
|
31553
31696
|
static names(): { [key: string]: string } {
|
|
@@ -33267,7 +33410,12 @@ export default class Client extends OpenApi {
|
|
|
33267
33410
|
reqBodyType: "json",
|
|
33268
33411
|
bodyType: "json",
|
|
33269
33412
|
});
|
|
33270
|
-
|
|
33413
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33414
|
+
return $dara.cast<AttachInstancesResponse>(await this.callApi(params, req, runtime), new AttachInstancesResponse({}));
|
|
33415
|
+
} else {
|
|
33416
|
+
return $dara.cast<AttachInstancesResponse>(await this.execute(params, req, runtime), new AttachInstancesResponse({}));
|
|
33417
|
+
}
|
|
33418
|
+
|
|
33271
33419
|
}
|
|
33272
33420
|
|
|
33273
33421
|
/**
|
|
@@ -33324,7 +33472,12 @@ export default class Client extends OpenApi {
|
|
|
33324
33472
|
reqBodyType: "json",
|
|
33325
33473
|
bodyType: "json",
|
|
33326
33474
|
});
|
|
33327
|
-
|
|
33475
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33476
|
+
return $dara.cast<AttachInstancesToNodePoolResponse>(await this.callApi(params, req, runtime), new AttachInstancesToNodePoolResponse({}));
|
|
33477
|
+
} else {
|
|
33478
|
+
return $dara.cast<AttachInstancesToNodePoolResponse>(await this.execute(params, req, runtime), new AttachInstancesToNodePoolResponse({}));
|
|
33479
|
+
}
|
|
33480
|
+
|
|
33328
33481
|
}
|
|
33329
33482
|
|
|
33330
33483
|
/**
|
|
@@ -33364,7 +33517,12 @@ export default class Client extends OpenApi {
|
|
|
33364
33517
|
reqBodyType: "json",
|
|
33365
33518
|
bodyType: "none",
|
|
33366
33519
|
});
|
|
33367
|
-
|
|
33520
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33521
|
+
return $dara.cast<CancelClusterUpgradeResponse>(await this.callApi(params, req, runtime), new CancelClusterUpgradeResponse({}));
|
|
33522
|
+
} else {
|
|
33523
|
+
return $dara.cast<CancelClusterUpgradeResponse>(await this.execute(params, req, runtime), new CancelClusterUpgradeResponse({}));
|
|
33524
|
+
}
|
|
33525
|
+
|
|
33368
33526
|
}
|
|
33369
33527
|
|
|
33370
33528
|
/**
|
|
@@ -33405,7 +33563,12 @@ export default class Client extends OpenApi {
|
|
|
33405
33563
|
reqBodyType: "json",
|
|
33406
33564
|
bodyType: "none",
|
|
33407
33565
|
});
|
|
33408
|
-
|
|
33566
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33567
|
+
return $dara.cast<CancelComponentUpgradeResponse>(await this.callApi(params, req, runtime), new CancelComponentUpgradeResponse({}));
|
|
33568
|
+
} else {
|
|
33569
|
+
return $dara.cast<CancelComponentUpgradeResponse>(await this.execute(params, req, runtime), new CancelComponentUpgradeResponse({}));
|
|
33570
|
+
}
|
|
33571
|
+
|
|
33409
33572
|
}
|
|
33410
33573
|
|
|
33411
33574
|
/**
|
|
@@ -33443,7 +33606,12 @@ export default class Client extends OpenApi {
|
|
|
33443
33606
|
reqBodyType: "json",
|
|
33444
33607
|
bodyType: "json",
|
|
33445
33608
|
});
|
|
33446
|
-
|
|
33609
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33610
|
+
return $dara.cast<CancelOperationPlanResponse>(await this.callApi(params, req, runtime), new CancelOperationPlanResponse({}));
|
|
33611
|
+
} else {
|
|
33612
|
+
return $dara.cast<CancelOperationPlanResponse>(await this.execute(params, req, runtime), new CancelOperationPlanResponse({}));
|
|
33613
|
+
}
|
|
33614
|
+
|
|
33447
33615
|
}
|
|
33448
33616
|
|
|
33449
33617
|
/**
|
|
@@ -33478,7 +33646,12 @@ export default class Client extends OpenApi {
|
|
|
33478
33646
|
reqBodyType: "json",
|
|
33479
33647
|
bodyType: "none",
|
|
33480
33648
|
});
|
|
33481
|
-
|
|
33649
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33650
|
+
return $dara.cast<CancelTaskResponse>(await this.callApi(params, req, runtime), new CancelTaskResponse({}));
|
|
33651
|
+
} else {
|
|
33652
|
+
return $dara.cast<CancelTaskResponse>(await this.execute(params, req, runtime), new CancelTaskResponse({}));
|
|
33653
|
+
}
|
|
33654
|
+
|
|
33482
33655
|
}
|
|
33483
33656
|
|
|
33484
33657
|
/**
|
|
@@ -33513,7 +33686,12 @@ export default class Client extends OpenApi {
|
|
|
33513
33686
|
reqBodyType: "json",
|
|
33514
33687
|
bodyType: "json",
|
|
33515
33688
|
});
|
|
33516
|
-
|
|
33689
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33690
|
+
return $dara.cast<CheckControlPlaneLogEnableResponse>(await this.callApi(params, req, runtime), new CheckControlPlaneLogEnableResponse({}));
|
|
33691
|
+
} else {
|
|
33692
|
+
return $dara.cast<CheckControlPlaneLogEnableResponse>(await this.execute(params, req, runtime), new CheckControlPlaneLogEnableResponse({}));
|
|
33693
|
+
}
|
|
33694
|
+
|
|
33517
33695
|
}
|
|
33518
33696
|
|
|
33519
33697
|
/**
|
|
@@ -33556,7 +33734,12 @@ export default class Client extends OpenApi {
|
|
|
33556
33734
|
reqBodyType: "json",
|
|
33557
33735
|
bodyType: "json",
|
|
33558
33736
|
});
|
|
33559
|
-
|
|
33737
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33738
|
+
return $dara.cast<CheckServiceRoleResponse>(await this.callApi(params, req, runtime), new CheckServiceRoleResponse({}));
|
|
33739
|
+
} else {
|
|
33740
|
+
return $dara.cast<CheckServiceRoleResponse>(await this.execute(params, req, runtime), new CheckServiceRoleResponse({}));
|
|
33741
|
+
}
|
|
33742
|
+
|
|
33560
33743
|
}
|
|
33561
33744
|
|
|
33562
33745
|
/**
|
|
@@ -33607,7 +33790,12 @@ export default class Client extends OpenApi {
|
|
|
33607
33790
|
reqBodyType: "json",
|
|
33608
33791
|
bodyType: "none",
|
|
33609
33792
|
});
|
|
33610
|
-
|
|
33793
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33794
|
+
return $dara.cast<CleanClusterUserPermissionsResponse>(await this.callApi(params, req, runtime), new CleanClusterUserPermissionsResponse({}));
|
|
33795
|
+
} else {
|
|
33796
|
+
return $dara.cast<CleanClusterUserPermissionsResponse>(await this.execute(params, req, runtime), new CleanClusterUserPermissionsResponse({}));
|
|
33797
|
+
}
|
|
33798
|
+
|
|
33611
33799
|
}
|
|
33612
33800
|
|
|
33613
33801
|
/**
|
|
@@ -33673,7 +33861,12 @@ export default class Client extends OpenApi {
|
|
|
33673
33861
|
reqBodyType: "json",
|
|
33674
33862
|
bodyType: "json",
|
|
33675
33863
|
});
|
|
33676
|
-
|
|
33864
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33865
|
+
return $dara.cast<CleanUserPermissionsResponse>(await this.callApi(params, req, runtime), new CleanUserPermissionsResponse({}));
|
|
33866
|
+
} else {
|
|
33867
|
+
return $dara.cast<CleanUserPermissionsResponse>(await this.execute(params, req, runtime), new CleanUserPermissionsResponse({}));
|
|
33868
|
+
}
|
|
33869
|
+
|
|
33677
33870
|
}
|
|
33678
33871
|
|
|
33679
33872
|
/**
|
|
@@ -33783,7 +33976,12 @@ export default class Client extends OpenApi {
|
|
|
33783
33976
|
reqBodyType: "json",
|
|
33784
33977
|
bodyType: "json",
|
|
33785
33978
|
});
|
|
33786
|
-
|
|
33979
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
33980
|
+
return $dara.cast<CreateAutoscalingConfigResponse>(await this.callApi(params, req, runtime), new CreateAutoscalingConfigResponse({}));
|
|
33981
|
+
} else {
|
|
33982
|
+
return $dara.cast<CreateAutoscalingConfigResponse>(await this.execute(params, req, runtime), new CreateAutoscalingConfigResponse({}));
|
|
33983
|
+
}
|
|
33984
|
+
|
|
33787
33985
|
}
|
|
33788
33986
|
|
|
33789
33987
|
/**
|
|
@@ -34225,7 +34423,12 @@ export default class Client extends OpenApi {
|
|
|
34225
34423
|
reqBodyType: "json",
|
|
34226
34424
|
bodyType: "json",
|
|
34227
34425
|
});
|
|
34228
|
-
|
|
34426
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34427
|
+
return $dara.cast<CreateClusterResponse>(await this.callApi(params, req, runtime), new CreateClusterResponse({}));
|
|
34428
|
+
} else {
|
|
34429
|
+
return $dara.cast<CreateClusterResponse>(await this.execute(params, req, runtime), new CreateClusterResponse({}));
|
|
34430
|
+
}
|
|
34431
|
+
|
|
34229
34432
|
}
|
|
34230
34433
|
|
|
34231
34434
|
/**
|
|
@@ -34283,7 +34486,12 @@ export default class Client extends OpenApi {
|
|
|
34283
34486
|
reqBodyType: "json",
|
|
34284
34487
|
bodyType: "json",
|
|
34285
34488
|
});
|
|
34286
|
-
|
|
34489
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34490
|
+
return $dara.cast<CreateClusterDiagnosisResponse>(await this.callApi(params, req, runtime), new CreateClusterDiagnosisResponse({}));
|
|
34491
|
+
} else {
|
|
34492
|
+
return $dara.cast<CreateClusterDiagnosisResponse>(await this.execute(params, req, runtime), new CreateClusterDiagnosisResponse({}));
|
|
34493
|
+
}
|
|
34494
|
+
|
|
34287
34495
|
}
|
|
34288
34496
|
|
|
34289
34497
|
/**
|
|
@@ -34376,7 +34584,12 @@ export default class Client extends OpenApi {
|
|
|
34376
34584
|
reqBodyType: "json",
|
|
34377
34585
|
bodyType: "json",
|
|
34378
34586
|
});
|
|
34379
|
-
|
|
34587
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34588
|
+
return $dara.cast<CreateClusterNodePoolResponse>(await this.callApi(params, req, runtime), new CreateClusterNodePoolResponse({}));
|
|
34589
|
+
} else {
|
|
34590
|
+
return $dara.cast<CreateClusterNodePoolResponse>(await this.execute(params, req, runtime), new CreateClusterNodePoolResponse({}));
|
|
34591
|
+
}
|
|
34592
|
+
|
|
34380
34593
|
}
|
|
34381
34594
|
|
|
34382
34595
|
/**
|
|
@@ -34429,7 +34642,12 @@ export default class Client extends OpenApi {
|
|
|
34429
34642
|
reqBodyType: "json",
|
|
34430
34643
|
bodyType: "json",
|
|
34431
34644
|
});
|
|
34432
|
-
|
|
34645
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34646
|
+
return $dara.cast<CreateEdgeMachineResponse>(await this.callApi(params, req, runtime), new CreateEdgeMachineResponse({}));
|
|
34647
|
+
} else {
|
|
34648
|
+
return $dara.cast<CreateEdgeMachineResponse>(await this.execute(params, req, runtime), new CreateEdgeMachineResponse({}));
|
|
34649
|
+
}
|
|
34650
|
+
|
|
34433
34651
|
}
|
|
34434
34652
|
|
|
34435
34653
|
/**
|
|
@@ -34489,7 +34707,12 @@ export default class Client extends OpenApi {
|
|
|
34489
34707
|
reqBodyType: "json",
|
|
34490
34708
|
bodyType: "json",
|
|
34491
34709
|
});
|
|
34492
|
-
|
|
34710
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34711
|
+
return $dara.cast<CreateKubernetesTriggerResponse>(await this.callApi(params, req, runtime), new CreateKubernetesTriggerResponse({}));
|
|
34712
|
+
} else {
|
|
34713
|
+
return $dara.cast<CreateKubernetesTriggerResponse>(await this.execute(params, req, runtime), new CreateKubernetesTriggerResponse({}));
|
|
34714
|
+
}
|
|
34715
|
+
|
|
34493
34716
|
}
|
|
34494
34717
|
|
|
34495
34718
|
/**
|
|
@@ -34553,7 +34776,12 @@ export default class Client extends OpenApi {
|
|
|
34553
34776
|
reqBodyType: "json",
|
|
34554
34777
|
bodyType: "json",
|
|
34555
34778
|
});
|
|
34556
|
-
|
|
34779
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34780
|
+
return $dara.cast<CreateTemplateResponse>(await this.callApi(params, req, runtime), new CreateTemplateResponse({}));
|
|
34781
|
+
} else {
|
|
34782
|
+
return $dara.cast<CreateTemplateResponse>(await this.execute(params, req, runtime), new CreateTemplateResponse({}));
|
|
34783
|
+
}
|
|
34784
|
+
|
|
34557
34785
|
}
|
|
34558
34786
|
|
|
34559
34787
|
/**
|
|
@@ -34610,7 +34838,12 @@ export default class Client extends OpenApi {
|
|
|
34610
34838
|
reqBodyType: "json",
|
|
34611
34839
|
bodyType: "json",
|
|
34612
34840
|
});
|
|
34613
|
-
|
|
34841
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34842
|
+
return $dara.cast<CreateTriggerResponse>(await this.callApi(params, req, runtime), new CreateTriggerResponse({}));
|
|
34843
|
+
} else {
|
|
34844
|
+
return $dara.cast<CreateTriggerResponse>(await this.execute(params, req, runtime), new CreateTriggerResponse({}));
|
|
34845
|
+
}
|
|
34846
|
+
|
|
34614
34847
|
}
|
|
34615
34848
|
|
|
34616
34849
|
/**
|
|
@@ -34661,7 +34894,12 @@ export default class Client extends OpenApi {
|
|
|
34661
34894
|
reqBodyType: "json",
|
|
34662
34895
|
bodyType: "array",
|
|
34663
34896
|
});
|
|
34664
|
-
|
|
34897
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34898
|
+
return $dara.cast<DeleteAlertContactResponse>(await this.callApi(params, req, runtime), new DeleteAlertContactResponse({}));
|
|
34899
|
+
} else {
|
|
34900
|
+
return $dara.cast<DeleteAlertContactResponse>(await this.execute(params, req, runtime), new DeleteAlertContactResponse({}));
|
|
34901
|
+
}
|
|
34902
|
+
|
|
34665
34903
|
}
|
|
34666
34904
|
|
|
34667
34905
|
/**
|
|
@@ -34712,7 +34950,12 @@ export default class Client extends OpenApi {
|
|
|
34712
34950
|
reqBodyType: "json",
|
|
34713
34951
|
bodyType: "array",
|
|
34714
34952
|
});
|
|
34715
|
-
|
|
34953
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
34954
|
+
return $dara.cast<DeleteAlertContactGroupResponse>(await this.callApi(params, req, runtime), new DeleteAlertContactGroupResponse({}));
|
|
34955
|
+
} else {
|
|
34956
|
+
return $dara.cast<DeleteAlertContactGroupResponse>(await this.execute(params, req, runtime), new DeleteAlertContactGroupResponse({}));
|
|
34957
|
+
}
|
|
34958
|
+
|
|
34716
34959
|
}
|
|
34717
34960
|
|
|
34718
34961
|
/**
|
|
@@ -34779,7 +35022,12 @@ export default class Client extends OpenApi {
|
|
|
34779
35022
|
reqBodyType: "json",
|
|
34780
35023
|
bodyType: "json",
|
|
34781
35024
|
});
|
|
34782
|
-
|
|
35025
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35026
|
+
return $dara.cast<DeleteClusterResponse>(await this.callApi(params, req, runtime), new DeleteClusterResponse({}));
|
|
35027
|
+
} else {
|
|
35028
|
+
return $dara.cast<DeleteClusterResponse>(await this.execute(params, req, runtime), new DeleteClusterResponse({}));
|
|
35029
|
+
}
|
|
35030
|
+
|
|
34783
35031
|
}
|
|
34784
35032
|
|
|
34785
35033
|
/**
|
|
@@ -34824,7 +35072,12 @@ export default class Client extends OpenApi {
|
|
|
34824
35072
|
reqBodyType: "json",
|
|
34825
35073
|
bodyType: "json",
|
|
34826
35074
|
});
|
|
34827
|
-
|
|
35075
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35076
|
+
return $dara.cast<DeleteClusterNodepoolResponse>(await this.callApi(params, req, runtime), new DeleteClusterNodepoolResponse({}));
|
|
35077
|
+
} else {
|
|
35078
|
+
return $dara.cast<DeleteClusterNodepoolResponse>(await this.execute(params, req, runtime), new DeleteClusterNodepoolResponse({}));
|
|
35079
|
+
}
|
|
35080
|
+
|
|
34828
35081
|
}
|
|
34829
35082
|
|
|
34830
35083
|
/**
|
|
@@ -34845,8 +35098,7 @@ export default class Client extends OpenApi {
|
|
|
34845
35098
|
* @remarks
|
|
34846
35099
|
* When you remove a node, the pods that run on the node are migrated to other nodes. This may cause service interruptions. We recommend that you remove nodes during off-peak hours.
|
|
34847
35100
|
* * The operation may have unexpected risks. Back up the data before you perform this operation.
|
|
34848
|
-
* * When
|
|
34849
|
-
* * The system removes only worker nodes. It does not remove master nodes.
|
|
35101
|
+
* * When you remove a node, the system sets the status of the node to Unschedulable.
|
|
34850
35102
|
*
|
|
34851
35103
|
* @param request - DeleteClusterNodesRequest
|
|
34852
35104
|
* @param headers - map
|
|
@@ -34883,7 +35135,12 @@ export default class Client extends OpenApi {
|
|
|
34883
35135
|
reqBodyType: "json",
|
|
34884
35136
|
bodyType: "json",
|
|
34885
35137
|
});
|
|
34886
|
-
|
|
35138
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35139
|
+
return $dara.cast<DeleteClusterNodesResponse>(await this.callApi(params, req, runtime), new DeleteClusterNodesResponse({}));
|
|
35140
|
+
} else {
|
|
35141
|
+
return $dara.cast<DeleteClusterNodesResponse>(await this.execute(params, req, runtime), new DeleteClusterNodesResponse({}));
|
|
35142
|
+
}
|
|
35143
|
+
|
|
34887
35144
|
}
|
|
34888
35145
|
|
|
34889
35146
|
/**
|
|
@@ -34892,8 +35149,7 @@ export default class Client extends OpenApi {
|
|
|
34892
35149
|
* @remarks
|
|
34893
35150
|
* When you remove a node, the pods that run on the node are migrated to other nodes. This may cause service interruptions. We recommend that you remove nodes during off-peak hours.
|
|
34894
35151
|
* * The operation may have unexpected risks. Back up the data before you perform this operation.
|
|
34895
|
-
* * When
|
|
34896
|
-
* * The system removes only worker nodes. It does not remove master nodes.
|
|
35152
|
+
* * When you remove a node, the system sets the status of the node to Unschedulable.
|
|
34897
35153
|
*
|
|
34898
35154
|
* @param request - DeleteClusterNodesRequest
|
|
34899
35155
|
* @returns DeleteClusterNodesResponse
|
|
@@ -34934,7 +35190,12 @@ export default class Client extends OpenApi {
|
|
|
34934
35190
|
reqBodyType: "json",
|
|
34935
35191
|
bodyType: "none",
|
|
34936
35192
|
});
|
|
34937
|
-
|
|
35193
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35194
|
+
return $dara.cast<DeleteEdgeMachineResponse>(await this.callApi(params, req, runtime), new DeleteEdgeMachineResponse({}));
|
|
35195
|
+
} else {
|
|
35196
|
+
return $dara.cast<DeleteEdgeMachineResponse>(await this.execute(params, req, runtime), new DeleteEdgeMachineResponse({}));
|
|
35197
|
+
}
|
|
35198
|
+
|
|
34938
35199
|
}
|
|
34939
35200
|
|
|
34940
35201
|
/**
|
|
@@ -34974,7 +35235,12 @@ export default class Client extends OpenApi {
|
|
|
34974
35235
|
reqBodyType: "json",
|
|
34975
35236
|
bodyType: "none",
|
|
34976
35237
|
});
|
|
34977
|
-
|
|
35238
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35239
|
+
return $dara.cast<DeleteKubernetesTriggerResponse>(await this.callApi(params, req, runtime), new DeleteKubernetesTriggerResponse({}));
|
|
35240
|
+
} else {
|
|
35241
|
+
return $dara.cast<DeleteKubernetesTriggerResponse>(await this.execute(params, req, runtime), new DeleteKubernetesTriggerResponse({}));
|
|
35242
|
+
}
|
|
35243
|
+
|
|
34978
35244
|
}
|
|
34979
35245
|
|
|
34980
35246
|
/**
|
|
@@ -35020,7 +35286,12 @@ export default class Client extends OpenApi {
|
|
|
35020
35286
|
reqBodyType: "json",
|
|
35021
35287
|
bodyType: "json",
|
|
35022
35288
|
});
|
|
35023
|
-
|
|
35289
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35290
|
+
return $dara.cast<DeletePolicyInstanceResponse>(await this.callApi(params, req, runtime), new DeletePolicyInstanceResponse({}));
|
|
35291
|
+
} else {
|
|
35292
|
+
return $dara.cast<DeletePolicyInstanceResponse>(await this.execute(params, req, runtime), new DeletePolicyInstanceResponse({}));
|
|
35293
|
+
}
|
|
35294
|
+
|
|
35024
35295
|
}
|
|
35025
35296
|
|
|
35026
35297
|
/**
|
|
@@ -35057,7 +35328,12 @@ export default class Client extends OpenApi {
|
|
|
35057
35328
|
reqBodyType: "json",
|
|
35058
35329
|
bodyType: "none",
|
|
35059
35330
|
});
|
|
35060
|
-
|
|
35331
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35332
|
+
return $dara.cast<DeleteTemplateResponse>(await this.callApi(params, req, runtime), new DeleteTemplateResponse({}));
|
|
35333
|
+
} else {
|
|
35334
|
+
return $dara.cast<DeleteTemplateResponse>(await this.execute(params, req, runtime), new DeleteTemplateResponse({}));
|
|
35335
|
+
}
|
|
35336
|
+
|
|
35061
35337
|
}
|
|
35062
35338
|
|
|
35063
35339
|
/**
|
|
@@ -35092,7 +35368,12 @@ export default class Client extends OpenApi {
|
|
|
35092
35368
|
reqBodyType: "json",
|
|
35093
35369
|
bodyType: "none",
|
|
35094
35370
|
});
|
|
35095
|
-
|
|
35371
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35372
|
+
return $dara.cast<DeleteTriggerResponse>(await this.callApi(params, req, runtime), new DeleteTriggerResponse({}));
|
|
35373
|
+
} else {
|
|
35374
|
+
return $dara.cast<DeleteTriggerResponse>(await this.execute(params, req, runtime), new DeleteTriggerResponse({}));
|
|
35375
|
+
}
|
|
35376
|
+
|
|
35096
35377
|
}
|
|
35097
35378
|
|
|
35098
35379
|
/**
|
|
@@ -35143,7 +35424,12 @@ export default class Client extends OpenApi {
|
|
|
35143
35424
|
reqBodyType: "json",
|
|
35144
35425
|
bodyType: "json",
|
|
35145
35426
|
});
|
|
35146
|
-
|
|
35427
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35428
|
+
return $dara.cast<DeployPolicyInstanceResponse>(await this.callApi(params, req, runtime), new DeployPolicyInstanceResponse({}));
|
|
35429
|
+
} else {
|
|
35430
|
+
return $dara.cast<DeployPolicyInstanceResponse>(await this.execute(params, req, runtime), new DeployPolicyInstanceResponse({}));
|
|
35431
|
+
}
|
|
35432
|
+
|
|
35147
35433
|
}
|
|
35148
35434
|
|
|
35149
35435
|
/**
|
|
@@ -35212,7 +35498,12 @@ export default class Client extends OpenApi {
|
|
|
35212
35498
|
reqBodyType: "json",
|
|
35213
35499
|
bodyType: "json",
|
|
35214
35500
|
});
|
|
35215
|
-
|
|
35501
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35502
|
+
return $dara.cast<DescribeAddonResponse>(await this.callApi(params, req, runtime), new DescribeAddonResponse({}));
|
|
35503
|
+
} else {
|
|
35504
|
+
return $dara.cast<DescribeAddonResponse>(await this.execute(params, req, runtime), new DescribeAddonResponse({}));
|
|
35505
|
+
}
|
|
35506
|
+
|
|
35216
35507
|
}
|
|
35217
35508
|
|
|
35218
35509
|
/**
|
|
@@ -35276,7 +35567,12 @@ export default class Client extends OpenApi {
|
|
|
35276
35567
|
reqBodyType: "json",
|
|
35277
35568
|
bodyType: "json",
|
|
35278
35569
|
});
|
|
35279
|
-
|
|
35570
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35571
|
+
return $dara.cast<DescribeAddonsResponse>(await this.callApi(params, req, runtime), new DescribeAddonsResponse({}));
|
|
35572
|
+
} else {
|
|
35573
|
+
return $dara.cast<DescribeAddonsResponse>(await this.execute(params, req, runtime), new DescribeAddonsResponse({}));
|
|
35574
|
+
}
|
|
35575
|
+
|
|
35280
35576
|
}
|
|
35281
35577
|
|
|
35282
35578
|
/**
|
|
@@ -35319,7 +35615,12 @@ export default class Client extends OpenApi {
|
|
|
35319
35615
|
reqBodyType: "json",
|
|
35320
35616
|
bodyType: "json",
|
|
35321
35617
|
});
|
|
35322
|
-
|
|
35618
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35619
|
+
return $dara.cast<DescribeClusterAddonInstanceResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonInstanceResponse({}));
|
|
35620
|
+
} else {
|
|
35621
|
+
return $dara.cast<DescribeClusterAddonInstanceResponse>(await this.execute(params, req, runtime), new DescribeClusterAddonInstanceResponse({}));
|
|
35622
|
+
}
|
|
35623
|
+
|
|
35323
35624
|
}
|
|
35324
35625
|
|
|
35325
35626
|
/**
|
|
@@ -35368,7 +35669,12 @@ export default class Client extends OpenApi {
|
|
|
35368
35669
|
reqBodyType: "json",
|
|
35369
35670
|
bodyType: "json",
|
|
35370
35671
|
});
|
|
35371
|
-
|
|
35672
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35673
|
+
return $dara.cast<DescribeClusterAddonMetadataResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonMetadataResponse({}));
|
|
35674
|
+
} else {
|
|
35675
|
+
return $dara.cast<DescribeClusterAddonMetadataResponse>(await this.execute(params, req, runtime), new DescribeClusterAddonMetadataResponse({}));
|
|
35676
|
+
}
|
|
35677
|
+
|
|
35372
35678
|
}
|
|
35373
35679
|
|
|
35374
35680
|
/**
|
|
@@ -35411,7 +35717,12 @@ export default class Client extends OpenApi {
|
|
|
35411
35717
|
reqBodyType: "json",
|
|
35412
35718
|
bodyType: "json",
|
|
35413
35719
|
});
|
|
35414
|
-
|
|
35720
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35721
|
+
return $dara.cast<DescribeClusterAddonUpgradeStatusResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonUpgradeStatusResponse({}));
|
|
35722
|
+
} else {
|
|
35723
|
+
return $dara.cast<DescribeClusterAddonUpgradeStatusResponse>(await this.execute(params, req, runtime), new DescribeClusterAddonUpgradeStatusResponse({}));
|
|
35724
|
+
}
|
|
35725
|
+
|
|
35415
35726
|
}
|
|
35416
35727
|
|
|
35417
35728
|
/**
|
|
@@ -35466,7 +35777,12 @@ export default class Client extends OpenApi {
|
|
|
35466
35777
|
reqBodyType: "json",
|
|
35467
35778
|
bodyType: "json",
|
|
35468
35779
|
});
|
|
35469
|
-
|
|
35780
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35781
|
+
return $dara.cast<DescribeClusterAddonsUpgradeStatusResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonsUpgradeStatusResponse({}));
|
|
35782
|
+
} else {
|
|
35783
|
+
return $dara.cast<DescribeClusterAddonsUpgradeStatusResponse>(await this.execute(params, req, runtime), new DescribeClusterAddonsUpgradeStatusResponse({}));
|
|
35784
|
+
}
|
|
35785
|
+
|
|
35470
35786
|
}
|
|
35471
35787
|
|
|
35472
35788
|
/**
|
|
@@ -35509,7 +35825,12 @@ export default class Client extends OpenApi {
|
|
|
35509
35825
|
reqBodyType: "json",
|
|
35510
35826
|
bodyType: "json",
|
|
35511
35827
|
});
|
|
35512
|
-
|
|
35828
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35829
|
+
return $dara.cast<DescribeClusterAddonsVersionResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonsVersionResponse({}));
|
|
35830
|
+
} else {
|
|
35831
|
+
return $dara.cast<DescribeClusterAddonsVersionResponse>(await this.execute(params, req, runtime), new DescribeClusterAddonsVersionResponse({}));
|
|
35832
|
+
}
|
|
35833
|
+
|
|
35513
35834
|
}
|
|
35514
35835
|
|
|
35515
35836
|
/**
|
|
@@ -35575,7 +35896,12 @@ export default class Client extends OpenApi {
|
|
|
35575
35896
|
reqBodyType: "json",
|
|
35576
35897
|
bodyType: "string",
|
|
35577
35898
|
});
|
|
35578
|
-
|
|
35899
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35900
|
+
return $dara.cast<DescribeClusterAttachScriptsResponse>(await this.callApi(params, req, runtime), new DescribeClusterAttachScriptsResponse({}));
|
|
35901
|
+
} else {
|
|
35902
|
+
return $dara.cast<DescribeClusterAttachScriptsResponse>(await this.execute(params, req, runtime), new DescribeClusterAttachScriptsResponse({}));
|
|
35903
|
+
}
|
|
35904
|
+
|
|
35579
35905
|
}
|
|
35580
35906
|
|
|
35581
35907
|
/**
|
|
@@ -35612,7 +35938,12 @@ export default class Client extends OpenApi {
|
|
|
35612
35938
|
reqBodyType: "json",
|
|
35613
35939
|
bodyType: "json",
|
|
35614
35940
|
});
|
|
35615
|
-
|
|
35941
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35942
|
+
return $dara.cast<DescribeClusterDetailResponse>(await this.callApi(params, req, runtime), new DescribeClusterDetailResponse({}));
|
|
35943
|
+
} else {
|
|
35944
|
+
return $dara.cast<DescribeClusterDetailResponse>(await this.execute(params, req, runtime), new DescribeClusterDetailResponse({}));
|
|
35945
|
+
}
|
|
35946
|
+
|
|
35616
35947
|
}
|
|
35617
35948
|
|
|
35618
35949
|
/**
|
|
@@ -35663,7 +35994,12 @@ export default class Client extends OpenApi {
|
|
|
35663
35994
|
reqBodyType: "json",
|
|
35664
35995
|
bodyType: "json",
|
|
35665
35996
|
});
|
|
35666
|
-
|
|
35997
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
35998
|
+
return $dara.cast<DescribeClusterEventsResponse>(await this.callApi(params, req, runtime), new DescribeClusterEventsResponse({}));
|
|
35999
|
+
} else {
|
|
36000
|
+
return $dara.cast<DescribeClusterEventsResponse>(await this.execute(params, req, runtime), new DescribeClusterEventsResponse({}));
|
|
36001
|
+
}
|
|
36002
|
+
|
|
35667
36003
|
}
|
|
35668
36004
|
|
|
35669
36005
|
/**
|
|
@@ -35700,7 +36036,12 @@ export default class Client extends OpenApi {
|
|
|
35700
36036
|
reqBodyType: "json",
|
|
35701
36037
|
bodyType: "array",
|
|
35702
36038
|
});
|
|
35703
|
-
|
|
36039
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36040
|
+
return $dara.cast<DescribeClusterLogsResponse>(await this.callApi(params, req, runtime), new DescribeClusterLogsResponse({}));
|
|
36041
|
+
} else {
|
|
36042
|
+
return $dara.cast<DescribeClusterLogsResponse>(await this.execute(params, req, runtime), new DescribeClusterLogsResponse({}));
|
|
36043
|
+
}
|
|
36044
|
+
|
|
35704
36045
|
}
|
|
35705
36046
|
|
|
35706
36047
|
/**
|
|
@@ -35735,7 +36076,12 @@ export default class Client extends OpenApi {
|
|
|
35735
36076
|
reqBodyType: "json",
|
|
35736
36077
|
bodyType: "json",
|
|
35737
36078
|
});
|
|
35738
|
-
|
|
36079
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36080
|
+
return $dara.cast<DescribeClusterNodePoolDetailResponse>(await this.callApi(params, req, runtime), new DescribeClusterNodePoolDetailResponse({}));
|
|
36081
|
+
} else {
|
|
36082
|
+
return $dara.cast<DescribeClusterNodePoolDetailResponse>(await this.execute(params, req, runtime), new DescribeClusterNodePoolDetailResponse({}));
|
|
36083
|
+
}
|
|
36084
|
+
|
|
35739
36085
|
}
|
|
35740
36086
|
|
|
35741
36087
|
/**
|
|
@@ -35778,7 +36124,12 @@ export default class Client extends OpenApi {
|
|
|
35778
36124
|
reqBodyType: "json",
|
|
35779
36125
|
bodyType: "json",
|
|
35780
36126
|
});
|
|
35781
|
-
|
|
36127
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36128
|
+
return $dara.cast<DescribeClusterNodePoolsResponse>(await this.callApi(params, req, runtime), new DescribeClusterNodePoolsResponse({}));
|
|
36129
|
+
} else {
|
|
36130
|
+
return $dara.cast<DescribeClusterNodePoolsResponse>(await this.execute(params, req, runtime), new DescribeClusterNodePoolsResponse({}));
|
|
36131
|
+
}
|
|
36132
|
+
|
|
35782
36133
|
}
|
|
35783
36134
|
|
|
35784
36135
|
/**
|
|
@@ -35839,7 +36190,12 @@ export default class Client extends OpenApi {
|
|
|
35839
36190
|
reqBodyType: "json",
|
|
35840
36191
|
bodyType: "json",
|
|
35841
36192
|
});
|
|
35842
|
-
|
|
36193
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36194
|
+
return $dara.cast<DescribeClusterNodesResponse>(await this.callApi(params, req, runtime), new DescribeClusterNodesResponse({}));
|
|
36195
|
+
} else {
|
|
36196
|
+
return $dara.cast<DescribeClusterNodesResponse>(await this.execute(params, req, runtime), new DescribeClusterNodesResponse({}));
|
|
36197
|
+
}
|
|
36198
|
+
|
|
35843
36199
|
}
|
|
35844
36200
|
|
|
35845
36201
|
/**
|
|
@@ -35884,7 +36240,12 @@ export default class Client extends OpenApi {
|
|
|
35884
36240
|
reqBodyType: "json",
|
|
35885
36241
|
bodyType: "array",
|
|
35886
36242
|
});
|
|
35887
|
-
|
|
36243
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36244
|
+
return $dara.cast<DescribeClusterResourcesResponse>(await this.callApi(params, req, runtime), new DescribeClusterResourcesResponse({}));
|
|
36245
|
+
} else {
|
|
36246
|
+
return $dara.cast<DescribeClusterResourcesResponse>(await this.execute(params, req, runtime), new DescribeClusterResourcesResponse({}));
|
|
36247
|
+
}
|
|
36248
|
+
|
|
35888
36249
|
}
|
|
35889
36250
|
|
|
35890
36251
|
/**
|
|
@@ -35933,7 +36294,12 @@ export default class Client extends OpenApi {
|
|
|
35933
36294
|
reqBodyType: "json",
|
|
35934
36295
|
bodyType: "json",
|
|
35935
36296
|
});
|
|
35936
|
-
|
|
36297
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36298
|
+
return $dara.cast<DescribeClusterTasksResponse>(await this.callApi(params, req, runtime), new DescribeClusterTasksResponse({}));
|
|
36299
|
+
} else {
|
|
36300
|
+
return $dara.cast<DescribeClusterTasksResponse>(await this.execute(params, req, runtime), new DescribeClusterTasksResponse({}));
|
|
36301
|
+
}
|
|
36302
|
+
|
|
35937
36303
|
}
|
|
35938
36304
|
|
|
35939
36305
|
/**
|
|
@@ -35985,7 +36351,12 @@ export default class Client extends OpenApi {
|
|
|
35985
36351
|
reqBodyType: "json",
|
|
35986
36352
|
bodyType: "json",
|
|
35987
36353
|
});
|
|
35988
|
-
|
|
36354
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36355
|
+
return $dara.cast<DescribeClusterUserKubeconfigResponse>(await this.callApi(params, req, runtime), new DescribeClusterUserKubeconfigResponse({}));
|
|
36356
|
+
} else {
|
|
36357
|
+
return $dara.cast<DescribeClusterUserKubeconfigResponse>(await this.execute(params, req, runtime), new DescribeClusterUserKubeconfigResponse({}));
|
|
36358
|
+
}
|
|
36359
|
+
|
|
35989
36360
|
}
|
|
35990
36361
|
|
|
35991
36362
|
/**
|
|
@@ -36040,7 +36411,12 @@ export default class Client extends OpenApi {
|
|
|
36040
36411
|
reqBodyType: "json",
|
|
36041
36412
|
bodyType: "json",
|
|
36042
36413
|
});
|
|
36043
|
-
|
|
36414
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36415
|
+
return $dara.cast<DescribeClusterV2UserKubeconfigResponse>(await this.callApi(params, req, runtime), new DescribeClusterV2UserKubeconfigResponse({}));
|
|
36416
|
+
} else {
|
|
36417
|
+
return $dara.cast<DescribeClusterV2UserKubeconfigResponse>(await this.execute(params, req, runtime), new DescribeClusterV2UserKubeconfigResponse({}));
|
|
36418
|
+
}
|
|
36419
|
+
|
|
36044
36420
|
}
|
|
36045
36421
|
|
|
36046
36422
|
/**
|
|
@@ -36080,7 +36456,12 @@ export default class Client extends OpenApi {
|
|
|
36080
36456
|
reqBodyType: "json",
|
|
36081
36457
|
bodyType: "json",
|
|
36082
36458
|
});
|
|
36083
|
-
|
|
36459
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36460
|
+
return $dara.cast<DescribeClusterVulsResponse>(await this.callApi(params, req, runtime), new DescribeClusterVulsResponse({}));
|
|
36461
|
+
} else {
|
|
36462
|
+
return $dara.cast<DescribeClusterVulsResponse>(await this.execute(params, req, runtime), new DescribeClusterVulsResponse({}));
|
|
36463
|
+
}
|
|
36464
|
+
|
|
36084
36465
|
}
|
|
36085
36466
|
|
|
36086
36467
|
/**
|
|
@@ -36134,7 +36515,12 @@ export default class Client extends OpenApi {
|
|
|
36134
36515
|
reqBodyType: "json",
|
|
36135
36516
|
bodyType: "array",
|
|
36136
36517
|
});
|
|
36137
|
-
|
|
36518
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36519
|
+
return $dara.cast<DescribeClustersResponse>(await this.callApi(params, req, runtime), new DescribeClustersResponse({}));
|
|
36520
|
+
} else {
|
|
36521
|
+
return $dara.cast<DescribeClustersResponse>(await this.execute(params, req, runtime), new DescribeClustersResponse({}));
|
|
36522
|
+
}
|
|
36523
|
+
|
|
36138
36524
|
}
|
|
36139
36525
|
|
|
36140
36526
|
/**
|
|
@@ -36206,7 +36592,12 @@ export default class Client extends OpenApi {
|
|
|
36206
36592
|
reqBodyType: "json",
|
|
36207
36593
|
bodyType: "json",
|
|
36208
36594
|
});
|
|
36209
|
-
|
|
36595
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36596
|
+
return $dara.cast<DescribeClustersForRegionResponse>(await this.callApi(params, req, runtime), new DescribeClustersForRegionResponse({}));
|
|
36597
|
+
} else {
|
|
36598
|
+
return $dara.cast<DescribeClustersForRegionResponse>(await this.execute(params, req, runtime), new DescribeClustersForRegionResponse({}));
|
|
36599
|
+
}
|
|
36600
|
+
|
|
36210
36601
|
}
|
|
36211
36602
|
|
|
36212
36603
|
/**
|
|
@@ -36279,7 +36670,12 @@ export default class Client extends OpenApi {
|
|
|
36279
36670
|
reqBodyType: "json",
|
|
36280
36671
|
bodyType: "json",
|
|
36281
36672
|
});
|
|
36282
|
-
|
|
36673
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36674
|
+
return $dara.cast<DescribeClustersV1Response>(await this.callApi(params, req, runtime), new DescribeClustersV1Response({}));
|
|
36675
|
+
} else {
|
|
36676
|
+
return $dara.cast<DescribeClustersV1Response>(await this.execute(params, req, runtime), new DescribeClustersV1Response({}));
|
|
36677
|
+
}
|
|
36678
|
+
|
|
36283
36679
|
}
|
|
36284
36680
|
|
|
36285
36681
|
/**
|
|
@@ -36319,7 +36715,12 @@ export default class Client extends OpenApi {
|
|
|
36319
36715
|
reqBodyType: "json",
|
|
36320
36716
|
bodyType: "json",
|
|
36321
36717
|
});
|
|
36322
|
-
|
|
36718
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36719
|
+
return $dara.cast<DescribeEdgeMachineActiveProcessResponse>(await this.callApi(params, req, runtime), new DescribeEdgeMachineActiveProcessResponse({}));
|
|
36720
|
+
} else {
|
|
36721
|
+
return $dara.cast<DescribeEdgeMachineActiveProcessResponse>(await this.execute(params, req, runtime), new DescribeEdgeMachineActiveProcessResponse({}));
|
|
36722
|
+
}
|
|
36723
|
+
|
|
36323
36724
|
}
|
|
36324
36725
|
|
|
36325
36726
|
/**
|
|
@@ -36357,7 +36758,12 @@ export default class Client extends OpenApi {
|
|
|
36357
36758
|
reqBodyType: "json",
|
|
36358
36759
|
bodyType: "json",
|
|
36359
36760
|
});
|
|
36360
|
-
|
|
36761
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36762
|
+
return $dara.cast<DescribeEdgeMachineModelsResponse>(await this.callApi(params, req, runtime), new DescribeEdgeMachineModelsResponse({}));
|
|
36763
|
+
} else {
|
|
36764
|
+
return $dara.cast<DescribeEdgeMachineModelsResponse>(await this.execute(params, req, runtime), new DescribeEdgeMachineModelsResponse({}));
|
|
36765
|
+
}
|
|
36766
|
+
|
|
36361
36767
|
}
|
|
36362
36768
|
|
|
36363
36769
|
/**
|
|
@@ -36392,7 +36798,12 @@ export default class Client extends OpenApi {
|
|
|
36392
36798
|
reqBodyType: "json",
|
|
36393
36799
|
bodyType: "json",
|
|
36394
36800
|
});
|
|
36395
|
-
|
|
36801
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36802
|
+
return $dara.cast<DescribeEdgeMachineTunnelConfigDetailResponse>(await this.callApi(params, req, runtime), new DescribeEdgeMachineTunnelConfigDetailResponse({}));
|
|
36803
|
+
} else {
|
|
36804
|
+
return $dara.cast<DescribeEdgeMachineTunnelConfigDetailResponse>(await this.execute(params, req, runtime), new DescribeEdgeMachineTunnelConfigDetailResponse({}));
|
|
36805
|
+
}
|
|
36806
|
+
|
|
36396
36807
|
}
|
|
36397
36808
|
|
|
36398
36809
|
/**
|
|
@@ -36455,7 +36866,12 @@ export default class Client extends OpenApi {
|
|
|
36455
36866
|
reqBodyType: "json",
|
|
36456
36867
|
bodyType: "json",
|
|
36457
36868
|
});
|
|
36458
|
-
|
|
36869
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36870
|
+
return $dara.cast<DescribeEdgeMachinesResponse>(await this.callApi(params, req, runtime), new DescribeEdgeMachinesResponse({}));
|
|
36871
|
+
} else {
|
|
36872
|
+
return $dara.cast<DescribeEdgeMachinesResponse>(await this.execute(params, req, runtime), new DescribeEdgeMachinesResponse({}));
|
|
36873
|
+
}
|
|
36874
|
+
|
|
36459
36875
|
}
|
|
36460
36876
|
|
|
36461
36877
|
/**
|
|
@@ -36512,7 +36928,12 @@ export default class Client extends OpenApi {
|
|
|
36512
36928
|
reqBodyType: "json",
|
|
36513
36929
|
bodyType: "json",
|
|
36514
36930
|
});
|
|
36515
|
-
|
|
36931
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36932
|
+
return $dara.cast<DescribeEventsResponse>(await this.callApi(params, req, runtime), new DescribeEventsResponse({}));
|
|
36933
|
+
} else {
|
|
36934
|
+
return $dara.cast<DescribeEventsResponse>(await this.execute(params, req, runtime), new DescribeEventsResponse({}));
|
|
36935
|
+
}
|
|
36936
|
+
|
|
36516
36937
|
}
|
|
36517
36938
|
|
|
36518
36939
|
/**
|
|
@@ -36565,7 +36986,12 @@ export default class Client extends OpenApi {
|
|
|
36565
36986
|
reqBodyType: "json",
|
|
36566
36987
|
bodyType: "json",
|
|
36567
36988
|
});
|
|
36568
|
-
|
|
36989
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
36990
|
+
return $dara.cast<DescribeEventsForRegionResponse>(await this.callApi(params, req, runtime), new DescribeEventsForRegionResponse({}));
|
|
36991
|
+
} else {
|
|
36992
|
+
return $dara.cast<DescribeEventsForRegionResponse>(await this.execute(params, req, runtime), new DescribeEventsForRegionResponse({}));
|
|
36993
|
+
}
|
|
36994
|
+
|
|
36569
36995
|
}
|
|
36570
36996
|
|
|
36571
36997
|
/**
|
|
@@ -36620,7 +37046,12 @@ export default class Client extends OpenApi {
|
|
|
36620
37046
|
reqBodyType: "json",
|
|
36621
37047
|
bodyType: "json",
|
|
36622
37048
|
});
|
|
36623
|
-
|
|
37049
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37050
|
+
return $dara.cast<DescribeExternalAgentResponse>(await this.callApi(params, req, runtime), new DescribeExternalAgentResponse({}));
|
|
37051
|
+
} else {
|
|
37052
|
+
return $dara.cast<DescribeExternalAgentResponse>(await this.execute(params, req, runtime), new DescribeExternalAgentResponse({}));
|
|
37053
|
+
}
|
|
37054
|
+
|
|
36624
37055
|
}
|
|
36625
37056
|
|
|
36626
37057
|
/**
|
|
@@ -36695,7 +37126,12 @@ export default class Client extends OpenApi {
|
|
|
36695
37126
|
reqBodyType: "json",
|
|
36696
37127
|
bodyType: "array",
|
|
36697
37128
|
});
|
|
36698
|
-
|
|
37129
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37130
|
+
return $dara.cast<DescribeKubernetesVersionMetadataResponse>(await this.callApi(params, req, runtime), new DescribeKubernetesVersionMetadataResponse({}));
|
|
37131
|
+
} else {
|
|
37132
|
+
return $dara.cast<DescribeKubernetesVersionMetadataResponse>(await this.execute(params, req, runtime), new DescribeKubernetesVersionMetadataResponse({}));
|
|
37133
|
+
}
|
|
37134
|
+
|
|
36699
37135
|
}
|
|
36700
37136
|
|
|
36701
37137
|
/**
|
|
@@ -36740,7 +37176,12 @@ export default class Client extends OpenApi {
|
|
|
36740
37176
|
reqBodyType: "json",
|
|
36741
37177
|
bodyType: "json",
|
|
36742
37178
|
});
|
|
36743
|
-
|
|
37179
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37180
|
+
return $dara.cast<DescribeNodePoolVulsResponse>(await this.callApi(params, req, runtime), new DescribeNodePoolVulsResponse({}));
|
|
37181
|
+
} else {
|
|
37182
|
+
return $dara.cast<DescribeNodePoolVulsResponse>(await this.execute(params, req, runtime), new DescribeNodePoolVulsResponse({}));
|
|
37183
|
+
}
|
|
37184
|
+
|
|
36744
37185
|
}
|
|
36745
37186
|
|
|
36746
37187
|
/**
|
|
@@ -36777,7 +37218,12 @@ export default class Client extends OpenApi {
|
|
|
36777
37218
|
reqBodyType: "json",
|
|
36778
37219
|
bodyType: "json",
|
|
36779
37220
|
});
|
|
36780
|
-
|
|
37221
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37222
|
+
return $dara.cast<DescribePoliciesResponse>(await this.callApi(params, req, runtime), new DescribePoliciesResponse({}));
|
|
37223
|
+
} else {
|
|
37224
|
+
return $dara.cast<DescribePoliciesResponse>(await this.execute(params, req, runtime), new DescribePoliciesResponse({}));
|
|
37225
|
+
}
|
|
37226
|
+
|
|
36781
37227
|
}
|
|
36782
37228
|
|
|
36783
37229
|
/**
|
|
@@ -36812,7 +37258,12 @@ export default class Client extends OpenApi {
|
|
|
36812
37258
|
reqBodyType: "json",
|
|
36813
37259
|
bodyType: "json",
|
|
36814
37260
|
});
|
|
36815
|
-
|
|
37261
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37262
|
+
return $dara.cast<DescribePolicyDetailsResponse>(await this.callApi(params, req, runtime), new DescribePolicyDetailsResponse({}));
|
|
37263
|
+
} else {
|
|
37264
|
+
return $dara.cast<DescribePolicyDetailsResponse>(await this.execute(params, req, runtime), new DescribePolicyDetailsResponse({}));
|
|
37265
|
+
}
|
|
37266
|
+
|
|
36816
37267
|
}
|
|
36817
37268
|
|
|
36818
37269
|
/**
|
|
@@ -36847,7 +37298,12 @@ export default class Client extends OpenApi {
|
|
|
36847
37298
|
reqBodyType: "json",
|
|
36848
37299
|
bodyType: "json",
|
|
36849
37300
|
});
|
|
36850
|
-
|
|
37301
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37302
|
+
return $dara.cast<DescribePolicyGovernanceInClusterResponse>(await this.callApi(params, req, runtime), new DescribePolicyGovernanceInClusterResponse({}));
|
|
37303
|
+
} else {
|
|
37304
|
+
return $dara.cast<DescribePolicyGovernanceInClusterResponse>(await this.execute(params, req, runtime), new DescribePolicyGovernanceInClusterResponse({}));
|
|
37305
|
+
}
|
|
37306
|
+
|
|
36851
37307
|
}
|
|
36852
37308
|
|
|
36853
37309
|
/**
|
|
@@ -36894,7 +37350,12 @@ export default class Client extends OpenApi {
|
|
|
36894
37350
|
reqBodyType: "json",
|
|
36895
37351
|
bodyType: "array",
|
|
36896
37352
|
});
|
|
36897
|
-
|
|
37353
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37354
|
+
return $dara.cast<DescribePolicyInstancesResponse>(await this.callApi(params, req, runtime), new DescribePolicyInstancesResponse({}));
|
|
37355
|
+
} else {
|
|
37356
|
+
return $dara.cast<DescribePolicyInstancesResponse>(await this.execute(params, req, runtime), new DescribePolicyInstancesResponse({}));
|
|
37357
|
+
}
|
|
37358
|
+
|
|
36898
37359
|
}
|
|
36899
37360
|
|
|
36900
37361
|
/**
|
|
@@ -36931,7 +37392,12 @@ export default class Client extends OpenApi {
|
|
|
36931
37392
|
reqBodyType: "json",
|
|
36932
37393
|
bodyType: "json",
|
|
36933
37394
|
});
|
|
36934
|
-
|
|
37395
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37396
|
+
return $dara.cast<DescribePolicyInstancesStatusResponse>(await this.callApi(params, req, runtime), new DescribePolicyInstancesStatusResponse({}));
|
|
37397
|
+
} else {
|
|
37398
|
+
return $dara.cast<DescribePolicyInstancesStatusResponse>(await this.execute(params, req, runtime), new DescribePolicyInstancesStatusResponse({}));
|
|
37399
|
+
}
|
|
37400
|
+
|
|
36935
37401
|
}
|
|
36936
37402
|
|
|
36937
37403
|
/**
|
|
@@ -36978,7 +37444,12 @@ export default class Client extends OpenApi {
|
|
|
36978
37444
|
reqBodyType: "json",
|
|
36979
37445
|
bodyType: "array",
|
|
36980
37446
|
});
|
|
36981
|
-
|
|
37447
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37448
|
+
return $dara.cast<DescribeResourcesDeleteProtectionResponse>(await this.callApi(params, req, runtime), new DescribeResourcesDeleteProtectionResponse({}));
|
|
37449
|
+
} else {
|
|
37450
|
+
return $dara.cast<DescribeResourcesDeleteProtectionResponse>(await this.execute(params, req, runtime), new DescribeResourcesDeleteProtectionResponse({}));
|
|
37451
|
+
}
|
|
37452
|
+
|
|
36982
37453
|
}
|
|
36983
37454
|
|
|
36984
37455
|
/**
|
|
@@ -37030,7 +37501,12 @@ export default class Client extends OpenApi {
|
|
|
37030
37501
|
reqBodyType: "json",
|
|
37031
37502
|
bodyType: "json",
|
|
37032
37503
|
});
|
|
37033
|
-
|
|
37504
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37505
|
+
return $dara.cast<DescribeSubaccountK8sClusterUserConfigResponse>(await this.callApi(params, req, runtime), new DescribeSubaccountK8sClusterUserConfigResponse({}));
|
|
37506
|
+
} else {
|
|
37507
|
+
return $dara.cast<DescribeSubaccountK8sClusterUserConfigResponse>(await this.execute(params, req, runtime), new DescribeSubaccountK8sClusterUserConfigResponse({}));
|
|
37508
|
+
}
|
|
37509
|
+
|
|
37034
37510
|
}
|
|
37035
37511
|
|
|
37036
37512
|
/**
|
|
@@ -37070,7 +37546,12 @@ export default class Client extends OpenApi {
|
|
|
37070
37546
|
reqBodyType: "json",
|
|
37071
37547
|
bodyType: "json",
|
|
37072
37548
|
});
|
|
37073
|
-
|
|
37549
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37550
|
+
return $dara.cast<DescribeTaskInfoResponse>(await this.callApi(params, req, runtime), new DescribeTaskInfoResponse({}));
|
|
37551
|
+
} else {
|
|
37552
|
+
return $dara.cast<DescribeTaskInfoResponse>(await this.execute(params, req, runtime), new DescribeTaskInfoResponse({}));
|
|
37553
|
+
}
|
|
37554
|
+
|
|
37074
37555
|
}
|
|
37075
37556
|
|
|
37076
37557
|
/**
|
|
@@ -37113,7 +37594,12 @@ export default class Client extends OpenApi {
|
|
|
37113
37594
|
reqBodyType: "json",
|
|
37114
37595
|
bodyType: "array",
|
|
37115
37596
|
});
|
|
37116
|
-
|
|
37597
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37598
|
+
return $dara.cast<DescribeTemplateAttributeResponse>(await this.callApi(params, req, runtime), new DescribeTemplateAttributeResponse({}));
|
|
37599
|
+
} else {
|
|
37600
|
+
return $dara.cast<DescribeTemplateAttributeResponse>(await this.execute(params, req, runtime), new DescribeTemplateAttributeResponse({}));
|
|
37601
|
+
}
|
|
37602
|
+
|
|
37117
37603
|
}
|
|
37118
37604
|
|
|
37119
37605
|
/**
|
|
@@ -37166,7 +37652,12 @@ export default class Client extends OpenApi {
|
|
|
37166
37652
|
reqBodyType: "json",
|
|
37167
37653
|
bodyType: "json",
|
|
37168
37654
|
});
|
|
37169
|
-
|
|
37655
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37656
|
+
return $dara.cast<DescribeTemplatesResponse>(await this.callApi(params, req, runtime), new DescribeTemplatesResponse({}));
|
|
37657
|
+
} else {
|
|
37658
|
+
return $dara.cast<DescribeTemplatesResponse>(await this.execute(params, req, runtime), new DescribeTemplatesResponse({}));
|
|
37659
|
+
}
|
|
37660
|
+
|
|
37170
37661
|
}
|
|
37171
37662
|
|
|
37172
37663
|
/**
|
|
@@ -37223,7 +37714,12 @@ export default class Client extends OpenApi {
|
|
|
37223
37714
|
reqBodyType: "json",
|
|
37224
37715
|
bodyType: "array",
|
|
37225
37716
|
});
|
|
37226
|
-
|
|
37717
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37718
|
+
return $dara.cast<DescribeTriggerResponse>(await this.callApi(params, req, runtime), new DescribeTriggerResponse({}));
|
|
37719
|
+
} else {
|
|
37720
|
+
return $dara.cast<DescribeTriggerResponse>(await this.execute(params, req, runtime), new DescribeTriggerResponse({}));
|
|
37721
|
+
}
|
|
37722
|
+
|
|
37227
37723
|
}
|
|
37228
37724
|
|
|
37229
37725
|
/**
|
|
@@ -37260,7 +37756,12 @@ export default class Client extends OpenApi {
|
|
|
37260
37756
|
reqBodyType: "json",
|
|
37261
37757
|
bodyType: "array",
|
|
37262
37758
|
});
|
|
37263
|
-
|
|
37759
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37760
|
+
return $dara.cast<DescribeUserClusterNamespacesResponse>(await this.callApi(params, req, runtime), new DescribeUserClusterNamespacesResponse({}));
|
|
37761
|
+
} else {
|
|
37762
|
+
return $dara.cast<DescribeUserClusterNamespacesResponse>(await this.execute(params, req, runtime), new DescribeUserClusterNamespacesResponse({}));
|
|
37763
|
+
}
|
|
37764
|
+
|
|
37264
37765
|
}
|
|
37265
37766
|
|
|
37266
37767
|
/**
|
|
@@ -37299,7 +37800,12 @@ export default class Client extends OpenApi {
|
|
|
37299
37800
|
reqBodyType: "json",
|
|
37300
37801
|
bodyType: "array",
|
|
37301
37802
|
});
|
|
37302
|
-
|
|
37803
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37804
|
+
return $dara.cast<DescribeUserPermissionResponse>(await this.callApi(params, req, runtime), new DescribeUserPermissionResponse({}));
|
|
37805
|
+
} else {
|
|
37806
|
+
return $dara.cast<DescribeUserPermissionResponse>(await this.execute(params, req, runtime), new DescribeUserPermissionResponse({}));
|
|
37807
|
+
}
|
|
37808
|
+
|
|
37303
37809
|
}
|
|
37304
37810
|
|
|
37305
37811
|
/**
|
|
@@ -37338,7 +37844,12 @@ export default class Client extends OpenApi {
|
|
|
37338
37844
|
reqBodyType: "json",
|
|
37339
37845
|
bodyType: "json",
|
|
37340
37846
|
});
|
|
37341
|
-
|
|
37847
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37848
|
+
return $dara.cast<DescribeUserQuotaResponse>(await this.callApi(params, req, runtime), new DescribeUserQuotaResponse({}));
|
|
37849
|
+
} else {
|
|
37850
|
+
return $dara.cast<DescribeUserQuotaResponse>(await this.execute(params, req, runtime), new DescribeUserQuotaResponse({}));
|
|
37851
|
+
}
|
|
37852
|
+
|
|
37342
37853
|
}
|
|
37343
37854
|
|
|
37344
37855
|
/**
|
|
@@ -37392,7 +37903,12 @@ export default class Client extends OpenApi {
|
|
|
37392
37903
|
reqBodyType: "json",
|
|
37393
37904
|
bodyType: "json",
|
|
37394
37905
|
});
|
|
37395
|
-
|
|
37906
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37907
|
+
return $dara.cast<EdgeClusterAddEdgeMachineResponse>(await this.callApi(params, req, runtime), new EdgeClusterAddEdgeMachineResponse({}));
|
|
37908
|
+
} else {
|
|
37909
|
+
return $dara.cast<EdgeClusterAddEdgeMachineResponse>(await this.execute(params, req, runtime), new EdgeClusterAddEdgeMachineResponse({}));
|
|
37910
|
+
}
|
|
37911
|
+
|
|
37396
37912
|
}
|
|
37397
37913
|
|
|
37398
37914
|
/**
|
|
@@ -37458,7 +37974,12 @@ export default class Client extends OpenApi {
|
|
|
37458
37974
|
reqBodyType: "json",
|
|
37459
37975
|
bodyType: "json",
|
|
37460
37976
|
});
|
|
37461
|
-
|
|
37977
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
37978
|
+
return $dara.cast<FixNodePoolVulsResponse>(await this.callApi(params, req, runtime), new FixNodePoolVulsResponse({}));
|
|
37979
|
+
} else {
|
|
37980
|
+
return $dara.cast<FixNodePoolVulsResponse>(await this.execute(params, req, runtime), new FixNodePoolVulsResponse({}));
|
|
37981
|
+
}
|
|
37982
|
+
|
|
37462
37983
|
}
|
|
37463
37984
|
|
|
37464
37985
|
/**
|
|
@@ -37501,7 +38022,12 @@ export default class Client extends OpenApi {
|
|
|
37501
38022
|
reqBodyType: "json",
|
|
37502
38023
|
bodyType: "json",
|
|
37503
38024
|
});
|
|
37504
|
-
|
|
38025
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38026
|
+
return $dara.cast<GetClusterAddonInstanceResponse>(await this.callApi(params, req, runtime), new GetClusterAddonInstanceResponse({}));
|
|
38027
|
+
} else {
|
|
38028
|
+
return $dara.cast<GetClusterAddonInstanceResponse>(await this.execute(params, req, runtime), new GetClusterAddonInstanceResponse({}));
|
|
38029
|
+
}
|
|
38030
|
+
|
|
37505
38031
|
}
|
|
37506
38032
|
|
|
37507
38033
|
/**
|
|
@@ -37536,7 +38062,12 @@ export default class Client extends OpenApi {
|
|
|
37536
38062
|
reqBodyType: "json",
|
|
37537
38063
|
bodyType: "json",
|
|
37538
38064
|
});
|
|
37539
|
-
|
|
38065
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38066
|
+
return $dara.cast<GetClusterAuditProjectResponse>(await this.callApi(params, req, runtime), new GetClusterAuditProjectResponse({}));
|
|
38067
|
+
} else {
|
|
38068
|
+
return $dara.cast<GetClusterAuditProjectResponse>(await this.execute(params, req, runtime), new GetClusterAuditProjectResponse({}));
|
|
38069
|
+
}
|
|
38070
|
+
|
|
37540
38071
|
}
|
|
37541
38072
|
|
|
37542
38073
|
/**
|
|
@@ -37571,7 +38102,12 @@ export default class Client extends OpenApi {
|
|
|
37571
38102
|
reqBodyType: "json",
|
|
37572
38103
|
bodyType: "json",
|
|
37573
38104
|
});
|
|
37574
|
-
|
|
38105
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38106
|
+
return $dara.cast<GetClusterCheckResponse>(await this.callApi(params, req, runtime), new GetClusterCheckResponse({}));
|
|
38107
|
+
} else {
|
|
38108
|
+
return $dara.cast<GetClusterCheckResponse>(await this.execute(params, req, runtime), new GetClusterCheckResponse({}));
|
|
38109
|
+
}
|
|
38110
|
+
|
|
37575
38111
|
}
|
|
37576
38112
|
|
|
37577
38113
|
/**
|
|
@@ -37614,7 +38150,12 @@ export default class Client extends OpenApi {
|
|
|
37614
38150
|
reqBodyType: "json",
|
|
37615
38151
|
bodyType: "json",
|
|
37616
38152
|
});
|
|
37617
|
-
|
|
38153
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38154
|
+
return $dara.cast<GetClusterDiagnosisCheckItemsResponse>(await this.callApi(params, req, runtime), new GetClusterDiagnosisCheckItemsResponse({}));
|
|
38155
|
+
} else {
|
|
38156
|
+
return $dara.cast<GetClusterDiagnosisCheckItemsResponse>(await this.execute(params, req, runtime), new GetClusterDiagnosisCheckItemsResponse({}));
|
|
38157
|
+
}
|
|
38158
|
+
|
|
37618
38159
|
}
|
|
37619
38160
|
|
|
37620
38161
|
/**
|
|
@@ -37659,7 +38200,12 @@ export default class Client extends OpenApi {
|
|
|
37659
38200
|
reqBodyType: "json",
|
|
37660
38201
|
bodyType: "json",
|
|
37661
38202
|
});
|
|
37662
|
-
|
|
38203
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38204
|
+
return $dara.cast<GetClusterDiagnosisResultResponse>(await this.callApi(params, req, runtime), new GetClusterDiagnosisResultResponse({}));
|
|
38205
|
+
} else {
|
|
38206
|
+
return $dara.cast<GetClusterDiagnosisResultResponse>(await this.execute(params, req, runtime), new GetClusterDiagnosisResultResponse({}));
|
|
38207
|
+
}
|
|
38208
|
+
|
|
37663
38209
|
}
|
|
37664
38210
|
|
|
37665
38211
|
/**
|
|
@@ -37719,7 +38265,12 @@ export default class Client extends OpenApi {
|
|
|
37719
38265
|
reqBodyType: "json",
|
|
37720
38266
|
bodyType: "array",
|
|
37721
38267
|
});
|
|
37722
|
-
|
|
38268
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38269
|
+
return $dara.cast<GetKubernetesTriggerResponse>(await this.callApi(params, req, runtime), new GetKubernetesTriggerResponse({}));
|
|
38270
|
+
} else {
|
|
38271
|
+
return $dara.cast<GetKubernetesTriggerResponse>(await this.execute(params, req, runtime), new GetKubernetesTriggerResponse({}));
|
|
38272
|
+
}
|
|
38273
|
+
|
|
37723
38274
|
}
|
|
37724
38275
|
|
|
37725
38276
|
/**
|
|
@@ -37762,7 +38313,12 @@ export default class Client extends OpenApi {
|
|
|
37762
38313
|
reqBodyType: "json",
|
|
37763
38314
|
bodyType: "json",
|
|
37764
38315
|
});
|
|
37765
|
-
|
|
38316
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38317
|
+
return $dara.cast<GetUpgradeStatusResponse>(await this.callApi(params, req, runtime), new GetUpgradeStatusResponse({}));
|
|
38318
|
+
} else {
|
|
38319
|
+
return $dara.cast<GetUpgradeStatusResponse>(await this.execute(params, req, runtime), new GetUpgradeStatusResponse({}));
|
|
38320
|
+
}
|
|
38321
|
+
|
|
37766
38322
|
}
|
|
37767
38323
|
|
|
37768
38324
|
/**
|
|
@@ -37808,7 +38364,12 @@ export default class Client extends OpenApi {
|
|
|
37808
38364
|
reqBodyType: "json",
|
|
37809
38365
|
bodyType: "none",
|
|
37810
38366
|
});
|
|
37811
|
-
|
|
38367
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38368
|
+
return $dara.cast<GrantPermissionsResponse>(await this.callApi(params, req, runtime), new GrantPermissionsResponse({}));
|
|
38369
|
+
} else {
|
|
38370
|
+
return $dara.cast<GrantPermissionsResponse>(await this.execute(params, req, runtime), new GrantPermissionsResponse({}));
|
|
38371
|
+
}
|
|
38372
|
+
|
|
37812
38373
|
}
|
|
37813
38374
|
|
|
37814
38375
|
/**
|
|
@@ -37853,7 +38414,12 @@ export default class Client extends OpenApi {
|
|
|
37853
38414
|
reqBodyType: "json",
|
|
37854
38415
|
bodyType: "json",
|
|
37855
38416
|
});
|
|
37856
|
-
|
|
38417
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38418
|
+
return $dara.cast<InstallClusterAddonsResponse>(await this.callApi(params, req, runtime), new InstallClusterAddonsResponse({}));
|
|
38419
|
+
} else {
|
|
38420
|
+
return $dara.cast<InstallClusterAddonsResponse>(await this.execute(params, req, runtime), new InstallClusterAddonsResponse({}));
|
|
38421
|
+
}
|
|
38422
|
+
|
|
37857
38423
|
}
|
|
37858
38424
|
|
|
37859
38425
|
/**
|
|
@@ -37918,7 +38484,12 @@ export default class Client extends OpenApi {
|
|
|
37918
38484
|
reqBodyType: "json",
|
|
37919
38485
|
bodyType: "json",
|
|
37920
38486
|
});
|
|
37921
|
-
|
|
38487
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38488
|
+
return $dara.cast<ListAddonsResponse>(await this.callApi(params, req, runtime), new ListAddonsResponse({}));
|
|
38489
|
+
} else {
|
|
38490
|
+
return $dara.cast<ListAddonsResponse>(await this.execute(params, req, runtime), new ListAddonsResponse({}));
|
|
38491
|
+
}
|
|
38492
|
+
|
|
37922
38493
|
}
|
|
37923
38494
|
|
|
37924
38495
|
/**
|
|
@@ -37955,7 +38526,12 @@ export default class Client extends OpenApi {
|
|
|
37955
38526
|
reqBodyType: "json",
|
|
37956
38527
|
bodyType: "json",
|
|
37957
38528
|
});
|
|
37958
|
-
|
|
38529
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38530
|
+
return $dara.cast<ListClusterAddonInstancesResponse>(await this.callApi(params, req, runtime), new ListClusterAddonInstancesResponse({}));
|
|
38531
|
+
} else {
|
|
38532
|
+
return $dara.cast<ListClusterAddonInstancesResponse>(await this.execute(params, req, runtime), new ListClusterAddonInstancesResponse({}));
|
|
38533
|
+
}
|
|
38534
|
+
|
|
37959
38535
|
}
|
|
37960
38536
|
|
|
37961
38537
|
/**
|
|
@@ -38002,7 +38578,12 @@ export default class Client extends OpenApi {
|
|
|
38002
38578
|
reqBodyType: "json",
|
|
38003
38579
|
bodyType: "json",
|
|
38004
38580
|
});
|
|
38005
|
-
|
|
38581
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38582
|
+
return $dara.cast<ListClusterChecksResponse>(await this.callApi(params, req, runtime), new ListClusterChecksResponse({}));
|
|
38583
|
+
} else {
|
|
38584
|
+
return $dara.cast<ListClusterChecksResponse>(await this.execute(params, req, runtime), new ListClusterChecksResponse({}));
|
|
38585
|
+
}
|
|
38586
|
+
|
|
38006
38587
|
}
|
|
38007
38588
|
|
|
38008
38589
|
/**
|
|
@@ -38055,7 +38636,12 @@ export default class Client extends OpenApi {
|
|
|
38055
38636
|
reqBodyType: "json",
|
|
38056
38637
|
bodyType: "json",
|
|
38057
38638
|
});
|
|
38058
|
-
|
|
38639
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38640
|
+
return $dara.cast<ListClusterKubeconfigStatesResponse>(await this.callApi(params, req, runtime), new ListClusterKubeconfigStatesResponse({}));
|
|
38641
|
+
} else {
|
|
38642
|
+
return $dara.cast<ListClusterKubeconfigStatesResponse>(await this.execute(params, req, runtime), new ListClusterKubeconfigStatesResponse({}));
|
|
38643
|
+
}
|
|
38644
|
+
|
|
38059
38645
|
}
|
|
38060
38646
|
|
|
38061
38647
|
/**
|
|
@@ -38108,7 +38694,12 @@ export default class Client extends OpenApi {
|
|
|
38108
38694
|
reqBodyType: "json",
|
|
38109
38695
|
bodyType: "json",
|
|
38110
38696
|
});
|
|
38111
|
-
|
|
38697
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38698
|
+
return $dara.cast<ListOperationPlansResponse>(await this.callApi(params, req, runtime), new ListOperationPlansResponse({}));
|
|
38699
|
+
} else {
|
|
38700
|
+
return $dara.cast<ListOperationPlansResponse>(await this.execute(params, req, runtime), new ListOperationPlansResponse({}));
|
|
38701
|
+
}
|
|
38702
|
+
|
|
38112
38703
|
}
|
|
38113
38704
|
|
|
38114
38705
|
/**
|
|
@@ -38179,7 +38770,12 @@ export default class Client extends OpenApi {
|
|
|
38179
38770
|
reqBodyType: "json",
|
|
38180
38771
|
bodyType: "json",
|
|
38181
38772
|
});
|
|
38182
|
-
|
|
38773
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38774
|
+
return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
38775
|
+
} else {
|
|
38776
|
+
return $dara.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
|
|
38777
|
+
}
|
|
38778
|
+
|
|
38183
38779
|
}
|
|
38184
38780
|
|
|
38185
38781
|
/**
|
|
@@ -38231,7 +38827,12 @@ export default class Client extends OpenApi {
|
|
|
38231
38827
|
reqBodyType: "json",
|
|
38232
38828
|
bodyType: "json",
|
|
38233
38829
|
});
|
|
38234
|
-
|
|
38830
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38831
|
+
return $dara.cast<ListUserKubeConfigStatesResponse>(await this.callApi(params, req, runtime), new ListUserKubeConfigStatesResponse({}));
|
|
38832
|
+
} else {
|
|
38833
|
+
return $dara.cast<ListUserKubeConfigStatesResponse>(await this.execute(params, req, runtime), new ListUserKubeConfigStatesResponse({}));
|
|
38834
|
+
}
|
|
38835
|
+
|
|
38235
38836
|
}
|
|
38236
38837
|
|
|
38237
38838
|
/**
|
|
@@ -38283,7 +38884,12 @@ export default class Client extends OpenApi {
|
|
|
38283
38884
|
reqBodyType: "json",
|
|
38284
38885
|
bodyType: "json",
|
|
38285
38886
|
});
|
|
38286
|
-
|
|
38887
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38888
|
+
return $dara.cast<MigrateClusterResponse>(await this.callApi(params, req, runtime), new MigrateClusterResponse({}));
|
|
38889
|
+
} else {
|
|
38890
|
+
return $dara.cast<MigrateClusterResponse>(await this.execute(params, req, runtime), new MigrateClusterResponse({}));
|
|
38891
|
+
}
|
|
38892
|
+
|
|
38287
38893
|
}
|
|
38288
38894
|
|
|
38289
38895
|
/**
|
|
@@ -38388,7 +38994,12 @@ export default class Client extends OpenApi {
|
|
|
38388
38994
|
reqBodyType: "json",
|
|
38389
38995
|
bodyType: "json",
|
|
38390
38996
|
});
|
|
38391
|
-
|
|
38997
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
38998
|
+
return $dara.cast<ModifyClusterResponse>(await this.callApi(params, req, runtime), new ModifyClusterResponse({}));
|
|
38999
|
+
} else {
|
|
39000
|
+
return $dara.cast<ModifyClusterResponse>(await this.execute(params, req, runtime), new ModifyClusterResponse({}));
|
|
39001
|
+
}
|
|
39002
|
+
|
|
38392
39003
|
}
|
|
38393
39004
|
|
|
38394
39005
|
/**
|
|
@@ -38439,7 +39050,12 @@ export default class Client extends OpenApi {
|
|
|
38439
39050
|
reqBodyType: "json",
|
|
38440
39051
|
bodyType: "none",
|
|
38441
39052
|
});
|
|
38442
|
-
|
|
39053
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39054
|
+
return $dara.cast<ModifyClusterAddonResponse>(await this.callApi(params, req, runtime), new ModifyClusterAddonResponse({}));
|
|
39055
|
+
} else {
|
|
39056
|
+
return $dara.cast<ModifyClusterAddonResponse>(await this.execute(params, req, runtime), new ModifyClusterAddonResponse({}));
|
|
39057
|
+
}
|
|
39058
|
+
|
|
38443
39059
|
}
|
|
38444
39060
|
|
|
38445
39061
|
/**
|
|
@@ -38493,7 +39109,12 @@ export default class Client extends OpenApi {
|
|
|
38493
39109
|
reqBodyType: "json",
|
|
38494
39110
|
bodyType: "none",
|
|
38495
39111
|
});
|
|
38496
|
-
|
|
39112
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39113
|
+
return $dara.cast<ModifyClusterConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyClusterConfigurationResponse({}));
|
|
39114
|
+
} else {
|
|
39115
|
+
return $dara.cast<ModifyClusterConfigurationResponse>(await this.execute(params, req, runtime), new ModifyClusterConfigurationResponse({}));
|
|
39116
|
+
}
|
|
39117
|
+
|
|
38497
39118
|
}
|
|
38498
39119
|
|
|
38499
39120
|
/**
|
|
@@ -38569,7 +39190,12 @@ export default class Client extends OpenApi {
|
|
|
38569
39190
|
reqBodyType: "json",
|
|
38570
39191
|
bodyType: "json",
|
|
38571
39192
|
});
|
|
38572
|
-
|
|
39193
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39194
|
+
return $dara.cast<ModifyClusterNodePoolResponse>(await this.callApi(params, req, runtime), new ModifyClusterNodePoolResponse({}));
|
|
39195
|
+
} else {
|
|
39196
|
+
return $dara.cast<ModifyClusterNodePoolResponse>(await this.execute(params, req, runtime), new ModifyClusterNodePoolResponse({}));
|
|
39197
|
+
}
|
|
39198
|
+
|
|
38573
39199
|
}
|
|
38574
39200
|
|
|
38575
39201
|
/**
|
|
@@ -38609,7 +39235,12 @@ export default class Client extends OpenApi {
|
|
|
38609
39235
|
reqBodyType: "json",
|
|
38610
39236
|
bodyType: "none",
|
|
38611
39237
|
});
|
|
38612
|
-
|
|
39238
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39239
|
+
return $dara.cast<ModifyClusterTagsResponse>(await this.callApi(params, req, runtime), new ModifyClusterTagsResponse({}));
|
|
39240
|
+
} else {
|
|
39241
|
+
return $dara.cast<ModifyClusterTagsResponse>(await this.execute(params, req, runtime), new ModifyClusterTagsResponse({}));
|
|
39242
|
+
}
|
|
39243
|
+
|
|
38613
39244
|
}
|
|
38614
39245
|
|
|
38615
39246
|
/**
|
|
@@ -38665,7 +39296,12 @@ export default class Client extends OpenApi {
|
|
|
38665
39296
|
reqBodyType: "json",
|
|
38666
39297
|
bodyType: "json",
|
|
38667
39298
|
});
|
|
38668
|
-
|
|
39299
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39300
|
+
return $dara.cast<ModifyNodePoolNodeConfigResponse>(await this.callApi(params, req, runtime), new ModifyNodePoolNodeConfigResponse({}));
|
|
39301
|
+
} else {
|
|
39302
|
+
return $dara.cast<ModifyNodePoolNodeConfigResponse>(await this.execute(params, req, runtime), new ModifyNodePoolNodeConfigResponse({}));
|
|
39303
|
+
}
|
|
39304
|
+
|
|
38669
39305
|
}
|
|
38670
39306
|
|
|
38671
39307
|
/**
|
|
@@ -38725,7 +39361,12 @@ export default class Client extends OpenApi {
|
|
|
38725
39361
|
reqBodyType: "json",
|
|
38726
39362
|
bodyType: "json",
|
|
38727
39363
|
});
|
|
38728
|
-
|
|
39364
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39365
|
+
return $dara.cast<ModifyPolicyInstanceResponse>(await this.callApi(params, req, runtime), new ModifyPolicyInstanceResponse({}));
|
|
39366
|
+
} else {
|
|
39367
|
+
return $dara.cast<ModifyPolicyInstanceResponse>(await this.execute(params, req, runtime), new ModifyPolicyInstanceResponse({}));
|
|
39368
|
+
}
|
|
39369
|
+
|
|
38729
39370
|
}
|
|
38730
39371
|
|
|
38731
39372
|
/**
|
|
@@ -38774,7 +39415,12 @@ export default class Client extends OpenApi {
|
|
|
38774
39415
|
reqBodyType: "json",
|
|
38775
39416
|
bodyType: "json",
|
|
38776
39417
|
});
|
|
38777
|
-
|
|
39418
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39419
|
+
return $dara.cast<OpenAckServiceResponse>(await this.callApi(params, req, runtime), new OpenAckServiceResponse({}));
|
|
39420
|
+
} else {
|
|
39421
|
+
return $dara.cast<OpenAckServiceResponse>(await this.execute(params, req, runtime), new OpenAckServiceResponse({}));
|
|
39422
|
+
}
|
|
39423
|
+
|
|
38778
39424
|
}
|
|
38779
39425
|
|
|
38780
39426
|
/**
|
|
@@ -38818,7 +39464,12 @@ export default class Client extends OpenApi {
|
|
|
38818
39464
|
reqBodyType: "json",
|
|
38819
39465
|
bodyType: "none",
|
|
38820
39466
|
});
|
|
38821
|
-
|
|
39467
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39468
|
+
return $dara.cast<PauseClusterUpgradeResponse>(await this.callApi(params, req, runtime), new PauseClusterUpgradeResponse({}));
|
|
39469
|
+
} else {
|
|
39470
|
+
return $dara.cast<PauseClusterUpgradeResponse>(await this.execute(params, req, runtime), new PauseClusterUpgradeResponse({}));
|
|
39471
|
+
}
|
|
39472
|
+
|
|
38822
39473
|
}
|
|
38823
39474
|
|
|
38824
39475
|
/**
|
|
@@ -38859,7 +39510,12 @@ export default class Client extends OpenApi {
|
|
|
38859
39510
|
reqBodyType: "json",
|
|
38860
39511
|
bodyType: "none",
|
|
38861
39512
|
});
|
|
38862
|
-
|
|
39513
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39514
|
+
return $dara.cast<PauseComponentUpgradeResponse>(await this.callApi(params, req, runtime), new PauseComponentUpgradeResponse({}));
|
|
39515
|
+
} else {
|
|
39516
|
+
return $dara.cast<PauseComponentUpgradeResponse>(await this.execute(params, req, runtime), new PauseComponentUpgradeResponse({}));
|
|
39517
|
+
}
|
|
39518
|
+
|
|
38863
39519
|
}
|
|
38864
39520
|
|
|
38865
39521
|
/**
|
|
@@ -38897,7 +39553,12 @@ export default class Client extends OpenApi {
|
|
|
38897
39553
|
reqBodyType: "json",
|
|
38898
39554
|
bodyType: "none",
|
|
38899
39555
|
});
|
|
38900
|
-
|
|
39556
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39557
|
+
return $dara.cast<PauseTaskResponse>(await this.callApi(params, req, runtime), new PauseTaskResponse({}));
|
|
39558
|
+
} else {
|
|
39559
|
+
return $dara.cast<PauseTaskResponse>(await this.execute(params, req, runtime), new PauseTaskResponse({}));
|
|
39560
|
+
}
|
|
39561
|
+
|
|
38901
39562
|
}
|
|
38902
39563
|
|
|
38903
39564
|
/**
|
|
@@ -38958,7 +39619,12 @@ export default class Client extends OpenApi {
|
|
|
38958
39619
|
reqBodyType: "json",
|
|
38959
39620
|
bodyType: "none",
|
|
38960
39621
|
});
|
|
38961
|
-
|
|
39622
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39623
|
+
return $dara.cast<RemoveClusterNodesResponse>(await this.callApi(params, req, runtime), new RemoveClusterNodesResponse({}));
|
|
39624
|
+
} else {
|
|
39625
|
+
return $dara.cast<RemoveClusterNodesResponse>(await this.execute(params, req, runtime), new RemoveClusterNodesResponse({}));
|
|
39626
|
+
}
|
|
39627
|
+
|
|
38962
39628
|
}
|
|
38963
39629
|
|
|
38964
39630
|
/**
|
|
@@ -39046,7 +39712,12 @@ export default class Client extends OpenApi {
|
|
|
39046
39712
|
reqBodyType: "json",
|
|
39047
39713
|
bodyType: "json",
|
|
39048
39714
|
});
|
|
39049
|
-
|
|
39715
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39716
|
+
return $dara.cast<RemoveNodePoolNodesResponse>(await this.callApi(params, req, runtime), new RemoveNodePoolNodesResponse({}));
|
|
39717
|
+
} else {
|
|
39718
|
+
return $dara.cast<RemoveNodePoolNodesResponse>(await this.execute(params, req, runtime), new RemoveNodePoolNodesResponse({}));
|
|
39719
|
+
}
|
|
39720
|
+
|
|
39050
39721
|
}
|
|
39051
39722
|
|
|
39052
39723
|
/**
|
|
@@ -39106,7 +39777,12 @@ export default class Client extends OpenApi {
|
|
|
39106
39777
|
reqBodyType: "json",
|
|
39107
39778
|
bodyType: "json",
|
|
39108
39779
|
});
|
|
39109
|
-
|
|
39780
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39781
|
+
return $dara.cast<RepairClusterNodePoolResponse>(await this.callApi(params, req, runtime), new RepairClusterNodePoolResponse({}));
|
|
39782
|
+
} else {
|
|
39783
|
+
return $dara.cast<RepairClusterNodePoolResponse>(await this.execute(params, req, runtime), new RepairClusterNodePoolResponse({}));
|
|
39784
|
+
}
|
|
39785
|
+
|
|
39110
39786
|
}
|
|
39111
39787
|
|
|
39112
39788
|
/**
|
|
@@ -39146,7 +39822,12 @@ export default class Client extends OpenApi {
|
|
|
39146
39822
|
reqBodyType: "json",
|
|
39147
39823
|
bodyType: "none",
|
|
39148
39824
|
});
|
|
39149
|
-
|
|
39825
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39826
|
+
return $dara.cast<ResumeComponentUpgradeResponse>(await this.callApi(params, req, runtime), new ResumeComponentUpgradeResponse({}));
|
|
39827
|
+
} else {
|
|
39828
|
+
return $dara.cast<ResumeComponentUpgradeResponse>(await this.execute(params, req, runtime), new ResumeComponentUpgradeResponse({}));
|
|
39829
|
+
}
|
|
39830
|
+
|
|
39150
39831
|
}
|
|
39151
39832
|
|
|
39152
39833
|
/**
|
|
@@ -39184,7 +39865,12 @@ export default class Client extends OpenApi {
|
|
|
39184
39865
|
reqBodyType: "json",
|
|
39185
39866
|
bodyType: "none",
|
|
39186
39867
|
});
|
|
39187
|
-
|
|
39868
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39869
|
+
return $dara.cast<ResumeTaskResponse>(await this.callApi(params, req, runtime), new ResumeTaskResponse({}));
|
|
39870
|
+
} else {
|
|
39871
|
+
return $dara.cast<ResumeTaskResponse>(await this.execute(params, req, runtime), new ResumeTaskResponse({}));
|
|
39872
|
+
}
|
|
39873
|
+
|
|
39188
39874
|
}
|
|
39189
39875
|
|
|
39190
39876
|
/**
|
|
@@ -39222,7 +39908,12 @@ export default class Client extends OpenApi {
|
|
|
39222
39908
|
reqBodyType: "json",
|
|
39223
39909
|
bodyType: "none",
|
|
39224
39910
|
});
|
|
39225
|
-
|
|
39911
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39912
|
+
return $dara.cast<ResumeUpgradeClusterResponse>(await this.callApi(params, req, runtime), new ResumeUpgradeClusterResponse({}));
|
|
39913
|
+
} else {
|
|
39914
|
+
return $dara.cast<ResumeUpgradeClusterResponse>(await this.execute(params, req, runtime), new ResumeUpgradeClusterResponse({}));
|
|
39915
|
+
}
|
|
39916
|
+
|
|
39226
39917
|
}
|
|
39227
39918
|
|
|
39228
39919
|
/**
|
|
@@ -39260,7 +39951,12 @@ export default class Client extends OpenApi {
|
|
|
39260
39951
|
reqBodyType: "json",
|
|
39261
39952
|
bodyType: "json",
|
|
39262
39953
|
});
|
|
39263
|
-
|
|
39954
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39955
|
+
return $dara.cast<RevokeK8sClusterKubeConfigResponse>(await this.callApi(params, req, runtime), new RevokeK8sClusterKubeConfigResponse({}));
|
|
39956
|
+
} else {
|
|
39957
|
+
return $dara.cast<RevokeK8sClusterKubeConfigResponse>(await this.execute(params, req, runtime), new RevokeK8sClusterKubeConfigResponse({}));
|
|
39958
|
+
}
|
|
39959
|
+
|
|
39264
39960
|
}
|
|
39265
39961
|
|
|
39266
39962
|
/**
|
|
@@ -39311,7 +40007,12 @@ export default class Client extends OpenApi {
|
|
|
39311
40007
|
reqBodyType: "json",
|
|
39312
40008
|
bodyType: "json",
|
|
39313
40009
|
});
|
|
39314
|
-
|
|
40010
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40011
|
+
return $dara.cast<RunClusterCheckResponse>(await this.callApi(params, req, runtime), new RunClusterCheckResponse({}));
|
|
40012
|
+
} else {
|
|
40013
|
+
return $dara.cast<RunClusterCheckResponse>(await this.execute(params, req, runtime), new RunClusterCheckResponse({}));
|
|
40014
|
+
}
|
|
40015
|
+
|
|
39315
40016
|
}
|
|
39316
40017
|
|
|
39317
40018
|
/**
|
|
@@ -39431,7 +40132,12 @@ export default class Client extends OpenApi {
|
|
|
39431
40132
|
reqBodyType: "json",
|
|
39432
40133
|
bodyType: "json",
|
|
39433
40134
|
});
|
|
39434
|
-
|
|
40135
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40136
|
+
return $dara.cast<ScaleClusterResponse>(await this.callApi(params, req, runtime), new ScaleClusterResponse({}));
|
|
40137
|
+
} else {
|
|
40138
|
+
return $dara.cast<ScaleClusterResponse>(await this.execute(params, req, runtime), new ScaleClusterResponse({}));
|
|
40139
|
+
}
|
|
40140
|
+
|
|
39435
40141
|
}
|
|
39436
40142
|
|
|
39437
40143
|
/**
|
|
@@ -39479,7 +40185,12 @@ export default class Client extends OpenApi {
|
|
|
39479
40185
|
reqBodyType: "json",
|
|
39480
40186
|
bodyType: "json",
|
|
39481
40187
|
});
|
|
39482
|
-
|
|
40188
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40189
|
+
return $dara.cast<ScaleClusterNodePoolResponse>(await this.callApi(params, req, runtime), new ScaleClusterNodePoolResponse({}));
|
|
40190
|
+
} else {
|
|
40191
|
+
return $dara.cast<ScaleClusterNodePoolResponse>(await this.execute(params, req, runtime), new ScaleClusterNodePoolResponse({}));
|
|
40192
|
+
}
|
|
40193
|
+
|
|
39483
40194
|
}
|
|
39484
40195
|
|
|
39485
40196
|
/**
|
|
@@ -39608,7 +40319,12 @@ export default class Client extends OpenApi {
|
|
|
39608
40319
|
reqBodyType: "json",
|
|
39609
40320
|
bodyType: "json",
|
|
39610
40321
|
});
|
|
39611
|
-
|
|
40322
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40323
|
+
return $dara.cast<ScaleOutClusterResponse>(await this.callApi(params, req, runtime), new ScaleOutClusterResponse({}));
|
|
40324
|
+
} else {
|
|
40325
|
+
return $dara.cast<ScaleOutClusterResponse>(await this.execute(params, req, runtime), new ScaleOutClusterResponse({}));
|
|
40326
|
+
}
|
|
40327
|
+
|
|
39612
40328
|
}
|
|
39613
40329
|
|
|
39614
40330
|
/**
|
|
@@ -39649,7 +40365,12 @@ export default class Client extends OpenApi {
|
|
|
39649
40365
|
reqBodyType: "json",
|
|
39650
40366
|
bodyType: "json",
|
|
39651
40367
|
});
|
|
39652
|
-
|
|
40368
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40369
|
+
return $dara.cast<ScanClusterVulsResponse>(await this.callApi(params, req, runtime), new ScanClusterVulsResponse({}));
|
|
40370
|
+
} else {
|
|
40371
|
+
return $dara.cast<ScanClusterVulsResponse>(await this.execute(params, req, runtime), new ScanClusterVulsResponse({}));
|
|
40372
|
+
}
|
|
40373
|
+
|
|
39653
40374
|
}
|
|
39654
40375
|
|
|
39655
40376
|
/**
|
|
@@ -39694,7 +40415,12 @@ export default class Client extends OpenApi {
|
|
|
39694
40415
|
reqBodyType: "json",
|
|
39695
40416
|
bodyType: "json",
|
|
39696
40417
|
});
|
|
39697
|
-
|
|
40418
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40419
|
+
return $dara.cast<StartAlertResponse>(await this.callApi(params, req, runtime), new StartAlertResponse({}));
|
|
40420
|
+
} else {
|
|
40421
|
+
return $dara.cast<StartAlertResponse>(await this.execute(params, req, runtime), new StartAlertResponse({}));
|
|
40422
|
+
}
|
|
40423
|
+
|
|
39698
40424
|
}
|
|
39699
40425
|
|
|
39700
40426
|
/**
|
|
@@ -39741,7 +40467,12 @@ export default class Client extends OpenApi {
|
|
|
39741
40467
|
reqBodyType: "json",
|
|
39742
40468
|
bodyType: "json",
|
|
39743
40469
|
});
|
|
39744
|
-
|
|
40470
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40471
|
+
return $dara.cast<StopAlertResponse>(await this.callApi(params, req, runtime), new StopAlertResponse({}));
|
|
40472
|
+
} else {
|
|
40473
|
+
return $dara.cast<StopAlertResponse>(await this.execute(params, req, runtime), new StopAlertResponse({}));
|
|
40474
|
+
}
|
|
40475
|
+
|
|
39745
40476
|
}
|
|
39746
40477
|
|
|
39747
40478
|
/**
|
|
@@ -39778,7 +40509,12 @@ export default class Client extends OpenApi {
|
|
|
39778
40509
|
reqBodyType: "json",
|
|
39779
40510
|
bodyType: "json",
|
|
39780
40511
|
});
|
|
39781
|
-
|
|
40512
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40513
|
+
return $dara.cast<SyncClusterNodePoolResponse>(await this.callApi(params, req, runtime), new SyncClusterNodePoolResponse({}));
|
|
40514
|
+
} else {
|
|
40515
|
+
return $dara.cast<SyncClusterNodePoolResponse>(await this.execute(params, req, runtime), new SyncClusterNodePoolResponse({}));
|
|
40516
|
+
}
|
|
40517
|
+
|
|
39782
40518
|
}
|
|
39783
40519
|
|
|
39784
40520
|
/**
|
|
@@ -39833,7 +40569,12 @@ export default class Client extends OpenApi {
|
|
|
39833
40569
|
reqBodyType: "json",
|
|
39834
40570
|
bodyType: "json",
|
|
39835
40571
|
});
|
|
39836
|
-
|
|
40572
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40573
|
+
return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
40574
|
+
} else {
|
|
40575
|
+
return $dara.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
|
|
40576
|
+
}
|
|
40577
|
+
|
|
39837
40578
|
}
|
|
39838
40579
|
|
|
39839
40580
|
/**
|
|
@@ -39873,7 +40614,12 @@ export default class Client extends OpenApi {
|
|
|
39873
40614
|
reqBodyType: "json",
|
|
39874
40615
|
bodyType: "json",
|
|
39875
40616
|
});
|
|
39876
|
-
|
|
40617
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40618
|
+
return $dara.cast<UnInstallClusterAddonsResponse>(await this.callApi(params, req, runtime), new UnInstallClusterAddonsResponse({}));
|
|
40619
|
+
} else {
|
|
40620
|
+
return $dara.cast<UnInstallClusterAddonsResponse>(await this.execute(params, req, runtime), new UnInstallClusterAddonsResponse({}));
|
|
40621
|
+
}
|
|
40622
|
+
|
|
39877
40623
|
}
|
|
39878
40624
|
|
|
39879
40625
|
/**
|
|
@@ -39944,7 +40690,12 @@ export default class Client extends OpenApi {
|
|
|
39944
40690
|
reqBodyType: "json",
|
|
39945
40691
|
bodyType: "json",
|
|
39946
40692
|
});
|
|
39947
|
-
|
|
40693
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40694
|
+
return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
40695
|
+
} else {
|
|
40696
|
+
return $dara.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
|
|
40697
|
+
}
|
|
40698
|
+
|
|
39948
40699
|
}
|
|
39949
40700
|
|
|
39950
40701
|
/**
|
|
@@ -39996,7 +40747,12 @@ export default class Client extends OpenApi {
|
|
|
39996
40747
|
reqBodyType: "json",
|
|
39997
40748
|
bodyType: "json",
|
|
39998
40749
|
});
|
|
39999
|
-
|
|
40750
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40751
|
+
return $dara.cast<UpdateClusterAuditLogConfigResponse>(await this.callApi(params, req, runtime), new UpdateClusterAuditLogConfigResponse({}));
|
|
40752
|
+
} else {
|
|
40753
|
+
return $dara.cast<UpdateClusterAuditLogConfigResponse>(await this.execute(params, req, runtime), new UpdateClusterAuditLogConfigResponse({}));
|
|
40754
|
+
}
|
|
40755
|
+
|
|
40000
40756
|
}
|
|
40001
40757
|
|
|
40002
40758
|
/**
|
|
@@ -40056,7 +40812,12 @@ export default class Client extends OpenApi {
|
|
|
40056
40812
|
reqBodyType: "json",
|
|
40057
40813
|
bodyType: "json",
|
|
40058
40814
|
});
|
|
40059
|
-
|
|
40815
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40816
|
+
return $dara.cast<UpdateContactGroupForAlertResponse>(await this.callApi(params, req, runtime), new UpdateContactGroupForAlertResponse({}));
|
|
40817
|
+
} else {
|
|
40818
|
+
return $dara.cast<UpdateContactGroupForAlertResponse>(await this.execute(params, req, runtime), new UpdateContactGroupForAlertResponse({}));
|
|
40819
|
+
}
|
|
40820
|
+
|
|
40060
40821
|
}
|
|
40061
40822
|
|
|
40062
40823
|
/**
|
|
@@ -40113,7 +40874,12 @@ export default class Client extends OpenApi {
|
|
|
40113
40874
|
reqBodyType: "json",
|
|
40114
40875
|
bodyType: "json",
|
|
40115
40876
|
});
|
|
40116
|
-
|
|
40877
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40878
|
+
return $dara.cast<UpdateControlPlaneLogResponse>(await this.callApi(params, req, runtime), new UpdateControlPlaneLogResponse({}));
|
|
40879
|
+
} else {
|
|
40880
|
+
return $dara.cast<UpdateControlPlaneLogResponse>(await this.execute(params, req, runtime), new UpdateControlPlaneLogResponse({}));
|
|
40881
|
+
}
|
|
40882
|
+
|
|
40117
40883
|
}
|
|
40118
40884
|
|
|
40119
40885
|
/**
|
|
@@ -40166,7 +40932,12 @@ export default class Client extends OpenApi {
|
|
|
40166
40932
|
reqBodyType: "json",
|
|
40167
40933
|
bodyType: "none",
|
|
40168
40934
|
});
|
|
40169
|
-
|
|
40935
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40936
|
+
return $dara.cast<UpdateK8sClusterUserConfigExpireResponse>(await this.callApi(params, req, runtime), new UpdateK8sClusterUserConfigExpireResponse({}));
|
|
40937
|
+
} else {
|
|
40938
|
+
return $dara.cast<UpdateK8sClusterUserConfigExpireResponse>(await this.execute(params, req, runtime), new UpdateK8sClusterUserConfigExpireResponse({}));
|
|
40939
|
+
}
|
|
40940
|
+
|
|
40170
40941
|
}
|
|
40171
40942
|
|
|
40172
40943
|
/**
|
|
@@ -40227,7 +40998,12 @@ export default class Client extends OpenApi {
|
|
|
40227
40998
|
reqBodyType: "json",
|
|
40228
40999
|
bodyType: "json",
|
|
40229
41000
|
});
|
|
40230
|
-
|
|
41001
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41002
|
+
return $dara.cast<UpdateResourcesDeleteProtectionResponse>(await this.callApi(params, req, runtime), new UpdateResourcesDeleteProtectionResponse({}));
|
|
41003
|
+
} else {
|
|
41004
|
+
return $dara.cast<UpdateResourcesDeleteProtectionResponse>(await this.execute(params, req, runtime), new UpdateResourcesDeleteProtectionResponse({}));
|
|
41005
|
+
}
|
|
41006
|
+
|
|
40231
41007
|
}
|
|
40232
41008
|
|
|
40233
41009
|
/**
|
|
@@ -40288,7 +41064,12 @@ export default class Client extends OpenApi {
|
|
|
40288
41064
|
reqBodyType: "json",
|
|
40289
41065
|
bodyType: "none",
|
|
40290
41066
|
});
|
|
40291
|
-
|
|
41067
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41068
|
+
return $dara.cast<UpdateTemplateResponse>(await this.callApi(params, req, runtime), new UpdateTemplateResponse({}));
|
|
41069
|
+
} else {
|
|
41070
|
+
return $dara.cast<UpdateTemplateResponse>(await this.execute(params, req, runtime), new UpdateTemplateResponse({}));
|
|
41071
|
+
}
|
|
41072
|
+
|
|
40292
41073
|
}
|
|
40293
41074
|
|
|
40294
41075
|
/**
|
|
@@ -40338,7 +41119,12 @@ export default class Client extends OpenApi {
|
|
|
40338
41119
|
reqBodyType: "json",
|
|
40339
41120
|
bodyType: "none",
|
|
40340
41121
|
});
|
|
40341
|
-
|
|
41122
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41123
|
+
return $dara.cast<UpdateUserPermissionsResponse>(await this.callApi(params, req, runtime), new UpdateUserPermissionsResponse({}));
|
|
41124
|
+
} else {
|
|
41125
|
+
return $dara.cast<UpdateUserPermissionsResponse>(await this.execute(params, req, runtime), new UpdateUserPermissionsResponse({}));
|
|
41126
|
+
}
|
|
41127
|
+
|
|
40342
41128
|
}
|
|
40343
41129
|
|
|
40344
41130
|
/**
|
|
@@ -40410,7 +41196,12 @@ export default class Client extends OpenApi {
|
|
|
40410
41196
|
reqBodyType: "json",
|
|
40411
41197
|
bodyType: "json",
|
|
40412
41198
|
});
|
|
40413
|
-
|
|
41199
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41200
|
+
return $dara.cast<UpgradeClusterResponse>(await this.callApi(params, req, runtime), new UpgradeClusterResponse({}));
|
|
41201
|
+
} else {
|
|
41202
|
+
return $dara.cast<UpgradeClusterResponse>(await this.execute(params, req, runtime), new UpgradeClusterResponse({}));
|
|
41203
|
+
}
|
|
41204
|
+
|
|
40414
41205
|
}
|
|
40415
41206
|
|
|
40416
41207
|
/**
|
|
@@ -40457,7 +41248,12 @@ export default class Client extends OpenApi {
|
|
|
40457
41248
|
reqBodyType: "json",
|
|
40458
41249
|
bodyType: "json",
|
|
40459
41250
|
});
|
|
40460
|
-
|
|
41251
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41252
|
+
return $dara.cast<UpgradeClusterAddonsResponse>(await this.callApi(params, req, runtime), new UpgradeClusterAddonsResponse({}));
|
|
41253
|
+
} else {
|
|
41254
|
+
return $dara.cast<UpgradeClusterAddonsResponse>(await this.execute(params, req, runtime), new UpgradeClusterAddonsResponse({}));
|
|
41255
|
+
}
|
|
41256
|
+
|
|
40461
41257
|
}
|
|
40462
41258
|
|
|
40463
41259
|
/**
|
|
@@ -40529,7 +41325,12 @@ export default class Client extends OpenApi {
|
|
|
40529
41325
|
reqBodyType: "json",
|
|
40530
41326
|
bodyType: "json",
|
|
40531
41327
|
});
|
|
40532
|
-
|
|
41328
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41329
|
+
return $dara.cast<UpgradeClusterNodepoolResponse>(await this.callApi(params, req, runtime), new UpgradeClusterNodepoolResponse({}));
|
|
41330
|
+
} else {
|
|
41331
|
+
return $dara.cast<UpgradeClusterNodepoolResponse>(await this.execute(params, req, runtime), new UpgradeClusterNodepoolResponse({}));
|
|
41332
|
+
}
|
|
41333
|
+
|
|
40533
41334
|
}
|
|
40534
41335
|
|
|
40535
41336
|
/**
|