@alicloud/eas20210701 7.0.0 → 7.0.2
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 +21 -3
- package/dist/client.js +115 -596
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +136 -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',
|
|
@@ -9051,7 +9064,7 @@ export class DescribeGroupEndpointsResponseBody extends $dara.Model {
|
|
|
9051
9064
|
accessToken?: string;
|
|
9052
9065
|
/**
|
|
9053
9066
|
* @remarks
|
|
9054
|
-
* The endpoints of service
|
|
9067
|
+
* The endpoints of the service group.
|
|
9055
9068
|
*/
|
|
9056
9069
|
endpoints?: DescribeGroupEndpointsResponseBodyEndpoints[];
|
|
9057
9070
|
/**
|
|
@@ -9282,8 +9295,15 @@ export class DescribeMachineSpecResponse extends $dara.Model {
|
|
|
9282
9295
|
}
|
|
9283
9296
|
|
|
9284
9297
|
export class DescribeRegionsResponseBody extends $dara.Model {
|
|
9298
|
+
/**
|
|
9299
|
+
* @remarks
|
|
9300
|
+
* The available regions.
|
|
9301
|
+
*/
|
|
9285
9302
|
regions?: DescribeRegionsResponseBodyRegions[];
|
|
9286
9303
|
/**
|
|
9304
|
+
* @remarks
|
|
9305
|
+
* The request ID.
|
|
9306
|
+
*
|
|
9287
9307
|
* @example
|
|
9288
9308
|
* 40325405-579C-4D82****
|
|
9289
9309
|
*/
|
|
@@ -14345,6 +14365,7 @@ export class ListServicesRequest extends $dara.Model {
|
|
|
14345
14365
|
* foo
|
|
14346
14366
|
*/
|
|
14347
14367
|
groupName?: string;
|
|
14368
|
+
includeNoWorkspace?: boolean;
|
|
14348
14369
|
/**
|
|
14349
14370
|
* @remarks
|
|
14350
14371
|
* The tag that is used to filter services.
|
|
@@ -14660,6 +14681,7 @@ export class ListServicesRequest extends $dara.Model {
|
|
|
14660
14681
|
filter: 'Filter',
|
|
14661
14682
|
gateway: 'Gateway',
|
|
14662
14683
|
groupName: 'GroupName',
|
|
14684
|
+
includeNoWorkspace: 'IncludeNoWorkspace',
|
|
14663
14685
|
label: 'Label',
|
|
14664
14686
|
order: 'Order',
|
|
14665
14687
|
pageNumber: 'PageNumber',
|
|
@@ -14683,6 +14705,7 @@ export class ListServicesRequest extends $dara.Model {
|
|
|
14683
14705
|
filter: 'string',
|
|
14684
14706
|
gateway: 'string',
|
|
14685
14707
|
groupName: 'string',
|
|
14708
|
+
includeNoWorkspace: 'boolean',
|
|
14686
14709
|
label: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14687
14710
|
order: 'string',
|
|
14688
14711
|
pageNumber: 'number',
|
|
@@ -14738,6 +14761,7 @@ export class ListServicesShrinkRequest extends $dara.Model {
|
|
|
14738
14761
|
* foo
|
|
14739
14762
|
*/
|
|
14740
14763
|
groupName?: string;
|
|
14764
|
+
includeNoWorkspace?: boolean;
|
|
14741
14765
|
/**
|
|
14742
14766
|
* @remarks
|
|
14743
14767
|
* The tag that is used to filter services.
|
|
@@ -15053,6 +15077,7 @@ export class ListServicesShrinkRequest extends $dara.Model {
|
|
|
15053
15077
|
filter: 'Filter',
|
|
15054
15078
|
gateway: 'Gateway',
|
|
15055
15079
|
groupName: 'GroupName',
|
|
15080
|
+
includeNoWorkspace: 'IncludeNoWorkspace',
|
|
15056
15081
|
labelShrink: 'Label',
|
|
15057
15082
|
order: 'Order',
|
|
15058
15083
|
pageNumber: 'PageNumber',
|
|
@@ -15076,6 +15101,7 @@ export class ListServicesShrinkRequest extends $dara.Model {
|
|
|
15076
15101
|
filter: 'string',
|
|
15077
15102
|
gateway: 'string',
|
|
15078
15103
|
groupName: 'string',
|
|
15104
|
+
includeNoWorkspace: 'boolean',
|
|
15079
15105
|
labelShrink: 'string',
|
|
15080
15106
|
order: 'string',
|
|
15081
15107
|
pageNumber: 'number',
|
|
@@ -18185,12 +18211,7 @@ export default class Client extends OpenApi {
|
|
|
18185
18211
|
reqBodyType: "json",
|
|
18186
18212
|
bodyType: "json",
|
|
18187
18213
|
});
|
|
18188
|
-
|
|
18189
|
-
return $dara.cast<AttachGatewayDomainResponse>(await this.callApi(params, req, runtime), new AttachGatewayDomainResponse({}));
|
|
18190
|
-
} else {
|
|
18191
|
-
return $dara.cast<AttachGatewayDomainResponse>(await this.execute(params, req, runtime), new AttachGatewayDomainResponse({}));
|
|
18192
|
-
}
|
|
18193
|
-
|
|
18214
|
+
return $dara.cast<AttachGatewayDomainResponse>(await this.callApi(params, req, runtime), new AttachGatewayDomainResponse({}));
|
|
18194
18215
|
}
|
|
18195
18216
|
|
|
18196
18217
|
/**
|
|
@@ -18242,12 +18263,7 @@ export default class Client extends OpenApi {
|
|
|
18242
18263
|
reqBodyType: "json",
|
|
18243
18264
|
bodyType: "json",
|
|
18244
18265
|
});
|
|
18245
|
-
|
|
18246
|
-
return $dara.cast<CloneServiceResponse>(await this.callApi(params, req, runtime), new CloneServiceResponse({}));
|
|
18247
|
-
} else {
|
|
18248
|
-
return $dara.cast<CloneServiceResponse>(await this.execute(params, req, runtime), new CloneServiceResponse({}));
|
|
18249
|
-
}
|
|
18250
|
-
|
|
18266
|
+
return $dara.cast<CloneServiceResponse>(await this.callApi(params, req, runtime), new CloneServiceResponse({}));
|
|
18251
18267
|
}
|
|
18252
18268
|
|
|
18253
18269
|
/**
|
|
@@ -18284,12 +18300,7 @@ export default class Client extends OpenApi {
|
|
|
18284
18300
|
reqBodyType: "json",
|
|
18285
18301
|
bodyType: "json",
|
|
18286
18302
|
});
|
|
18287
|
-
|
|
18288
|
-
return $dara.cast<CommitServiceResponse>(await this.callApi(params, req, runtime), new CommitServiceResponse({}));
|
|
18289
|
-
} else {
|
|
18290
|
-
return $dara.cast<CommitServiceResponse>(await this.execute(params, req, runtime), new CommitServiceResponse({}));
|
|
18291
|
-
}
|
|
18292
|
-
|
|
18303
|
+
return $dara.cast<CommitServiceResponse>(await this.callApi(params, req, runtime), new CommitServiceResponse({}));
|
|
18293
18304
|
}
|
|
18294
18305
|
|
|
18295
18306
|
/**
|
|
@@ -18342,12 +18353,7 @@ export default class Client extends OpenApi {
|
|
|
18342
18353
|
reqBodyType: "json",
|
|
18343
18354
|
bodyType: "json",
|
|
18344
18355
|
});
|
|
18345
|
-
|
|
18346
|
-
return $dara.cast<CreateAclPolicyResponse>(await this.callApi(params, req, runtime), new CreateAclPolicyResponse({}));
|
|
18347
|
-
} else {
|
|
18348
|
-
return $dara.cast<CreateAclPolicyResponse>(await this.execute(params, req, runtime), new CreateAclPolicyResponse({}));
|
|
18349
|
-
}
|
|
18350
|
-
|
|
18356
|
+
return $dara.cast<CreateAclPolicyResponse>(await this.callApi(params, req, runtime), new CreateAclPolicyResponse({}));
|
|
18351
18357
|
}
|
|
18352
18358
|
|
|
18353
18359
|
/**
|
|
@@ -18422,12 +18428,7 @@ export default class Client extends OpenApi {
|
|
|
18422
18428
|
reqBodyType: "json",
|
|
18423
18429
|
bodyType: "json",
|
|
18424
18430
|
});
|
|
18425
|
-
|
|
18426
|
-
return $dara.cast<CreateAppServiceResponse>(await this.callApi(params, req, runtime), new CreateAppServiceResponse({}));
|
|
18427
|
-
} else {
|
|
18428
|
-
return $dara.cast<CreateAppServiceResponse>(await this.execute(params, req, runtime), new CreateAppServiceResponse({}));
|
|
18429
|
-
}
|
|
18430
|
-
|
|
18431
|
+
return $dara.cast<CreateAppServiceResponse>(await this.callApi(params, req, runtime), new CreateAppServiceResponse({}));
|
|
18431
18432
|
}
|
|
18432
18433
|
|
|
18433
18434
|
/**
|
|
@@ -18467,12 +18468,7 @@ export default class Client extends OpenApi {
|
|
|
18467
18468
|
reqBodyType: "json",
|
|
18468
18469
|
bodyType: "json",
|
|
18469
18470
|
});
|
|
18470
|
-
|
|
18471
|
-
return $dara.cast<CreateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new CreateBenchmarkTaskResponse({}));
|
|
18472
|
-
} else {
|
|
18473
|
-
return $dara.cast<CreateBenchmarkTaskResponse>(await this.execute(params, req, runtime), new CreateBenchmarkTaskResponse({}));
|
|
18474
|
-
}
|
|
18475
|
-
|
|
18471
|
+
return $dara.cast<CreateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new CreateBenchmarkTaskResponse({}));
|
|
18476
18472
|
}
|
|
18477
18473
|
|
|
18478
18474
|
/**
|
|
@@ -18547,12 +18543,7 @@ export default class Client extends OpenApi {
|
|
|
18547
18543
|
reqBodyType: "json",
|
|
18548
18544
|
bodyType: "json",
|
|
18549
18545
|
});
|
|
18550
|
-
|
|
18551
|
-
return $dara.cast<CreateGatewayResponse>(await this.callApi(params, req, runtime), new CreateGatewayResponse({}));
|
|
18552
|
-
} else {
|
|
18553
|
-
return $dara.cast<CreateGatewayResponse>(await this.execute(params, req, runtime), new CreateGatewayResponse({}));
|
|
18554
|
-
}
|
|
18555
|
-
|
|
18546
|
+
return $dara.cast<CreateGatewayResponse>(await this.callApi(params, req, runtime), new CreateGatewayResponse({}));
|
|
18556
18547
|
}
|
|
18557
18548
|
|
|
18558
18549
|
/**
|
|
@@ -18578,6 +18569,10 @@ export default class Client extends OpenApi {
|
|
|
18578
18569
|
async createGatewayIntranetLinkedVpcWithOptions(ClusterId: string, GatewayId: string, request: CreateGatewayIntranetLinkedVpcRequest, headers: {[key: string ]: string}, runtime: $dara.RuntimeOptions): Promise<CreateGatewayIntranetLinkedVpcResponse> {
|
|
18579
18570
|
request.validate();
|
|
18580
18571
|
let query : {[key: string ]: any} = { };
|
|
18572
|
+
if (!$dara.isNull(request.accountId)) {
|
|
18573
|
+
query["AccountId"] = request.accountId;
|
|
18574
|
+
}
|
|
18575
|
+
|
|
18581
18576
|
if (!$dara.isNull(request.enableAuthoritativeDns)) {
|
|
18582
18577
|
query["EnableAuthoritativeDns"] = request.enableAuthoritativeDns;
|
|
18583
18578
|
}
|
|
@@ -18605,12 +18600,7 @@ export default class Client extends OpenApi {
|
|
|
18605
18600
|
reqBodyType: "json",
|
|
18606
18601
|
bodyType: "json",
|
|
18607
18602
|
});
|
|
18608
|
-
|
|
18609
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcResponse({}));
|
|
18610
|
-
} else {
|
|
18611
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcResponse>(await this.execute(params, req, runtime), new CreateGatewayIntranetLinkedVpcResponse({}));
|
|
18612
|
-
}
|
|
18613
|
-
|
|
18603
|
+
return $dara.cast<CreateGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcResponse({}));
|
|
18614
18604
|
}
|
|
18615
18605
|
|
|
18616
18606
|
/**
|
|
@@ -18665,12 +18655,7 @@ export default class Client extends OpenApi {
|
|
|
18665
18655
|
reqBodyType: "json",
|
|
18666
18656
|
bodyType: "json",
|
|
18667
18657
|
});
|
|
18668
|
-
|
|
18669
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcPeerResponse({}));
|
|
18670
|
-
} else {
|
|
18671
|
-
return $dara.cast<CreateGatewayIntranetLinkedVpcPeerResponse>(await this.execute(params, req, runtime), new CreateGatewayIntranetLinkedVpcPeerResponse({}));
|
|
18672
|
-
}
|
|
18673
|
-
|
|
18658
|
+
return $dara.cast<CreateGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new CreateGatewayIntranetLinkedVpcPeerResponse({}));
|
|
18674
18659
|
}
|
|
18675
18660
|
|
|
18676
18661
|
/**
|
|
@@ -18750,12 +18735,7 @@ export default class Client extends OpenApi {
|
|
|
18750
18735
|
reqBodyType: "json",
|
|
18751
18736
|
bodyType: "json",
|
|
18752
18737
|
});
|
|
18753
|
-
|
|
18754
|
-
return $dara.cast<CreateResourceResponse>(await this.callApi(params, req, runtime), new CreateResourceResponse({}));
|
|
18755
|
-
} else {
|
|
18756
|
-
return $dara.cast<CreateResourceResponse>(await this.execute(params, req, runtime), new CreateResourceResponse({}));
|
|
18757
|
-
}
|
|
18758
|
-
|
|
18738
|
+
return $dara.cast<CreateResourceResponse>(await this.callApi(params, req, runtime), new CreateResourceResponse({}));
|
|
18759
18739
|
}
|
|
18760
18740
|
|
|
18761
18741
|
/**
|
|
@@ -18831,12 +18811,7 @@ export default class Client extends OpenApi {
|
|
|
18831
18811
|
reqBodyType: "json",
|
|
18832
18812
|
bodyType: "json",
|
|
18833
18813
|
});
|
|
18834
|
-
|
|
18835
|
-
return $dara.cast<CreateResourceInstancesResponse>(await this.callApi(params, req, runtime), new CreateResourceInstancesResponse({}));
|
|
18836
|
-
} else {
|
|
18837
|
-
return $dara.cast<CreateResourceInstancesResponse>(await this.execute(params, req, runtime), new CreateResourceInstancesResponse({}));
|
|
18838
|
-
}
|
|
18839
|
-
|
|
18814
|
+
return $dara.cast<CreateResourceInstancesResponse>(await this.callApi(params, req, runtime), new CreateResourceInstancesResponse({}));
|
|
18840
18815
|
}
|
|
18841
18816
|
|
|
18842
18817
|
/**
|
|
@@ -18885,12 +18860,7 @@ export default class Client extends OpenApi {
|
|
|
18885
18860
|
reqBodyType: "json",
|
|
18886
18861
|
bodyType: "json",
|
|
18887
18862
|
});
|
|
18888
|
-
|
|
18889
|
-
return $dara.cast<CreateResourceLogResponse>(await this.callApi(params, req, runtime), new CreateResourceLogResponse({}));
|
|
18890
|
-
} else {
|
|
18891
|
-
return $dara.cast<CreateResourceLogResponse>(await this.execute(params, req, runtime), new CreateResourceLogResponse({}));
|
|
18892
|
-
}
|
|
18893
|
-
|
|
18863
|
+
return $dara.cast<CreateResourceLogResponse>(await this.callApi(params, req, runtime), new CreateResourceLogResponse({}));
|
|
18894
18864
|
}
|
|
18895
18865
|
|
|
18896
18866
|
/**
|
|
@@ -18953,12 +18923,7 @@ export default class Client extends OpenApi {
|
|
|
18953
18923
|
reqBodyType: "json",
|
|
18954
18924
|
bodyType: "json",
|
|
18955
18925
|
});
|
|
18956
|
-
|
|
18957
|
-
return $dara.cast<CreateServiceResponse>(await this.callApi(params, req, runtime), new CreateServiceResponse({}));
|
|
18958
|
-
} else {
|
|
18959
|
-
return $dara.cast<CreateServiceResponse>(await this.execute(params, req, runtime), new CreateServiceResponse({}));
|
|
18960
|
-
}
|
|
18961
|
-
|
|
18926
|
+
return $dara.cast<CreateServiceResponse>(await this.callApi(params, req, runtime), new CreateServiceResponse({}));
|
|
18962
18927
|
}
|
|
18963
18928
|
|
|
18964
18929
|
/**
|
|
@@ -19018,12 +18983,7 @@ export default class Client extends OpenApi {
|
|
|
19018
18983
|
reqBodyType: "json",
|
|
19019
18984
|
bodyType: "json",
|
|
19020
18985
|
});
|
|
19021
|
-
|
|
19022
|
-
return $dara.cast<CreateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceAutoScalerResponse({}));
|
|
19023
|
-
} else {
|
|
19024
|
-
return $dara.cast<CreateServiceAutoScalerResponse>(await this.execute(params, req, runtime), new CreateServiceAutoScalerResponse({}));
|
|
19025
|
-
}
|
|
19026
|
-
|
|
18986
|
+
return $dara.cast<CreateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceAutoScalerResponse({}));
|
|
19027
18987
|
}
|
|
19028
18988
|
|
|
19029
18989
|
/**
|
|
@@ -19072,12 +19032,7 @@ export default class Client extends OpenApi {
|
|
|
19072
19032
|
reqBodyType: "json",
|
|
19073
19033
|
bodyType: "json",
|
|
19074
19034
|
});
|
|
19075
|
-
|
|
19076
|
-
return $dara.cast<CreateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceCronScalerResponse({}));
|
|
19077
|
-
} else {
|
|
19078
|
-
return $dara.cast<CreateServiceCronScalerResponse>(await this.execute(params, req, runtime), new CreateServiceCronScalerResponse({}));
|
|
19079
|
-
}
|
|
19080
|
-
|
|
19035
|
+
return $dara.cast<CreateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new CreateServiceCronScalerResponse({}));
|
|
19081
19036
|
}
|
|
19082
19037
|
|
|
19083
19038
|
/**
|
|
@@ -19126,12 +19081,7 @@ export default class Client extends OpenApi {
|
|
|
19126
19081
|
reqBodyType: "json",
|
|
19127
19082
|
bodyType: "json",
|
|
19128
19083
|
});
|
|
19129
|
-
|
|
19130
|
-
return $dara.cast<CreateServiceMirrorResponse>(await this.callApi(params, req, runtime), new CreateServiceMirrorResponse({}));
|
|
19131
|
-
} else {
|
|
19132
|
-
return $dara.cast<CreateServiceMirrorResponse>(await this.execute(params, req, runtime), new CreateServiceMirrorResponse({}));
|
|
19133
|
-
}
|
|
19134
|
-
|
|
19084
|
+
return $dara.cast<CreateServiceMirrorResponse>(await this.callApi(params, req, runtime), new CreateServiceMirrorResponse({}));
|
|
19135
19085
|
}
|
|
19136
19086
|
|
|
19137
19087
|
/**
|
|
@@ -19184,12 +19134,7 @@ export default class Client extends OpenApi {
|
|
|
19184
19134
|
reqBodyType: "json",
|
|
19185
19135
|
bodyType: "json",
|
|
19186
19136
|
});
|
|
19187
|
-
|
|
19188
|
-
return $dara.cast<CreateVirtualResourceResponse>(await this.callApi(params, req, runtime), new CreateVirtualResourceResponse({}));
|
|
19189
|
-
} else {
|
|
19190
|
-
return $dara.cast<CreateVirtualResourceResponse>(await this.execute(params, req, runtime), new CreateVirtualResourceResponse({}));
|
|
19191
|
-
}
|
|
19192
|
-
|
|
19137
|
+
return $dara.cast<CreateVirtualResourceResponse>(await this.callApi(params, req, runtime), new CreateVirtualResourceResponse({}));
|
|
19193
19138
|
}
|
|
19194
19139
|
|
|
19195
19140
|
/**
|
|
@@ -19244,12 +19189,7 @@ export default class Client extends OpenApi {
|
|
|
19244
19189
|
reqBodyType: "json",
|
|
19245
19190
|
bodyType: "json",
|
|
19246
19191
|
});
|
|
19247
|
-
|
|
19248
|
-
return $dara.cast<DeleteAclPolicyResponse>(await this.callApi(params, req, runtime), new DeleteAclPolicyResponse({}));
|
|
19249
|
-
} else {
|
|
19250
|
-
return $dara.cast<DeleteAclPolicyResponse>(await this.execute(params, req, runtime), new DeleteAclPolicyResponse({}));
|
|
19251
|
-
}
|
|
19252
|
-
|
|
19192
|
+
return $dara.cast<DeleteAclPolicyResponse>(await this.callApi(params, req, runtime), new DeleteAclPolicyResponse({}));
|
|
19253
19193
|
}
|
|
19254
19194
|
|
|
19255
19195
|
/**
|
|
@@ -19286,12 +19226,7 @@ export default class Client extends OpenApi {
|
|
|
19286
19226
|
reqBodyType: "json",
|
|
19287
19227
|
bodyType: "json",
|
|
19288
19228
|
});
|
|
19289
|
-
|
|
19290
|
-
return $dara.cast<DeleteBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DeleteBenchmarkTaskResponse({}));
|
|
19291
|
-
} else {
|
|
19292
|
-
return $dara.cast<DeleteBenchmarkTaskResponse>(await this.execute(params, req, runtime), new DeleteBenchmarkTaskResponse({}));
|
|
19293
|
-
}
|
|
19294
|
-
|
|
19229
|
+
return $dara.cast<DeleteBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DeleteBenchmarkTaskResponse({}));
|
|
19295
19230
|
}
|
|
19296
19231
|
|
|
19297
19232
|
/**
|
|
@@ -19326,12 +19261,7 @@ export default class Client extends OpenApi {
|
|
|
19326
19261
|
reqBodyType: "json",
|
|
19327
19262
|
bodyType: "json",
|
|
19328
19263
|
});
|
|
19329
|
-
|
|
19330
|
-
return $dara.cast<DeleteGatewayResponse>(await this.callApi(params, req, runtime), new DeleteGatewayResponse({}));
|
|
19331
|
-
} else {
|
|
19332
|
-
return $dara.cast<DeleteGatewayResponse>(await this.execute(params, req, runtime), new DeleteGatewayResponse({}));
|
|
19333
|
-
}
|
|
19334
|
-
|
|
19264
|
+
return $dara.cast<DeleteGatewayResponse>(await this.callApi(params, req, runtime), new DeleteGatewayResponse({}));
|
|
19335
19265
|
}
|
|
19336
19266
|
|
|
19337
19267
|
/**
|
|
@@ -19378,12 +19308,7 @@ export default class Client extends OpenApi {
|
|
|
19378
19308
|
reqBodyType: "json",
|
|
19379
19309
|
bodyType: "json",
|
|
19380
19310
|
});
|
|
19381
|
-
|
|
19382
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcResponse({}));
|
|
19383
|
-
} else {
|
|
19384
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcResponse>(await this.execute(params, req, runtime), new DeleteGatewayIntranetLinkedVpcResponse({}));
|
|
19385
|
-
}
|
|
19386
|
-
|
|
19311
|
+
return $dara.cast<DeleteGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcResponse({}));
|
|
19387
19312
|
}
|
|
19388
19313
|
|
|
19389
19314
|
/**
|
|
@@ -19438,12 +19363,7 @@ export default class Client extends OpenApi {
|
|
|
19438
19363
|
reqBodyType: "json",
|
|
19439
19364
|
bodyType: "json",
|
|
19440
19365
|
});
|
|
19441
|
-
|
|
19442
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcPeerResponse({}));
|
|
19443
|
-
} else {
|
|
19444
|
-
return $dara.cast<DeleteGatewayIntranetLinkedVpcPeerResponse>(await this.execute(params, req, runtime), new DeleteGatewayIntranetLinkedVpcPeerResponse({}));
|
|
19445
|
-
}
|
|
19446
|
-
|
|
19366
|
+
return $dara.cast<DeleteGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new DeleteGatewayIntranetLinkedVpcPeerResponse({}));
|
|
19447
19367
|
}
|
|
19448
19368
|
|
|
19449
19369
|
/**
|
|
@@ -19480,12 +19400,7 @@ export default class Client extends OpenApi {
|
|
|
19480
19400
|
reqBodyType: "json",
|
|
19481
19401
|
bodyType: "json",
|
|
19482
19402
|
});
|
|
19483
|
-
|
|
19484
|
-
return $dara.cast<DeleteResourceResponse>(await this.callApi(params, req, runtime), new DeleteResourceResponse({}));
|
|
19485
|
-
} else {
|
|
19486
|
-
return $dara.cast<DeleteResourceResponse>(await this.execute(params, req, runtime), new DeleteResourceResponse({}));
|
|
19487
|
-
}
|
|
19488
|
-
|
|
19403
|
+
return $dara.cast<DeleteResourceResponse>(await this.callApi(params, req, runtime), new DeleteResourceResponse({}));
|
|
19489
19404
|
}
|
|
19490
19405
|
|
|
19491
19406
|
/**
|
|
@@ -19520,12 +19435,7 @@ export default class Client extends OpenApi {
|
|
|
19520
19435
|
reqBodyType: "json",
|
|
19521
19436
|
bodyType: "json",
|
|
19522
19437
|
});
|
|
19523
|
-
|
|
19524
|
-
return $dara.cast<DeleteResourceDLinkResponse>(await this.callApi(params, req, runtime), new DeleteResourceDLinkResponse({}));
|
|
19525
|
-
} else {
|
|
19526
|
-
return $dara.cast<DeleteResourceDLinkResponse>(await this.execute(params, req, runtime), new DeleteResourceDLinkResponse({}));
|
|
19527
|
-
}
|
|
19528
|
-
|
|
19438
|
+
return $dara.cast<DeleteResourceDLinkResponse>(await this.callApi(params, req, runtime), new DeleteResourceDLinkResponse({}));
|
|
19529
19439
|
}
|
|
19530
19440
|
|
|
19531
19441
|
/**
|
|
@@ -19586,12 +19496,7 @@ export default class Client extends OpenApi {
|
|
|
19586
19496
|
reqBodyType: "json",
|
|
19587
19497
|
bodyType: "json",
|
|
19588
19498
|
});
|
|
19589
|
-
|
|
19590
|
-
return $dara.cast<DeleteResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstanceLabelResponse({}));
|
|
19591
|
-
} else {
|
|
19592
|
-
return $dara.cast<DeleteResourceInstanceLabelResponse>(await this.execute(params, req, runtime), new DeleteResourceInstanceLabelResponse({}));
|
|
19593
|
-
}
|
|
19594
|
-
|
|
19499
|
+
return $dara.cast<DeleteResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstanceLabelResponse({}));
|
|
19595
19500
|
}
|
|
19596
19501
|
|
|
19597
19502
|
/**
|
|
@@ -19640,12 +19545,7 @@ export default class Client extends OpenApi {
|
|
|
19640
19545
|
reqBodyType: "json",
|
|
19641
19546
|
bodyType: "json",
|
|
19642
19547
|
});
|
|
19643
|
-
|
|
19644
|
-
return $dara.cast<DeleteResourceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstancesResponse({}));
|
|
19645
|
-
} else {
|
|
19646
|
-
return $dara.cast<DeleteResourceInstancesResponse>(await this.execute(params, req, runtime), new DeleteResourceInstancesResponse({}));
|
|
19647
|
-
}
|
|
19648
|
-
|
|
19548
|
+
return $dara.cast<DeleteResourceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteResourceInstancesResponse({}));
|
|
19649
19549
|
}
|
|
19650
19550
|
|
|
19651
19551
|
/**
|
|
@@ -19682,12 +19582,7 @@ export default class Client extends OpenApi {
|
|
|
19682
19582
|
reqBodyType: "json",
|
|
19683
19583
|
bodyType: "json",
|
|
19684
19584
|
});
|
|
19685
|
-
|
|
19686
|
-
return $dara.cast<DeleteResourceLogResponse>(await this.callApi(params, req, runtime), new DeleteResourceLogResponse({}));
|
|
19687
|
-
} else {
|
|
19688
|
-
return $dara.cast<DeleteResourceLogResponse>(await this.execute(params, req, runtime), new DeleteResourceLogResponse({}));
|
|
19689
|
-
}
|
|
19690
|
-
|
|
19585
|
+
return $dara.cast<DeleteResourceLogResponse>(await this.callApi(params, req, runtime), new DeleteResourceLogResponse({}));
|
|
19691
19586
|
}
|
|
19692
19587
|
|
|
19693
19588
|
/**
|
|
@@ -19722,12 +19617,7 @@ export default class Client extends OpenApi {
|
|
|
19722
19617
|
reqBodyType: "json",
|
|
19723
19618
|
bodyType: "json",
|
|
19724
19619
|
});
|
|
19725
|
-
|
|
19726
|
-
return $dara.cast<DeleteServiceResponse>(await this.callApi(params, req, runtime), new DeleteServiceResponse({}));
|
|
19727
|
-
} else {
|
|
19728
|
-
return $dara.cast<DeleteServiceResponse>(await this.execute(params, req, runtime), new DeleteServiceResponse({}));
|
|
19729
|
-
}
|
|
19730
|
-
|
|
19620
|
+
return $dara.cast<DeleteServiceResponse>(await this.callApi(params, req, runtime), new DeleteServiceResponse({}));
|
|
19731
19621
|
}
|
|
19732
19622
|
|
|
19733
19623
|
/**
|
|
@@ -19762,12 +19652,7 @@ export default class Client extends OpenApi {
|
|
|
19762
19652
|
reqBodyType: "json",
|
|
19763
19653
|
bodyType: "json",
|
|
19764
19654
|
});
|
|
19765
|
-
|
|
19766
|
-
return $dara.cast<DeleteServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceAutoScalerResponse({}));
|
|
19767
|
-
} else {
|
|
19768
|
-
return $dara.cast<DeleteServiceAutoScalerResponse>(await this.execute(params, req, runtime), new DeleteServiceAutoScalerResponse({}));
|
|
19769
|
-
}
|
|
19770
|
-
|
|
19655
|
+
return $dara.cast<DeleteServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceAutoScalerResponse({}));
|
|
19771
19656
|
}
|
|
19772
19657
|
|
|
19773
19658
|
/**
|
|
@@ -19802,12 +19687,7 @@ export default class Client extends OpenApi {
|
|
|
19802
19687
|
reqBodyType: "json",
|
|
19803
19688
|
bodyType: "json",
|
|
19804
19689
|
});
|
|
19805
|
-
|
|
19806
|
-
return $dara.cast<DeleteServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceCronScalerResponse({}));
|
|
19807
|
-
} else {
|
|
19808
|
-
return $dara.cast<DeleteServiceCronScalerResponse>(await this.execute(params, req, runtime), new DeleteServiceCronScalerResponse({}));
|
|
19809
|
-
}
|
|
19810
|
-
|
|
19690
|
+
return $dara.cast<DeleteServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DeleteServiceCronScalerResponse({}));
|
|
19811
19691
|
}
|
|
19812
19692
|
|
|
19813
19693
|
/**
|
|
@@ -19858,12 +19738,7 @@ export default class Client extends OpenApi {
|
|
|
19858
19738
|
reqBodyType: "json",
|
|
19859
19739
|
bodyType: "json",
|
|
19860
19740
|
});
|
|
19861
|
-
|
|
19862
|
-
return $dara.cast<DeleteServiceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteServiceInstancesResponse({}));
|
|
19863
|
-
} else {
|
|
19864
|
-
return $dara.cast<DeleteServiceInstancesResponse>(await this.execute(params, req, runtime), new DeleteServiceInstancesResponse({}));
|
|
19865
|
-
}
|
|
19866
|
-
|
|
19741
|
+
return $dara.cast<DeleteServiceInstancesResponse>(await this.callApi(params, req, runtime), new DeleteServiceInstancesResponse({}));
|
|
19867
19742
|
}
|
|
19868
19743
|
|
|
19869
19744
|
/**
|
|
@@ -19914,12 +19789,7 @@ export default class Client extends OpenApi {
|
|
|
19914
19789
|
reqBodyType: "json",
|
|
19915
19790
|
bodyType: "json",
|
|
19916
19791
|
});
|
|
19917
|
-
|
|
19918
|
-
return $dara.cast<DeleteServiceLabelResponse>(await this.callApi(params, req, runtime), new DeleteServiceLabelResponse({}));
|
|
19919
|
-
} else {
|
|
19920
|
-
return $dara.cast<DeleteServiceLabelResponse>(await this.execute(params, req, runtime), new DeleteServiceLabelResponse({}));
|
|
19921
|
-
}
|
|
19922
|
-
|
|
19792
|
+
return $dara.cast<DeleteServiceLabelResponse>(await this.callApi(params, req, runtime), new DeleteServiceLabelResponse({}));
|
|
19923
19793
|
}
|
|
19924
19794
|
|
|
19925
19795
|
/**
|
|
@@ -19956,12 +19826,7 @@ export default class Client extends OpenApi {
|
|
|
19956
19826
|
reqBodyType: "json",
|
|
19957
19827
|
bodyType: "json",
|
|
19958
19828
|
});
|
|
19959
|
-
|
|
19960
|
-
return $dara.cast<DeleteServiceMirrorResponse>(await this.callApi(params, req, runtime), new DeleteServiceMirrorResponse({}));
|
|
19961
|
-
} else {
|
|
19962
|
-
return $dara.cast<DeleteServiceMirrorResponse>(await this.execute(params, req, runtime), new DeleteServiceMirrorResponse({}));
|
|
19963
|
-
}
|
|
19964
|
-
|
|
19829
|
+
return $dara.cast<DeleteServiceMirrorResponse>(await this.callApi(params, req, runtime), new DeleteServiceMirrorResponse({}));
|
|
19965
19830
|
}
|
|
19966
19831
|
|
|
19967
19832
|
/**
|
|
@@ -19996,12 +19861,7 @@ export default class Client extends OpenApi {
|
|
|
19996
19861
|
reqBodyType: "json",
|
|
19997
19862
|
bodyType: "json",
|
|
19998
19863
|
});
|
|
19999
|
-
|
|
20000
|
-
return $dara.cast<DeleteVirtualResourceResponse>(await this.callApi(params, req, runtime), new DeleteVirtualResourceResponse({}));
|
|
20001
|
-
} else {
|
|
20002
|
-
return $dara.cast<DeleteVirtualResourceResponse>(await this.execute(params, req, runtime), new DeleteVirtualResourceResponse({}));
|
|
20003
|
-
}
|
|
20004
|
-
|
|
19864
|
+
return $dara.cast<DeleteVirtualResourceResponse>(await this.callApi(params, req, runtime), new DeleteVirtualResourceResponse({}));
|
|
20005
19865
|
}
|
|
20006
19866
|
|
|
20007
19867
|
/**
|
|
@@ -20036,12 +19896,7 @@ export default class Client extends OpenApi {
|
|
|
20036
19896
|
reqBodyType: "json",
|
|
20037
19897
|
bodyType: "json",
|
|
20038
19898
|
});
|
|
20039
|
-
|
|
20040
|
-
return $dara.cast<DescribeBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskResponse({}));
|
|
20041
|
-
} else {
|
|
20042
|
-
return $dara.cast<DescribeBenchmarkTaskResponse>(await this.execute(params, req, runtime), new DescribeBenchmarkTaskResponse({}));
|
|
20043
|
-
}
|
|
20044
|
-
|
|
19899
|
+
return $dara.cast<DescribeBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskResponse({}));
|
|
20045
19900
|
}
|
|
20046
19901
|
|
|
20047
19902
|
/**
|
|
@@ -20084,12 +19939,7 @@ export default class Client extends OpenApi {
|
|
|
20084
19939
|
reqBodyType: "json",
|
|
20085
19940
|
bodyType: "json",
|
|
20086
19941
|
});
|
|
20087
|
-
|
|
20088
|
-
return $dara.cast<DescribeBenchmarkTaskReportResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskReportResponse({}));
|
|
20089
|
-
} else {
|
|
20090
|
-
return $dara.cast<DescribeBenchmarkTaskReportResponse>(await this.execute(params, req, runtime), new DescribeBenchmarkTaskReportResponse({}));
|
|
20091
|
-
}
|
|
20092
|
-
|
|
19942
|
+
return $dara.cast<DescribeBenchmarkTaskReportResponse>(await this.callApi(params, req, runtime), new DescribeBenchmarkTaskReportResponse({}));
|
|
20093
19943
|
}
|
|
20094
19944
|
|
|
20095
19945
|
/**
|
|
@@ -20126,12 +19976,7 @@ export default class Client extends OpenApi {
|
|
|
20126
19976
|
reqBodyType: "json",
|
|
20127
19977
|
bodyType: "json",
|
|
20128
19978
|
});
|
|
20129
|
-
|
|
20130
|
-
return $dara.cast<DescribeGatewayResponse>(await this.callApi(params, req, runtime), new DescribeGatewayResponse({}));
|
|
20131
|
-
} else {
|
|
20132
|
-
return $dara.cast<DescribeGatewayResponse>(await this.execute(params, req, runtime), new DescribeGatewayResponse({}));
|
|
20133
|
-
}
|
|
20134
|
-
|
|
19979
|
+
return $dara.cast<DescribeGatewayResponse>(await this.callApi(params, req, runtime), new DescribeGatewayResponse({}));
|
|
20135
19980
|
}
|
|
20136
19981
|
|
|
20137
19982
|
/**
|
|
@@ -20166,12 +20011,7 @@ export default class Client extends OpenApi {
|
|
|
20166
20011
|
reqBodyType: "json",
|
|
20167
20012
|
bodyType: "json",
|
|
20168
20013
|
});
|
|
20169
|
-
|
|
20170
|
-
return $dara.cast<DescribeGroupResponse>(await this.callApi(params, req, runtime), new DescribeGroupResponse({}));
|
|
20171
|
-
} else {
|
|
20172
|
-
return $dara.cast<DescribeGroupResponse>(await this.execute(params, req, runtime), new DescribeGroupResponse({}));
|
|
20173
|
-
}
|
|
20174
|
-
|
|
20014
|
+
return $dara.cast<DescribeGroupResponse>(await this.callApi(params, req, runtime), new DescribeGroupResponse({}));
|
|
20175
20015
|
}
|
|
20176
20016
|
|
|
20177
20017
|
/**
|
|
@@ -20206,12 +20046,7 @@ export default class Client extends OpenApi {
|
|
|
20206
20046
|
reqBodyType: "json",
|
|
20207
20047
|
bodyType: "json",
|
|
20208
20048
|
});
|
|
20209
|
-
|
|
20210
|
-
return $dara.cast<DescribeGroupEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeGroupEndpointsResponse({}));
|
|
20211
|
-
} else {
|
|
20212
|
-
return $dara.cast<DescribeGroupEndpointsResponse>(await this.execute(params, req, runtime), new DescribeGroupEndpointsResponse({}));
|
|
20213
|
-
}
|
|
20214
|
-
|
|
20049
|
+
return $dara.cast<DescribeGroupEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeGroupEndpointsResponse({}));
|
|
20215
20050
|
}
|
|
20216
20051
|
|
|
20217
20052
|
/**
|
|
@@ -20260,12 +20095,7 @@ export default class Client extends OpenApi {
|
|
|
20260
20095
|
reqBodyType: "json",
|
|
20261
20096
|
bodyType: "json",
|
|
20262
20097
|
});
|
|
20263
|
-
|
|
20264
|
-
return $dara.cast<DescribeMachineSpecResponse>(await this.callApi(params, req, runtime), new DescribeMachineSpecResponse({}));
|
|
20265
|
-
} else {
|
|
20266
|
-
return $dara.cast<DescribeMachineSpecResponse>(await this.execute(params, req, runtime), new DescribeMachineSpecResponse({}));
|
|
20267
|
-
}
|
|
20268
|
-
|
|
20098
|
+
return $dara.cast<DescribeMachineSpecResponse>(await this.callApi(params, req, runtime), new DescribeMachineSpecResponse({}));
|
|
20269
20099
|
}
|
|
20270
20100
|
|
|
20271
20101
|
/**
|
|
@@ -20281,7 +20111,7 @@ export default class Client extends OpenApi {
|
|
|
20281
20111
|
}
|
|
20282
20112
|
|
|
20283
20113
|
/**
|
|
20284
|
-
*
|
|
20114
|
+
* Queries available regions.
|
|
20285
20115
|
*
|
|
20286
20116
|
* @param headers - map
|
|
20287
20117
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20302,16 +20132,11 @@ export default class Client extends OpenApi {
|
|
|
20302
20132
|
reqBodyType: "json",
|
|
20303
20133
|
bodyType: "json",
|
|
20304
20134
|
});
|
|
20305
|
-
|
|
20306
|
-
return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
20307
|
-
} else {
|
|
20308
|
-
return $dara.cast<DescribeRegionsResponse>(await this.execute(params, req, runtime), new DescribeRegionsResponse({}));
|
|
20309
|
-
}
|
|
20310
|
-
|
|
20135
|
+
return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
20311
20136
|
}
|
|
20312
20137
|
|
|
20313
20138
|
/**
|
|
20314
|
-
*
|
|
20139
|
+
* Queries available regions.
|
|
20315
20140
|
* @returns DescribeRegionsResponse
|
|
20316
20141
|
*/
|
|
20317
20142
|
async describeRegions(): Promise<DescribeRegionsResponse> {
|
|
@@ -20342,12 +20167,7 @@ export default class Client extends OpenApi {
|
|
|
20342
20167
|
reqBodyType: "json",
|
|
20343
20168
|
bodyType: "json",
|
|
20344
20169
|
});
|
|
20345
|
-
|
|
20346
|
-
return $dara.cast<DescribeResourceResponse>(await this.callApi(params, req, runtime), new DescribeResourceResponse({}));
|
|
20347
|
-
} else {
|
|
20348
|
-
return $dara.cast<DescribeResourceResponse>(await this.execute(params, req, runtime), new DescribeResourceResponse({}));
|
|
20349
|
-
}
|
|
20350
|
-
|
|
20170
|
+
return $dara.cast<DescribeResourceResponse>(await this.callApi(params, req, runtime), new DescribeResourceResponse({}));
|
|
20351
20171
|
}
|
|
20352
20172
|
|
|
20353
20173
|
/**
|
|
@@ -20382,12 +20202,7 @@ export default class Client extends OpenApi {
|
|
|
20382
20202
|
reqBodyType: "json",
|
|
20383
20203
|
bodyType: "json",
|
|
20384
20204
|
});
|
|
20385
|
-
|
|
20386
|
-
return $dara.cast<DescribeResourceDLinkResponse>(await this.callApi(params, req, runtime), new DescribeResourceDLinkResponse({}));
|
|
20387
|
-
} else {
|
|
20388
|
-
return $dara.cast<DescribeResourceDLinkResponse>(await this.execute(params, req, runtime), new DescribeResourceDLinkResponse({}));
|
|
20389
|
-
}
|
|
20390
|
-
|
|
20205
|
+
return $dara.cast<DescribeResourceDLinkResponse>(await this.callApi(params, req, runtime), new DescribeResourceDLinkResponse({}));
|
|
20391
20206
|
}
|
|
20392
20207
|
|
|
20393
20208
|
/**
|
|
@@ -20422,12 +20237,7 @@ export default class Client extends OpenApi {
|
|
|
20422
20237
|
reqBodyType: "json",
|
|
20423
20238
|
bodyType: "json",
|
|
20424
20239
|
});
|
|
20425
|
-
|
|
20426
|
-
return $dara.cast<DescribeResourceLogResponse>(await this.callApi(params, req, runtime), new DescribeResourceLogResponse({}));
|
|
20427
|
-
} else {
|
|
20428
|
-
return $dara.cast<DescribeResourceLogResponse>(await this.execute(params, req, runtime), new DescribeResourceLogResponse({}));
|
|
20429
|
-
}
|
|
20430
|
-
|
|
20240
|
+
return $dara.cast<DescribeResourceLogResponse>(await this.callApi(params, req, runtime), new DescribeResourceLogResponse({}));
|
|
20431
20241
|
}
|
|
20432
20242
|
|
|
20433
20243
|
/**
|
|
@@ -20462,12 +20272,7 @@ export default class Client extends OpenApi {
|
|
|
20462
20272
|
reqBodyType: "json",
|
|
20463
20273
|
bodyType: "json",
|
|
20464
20274
|
});
|
|
20465
|
-
|
|
20466
|
-
return $dara.cast<DescribeServiceResponse>(await this.callApi(params, req, runtime), new DescribeServiceResponse({}));
|
|
20467
|
-
} else {
|
|
20468
|
-
return $dara.cast<DescribeServiceResponse>(await this.execute(params, req, runtime), new DescribeServiceResponse({}));
|
|
20469
|
-
}
|
|
20470
|
-
|
|
20275
|
+
return $dara.cast<DescribeServiceResponse>(await this.callApi(params, req, runtime), new DescribeServiceResponse({}));
|
|
20471
20276
|
}
|
|
20472
20277
|
|
|
20473
20278
|
/**
|
|
@@ -20502,12 +20307,7 @@ export default class Client extends OpenApi {
|
|
|
20502
20307
|
reqBodyType: "json",
|
|
20503
20308
|
bodyType: "json",
|
|
20504
20309
|
});
|
|
20505
|
-
|
|
20506
|
-
return $dara.cast<DescribeServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceAutoScalerResponse({}));
|
|
20507
|
-
} else {
|
|
20508
|
-
return $dara.cast<DescribeServiceAutoScalerResponse>(await this.execute(params, req, runtime), new DescribeServiceAutoScalerResponse({}));
|
|
20509
|
-
}
|
|
20510
|
-
|
|
20310
|
+
return $dara.cast<DescribeServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceAutoScalerResponse({}));
|
|
20511
20311
|
}
|
|
20512
20312
|
|
|
20513
20313
|
/**
|
|
@@ -20542,12 +20342,7 @@ export default class Client extends OpenApi {
|
|
|
20542
20342
|
reqBodyType: "json",
|
|
20543
20343
|
bodyType: "json",
|
|
20544
20344
|
});
|
|
20545
|
-
|
|
20546
|
-
return $dara.cast<DescribeServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceCronScalerResponse({}));
|
|
20547
|
-
} else {
|
|
20548
|
-
return $dara.cast<DescribeServiceCronScalerResponse>(await this.execute(params, req, runtime), new DescribeServiceCronScalerResponse({}));
|
|
20549
|
-
}
|
|
20550
|
-
|
|
20345
|
+
return $dara.cast<DescribeServiceCronScalerResponse>(await this.callApi(params, req, runtime), new DescribeServiceCronScalerResponse({}));
|
|
20551
20346
|
}
|
|
20552
20347
|
|
|
20553
20348
|
/**
|
|
@@ -20582,12 +20377,7 @@ export default class Client extends OpenApi {
|
|
|
20582
20377
|
reqBodyType: "json",
|
|
20583
20378
|
bodyType: "json",
|
|
20584
20379
|
});
|
|
20585
|
-
|
|
20586
|
-
return $dara.cast<DescribeServiceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceDiagnosisResponse({}));
|
|
20587
|
-
} else {
|
|
20588
|
-
return $dara.cast<DescribeServiceDiagnosisResponse>(await this.execute(params, req, runtime), new DescribeServiceDiagnosisResponse({}));
|
|
20589
|
-
}
|
|
20590
|
-
|
|
20380
|
+
return $dara.cast<DescribeServiceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceDiagnosisResponse({}));
|
|
20591
20381
|
}
|
|
20592
20382
|
|
|
20593
20383
|
/**
|
|
@@ -20622,12 +20412,7 @@ export default class Client extends OpenApi {
|
|
|
20622
20412
|
reqBodyType: "json",
|
|
20623
20413
|
bodyType: "json",
|
|
20624
20414
|
});
|
|
20625
|
-
|
|
20626
|
-
return $dara.cast<DescribeServiceEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeServiceEndpointsResponse({}));
|
|
20627
|
-
} else {
|
|
20628
|
-
return $dara.cast<DescribeServiceEndpointsResponse>(await this.execute(params, req, runtime), new DescribeServiceEndpointsResponse({}));
|
|
20629
|
-
}
|
|
20630
|
-
|
|
20415
|
+
return $dara.cast<DescribeServiceEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeServiceEndpointsResponse({}));
|
|
20631
20416
|
}
|
|
20632
20417
|
|
|
20633
20418
|
/**
|
|
@@ -20690,12 +20475,7 @@ export default class Client extends OpenApi {
|
|
|
20690
20475
|
reqBodyType: "json",
|
|
20691
20476
|
bodyType: "json",
|
|
20692
20477
|
});
|
|
20693
|
-
|
|
20694
|
-
return $dara.cast<DescribeServiceEventResponse>(await this.callApi(params, req, runtime), new DescribeServiceEventResponse({}));
|
|
20695
|
-
} else {
|
|
20696
|
-
return $dara.cast<DescribeServiceEventResponse>(await this.execute(params, req, runtime), new DescribeServiceEventResponse({}));
|
|
20697
|
-
}
|
|
20698
|
-
|
|
20478
|
+
return $dara.cast<DescribeServiceEventResponse>(await this.callApi(params, req, runtime), new DescribeServiceEventResponse({}));
|
|
20699
20479
|
}
|
|
20700
20480
|
|
|
20701
20481
|
/**
|
|
@@ -20732,12 +20512,7 @@ export default class Client extends OpenApi {
|
|
|
20732
20512
|
reqBodyType: "json",
|
|
20733
20513
|
bodyType: "json",
|
|
20734
20514
|
});
|
|
20735
|
-
|
|
20736
|
-
return $dara.cast<DescribeServiceInstanceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceInstanceDiagnosisResponse({}));
|
|
20737
|
-
} else {
|
|
20738
|
-
return $dara.cast<DescribeServiceInstanceDiagnosisResponse>(await this.execute(params, req, runtime), new DescribeServiceInstanceDiagnosisResponse({}));
|
|
20739
|
-
}
|
|
20740
|
-
|
|
20515
|
+
return $dara.cast<DescribeServiceInstanceDiagnosisResponse>(await this.callApi(params, req, runtime), new DescribeServiceInstanceDiagnosisResponse({}));
|
|
20741
20516
|
}
|
|
20742
20517
|
|
|
20743
20518
|
/**
|
|
@@ -20812,12 +20587,7 @@ export default class Client extends OpenApi {
|
|
|
20812
20587
|
reqBodyType: "json",
|
|
20813
20588
|
bodyType: "json",
|
|
20814
20589
|
});
|
|
20815
|
-
|
|
20816
|
-
return $dara.cast<DescribeServiceLogResponse>(await this.callApi(params, req, runtime), new DescribeServiceLogResponse({}));
|
|
20817
|
-
} else {
|
|
20818
|
-
return $dara.cast<DescribeServiceLogResponse>(await this.execute(params, req, runtime), new DescribeServiceLogResponse({}));
|
|
20819
|
-
}
|
|
20820
|
-
|
|
20590
|
+
return $dara.cast<DescribeServiceLogResponse>(await this.callApi(params, req, runtime), new DescribeServiceLogResponse({}));
|
|
20821
20591
|
}
|
|
20822
20592
|
|
|
20823
20593
|
/**
|
|
@@ -20854,12 +20624,7 @@ export default class Client extends OpenApi {
|
|
|
20854
20624
|
reqBodyType: "json",
|
|
20855
20625
|
bodyType: "json",
|
|
20856
20626
|
});
|
|
20857
|
-
|
|
20858
|
-
return $dara.cast<DescribeServiceMirrorResponse>(await this.callApi(params, req, runtime), new DescribeServiceMirrorResponse({}));
|
|
20859
|
-
} else {
|
|
20860
|
-
return $dara.cast<DescribeServiceMirrorResponse>(await this.execute(params, req, runtime), new DescribeServiceMirrorResponse({}));
|
|
20861
|
-
}
|
|
20862
|
-
|
|
20627
|
+
return $dara.cast<DescribeServiceMirrorResponse>(await this.callApi(params, req, runtime), new DescribeServiceMirrorResponse({}));
|
|
20863
20628
|
}
|
|
20864
20629
|
|
|
20865
20630
|
/**
|
|
@@ -20910,12 +20675,7 @@ export default class Client extends OpenApi {
|
|
|
20910
20675
|
reqBodyType: "json",
|
|
20911
20676
|
bodyType: "json",
|
|
20912
20677
|
});
|
|
20913
|
-
|
|
20914
|
-
return $dara.cast<DescribeServiceSignedUrlResponse>(await this.callApi(params, req, runtime), new DescribeServiceSignedUrlResponse({}));
|
|
20915
|
-
} else {
|
|
20916
|
-
return $dara.cast<DescribeServiceSignedUrlResponse>(await this.execute(params, req, runtime), new DescribeServiceSignedUrlResponse({}));
|
|
20917
|
-
}
|
|
20918
|
-
|
|
20678
|
+
return $dara.cast<DescribeServiceSignedUrlResponse>(await this.callApi(params, req, runtime), new DescribeServiceSignedUrlResponse({}));
|
|
20919
20679
|
}
|
|
20920
20680
|
|
|
20921
20681
|
/**
|
|
@@ -20964,12 +20724,7 @@ export default class Client extends OpenApi {
|
|
|
20964
20724
|
reqBodyType: "json",
|
|
20965
20725
|
bodyType: "json",
|
|
20966
20726
|
});
|
|
20967
|
-
|
|
20968
|
-
return $dara.cast<DescribeSpotDiscountHistoryResponse>(await this.callApi(params, req, runtime), new DescribeSpotDiscountHistoryResponse({}));
|
|
20969
|
-
} else {
|
|
20970
|
-
return $dara.cast<DescribeSpotDiscountHistoryResponse>(await this.execute(params, req, runtime), new DescribeSpotDiscountHistoryResponse({}));
|
|
20971
|
-
}
|
|
20972
|
-
|
|
20727
|
+
return $dara.cast<DescribeSpotDiscountHistoryResponse>(await this.callApi(params, req, runtime), new DescribeSpotDiscountHistoryResponse({}));
|
|
20973
20728
|
}
|
|
20974
20729
|
|
|
20975
20730
|
/**
|
|
@@ -21006,12 +20761,7 @@ export default class Client extends OpenApi {
|
|
|
21006
20761
|
reqBodyType: "json",
|
|
21007
20762
|
bodyType: "json",
|
|
21008
20763
|
});
|
|
21009
|
-
|
|
21010
|
-
return $dara.cast<DescribeVirtualResourceResponse>(await this.callApi(params, req, runtime), new DescribeVirtualResourceResponse({}));
|
|
21011
|
-
} else {
|
|
21012
|
-
return $dara.cast<DescribeVirtualResourceResponse>(await this.execute(params, req, runtime), new DescribeVirtualResourceResponse({}));
|
|
21013
|
-
}
|
|
21014
|
-
|
|
20764
|
+
return $dara.cast<DescribeVirtualResourceResponse>(await this.callApi(params, req, runtime), new DescribeVirtualResourceResponse({}));
|
|
21015
20765
|
}
|
|
21016
20766
|
|
|
21017
20767
|
/**
|
|
@@ -21060,12 +20810,7 @@ export default class Client extends OpenApi {
|
|
|
21060
20810
|
reqBodyType: "json",
|
|
21061
20811
|
bodyType: "json",
|
|
21062
20812
|
});
|
|
21063
|
-
|
|
21064
|
-
return $dara.cast<DetachGatewayDomainResponse>(await this.callApi(params, req, runtime), new DetachGatewayDomainResponse({}));
|
|
21065
|
-
} else {
|
|
21066
|
-
return $dara.cast<DetachGatewayDomainResponse>(await this.execute(params, req, runtime), new DetachGatewayDomainResponse({}));
|
|
21067
|
-
}
|
|
21068
|
-
|
|
20813
|
+
return $dara.cast<DetachGatewayDomainResponse>(await this.callApi(params, req, runtime), new DetachGatewayDomainResponse({}));
|
|
21069
20814
|
}
|
|
21070
20815
|
|
|
21071
20816
|
/**
|
|
@@ -21110,12 +20855,7 @@ export default class Client extends OpenApi {
|
|
|
21110
20855
|
reqBodyType: "json",
|
|
21111
20856
|
bodyType: "json",
|
|
21112
20857
|
});
|
|
21113
|
-
|
|
21114
|
-
return $dara.cast<DevelopServiceResponse>(await this.callApi(params, req, runtime), new DevelopServiceResponse({}));
|
|
21115
|
-
} else {
|
|
21116
|
-
return $dara.cast<DevelopServiceResponse>(await this.execute(params, req, runtime), new DevelopServiceResponse({}));
|
|
21117
|
-
}
|
|
21118
|
-
|
|
20858
|
+
return $dara.cast<DevelopServiceResponse>(await this.callApi(params, req, runtime), new DevelopServiceResponse({}));
|
|
21119
20859
|
}
|
|
21120
20860
|
|
|
21121
20861
|
/**
|
|
@@ -21160,12 +20900,7 @@ export default class Client extends OpenApi {
|
|
|
21160
20900
|
reqBodyType: "json",
|
|
21161
20901
|
bodyType: "json",
|
|
21162
20902
|
});
|
|
21163
|
-
|
|
21164
|
-
return $dara.cast<ListAclPolicyResponse>(await this.callApi(params, req, runtime), new ListAclPolicyResponse({}));
|
|
21165
|
-
} else {
|
|
21166
|
-
return $dara.cast<ListAclPolicyResponse>(await this.execute(params, req, runtime), new ListAclPolicyResponse({}));
|
|
21167
|
-
}
|
|
21168
|
-
|
|
20903
|
+
return $dara.cast<ListAclPolicyResponse>(await this.callApi(params, req, runtime), new ListAclPolicyResponse({}));
|
|
21169
20904
|
}
|
|
21170
20905
|
|
|
21171
20906
|
/**
|
|
@@ -21222,12 +20957,7 @@ export default class Client extends OpenApi {
|
|
|
21222
20957
|
reqBodyType: "json",
|
|
21223
20958
|
bodyType: "json",
|
|
21224
20959
|
});
|
|
21225
|
-
|
|
21226
|
-
return $dara.cast<ListBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new ListBenchmarkTaskResponse({}));
|
|
21227
|
-
} else {
|
|
21228
|
-
return $dara.cast<ListBenchmarkTaskResponse>(await this.execute(params, req, runtime), new ListBenchmarkTaskResponse({}));
|
|
21229
|
-
}
|
|
21230
|
-
|
|
20960
|
+
return $dara.cast<ListBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new ListBenchmarkTaskResponse({}));
|
|
21231
20961
|
}
|
|
21232
20962
|
|
|
21233
20963
|
/**
|
|
@@ -21288,12 +21018,7 @@ export default class Client extends OpenApi {
|
|
|
21288
21018
|
reqBodyType: "json",
|
|
21289
21019
|
bodyType: "json",
|
|
21290
21020
|
});
|
|
21291
|
-
|
|
21292
|
-
return $dara.cast<ListGatewayResponse>(await this.callApi(params, req, runtime), new ListGatewayResponse({}));
|
|
21293
|
-
} else {
|
|
21294
|
-
return $dara.cast<ListGatewayResponse>(await this.execute(params, req, runtime), new ListGatewayResponse({}));
|
|
21295
|
-
}
|
|
21296
|
-
|
|
21021
|
+
return $dara.cast<ListGatewayResponse>(await this.callApi(params, req, runtime), new ListGatewayResponse({}));
|
|
21297
21022
|
}
|
|
21298
21023
|
|
|
21299
21024
|
/**
|
|
@@ -21330,12 +21055,7 @@ export default class Client extends OpenApi {
|
|
|
21330
21055
|
reqBodyType: "json",
|
|
21331
21056
|
bodyType: "json",
|
|
21332
21057
|
});
|
|
21333
|
-
|
|
21334
|
-
return $dara.cast<ListGatewayDomainsResponse>(await this.callApi(params, req, runtime), new ListGatewayDomainsResponse({}));
|
|
21335
|
-
} else {
|
|
21336
|
-
return $dara.cast<ListGatewayDomainsResponse>(await this.execute(params, req, runtime), new ListGatewayDomainsResponse({}));
|
|
21337
|
-
}
|
|
21338
|
-
|
|
21058
|
+
return $dara.cast<ListGatewayDomainsResponse>(await this.callApi(params, req, runtime), new ListGatewayDomainsResponse({}));
|
|
21339
21059
|
}
|
|
21340
21060
|
|
|
21341
21061
|
/**
|
|
@@ -21370,12 +21090,7 @@ export default class Client extends OpenApi {
|
|
|
21370
21090
|
reqBodyType: "json",
|
|
21371
21091
|
bodyType: "json",
|
|
21372
21092
|
});
|
|
21373
|
-
|
|
21374
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcResponse({}));
|
|
21375
|
-
} else {
|
|
21376
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcResponse>(await this.execute(params, req, runtime), new ListGatewayIntranetLinkedVpcResponse({}));
|
|
21377
|
-
}
|
|
21378
|
-
|
|
21093
|
+
return $dara.cast<ListGatewayIntranetLinkedVpcResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcResponse({}));
|
|
21379
21094
|
}
|
|
21380
21095
|
|
|
21381
21096
|
/**
|
|
@@ -21418,12 +21133,7 @@ export default class Client extends OpenApi {
|
|
|
21418
21133
|
reqBodyType: "json",
|
|
21419
21134
|
bodyType: "json",
|
|
21420
21135
|
});
|
|
21421
|
-
|
|
21422
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcPeerResponse({}));
|
|
21423
|
-
} else {
|
|
21424
|
-
return $dara.cast<ListGatewayIntranetLinkedVpcPeerResponse>(await this.execute(params, req, runtime), new ListGatewayIntranetLinkedVpcPeerResponse({}));
|
|
21425
|
-
}
|
|
21426
|
-
|
|
21136
|
+
return $dara.cast<ListGatewayIntranetLinkedVpcPeerResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetLinkedVpcPeerResponse({}));
|
|
21427
21137
|
}
|
|
21428
21138
|
|
|
21429
21139
|
/**
|
|
@@ -21460,12 +21170,7 @@ export default class Client extends OpenApi {
|
|
|
21460
21170
|
reqBodyType: "json",
|
|
21461
21171
|
bodyType: "json",
|
|
21462
21172
|
});
|
|
21463
|
-
|
|
21464
|
-
return $dara.cast<ListGatewayIntranetSupportedZoneResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetSupportedZoneResponse({}));
|
|
21465
|
-
} else {
|
|
21466
|
-
return $dara.cast<ListGatewayIntranetSupportedZoneResponse>(await this.execute(params, req, runtime), new ListGatewayIntranetSupportedZoneResponse({}));
|
|
21467
|
-
}
|
|
21468
|
-
|
|
21173
|
+
return $dara.cast<ListGatewayIntranetSupportedZoneResponse>(await this.callApi(params, req, runtime), new ListGatewayIntranetSupportedZoneResponse({}));
|
|
21469
21174
|
}
|
|
21470
21175
|
|
|
21471
21176
|
/**
|
|
@@ -21520,12 +21225,7 @@ export default class Client extends OpenApi {
|
|
|
21520
21225
|
reqBodyType: "json",
|
|
21521
21226
|
bodyType: "json",
|
|
21522
21227
|
});
|
|
21523
|
-
|
|
21524
|
-
return $dara.cast<ListGroupsResponse>(await this.callApi(params, req, runtime), new ListGroupsResponse({}));
|
|
21525
|
-
} else {
|
|
21526
|
-
return $dara.cast<ListGroupsResponse>(await this.execute(params, req, runtime), new ListGroupsResponse({}));
|
|
21527
|
-
}
|
|
21528
|
-
|
|
21228
|
+
return $dara.cast<ListGroupsResponse>(await this.callApi(params, req, runtime), new ListGroupsResponse({}));
|
|
21529
21229
|
}
|
|
21530
21230
|
|
|
21531
21231
|
/**
|
|
@@ -21578,12 +21278,7 @@ export default class Client extends OpenApi {
|
|
|
21578
21278
|
reqBodyType: "json",
|
|
21579
21279
|
bodyType: "json",
|
|
21580
21280
|
});
|
|
21581
|
-
|
|
21582
|
-
return $dara.cast<ListResourceInstanceWorkerResponse>(await this.callApi(params, req, runtime), new ListResourceInstanceWorkerResponse({}));
|
|
21583
|
-
} else {
|
|
21584
|
-
return $dara.cast<ListResourceInstanceWorkerResponse>(await this.execute(params, req, runtime), new ListResourceInstanceWorkerResponse({}));
|
|
21585
|
-
}
|
|
21586
|
-
|
|
21281
|
+
return $dara.cast<ListResourceInstanceWorkerResponse>(await this.callApi(params, req, runtime), new ListResourceInstanceWorkerResponse({}));
|
|
21587
21282
|
}
|
|
21588
21283
|
|
|
21589
21284
|
/**
|
|
@@ -21674,12 +21369,7 @@ export default class Client extends OpenApi {
|
|
|
21674
21369
|
reqBodyType: "json",
|
|
21675
21370
|
bodyType: "json",
|
|
21676
21371
|
});
|
|
21677
|
-
|
|
21678
|
-
return $dara.cast<ListResourceInstancesResponse>(await this.callApi(params, req, runtime), new ListResourceInstancesResponse({}));
|
|
21679
|
-
} else {
|
|
21680
|
-
return $dara.cast<ListResourceInstancesResponse>(await this.execute(params, req, runtime), new ListResourceInstancesResponse({}));
|
|
21681
|
-
}
|
|
21682
|
-
|
|
21372
|
+
return $dara.cast<ListResourceInstancesResponse>(await this.callApi(params, req, runtime), new ListResourceInstancesResponse({}));
|
|
21683
21373
|
}
|
|
21684
21374
|
|
|
21685
21375
|
/**
|
|
@@ -21731,12 +21421,7 @@ export default class Client extends OpenApi {
|
|
|
21731
21421
|
reqBodyType: "json",
|
|
21732
21422
|
bodyType: "json",
|
|
21733
21423
|
});
|
|
21734
|
-
|
|
21735
|
-
return $dara.cast<ListResourceServicesResponse>(await this.callApi(params, req, runtime), new ListResourceServicesResponse({}));
|
|
21736
|
-
} else {
|
|
21737
|
-
return $dara.cast<ListResourceServicesResponse>(await this.execute(params, req, runtime), new ListResourceServicesResponse({}));
|
|
21738
|
-
}
|
|
21739
|
-
|
|
21424
|
+
return $dara.cast<ListResourceServicesResponse>(await this.callApi(params, req, runtime), new ListResourceServicesResponse({}));
|
|
21740
21425
|
}
|
|
21741
21426
|
|
|
21742
21427
|
/**
|
|
@@ -21812,12 +21497,7 @@ export default class Client extends OpenApi {
|
|
|
21812
21497
|
reqBodyType: "json",
|
|
21813
21498
|
bodyType: "json",
|
|
21814
21499
|
});
|
|
21815
|
-
|
|
21816
|
-
return $dara.cast<ListResourcesResponse>(await this.callApi(params, req, runtime), new ListResourcesResponse({}));
|
|
21817
|
-
} else {
|
|
21818
|
-
return $dara.cast<ListResourcesResponse>(await this.execute(params, req, runtime), new ListResourcesResponse({}));
|
|
21819
|
-
}
|
|
21820
|
-
|
|
21500
|
+
return $dara.cast<ListResourcesResponse>(await this.callApi(params, req, runtime), new ListResourcesResponse({}));
|
|
21821
21501
|
}
|
|
21822
21502
|
|
|
21823
21503
|
/**
|
|
@@ -21854,12 +21534,7 @@ export default class Client extends OpenApi {
|
|
|
21854
21534
|
reqBodyType: "json",
|
|
21855
21535
|
bodyType: "json",
|
|
21856
21536
|
});
|
|
21857
|
-
|
|
21858
|
-
return $dara.cast<ListServiceContainersResponse>(await this.callApi(params, req, runtime), new ListServiceContainersResponse({}));
|
|
21859
|
-
} else {
|
|
21860
|
-
return $dara.cast<ListServiceContainersResponse>(await this.execute(params, req, runtime), new ListServiceContainersResponse({}));
|
|
21861
|
-
}
|
|
21862
|
-
|
|
21537
|
+
return $dara.cast<ListServiceContainersResponse>(await this.callApi(params, req, runtime), new ListServiceContainersResponse({}));
|
|
21863
21538
|
}
|
|
21864
21539
|
|
|
21865
21540
|
/**
|
|
@@ -21950,12 +21625,7 @@ export default class Client extends OpenApi {
|
|
|
21950
21625
|
reqBodyType: "json",
|
|
21951
21626
|
bodyType: "json",
|
|
21952
21627
|
});
|
|
21953
|
-
|
|
21954
|
-
return $dara.cast<ListServiceInstancesResponse>(await this.callApi(params, req, runtime), new ListServiceInstancesResponse({}));
|
|
21955
|
-
} else {
|
|
21956
|
-
return $dara.cast<ListServiceInstancesResponse>(await this.execute(params, req, runtime), new ListServiceInstancesResponse({}));
|
|
21957
|
-
}
|
|
21958
|
-
|
|
21628
|
+
return $dara.cast<ListServiceInstancesResponse>(await this.callApi(params, req, runtime), new ListServiceInstancesResponse({}));
|
|
21959
21629
|
}
|
|
21960
21630
|
|
|
21961
21631
|
/**
|
|
@@ -22004,12 +21674,7 @@ export default class Client extends OpenApi {
|
|
|
22004
21674
|
reqBodyType: "json",
|
|
22005
21675
|
bodyType: "json",
|
|
22006
21676
|
});
|
|
22007
|
-
|
|
22008
|
-
return $dara.cast<ListServiceVersionsResponse>(await this.callApi(params, req, runtime), new ListServiceVersionsResponse({}));
|
|
22009
|
-
} else {
|
|
22010
|
-
return $dara.cast<ListServiceVersionsResponse>(await this.execute(params, req, runtime), new ListServiceVersionsResponse({}));
|
|
22011
|
-
}
|
|
22012
|
-
|
|
21677
|
+
return $dara.cast<ListServiceVersionsResponse>(await this.callApi(params, req, runtime), new ListServiceVersionsResponse({}));
|
|
22013
21678
|
}
|
|
22014
21679
|
|
|
22015
21680
|
/**
|
|
@@ -22053,6 +21718,10 @@ export default class Client extends OpenApi {
|
|
|
22053
21718
|
query["GroupName"] = request.groupName;
|
|
22054
21719
|
}
|
|
22055
21720
|
|
|
21721
|
+
if (!$dara.isNull(request.includeNoWorkspace)) {
|
|
21722
|
+
query["IncludeNoWorkspace"] = request.includeNoWorkspace;
|
|
21723
|
+
}
|
|
21724
|
+
|
|
22056
21725
|
if (!$dara.isNull(request.labelShrink)) {
|
|
22057
21726
|
query["Label"] = request.labelShrink;
|
|
22058
21727
|
}
|
|
@@ -22128,12 +21797,7 @@ export default class Client extends OpenApi {
|
|
|
22128
21797
|
reqBodyType: "json",
|
|
22129
21798
|
bodyType: "json",
|
|
22130
21799
|
});
|
|
22131
|
-
|
|
22132
|
-
return $dara.cast<ListServicesResponse>(await this.callApi(params, req, runtime), new ListServicesResponse({}));
|
|
22133
|
-
} else {
|
|
22134
|
-
return $dara.cast<ListServicesResponse>(await this.execute(params, req, runtime), new ListServicesResponse({}));
|
|
22135
|
-
}
|
|
22136
|
-
|
|
21800
|
+
return $dara.cast<ListServicesResponse>(await this.callApi(params, req, runtime), new ListServicesResponse({}));
|
|
22137
21801
|
}
|
|
22138
21802
|
|
|
22139
21803
|
/**
|
|
@@ -22170,12 +21834,7 @@ export default class Client extends OpenApi {
|
|
|
22170
21834
|
reqBodyType: "json",
|
|
22171
21835
|
bodyType: "json",
|
|
22172
21836
|
});
|
|
22173
|
-
|
|
22174
|
-
return $dara.cast<ListTenantAddonsResponse>(await this.callApi(params, req, runtime), new ListTenantAddonsResponse({}));
|
|
22175
|
-
} else {
|
|
22176
|
-
return $dara.cast<ListTenantAddonsResponse>(await this.execute(params, req, runtime), new ListTenantAddonsResponse({}));
|
|
22177
|
-
}
|
|
22178
|
-
|
|
21837
|
+
return $dara.cast<ListTenantAddonsResponse>(await this.callApi(params, req, runtime), new ListTenantAddonsResponse({}));
|
|
22179
21838
|
}
|
|
22180
21839
|
|
|
22181
21840
|
/**
|
|
@@ -22230,12 +21889,7 @@ export default class Client extends OpenApi {
|
|
|
22230
21889
|
reqBodyType: "json",
|
|
22231
21890
|
bodyType: "json",
|
|
22232
21891
|
});
|
|
22233
|
-
|
|
22234
|
-
return $dara.cast<ListVirtualResourceResponse>(await this.callApi(params, req, runtime), new ListVirtualResourceResponse({}));
|
|
22235
|
-
} else {
|
|
22236
|
-
return $dara.cast<ListVirtualResourceResponse>(await this.execute(params, req, runtime), new ListVirtualResourceResponse({}));
|
|
22237
|
-
}
|
|
22238
|
-
|
|
21892
|
+
return $dara.cast<ListVirtualResourceResponse>(await this.callApi(params, req, runtime), new ListVirtualResourceResponse({}));
|
|
22239
21893
|
}
|
|
22240
21894
|
|
|
22241
21895
|
/**
|
|
@@ -22272,12 +21926,7 @@ export default class Client extends OpenApi {
|
|
|
22272
21926
|
reqBodyType: "json",
|
|
22273
21927
|
bodyType: "json",
|
|
22274
21928
|
});
|
|
22275
|
-
|
|
22276
|
-
return $dara.cast<ReinstallTenantAddonResponse>(await this.callApi(params, req, runtime), new ReinstallTenantAddonResponse({}));
|
|
22277
|
-
} else {
|
|
22278
|
-
return $dara.cast<ReinstallTenantAddonResponse>(await this.execute(params, req, runtime), new ReinstallTenantAddonResponse({}));
|
|
22279
|
-
}
|
|
22280
|
-
|
|
21929
|
+
return $dara.cast<ReinstallTenantAddonResponse>(await this.callApi(params, req, runtime), new ReinstallTenantAddonResponse({}));
|
|
22281
21930
|
}
|
|
22282
21931
|
|
|
22283
21932
|
/**
|
|
@@ -22324,12 +21973,7 @@ export default class Client extends OpenApi {
|
|
|
22324
21973
|
reqBodyType: "json",
|
|
22325
21974
|
bodyType: "json",
|
|
22326
21975
|
});
|
|
22327
|
-
|
|
22328
|
-
return $dara.cast<ReleaseServiceResponse>(await this.callApi(params, req, runtime), new ReleaseServiceResponse({}));
|
|
22329
|
-
} else {
|
|
22330
|
-
return $dara.cast<ReleaseServiceResponse>(await this.execute(params, req, runtime), new ReleaseServiceResponse({}));
|
|
22331
|
-
}
|
|
22332
|
-
|
|
21976
|
+
return $dara.cast<ReleaseServiceResponse>(await this.callApi(params, req, runtime), new ReleaseServiceResponse({}));
|
|
22333
21977
|
}
|
|
22334
21978
|
|
|
22335
21979
|
/**
|
|
@@ -22366,12 +22010,7 @@ export default class Client extends OpenApi {
|
|
|
22366
22010
|
reqBodyType: "json",
|
|
22367
22011
|
bodyType: "json",
|
|
22368
22012
|
});
|
|
22369
|
-
|
|
22370
|
-
return $dara.cast<RestartServiceResponse>(await this.callApi(params, req, runtime), new RestartServiceResponse({}));
|
|
22371
|
-
} else {
|
|
22372
|
-
return $dara.cast<RestartServiceResponse>(await this.execute(params, req, runtime), new RestartServiceResponse({}));
|
|
22373
|
-
}
|
|
22374
|
-
|
|
22013
|
+
return $dara.cast<RestartServiceResponse>(await this.callApi(params, req, runtime), new RestartServiceResponse({}));
|
|
22375
22014
|
}
|
|
22376
22015
|
|
|
22377
22016
|
/**
|
|
@@ -22406,12 +22045,7 @@ export default class Client extends OpenApi {
|
|
|
22406
22045
|
reqBodyType: "json",
|
|
22407
22046
|
bodyType: "json",
|
|
22408
22047
|
});
|
|
22409
|
-
|
|
22410
|
-
return $dara.cast<StartBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StartBenchmarkTaskResponse({}));
|
|
22411
|
-
} else {
|
|
22412
|
-
return $dara.cast<StartBenchmarkTaskResponse>(await this.execute(params, req, runtime), new StartBenchmarkTaskResponse({}));
|
|
22413
|
-
}
|
|
22414
|
-
|
|
22048
|
+
return $dara.cast<StartBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StartBenchmarkTaskResponse({}));
|
|
22415
22049
|
}
|
|
22416
22050
|
|
|
22417
22051
|
/**
|
|
@@ -22446,12 +22080,7 @@ export default class Client extends OpenApi {
|
|
|
22446
22080
|
reqBodyType: "json",
|
|
22447
22081
|
bodyType: "json",
|
|
22448
22082
|
});
|
|
22449
|
-
|
|
22450
|
-
return $dara.cast<StartServiceResponse>(await this.callApi(params, req, runtime), new StartServiceResponse({}));
|
|
22451
|
-
} else {
|
|
22452
|
-
return $dara.cast<StartServiceResponse>(await this.execute(params, req, runtime), new StartServiceResponse({}));
|
|
22453
|
-
}
|
|
22454
|
-
|
|
22083
|
+
return $dara.cast<StartServiceResponse>(await this.callApi(params, req, runtime), new StartServiceResponse({}));
|
|
22455
22084
|
}
|
|
22456
22085
|
|
|
22457
22086
|
/**
|
|
@@ -22486,12 +22115,7 @@ export default class Client extends OpenApi {
|
|
|
22486
22115
|
reqBodyType: "json",
|
|
22487
22116
|
bodyType: "json",
|
|
22488
22117
|
});
|
|
22489
|
-
|
|
22490
|
-
return $dara.cast<StopBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StopBenchmarkTaskResponse({}));
|
|
22491
|
-
} else {
|
|
22492
|
-
return $dara.cast<StopBenchmarkTaskResponse>(await this.execute(params, req, runtime), new StopBenchmarkTaskResponse({}));
|
|
22493
|
-
}
|
|
22494
|
-
|
|
22118
|
+
return $dara.cast<StopBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new StopBenchmarkTaskResponse({}));
|
|
22495
22119
|
}
|
|
22496
22120
|
|
|
22497
22121
|
/**
|
|
@@ -22526,12 +22150,7 @@ export default class Client extends OpenApi {
|
|
|
22526
22150
|
reqBodyType: "json",
|
|
22527
22151
|
bodyType: "json",
|
|
22528
22152
|
});
|
|
22529
|
-
|
|
22530
|
-
return $dara.cast<StopServiceResponse>(await this.callApi(params, req, runtime), new StopServiceResponse({}));
|
|
22531
|
-
} else {
|
|
22532
|
-
return $dara.cast<StopServiceResponse>(await this.execute(params, req, runtime), new StopServiceResponse({}));
|
|
22533
|
-
}
|
|
22534
|
-
|
|
22153
|
+
return $dara.cast<StopServiceResponse>(await this.callApi(params, req, runtime), new StopServiceResponse({}));
|
|
22535
22154
|
}
|
|
22536
22155
|
|
|
22537
22156
|
/**
|
|
@@ -22600,12 +22219,7 @@ export default class Client extends OpenApi {
|
|
|
22600
22219
|
reqBodyType: "json",
|
|
22601
22220
|
bodyType: "json",
|
|
22602
22221
|
});
|
|
22603
|
-
|
|
22604
|
-
return $dara.cast<UpdateAppServiceResponse>(await this.callApi(params, req, runtime), new UpdateAppServiceResponse({}));
|
|
22605
|
-
} else {
|
|
22606
|
-
return $dara.cast<UpdateAppServiceResponse>(await this.execute(params, req, runtime), new UpdateAppServiceResponse({}));
|
|
22607
|
-
}
|
|
22608
|
-
|
|
22222
|
+
return $dara.cast<UpdateAppServiceResponse>(await this.callApi(params, req, runtime), new UpdateAppServiceResponse({}));
|
|
22609
22223
|
}
|
|
22610
22224
|
|
|
22611
22225
|
/**
|
|
@@ -22645,12 +22259,7 @@ export default class Client extends OpenApi {
|
|
|
22645
22259
|
reqBodyType: "json",
|
|
22646
22260
|
bodyType: "json",
|
|
22647
22261
|
});
|
|
22648
|
-
|
|
22649
|
-
return $dara.cast<UpdateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new UpdateBenchmarkTaskResponse({}));
|
|
22650
|
-
} else {
|
|
22651
|
-
return $dara.cast<UpdateBenchmarkTaskResponse>(await this.execute(params, req, runtime), new UpdateBenchmarkTaskResponse({}));
|
|
22652
|
-
}
|
|
22653
|
-
|
|
22262
|
+
return $dara.cast<UpdateBenchmarkTaskResponse>(await this.callApi(params, req, runtime), new UpdateBenchmarkTaskResponse({}));
|
|
22654
22263
|
}
|
|
22655
22264
|
|
|
22656
22265
|
/**
|
|
@@ -22719,12 +22328,7 @@ export default class Client extends OpenApi {
|
|
|
22719
22328
|
reqBodyType: "json",
|
|
22720
22329
|
bodyType: "json",
|
|
22721
22330
|
});
|
|
22722
|
-
|
|
22723
|
-
return $dara.cast<UpdateGatewayResponse>(await this.callApi(params, req, runtime), new UpdateGatewayResponse({}));
|
|
22724
|
-
} else {
|
|
22725
|
-
return $dara.cast<UpdateGatewayResponse>(await this.execute(params, req, runtime), new UpdateGatewayResponse({}));
|
|
22726
|
-
}
|
|
22727
|
-
|
|
22331
|
+
return $dara.cast<UpdateGatewayResponse>(await this.callApi(params, req, runtime), new UpdateGatewayResponse({}));
|
|
22728
22332
|
}
|
|
22729
22333
|
|
|
22730
22334
|
/**
|
|
@@ -22773,12 +22377,7 @@ export default class Client extends OpenApi {
|
|
|
22773
22377
|
reqBodyType: "json",
|
|
22774
22378
|
bodyType: "json",
|
|
22775
22379
|
});
|
|
22776
|
-
|
|
22777
|
-
return $dara.cast<UpdateResourceResponse>(await this.callApi(params, req, runtime), new UpdateResourceResponse({}));
|
|
22778
|
-
} else {
|
|
22779
|
-
return $dara.cast<UpdateResourceResponse>(await this.execute(params, req, runtime), new UpdateResourceResponse({}));
|
|
22780
|
-
}
|
|
22781
|
-
|
|
22380
|
+
return $dara.cast<UpdateResourceResponse>(await this.callApi(params, req, runtime), new UpdateResourceResponse({}));
|
|
22782
22381
|
}
|
|
22783
22382
|
|
|
22784
22383
|
/**
|
|
@@ -22835,12 +22434,7 @@ export default class Client extends OpenApi {
|
|
|
22835
22434
|
reqBodyType: "json",
|
|
22836
22435
|
bodyType: "json",
|
|
22837
22436
|
});
|
|
22838
|
-
|
|
22839
|
-
return $dara.cast<UpdateResourceDLinkResponse>(await this.callApi(params, req, runtime), new UpdateResourceDLinkResponse({}));
|
|
22840
|
-
} else {
|
|
22841
|
-
return $dara.cast<UpdateResourceDLinkResponse>(await this.execute(params, req, runtime), new UpdateResourceDLinkResponse({}));
|
|
22842
|
-
}
|
|
22843
|
-
|
|
22437
|
+
return $dara.cast<UpdateResourceDLinkResponse>(await this.callApi(params, req, runtime), new UpdateResourceDLinkResponse({}));
|
|
22844
22438
|
}
|
|
22845
22439
|
|
|
22846
22440
|
/**
|
|
@@ -22885,12 +22479,7 @@ export default class Client extends OpenApi {
|
|
|
22885
22479
|
reqBodyType: "json",
|
|
22886
22480
|
bodyType: "json",
|
|
22887
22481
|
});
|
|
22888
|
-
|
|
22889
|
-
return $dara.cast<UpdateResourceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceResponse({}));
|
|
22890
|
-
} else {
|
|
22891
|
-
return $dara.cast<UpdateResourceInstanceResponse>(await this.execute(params, req, runtime), new UpdateResourceInstanceResponse({}));
|
|
22892
|
-
}
|
|
22893
|
-
|
|
22482
|
+
return $dara.cast<UpdateResourceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceResponse({}));
|
|
22894
22483
|
}
|
|
22895
22484
|
|
|
22896
22485
|
/**
|
|
@@ -22951,12 +22540,7 @@ export default class Client extends OpenApi {
|
|
|
22951
22540
|
reqBodyType: "json",
|
|
22952
22541
|
bodyType: "json",
|
|
22953
22542
|
});
|
|
22954
|
-
|
|
22955
|
-
return $dara.cast<UpdateResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceLabelResponse({}));
|
|
22956
|
-
} else {
|
|
22957
|
-
return $dara.cast<UpdateResourceInstanceLabelResponse>(await this.execute(params, req, runtime), new UpdateResourceInstanceLabelResponse({}));
|
|
22958
|
-
}
|
|
22959
|
-
|
|
22543
|
+
return $dara.cast<UpdateResourceInstanceLabelResponse>(await this.callApi(params, req, runtime), new UpdateResourceInstanceLabelResponse({}));
|
|
22960
22544
|
}
|
|
22961
22545
|
|
|
22962
22546
|
/**
|
|
@@ -23002,12 +22586,7 @@ export default class Client extends OpenApi {
|
|
|
23002
22586
|
reqBodyType: "json",
|
|
23003
22587
|
bodyType: "json",
|
|
23004
22588
|
});
|
|
23005
|
-
|
|
23006
|
-
return $dara.cast<UpdateServiceResponse>(await this.callApi(params, req, runtime), new UpdateServiceResponse({}));
|
|
23007
|
-
} else {
|
|
23008
|
-
return $dara.cast<UpdateServiceResponse>(await this.execute(params, req, runtime), new UpdateServiceResponse({}));
|
|
23009
|
-
}
|
|
23010
|
-
|
|
22589
|
+
return $dara.cast<UpdateServiceResponse>(await this.callApi(params, req, runtime), new UpdateServiceResponse({}));
|
|
23011
22590
|
}
|
|
23012
22591
|
|
|
23013
22592
|
/**
|
|
@@ -23064,12 +22643,7 @@ export default class Client extends OpenApi {
|
|
|
23064
22643
|
reqBodyType: "json",
|
|
23065
22644
|
bodyType: "json",
|
|
23066
22645
|
});
|
|
23067
|
-
|
|
23068
|
-
return $dara.cast<UpdateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceAutoScalerResponse({}));
|
|
23069
|
-
} else {
|
|
23070
|
-
return $dara.cast<UpdateServiceAutoScalerResponse>(await this.execute(params, req, runtime), new UpdateServiceAutoScalerResponse({}));
|
|
23071
|
-
}
|
|
23072
|
-
|
|
22646
|
+
return $dara.cast<UpdateServiceAutoScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceAutoScalerResponse({}));
|
|
23073
22647
|
}
|
|
23074
22648
|
|
|
23075
22649
|
/**
|
|
@@ -23118,12 +22692,7 @@ export default class Client extends OpenApi {
|
|
|
23118
22692
|
reqBodyType: "json",
|
|
23119
22693
|
bodyType: "json",
|
|
23120
22694
|
});
|
|
23121
|
-
|
|
23122
|
-
return $dara.cast<UpdateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceCronScalerResponse({}));
|
|
23123
|
-
} else {
|
|
23124
|
-
return $dara.cast<UpdateServiceCronScalerResponse>(await this.execute(params, req, runtime), new UpdateServiceCronScalerResponse({}));
|
|
23125
|
-
}
|
|
23126
|
-
|
|
22695
|
+
return $dara.cast<UpdateServiceCronScalerResponse>(await this.callApi(params, req, runtime), new UpdateServiceCronScalerResponse({}));
|
|
23127
22696
|
}
|
|
23128
22697
|
|
|
23129
22698
|
/**
|
|
@@ -23168,12 +22737,7 @@ export default class Client extends OpenApi {
|
|
|
23168
22737
|
reqBodyType: "json",
|
|
23169
22738
|
bodyType: "json",
|
|
23170
22739
|
});
|
|
23171
|
-
|
|
23172
|
-
return $dara.cast<UpdateServiceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateServiceInstanceResponse({}));
|
|
23173
|
-
} else {
|
|
23174
|
-
return $dara.cast<UpdateServiceInstanceResponse>(await this.execute(params, req, runtime), new UpdateServiceInstanceResponse({}));
|
|
23175
|
-
}
|
|
23176
|
-
|
|
22740
|
+
return $dara.cast<UpdateServiceInstanceResponse>(await this.callApi(params, req, runtime), new UpdateServiceInstanceResponse({}));
|
|
23177
22741
|
}
|
|
23178
22742
|
|
|
23179
22743
|
/**
|
|
@@ -23218,12 +22782,7 @@ export default class Client extends OpenApi {
|
|
|
23218
22782
|
reqBodyType: "json",
|
|
23219
22783
|
bodyType: "json",
|
|
23220
22784
|
});
|
|
23221
|
-
|
|
23222
|
-
return $dara.cast<UpdateServiceLabelResponse>(await this.callApi(params, req, runtime), new UpdateServiceLabelResponse({}));
|
|
23223
|
-
} else {
|
|
23224
|
-
return $dara.cast<UpdateServiceLabelResponse>(await this.execute(params, req, runtime), new UpdateServiceLabelResponse({}));
|
|
23225
|
-
}
|
|
23226
|
-
|
|
22785
|
+
return $dara.cast<UpdateServiceLabelResponse>(await this.callApi(params, req, runtime), new UpdateServiceLabelResponse({}));
|
|
23227
22786
|
}
|
|
23228
22787
|
|
|
23229
22788
|
/**
|
|
@@ -23272,12 +22831,7 @@ export default class Client extends OpenApi {
|
|
|
23272
22831
|
reqBodyType: "json",
|
|
23273
22832
|
bodyType: "json",
|
|
23274
22833
|
});
|
|
23275
|
-
|
|
23276
|
-
return $dara.cast<UpdateServiceMirrorResponse>(await this.callApi(params, req, runtime), new UpdateServiceMirrorResponse({}));
|
|
23277
|
-
} else {
|
|
23278
|
-
return $dara.cast<UpdateServiceMirrorResponse>(await this.execute(params, req, runtime), new UpdateServiceMirrorResponse({}));
|
|
23279
|
-
}
|
|
23280
|
-
|
|
22834
|
+
return $dara.cast<UpdateServiceMirrorResponse>(await this.callApi(params, req, runtime), new UpdateServiceMirrorResponse({}));
|
|
23281
22835
|
}
|
|
23282
22836
|
|
|
23283
22837
|
/**
|
|
@@ -23322,12 +22876,7 @@ export default class Client extends OpenApi {
|
|
|
23322
22876
|
reqBodyType: "json",
|
|
23323
22877
|
bodyType: "json",
|
|
23324
22878
|
});
|
|
23325
|
-
|
|
23326
|
-
return $dara.cast<UpdateServiceSafetyLockResponse>(await this.callApi(params, req, runtime), new UpdateServiceSafetyLockResponse({}));
|
|
23327
|
-
} else {
|
|
23328
|
-
return $dara.cast<UpdateServiceSafetyLockResponse>(await this.execute(params, req, runtime), new UpdateServiceSafetyLockResponse({}));
|
|
23329
|
-
}
|
|
23330
|
-
|
|
22879
|
+
return $dara.cast<UpdateServiceSafetyLockResponse>(await this.callApi(params, req, runtime), new UpdateServiceSafetyLockResponse({}));
|
|
23331
22880
|
}
|
|
23332
22881
|
|
|
23333
22882
|
/**
|
|
@@ -23372,12 +22921,7 @@ export default class Client extends OpenApi {
|
|
|
23372
22921
|
reqBodyType: "json",
|
|
23373
22922
|
bodyType: "json",
|
|
23374
22923
|
});
|
|
23375
|
-
|
|
23376
|
-
return $dara.cast<UpdateServiceVersionResponse>(await this.callApi(params, req, runtime), new UpdateServiceVersionResponse({}));
|
|
23377
|
-
} else {
|
|
23378
|
-
return $dara.cast<UpdateServiceVersionResponse>(await this.execute(params, req, runtime), new UpdateServiceVersionResponse({}));
|
|
23379
|
-
}
|
|
23380
|
-
|
|
22924
|
+
return $dara.cast<UpdateServiceVersionResponse>(await this.callApi(params, req, runtime), new UpdateServiceVersionResponse({}));
|
|
23381
22925
|
}
|
|
23382
22926
|
|
|
23383
22927
|
/**
|
|
@@ -23430,12 +22974,7 @@ export default class Client extends OpenApi {
|
|
|
23430
22974
|
reqBodyType: "json",
|
|
23431
22975
|
bodyType: "json",
|
|
23432
22976
|
});
|
|
23433
|
-
|
|
23434
|
-
return $dara.cast<UpdateVirtualResourceResponse>(await this.callApi(params, req, runtime), new UpdateVirtualResourceResponse({}));
|
|
23435
|
-
} else {
|
|
23436
|
-
return $dara.cast<UpdateVirtualResourceResponse>(await this.execute(params, req, runtime), new UpdateVirtualResourceResponse({}));
|
|
23437
|
-
}
|
|
23438
|
-
|
|
22977
|
+
return $dara.cast<UpdateVirtualResourceResponse>(await this.callApi(params, req, runtime), new UpdateVirtualResourceResponse({}));
|
|
23439
22978
|
}
|
|
23440
22979
|
|
|
23441
22980
|
/**
|