@alicloud/eas20210701 7.0.1 → 7.0.3
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 +22 -3
- package/dist/client.js +113 -596
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +135 -597
package/src/client.ts
CHANGED
|
@@ -991,10 +991,17 @@ export class DescribeMachineSpecResponseBodyTypes extends $dara.Model {
|
|
|
991
991
|
|
|
992
992
|
export class DescribeRegionsResponseBodyRegions extends $dara.Model {
|
|
993
993
|
/**
|
|
994
|
+
* @remarks
|
|
995
|
+
* The region ID.
|
|
996
|
+
*
|
|
994
997
|
* @example
|
|
995
998
|
* cn-shanghai
|
|
996
999
|
*/
|
|
997
1000
|
regionId?: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* @remarks
|
|
1003
|
+
* The region name.
|
|
1004
|
+
*/
|
|
998
1005
|
regionName?: string;
|
|
999
1006
|
static names(): { [key: string]: string } {
|
|
1000
1007
|
return {
|
|
@@ -2167,6 +2174,7 @@ export class ListGatewayDomainsResponseBodyCustomDomains extends $dara.Model {
|
|
|
2167
2174
|
}
|
|
2168
2175
|
|
|
2169
2176
|
export class ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcList extends $dara.Model {
|
|
2177
|
+
accountId?: string;
|
|
2170
2178
|
authoritativeDnsEnabled?: boolean;
|
|
2171
2179
|
/**
|
|
2172
2180
|
* @remarks
|
|
@@ -2236,6 +2244,7 @@ export class ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcList exten
|
|
|
2236
2244
|
vpcId?: string;
|
|
2237
2245
|
static names(): { [key: string]: string } {
|
|
2238
2246
|
return {
|
|
2247
|
+
accountId: 'AccountId',
|
|
2239
2248
|
authoritativeDnsEnabled: 'AuthoritativeDnsEnabled',
|
|
2240
2249
|
ip: 'Ip',
|
|
2241
2250
|
securityGroupId: 'SecurityGroupId',
|
|
@@ -2247,6 +2256,7 @@ export class ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcList exten
|
|
|
2247
2256
|
|
|
2248
2257
|
static types(): { [key: string]: any } {
|
|
2249
2258
|
return {
|
|
2259
|
+
accountId: 'string',
|
|
2250
2260
|
authoritativeDnsEnabled: 'boolean',
|
|
2251
2261
|
ip: 'string',
|
|
2252
2262
|
securityGroupId: 'string',
|
|
@@ -4830,6 +4840,7 @@ export class CreateGatewayResponse extends $dara.Model {
|
|
|
4830
4840
|
}
|
|
4831
4841
|
|
|
4832
4842
|
export class CreateGatewayIntranetLinkedVpcRequest extends $dara.Model {
|
|
4843
|
+
accountId?: string;
|
|
4833
4844
|
enableAuthoritativeDns?: boolean;
|
|
4834
4845
|
/**
|
|
4835
4846
|
* @remarks
|
|
@@ -4849,6 +4860,7 @@ export class CreateGatewayIntranetLinkedVpcRequest extends $dara.Model {
|
|
|
4849
4860
|
vpcId?: string;
|
|
4850
4861
|
static names(): { [key: string]: string } {
|
|
4851
4862
|
return {
|
|
4863
|
+
accountId: 'AccountId',
|
|
4852
4864
|
enableAuthoritativeDns: 'EnableAuthoritativeDns',
|
|
4853
4865
|
vSwitchId: 'VSwitchId',
|
|
4854
4866
|
vpcId: 'VpcId',
|
|
@@ -4857,6 +4869,7 @@ export class CreateGatewayIntranetLinkedVpcRequest extends $dara.Model {
|
|
|
4857
4869
|
|
|
4858
4870
|
static types(): { [key: string]: any } {
|
|
4859
4871
|
return {
|
|
4872
|
+
accountId: 'string',
|
|
4860
4873
|
enableAuthoritativeDns: 'boolean',
|
|
4861
4874
|
vSwitchId: 'string',
|
|
4862
4875
|
vpcId: 'string',
|
|
@@ -5169,6 +5182,7 @@ export class CreateResourceRequest extends $dara.Model {
|
|
|
5169
5182
|
* The custom tag.
|
|
5170
5183
|
*/
|
|
5171
5184
|
labels?: { [key: string]: string };
|
|
5185
|
+
resourceName?: string;
|
|
5172
5186
|
/**
|
|
5173
5187
|
* @remarks
|
|
5174
5188
|
* The type of the resource group. Valid values:
|
|
@@ -5210,6 +5224,7 @@ export class CreateResourceRequest extends $dara.Model {
|
|
|
5210
5224
|
ecsInstanceCount: 'EcsInstanceCount',
|
|
5211
5225
|
ecsInstanceType: 'EcsInstanceType',
|
|
5212
5226
|
labels: 'Labels',
|
|
5227
|
+
resourceName: 'ResourceName',
|
|
5213
5228
|
resourceType: 'ResourceType',
|
|
5214
5229
|
selfManagedResourceOptions: 'SelfManagedResourceOptions',
|
|
5215
5230
|
systemDiskSize: 'SystemDiskSize',
|
|
@@ -5224,6 +5239,7 @@ export class CreateResourceRequest extends $dara.Model {
|
|
|
5224
5239
|
ecsInstanceCount: 'number',
|
|
5225
5240
|
ecsInstanceType: 'string',
|
|
5226
5241
|
labels: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5242
|
+
resourceName: 'string',
|
|
5227
5243
|
resourceType: 'string',
|
|
5228
5244
|
selfManagedResourceOptions: CreateResourceRequestSelfManagedResourceOptions,
|
|
5229
5245
|
systemDiskSize: 'number',
|
|
@@ -5425,6 +5441,8 @@ export class CreateResourceInstancesRequest extends $dara.Model {
|
|
|
5425
5441
|
*
|
|
5426
5442
|
* @example
|
|
5427
5443
|
* x112223333
|
|
5444
|
+
*
|
|
5445
|
+
* @deprecated
|
|
5428
5446
|
*/
|
|
5429
5447
|
userData?: string;
|
|
5430
5448
|
/**
|
|
@@ -9051,7 +9069,7 @@ export class DescribeGroupEndpointsResponseBody extends $dara.Model {
|
|
|
9051
9069
|
accessToken?: string;
|
|
9052
9070
|
/**
|
|
9053
9071
|
* @remarks
|
|
9054
|
-
* The endpoints of service
|
|
9072
|
+
* The endpoints of the service group.
|
|
9055
9073
|
*/
|
|
9056
9074
|
endpoints?: DescribeGroupEndpointsResponseBodyEndpoints[];
|
|
9057
9075
|
/**
|
|
@@ -9282,8 +9300,15 @@ export class DescribeMachineSpecResponse extends $dara.Model {
|
|
|
9282
9300
|
}
|
|
9283
9301
|
|
|
9284
9302
|
export class DescribeRegionsResponseBody extends $dara.Model {
|
|
9303
|
+
/**
|
|
9304
|
+
* @remarks
|
|
9305
|
+
* The available regions.
|
|
9306
|
+
*/
|
|
9285
9307
|
regions?: DescribeRegionsResponseBodyRegions[];
|
|
9286
9308
|
/**
|
|
9309
|
+
* @remarks
|
|
9310
|
+
* The request ID.
|
|
9311
|
+
*
|
|
9287
9312
|
* @example
|
|
9288
9313
|
* 40325405-579C-4D82****
|
|
9289
9314
|
*/
|
|
@@ -18191,12 +18216,7 @@ export default class Client extends OpenApi {
|
|
|
18191
18216
|
reqBodyType: "json",
|
|
18192
18217
|
bodyType: "json",
|
|
18193
18218
|
});
|
|
18194
|
-
|
|
18195
|
-
return $dara.cast<AttachGatewayDomainResponse>(await this.callApi(params, req, runtime), new AttachGatewayDomainResponse({}));
|
|
18196
|
-
} else {
|
|
18197
|
-
return $dara.cast<AttachGatewayDomainResponse>(await this.execute(params, req, runtime), new AttachGatewayDomainResponse({}));
|
|
18198
|
-
}
|
|
18199
|
-
|
|
18219
|
+
return $dara.cast<AttachGatewayDomainResponse>(await this.callApi(params, req, runtime), new AttachGatewayDomainResponse({}));
|
|
18200
18220
|
}
|
|
18201
18221
|
|
|
18202
18222
|
/**
|
|
@@ -18248,12 +18268,7 @@ export default class Client extends OpenApi {
|
|
|
18248
18268
|
reqBodyType: "json",
|
|
18249
18269
|
bodyType: "json",
|
|
18250
18270
|
});
|
|
18251
|
-
|
|
18252
|
-
return $dara.cast<CloneServiceResponse>(await this.callApi(params, req, runtime), new CloneServiceResponse({}));
|
|
18253
|
-
} else {
|
|
18254
|
-
return $dara.cast<CloneServiceResponse>(await this.execute(params, req, runtime), new CloneServiceResponse({}));
|
|
18255
|
-
}
|
|
18256
|
-
|
|
18271
|
+
return $dara.cast<CloneServiceResponse>(await this.callApi(params, req, runtime), new CloneServiceResponse({}));
|
|
18257
18272
|
}
|
|
18258
18273
|
|
|
18259
18274
|
/**
|
|
@@ -18290,12 +18305,7 @@ export default class Client extends OpenApi {
|
|
|
18290
18305
|
reqBodyType: "json",
|
|
18291
18306
|
bodyType: "json",
|
|
18292
18307
|
});
|
|
18293
|
-
|
|
18294
|
-
return $dara.cast<CommitServiceResponse>(await this.callApi(params, req, runtime), new CommitServiceResponse({}));
|
|
18295
|
-
} else {
|
|
18296
|
-
return $dara.cast<CommitServiceResponse>(await this.execute(params, req, runtime), new CommitServiceResponse({}));
|
|
18297
|
-
}
|
|
18298
|
-
|
|
18308
|
+
return $dara.cast<CommitServiceResponse>(await this.callApi(params, req, runtime), new CommitServiceResponse({}));
|
|
18299
18309
|
}
|
|
18300
18310
|
|
|
18301
18311
|
/**
|
|
@@ -18348,12 +18358,7 @@ export default class Client extends OpenApi {
|
|
|
18348
18358
|
reqBodyType: "json",
|
|
18349
18359
|
bodyType: "json",
|
|
18350
18360
|
});
|
|
18351
|
-
|
|
18352
|
-
return $dara.cast<CreateAclPolicyResponse>(await this.callApi(params, req, runtime), new CreateAclPolicyResponse({}));
|
|
18353
|
-
} else {
|
|
18354
|
-
return $dara.cast<CreateAclPolicyResponse>(await this.execute(params, req, runtime), new CreateAclPolicyResponse({}));
|
|
18355
|
-
}
|
|
18356
|
-
|
|
18361
|
+
return $dara.cast<CreateAclPolicyResponse>(await this.callApi(params, req, runtime), new CreateAclPolicyResponse({}));
|
|
18357
18362
|
}
|
|
18358
18363
|
|
|
18359
18364
|
/**
|
|
@@ -18428,12 +18433,7 @@ export default class Client extends OpenApi {
|
|
|
18428
18433
|
reqBodyType: "json",
|
|
18429
18434
|
bodyType: "json",
|
|
18430
18435
|
});
|
|
18431
|
-
|
|
18432
|
-
return $dara.cast<CreateAppServiceResponse>(await this.callApi(params, req, runtime), new CreateAppServiceResponse({}));
|
|
18433
|
-
} else {
|
|
18434
|
-
return $dara.cast<CreateAppServiceResponse>(await this.execute(params, req, runtime), new CreateAppServiceResponse({}));
|
|
18435
|
-
}
|
|
18436
|
-
|
|
18436
|
+
return $dara.cast<CreateAppServiceResponse>(await this.callApi(params, req, runtime), new CreateAppServiceResponse({}));
|
|
18437
18437
|
}
|
|
18438
18438
|
|
|
18439
18439
|
/**
|
|
@@ -18473,12 +18473,7 @@ export default class Client extends OpenApi {
|
|
|
18473
18473
|
reqBodyType: "json",
|
|
18474
18474
|
bodyType: "json",
|
|
18475
18475
|
});
|
|
18476
|
-
|
|
18477
|
-
return $dara.cast<CreateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new CreateBenchmarkTaskResponse({}));
|
|
18478
|
-
} else {
|
|
18479
|
-
return $dara.cast<CreateBenchmarkTaskResponse>(await this.execute(params, req, runtime), new CreateBenchmarkTaskResponse({}));
|
|
18480
|
-
}
|
|
18481
|
-
|
|
18476
|
+
return $dara.cast<CreateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new CreateBenchmarkTaskResponse({}));
|
|
18482
18477
|
}
|
|
18483
18478
|
|
|
18484
18479
|
/**
|
|
@@ -18553,12 +18548,7 @@ export default class Client extends OpenApi {
|
|
|
18553
18548
|
reqBodyType: "json",
|
|
18554
18549
|
bodyType: "json",
|
|
18555
18550
|
});
|
|
18556
|
-
|
|
18557
|
-
return $dara.cast<CreateGatewayResponse>(await this.callApi(params, req, runtime), new CreateGatewayResponse({}));
|
|
18558
|
-
} else {
|
|
18559
|
-
return $dara.cast<CreateGatewayResponse>(await this.execute(params, req, runtime), new CreateGatewayResponse({}));
|
|
18560
|
-
}
|
|
18561
|
-
|
|
18551
|
+
return $dara.cast<CreateGatewayResponse>(await this.callApi(params, req, runtime), new CreateGatewayResponse({}));
|
|
18562
18552
|
}
|
|
18563
18553
|
|
|
18564
18554
|
/**
|
|
@@ -18584,6 +18574,10 @@ export default class Client extends OpenApi {
|
|
|
18584
18574
|
async createGatewayIntranetLinkedVpcWithOptions(ClusterId: string, GatewayId: string, request: CreateGatewayIntranetLinkedVpcRequest, headers: {[key: string ]: string}, runtime: $dara.RuntimeOptions): Promise<CreateGatewayIntranetLinkedVpcResponse> {
|
|
18585
18575
|
request.validate();
|
|
18586
18576
|
let query : {[key: string ]: any} = { };
|
|
18577
|
+
if (!$dara.isNull(request.accountId)) {
|
|
18578
|
+
query["AccountId"] = request.accountId;
|
|
18579
|
+
}
|
|
18580
|
+
|
|
18587
18581
|
if (!$dara.isNull(request.enableAuthoritativeDns)) {
|
|
18588
18582
|
query["EnableAuthoritativeDns"] = request.enableAuthoritativeDns;
|
|
18589
18583
|
}
|
|
@@ -18611,12 +18605,7 @@ export default class Client extends OpenApi {
|
|
|
18611
18605
|
reqBodyType: "json",
|
|
18612
18606
|
bodyType: "json",
|
|
18613
18607
|
});
|
|
18614
|
-
|
|
18615
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcResponse({}));
|
|
18616
|
-
} else {
|
|
18617
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcResponse>(await this.execute(params, req, runtime), new CreateGatewayIntranetLinkedVpcResponse({}));
|
|
18618
|
-
}
|
|
18619
|
-
|
|
18608
|
+
return $dara.cast<CreateGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcResponse({}));
|
|
18620
18609
|
}
|
|
18621
18610
|
|
|
18622
18611
|
/**
|
|
@@ -18671,12 +18660,7 @@ export default class Client extends OpenApi {
|
|
|
18671
18660
|
reqBodyType: "json",
|
|
18672
18661
|
bodyType: "json",
|
|
18673
18662
|
});
|
|
18674
|
-
|
|
18675
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcPeerResponse({}));
|
|
18676
|
-
} else {
|
|
18677
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcPeerResponse>(await this.execute(params, req, runtime), new CreateGatewayIntranetLinkedVpcPeerResponse({}));
|
|
18678
|
-
}
|
|
18679
|
-
|
|
18663
|
+
return $dara.cast<CreateGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcPeerResponse({}));
|
|
18680
18664
|
}
|
|
18681
18665
|
|
|
18682
18666
|
/**
|
|
@@ -18725,6 +18709,10 @@ export default class Client extends OpenApi {
|
|
|
18725
18709
|
body["Labels"] = request.labels;
|
|
18726
18710
|
}
|
|
18727
18711
|
|
|
18712
|
+
if (!$dara.isNull(request.resourceName)) {
|
|
18713
|
+
body["ResourceName"] = request.resourceName;
|
|
18714
|
+
}
|
|
18715
|
+
|
|
18728
18716
|
if (!$dara.isNull(request.resourceType)) {
|
|
18729
18717
|
body["ResourceType"] = request.resourceType;
|
|
18730
18718
|
}
|
|
@@ -18756,12 +18744,7 @@ export default class Client extends OpenApi {
|
|
|
18756
18744
|
reqBodyType: "json",
|
|
18757
18745
|
bodyType: "json",
|
|
18758
18746
|
});
|
|
18759
|
-
|
|
18760
|
-
return $dara.cast<CreateResourceResponse>(await this.callApi(params, req, runtime), new CreateResourceResponse({}));
|
|
18761
|
-
} else {
|
|
18762
|
-
return $dara.cast<CreateResourceResponse>(await this.execute(params, req, runtime), new CreateResourceResponse({}));
|
|
18763
|
-
}
|
|
18764
|
-
|
|
18747
|
+
return $dara.cast<CreateResourceResponse>(await this.callApi(params, req, runtime), new CreateResourceResponse({}));
|
|
18765
18748
|
}
|
|
18766
18749
|
|
|
18767
18750
|
/**
|
|
@@ -18837,12 +18820,7 @@ export default class Client extends OpenApi {
|
|
|
18837
18820
|
reqBodyType: "json",
|
|
18838
18821
|
bodyType: "json",
|
|
18839
18822
|
});
|
|
18840
|
-
|
|
18841
|
-
return $dara.cast<CreateResourceInstancesResponse>(await this.callApi(params, req, runtime), new CreateResourceInstancesResponse({}));
|
|
18842
|
-
} else {
|
|
18843
|
-
return $dara.cast<CreateResourceInstancesResponse>(await this.execute(params, req, runtime), new CreateResourceInstancesResponse({}));
|
|
18844
|
-
}
|
|
18845
|
-
|
|
18823
|
+
return $dara.cast<CreateResourceInstancesResponse>(await this.callApi(params, req, runtime), new CreateResourceInstancesResponse({}));
|
|
18846
18824
|
}
|
|
18847
18825
|
|
|
18848
18826
|
/**
|
|
@@ -18891,12 +18869,7 @@ export default class Client extends OpenApi {
|
|
|
18891
18869
|
reqBodyType: "json",
|
|
18892
18870
|
bodyType: "json",
|
|
18893
18871
|
});
|
|
18894
|
-
|
|
18895
|
-
return $dara.cast<CreateResourceLogResponse>(await this.callApi(params, req, runtime), new CreateResourceLogResponse({}));
|
|
18896
|
-
} else {
|
|
18897
|
-
return $dara.cast<CreateResourceLogResponse>(await this.execute(params, req, runtime), new CreateResourceLogResponse({}));
|
|
18898
|
-
}
|
|
18899
|
-
|
|
18872
|
+
return $dara.cast<CreateResourceLogResponse>(await this.callApi(params, req, runtime), new CreateResourceLogResponse({}));
|
|
18900
18873
|
}
|
|
18901
18874
|
|
|
18902
18875
|
/**
|
|
@@ -18959,12 +18932,7 @@ export default class Client extends OpenApi {
|
|
|
18959
18932
|
reqBodyType: "json",
|
|
18960
18933
|
bodyType: "json",
|
|
18961
18934
|
});
|
|
18962
|
-
|
|
18963
|
-
return $dara.cast<CreateServiceResponse>(await this.callApi(params, req, runtime), new CreateServiceResponse({}));
|
|
18964
|
-
} else {
|
|
18965
|
-
return $dara.cast<CreateServiceResponse>(await this.execute(params, req, runtime), new CreateServiceResponse({}));
|
|
18966
|
-
}
|
|
18967
|
-
|
|
18935
|
+
return $dara.cast<CreateServiceResponse>(await this.callApi(params, req, runtime), new CreateServiceResponse({}));
|
|
18968
18936
|
}
|
|
18969
18937
|
|
|
18970
18938
|
/**
|
|
@@ -19024,12 +18992,7 @@ export default class Client extends OpenApi {
|
|
|
19024
18992
|
reqBodyType: "json",
|
|
19025
18993
|
bodyType: "json",
|
|
19026
18994
|
});
|
|
19027
|
-
|
|
19028
|
-
return $dara.cast<CreateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceAutoScalerResponse({}));
|
|
19029
|
-
} else {
|
|
19030
|
-
return $dara.cast<CreateServiceAutoScalerResponse>(await this.execute(params, req, runtime), new CreateServiceAutoScalerResponse({}));
|
|
19031
|
-
}
|
|
19032
|
-
|
|
18995
|
+
return $dara.cast<CreateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceAutoScalerResponse({}));
|
|
19033
18996
|
}
|
|
19034
18997
|
|
|
19035
18998
|
/**
|
|
@@ -19078,12 +19041,7 @@ export default class Client extends OpenApi {
|
|
|
19078
19041
|
reqBodyType: "json",
|
|
19079
19042
|
bodyType: "json",
|
|
19080
19043
|
});
|
|
19081
|
-
|
|
19082
|
-
return $dara.cast<CreateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceCronScalerResponse({}));
|
|
19083
|
-
} else {
|
|
19084
|
-
return $dara.cast<CreateServiceCronScalerResponse>(await this.execute(params, req, runtime), new CreateServiceCronScalerResponse({}));
|
|
19085
|
-
}
|
|
19086
|
-
|
|
19044
|
+
return $dara.cast<CreateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceCronScalerResponse({}));
|
|
19087
19045
|
}
|
|
19088
19046
|
|
|
19089
19047
|
/**
|
|
@@ -19132,12 +19090,7 @@ export default class Client extends OpenApi {
|
|
|
19132
19090
|
reqBodyType: "json",
|
|
19133
19091
|
bodyType: "json",
|
|
19134
19092
|
});
|
|
19135
|
-
|
|
19136
|
-
return $dara.cast<CreateServiceMirrorResponse>(await this.callApi(params, req, runtime), new CreateServiceMirrorResponse({}));
|
|
19137
|
-
} else {
|
|
19138
|
-
return $dara.cast<CreateServiceMirrorResponse>(await this.execute(params, req, runtime), new CreateServiceMirrorResponse({}));
|
|
19139
|
-
}
|
|
19140
|
-
|
|
19093
|
+
return $dara.cast<CreateServiceMirrorResponse>(await this.callApi(params, req, runtime), new CreateServiceMirrorResponse({}));
|
|
19141
19094
|
}
|
|
19142
19095
|
|
|
19143
19096
|
/**
|
|
@@ -19190,12 +19143,7 @@ export default class Client extends OpenApi {
|
|
|
19190
19143
|
reqBodyType: "json",
|
|
19191
19144
|
bodyType: "json",
|
|
19192
19145
|
});
|
|
19193
|
-
|
|
19194
|
-
return $dara.cast<CreateVirtualResourceResponse>(await this.callApi(params, req, runtime), new CreateVirtualResourceResponse({}));
|
|
19195
|
-
} else {
|
|
19196
|
-
return $dara.cast<CreateVirtualResourceResponse>(await this.execute(params, req, runtime), new CreateVirtualResourceResponse({}));
|
|
19197
|
-
}
|
|
19198
|
-
|
|
19146
|
+
return $dara.cast<CreateVirtualResourceResponse>(await this.callApi(params, req, runtime), new CreateVirtualResourceResponse({}));
|
|
19199
19147
|
}
|
|
19200
19148
|
|
|
19201
19149
|
/**
|
|
@@ -19250,12 +19198,7 @@ export default class Client extends OpenApi {
|
|
|
19250
19198
|
reqBodyType: "json",
|
|
19251
19199
|
bodyType: "json",
|
|
19252
19200
|
});
|
|
19253
|
-
|
|
19254
|
-
return $dara.cast<DeleteAclPolicyResponse>(await this.callApi(params, req, runtime), new DeleteAclPolicyResponse({}));
|
|
19255
|
-
} else {
|
|
19256
|
-
return $dara.cast<DeleteAclPolicyResponse>(await this.execute(params, req, runtime), new DeleteAclPolicyResponse({}));
|
|
19257
|
-
}
|
|
19258
|
-
|
|
19201
|
+
return $dara.cast<DeleteAclPolicyResponse>(await this.callApi(params, req, runtime), new DeleteAclPolicyResponse({}));
|
|
19259
19202
|
}
|
|
19260
19203
|
|
|
19261
19204
|
/**
|
|
@@ -19292,12 +19235,7 @@ export default class Client extends OpenApi {
|
|
|
19292
19235
|
reqBodyType: "json",
|
|
19293
19236
|
bodyType: "json",
|
|
19294
19237
|
});
|
|
19295
|
-
|
|
19296
|
-
return $dara.cast<DeleteBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DeleteBenchmarkTaskResponse({}));
|
|
19297
|
-
} else {
|
|
19298
|
-
return $dara.cast<DeleteBenchmarkTaskResponse>(await this.execute(params, req, runtime), new DeleteBenchmarkTaskResponse({}));
|
|
19299
|
-
}
|
|
19300
|
-
|
|
19238
|
+
return $dara.cast<DeleteBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DeleteBenchmarkTaskResponse({}));
|
|
19301
19239
|
}
|
|
19302
19240
|
|
|
19303
19241
|
/**
|
|
@@ -19332,12 +19270,7 @@ export default class Client extends OpenApi {
|
|
|
19332
19270
|
reqBodyType: "json",
|
|
19333
19271
|
bodyType: "json",
|
|
19334
19272
|
});
|
|
19335
|
-
|
|
19336
|
-
return $dara.cast<DeleteGatewayResponse>(await this.callApi(params, req, runtime), new DeleteGatewayResponse({}));
|
|
19337
|
-
} else {
|
|
19338
|
-
return $dara.cast<DeleteGatewayResponse>(await this.execute(params, req, runtime), new DeleteGatewayResponse({}));
|
|
19339
|
-
}
|
|
19340
|
-
|
|
19273
|
+
return $dara.cast<DeleteGatewayResponse>(await this.callApi(params, req, runtime), new DeleteGatewayResponse({}));
|
|
19341
19274
|
}
|
|
19342
19275
|
|
|
19343
19276
|
/**
|
|
@@ -19384,12 +19317,7 @@ export default class Client extends OpenApi {
|
|
|
19384
19317
|
reqBodyType: "json",
|
|
19385
19318
|
bodyType: "json",
|
|
19386
19319
|
});
|
|
19387
|
-
|
|
19388
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcResponse({}));
|
|
19389
|
-
} else {
|
|
19390
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcResponse>(await this.execute(params, req, runtime), new DeleteGatewayIntranetLinkedVpcResponse({}));
|
|
19391
|
-
}
|
|
19392
|
-
|
|
19320
|
+
return $dara.cast<DeleteGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcResponse({}));
|
|
19393
19321
|
}
|
|
19394
19322
|
|
|
19395
19323
|
/**
|
|
@@ -19444,12 +19372,7 @@ export default class Client extends OpenApi {
|
|
|
19444
19372
|
reqBodyType: "json",
|
|
19445
19373
|
bodyType: "json",
|
|
19446
19374
|
});
|
|
19447
|
-
|
|
19448
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcPeerResponse({}));
|
|
19449
|
-
} else {
|
|
19450
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcPeerResponse>(await this.execute(params, req, runtime), new DeleteGatewayIntranetLinkedVpcPeerResponse({}));
|
|
19451
|
-
}
|
|
19452
|
-
|
|
19375
|
+
return $dara.cast<DeleteGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcPeerResponse({}));
|
|
19453
19376
|
}
|
|
19454
19377
|
|
|
19455
19378
|
/**
|
|
@@ -19486,12 +19409,7 @@ export default class Client extends OpenApi {
|
|
|
19486
19409
|
reqBodyType: "json",
|
|
19487
19410
|
bodyType: "json",
|
|
19488
19411
|
});
|
|
19489
|
-
|
|
19490
|
-
return $dara.cast<DeleteResourceResponse>(await this.callApi(params, req, runtime), new DeleteResourceResponse({}));
|
|
19491
|
-
} else {
|
|
19492
|
-
return $dara.cast<DeleteResourceResponse>(await this.execute(params, req, runtime), new DeleteResourceResponse({}));
|
|
19493
|
-
}
|
|
19494
|
-
|
|
19412
|
+
return $dara.cast<DeleteResourceResponse>(await this.callApi(params, req, runtime), new DeleteResourceResponse({}));
|
|
19495
19413
|
}
|
|
19496
19414
|
|
|
19497
19415
|
/**
|
|
@@ -19526,12 +19444,7 @@ export default class Client extends OpenApi {
|
|
|
19526
19444
|
reqBodyType: "json",
|
|
19527
19445
|
bodyType: "json",
|
|
19528
19446
|
});
|
|
19529
|
-
|
|
19530
|
-
return $dara.cast<DeleteResourceDLinkResponse>(await this.callApi(params, req, runtime), new DeleteResourceDLinkResponse({}));
|
|
19531
|
-
} else {
|
|
19532
|
-
return $dara.cast<DeleteResourceDLinkResponse>(await this.execute(params, req, runtime), new DeleteResourceDLinkResponse({}));
|
|
19533
|
-
}
|
|
19534
|
-
|
|
19447
|
+
return $dara.cast<DeleteResourceDLinkResponse>(await this.callApi(params, req, runtime), new DeleteResourceDLinkResponse({}));
|
|
19535
19448
|
}
|
|
19536
19449
|
|
|
19537
19450
|
/**
|
|
@@ -19592,12 +19505,7 @@ export default class Client extends OpenApi {
|
|
|
19592
19505
|
reqBodyType: "json",
|
|
19593
19506
|
bodyType: "json",
|
|
19594
19507
|
});
|
|
19595
|
-
|
|
19596
|
-
return $dara.cast<DeleteResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstanceLabelResponse({}));
|
|
19597
|
-
} else {
|
|
19598
|
-
return $dara.cast<DeleteResourceInstanceLabelResponse>(await this.execute(params, req, runtime), new DeleteResourceInstanceLabelResponse({}));
|
|
19599
|
-
}
|
|
19600
|
-
|
|
19508
|
+
return $dara.cast<DeleteResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstanceLabelResponse({}));
|
|
19601
19509
|
}
|
|
19602
19510
|
|
|
19603
19511
|
/**
|
|
@@ -19646,12 +19554,7 @@ export default class Client extends OpenApi {
|
|
|
19646
19554
|
reqBodyType: "json",
|
|
19647
19555
|
bodyType: "json",
|
|
19648
19556
|
});
|
|
19649
|
-
|
|
19650
|
-
return $dara.cast<DeleteResourceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstancesResponse({}));
|
|
19651
|
-
} else {
|
|
19652
|
-
return $dara.cast<DeleteResourceInstancesResponse>(await this.execute(params, req, runtime), new DeleteResourceInstancesResponse({}));
|
|
19653
|
-
}
|
|
19654
|
-
|
|
19557
|
+
return $dara.cast<DeleteResourceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstancesResponse({}));
|
|
19655
19558
|
}
|
|
19656
19559
|
|
|
19657
19560
|
/**
|
|
@@ -19688,12 +19591,7 @@ export default class Client extends OpenApi {
|
|
|
19688
19591
|
reqBodyType: "json",
|
|
19689
19592
|
bodyType: "json",
|
|
19690
19593
|
});
|
|
19691
|
-
|
|
19692
|
-
return $dara.cast<DeleteResourceLogResponse>(await this.callApi(params, req, runtime), new DeleteResourceLogResponse({}));
|
|
19693
|
-
} else {
|
|
19694
|
-
return $dara.cast<DeleteResourceLogResponse>(await this.execute(params, req, runtime), new DeleteResourceLogResponse({}));
|
|
19695
|
-
}
|
|
19696
|
-
|
|
19594
|
+
return $dara.cast<DeleteResourceLogResponse>(await this.callApi(params, req, runtime), new DeleteResourceLogResponse({}));
|
|
19697
19595
|
}
|
|
19698
19596
|
|
|
19699
19597
|
/**
|
|
@@ -19728,12 +19626,7 @@ export default class Client extends OpenApi {
|
|
|
19728
19626
|
reqBodyType: "json",
|
|
19729
19627
|
bodyType: "json",
|
|
19730
19628
|
});
|
|
19731
|
-
|
|
19732
|
-
return $dara.cast<DeleteServiceResponse>(await this.callApi(params, req, runtime), new DeleteServiceResponse({}));
|
|
19733
|
-
} else {
|
|
19734
|
-
return $dara.cast<DeleteServiceResponse>(await this.execute(params, req, runtime), new DeleteServiceResponse({}));
|
|
19735
|
-
}
|
|
19736
|
-
|
|
19629
|
+
return $dara.cast<DeleteServiceResponse>(await this.callApi(params, req, runtime), new DeleteServiceResponse({}));
|
|
19737
19630
|
}
|
|
19738
19631
|
|
|
19739
19632
|
/**
|
|
@@ -19768,12 +19661,7 @@ export default class Client extends OpenApi {
|
|
|
19768
19661
|
reqBodyType: "json",
|
|
19769
19662
|
bodyType: "json",
|
|
19770
19663
|
});
|
|
19771
|
-
|
|
19772
|
-
return $dara.cast<DeleteServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceAutoScalerResponse({}));
|
|
19773
|
-
} else {
|
|
19774
|
-
return $dara.cast<DeleteServiceAutoScalerResponse>(await this.execute(params, req, runtime), new DeleteServiceAutoScalerResponse({}));
|
|
19775
|
-
}
|
|
19776
|
-
|
|
19664
|
+
return $dara.cast<DeleteServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceAutoScalerResponse({}));
|
|
19777
19665
|
}
|
|
19778
19666
|
|
|
19779
19667
|
/**
|
|
@@ -19808,12 +19696,7 @@ export default class Client extends OpenApi {
|
|
|
19808
19696
|
reqBodyType: "json",
|
|
19809
19697
|
bodyType: "json",
|
|
19810
19698
|
});
|
|
19811
|
-
|
|
19812
|
-
return $dara.cast<DeleteServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceCronScalerResponse({}));
|
|
19813
|
-
} else {
|
|
19814
|
-
return $dara.cast<DeleteServiceCronScalerResponse>(await this.execute(params, req, runtime), new DeleteServiceCronScalerResponse({}));
|
|
19815
|
-
}
|
|
19816
|
-
|
|
19699
|
+
return $dara.cast<DeleteServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceCronScalerResponse({}));
|
|
19817
19700
|
}
|
|
19818
19701
|
|
|
19819
19702
|
/**
|
|
@@ -19864,12 +19747,7 @@ export default class Client extends OpenApi {
|
|
|
19864
19747
|
reqBodyType: "json",
|
|
19865
19748
|
bodyType: "json",
|
|
19866
19749
|
});
|
|
19867
|
-
|
|
19868
|
-
return $dara.cast<DeleteServiceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteServiceInstancesResponse({}));
|
|
19869
|
-
} else {
|
|
19870
|
-
return $dara.cast<DeleteServiceInstancesResponse>(await this.execute(params, req, runtime), new DeleteServiceInstancesResponse({}));
|
|
19871
|
-
}
|
|
19872
|
-
|
|
19750
|
+
return $dara.cast<DeleteServiceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteServiceInstancesResponse({}));
|
|
19873
19751
|
}
|
|
19874
19752
|
|
|
19875
19753
|
/**
|
|
@@ -19920,12 +19798,7 @@ export default class Client extends OpenApi {
|
|
|
19920
19798
|
reqBodyType: "json",
|
|
19921
19799
|
bodyType: "json",
|
|
19922
19800
|
});
|
|
19923
|
-
|
|
19924
|
-
return $dara.cast<DeleteServiceLabelResponse>(await this.callApi(params, req, runtime), new DeleteServiceLabelResponse({}));
|
|
19925
|
-
} else {
|
|
19926
|
-
return $dara.cast<DeleteServiceLabelResponse>(await this.execute(params, req, runtime), new DeleteServiceLabelResponse({}));
|
|
19927
|
-
}
|
|
19928
|
-
|
|
19801
|
+
return $dara.cast<DeleteServiceLabelResponse>(await this.callApi(params, req, runtime), new DeleteServiceLabelResponse({}));
|
|
19929
19802
|
}
|
|
19930
19803
|
|
|
19931
19804
|
/**
|
|
@@ -19962,12 +19835,7 @@ export default class Client extends OpenApi {
|
|
|
19962
19835
|
reqBodyType: "json",
|
|
19963
19836
|
bodyType: "json",
|
|
19964
19837
|
});
|
|
19965
|
-
|
|
19966
|
-
return $dara.cast<DeleteServiceMirrorResponse>(await this.callApi(params, req, runtime), new DeleteServiceMirrorResponse({}));
|
|
19967
|
-
} else {
|
|
19968
|
-
return $dara.cast<DeleteServiceMirrorResponse>(await this.execute(params, req, runtime), new DeleteServiceMirrorResponse({}));
|
|
19969
|
-
}
|
|
19970
|
-
|
|
19838
|
+
return $dara.cast<DeleteServiceMirrorResponse>(await this.callApi(params, req, runtime), new DeleteServiceMirrorResponse({}));
|
|
19971
19839
|
}
|
|
19972
19840
|
|
|
19973
19841
|
/**
|
|
@@ -20002,12 +19870,7 @@ export default class Client extends OpenApi {
|
|
|
20002
19870
|
reqBodyType: "json",
|
|
20003
19871
|
bodyType: "json",
|
|
20004
19872
|
});
|
|
20005
|
-
|
|
20006
|
-
return $dara.cast<DeleteVirtualResourceResponse>(await this.callApi(params, req, runtime), new DeleteVirtualResourceResponse({}));
|
|
20007
|
-
} else {
|
|
20008
|
-
return $dara.cast<DeleteVirtualResourceResponse>(await this.execute(params, req, runtime), new DeleteVirtualResourceResponse({}));
|
|
20009
|
-
}
|
|
20010
|
-
|
|
19873
|
+
return $dara.cast<DeleteVirtualResourceResponse>(await this.callApi(params, req, runtime), new DeleteVirtualResourceResponse({}));
|
|
20011
19874
|
}
|
|
20012
19875
|
|
|
20013
19876
|
/**
|
|
@@ -20042,12 +19905,7 @@ export default class Client extends OpenApi {
|
|
|
20042
19905
|
reqBodyType: "json",
|
|
20043
19906
|
bodyType: "json",
|
|
20044
19907
|
});
|
|
20045
|
-
|
|
20046
|
-
return $dara.cast<DescribeBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskResponse({}));
|
|
20047
|
-
} else {
|
|
20048
|
-
return $dara.cast<DescribeBenchmarkTaskResponse>(await this.execute(params, req, runtime), new DescribeBenchmarkTaskResponse({}));
|
|
20049
|
-
}
|
|
20050
|
-
|
|
19908
|
+
return $dara.cast<DescribeBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskResponse({}));
|
|
20051
19909
|
}
|
|
20052
19910
|
|
|
20053
19911
|
/**
|
|
@@ -20090,12 +19948,7 @@ export default class Client extends OpenApi {
|
|
|
20090
19948
|
reqBodyType: "json",
|
|
20091
19949
|
bodyType: "json",
|
|
20092
19950
|
});
|
|
20093
|
-
|
|
20094
|
-
return $dara.cast<DescribeBenchmarkTaskReportResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskReportResponse({}));
|
|
20095
|
-
} else {
|
|
20096
|
-
return $dara.cast<DescribeBenchmarkTaskReportResponse>(await this.execute(params, req, runtime), new DescribeBenchmarkTaskReportResponse({}));
|
|
20097
|
-
}
|
|
20098
|
-
|
|
19951
|
+
return $dara.cast<DescribeBenchmarkTaskReportResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskReportResponse({}));
|
|
20099
19952
|
}
|
|
20100
19953
|
|
|
20101
19954
|
/**
|
|
@@ -20132,12 +19985,7 @@ export default class Client extends OpenApi {
|
|
|
20132
19985
|
reqBodyType: "json",
|
|
20133
19986
|
bodyType: "json",
|
|
20134
19987
|
});
|
|
20135
|
-
|
|
20136
|
-
return $dara.cast<DescribeGatewayResponse>(await this.callApi(params, req, runtime), new DescribeGatewayResponse({}));
|
|
20137
|
-
} else {
|
|
20138
|
-
return $dara.cast<DescribeGatewayResponse>(await this.execute(params, req, runtime), new DescribeGatewayResponse({}));
|
|
20139
|
-
}
|
|
20140
|
-
|
|
19988
|
+
return $dara.cast<DescribeGatewayResponse>(await this.callApi(params, req, runtime), new DescribeGatewayResponse({}));
|
|
20141
19989
|
}
|
|
20142
19990
|
|
|
20143
19991
|
/**
|
|
@@ -20172,12 +20020,7 @@ export default class Client extends OpenApi {
|
|
|
20172
20020
|
reqBodyType: "json",
|
|
20173
20021
|
bodyType: "json",
|
|
20174
20022
|
});
|
|
20175
|
-
|
|
20176
|
-
return $dara.cast<DescribeGroupResponse>(await this.callApi(params, req, runtime), new DescribeGroupResponse({}));
|
|
20177
|
-
} else {
|
|
20178
|
-
return $dara.cast<DescribeGroupResponse>(await this.execute(params, req, runtime), new DescribeGroupResponse({}));
|
|
20179
|
-
}
|
|
20180
|
-
|
|
20023
|
+
return $dara.cast<DescribeGroupResponse>(await this.callApi(params, req, runtime), new DescribeGroupResponse({}));
|
|
20181
20024
|
}
|
|
20182
20025
|
|
|
20183
20026
|
/**
|
|
@@ -20212,12 +20055,7 @@ export default class Client extends OpenApi {
|
|
|
20212
20055
|
reqBodyType: "json",
|
|
20213
20056
|
bodyType: "json",
|
|
20214
20057
|
});
|
|
20215
|
-
|
|
20216
|
-
return $dara.cast<DescribeGroupEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeGroupEndpointsResponse({}));
|
|
20217
|
-
} else {
|
|
20218
|
-
return $dara.cast<DescribeGroupEndpointsResponse>(await this.execute(params, req, runtime), new DescribeGroupEndpointsResponse({}));
|
|
20219
|
-
}
|
|
20220
|
-
|
|
20058
|
+
return $dara.cast<DescribeGroupEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeGroupEndpointsResponse({}));
|
|
20221
20059
|
}
|
|
20222
20060
|
|
|
20223
20061
|
/**
|
|
@@ -20266,12 +20104,7 @@ export default class Client extends OpenApi {
|
|
|
20266
20104
|
reqBodyType: "json",
|
|
20267
20105
|
bodyType: "json",
|
|
20268
20106
|
});
|
|
20269
|
-
|
|
20270
|
-
return $dara.cast<DescribeMachineSpecResponse>(await this.callApi(params, req, runtime), new DescribeMachineSpecResponse({}));
|
|
20271
|
-
} else {
|
|
20272
|
-
return $dara.cast<DescribeMachineSpecResponse>(await this.execute(params, req, runtime), new DescribeMachineSpecResponse({}));
|
|
20273
|
-
}
|
|
20274
|
-
|
|
20107
|
+
return $dara.cast<DescribeMachineSpecResponse>(await this.callApi(params, req, runtime), new DescribeMachineSpecResponse({}));
|
|
20275
20108
|
}
|
|
20276
20109
|
|
|
20277
20110
|
/**
|
|
@@ -20287,7 +20120,7 @@ export default class Client extends OpenApi {
|
|
|
20287
20120
|
}
|
|
20288
20121
|
|
|
20289
20122
|
/**
|
|
20290
|
-
*
|
|
20123
|
+
* Queries available regions.
|
|
20291
20124
|
*
|
|
20292
20125
|
* @param headers - map
|
|
20293
20126
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20308,16 +20141,11 @@ export default class Client extends OpenApi {
|
|
|
20308
20141
|
reqBodyType: "json",
|
|
20309
20142
|
bodyType: "json",
|
|
20310
20143
|
});
|
|
20311
|
-
|
|
20312
|
-
return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
20313
|
-
} else {
|
|
20314
|
-
return $dara.cast<DescribeRegionsResponse>(await this.execute(params, req, runtime), new DescribeRegionsResponse({}));
|
|
20315
|
-
}
|
|
20316
|
-
|
|
20144
|
+
return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
20317
20145
|
}
|
|
20318
20146
|
|
|
20319
20147
|
/**
|
|
20320
|
-
*
|
|
20148
|
+
* Queries available regions.
|
|
20321
20149
|
* @returns DescribeRegionsResponse
|
|
20322
20150
|
*/
|
|
20323
20151
|
async describeRegions(): Promise<DescribeRegionsResponse> {
|
|
@@ -20348,12 +20176,7 @@ export default class Client extends OpenApi {
|
|
|
20348
20176
|
reqBodyType: "json",
|
|
20349
20177
|
bodyType: "json",
|
|
20350
20178
|
});
|
|
20351
|
-
|
|
20352
|
-
return $dara.cast<DescribeResourceResponse>(await this.callApi(params, req, runtime), new DescribeResourceResponse({}));
|
|
20353
|
-
} else {
|
|
20354
|
-
return $dara.cast<DescribeResourceResponse>(await this.execute(params, req, runtime), new DescribeResourceResponse({}));
|
|
20355
|
-
}
|
|
20356
|
-
|
|
20179
|
+
return $dara.cast<DescribeResourceResponse>(await this.callApi(params, req, runtime), new DescribeResourceResponse({}));
|
|
20357
20180
|
}
|
|
20358
20181
|
|
|
20359
20182
|
/**
|
|
@@ -20388,12 +20211,7 @@ export default class Client extends OpenApi {
|
|
|
20388
20211
|
reqBodyType: "json",
|
|
20389
20212
|
bodyType: "json",
|
|
20390
20213
|
});
|
|
20391
|
-
|
|
20392
|
-
return $dara.cast<DescribeResourceDLinkResponse>(await this.callApi(params, req, runtime), new DescribeResourceDLinkResponse({}));
|
|
20393
|
-
} else {
|
|
20394
|
-
return $dara.cast<DescribeResourceDLinkResponse>(await this.execute(params, req, runtime), new DescribeResourceDLinkResponse({}));
|
|
20395
|
-
}
|
|
20396
|
-
|
|
20214
|
+
return $dara.cast<DescribeResourceDLinkResponse>(await this.callApi(params, req, runtime), new DescribeResourceDLinkResponse({}));
|
|
20397
20215
|
}
|
|
20398
20216
|
|
|
20399
20217
|
/**
|
|
@@ -20428,12 +20246,7 @@ export default class Client extends OpenApi {
|
|
|
20428
20246
|
reqBodyType: "json",
|
|
20429
20247
|
bodyType: "json",
|
|
20430
20248
|
});
|
|
20431
|
-
|
|
20432
|
-
return $dara.cast<DescribeResourceLogResponse>(await this.callApi(params, req, runtime), new DescribeResourceLogResponse({}));
|
|
20433
|
-
} else {
|
|
20434
|
-
return $dara.cast<DescribeResourceLogResponse>(await this.execute(params, req, runtime), new DescribeResourceLogResponse({}));
|
|
20435
|
-
}
|
|
20436
|
-
|
|
20249
|
+
return $dara.cast<DescribeResourceLogResponse>(await this.callApi(params, req, runtime), new DescribeResourceLogResponse({}));
|
|
20437
20250
|
}
|
|
20438
20251
|
|
|
20439
20252
|
/**
|
|
@@ -20468,12 +20281,7 @@ export default class Client extends OpenApi {
|
|
|
20468
20281
|
reqBodyType: "json",
|
|
20469
20282
|
bodyType: "json",
|
|
20470
20283
|
});
|
|
20471
|
-
|
|
20472
|
-
return $dara.cast<DescribeServiceResponse>(await this.callApi(params, req, runtime), new DescribeServiceResponse({}));
|
|
20473
|
-
} else {
|
|
20474
|
-
return $dara.cast<DescribeServiceResponse>(await this.execute(params, req, runtime), new DescribeServiceResponse({}));
|
|
20475
|
-
}
|
|
20476
|
-
|
|
20284
|
+
return $dara.cast<DescribeServiceResponse>(await this.callApi(params, req, runtime), new DescribeServiceResponse({}));
|
|
20477
20285
|
}
|
|
20478
20286
|
|
|
20479
20287
|
/**
|
|
@@ -20508,12 +20316,7 @@ export default class Client extends OpenApi {
|
|
|
20508
20316
|
reqBodyType: "json",
|
|
20509
20317
|
bodyType: "json",
|
|
20510
20318
|
});
|
|
20511
|
-
|
|
20512
|
-
return $dara.cast<DescribeServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceAutoScalerResponse({}));
|
|
20513
|
-
} else {
|
|
20514
|
-
return $dara.cast<DescribeServiceAutoScalerResponse>(await this.execute(params, req, runtime), new DescribeServiceAutoScalerResponse({}));
|
|
20515
|
-
}
|
|
20516
|
-
|
|
20319
|
+
return $dara.cast<DescribeServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceAutoScalerResponse({}));
|
|
20517
20320
|
}
|
|
20518
20321
|
|
|
20519
20322
|
/**
|
|
@@ -20548,12 +20351,7 @@ export default class Client extends OpenApi {
|
|
|
20548
20351
|
reqBodyType: "json",
|
|
20549
20352
|
bodyType: "json",
|
|
20550
20353
|
});
|
|
20551
|
-
|
|
20552
|
-
return $dara.cast<DescribeServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceCronScalerResponse({}));
|
|
20553
|
-
} else {
|
|
20554
|
-
return $dara.cast<DescribeServiceCronScalerResponse>(await this.execute(params, req, runtime), new DescribeServiceCronScalerResponse({}));
|
|
20555
|
-
}
|
|
20556
|
-
|
|
20354
|
+
return $dara.cast<DescribeServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceCronScalerResponse({}));
|
|
20557
20355
|
}
|
|
20558
20356
|
|
|
20559
20357
|
/**
|
|
@@ -20588,12 +20386,7 @@ export default class Client extends OpenApi {
|
|
|
20588
20386
|
reqBodyType: "json",
|
|
20589
20387
|
bodyType: "json",
|
|
20590
20388
|
});
|
|
20591
|
-
|
|
20592
|
-
return $dara.cast<DescribeServiceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceDiagnosisResponse({}));
|
|
20593
|
-
} else {
|
|
20594
|
-
return $dara.cast<DescribeServiceDiagnosisResponse>(await this.execute(params, req, runtime), new DescribeServiceDiagnosisResponse({}));
|
|
20595
|
-
}
|
|
20596
|
-
|
|
20389
|
+
return $dara.cast<DescribeServiceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceDiagnosisResponse({}));
|
|
20597
20390
|
}
|
|
20598
20391
|
|
|
20599
20392
|
/**
|
|
@@ -20628,12 +20421,7 @@ export default class Client extends OpenApi {
|
|
|
20628
20421
|
reqBodyType: "json",
|
|
20629
20422
|
bodyType: "json",
|
|
20630
20423
|
});
|
|
20631
|
-
|
|
20632
|
-
return $dara.cast<DescribeServiceEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeServiceEndpointsResponse({}));
|
|
20633
|
-
} else {
|
|
20634
|
-
return $dara.cast<DescribeServiceEndpointsResponse>(await this.execute(params, req, runtime), new DescribeServiceEndpointsResponse({}));
|
|
20635
|
-
}
|
|
20636
|
-
|
|
20424
|
+
return $dara.cast<DescribeServiceEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeServiceEndpointsResponse({}));
|
|
20637
20425
|
}
|
|
20638
20426
|
|
|
20639
20427
|
/**
|
|
@@ -20696,12 +20484,7 @@ export default class Client extends OpenApi {
|
|
|
20696
20484
|
reqBodyType: "json",
|
|
20697
20485
|
bodyType: "json",
|
|
20698
20486
|
});
|
|
20699
|
-
|
|
20700
|
-
return $dara.cast<DescribeServiceEventResponse>(await this.callApi(params, req, runtime), new DescribeServiceEventResponse({}));
|
|
20701
|
-
} else {
|
|
20702
|
-
return $dara.cast<DescribeServiceEventResponse>(await this.execute(params, req, runtime), new DescribeServiceEventResponse({}));
|
|
20703
|
-
}
|
|
20704
|
-
|
|
20487
|
+
return $dara.cast<DescribeServiceEventResponse>(await this.callApi(params, req, runtime), new DescribeServiceEventResponse({}));
|
|
20705
20488
|
}
|
|
20706
20489
|
|
|
20707
20490
|
/**
|
|
@@ -20738,12 +20521,7 @@ export default class Client extends OpenApi {
|
|
|
20738
20521
|
reqBodyType: "json",
|
|
20739
20522
|
bodyType: "json",
|
|
20740
20523
|
});
|
|
20741
|
-
|
|
20742
|
-
return $dara.cast<DescribeServiceInstanceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceInstanceDiagnosisResponse({}));
|
|
20743
|
-
} else {
|
|
20744
|
-
return $dara.cast<DescribeServiceInstanceDiagnosisResponse>(await this.execute(params, req, runtime), new DescribeServiceInstanceDiagnosisResponse({}));
|
|
20745
|
-
}
|
|
20746
|
-
|
|
20524
|
+
return $dara.cast<DescribeServiceInstanceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceInstanceDiagnosisResponse({}));
|
|
20747
20525
|
}
|
|
20748
20526
|
|
|
20749
20527
|
/**
|
|
@@ -20818,12 +20596,7 @@ export default class Client extends OpenApi {
|
|
|
20818
20596
|
reqBodyType: "json",
|
|
20819
20597
|
bodyType: "json",
|
|
20820
20598
|
});
|
|
20821
|
-
|
|
20822
|
-
return $dara.cast<DescribeServiceLogResponse>(await this.callApi(params, req, runtime), new DescribeServiceLogResponse({}));
|
|
20823
|
-
} else {
|
|
20824
|
-
return $dara.cast<DescribeServiceLogResponse>(await this.execute(params, req, runtime), new DescribeServiceLogResponse({}));
|
|
20825
|
-
}
|
|
20826
|
-
|
|
20599
|
+
return $dara.cast<DescribeServiceLogResponse>(await this.callApi(params, req, runtime), new DescribeServiceLogResponse({}));
|
|
20827
20600
|
}
|
|
20828
20601
|
|
|
20829
20602
|
/**
|
|
@@ -20860,12 +20633,7 @@ export default class Client extends OpenApi {
|
|
|
20860
20633
|
reqBodyType: "json",
|
|
20861
20634
|
bodyType: "json",
|
|
20862
20635
|
});
|
|
20863
|
-
|
|
20864
|
-
return $dara.cast<DescribeServiceMirrorResponse>(await this.callApi(params, req, runtime), new DescribeServiceMirrorResponse({}));
|
|
20865
|
-
} else {
|
|
20866
|
-
return $dara.cast<DescribeServiceMirrorResponse>(await this.execute(params, req, runtime), new DescribeServiceMirrorResponse({}));
|
|
20867
|
-
}
|
|
20868
|
-
|
|
20636
|
+
return $dara.cast<DescribeServiceMirrorResponse>(await this.callApi(params, req, runtime), new DescribeServiceMirrorResponse({}));
|
|
20869
20637
|
}
|
|
20870
20638
|
|
|
20871
20639
|
/**
|
|
@@ -20916,12 +20684,7 @@ export default class Client extends OpenApi {
|
|
|
20916
20684
|
reqBodyType: "json",
|
|
20917
20685
|
bodyType: "json",
|
|
20918
20686
|
});
|
|
20919
|
-
|
|
20920
|
-
return $dara.cast<DescribeServiceSignedUrlResponse>(await this.callApi(params, req, runtime), new DescribeServiceSignedUrlResponse({}));
|
|
20921
|
-
} else {
|
|
20922
|
-
return $dara.cast<DescribeServiceSignedUrlResponse>(await this.execute(params, req, runtime), new DescribeServiceSignedUrlResponse({}));
|
|
20923
|
-
}
|
|
20924
|
-
|
|
20687
|
+
return $dara.cast<DescribeServiceSignedUrlResponse>(await this.callApi(params, req, runtime), new DescribeServiceSignedUrlResponse({}));
|
|
20925
20688
|
}
|
|
20926
20689
|
|
|
20927
20690
|
/**
|
|
@@ -20970,12 +20733,7 @@ export default class Client extends OpenApi {
|
|
|
20970
20733
|
reqBodyType: "json",
|
|
20971
20734
|
bodyType: "json",
|
|
20972
20735
|
});
|
|
20973
|
-
|
|
20974
|
-
return $dara.cast<DescribeSpotDiscountHistoryResponse>(await this.callApi(params, req, runtime), new DescribeSpotDiscountHistoryResponse({}));
|
|
20975
|
-
} else {
|
|
20976
|
-
return $dara.cast<DescribeSpotDiscountHistoryResponse>(await this.execute(params, req, runtime), new DescribeSpotDiscountHistoryResponse({}));
|
|
20977
|
-
}
|
|
20978
|
-
|
|
20736
|
+
return $dara.cast<DescribeSpotDiscountHistoryResponse>(await this.callApi(params, req, runtime), new DescribeSpotDiscountHistoryResponse({}));
|
|
20979
20737
|
}
|
|
20980
20738
|
|
|
20981
20739
|
/**
|
|
@@ -21012,12 +20770,7 @@ export default class Client extends OpenApi {
|
|
|
21012
20770
|
reqBodyType: "json",
|
|
21013
20771
|
bodyType: "json",
|
|
21014
20772
|
});
|
|
21015
|
-
|
|
21016
|
-
return $dara.cast<DescribeVirtualResourceResponse>(await this.callApi(params, req, runtime), new DescribeVirtualResourceResponse({}));
|
|
21017
|
-
} else {
|
|
21018
|
-
return $dara.cast<DescribeVirtualResourceResponse>(await this.execute(params, req, runtime), new DescribeVirtualResourceResponse({}));
|
|
21019
|
-
}
|
|
21020
|
-
|
|
20773
|
+
return $dara.cast<DescribeVirtualResourceResponse>(await this.callApi(params, req, runtime), new DescribeVirtualResourceResponse({}));
|
|
21021
20774
|
}
|
|
21022
20775
|
|
|
21023
20776
|
/**
|
|
@@ -21066,12 +20819,7 @@ export default class Client extends OpenApi {
|
|
|
21066
20819
|
reqBodyType: "json",
|
|
21067
20820
|
bodyType: "json",
|
|
21068
20821
|
});
|
|
21069
|
-
|
|
21070
|
-
return $dara.cast<DetachGatewayDomainResponse>(await this.callApi(params, req, runtime), new DetachGatewayDomainResponse({}));
|
|
21071
|
-
} else {
|
|
21072
|
-
return $dara.cast<DetachGatewayDomainResponse>(await this.execute(params, req, runtime), new DetachGatewayDomainResponse({}));
|
|
21073
|
-
}
|
|
21074
|
-
|
|
20822
|
+
return $dara.cast<DetachGatewayDomainResponse>(await this.callApi(params, req, runtime), new DetachGatewayDomainResponse({}));
|
|
21075
20823
|
}
|
|
21076
20824
|
|
|
21077
20825
|
/**
|
|
@@ -21116,12 +20864,7 @@ export default class Client extends OpenApi {
|
|
|
21116
20864
|
reqBodyType: "json",
|
|
21117
20865
|
bodyType: "json",
|
|
21118
20866
|
});
|
|
21119
|
-
|
|
21120
|
-
return $dara.cast<DevelopServiceResponse>(await this.callApi(params, req, runtime), new DevelopServiceResponse({}));
|
|
21121
|
-
} else {
|
|
21122
|
-
return $dara.cast<DevelopServiceResponse>(await this.execute(params, req, runtime), new DevelopServiceResponse({}));
|
|
21123
|
-
}
|
|
21124
|
-
|
|
20867
|
+
return $dara.cast<DevelopServiceResponse>(await this.callApi(params, req, runtime), new DevelopServiceResponse({}));
|
|
21125
20868
|
}
|
|
21126
20869
|
|
|
21127
20870
|
/**
|
|
@@ -21166,12 +20909,7 @@ export default class Client extends OpenApi {
|
|
|
21166
20909
|
reqBodyType: "json",
|
|
21167
20910
|
bodyType: "json",
|
|
21168
20911
|
});
|
|
21169
|
-
|
|
21170
|
-
return $dara.cast<ListAclPolicyResponse>(await this.callApi(params, req, runtime), new ListAclPolicyResponse({}));
|
|
21171
|
-
} else {
|
|
21172
|
-
return $dara.cast<ListAclPolicyResponse>(await this.execute(params, req, runtime), new ListAclPolicyResponse({}));
|
|
21173
|
-
}
|
|
21174
|
-
|
|
20912
|
+
return $dara.cast<ListAclPolicyResponse>(await this.callApi(params, req, runtime), new ListAclPolicyResponse({}));
|
|
21175
20913
|
}
|
|
21176
20914
|
|
|
21177
20915
|
/**
|
|
@@ -21228,12 +20966,7 @@ export default class Client extends OpenApi {
|
|
|
21228
20966
|
reqBodyType: "json",
|
|
21229
20967
|
bodyType: "json",
|
|
21230
20968
|
});
|
|
21231
|
-
|
|
21232
|
-
return $dara.cast<ListBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new ListBenchmarkTaskResponse({}));
|
|
21233
|
-
} else {
|
|
21234
|
-
return $dara.cast<ListBenchmarkTaskResponse>(await this.execute(params, req, runtime), new ListBenchmarkTaskResponse({}));
|
|
21235
|
-
}
|
|
21236
|
-
|
|
20969
|
+
return $dara.cast<ListBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new ListBenchmarkTaskResponse({}));
|
|
21237
20970
|
}
|
|
21238
20971
|
|
|
21239
20972
|
/**
|
|
@@ -21294,12 +21027,7 @@ export default class Client extends OpenApi {
|
|
|
21294
21027
|
reqBodyType: "json",
|
|
21295
21028
|
bodyType: "json",
|
|
21296
21029
|
});
|
|
21297
|
-
|
|
21298
|
-
return $dara.cast<ListGatewayResponse>(await this.callApi(params, req, runtime), new ListGatewayResponse({}));
|
|
21299
|
-
} else {
|
|
21300
|
-
return $dara.cast<ListGatewayResponse>(await this.execute(params, req, runtime), new ListGatewayResponse({}));
|
|
21301
|
-
}
|
|
21302
|
-
|
|
21030
|
+
return $dara.cast<ListGatewayResponse>(await this.callApi(params, req, runtime), new ListGatewayResponse({}));
|
|
21303
21031
|
}
|
|
21304
21032
|
|
|
21305
21033
|
/**
|
|
@@ -21336,12 +21064,7 @@ export default class Client extends OpenApi {
|
|
|
21336
21064
|
reqBodyType: "json",
|
|
21337
21065
|
bodyType: "json",
|
|
21338
21066
|
});
|
|
21339
|
-
|
|
21340
|
-
return $dara.cast<ListGatewayDomainsResponse>(await this.callApi(params, req, runtime), new ListGatewayDomainsResponse({}));
|
|
21341
|
-
} else {
|
|
21342
|
-
return $dara.cast<ListGatewayDomainsResponse>(await this.execute(params, req, runtime), new ListGatewayDomainsResponse({}));
|
|
21343
|
-
}
|
|
21344
|
-
|
|
21067
|
+
return $dara.cast<ListGatewayDomainsResponse>(await this.callApi(params, req, runtime), new ListGatewayDomainsResponse({}));
|
|
21345
21068
|
}
|
|
21346
21069
|
|
|
21347
21070
|
/**
|
|
@@ -21376,12 +21099,7 @@ export default class Client extends OpenApi {
|
|
|
21376
21099
|
reqBodyType: "json",
|
|
21377
21100
|
bodyType: "json",
|
|
21378
21101
|
});
|
|
21379
|
-
|
|
21380
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcResponse({}));
|
|
21381
|
-
} else {
|
|
21382
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcResponse>(await this.execute(params, req, runtime), new ListGatewayIntranetLinkedVpcResponse({}));
|
|
21383
|
-
}
|
|
21384
|
-
|
|
21102
|
+
return $dara.cast<ListGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcResponse({}));
|
|
21385
21103
|
}
|
|
21386
21104
|
|
|
21387
21105
|
/**
|
|
@@ -21424,12 +21142,7 @@ export default class Client extends OpenApi {
|
|
|
21424
21142
|
reqBodyType: "json",
|
|
21425
21143
|
bodyType: "json",
|
|
21426
21144
|
});
|
|
21427
|
-
|
|
21428
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcPeerResponse({}));
|
|
21429
|
-
} else {
|
|
21430
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcPeerResponse>(await this.execute(params, req, runtime), new ListGatewayIntranetLinkedVpcPeerResponse({}));
|
|
21431
|
-
}
|
|
21432
|
-
|
|
21145
|
+
return $dara.cast<ListGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcPeerResponse({}));
|
|
21433
21146
|
}
|
|
21434
21147
|
|
|
21435
21148
|
/**
|
|
@@ -21466,12 +21179,7 @@ export default class Client extends OpenApi {
|
|
|
21466
21179
|
reqBodyType: "json",
|
|
21467
21180
|
bodyType: "json",
|
|
21468
21181
|
});
|
|
21469
|
-
|
|
21470
|
-
return $dara.cast<ListGatewayIntranetSupportedZoneResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetSupportedZoneResponse({}));
|
|
21471
|
-
} else {
|
|
21472
|
-
return $dara.cast<ListGatewayIntranetSupportedZoneResponse>(await this.execute(params, req, runtime), new ListGatewayIntranetSupportedZoneResponse({}));
|
|
21473
|
-
}
|
|
21474
|
-
|
|
21182
|
+
return $dara.cast<ListGatewayIntranetSupportedZoneResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetSupportedZoneResponse({}));
|
|
21475
21183
|
}
|
|
21476
21184
|
|
|
21477
21185
|
/**
|
|
@@ -21526,12 +21234,7 @@ export default class Client extends OpenApi {
|
|
|
21526
21234
|
reqBodyType: "json",
|
|
21527
21235
|
bodyType: "json",
|
|
21528
21236
|
});
|
|
21529
|
-
|
|
21530
|
-
return $dara.cast<ListGroupsResponse>(await this.callApi(params, req, runtime), new ListGroupsResponse({}));
|
|
21531
|
-
} else {
|
|
21532
|
-
return $dara.cast<ListGroupsResponse>(await this.execute(params, req, runtime), new ListGroupsResponse({}));
|
|
21533
|
-
}
|
|
21534
|
-
|
|
21237
|
+
return $dara.cast<ListGroupsResponse>(await this.callApi(params, req, runtime), new ListGroupsResponse({}));
|
|
21535
21238
|
}
|
|
21536
21239
|
|
|
21537
21240
|
/**
|
|
@@ -21584,12 +21287,7 @@ export default class Client extends OpenApi {
|
|
|
21584
21287
|
reqBodyType: "json",
|
|
21585
21288
|
bodyType: "json",
|
|
21586
21289
|
});
|
|
21587
|
-
|
|
21588
|
-
return $dara.cast<ListResourceInstanceWorkerResponse>(await this.callApi(params, req, runtime), new ListResourceInstanceWorkerResponse({}));
|
|
21589
|
-
} else {
|
|
21590
|
-
return $dara.cast<ListResourceInstanceWorkerResponse>(await this.execute(params, req, runtime), new ListResourceInstanceWorkerResponse({}));
|
|
21591
|
-
}
|
|
21592
|
-
|
|
21290
|
+
return $dara.cast<ListResourceInstanceWorkerResponse>(await this.callApi(params, req, runtime), new ListResourceInstanceWorkerResponse({}));
|
|
21593
21291
|
}
|
|
21594
21292
|
|
|
21595
21293
|
/**
|
|
@@ -21680,12 +21378,7 @@ export default class Client extends OpenApi {
|
|
|
21680
21378
|
reqBodyType: "json",
|
|
21681
21379
|
bodyType: "json",
|
|
21682
21380
|
});
|
|
21683
|
-
|
|
21684
|
-
return $dara.cast<ListResourceInstancesResponse>(await this.callApi(params, req, runtime), new ListResourceInstancesResponse({}));
|
|
21685
|
-
} else {
|
|
21686
|
-
return $dara.cast<ListResourceInstancesResponse>(await this.execute(params, req, runtime), new ListResourceInstancesResponse({}));
|
|
21687
|
-
}
|
|
21688
|
-
|
|
21381
|
+
return $dara.cast<ListResourceInstancesResponse>(await this.callApi(params, req, runtime), new ListResourceInstancesResponse({}));
|
|
21689
21382
|
}
|
|
21690
21383
|
|
|
21691
21384
|
/**
|
|
@@ -21737,12 +21430,7 @@ export default class Client extends OpenApi {
|
|
|
21737
21430
|
reqBodyType: "json",
|
|
21738
21431
|
bodyType: "json",
|
|
21739
21432
|
});
|
|
21740
|
-
|
|
21741
|
-
return $dara.cast<ListResourceServicesResponse>(await this.callApi(params, req, runtime), new ListResourceServicesResponse({}));
|
|
21742
|
-
} else {
|
|
21743
|
-
return $dara.cast<ListResourceServicesResponse>(await this.execute(params, req, runtime), new ListResourceServicesResponse({}));
|
|
21744
|
-
}
|
|
21745
|
-
|
|
21433
|
+
return $dara.cast<ListResourceServicesResponse>(await this.callApi(params, req, runtime), new ListResourceServicesResponse({}));
|
|
21746
21434
|
}
|
|
21747
21435
|
|
|
21748
21436
|
/**
|
|
@@ -21818,12 +21506,7 @@ export default class Client extends OpenApi {
|
|
|
21818
21506
|
reqBodyType: "json",
|
|
21819
21507
|
bodyType: "json",
|
|
21820
21508
|
});
|
|
21821
|
-
|
|
21822
|
-
return $dara.cast<ListResourcesResponse>(await this.callApi(params, req, runtime), new ListResourcesResponse({}));
|
|
21823
|
-
} else {
|
|
21824
|
-
return $dara.cast<ListResourcesResponse>(await this.execute(params, req, runtime), new ListResourcesResponse({}));
|
|
21825
|
-
}
|
|
21826
|
-
|
|
21509
|
+
return $dara.cast<ListResourcesResponse>(await this.callApi(params, req, runtime), new ListResourcesResponse({}));
|
|
21827
21510
|
}
|
|
21828
21511
|
|
|
21829
21512
|
/**
|
|
@@ -21860,12 +21543,7 @@ export default class Client extends OpenApi {
|
|
|
21860
21543
|
reqBodyType: "json",
|
|
21861
21544
|
bodyType: "json",
|
|
21862
21545
|
});
|
|
21863
|
-
|
|
21864
|
-
return $dara.cast<ListServiceContainersResponse>(await this.callApi(params, req, runtime), new ListServiceContainersResponse({}));
|
|
21865
|
-
} else {
|
|
21866
|
-
return $dara.cast<ListServiceContainersResponse>(await this.execute(params, req, runtime), new ListServiceContainersResponse({}));
|
|
21867
|
-
}
|
|
21868
|
-
|
|
21546
|
+
return $dara.cast<ListServiceContainersResponse>(await this.callApi(params, req, runtime), new ListServiceContainersResponse({}));
|
|
21869
21547
|
}
|
|
21870
21548
|
|
|
21871
21549
|
/**
|
|
@@ -21956,12 +21634,7 @@ export default class Client extends OpenApi {
|
|
|
21956
21634
|
reqBodyType: "json",
|
|
21957
21635
|
bodyType: "json",
|
|
21958
21636
|
});
|
|
21959
|
-
|
|
21960
|
-
return $dara.cast<ListServiceInstancesResponse>(await this.callApi(params, req, runtime), new ListServiceInstancesResponse({}));
|
|
21961
|
-
} else {
|
|
21962
|
-
return $dara.cast<ListServiceInstancesResponse>(await this.execute(params, req, runtime), new ListServiceInstancesResponse({}));
|
|
21963
|
-
}
|
|
21964
|
-
|
|
21637
|
+
return $dara.cast<ListServiceInstancesResponse>(await this.callApi(params, req, runtime), new ListServiceInstancesResponse({}));
|
|
21965
21638
|
}
|
|
21966
21639
|
|
|
21967
21640
|
/**
|
|
@@ -22010,12 +21683,7 @@ export default class Client extends OpenApi {
|
|
|
22010
21683
|
reqBodyType: "json",
|
|
22011
21684
|
bodyType: "json",
|
|
22012
21685
|
});
|
|
22013
|
-
|
|
22014
|
-
return $dara.cast<ListServiceVersionsResponse>(await this.callApi(params, req, runtime), new ListServiceVersionsResponse({}));
|
|
22015
|
-
} else {
|
|
22016
|
-
return $dara.cast<ListServiceVersionsResponse>(await this.execute(params, req, runtime), new ListServiceVersionsResponse({}));
|
|
22017
|
-
}
|
|
22018
|
-
|
|
21686
|
+
return $dara.cast<ListServiceVersionsResponse>(await this.callApi(params, req, runtime), new ListServiceVersionsResponse({}));
|
|
22019
21687
|
}
|
|
22020
21688
|
|
|
22021
21689
|
/**
|
|
@@ -22138,12 +21806,7 @@ export default class Client extends OpenApi {
|
|
|
22138
21806
|
reqBodyType: "json",
|
|
22139
21807
|
bodyType: "json",
|
|
22140
21808
|
});
|
|
22141
|
-
|
|
22142
|
-
return $dara.cast<ListServicesResponse>(await this.callApi(params, req, runtime), new ListServicesResponse({}));
|
|
22143
|
-
} else {
|
|
22144
|
-
return $dara.cast<ListServicesResponse>(await this.execute(params, req, runtime), new ListServicesResponse({}));
|
|
22145
|
-
}
|
|
22146
|
-
|
|
21809
|
+
return $dara.cast<ListServicesResponse>(await this.callApi(params, req, runtime), new ListServicesResponse({}));
|
|
22147
21810
|
}
|
|
22148
21811
|
|
|
22149
21812
|
/**
|
|
@@ -22180,12 +21843,7 @@ export default class Client extends OpenApi {
|
|
|
22180
21843
|
reqBodyType: "json",
|
|
22181
21844
|
bodyType: "json",
|
|
22182
21845
|
});
|
|
22183
|
-
|
|
22184
|
-
return $dara.cast<ListTenantAddonsResponse>(await this.callApi(params, req, runtime), new ListTenantAddonsResponse({}));
|
|
22185
|
-
} else {
|
|
22186
|
-
return $dara.cast<ListTenantAddonsResponse>(await this.execute(params, req, runtime), new ListTenantAddonsResponse({}));
|
|
22187
|
-
}
|
|
22188
|
-
|
|
21846
|
+
return $dara.cast<ListTenantAddonsResponse>(await this.callApi(params, req, runtime), new ListTenantAddonsResponse({}));
|
|
22189
21847
|
}
|
|
22190
21848
|
|
|
22191
21849
|
/**
|
|
@@ -22240,12 +21898,7 @@ export default class Client extends OpenApi {
|
|
|
22240
21898
|
reqBodyType: "json",
|
|
22241
21899
|
bodyType: "json",
|
|
22242
21900
|
});
|
|
22243
|
-
|
|
22244
|
-
return $dara.cast<ListVirtualResourceResponse>(await this.callApi(params, req, runtime), new ListVirtualResourceResponse({}));
|
|
22245
|
-
} else {
|
|
22246
|
-
return $dara.cast<ListVirtualResourceResponse>(await this.execute(params, req, runtime), new ListVirtualResourceResponse({}));
|
|
22247
|
-
}
|
|
22248
|
-
|
|
21901
|
+
return $dara.cast<ListVirtualResourceResponse>(await this.callApi(params, req, runtime), new ListVirtualResourceResponse({}));
|
|
22249
21902
|
}
|
|
22250
21903
|
|
|
22251
21904
|
/**
|
|
@@ -22282,12 +21935,7 @@ export default class Client extends OpenApi {
|
|
|
22282
21935
|
reqBodyType: "json",
|
|
22283
21936
|
bodyType: "json",
|
|
22284
21937
|
});
|
|
22285
|
-
|
|
22286
|
-
return $dara.cast<ReinstallTenantAddonResponse>(await this.callApi(params, req, runtime), new ReinstallTenantAddonResponse({}));
|
|
22287
|
-
} else {
|
|
22288
|
-
return $dara.cast<ReinstallTenantAddonResponse>(await this.execute(params, req, runtime), new ReinstallTenantAddonResponse({}));
|
|
22289
|
-
}
|
|
22290
|
-
|
|
21938
|
+
return $dara.cast<ReinstallTenantAddonResponse>(await this.callApi(params, req, runtime), new ReinstallTenantAddonResponse({}));
|
|
22291
21939
|
}
|
|
22292
21940
|
|
|
22293
21941
|
/**
|
|
@@ -22334,12 +21982,7 @@ export default class Client extends OpenApi {
|
|
|
22334
21982
|
reqBodyType: "json",
|
|
22335
21983
|
bodyType: "json",
|
|
22336
21984
|
});
|
|
22337
|
-
|
|
22338
|
-
return $dara.cast<ReleaseServiceResponse>(await this.callApi(params, req, runtime), new ReleaseServiceResponse({}));
|
|
22339
|
-
} else {
|
|
22340
|
-
return $dara.cast<ReleaseServiceResponse>(await this.execute(params, req, runtime), new ReleaseServiceResponse({}));
|
|
22341
|
-
}
|
|
22342
|
-
|
|
21985
|
+
return $dara.cast<ReleaseServiceResponse>(await this.callApi(params, req, runtime), new ReleaseServiceResponse({}));
|
|
22343
21986
|
}
|
|
22344
21987
|
|
|
22345
21988
|
/**
|
|
@@ -22376,12 +22019,7 @@ export default class Client extends OpenApi {
|
|
|
22376
22019
|
reqBodyType: "json",
|
|
22377
22020
|
bodyType: "json",
|
|
22378
22021
|
});
|
|
22379
|
-
|
|
22380
|
-
return $dara.cast<RestartServiceResponse>(await this.callApi(params, req, runtime), new RestartServiceResponse({}));
|
|
22381
|
-
} else {
|
|
22382
|
-
return $dara.cast<RestartServiceResponse>(await this.execute(params, req, runtime), new RestartServiceResponse({}));
|
|
22383
|
-
}
|
|
22384
|
-
|
|
22022
|
+
return $dara.cast<RestartServiceResponse>(await this.callApi(params, req, runtime), new RestartServiceResponse({}));
|
|
22385
22023
|
}
|
|
22386
22024
|
|
|
22387
22025
|
/**
|
|
@@ -22416,12 +22054,7 @@ export default class Client extends OpenApi {
|
|
|
22416
22054
|
reqBodyType: "json",
|
|
22417
22055
|
bodyType: "json",
|
|
22418
22056
|
});
|
|
22419
|
-
|
|
22420
|
-
return $dara.cast<StartBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StartBenchmarkTaskResponse({}));
|
|
22421
|
-
} else {
|
|
22422
|
-
return $dara.cast<StartBenchmarkTaskResponse>(await this.execute(params, req, runtime), new StartBenchmarkTaskResponse({}));
|
|
22423
|
-
}
|
|
22424
|
-
|
|
22057
|
+
return $dara.cast<StartBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StartBenchmarkTaskResponse({}));
|
|
22425
22058
|
}
|
|
22426
22059
|
|
|
22427
22060
|
/**
|
|
@@ -22456,12 +22089,7 @@ export default class Client extends OpenApi {
|
|
|
22456
22089
|
reqBodyType: "json",
|
|
22457
22090
|
bodyType: "json",
|
|
22458
22091
|
});
|
|
22459
|
-
|
|
22460
|
-
return $dara.cast<StartServiceResponse>(await this.callApi(params, req, runtime), new StartServiceResponse({}));
|
|
22461
|
-
} else {
|
|
22462
|
-
return $dara.cast<StartServiceResponse>(await this.execute(params, req, runtime), new StartServiceResponse({}));
|
|
22463
|
-
}
|
|
22464
|
-
|
|
22092
|
+
return $dara.cast<StartServiceResponse>(await this.callApi(params, req, runtime), new StartServiceResponse({}));
|
|
22465
22093
|
}
|
|
22466
22094
|
|
|
22467
22095
|
/**
|
|
@@ -22496,12 +22124,7 @@ export default class Client extends OpenApi {
|
|
|
22496
22124
|
reqBodyType: "json",
|
|
22497
22125
|
bodyType: "json",
|
|
22498
22126
|
});
|
|
22499
|
-
|
|
22500
|
-
return $dara.cast<StopBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StopBenchmarkTaskResponse({}));
|
|
22501
|
-
} else {
|
|
22502
|
-
return $dara.cast<StopBenchmarkTaskResponse>(await this.execute(params, req, runtime), new StopBenchmarkTaskResponse({}));
|
|
22503
|
-
}
|
|
22504
|
-
|
|
22127
|
+
return $dara.cast<StopBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StopBenchmarkTaskResponse({}));
|
|
22505
22128
|
}
|
|
22506
22129
|
|
|
22507
22130
|
/**
|
|
@@ -22536,12 +22159,7 @@ export default class Client extends OpenApi {
|
|
|
22536
22159
|
reqBodyType: "json",
|
|
22537
22160
|
bodyType: "json",
|
|
22538
22161
|
});
|
|
22539
|
-
|
|
22540
|
-
return $dara.cast<StopServiceResponse>(await this.callApi(params, req, runtime), new StopServiceResponse({}));
|
|
22541
|
-
} else {
|
|
22542
|
-
return $dara.cast<StopServiceResponse>(await this.execute(params, req, runtime), new StopServiceResponse({}));
|
|
22543
|
-
}
|
|
22544
|
-
|
|
22162
|
+
return $dara.cast<StopServiceResponse>(await this.callApi(params, req, runtime), new StopServiceResponse({}));
|
|
22545
22163
|
}
|
|
22546
22164
|
|
|
22547
22165
|
/**
|
|
@@ -22610,12 +22228,7 @@ export default class Client extends OpenApi {
|
|
|
22610
22228
|
reqBodyType: "json",
|
|
22611
22229
|
bodyType: "json",
|
|
22612
22230
|
});
|
|
22613
|
-
|
|
22614
|
-
return $dara.cast<UpdateAppServiceResponse>(await this.callApi(params, req, runtime), new UpdateAppServiceResponse({}));
|
|
22615
|
-
} else {
|
|
22616
|
-
return $dara.cast<UpdateAppServiceResponse>(await this.execute(params, req, runtime), new UpdateAppServiceResponse({}));
|
|
22617
|
-
}
|
|
22618
|
-
|
|
22231
|
+
return $dara.cast<UpdateAppServiceResponse>(await this.callApi(params, req, runtime), new UpdateAppServiceResponse({}));
|
|
22619
22232
|
}
|
|
22620
22233
|
|
|
22621
22234
|
/**
|
|
@@ -22655,12 +22268,7 @@ export default class Client extends OpenApi {
|
|
|
22655
22268
|
reqBodyType: "json",
|
|
22656
22269
|
bodyType: "json",
|
|
22657
22270
|
});
|
|
22658
|
-
|
|
22659
|
-
return $dara.cast<UpdateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new UpdateBenchmarkTaskResponse({}));
|
|
22660
|
-
} else {
|
|
22661
|
-
return $dara.cast<UpdateBenchmarkTaskResponse>(await this.execute(params, req, runtime), new UpdateBenchmarkTaskResponse({}));
|
|
22662
|
-
}
|
|
22663
|
-
|
|
22271
|
+
return $dara.cast<UpdateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new UpdateBenchmarkTaskResponse({}));
|
|
22664
22272
|
}
|
|
22665
22273
|
|
|
22666
22274
|
/**
|
|
@@ -22729,12 +22337,7 @@ export default class Client extends OpenApi {
|
|
|
22729
22337
|
reqBodyType: "json",
|
|
22730
22338
|
bodyType: "json",
|
|
22731
22339
|
});
|
|
22732
|
-
|
|
22733
|
-
return $dara.cast<UpdateGatewayResponse>(await this.callApi(params, req, runtime), new UpdateGatewayResponse({}));
|
|
22734
|
-
} else {
|
|
22735
|
-
return $dara.cast<UpdateGatewayResponse>(await this.execute(params, req, runtime), new UpdateGatewayResponse({}));
|
|
22736
|
-
}
|
|
22737
|
-
|
|
22340
|
+
return $dara.cast<UpdateGatewayResponse>(await this.callApi(params, req, runtime), new UpdateGatewayResponse({}));
|
|
22738
22341
|
}
|
|
22739
22342
|
|
|
22740
22343
|
/**
|
|
@@ -22783,12 +22386,7 @@ export default class Client extends OpenApi {
|
|
|
22783
22386
|
reqBodyType: "json",
|
|
22784
22387
|
bodyType: "json",
|
|
22785
22388
|
});
|
|
22786
|
-
|
|
22787
|
-
return $dara.cast<UpdateResourceResponse>(await this.callApi(params, req, runtime), new UpdateResourceResponse({}));
|
|
22788
|
-
} else {
|
|
22789
|
-
return $dara.cast<UpdateResourceResponse>(await this.execute(params, req, runtime), new UpdateResourceResponse({}));
|
|
22790
|
-
}
|
|
22791
|
-
|
|
22389
|
+
return $dara.cast<UpdateResourceResponse>(await this.callApi(params, req, runtime), new UpdateResourceResponse({}));
|
|
22792
22390
|
}
|
|
22793
22391
|
|
|
22794
22392
|
/**
|
|
@@ -22845,12 +22443,7 @@ export default class Client extends OpenApi {
|
|
|
22845
22443
|
reqBodyType: "json",
|
|
22846
22444
|
bodyType: "json",
|
|
22847
22445
|
});
|
|
22848
|
-
|
|
22849
|
-
return $dara.cast<UpdateResourceDLinkResponse>(await this.callApi(params, req, runtime), new UpdateResourceDLinkResponse({}));
|
|
22850
|
-
} else {
|
|
22851
|
-
return $dara.cast<UpdateResourceDLinkResponse>(await this.execute(params, req, runtime), new UpdateResourceDLinkResponse({}));
|
|
22852
|
-
}
|
|
22853
|
-
|
|
22446
|
+
return $dara.cast<UpdateResourceDLinkResponse>(await this.callApi(params, req, runtime), new UpdateResourceDLinkResponse({}));
|
|
22854
22447
|
}
|
|
22855
22448
|
|
|
22856
22449
|
/**
|
|
@@ -22895,12 +22488,7 @@ export default class Client extends OpenApi {
|
|
|
22895
22488
|
reqBodyType: "json",
|
|
22896
22489
|
bodyType: "json",
|
|
22897
22490
|
});
|
|
22898
|
-
|
|
22899
|
-
return $dara.cast<UpdateResourceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceResponse({}));
|
|
22900
|
-
} else {
|
|
22901
|
-
return $dara.cast<UpdateResourceInstanceResponse>(await this.execute(params, req, runtime), new UpdateResourceInstanceResponse({}));
|
|
22902
|
-
}
|
|
22903
|
-
|
|
22491
|
+
return $dara.cast<UpdateResourceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceResponse({}));
|
|
22904
22492
|
}
|
|
22905
22493
|
|
|
22906
22494
|
/**
|
|
@@ -22961,12 +22549,7 @@ export default class Client extends OpenApi {
|
|
|
22961
22549
|
reqBodyType: "json",
|
|
22962
22550
|
bodyType: "json",
|
|
22963
22551
|
});
|
|
22964
|
-
|
|
22965
|
-
return $dara.cast<UpdateResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceLabelResponse({}));
|
|
22966
|
-
} else {
|
|
22967
|
-
return $dara.cast<UpdateResourceInstanceLabelResponse>(await this.execute(params, req, runtime), new UpdateResourceInstanceLabelResponse({}));
|
|
22968
|
-
}
|
|
22969
|
-
|
|
22552
|
+
return $dara.cast<UpdateResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceLabelResponse({}));
|
|
22970
22553
|
}
|
|
22971
22554
|
|
|
22972
22555
|
/**
|
|
@@ -23012,12 +22595,7 @@ export default class Client extends OpenApi {
|
|
|
23012
22595
|
reqBodyType: "json",
|
|
23013
22596
|
bodyType: "json",
|
|
23014
22597
|
});
|
|
23015
|
-
|
|
23016
|
-
return $dara.cast<UpdateServiceResponse>(await this.callApi(params, req, runtime), new UpdateServiceResponse({}));
|
|
23017
|
-
} else {
|
|
23018
|
-
return $dara.cast<UpdateServiceResponse>(await this.execute(params, req, runtime), new UpdateServiceResponse({}));
|
|
23019
|
-
}
|
|
23020
|
-
|
|
22598
|
+
return $dara.cast<UpdateServiceResponse>(await this.callApi(params, req, runtime), new UpdateServiceResponse({}));
|
|
23021
22599
|
}
|
|
23022
22600
|
|
|
23023
22601
|
/**
|
|
@@ -23074,12 +22652,7 @@ export default class Client extends OpenApi {
|
|
|
23074
22652
|
reqBodyType: "json",
|
|
23075
22653
|
bodyType: "json",
|
|
23076
22654
|
});
|
|
23077
|
-
|
|
23078
|
-
return $dara.cast<UpdateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceAutoScalerResponse({}));
|
|
23079
|
-
} else {
|
|
23080
|
-
return $dara.cast<UpdateServiceAutoScalerResponse>(await this.execute(params, req, runtime), new UpdateServiceAutoScalerResponse({}));
|
|
23081
|
-
}
|
|
23082
|
-
|
|
22655
|
+
return $dara.cast<UpdateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceAutoScalerResponse({}));
|
|
23083
22656
|
}
|
|
23084
22657
|
|
|
23085
22658
|
/**
|
|
@@ -23128,12 +22701,7 @@ export default class Client extends OpenApi {
|
|
|
23128
22701
|
reqBodyType: "json",
|
|
23129
22702
|
bodyType: "json",
|
|
23130
22703
|
});
|
|
23131
|
-
|
|
23132
|
-
return $dara.cast<UpdateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceCronScalerResponse({}));
|
|
23133
|
-
} else {
|
|
23134
|
-
return $dara.cast<UpdateServiceCronScalerResponse>(await this.execute(params, req, runtime), new UpdateServiceCronScalerResponse({}));
|
|
23135
|
-
}
|
|
23136
|
-
|
|
22704
|
+
return $dara.cast<UpdateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceCronScalerResponse({}));
|
|
23137
22705
|
}
|
|
23138
22706
|
|
|
23139
22707
|
/**
|
|
@@ -23178,12 +22746,7 @@ export default class Client extends OpenApi {
|
|
|
23178
22746
|
reqBodyType: "json",
|
|
23179
22747
|
bodyType: "json",
|
|
23180
22748
|
});
|
|
23181
|
-
|
|
23182
|
-
return $dara.cast<UpdateServiceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateServiceInstanceResponse({}));
|
|
23183
|
-
} else {
|
|
23184
|
-
return $dara.cast<UpdateServiceInstanceResponse>(await this.execute(params, req, runtime), new UpdateServiceInstanceResponse({}));
|
|
23185
|
-
}
|
|
23186
|
-
|
|
22749
|
+
return $dara.cast<UpdateServiceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateServiceInstanceResponse({}));
|
|
23187
22750
|
}
|
|
23188
22751
|
|
|
23189
22752
|
/**
|
|
@@ -23228,12 +22791,7 @@ export default class Client extends OpenApi {
|
|
|
23228
22791
|
reqBodyType: "json",
|
|
23229
22792
|
bodyType: "json",
|
|
23230
22793
|
});
|
|
23231
|
-
|
|
23232
|
-
return $dara.cast<UpdateServiceLabelResponse>(await this.callApi(params, req, runtime), new UpdateServiceLabelResponse({}));
|
|
23233
|
-
} else {
|
|
23234
|
-
return $dara.cast<UpdateServiceLabelResponse>(await this.execute(params, req, runtime), new UpdateServiceLabelResponse({}));
|
|
23235
|
-
}
|
|
23236
|
-
|
|
22794
|
+
return $dara.cast<UpdateServiceLabelResponse>(await this.callApi(params, req, runtime), new UpdateServiceLabelResponse({}));
|
|
23237
22795
|
}
|
|
23238
22796
|
|
|
23239
22797
|
/**
|
|
@@ -23282,12 +22840,7 @@ export default class Client extends OpenApi {
|
|
|
23282
22840
|
reqBodyType: "json",
|
|
23283
22841
|
bodyType: "json",
|
|
23284
22842
|
});
|
|
23285
|
-
|
|
23286
|
-
return $dara.cast<UpdateServiceMirrorResponse>(await this.callApi(params, req, runtime), new UpdateServiceMirrorResponse({}));
|
|
23287
|
-
} else {
|
|
23288
|
-
return $dara.cast<UpdateServiceMirrorResponse>(await this.execute(params, req, runtime), new UpdateServiceMirrorResponse({}));
|
|
23289
|
-
}
|
|
23290
|
-
|
|
22843
|
+
return $dara.cast<UpdateServiceMirrorResponse>(await this.callApi(params, req, runtime), new UpdateServiceMirrorResponse({}));
|
|
23291
22844
|
}
|
|
23292
22845
|
|
|
23293
22846
|
/**
|
|
@@ -23332,12 +22885,7 @@ export default class Client extends OpenApi {
|
|
|
23332
22885
|
reqBodyType: "json",
|
|
23333
22886
|
bodyType: "json",
|
|
23334
22887
|
});
|
|
23335
|
-
|
|
23336
|
-
return $dara.cast<UpdateServiceSafetyLockResponse>(await this.callApi(params, req, runtime), new UpdateServiceSafetyLockResponse({}));
|
|
23337
|
-
} else {
|
|
23338
|
-
return $dara.cast<UpdateServiceSafetyLockResponse>(await this.execute(params, req, runtime), new UpdateServiceSafetyLockResponse({}));
|
|
23339
|
-
}
|
|
23340
|
-
|
|
22888
|
+
return $dara.cast<UpdateServiceSafetyLockResponse>(await this.callApi(params, req, runtime), new UpdateServiceSafetyLockResponse({}));
|
|
23341
22889
|
}
|
|
23342
22890
|
|
|
23343
22891
|
/**
|
|
@@ -23382,12 +22930,7 @@ export default class Client extends OpenApi {
|
|
|
23382
22930
|
reqBodyType: "json",
|
|
23383
22931
|
bodyType: "json",
|
|
23384
22932
|
});
|
|
23385
|
-
|
|
23386
|
-
return $dara.cast<UpdateServiceVersionResponse>(await this.callApi(params, req, runtime), new UpdateServiceVersionResponse({}));
|
|
23387
|
-
} else {
|
|
23388
|
-
return $dara.cast<UpdateServiceVersionResponse>(await this.execute(params, req, runtime), new UpdateServiceVersionResponse({}));
|
|
23389
|
-
}
|
|
23390
|
-
|
|
22933
|
+
return $dara.cast<UpdateServiceVersionResponse>(await this.callApi(params, req, runtime), new UpdateServiceVersionResponse({}));
|
|
23391
22934
|
}
|
|
23392
22935
|
|
|
23393
22936
|
/**
|
|
@@ -23440,12 +22983,7 @@ export default class Client extends OpenApi {
|
|
|
23440
22983
|
reqBodyType: "json",
|
|
23441
22984
|
bodyType: "json",
|
|
23442
22985
|
});
|
|
23443
|
-
|
|
23444
|
-
return $dara.cast<UpdateVirtualResourceResponse>(await this.callApi(params, req, runtime), new UpdateVirtualResourceResponse({}));
|
|
23445
|
-
} else {
|
|
23446
|
-
return $dara.cast<UpdateVirtualResourceResponse>(await this.execute(params, req, runtime), new UpdateVirtualResourceResponse({}));
|
|
23447
|
-
}
|
|
23448
|
-
|
|
22986
|
+
return $dara.cast<UpdateVirtualResourceResponse>(await this.callApi(params, req, runtime), new UpdateVirtualResourceResponse({}));
|
|
23449
22987
|
}
|
|
23450
22988
|
|
|
23451
22989
|
/**
|