@alicloud/ecs20140526 7.0.16 → 7.1.0
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 +58 -34
- package/dist/client.js +145 -108
- package/dist/client.js.map +1 -1
- package/dist/models/AllocateDedicatedHostsRequest.d.ts +2 -2
- package/dist/models/CancelAutoSnapshotPolicyRequest.d.ts +1 -0
- package/dist/models/CancelAutoSnapshotPolicyRequest.js +2 -0
- package/dist/models/CancelAutoSnapshotPolicyRequest.js.map +1 -1
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsRequest.d.ts +26 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsRequest.js +74 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsRequest.js.map +1 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsResponse.d.ts +19 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsResponse.js +69 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsResponse.js.map +1 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsResponseBody.d.ts +43 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsResponseBody.js +108 -0
- package/dist/models/DescribeAutoSnapshotPolicyAssociationsResponseBody.js.map +1 -0
- package/dist/models/DescribeDedicatedHostsRequest.d.ts +15 -15
- package/dist/models/DescribeDedicatedHostsResponseBody.d.ts +2 -2
- package/dist/models/DescribeDeploymentSetsResponseBody.d.ts +1 -0
- package/dist/models/DescribeDeploymentSetsResponseBody.js +2 -0
- package/dist/models/DescribeDeploymentSetsResponseBody.js.map +1 -1
- package/dist/models/DescribeDisksRequest.d.ts +0 -2
- package/dist/models/DescribeDisksRequest.js.map +1 -1
- package/dist/models/DescribeInstanceAttributeResponseBody.d.ts +1 -0
- package/dist/models/DescribeInstanceAttributeResponseBody.js +2 -0
- package/dist/models/DescribeInstanceAttributeResponseBody.js.map +1 -1
- package/dist/models/DescribeInstanceHistoryEventsResponseBody.d.ts +2 -0
- package/dist/models/DescribeInstanceHistoryEventsResponseBody.js.map +1 -1
- package/dist/models/DescribeInstanceTypesResponseBody.d.ts +34 -0
- package/dist/models/DescribeInstanceTypesResponseBody.js.map +1 -1
- package/dist/models/DescribeLaunchTemplatesRequest.d.ts +5 -5
- package/dist/models/DescribeLaunchTemplatesResponseBody.d.ts +6 -6
- package/dist/models/DescribeTerminalSessionsResponseBody.d.ts +7 -2
- package/dist/models/DescribeTerminalSessionsResponseBody.js.map +1 -1
- package/dist/models/ImportImageRequest.d.ts +8 -7
- package/dist/models/ImportImageRequest.js.map +1 -1
- package/dist/models/ModifyElasticityAssuranceRequest.d.ts +10 -10
- package/dist/models/ModifyInstanceNetworkOptionsRequest.d.ts +26 -0
- package/dist/models/ModifyInstanceNetworkOptionsRequest.js +66 -0
- package/dist/models/ModifyInstanceNetworkOptionsRequest.js.map +1 -0
- package/dist/models/ModifyInstanceNetworkOptionsResponse.d.ts +19 -0
- package/dist/models/ModifyInstanceNetworkOptionsResponse.js +69 -0
- package/dist/models/ModifyInstanceNetworkOptionsResponse.js.map +1 -0
- package/dist/models/ModifyInstanceNetworkOptionsResponseBody.d.ts +26 -0
- package/dist/models/ModifyInstanceNetworkOptionsResponseBody.js +60 -0
- package/dist/models/ModifyInstanceNetworkOptionsResponseBody.js.map +1 -0
- package/dist/models/RunInstancesRequest.d.ts +34 -18
- package/dist/models/RunInstancesRequest.js +2 -0
- package/dist/models/RunInstancesRequest.js.map +1 -1
- package/dist/models/RunInstancesResponseBody.d.ts +1 -1
- package/dist/models/model.d.ts +8 -0
- package/dist/models/model.js +53 -36
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +164 -108
- package/src/models/AllocateDedicatedHostsRequest.ts +2 -2
- package/src/models/CancelAutoSnapshotPolicyRequest.ts +3 -0
- package/src/models/DescribeAutoSnapshotPolicyAssociationsRequest.ts +55 -0
- package/src/models/DescribeAutoSnapshotPolicyAssociationsResponse.ts +40 -0
- package/src/models/DescribeAutoSnapshotPolicyAssociationsResponseBody.ts +88 -0
- package/src/models/DescribeDedicatedHostsRequest.ts +15 -15
- package/src/models/DescribeDedicatedHostsResponseBody.ts +2 -2
- package/src/models/DescribeDeploymentSetsResponseBody.ts +3 -0
- package/src/models/DescribeDisksRequest.ts +0 -2
- package/src/models/DescribeInstanceAttributeResponseBody.ts +3 -0
- package/src/models/DescribeInstanceHistoryEventsResponseBody.ts +2 -0
- package/src/models/DescribeInstanceTypesResponseBody.ts +34 -0
- package/src/models/DescribeLaunchTemplatesRequest.ts +5 -5
- package/src/models/DescribeLaunchTemplatesResponseBody.ts +6 -6
- package/src/models/DescribeTerminalSessionsResponseBody.ts +7 -2
- package/src/models/ImportImageRequest.ts +8 -7
- package/src/models/ModifyElasticityAssuranceRequest.ts +10 -10
- package/src/models/ModifyInstanceNetworkOptionsRequest.ts +47 -0
- package/src/models/ModifyInstanceNetworkOptionsResponse.ts +40 -0
- package/src/models/ModifyInstanceNetworkOptionsResponseBody.ts +41 -0
- package/src/models/RunInstancesRequest.ts +36 -18
- package/src/models/RunInstancesResponseBody.ts +1 -1
- package/src/models/model.ts +8 -0
package/src/client.ts
CHANGED
|
@@ -143,7 +143,6 @@ export default class Client extends OpenApi {
|
|
|
143
143
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
144
144
|
* @returns ActivateRouterInterfaceResponse
|
|
145
145
|
*/
|
|
146
|
-
// Deprecated
|
|
147
146
|
async activateRouterInterfaceWithOptions(request: $_model.ActivateRouterInterfaceRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ActivateRouterInterfaceResponse> {
|
|
148
147
|
request.validate();
|
|
149
148
|
let query = { };
|
|
@@ -203,7 +202,6 @@ export default class Client extends OpenApi {
|
|
|
203
202
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
204
203
|
* @returns AddBandwidthPackageIpsResponse
|
|
205
204
|
*/
|
|
206
|
-
// Deprecated
|
|
207
205
|
async addBandwidthPackageIpsWithOptions(request: $_model.AddBandwidthPackageIpsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.AddBandwidthPackageIpsResponse> {
|
|
208
206
|
request.validate();
|
|
209
207
|
let query = { };
|
|
@@ -283,7 +281,6 @@ export default class Client extends OpenApi {
|
|
|
283
281
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
284
282
|
* @returns AddTagsResponse
|
|
285
283
|
*/
|
|
286
|
-
// Deprecated
|
|
287
284
|
async addTagsWithOptions(request: $_model.AddTagsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.AddTagsResponse> {
|
|
288
285
|
request.validate();
|
|
289
286
|
let query = { };
|
|
@@ -516,7 +513,6 @@ export default class Client extends OpenApi {
|
|
|
516
513
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
517
514
|
* @returns AllocateEipAddressResponse
|
|
518
515
|
*/
|
|
519
|
-
// Deprecated
|
|
520
516
|
async allocateEipAddressWithOptions(request: $_model.AllocateEipAddressRequest, runtime: $dara.RuntimeOptions): Promise<$_model.AllocateEipAddressResponse> {
|
|
521
517
|
request.validate();
|
|
522
518
|
let query = { };
|
|
@@ -965,7 +961,6 @@ export default class Client extends OpenApi {
|
|
|
965
961
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
966
962
|
* @returns AssociateEipAddressResponse
|
|
967
963
|
*/
|
|
968
|
-
// Deprecated
|
|
969
964
|
async associateEipAddressWithOptions(request: $_model.AssociateEipAddressRequest, runtime: $dara.RuntimeOptions): Promise<$_model.AssociateEipAddressResponse> {
|
|
970
965
|
request.validate();
|
|
971
966
|
let query = { };
|
|
@@ -1037,7 +1032,6 @@ export default class Client extends OpenApi {
|
|
|
1037
1032
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
1038
1033
|
* @returns AssociateHaVipResponse
|
|
1039
1034
|
*/
|
|
1040
|
-
// Deprecated
|
|
1041
1035
|
async associateHaVipWithOptions(request: $_model.AssociateHaVipRequest, runtime: $dara.RuntimeOptions): Promise<$_model.AssociateHaVipResponse> {
|
|
1042
1036
|
request.validate();
|
|
1043
1037
|
let query = { };
|
|
@@ -2042,6 +2036,10 @@ export default class Client extends OpenApi {
|
|
|
2042
2036
|
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
2043
2037
|
}
|
|
2044
2038
|
|
|
2039
|
+
if (!$dara.isNull(request.autoSnapshotPolicyId)) {
|
|
2040
|
+
query["autoSnapshotPolicyId"] = request.autoSnapshotPolicyId;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2045
2043
|
if (!$dara.isNull(request.diskIds)) {
|
|
2046
2044
|
query["diskIds"] = request.diskIds;
|
|
2047
2045
|
}
|
|
@@ -2233,7 +2231,6 @@ export default class Client extends OpenApi {
|
|
|
2233
2231
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
2234
2232
|
* @returns CancelPhysicalConnectionResponse
|
|
2235
2233
|
*/
|
|
2236
|
-
// Deprecated
|
|
2237
2234
|
async cancelPhysicalConnectionWithOptions(request: $_model.CancelPhysicalConnectionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CancelPhysicalConnectionResponse> {
|
|
2238
2235
|
request.validate();
|
|
2239
2236
|
let query = { };
|
|
@@ -2429,7 +2426,6 @@ export default class Client extends OpenApi {
|
|
|
2429
2426
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
2430
2427
|
* @returns ConnectRouterInterfaceResponse
|
|
2431
2428
|
*/
|
|
2432
|
-
// Deprecated
|
|
2433
2429
|
async connectRouterInterfaceWithOptions(request: $_model.ConnectRouterInterfaceRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ConnectRouterInterfaceResponse> {
|
|
2434
2430
|
request.validate();
|
|
2435
2431
|
let query = { };
|
|
@@ -4085,7 +4081,6 @@ export default class Client extends OpenApi {
|
|
|
4085
4081
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
4086
4082
|
* @returns CreateForwardEntryResponse
|
|
4087
4083
|
*/
|
|
4088
|
-
// Deprecated
|
|
4089
4084
|
async createForwardEntryWithOptions(request: $_model.CreateForwardEntryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateForwardEntryResponse> {
|
|
4090
4085
|
request.validate();
|
|
4091
4086
|
let query = { };
|
|
@@ -4169,7 +4164,6 @@ export default class Client extends OpenApi {
|
|
|
4169
4164
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
4170
4165
|
* @returns CreateHaVipResponse
|
|
4171
4166
|
*/
|
|
4172
|
-
// Deprecated
|
|
4173
4167
|
async createHaVipWithOptions(request: $_model.CreateHaVipRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateHaVipResponse> {
|
|
4174
4168
|
request.validate();
|
|
4175
4169
|
let query = { };
|
|
@@ -5703,7 +5697,6 @@ export default class Client extends OpenApi {
|
|
|
5703
5697
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
5704
5698
|
* @returns CreateNatGatewayResponse
|
|
5705
5699
|
*/
|
|
5706
|
-
// Deprecated
|
|
5707
5700
|
async createNatGatewayWithOptions(request: $_model.CreateNatGatewayRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateNatGatewayResponse> {
|
|
5708
5701
|
request.validate();
|
|
5709
5702
|
let query = { };
|
|
@@ -6075,7 +6068,6 @@ export default class Client extends OpenApi {
|
|
|
6075
6068
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
6076
6069
|
* @returns CreatePhysicalConnectionResponse
|
|
6077
6070
|
*/
|
|
6078
|
-
// Deprecated
|
|
6079
6071
|
async createPhysicalConnectionWithOptions(request: $_model.CreatePhysicalConnectionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreatePhysicalConnectionResponse> {
|
|
6080
6072
|
request.validate();
|
|
6081
6073
|
let query = { };
|
|
@@ -6391,7 +6383,6 @@ export default class Client extends OpenApi {
|
|
|
6391
6383
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
6392
6384
|
* @returns CreateRouteEntryResponse
|
|
6393
6385
|
*/
|
|
6394
|
-
// Deprecated
|
|
6395
6386
|
async createRouteEntryWithOptions(request: $_model.CreateRouteEntryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateRouteEntryResponse> {
|
|
6396
6387
|
request.validate();
|
|
6397
6388
|
let query = { };
|
|
@@ -6475,7 +6466,6 @@ export default class Client extends OpenApi {
|
|
|
6475
6466
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
6476
6467
|
* @returns CreateRouterInterfaceResponse
|
|
6477
6468
|
*/
|
|
6478
|
-
// Deprecated
|
|
6479
6469
|
async createRouterInterfaceWithOptions(request: $_model.CreateRouterInterfaceRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateRouterInterfaceResponse> {
|
|
6480
6470
|
request.validate();
|
|
6481
6471
|
let query = { };
|
|
@@ -7263,7 +7253,6 @@ export default class Client extends OpenApi {
|
|
|
7263
7253
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
7264
7254
|
* @returns CreateVSwitchResponse
|
|
7265
7255
|
*/
|
|
7266
|
-
// Deprecated
|
|
7267
7256
|
async createVSwitchWithOptions(request: $_model.CreateVSwitchRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateVSwitchResponse> {
|
|
7268
7257
|
request.validate();
|
|
7269
7258
|
let query = { };
|
|
@@ -7347,7 +7336,6 @@ export default class Client extends OpenApi {
|
|
|
7347
7336
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
7348
7337
|
* @returns CreateVirtualBorderRouterResponse
|
|
7349
7338
|
*/
|
|
7350
|
-
// Deprecated
|
|
7351
7339
|
async createVirtualBorderRouterWithOptions(request: $_model.CreateVirtualBorderRouterRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateVirtualBorderRouterResponse> {
|
|
7352
7340
|
request.validate();
|
|
7353
7341
|
let query = { };
|
|
@@ -7455,7 +7443,6 @@ export default class Client extends OpenApi {
|
|
|
7455
7443
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
7456
7444
|
* @returns CreateVpcResponse
|
|
7457
7445
|
*/
|
|
7458
|
-
// Deprecated
|
|
7459
7446
|
async createVpcWithOptions(request: $_model.CreateVpcRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateVpcResponse> {
|
|
7460
7447
|
request.validate();
|
|
7461
7448
|
let query = { };
|
|
@@ -7535,7 +7522,6 @@ export default class Client extends OpenApi {
|
|
|
7535
7522
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
7536
7523
|
* @returns DeactivateRouterInterfaceResponse
|
|
7537
7524
|
*/
|
|
7538
|
-
// Deprecated
|
|
7539
7525
|
async deactivateRouterInterfaceWithOptions(request: $_model.DeactivateRouterInterfaceRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeactivateRouterInterfaceResponse> {
|
|
7540
7526
|
request.validate();
|
|
7541
7527
|
let query = { };
|
|
@@ -7793,7 +7779,6 @@ export default class Client extends OpenApi {
|
|
|
7793
7779
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
7794
7780
|
* @returns DeleteBandwidthPackageResponse
|
|
7795
7781
|
*/
|
|
7796
|
-
// Deprecated
|
|
7797
7782
|
async deleteBandwidthPackageWithOptions(request: $_model.DeleteBandwidthPackageRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteBandwidthPackageResponse> {
|
|
7798
7783
|
request.validate();
|
|
7799
7784
|
let query = { };
|
|
@@ -8223,7 +8208,6 @@ export default class Client extends OpenApi {
|
|
|
8223
8208
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
8224
8209
|
* @returns DeleteForwardEntryResponse
|
|
8225
8210
|
*/
|
|
8226
|
-
// Deprecated
|
|
8227
8211
|
async deleteForwardEntryWithOptions(request: $_model.DeleteForwardEntryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteForwardEntryResponse> {
|
|
8228
8212
|
request.validate();
|
|
8229
8213
|
let query = { };
|
|
@@ -8291,7 +8275,6 @@ export default class Client extends OpenApi {
|
|
|
8291
8275
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
8292
8276
|
* @returns DeleteHaVipResponse
|
|
8293
8277
|
*/
|
|
8294
|
-
// Deprecated
|
|
8295
8278
|
async deleteHaVipWithOptions(request: $_model.DeleteHaVipRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteHaVipResponse> {
|
|
8296
8279
|
request.validate();
|
|
8297
8280
|
let query = { };
|
|
@@ -8499,10 +8482,11 @@ export default class Client extends OpenApi {
|
|
|
8499
8482
|
}
|
|
8500
8483
|
|
|
8501
8484
|
/**
|
|
8502
|
-
* Deletes an image component.
|
|
8485
|
+
* Deletes an image component. You can specify RegionId and ImageComponentId in the request.
|
|
8503
8486
|
*
|
|
8504
8487
|
* @remarks
|
|
8505
|
-
*
|
|
8488
|
+
* Only custom image components can be deleted.
|
|
8489
|
+
* * When you delete a component, make sure that the component is not used in the template. Otherwise, the component fails to be deleted.
|
|
8506
8490
|
*
|
|
8507
8491
|
* @param request - DeleteImageComponentRequest
|
|
8508
8492
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -8557,10 +8541,11 @@ export default class Client extends OpenApi {
|
|
|
8557
8541
|
}
|
|
8558
8542
|
|
|
8559
8543
|
/**
|
|
8560
|
-
* Deletes an image component.
|
|
8544
|
+
* Deletes an image component. You can specify RegionId and ImageComponentId in the request.
|
|
8561
8545
|
*
|
|
8562
8546
|
* @remarks
|
|
8563
|
-
*
|
|
8547
|
+
* Only custom image components can be deleted.
|
|
8548
|
+
* * When you delete a component, make sure that the component is not used in the template. Otherwise, the component fails to be deleted.
|
|
8564
8549
|
*
|
|
8565
8550
|
* @param request - DeleteImageComponentRequest
|
|
8566
8551
|
* @returns DeleteImageComponentResponse
|
|
@@ -8571,7 +8556,7 @@ export default class Client extends OpenApi {
|
|
|
8571
8556
|
}
|
|
8572
8557
|
|
|
8573
8558
|
/**
|
|
8574
|
-
* Deletes an image template.
|
|
8559
|
+
* Deletes an image template.
|
|
8575
8560
|
*
|
|
8576
8561
|
* @remarks
|
|
8577
8562
|
* If an ongoing image building task is associated with an image template, you cannot delete the image template. You can delete the image template only if the image building task reaches the SUCCESS, FAILED, TEST_FAILED, PARTITION_SUCCESS, or CANCELLED state. You can call the DescribeImagePipelineExecutions operation to query the details of an image building task.
|
|
@@ -8629,7 +8614,7 @@ export default class Client extends OpenApi {
|
|
|
8629
8614
|
}
|
|
8630
8615
|
|
|
8631
8616
|
/**
|
|
8632
|
-
* Deletes an image template.
|
|
8617
|
+
* Deletes an image template.
|
|
8633
8618
|
*
|
|
8634
8619
|
* @remarks
|
|
8635
8620
|
* If an ongoing image building task is associated with an image template, you cannot delete the image template. You can delete the image template only if the image building task reaches the SUCCESS, FAILED, TEST_FAILED, PARTITION_SUCCESS, or CANCELLED state. You can call the DescribeImagePipelineExecutions operation to query the details of an image building task.
|
|
@@ -9071,7 +9056,6 @@ export default class Client extends OpenApi {
|
|
|
9071
9056
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
9072
9057
|
* @returns DeleteNatGatewayResponse
|
|
9073
9058
|
*/
|
|
9074
|
-
// Deprecated
|
|
9075
9059
|
async deleteNatGatewayWithOptions(request: $_model.DeleteNatGatewayRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteNatGatewayResponse> {
|
|
9076
9060
|
request.validate();
|
|
9077
9061
|
let query = { };
|
|
@@ -9231,7 +9215,6 @@ export default class Client extends OpenApi {
|
|
|
9231
9215
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
9232
9216
|
* @returns DeleteNetworkInterfacePermissionResponse
|
|
9233
9217
|
*/
|
|
9234
|
-
// Deprecated
|
|
9235
9218
|
async deleteNetworkInterfacePermissionWithOptions(request: $_model.DeleteNetworkInterfacePermissionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteNetworkInterfacePermissionResponse> {
|
|
9236
9219
|
request.validate();
|
|
9237
9220
|
let query = { };
|
|
@@ -9305,7 +9288,6 @@ export default class Client extends OpenApi {
|
|
|
9305
9288
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
9306
9289
|
* @returns DeletePhysicalConnectionResponse
|
|
9307
9290
|
*/
|
|
9308
|
-
// Deprecated
|
|
9309
9291
|
async deletePhysicalConnectionWithOptions(request: $_model.DeletePhysicalConnectionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeletePhysicalConnectionResponse> {
|
|
9310
9292
|
request.validate();
|
|
9311
9293
|
let query = { };
|
|
@@ -9511,7 +9493,6 @@ export default class Client extends OpenApi {
|
|
|
9511
9493
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
9512
9494
|
* @returns DeleteRouteEntryResponse
|
|
9513
9495
|
*/
|
|
9514
|
-
// Deprecated
|
|
9515
9496
|
async deleteRouteEntryWithOptions(request: $_model.DeleteRouteEntryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteRouteEntryResponse> {
|
|
9516
9497
|
request.validate();
|
|
9517
9498
|
let query = { };
|
|
@@ -9587,7 +9568,6 @@ export default class Client extends OpenApi {
|
|
|
9587
9568
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
9588
9569
|
* @returns DeleteRouterInterfaceResponse
|
|
9589
9570
|
*/
|
|
9590
|
-
// Deprecated
|
|
9591
9571
|
async deleteRouterInterfaceWithOptions(request: $_model.DeleteRouterInterfaceRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteRouterInterfaceResponse> {
|
|
9592
9572
|
request.validate();
|
|
9593
9573
|
let query = { };
|
|
@@ -9941,7 +9921,6 @@ export default class Client extends OpenApi {
|
|
|
9941
9921
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
9942
9922
|
* @returns DeleteVSwitchResponse
|
|
9943
9923
|
*/
|
|
9944
|
-
// Deprecated
|
|
9945
9924
|
async deleteVSwitchWithOptions(request: $_model.DeleteVSwitchRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteVSwitchResponse> {
|
|
9946
9925
|
request.validate();
|
|
9947
9926
|
let query = { };
|
|
@@ -10005,7 +9984,6 @@ export default class Client extends OpenApi {
|
|
|
10005
9984
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
10006
9985
|
* @returns DeleteVirtualBorderRouterResponse
|
|
10007
9986
|
*/
|
|
10008
|
-
// Deprecated
|
|
10009
9987
|
async deleteVirtualBorderRouterWithOptions(request: $_model.DeleteVirtualBorderRouterRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteVirtualBorderRouterResponse> {
|
|
10010
9988
|
request.validate();
|
|
10011
9989
|
let query = { };
|
|
@@ -10079,7 +10057,6 @@ export default class Client extends OpenApi {
|
|
|
10079
10057
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
10080
10058
|
* @returns DeleteVpcResponse
|
|
10081
10059
|
*/
|
|
10082
|
-
// Deprecated
|
|
10083
10060
|
async deleteVpcWithOptions(request: $_model.DeleteVpcRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteVpcResponse> {
|
|
10084
10061
|
request.validate();
|
|
10085
10062
|
let query = { };
|
|
@@ -10211,7 +10188,6 @@ export default class Client extends OpenApi {
|
|
|
10211
10188
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
10212
10189
|
* @returns DescribeAccessPointsResponse
|
|
10213
10190
|
*/
|
|
10214
|
-
// Deprecated
|
|
10215
10191
|
async describeAccessPointsWithOptions(request: $_model.DescribeAccessPointsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeAccessPointsResponse> {
|
|
10216
10192
|
request.validate();
|
|
10217
10193
|
let query = { };
|
|
@@ -10686,6 +10662,80 @@ export default class Client extends OpenApi {
|
|
|
10686
10662
|
return await this.describeAutoProvisioningGroupsWithOptions(request, runtime);
|
|
10687
10663
|
}
|
|
10688
10664
|
|
|
10665
|
+
/**
|
|
10666
|
+
* 查询自动快照策略的关联关系
|
|
10667
|
+
*
|
|
10668
|
+
* @param request - DescribeAutoSnapshotPolicyAssociationsRequest
|
|
10669
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10670
|
+
* @returns DescribeAutoSnapshotPolicyAssociationsResponse
|
|
10671
|
+
*/
|
|
10672
|
+
async describeAutoSnapshotPolicyAssociationsWithOptions(request: $_model.DescribeAutoSnapshotPolicyAssociationsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeAutoSnapshotPolicyAssociationsResponse> {
|
|
10673
|
+
request.validate();
|
|
10674
|
+
let query = { };
|
|
10675
|
+
if (!$dara.isNull(request.autoSnapshotPolicyId)) {
|
|
10676
|
+
query["AutoSnapshotPolicyId"] = request.autoSnapshotPolicyId;
|
|
10677
|
+
}
|
|
10678
|
+
|
|
10679
|
+
if (!$dara.isNull(request.diskId)) {
|
|
10680
|
+
query["DiskId"] = request.diskId;
|
|
10681
|
+
}
|
|
10682
|
+
|
|
10683
|
+
if (!$dara.isNull(request.maxResults)) {
|
|
10684
|
+
query["MaxResults"] = request.maxResults;
|
|
10685
|
+
}
|
|
10686
|
+
|
|
10687
|
+
if (!$dara.isNull(request.nextToken)) {
|
|
10688
|
+
query["NextToken"] = request.nextToken;
|
|
10689
|
+
}
|
|
10690
|
+
|
|
10691
|
+
if (!$dara.isNull(request.ownerAccount)) {
|
|
10692
|
+
query["OwnerAccount"] = request.ownerAccount;
|
|
10693
|
+
}
|
|
10694
|
+
|
|
10695
|
+
if (!$dara.isNull(request.ownerId)) {
|
|
10696
|
+
query["OwnerId"] = request.ownerId;
|
|
10697
|
+
}
|
|
10698
|
+
|
|
10699
|
+
if (!$dara.isNull(request.regionId)) {
|
|
10700
|
+
query["RegionId"] = request.regionId;
|
|
10701
|
+
}
|
|
10702
|
+
|
|
10703
|
+
if (!$dara.isNull(request.resourceOwnerAccount)) {
|
|
10704
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
10705
|
+
}
|
|
10706
|
+
|
|
10707
|
+
if (!$dara.isNull(request.resourceOwnerId)) {
|
|
10708
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
10709
|
+
}
|
|
10710
|
+
|
|
10711
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
10712
|
+
query: OpenApiUtil.query(query),
|
|
10713
|
+
});
|
|
10714
|
+
let params = new $OpenApiUtil.Params({
|
|
10715
|
+
action: "DescribeAutoSnapshotPolicyAssociations",
|
|
10716
|
+
version: "2014-05-26",
|
|
10717
|
+
protocol: "HTTPS",
|
|
10718
|
+
pathname: "/",
|
|
10719
|
+
method: "POST",
|
|
10720
|
+
authType: "AK",
|
|
10721
|
+
style: "RPC",
|
|
10722
|
+
reqBodyType: "formData",
|
|
10723
|
+
bodyType: "json",
|
|
10724
|
+
});
|
|
10725
|
+
return $dara.cast<$_model.DescribeAutoSnapshotPolicyAssociationsResponse>(await this.callApi(params, req, runtime), new $_model.DescribeAutoSnapshotPolicyAssociationsResponse({}));
|
|
10726
|
+
}
|
|
10727
|
+
|
|
10728
|
+
/**
|
|
10729
|
+
* 查询自动快照策略的关联关系
|
|
10730
|
+
*
|
|
10731
|
+
* @param request - DescribeAutoSnapshotPolicyAssociationsRequest
|
|
10732
|
+
* @returns DescribeAutoSnapshotPolicyAssociationsResponse
|
|
10733
|
+
*/
|
|
10734
|
+
async describeAutoSnapshotPolicyAssociations(request: $_model.DescribeAutoSnapshotPolicyAssociationsRequest): Promise<$_model.DescribeAutoSnapshotPolicyAssociationsResponse> {
|
|
10735
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
10736
|
+
return await this.describeAutoSnapshotPolicyAssociationsWithOptions(request, runtime);
|
|
10737
|
+
}
|
|
10738
|
+
|
|
10689
10739
|
/**
|
|
10690
10740
|
* Queries the details of automatic snapshot policies that are created in a specific region.
|
|
10691
10741
|
*
|
|
@@ -11033,7 +11083,6 @@ export default class Client extends OpenApi {
|
|
|
11033
11083
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
11034
11084
|
* @returns DescribeBandwidthPackagesResponse
|
|
11035
11085
|
*/
|
|
11036
|
-
// Deprecated
|
|
11037
11086
|
async describeBandwidthPackagesWithOptions(request: $_model.DescribeBandwidthPackagesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeBandwidthPackagesResponse> {
|
|
11038
11087
|
request.validate();
|
|
11039
11088
|
let query = { };
|
|
@@ -11519,7 +11568,6 @@ export default class Client extends OpenApi {
|
|
|
11519
11568
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
11520
11569
|
* @returns DescribeClustersResponse
|
|
11521
11570
|
*/
|
|
11522
|
-
// Deprecated
|
|
11523
11571
|
async describeClustersWithOptions(request: $_model.DescribeClustersRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeClustersResponse> {
|
|
11524
11572
|
request.validate();
|
|
11525
11573
|
let query = { };
|
|
@@ -11929,7 +11977,7 @@ export default class Client extends OpenApi {
|
|
|
11929
11977
|
}
|
|
11930
11978
|
|
|
11931
11979
|
/**
|
|
11932
|
-
* Queries the information about
|
|
11980
|
+
* Queries the details of one or more Dedicated Hosts (DDHs). You can call this operation to obtain information about a DDH, including the physical performance specifications, machine code, service status, and the list of created ECS instances. You can specify relevant parameters, such as DDH IDs, DDH cluster IDs, hostname, and status, to query the required DDH details. This helps you efficiently manage and optimize cloud computing resources.
|
|
11933
11981
|
*
|
|
11934
11982
|
* @remarks
|
|
11935
11983
|
* ## [](#)Usage notes
|
|
@@ -12042,7 +12090,7 @@ export default class Client extends OpenApi {
|
|
|
12042
12090
|
}
|
|
12043
12091
|
|
|
12044
12092
|
/**
|
|
12045
|
-
* Queries the information about
|
|
12093
|
+
* Queries the details of one or more Dedicated Hosts (DDHs). You can call this operation to obtain information about a DDH, including the physical performance specifications, machine code, service status, and the list of created ECS instances. You can specify relevant parameters, such as DDH IDs, DDH cluster IDs, hostname, and status, to query the required DDH details. This helps you efficiently manage and optimize cloud computing resources.
|
|
12046
12094
|
*
|
|
12047
12095
|
* @remarks
|
|
12048
12096
|
* ## [](#)Usage notes
|
|
@@ -12955,7 +13003,6 @@ export default class Client extends OpenApi {
|
|
|
12955
13003
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
12956
13004
|
* @returns DescribeEipAddressesResponse
|
|
12957
13005
|
*/
|
|
12958
|
-
// Deprecated
|
|
12959
13006
|
async describeEipAddressesWithOptions(request: $_model.DescribeEipAddressesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeEipAddressesResponse> {
|
|
12960
13007
|
request.validate();
|
|
12961
13008
|
let query = { };
|
|
@@ -13059,7 +13106,6 @@ export default class Client extends OpenApi {
|
|
|
13059
13106
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
13060
13107
|
* @returns DescribeEipMonitorDataResponse
|
|
13061
13108
|
*/
|
|
13062
|
-
// Deprecated
|
|
13063
13109
|
async describeEipMonitorDataWithOptions(request: $_model.DescribeEipMonitorDataRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeEipMonitorDataResponse> {
|
|
13064
13110
|
request.validate();
|
|
13065
13111
|
let query = { };
|
|
@@ -13465,7 +13511,6 @@ export default class Client extends OpenApi {
|
|
|
13465
13511
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
13466
13512
|
* @returns DescribeForwardTableEntriesResponse
|
|
13467
13513
|
*/
|
|
13468
|
-
// Deprecated
|
|
13469
13514
|
async describeForwardTableEntriesWithOptions(request: $_model.DescribeForwardTableEntriesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeForwardTableEntriesResponse> {
|
|
13470
13515
|
request.validate();
|
|
13471
13516
|
let query = { };
|
|
@@ -13541,7 +13586,6 @@ export default class Client extends OpenApi {
|
|
|
13541
13586
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
13542
13587
|
* @returns DescribeHaVipsResponse
|
|
13543
13588
|
*/
|
|
13544
|
-
// Deprecated
|
|
13545
13589
|
async describeHaVipsWithOptions(request: $_model.DescribeHaVipsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeHaVipsResponse> {
|
|
13546
13590
|
request.validate();
|
|
13547
13591
|
let query = { };
|
|
@@ -14581,7 +14625,8 @@ export default class Client extends OpenApi {
|
|
|
14581
14625
|
*
|
|
14582
14626
|
* @remarks
|
|
14583
14627
|
* You can query system events that were completed within the last 30 days. No limits apply to the time range for querying uncompleted system events.
|
|
14584
|
-
* *
|
|
14628
|
+
* * If you do not specify the EventCycleStatus or InstanceEventCycleStatus parameter, only system events in the Avoidated, Executed, Canceled, or Failed state are included in the query results by default.
|
|
14629
|
+
* * You can also specify the InstanceEventCycleStatus parameter in the request to query the system events that are in the Scheduled, Executing, or Inquiring state.
|
|
14585
14630
|
*
|
|
14586
14631
|
* @param request - DescribeInstanceHistoryEventsRequest
|
|
14587
14632
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -14704,7 +14749,8 @@ export default class Client extends OpenApi {
|
|
|
14704
14749
|
*
|
|
14705
14750
|
* @remarks
|
|
14706
14751
|
* You can query system events that were completed within the last 30 days. No limits apply to the time range for querying uncompleted system events.
|
|
14707
|
-
* *
|
|
14752
|
+
* * If you do not specify the EventCycleStatus or InstanceEventCycleStatus parameter, only system events in the Avoidated, Executed, Canceled, or Failed state are included in the query results by default.
|
|
14753
|
+
* * You can also specify the InstanceEventCycleStatus parameter in the request to query the system events that are in the Scheduled, Executing, or Inquiring state.
|
|
14708
14754
|
*
|
|
14709
14755
|
* @param request - DescribeInstanceHistoryEventsRequest
|
|
14710
14756
|
* @returns DescribeInstanceHistoryEventsResponse
|
|
@@ -16491,7 +16537,6 @@ export default class Client extends OpenApi {
|
|
|
16491
16537
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
16492
16538
|
* @returns DescribeLimitationResponse
|
|
16493
16539
|
*/
|
|
16494
|
-
// Deprecated
|
|
16495
16540
|
async describeLimitationWithOptions(request: $_model.DescribeLimitationRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeLimitationResponse> {
|
|
16496
16541
|
request.validate();
|
|
16497
16542
|
let query = { };
|
|
@@ -16665,7 +16710,6 @@ export default class Client extends OpenApi {
|
|
|
16665
16710
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
16666
16711
|
* @returns DescribeNatGatewaysResponse
|
|
16667
16712
|
*/
|
|
16668
|
-
// Deprecated
|
|
16669
16713
|
async describeNatGatewaysWithOptions(request: $_model.DescribeNatGatewaysRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeNatGatewaysResponse> {
|
|
16670
16714
|
request.validate();
|
|
16671
16715
|
let query = { };
|
|
@@ -17051,7 +17095,6 @@ export default class Client extends OpenApi {
|
|
|
17051
17095
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
17052
17096
|
* @returns DescribeNewProjectEipMonitorDataResponse
|
|
17053
17097
|
*/
|
|
17054
|
-
// Deprecated
|
|
17055
17098
|
async describeNewProjectEipMonitorDataWithOptions(request: $_model.DescribeNewProjectEipMonitorDataRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeNewProjectEipMonitorDataResponse> {
|
|
17056
17099
|
request.validate();
|
|
17057
17100
|
let query = { };
|
|
@@ -17127,7 +17170,6 @@ export default class Client extends OpenApi {
|
|
|
17127
17170
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
17128
17171
|
* @returns DescribePhysicalConnectionsResponse
|
|
17129
17172
|
*/
|
|
17130
|
-
// Deprecated
|
|
17131
17173
|
async describePhysicalConnectionsWithOptions(request: $_model.DescribePhysicalConnectionsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribePhysicalConnectionsResponse> {
|
|
17132
17174
|
request.validate();
|
|
17133
17175
|
let query = { };
|
|
@@ -18343,7 +18385,6 @@ export default class Client extends OpenApi {
|
|
|
18343
18385
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
18344
18386
|
* @returns DescribeResourceByTagsResponse
|
|
18345
18387
|
*/
|
|
18346
|
-
// Deprecated
|
|
18347
18388
|
async describeResourceByTagsWithOptions(request: $_model.DescribeResourceByTagsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeResourceByTagsResponse> {
|
|
18348
18389
|
request.validate();
|
|
18349
18390
|
let query = { };
|
|
@@ -18573,7 +18614,6 @@ export default class Client extends OpenApi {
|
|
|
18573
18614
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
18574
18615
|
* @returns DescribeRouteTablesResponse
|
|
18575
18616
|
*/
|
|
18576
|
-
// Deprecated
|
|
18577
18617
|
async describeRouteTablesWithOptions(request: $_model.DescribeRouteTablesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeRouteTablesResponse> {
|
|
18578
18618
|
request.validate();
|
|
18579
18619
|
let query = { };
|
|
@@ -18663,7 +18703,6 @@ export default class Client extends OpenApi {
|
|
|
18663
18703
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
18664
18704
|
* @returns DescribeRouterInterfacesResponse
|
|
18665
18705
|
*/
|
|
18666
|
-
// Deprecated
|
|
18667
18706
|
async describeRouterInterfacesWithOptions(request: $_model.DescribeRouterInterfacesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeRouterInterfacesResponse> {
|
|
18668
18707
|
request.validate();
|
|
18669
18708
|
let query = { };
|
|
@@ -20334,7 +20373,6 @@ export default class Client extends OpenApi {
|
|
|
20334
20373
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
20335
20374
|
* @returns DescribeTagsResponse
|
|
20336
20375
|
*/
|
|
20337
|
-
// Deprecated
|
|
20338
20376
|
async describeTagsWithOptions(request: $_model.DescribeTagsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeTagsResponse> {
|
|
20339
20377
|
request.validate();
|
|
20340
20378
|
let query = { };
|
|
@@ -20657,7 +20695,6 @@ export default class Client extends OpenApi {
|
|
|
20657
20695
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
20658
20696
|
* @returns DescribeUserBusinessBehaviorResponse
|
|
20659
20697
|
*/
|
|
20660
|
-
// Deprecated
|
|
20661
20698
|
async describeUserBusinessBehaviorWithOptions(request: $_model.DescribeUserBusinessBehaviorRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeUserBusinessBehaviorResponse> {
|
|
20662
20699
|
request.validate();
|
|
20663
20700
|
let query = { };
|
|
@@ -20789,7 +20826,6 @@ export default class Client extends OpenApi {
|
|
|
20789
20826
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
20790
20827
|
* @returns DescribeVRoutersResponse
|
|
20791
20828
|
*/
|
|
20792
|
-
// Deprecated
|
|
20793
20829
|
async describeVRoutersWithOptions(request: $_model.DescribeVRoutersRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeVRoutersResponse> {
|
|
20794
20830
|
request.validate();
|
|
20795
20831
|
let query = { };
|
|
@@ -20863,7 +20899,6 @@ export default class Client extends OpenApi {
|
|
|
20863
20899
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
20864
20900
|
* @returns DescribeVSwitchesResponse
|
|
20865
20901
|
*/
|
|
20866
|
-
// Deprecated
|
|
20867
20902
|
async describeVSwitchesWithOptions(request: $_model.DescribeVSwitchesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeVSwitchesResponse> {
|
|
20868
20903
|
request.validate();
|
|
20869
20904
|
let query = { };
|
|
@@ -20947,7 +20982,6 @@ export default class Client extends OpenApi {
|
|
|
20947
20982
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
20948
20983
|
* @returns DescribeVirtualBorderRoutersResponse
|
|
20949
20984
|
*/
|
|
20950
|
-
// Deprecated
|
|
20951
20985
|
async describeVirtualBorderRoutersWithOptions(request: $_model.DescribeVirtualBorderRoutersRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeVirtualBorderRoutersResponse> {
|
|
20952
20986
|
request.validate();
|
|
20953
20987
|
let query = { };
|
|
@@ -21015,7 +21049,6 @@ export default class Client extends OpenApi {
|
|
|
21015
21049
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
21016
21050
|
* @returns DescribeVirtualBorderRoutersForPhysicalConnectionResponse
|
|
21017
21051
|
*/
|
|
21018
|
-
// Deprecated
|
|
21019
21052
|
async describeVirtualBorderRoutersForPhysicalConnectionWithOptions(request: $_model.DescribeVirtualBorderRoutersForPhysicalConnectionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeVirtualBorderRoutersForPhysicalConnectionResponse> {
|
|
21020
21053
|
request.validate();
|
|
21021
21054
|
let query = { };
|
|
@@ -21089,7 +21122,6 @@ export default class Client extends OpenApi {
|
|
|
21089
21122
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
21090
21123
|
* @returns DescribeVpcsResponse
|
|
21091
21124
|
*/
|
|
21092
|
-
// Deprecated
|
|
21093
21125
|
async describeVpcsWithOptions(request: $_model.DescribeVpcsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeVpcsResponse> {
|
|
21094
21126
|
request.validate();
|
|
21095
21127
|
let query = { };
|
|
@@ -21843,7 +21875,6 @@ export default class Client extends OpenApi {
|
|
|
21843
21875
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
21844
21876
|
* @returns EnablePhysicalConnectionResponse
|
|
21845
21877
|
*/
|
|
21846
|
-
// Deprecated
|
|
21847
21878
|
async enablePhysicalConnectionWithOptions(request: $_model.EnablePhysicalConnectionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.EnablePhysicalConnectionResponse> {
|
|
21848
21879
|
request.validate();
|
|
21849
21880
|
let query = { };
|
|
@@ -22151,7 +22182,6 @@ export default class Client extends OpenApi {
|
|
|
22151
22182
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
22152
22183
|
* @returns ExportSnapshotResponse
|
|
22153
22184
|
*/
|
|
22154
|
-
// Deprecated
|
|
22155
22185
|
async exportSnapshotWithOptions(request: $_model.ExportSnapshotRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ExportSnapshotResponse> {
|
|
22156
22186
|
request.validate();
|
|
22157
22187
|
let query = { };
|
|
@@ -23101,20 +23131,15 @@ export default class Client extends OpenApi {
|
|
|
23101
23131
|
}
|
|
23102
23132
|
|
|
23103
23133
|
/**
|
|
23104
|
-
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group.
|
|
23134
|
+
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a specified security group.
|
|
23105
23135
|
*
|
|
23106
23136
|
* @remarks
|
|
23107
|
-
*
|
|
23108
|
-
* > This operation is not recommended. We recommend that you call the [ModifyInstanceAttribute](https://help.aliyun.com/document_detail/25503.html) operation to add an instance to or remove an instance from a security group, and call the [ModifyNetworkInterfaceAttribute](https://help.aliyun.com/document_detail/58513.html) operation to add an ENI to or remove an ENI from a security group.
|
|
23109
|
-
* Take note of the following items:
|
|
23110
|
-
* * Before you add an instance to a security group, the instance must be in the **Stopped** (Stopped) or **Running** (Running) state.
|
|
23111
|
-
* * An instance can be added to up to five security groups by default.
|
|
23112
|
-
* * You can [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex) to change the maximum number of security groups to which an instance can be added to 4 or 10.
|
|
23113
|
-
* * A basic security group can contain up to 2,000 instances. An advanced security group can contain up to 65,536 instances.
|
|
23114
|
-
* * The security group and the instance must reside in the same region.
|
|
23115
|
-
* * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
|
|
23137
|
+
* > This operation is not recommended. We recommend that you call the [ModifyInstanceAttribute](https://help.aliyun.com/document_detail/25503.html) operation to add an instance to or remove an instance from a security group, and call the [ModifyNetworkInterfaceAttribute](https://help.aliyun.com/document_detail/58513.html) operation to add an ENI to or remove an ENI from a security group.
|
|
23116
23138
|
* * An instance and an ENI cannot be added to a security group at the same time. You cannot specify `InstanceId` and `NetworkInterfaceId` at the same time in a request.
|
|
23117
|
-
*
|
|
23139
|
+
* * The security group and the ECS instance to be added to the security group must reside in the same region.
|
|
23140
|
+
* * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
|
|
23141
|
+
* * Before you add an instance to a security group, the instance must be in the **Stopped** or **Running** state.
|
|
23142
|
+
* * An instance can be added to up to five security groups by default. For more information, see [Security group limits](~~25412#SecurityGroupQuota1~~).
|
|
23118
23143
|
*
|
|
23119
23144
|
* @param request - JoinSecurityGroupRequest
|
|
23120
23145
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23173,20 +23198,15 @@ export default class Client extends OpenApi {
|
|
|
23173
23198
|
}
|
|
23174
23199
|
|
|
23175
23200
|
/**
|
|
23176
|
-
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group.
|
|
23201
|
+
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a specified security group.
|
|
23177
23202
|
*
|
|
23178
23203
|
* @remarks
|
|
23179
|
-
*
|
|
23180
|
-
* > This operation is not recommended. We recommend that you call the [ModifyInstanceAttribute](https://help.aliyun.com/document_detail/25503.html) operation to add an instance to or remove an instance from a security group, and call the [ModifyNetworkInterfaceAttribute](https://help.aliyun.com/document_detail/58513.html) operation to add an ENI to or remove an ENI from a security group.
|
|
23181
|
-
* Take note of the following items:
|
|
23182
|
-
* * Before you add an instance to a security group, the instance must be in the **Stopped** (Stopped) or **Running** (Running) state.
|
|
23183
|
-
* * An instance can be added to up to five security groups by default.
|
|
23184
|
-
* * You can [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex) to change the maximum number of security groups to which an instance can be added to 4 or 10.
|
|
23185
|
-
* * A basic security group can contain up to 2,000 instances. An advanced security group can contain up to 65,536 instances.
|
|
23186
|
-
* * The security group and the instance must reside in the same region.
|
|
23187
|
-
* * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
|
|
23204
|
+
* > This operation is not recommended. We recommend that you call the [ModifyInstanceAttribute](https://help.aliyun.com/document_detail/25503.html) operation to add an instance to or remove an instance from a security group, and call the [ModifyNetworkInterfaceAttribute](https://help.aliyun.com/document_detail/58513.html) operation to add an ENI to or remove an ENI from a security group.
|
|
23188
23205
|
* * An instance and an ENI cannot be added to a security group at the same time. You cannot specify `InstanceId` and `NetworkInterfaceId` at the same time in a request.
|
|
23189
|
-
*
|
|
23206
|
+
* * The security group and the ECS instance to be added to the security group must reside in the same region.
|
|
23207
|
+
* * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
|
|
23208
|
+
* * Before you add an instance to a security group, the instance must be in the **Stopped** or **Running** state.
|
|
23209
|
+
* * An instance can be added to up to five security groups by default. For more information, see [Security group limits](~~25412#SecurityGroupQuota1~~).
|
|
23190
23210
|
*
|
|
23191
23211
|
* @param request - JoinSecurityGroupRequest
|
|
23192
23212
|
* @returns JoinSecurityGroupResponse
|
|
@@ -23699,7 +23719,6 @@ export default class Client extends OpenApi {
|
|
|
23699
23719
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
23700
23720
|
* @returns ModifyBandwidthPackageSpecResponse
|
|
23701
23721
|
*/
|
|
23702
|
-
// Deprecated
|
|
23703
23722
|
async modifyBandwidthPackageSpecWithOptions(request: $_model.ModifyBandwidthPackageSpecRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyBandwidthPackageSpecResponse> {
|
|
23704
23723
|
request.validate();
|
|
23705
23724
|
let query = { };
|
|
@@ -24693,7 +24712,7 @@ export default class Client extends OpenApi {
|
|
|
24693
24712
|
}
|
|
24694
24713
|
|
|
24695
24714
|
/**
|
|
24696
|
-
*
|
|
24715
|
+
* Converts the billing method of a data disk attached to a subscription ECS instance between pay-as-you-go and subscription.
|
|
24697
24716
|
*
|
|
24698
24717
|
* @remarks
|
|
24699
24718
|
* For information about how to change the billing method of cloud disks, see [Change the billing methods of a disk](https://help.aliyun.com/document_detail/145018.html).
|
|
@@ -24769,7 +24788,7 @@ export default class Client extends OpenApi {
|
|
|
24769
24788
|
}
|
|
24770
24789
|
|
|
24771
24790
|
/**
|
|
24772
|
-
*
|
|
24791
|
+
* Converts the billing method of a data disk attached to a subscription ECS instance between pay-as-you-go and subscription.
|
|
24773
24792
|
*
|
|
24774
24793
|
* @remarks
|
|
24775
24794
|
* For information about how to change the billing method of cloud disks, see [Change the billing methods of a disk](https://help.aliyun.com/document_detail/145018.html).
|
|
@@ -25075,7 +25094,6 @@ export default class Client extends OpenApi {
|
|
|
25075
25094
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
25076
25095
|
* @returns ModifyEipAddressAttributeResponse
|
|
25077
25096
|
*/
|
|
25078
|
-
// Deprecated
|
|
25079
25097
|
async modifyEipAddressAttributeWithOptions(request: $_model.ModifyEipAddressAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyEipAddressAttributeResponse> {
|
|
25080
25098
|
request.validate();
|
|
25081
25099
|
let query = { };
|
|
@@ -25295,7 +25313,6 @@ export default class Client extends OpenApi {
|
|
|
25295
25313
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
25296
25314
|
* @returns ModifyForwardEntryResponse
|
|
25297
25315
|
*/
|
|
25298
|
-
// Deprecated
|
|
25299
25316
|
async modifyForwardEntryWithOptions(request: $_model.ModifyForwardEntryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyForwardEntryResponse> {
|
|
25300
25317
|
request.validate();
|
|
25301
25318
|
let query = { };
|
|
@@ -25383,7 +25400,6 @@ export default class Client extends OpenApi {
|
|
|
25383
25400
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
25384
25401
|
* @returns ModifyHaVipAttributeResponse
|
|
25385
25402
|
*/
|
|
25386
|
-
// Deprecated
|
|
25387
25403
|
async modifyHaVipAttributeWithOptions(request: $_model.ModifyHaVipAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyHaVipAttributeResponse> {
|
|
25388
25404
|
request.validate();
|
|
25389
25405
|
let query = { };
|
|
@@ -25629,7 +25645,6 @@ export default class Client extends OpenApi {
|
|
|
25629
25645
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
25630
25646
|
* @returns ModifyImageShareGroupPermissionResponse
|
|
25631
25647
|
*/
|
|
25632
|
-
// Deprecated
|
|
25633
25648
|
async modifyImageShareGroupPermissionWithOptions(request: $_model.ModifyImageShareGroupPermissionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyImageShareGroupPermissionResponse> {
|
|
25634
25649
|
request.validate();
|
|
25635
25650
|
let query = { };
|
|
@@ -26570,6 +26585,64 @@ export default class Client extends OpenApi {
|
|
|
26570
26585
|
return await this.modifyInstanceMetadataOptionsWithOptions(request, runtime);
|
|
26571
26586
|
}
|
|
26572
26587
|
|
|
26588
|
+
/**
|
|
26589
|
+
* 修改实例网络选项
|
|
26590
|
+
*
|
|
26591
|
+
* @param request - ModifyInstanceNetworkOptionsRequest
|
|
26592
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
26593
|
+
* @returns ModifyInstanceNetworkOptionsResponse
|
|
26594
|
+
*/
|
|
26595
|
+
async modifyInstanceNetworkOptionsWithOptions(request: $_model.ModifyInstanceNetworkOptionsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyInstanceNetworkOptionsResponse> {
|
|
26596
|
+
request.validate();
|
|
26597
|
+
let query = { };
|
|
26598
|
+
if (!$dara.isNull(request.bandwidthWeighting)) {
|
|
26599
|
+
query["BandwidthWeighting"] = request.bandwidthWeighting;
|
|
26600
|
+
}
|
|
26601
|
+
|
|
26602
|
+
if (!$dara.isNull(request.instanceId)) {
|
|
26603
|
+
query["InstanceId"] = request.instanceId;
|
|
26604
|
+
}
|
|
26605
|
+
|
|
26606
|
+
if (!$dara.isNull(request.ownerId)) {
|
|
26607
|
+
query["OwnerId"] = request.ownerId;
|
|
26608
|
+
}
|
|
26609
|
+
|
|
26610
|
+
if (!$dara.isNull(request.resourceOwnerAccount)) {
|
|
26611
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
26612
|
+
}
|
|
26613
|
+
|
|
26614
|
+
if (!$dara.isNull(request.resourceOwnerId)) {
|
|
26615
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
26616
|
+
}
|
|
26617
|
+
|
|
26618
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
26619
|
+
query: OpenApiUtil.query(query),
|
|
26620
|
+
});
|
|
26621
|
+
let params = new $OpenApiUtil.Params({
|
|
26622
|
+
action: "ModifyInstanceNetworkOptions",
|
|
26623
|
+
version: "2014-05-26",
|
|
26624
|
+
protocol: "HTTPS",
|
|
26625
|
+
pathname: "/",
|
|
26626
|
+
method: "POST",
|
|
26627
|
+
authType: "AK",
|
|
26628
|
+
style: "RPC",
|
|
26629
|
+
reqBodyType: "formData",
|
|
26630
|
+
bodyType: "json",
|
|
26631
|
+
});
|
|
26632
|
+
return $dara.cast<$_model.ModifyInstanceNetworkOptionsResponse>(await this.callApi(params, req, runtime), new $_model.ModifyInstanceNetworkOptionsResponse({}));
|
|
26633
|
+
}
|
|
26634
|
+
|
|
26635
|
+
/**
|
|
26636
|
+
* 修改实例网络选项
|
|
26637
|
+
*
|
|
26638
|
+
* @param request - ModifyInstanceNetworkOptionsRequest
|
|
26639
|
+
* @returns ModifyInstanceNetworkOptionsResponse
|
|
26640
|
+
*/
|
|
26641
|
+
async modifyInstanceNetworkOptions(request: $_model.ModifyInstanceNetworkOptionsRequest): Promise<$_model.ModifyInstanceNetworkOptionsResponse> {
|
|
26642
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
26643
|
+
return await this.modifyInstanceNetworkOptionsWithOptions(request, runtime);
|
|
26644
|
+
}
|
|
26645
|
+
|
|
26573
26646
|
/**
|
|
26574
26647
|
* Modifies the network configurations of an Elastic Compute Service (ECS) instance, such as the public bandwidth, assignment or unassignment of a static public IP address (also known as system-assigned or auto-assigned public IP address), and billing method for network usage. You can call this operation to upgrade or downgrade the network configurations of ECS instances.
|
|
26575
26648
|
*
|
|
@@ -27407,7 +27480,6 @@ export default class Client extends OpenApi {
|
|
|
27407
27480
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
27408
27481
|
* @returns ModifyPhysicalConnectionAttributeResponse
|
|
27409
27482
|
*/
|
|
27410
|
-
// Deprecated
|
|
27411
27483
|
async modifyPhysicalConnectionAttributeWithOptions(request: $_model.ModifyPhysicalConnectionAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyPhysicalConnectionAttributeResponse> {
|
|
27412
27484
|
request.validate();
|
|
27413
27485
|
let query = { };
|
|
@@ -28145,7 +28217,6 @@ export default class Client extends OpenApi {
|
|
|
28145
28217
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
28146
28218
|
* @returns ModifyRouterInterfaceAttributeResponse
|
|
28147
28219
|
*/
|
|
28148
|
-
// Deprecated
|
|
28149
28220
|
async modifyRouterInterfaceAttributeWithOptions(request: $_model.ModifyRouterInterfaceAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyRouterInterfaceAttributeResponse> {
|
|
28150
28221
|
request.validate();
|
|
28151
28222
|
let query = { };
|
|
@@ -28237,7 +28308,6 @@ export default class Client extends OpenApi {
|
|
|
28237
28308
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
28238
28309
|
* @returns ModifyRouterInterfaceSpecResponse
|
|
28239
28310
|
*/
|
|
28240
|
-
// Deprecated
|
|
28241
28311
|
async modifyRouterInterfaceSpecWithOptions(request: $_model.ModifyRouterInterfaceSpecRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyRouterInterfaceSpecResponse> {
|
|
28242
28312
|
request.validate();
|
|
28243
28313
|
let query = { };
|
|
@@ -29131,7 +29201,6 @@ export default class Client extends OpenApi {
|
|
|
29131
29201
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29132
29202
|
* @returns ModifyUserBusinessBehaviorResponse
|
|
29133
29203
|
*/
|
|
29134
|
-
// Deprecated
|
|
29135
29204
|
async modifyUserBusinessBehaviorWithOptions(request: $_model.ModifyUserBusinessBehaviorRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyUserBusinessBehaviorResponse> {
|
|
29136
29205
|
request.validate();
|
|
29137
29206
|
let query = { };
|
|
@@ -29201,7 +29270,6 @@ export default class Client extends OpenApi {
|
|
|
29201
29270
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29202
29271
|
* @returns ModifyVRouterAttributeResponse
|
|
29203
29272
|
*/
|
|
29204
|
-
// Deprecated
|
|
29205
29273
|
async modifyVRouterAttributeWithOptions(request: $_model.ModifyVRouterAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyVRouterAttributeResponse> {
|
|
29206
29274
|
request.validate();
|
|
29207
29275
|
let query = { };
|
|
@@ -29273,7 +29341,6 @@ export default class Client extends OpenApi {
|
|
|
29273
29341
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29274
29342
|
* @returns ModifyVSwitchAttributeResponse
|
|
29275
29343
|
*/
|
|
29276
|
-
// Deprecated
|
|
29277
29344
|
async modifyVSwitchAttributeWithOptions(request: $_model.ModifyVSwitchAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyVSwitchAttributeResponse> {
|
|
29278
29345
|
request.validate();
|
|
29279
29346
|
let query = { };
|
|
@@ -29345,7 +29412,6 @@ export default class Client extends OpenApi {
|
|
|
29345
29412
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29346
29413
|
* @returns ModifyVirtualBorderRouterAttributeResponse
|
|
29347
29414
|
*/
|
|
29348
|
-
// Deprecated
|
|
29349
29415
|
async modifyVirtualBorderRouterAttributeWithOptions(request: $_model.ModifyVirtualBorderRouterAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyVirtualBorderRouterAttributeResponse> {
|
|
29350
29416
|
request.validate();
|
|
29351
29417
|
let query = { };
|
|
@@ -29445,7 +29511,6 @@ export default class Client extends OpenApi {
|
|
|
29445
29511
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29446
29512
|
* @returns ModifyVpcAttributeResponse
|
|
29447
29513
|
*/
|
|
29448
|
-
// Deprecated
|
|
29449
29514
|
async modifyVpcAttributeWithOptions(request: $_model.ModifyVpcAttributeRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ModifyVpcAttributeResponse> {
|
|
29450
29515
|
request.validate();
|
|
29451
29516
|
let query = { };
|
|
@@ -30199,7 +30264,6 @@ export default class Client extends OpenApi {
|
|
|
30199
30264
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30200
30265
|
* @returns RecoverVirtualBorderRouterResponse
|
|
30201
30266
|
*/
|
|
30202
|
-
// Deprecated
|
|
30203
30267
|
async recoverVirtualBorderRouterWithOptions(request: $_model.RecoverVirtualBorderRouterRequest, runtime: $dara.RuntimeOptions): Promise<$_model.RecoverVirtualBorderRouterResponse> {
|
|
30204
30268
|
request.validate();
|
|
30205
30269
|
let query = { };
|
|
@@ -30595,7 +30659,6 @@ export default class Client extends OpenApi {
|
|
|
30595
30659
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30596
30660
|
* @returns ReleaseEipAddressResponse
|
|
30597
30661
|
*/
|
|
30598
|
-
// Deprecated
|
|
30599
30662
|
async releaseEipAddressWithOptions(request: $_model.ReleaseEipAddressRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ReleaseEipAddressResponse> {
|
|
30600
30663
|
request.validate();
|
|
30601
30664
|
let query = { };
|
|
@@ -30661,7 +30724,6 @@ export default class Client extends OpenApi {
|
|
|
30661
30724
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30662
30725
|
* @returns ReleasePublicIpAddressResponse
|
|
30663
30726
|
*/
|
|
30664
|
-
// Deprecated
|
|
30665
30727
|
async releasePublicIpAddressWithOptions(request: $_model.ReleasePublicIpAddressRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ReleasePublicIpAddressResponse> {
|
|
30666
30728
|
request.validate();
|
|
30667
30729
|
let query = { };
|
|
@@ -30719,7 +30781,6 @@ export default class Client extends OpenApi {
|
|
|
30719
30781
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30720
30782
|
* @returns RemoveBandwidthPackageIpsResponse
|
|
30721
30783
|
*/
|
|
30722
|
-
// Deprecated
|
|
30723
30784
|
async removeBandwidthPackageIpsWithOptions(request: $_model.RemoveBandwidthPackageIpsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.RemoveBandwidthPackageIpsResponse> {
|
|
30724
30785
|
request.validate();
|
|
30725
30786
|
let query = { };
|
|
@@ -30793,7 +30854,6 @@ export default class Client extends OpenApi {
|
|
|
30793
30854
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30794
30855
|
* @returns RemoveTagsResponse
|
|
30795
30856
|
*/
|
|
30796
|
-
// Deprecated
|
|
30797
30857
|
async removeTagsWithOptions(request: $_model.RemoveTagsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.RemoveTagsResponse> {
|
|
30798
30858
|
request.validate();
|
|
30799
30859
|
let query = { };
|
|
@@ -33815,7 +33875,6 @@ export default class Client extends OpenApi {
|
|
|
33815
33875
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
33816
33876
|
* @returns TerminatePhysicalConnectionResponse
|
|
33817
33877
|
*/
|
|
33818
|
-
// Deprecated
|
|
33819
33878
|
async terminatePhysicalConnectionWithOptions(request: $_model.TerminatePhysicalConnectionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.TerminatePhysicalConnectionResponse> {
|
|
33820
33879
|
request.validate();
|
|
33821
33880
|
let query = { };
|
|
@@ -33887,7 +33946,6 @@ export default class Client extends OpenApi {
|
|
|
33887
33946
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
33888
33947
|
* @returns TerminateVirtualBorderRouterResponse
|
|
33889
33948
|
*/
|
|
33890
|
-
// Deprecated
|
|
33891
33949
|
async terminateVirtualBorderRouterWithOptions(request: $_model.TerminateVirtualBorderRouterRequest, runtime: $dara.RuntimeOptions): Promise<$_model.TerminateVirtualBorderRouterResponse> {
|
|
33892
33950
|
request.validate();
|
|
33893
33951
|
let query = { };
|
|
@@ -34129,7 +34187,6 @@ export default class Client extends OpenApi {
|
|
|
34129
34187
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
34130
34188
|
* @returns UnassociateEipAddressResponse
|
|
34131
34189
|
*/
|
|
34132
|
-
// Deprecated
|
|
34133
34190
|
async unassociateEipAddressWithOptions(request: $_model.UnassociateEipAddressRequest, runtime: $dara.RuntimeOptions): Promise<$_model.UnassociateEipAddressResponse> {
|
|
34134
34191
|
request.validate();
|
|
34135
34192
|
let query = { };
|
|
@@ -34201,7 +34258,6 @@ export default class Client extends OpenApi {
|
|
|
34201
34258
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
34202
34259
|
* @returns UnassociateHaVipResponse
|
|
34203
34260
|
*/
|
|
34204
|
-
// Deprecated
|
|
34205
34261
|
async unassociateHaVipWithOptions(request: $_model.UnassociateHaVipRequest, runtime: $dara.RuntimeOptions): Promise<$_model.UnassociateHaVipResponse> {
|
|
34206
34262
|
request.validate();
|
|
34207
34263
|
let query = { };
|