@alicloud/ga20191120 1.0.20 → 1.0.22
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 +344 -212
- package/dist/client.js +525 -212
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +610 -212
package/src/client.ts
CHANGED
|
@@ -726,7 +726,9 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
726
726
|
autoUseCoupon?: string;
|
|
727
727
|
bandwidthBillingType?: string;
|
|
728
728
|
clientToken?: string;
|
|
729
|
+
dryRun?: boolean;
|
|
729
730
|
duration?: number;
|
|
731
|
+
instanceChargeType?: string;
|
|
730
732
|
ipSetConfig?: CreateAcceleratorRequestIpSetConfig;
|
|
731
733
|
name?: string;
|
|
732
734
|
pricingCycle?: string;
|
|
@@ -743,7 +745,9 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
743
745
|
autoUseCoupon: 'AutoUseCoupon',
|
|
744
746
|
bandwidthBillingType: 'BandwidthBillingType',
|
|
745
747
|
clientToken: 'ClientToken',
|
|
748
|
+
dryRun: 'DryRun',
|
|
746
749
|
duration: 'Duration',
|
|
750
|
+
instanceChargeType: 'InstanceChargeType',
|
|
747
751
|
ipSetConfig: 'IpSetConfig',
|
|
748
752
|
name: 'Name',
|
|
749
753
|
pricingCycle: 'PricingCycle',
|
|
@@ -763,7 +767,9 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
763
767
|
autoUseCoupon: 'string',
|
|
764
768
|
bandwidthBillingType: 'string',
|
|
765
769
|
clientToken: 'string',
|
|
770
|
+
dryRun: 'boolean',
|
|
766
771
|
duration: 'number',
|
|
772
|
+
instanceChargeType: 'string',
|
|
767
773
|
ipSetConfig: CreateAcceleratorRequestIpSetConfig,
|
|
768
774
|
name: 'string',
|
|
769
775
|
pricingCycle: 'string',
|
|
@@ -4392,6 +4398,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
4392
4398
|
spec?: string;
|
|
4393
4399
|
state?: string;
|
|
4394
4400
|
tags?: DescribeAcceleratorResponseBodyTags[];
|
|
4401
|
+
upgradableStatus?: string;
|
|
4395
4402
|
static names(): { [key: string]: string } {
|
|
4396
4403
|
return {
|
|
4397
4404
|
acceleratorId: 'AcceleratorId',
|
|
@@ -4417,6 +4424,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
4417
4424
|
spec: 'Spec',
|
|
4418
4425
|
state: 'State',
|
|
4419
4426
|
tags: 'Tags',
|
|
4427
|
+
upgradableStatus: 'UpgradableStatus',
|
|
4420
4428
|
};
|
|
4421
4429
|
}
|
|
4422
4430
|
|
|
@@ -4445,6 +4453,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
4445
4453
|
spec: 'string',
|
|
4446
4454
|
state: 'string',
|
|
4447
4455
|
tags: { 'type': 'array', 'itemType': DescribeAcceleratorResponseBodyTags },
|
|
4456
|
+
upgradableStatus: 'string',
|
|
4448
4457
|
};
|
|
4449
4458
|
}
|
|
4450
4459
|
|
|
@@ -4556,6 +4565,81 @@ export class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.Model {
|
|
|
4556
4565
|
}
|
|
4557
4566
|
}
|
|
4558
4567
|
|
|
4568
|
+
export class DescribeAcceleratorServiceStatusRequest extends $tea.Model {
|
|
4569
|
+
regionId?: string;
|
|
4570
|
+
static names(): { [key: string]: string } {
|
|
4571
|
+
return {
|
|
4572
|
+
regionId: 'RegionId',
|
|
4573
|
+
};
|
|
4574
|
+
}
|
|
4575
|
+
|
|
4576
|
+
static types(): { [key: string]: any } {
|
|
4577
|
+
return {
|
|
4578
|
+
regionId: 'string',
|
|
4579
|
+
};
|
|
4580
|
+
}
|
|
4581
|
+
|
|
4582
|
+
constructor(map?: { [key: string]: any }) {
|
|
4583
|
+
super(map);
|
|
4584
|
+
}
|
|
4585
|
+
}
|
|
4586
|
+
|
|
4587
|
+
export class DescribeAcceleratorServiceStatusResponseBody extends $tea.Model {
|
|
4588
|
+
code?: string;
|
|
4589
|
+
message?: string;
|
|
4590
|
+
requestId?: string;
|
|
4591
|
+
status?: string;
|
|
4592
|
+
success?: string;
|
|
4593
|
+
static names(): { [key: string]: string } {
|
|
4594
|
+
return {
|
|
4595
|
+
code: 'Code',
|
|
4596
|
+
message: 'Message',
|
|
4597
|
+
requestId: 'RequestId',
|
|
4598
|
+
status: 'Status',
|
|
4599
|
+
success: 'Success',
|
|
4600
|
+
};
|
|
4601
|
+
}
|
|
4602
|
+
|
|
4603
|
+
static types(): { [key: string]: any } {
|
|
4604
|
+
return {
|
|
4605
|
+
code: 'string',
|
|
4606
|
+
message: 'string',
|
|
4607
|
+
requestId: 'string',
|
|
4608
|
+
status: 'string',
|
|
4609
|
+
success: 'string',
|
|
4610
|
+
};
|
|
4611
|
+
}
|
|
4612
|
+
|
|
4613
|
+
constructor(map?: { [key: string]: any }) {
|
|
4614
|
+
super(map);
|
|
4615
|
+
}
|
|
4616
|
+
}
|
|
4617
|
+
|
|
4618
|
+
export class DescribeAcceleratorServiceStatusResponse extends $tea.Model {
|
|
4619
|
+
headers: { [key: string]: string };
|
|
4620
|
+
statusCode: number;
|
|
4621
|
+
body: DescribeAcceleratorServiceStatusResponseBody;
|
|
4622
|
+
static names(): { [key: string]: string } {
|
|
4623
|
+
return {
|
|
4624
|
+
headers: 'headers',
|
|
4625
|
+
statusCode: 'statusCode',
|
|
4626
|
+
body: 'body',
|
|
4627
|
+
};
|
|
4628
|
+
}
|
|
4629
|
+
|
|
4630
|
+
static types(): { [key: string]: any } {
|
|
4631
|
+
return {
|
|
4632
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4633
|
+
statusCode: 'number',
|
|
4634
|
+
body: DescribeAcceleratorServiceStatusResponseBody,
|
|
4635
|
+
};
|
|
4636
|
+
}
|
|
4637
|
+
|
|
4638
|
+
constructor(map?: { [key: string]: any }) {
|
|
4639
|
+
super(map);
|
|
4640
|
+
}
|
|
4641
|
+
}
|
|
4642
|
+
|
|
4559
4643
|
export class DescribeApplicationMonitorRequest extends $tea.Model {
|
|
4560
4644
|
clientToken?: string;
|
|
4561
4645
|
regionId?: string;
|
|
@@ -9305,6 +9389,84 @@ export class ListDomainsResponse extends $tea.Model {
|
|
|
9305
9389
|
}
|
|
9306
9390
|
}
|
|
9307
9391
|
|
|
9392
|
+
export class ListEndpointGroupIpAddressCidrBlocksRequest extends $tea.Model {
|
|
9393
|
+
endpointGroupRegion?: string;
|
|
9394
|
+
regionId?: string;
|
|
9395
|
+
static names(): { [key: string]: string } {
|
|
9396
|
+
return {
|
|
9397
|
+
endpointGroupRegion: 'EndpointGroupRegion',
|
|
9398
|
+
regionId: 'RegionId',
|
|
9399
|
+
};
|
|
9400
|
+
}
|
|
9401
|
+
|
|
9402
|
+
static types(): { [key: string]: any } {
|
|
9403
|
+
return {
|
|
9404
|
+
endpointGroupRegion: 'string',
|
|
9405
|
+
regionId: 'string',
|
|
9406
|
+
};
|
|
9407
|
+
}
|
|
9408
|
+
|
|
9409
|
+
constructor(map?: { [key: string]: any }) {
|
|
9410
|
+
super(map);
|
|
9411
|
+
}
|
|
9412
|
+
}
|
|
9413
|
+
|
|
9414
|
+
export class ListEndpointGroupIpAddressCidrBlocksResponseBody extends $tea.Model {
|
|
9415
|
+
endpointGroupRegion?: string;
|
|
9416
|
+
ipAddressCidrBlocks?: string[];
|
|
9417
|
+
requestId?: string;
|
|
9418
|
+
resourceGroupId?: string;
|
|
9419
|
+
state?: string;
|
|
9420
|
+
static names(): { [key: string]: string } {
|
|
9421
|
+
return {
|
|
9422
|
+
endpointGroupRegion: 'EndpointGroupRegion',
|
|
9423
|
+
ipAddressCidrBlocks: 'IpAddressCidrBlocks',
|
|
9424
|
+
requestId: 'RequestId',
|
|
9425
|
+
resourceGroupId: 'ResourceGroupId',
|
|
9426
|
+
state: 'State',
|
|
9427
|
+
};
|
|
9428
|
+
}
|
|
9429
|
+
|
|
9430
|
+
static types(): { [key: string]: any } {
|
|
9431
|
+
return {
|
|
9432
|
+
endpointGroupRegion: 'string',
|
|
9433
|
+
ipAddressCidrBlocks: { 'type': 'array', 'itemType': 'string' },
|
|
9434
|
+
requestId: 'string',
|
|
9435
|
+
resourceGroupId: 'string',
|
|
9436
|
+
state: 'string',
|
|
9437
|
+
};
|
|
9438
|
+
}
|
|
9439
|
+
|
|
9440
|
+
constructor(map?: { [key: string]: any }) {
|
|
9441
|
+
super(map);
|
|
9442
|
+
}
|
|
9443
|
+
}
|
|
9444
|
+
|
|
9445
|
+
export class ListEndpointGroupIpAddressCidrBlocksResponse extends $tea.Model {
|
|
9446
|
+
headers: { [key: string]: string };
|
|
9447
|
+
statusCode: number;
|
|
9448
|
+
body: ListEndpointGroupIpAddressCidrBlocksResponseBody;
|
|
9449
|
+
static names(): { [key: string]: string } {
|
|
9450
|
+
return {
|
|
9451
|
+
headers: 'headers',
|
|
9452
|
+
statusCode: 'statusCode',
|
|
9453
|
+
body: 'body',
|
|
9454
|
+
};
|
|
9455
|
+
}
|
|
9456
|
+
|
|
9457
|
+
static types(): { [key: string]: any } {
|
|
9458
|
+
return {
|
|
9459
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9460
|
+
statusCode: 'number',
|
|
9461
|
+
body: ListEndpointGroupIpAddressCidrBlocksResponseBody,
|
|
9462
|
+
};
|
|
9463
|
+
}
|
|
9464
|
+
|
|
9465
|
+
constructor(map?: { [key: string]: any }) {
|
|
9466
|
+
super(map);
|
|
9467
|
+
}
|
|
9468
|
+
}
|
|
9469
|
+
|
|
9308
9470
|
export class ListEndpointGroupsRequest extends $tea.Model {
|
|
9309
9471
|
acceleratorId?: string;
|
|
9310
9472
|
accessLogSwitch?: string;
|
|
@@ -10070,6 +10232,150 @@ export class ListTagResourcesResponse extends $tea.Model {
|
|
|
10070
10232
|
}
|
|
10071
10233
|
}
|
|
10072
10234
|
|
|
10235
|
+
export class OpenAcceleratorServiceRequest extends $tea.Model {
|
|
10236
|
+
clientToken?: string;
|
|
10237
|
+
regionId?: string;
|
|
10238
|
+
static names(): { [key: string]: string } {
|
|
10239
|
+
return {
|
|
10240
|
+
clientToken: 'ClientToken',
|
|
10241
|
+
regionId: 'RegionId',
|
|
10242
|
+
};
|
|
10243
|
+
}
|
|
10244
|
+
|
|
10245
|
+
static types(): { [key: string]: any } {
|
|
10246
|
+
return {
|
|
10247
|
+
clientToken: 'string',
|
|
10248
|
+
regionId: 'string',
|
|
10249
|
+
};
|
|
10250
|
+
}
|
|
10251
|
+
|
|
10252
|
+
constructor(map?: { [key: string]: any }) {
|
|
10253
|
+
super(map);
|
|
10254
|
+
}
|
|
10255
|
+
}
|
|
10256
|
+
|
|
10257
|
+
export class OpenAcceleratorServiceResponseBody extends $tea.Model {
|
|
10258
|
+
code?: string;
|
|
10259
|
+
message?: string;
|
|
10260
|
+
orderId?: number;
|
|
10261
|
+
requestId?: string;
|
|
10262
|
+
success?: string;
|
|
10263
|
+
static names(): { [key: string]: string } {
|
|
10264
|
+
return {
|
|
10265
|
+
code: 'Code',
|
|
10266
|
+
message: 'Message',
|
|
10267
|
+
orderId: 'OrderId',
|
|
10268
|
+
requestId: 'RequestId',
|
|
10269
|
+
success: 'Success',
|
|
10270
|
+
};
|
|
10271
|
+
}
|
|
10272
|
+
|
|
10273
|
+
static types(): { [key: string]: any } {
|
|
10274
|
+
return {
|
|
10275
|
+
code: 'string',
|
|
10276
|
+
message: 'string',
|
|
10277
|
+
orderId: 'number',
|
|
10278
|
+
requestId: 'string',
|
|
10279
|
+
success: 'string',
|
|
10280
|
+
};
|
|
10281
|
+
}
|
|
10282
|
+
|
|
10283
|
+
constructor(map?: { [key: string]: any }) {
|
|
10284
|
+
super(map);
|
|
10285
|
+
}
|
|
10286
|
+
}
|
|
10287
|
+
|
|
10288
|
+
export class OpenAcceleratorServiceResponse extends $tea.Model {
|
|
10289
|
+
headers: { [key: string]: string };
|
|
10290
|
+
statusCode: number;
|
|
10291
|
+
body: OpenAcceleratorServiceResponseBody;
|
|
10292
|
+
static names(): { [key: string]: string } {
|
|
10293
|
+
return {
|
|
10294
|
+
headers: 'headers',
|
|
10295
|
+
statusCode: 'statusCode',
|
|
10296
|
+
body: 'body',
|
|
10297
|
+
};
|
|
10298
|
+
}
|
|
10299
|
+
|
|
10300
|
+
static types(): { [key: string]: any } {
|
|
10301
|
+
return {
|
|
10302
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10303
|
+
statusCode: 'number',
|
|
10304
|
+
body: OpenAcceleratorServiceResponseBody,
|
|
10305
|
+
};
|
|
10306
|
+
}
|
|
10307
|
+
|
|
10308
|
+
constructor(map?: { [key: string]: any }) {
|
|
10309
|
+
super(map);
|
|
10310
|
+
}
|
|
10311
|
+
}
|
|
10312
|
+
|
|
10313
|
+
export class QueryCrossBorderApprovalStatusRequest extends $tea.Model {
|
|
10314
|
+
regionId?: string;
|
|
10315
|
+
static names(): { [key: string]: string } {
|
|
10316
|
+
return {
|
|
10317
|
+
regionId: 'RegionId',
|
|
10318
|
+
};
|
|
10319
|
+
}
|
|
10320
|
+
|
|
10321
|
+
static types(): { [key: string]: any } {
|
|
10322
|
+
return {
|
|
10323
|
+
regionId: 'string',
|
|
10324
|
+
};
|
|
10325
|
+
}
|
|
10326
|
+
|
|
10327
|
+
constructor(map?: { [key: string]: any }) {
|
|
10328
|
+
super(map);
|
|
10329
|
+
}
|
|
10330
|
+
}
|
|
10331
|
+
|
|
10332
|
+
export class QueryCrossBorderApprovalStatusResponseBody extends $tea.Model {
|
|
10333
|
+
approvalStatus?: string;
|
|
10334
|
+
requestId?: string;
|
|
10335
|
+
static names(): { [key: string]: string } {
|
|
10336
|
+
return {
|
|
10337
|
+
approvalStatus: 'ApprovalStatus',
|
|
10338
|
+
requestId: 'RequestId',
|
|
10339
|
+
};
|
|
10340
|
+
}
|
|
10341
|
+
|
|
10342
|
+
static types(): { [key: string]: any } {
|
|
10343
|
+
return {
|
|
10344
|
+
approvalStatus: 'string',
|
|
10345
|
+
requestId: 'string',
|
|
10346
|
+
};
|
|
10347
|
+
}
|
|
10348
|
+
|
|
10349
|
+
constructor(map?: { [key: string]: any }) {
|
|
10350
|
+
super(map);
|
|
10351
|
+
}
|
|
10352
|
+
}
|
|
10353
|
+
|
|
10354
|
+
export class QueryCrossBorderApprovalStatusResponse extends $tea.Model {
|
|
10355
|
+
headers: { [key: string]: string };
|
|
10356
|
+
statusCode: number;
|
|
10357
|
+
body: QueryCrossBorderApprovalStatusResponseBody;
|
|
10358
|
+
static names(): { [key: string]: string } {
|
|
10359
|
+
return {
|
|
10360
|
+
headers: 'headers',
|
|
10361
|
+
statusCode: 'statusCode',
|
|
10362
|
+
body: 'body',
|
|
10363
|
+
};
|
|
10364
|
+
}
|
|
10365
|
+
|
|
10366
|
+
static types(): { [key: string]: any } {
|
|
10367
|
+
return {
|
|
10368
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10369
|
+
statusCode: 'number',
|
|
10370
|
+
body: QueryCrossBorderApprovalStatusResponseBody,
|
|
10371
|
+
};
|
|
10372
|
+
}
|
|
10373
|
+
|
|
10374
|
+
constructor(map?: { [key: string]: any }) {
|
|
10375
|
+
super(map);
|
|
10376
|
+
}
|
|
10377
|
+
}
|
|
10378
|
+
|
|
10073
10379
|
export class RemoveEntriesFromAclRequest extends $tea.Model {
|
|
10074
10380
|
aclEntries?: RemoveEntriesFromAclRequestAclEntries[];
|
|
10075
10381
|
aclId?: string;
|
|
@@ -12971,12 +13277,14 @@ export class CreateCustomRoutingEndpointsRequestEndpointConfigurations extends $
|
|
|
12971
13277
|
|
|
12972
13278
|
export class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
|
|
12973
13279
|
enableClientIPPreservation?: boolean;
|
|
13280
|
+
enableProxyProtocol?: boolean;
|
|
12974
13281
|
endpoint?: string;
|
|
12975
13282
|
type?: string;
|
|
12976
13283
|
weight?: number;
|
|
12977
13284
|
static names(): { [key: string]: string } {
|
|
12978
13285
|
return {
|
|
12979
13286
|
enableClientIPPreservation: 'EnableClientIPPreservation',
|
|
13287
|
+
enableProxyProtocol: 'EnableProxyProtocol',
|
|
12980
13288
|
endpoint: 'Endpoint',
|
|
12981
13289
|
type: 'Type',
|
|
12982
13290
|
weight: 'Weight',
|
|
@@ -12986,6 +13294,7 @@ export class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
12986
13294
|
static types(): { [key: string]: any } {
|
|
12987
13295
|
return {
|
|
12988
13296
|
enableClientIPPreservation: 'boolean',
|
|
13297
|
+
enableProxyProtocol: 'boolean',
|
|
12989
13298
|
endpoint: 'string',
|
|
12990
13299
|
type: 'string',
|
|
12991
13300
|
weight: 'number',
|
|
@@ -14803,6 +15112,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
14803
15112
|
state?: string;
|
|
14804
15113
|
tags?: ListAcceleratorsResponseBodyAcceleratorsTags[];
|
|
14805
15114
|
type?: string;
|
|
15115
|
+
upgradableStatus?: string;
|
|
14806
15116
|
static names(): { [key: string]: string } {
|
|
14807
15117
|
return {
|
|
14808
15118
|
acceleratorId: 'AcceleratorId',
|
|
@@ -14828,6 +15138,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
14828
15138
|
state: 'State',
|
|
14829
15139
|
tags: 'Tags',
|
|
14830
15140
|
type: 'Type',
|
|
15141
|
+
upgradableStatus: 'UpgradableStatus',
|
|
14831
15142
|
};
|
|
14832
15143
|
}
|
|
14833
15144
|
|
|
@@ -14856,6 +15167,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
14856
15167
|
state: 'string',
|
|
14857
15168
|
tags: { 'type': 'array', 'itemType': ListAcceleratorsResponseBodyAcceleratorsTags },
|
|
14858
15169
|
type: 'string',
|
|
15170
|
+
upgradableStatus: 'string',
|
|
14859
15171
|
};
|
|
14860
15172
|
}
|
|
14861
15173
|
|
|
@@ -15038,19 +15350,28 @@ export class ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDet
|
|
|
15038
15350
|
}
|
|
15039
15351
|
|
|
15040
15352
|
export class ListAvailableAccelerateAreasResponseBodyAreasRegionList extends $tea.Model {
|
|
15353
|
+
chinaMainland?: boolean;
|
|
15354
|
+
ispTypeList?: string[];
|
|
15041
15355
|
localName?: string;
|
|
15042
15356
|
regionId?: string;
|
|
15357
|
+
supportIpv6?: boolean;
|
|
15043
15358
|
static names(): { [key: string]: string } {
|
|
15044
15359
|
return {
|
|
15360
|
+
chinaMainland: 'ChinaMainland',
|
|
15361
|
+
ispTypeList: 'IspTypeList',
|
|
15045
15362
|
localName: 'LocalName',
|
|
15046
15363
|
regionId: 'RegionId',
|
|
15364
|
+
supportIpv6: 'SupportIpv6',
|
|
15047
15365
|
};
|
|
15048
15366
|
}
|
|
15049
15367
|
|
|
15050
15368
|
static types(): { [key: string]: any } {
|
|
15051
15369
|
return {
|
|
15370
|
+
chinaMainland: 'boolean',
|
|
15371
|
+
ispTypeList: { 'type': 'array', 'itemType': 'string' },
|
|
15052
15372
|
localName: 'string',
|
|
15053
15373
|
regionId: 'string',
|
|
15374
|
+
supportIpv6: 'boolean',
|
|
15054
15375
|
};
|
|
15055
15376
|
}
|
|
15056
15377
|
|
|
@@ -15085,11 +15406,13 @@ export class ListAvailableAccelerateAreasResponseBodyAreas extends $tea.Model {
|
|
|
15085
15406
|
}
|
|
15086
15407
|
|
|
15087
15408
|
export class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
15409
|
+
chinaMainland?: boolean;
|
|
15088
15410
|
localName?: string;
|
|
15089
15411
|
pop?: boolean;
|
|
15090
15412
|
regionId?: string;
|
|
15091
15413
|
static names(): { [key: string]: string } {
|
|
15092
15414
|
return {
|
|
15415
|
+
chinaMainland: 'ChinaMainland',
|
|
15093
15416
|
localName: 'LocalName',
|
|
15094
15417
|
pop: 'Pop',
|
|
15095
15418
|
regionId: 'RegionId',
|
|
@@ -15098,6 +15421,7 @@ export class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
|
15098
15421
|
|
|
15099
15422
|
static types(): { [key: string]: any } {
|
|
15100
15423
|
return {
|
|
15424
|
+
chinaMainland: 'boolean',
|
|
15101
15425
|
localName: 'string',
|
|
15102
15426
|
pop: 'boolean',
|
|
15103
15427
|
regionId: 'string',
|
|
@@ -16892,12 +17216,14 @@ export class UpdateCustomRoutingEndpointsRequestEndpointConfigurations extends $
|
|
|
16892
17216
|
|
|
16893
17217
|
export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
|
|
16894
17218
|
enableClientIPPreservation?: boolean;
|
|
17219
|
+
enableProxyProtocol?: boolean;
|
|
16895
17220
|
endpoint?: string;
|
|
16896
17221
|
type?: string;
|
|
16897
17222
|
weight?: number;
|
|
16898
17223
|
static names(): { [key: string]: string } {
|
|
16899
17224
|
return {
|
|
16900
17225
|
enableClientIPPreservation: 'EnableClientIPPreservation',
|
|
17226
|
+
enableProxyProtocol: 'EnableProxyProtocol',
|
|
16901
17227
|
endpoint: 'Endpoint',
|
|
16902
17228
|
type: 'Type',
|
|
16903
17229
|
weight: 'Weight',
|
|
@@ -16907,6 +17233,7 @@ export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
16907
17233
|
static types(): { [key: string]: any } {
|
|
16908
17234
|
return {
|
|
16909
17235
|
enableClientIPPreservation: 'boolean',
|
|
17236
|
+
enableProxyProtocol: 'boolean',
|
|
16910
17237
|
endpoint: 'string',
|
|
16911
17238
|
type: 'string',
|
|
16912
17239
|
weight: 'number',
|
|
@@ -17572,10 +17899,6 @@ export default class Client extends OpenApi {
|
|
|
17572
17899
|
|
|
17573
17900
|
/**
|
|
17574
17901
|
* When you call this operation, take note of the following items:
|
|
17575
|
-
* * When you call this operation, the system checks whether the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos. In this case, the following rules apply to the GA instance:
|
|
17576
|
-
* * If the GA instance does not assume the service-linked role AliyunServiceRoleForGaAntiDdos, the system automatically creates the service-linked role and attaches the policy AliyunServiceRolePolicyForGaAntiDdos to the service-linked role. This allows GA to access the Anti-DDoS Pro/Premium instance.
|
|
17577
|
-
* * If the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos, the system does not create the service-linked role again.
|
|
17578
|
-
* For more information, see [AliyunServiceRoleForGaAntiDdos](~~186805~~).
|
|
17579
17902
|
* * **AttachDdosToAccelerator** is an asynchronous operation. After you call the operation, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) or [ListAccelerators](~~153236~~) operation to query the status of the GA instance.
|
|
17580
17903
|
* * If the GA instance is in the **configuring** state, the Anti-DDoS Pro/Premium instance is being associated with the GA instance. In this case, you can perform only query operations.
|
|
17581
17904
|
* * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
|
|
@@ -17623,10 +17946,6 @@ export default class Client extends OpenApi {
|
|
|
17623
17946
|
|
|
17624
17947
|
/**
|
|
17625
17948
|
* When you call this operation, take note of the following items:
|
|
17626
|
-
* * When you call this operation, the system checks whether the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos. In this case, the following rules apply to the GA instance:
|
|
17627
|
-
* * If the GA instance does not assume the service-linked role AliyunServiceRoleForGaAntiDdos, the system automatically creates the service-linked role and attaches the policy AliyunServiceRolePolicyForGaAntiDdos to the service-linked role. This allows GA to access the Anti-DDoS Pro/Premium instance.
|
|
17628
|
-
* * If the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos, the system does not create the service-linked role again.
|
|
17629
|
-
* For more information, see [AliyunServiceRoleForGaAntiDdos](~~186805~~).
|
|
17630
17949
|
* * **AttachDdosToAccelerator** is an asynchronous operation. After you call the operation, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) or [ListAccelerators](~~153236~~) operation to query the status of the GA instance.
|
|
17631
17950
|
* * If the GA instance is in the **configuring** state, the Anti-DDoS Pro/Premium instance is being associated with the GA instance. In this case, you can perform only query operations.
|
|
17632
17951
|
* * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
|
|
@@ -17773,7 +18092,7 @@ export default class Client extends OpenApi {
|
|
|
17773
18092
|
}
|
|
17774
18093
|
|
|
17775
18094
|
/**
|
|
17776
|
-
* * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the
|
|
18095
|
+
* * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan that you attempt to disassociate.
|
|
17777
18096
|
* * If the bandwidth plan is in the **unbinding** state, it indicates that the bandwidth plan is being disassociated. In this case, you can perform only query operations.
|
|
17778
18097
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
|
|
17779
18098
|
* * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
|
|
@@ -17815,7 +18134,7 @@ export default class Client extends OpenApi {
|
|
|
17815
18134
|
}
|
|
17816
18135
|
|
|
17817
18136
|
/**
|
|
17818
|
-
* * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the
|
|
18137
|
+
* * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan that you attempt to disassociate.
|
|
17819
18138
|
* * If the bandwidth plan is in the **unbinding** state, it indicates that the bandwidth plan is being disassociated. In this case, you can perform only query operations.
|
|
17820
18139
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
|
|
17821
18140
|
* * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
|
|
@@ -17998,10 +18317,18 @@ export default class Client extends OpenApi {
|
|
|
17998
18317
|
query["ClientToken"] = request.clientToken;
|
|
17999
18318
|
}
|
|
18000
18319
|
|
|
18320
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
18321
|
+
query["DryRun"] = request.dryRun;
|
|
18322
|
+
}
|
|
18323
|
+
|
|
18001
18324
|
if (!Util.isUnset(request.duration)) {
|
|
18002
18325
|
query["Duration"] = request.duration;
|
|
18003
18326
|
}
|
|
18004
18327
|
|
|
18328
|
+
if (!Util.isUnset(request.instanceChargeType)) {
|
|
18329
|
+
query["InstanceChargeType"] = request.instanceChargeType;
|
|
18330
|
+
}
|
|
18331
|
+
|
|
18005
18332
|
if (!Util.isUnset(request.ipSetConfig)) {
|
|
18006
18333
|
query["IpSetConfig"] = request.ipSetConfig;
|
|
18007
18334
|
}
|
|
@@ -18231,13 +18558,12 @@ export default class Client extends OpenApi {
|
|
|
18231
18558
|
}
|
|
18232
18559
|
|
|
18233
18560
|
/**
|
|
18234
|
-
* ##
|
|
18235
18561
|
* To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
|
|
18236
18562
|
* * **Basic**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service is deployed on Alibaba Cloud.
|
|
18237
18563
|
* * **Enhanced**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud.
|
|
18238
|
-
* * **Premium**: Both the default acceleration region and the default service region are
|
|
18564
|
+
* * **Premium**: Both the default acceleration region and the default service region are outside the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud. If you want to accelerate data transfer for clients in the Chinese mainland, you must select China (Hong Kong) as the acceleration region.
|
|
18239
18565
|
* When you call this operation, take note of the following items:
|
|
18240
|
-
* *
|
|
18566
|
+
* * **CreateBandwidthPackage** is an asynchronous operation. After you send a request, the system returns the ID of a bandwidth plan, but the bandwidth plan is still being created in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan.
|
|
18241
18567
|
* * If the bandwidth plan is in the **init** state, it indicates that the bandwidth plan is being created. In this case, you can perform only query operations.
|
|
18242
18568
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
|
|
18243
18569
|
* * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
@@ -18343,13 +18669,12 @@ export default class Client extends OpenApi {
|
|
|
18343
18669
|
}
|
|
18344
18670
|
|
|
18345
18671
|
/**
|
|
18346
|
-
* ##
|
|
18347
18672
|
* To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
|
|
18348
18673
|
* * **Basic**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service is deployed on Alibaba Cloud.
|
|
18349
18674
|
* * **Enhanced**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud.
|
|
18350
|
-
* * **Premium**: Both the default acceleration region and the default service region are
|
|
18675
|
+
* * **Premium**: Both the default acceleration region and the default service region are outside the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud. If you want to accelerate data transfer for clients in the Chinese mainland, you must select China (Hong Kong) as the acceleration region.
|
|
18351
18676
|
* When you call this operation, take note of the following items:
|
|
18352
|
-
* *
|
|
18677
|
+
* * **CreateBandwidthPackage** is an asynchronous operation. After you send a request, the system returns the ID of a bandwidth plan, but the bandwidth plan is still being created in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan.
|
|
18353
18678
|
* * If the bandwidth plan is in the **init** state, it indicates that the bandwidth plan is being created. In this case, you can perform only query operations.
|
|
18354
18679
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
|
|
18355
18680
|
* * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
@@ -18547,10 +18872,9 @@ export default class Client extends OpenApi {
|
|
|
18547
18872
|
}
|
|
18548
18873
|
|
|
18549
18874
|
/**
|
|
18550
|
-
*
|
|
18551
|
-
* Basic GA instances use high-quality global network bandwidth and the transmission network of Alibaba Cloud to provide users with point-to-point acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP protocols). For more information, see [Overview of GA instances](~~153127~~).
|
|
18875
|
+
* Basic GA instances leverage the immense bandwidth of Alibaba Cloud\\"s high-quality global network to provide end-to-end acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP). For more information, see [Overview of GA instances](~~153127~~).
|
|
18552
18876
|
* **CreateBasicAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicAccelerator](~~353188~~) or [ListBasicAccelerators](~~353189~~) operation to query the status of a basic GA instance:
|
|
18553
|
-
* * If the basic GA instance is in the **init** state, it indicates the basic GA instance is being created. In this case, you can perform
|
|
18877
|
+
* * If the basic GA instance is in the **init** state, it indicates that the basic GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
|
|
18554
18878
|
* * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
|
|
18555
18879
|
*
|
|
18556
18880
|
* @param request CreateBasicAcceleratorRequest
|
|
@@ -18634,10 +18958,9 @@ export default class Client extends OpenApi {
|
|
|
18634
18958
|
}
|
|
18635
18959
|
|
|
18636
18960
|
/**
|
|
18637
|
-
*
|
|
18638
|
-
* Basic GA instances use high-quality global network bandwidth and the transmission network of Alibaba Cloud to provide users with point-to-point acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP protocols). For more information, see [Overview of GA instances](~~153127~~).
|
|
18961
|
+
* Basic GA instances leverage the immense bandwidth of Alibaba Cloud\\"s high-quality global network to provide end-to-end acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP). For more information, see [Overview of GA instances](~~153127~~).
|
|
18639
18962
|
* **CreateBasicAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicAccelerator](~~353188~~) or [ListBasicAccelerators](~~353189~~) operation to query the status of a basic GA instance:
|
|
18640
|
-
* * If the basic GA instance is in the **init** state, it indicates the basic GA instance is being created. In this case, you can perform
|
|
18963
|
+
* * If the basic GA instance is in the **init** state, it indicates that the basic GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
|
|
18641
18964
|
* * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
|
|
18642
18965
|
*
|
|
18643
18966
|
* @param request CreateBasicAcceleratorRequest
|
|
@@ -18733,11 +19056,10 @@ export default class Client extends OpenApi {
|
|
|
18733
19056
|
}
|
|
18734
19057
|
|
|
18735
19058
|
/**
|
|
18736
|
-
*
|
|
18737
|
-
* * The **CreateBasicEndpointGroup** operation is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of an endpoint group.
|
|
19059
|
+
* * **CreateBasicEndpointGroup** is an asynchronous operation. After a request is sent, the system returns an endpoint group ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of the task.
|
|
18738
19060
|
* * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
|
|
18739
19061
|
* * If the endpoint group is in the **active** state, the endpoint group is created.
|
|
18740
|
-
* *
|
|
19062
|
+
* * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
|
|
18741
19063
|
*
|
|
18742
19064
|
* @param request CreateBasicEndpointGroupRequest
|
|
18743
19065
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18800,11 +19122,10 @@ export default class Client extends OpenApi {
|
|
|
18800
19122
|
}
|
|
18801
19123
|
|
|
18802
19124
|
/**
|
|
18803
|
-
*
|
|
18804
|
-
* * The **CreateBasicEndpointGroup** operation is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of an endpoint group.
|
|
19125
|
+
* * **CreateBasicEndpointGroup** is an asynchronous operation. After a request is sent, the system returns an endpoint group ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of the task.
|
|
18805
19126
|
* * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
|
|
18806
19127
|
* * If the endpoint group is in the **active** state, the endpoint group is created.
|
|
18807
|
-
* *
|
|
19128
|
+
* * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
|
|
18808
19129
|
*
|
|
18809
19130
|
* @param request CreateBasicEndpointGroupRequest
|
|
18810
19131
|
* @return CreateBasicEndpointGroupResponse
|
|
@@ -18815,9 +19136,8 @@ export default class Client extends OpenApi {
|
|
|
18815
19136
|
}
|
|
18816
19137
|
|
|
18817
19138
|
/**
|
|
18818
|
-
*
|
|
18819
|
-
* *
|
|
18820
|
-
* * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
19139
|
+
* * **CreateBasicEndpoints** is an asynchronous operation. After you call this operation, the system returns a request ID and runs the task in the background. You can call the [ListBasicEndpoints](~~466831~~) operation to query the status of endpoints. - If one or more endpoints are in the **init** state, it indicates that the endpoints are being created. In this case, you can continue to perform query operations on the endpoints. If all endpoints are in the **active** state, it indicates that the endpoints are created.
|
|
19140
|
+
* * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
|
|
18821
19141
|
*
|
|
18822
19142
|
* @param request CreateBasicEndpointsRequest
|
|
18823
19143
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18864,9 +19184,8 @@ export default class Client extends OpenApi {
|
|
|
18864
19184
|
}
|
|
18865
19185
|
|
|
18866
19186
|
/**
|
|
18867
|
-
*
|
|
18868
|
-
* *
|
|
18869
|
-
* * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
19187
|
+
* * **CreateBasicEndpoints** is an asynchronous operation. After you call this operation, the system returns a request ID and runs the task in the background. You can call the [ListBasicEndpoints](~~466831~~) operation to query the status of endpoints. - If one or more endpoints are in the **init** state, it indicates that the endpoints are being created. In this case, you can continue to perform query operations on the endpoints. If all endpoints are in the **active** state, it indicates that the endpoints are created.
|
|
19188
|
+
* * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
|
|
18870
19189
|
*
|
|
18871
19190
|
* @param request CreateBasicEndpointsRequest
|
|
18872
19191
|
* @return CreateBasicEndpointsResponse
|
|
@@ -18877,12 +19196,12 @@ export default class Client extends OpenApi {
|
|
|
18877
19196
|
}
|
|
18878
19197
|
|
|
18879
19198
|
/**
|
|
18880
|
-
*
|
|
18881
|
-
* * You can
|
|
18882
|
-
* * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns
|
|
19199
|
+
* Take note of the following limits:
|
|
19200
|
+
* * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
|
|
19201
|
+
* * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns an acceleration region ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of the task.
|
|
18883
19202
|
* * If the acceleration region is in the **init** state, the acceleration region is being created. In this case, you can perform only query operations.
|
|
18884
19203
|
* * If the acceleration region is in the **active** state, the acceleration region is created.
|
|
18885
|
-
* *
|
|
19204
|
+
* * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
|
|
18886
19205
|
*
|
|
18887
19206
|
* @param request CreateBasicIpSetRequest
|
|
18888
19207
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18933,12 +19252,12 @@ export default class Client extends OpenApi {
|
|
|
18933
19252
|
}
|
|
18934
19253
|
|
|
18935
19254
|
/**
|
|
18936
|
-
*
|
|
18937
|
-
* * You can
|
|
18938
|
-
* * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns
|
|
19255
|
+
* Take note of the following limits:
|
|
19256
|
+
* * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
|
|
19257
|
+
* * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns an acceleration region ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of the task.
|
|
18939
19258
|
* * If the acceleration region is in the **init** state, the acceleration region is being created. In this case, you can perform only query operations.
|
|
18940
19259
|
* * If the acceleration region is in the **active** state, the acceleration region is created.
|
|
18941
|
-
* *
|
|
19260
|
+
* * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
|
|
18942
19261
|
*
|
|
18943
19262
|
* @param request CreateBasicIpSetRequest
|
|
18944
19263
|
* @return CreateBasicIpSetResponse
|
|
@@ -18949,19 +19268,7 @@ export default class Client extends OpenApi {
|
|
|
18949
19268
|
}
|
|
18950
19269
|
|
|
18951
19270
|
/**
|
|
18952
|
-
*
|
|
18953
|
-
* You can call this operation to create mapping configurations for an endpoint group of a custom routing listener. When you call this operation, take note of the following items:
|
|
18954
|
-
* * **CreateCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether mapping configurations are created for the endpoint group.
|
|
18955
|
-
* * If the endpoint group is in the **updating** state, it indicates that mapping configurations are being created for the endpoint group. In this case, you can perform only query operations.
|
|
18956
|
-
* * If the endpoint group is in the **active** state, it indicates that mapping configurations are created for the endpoint group.
|
|
18957
|
-
* * The **CreateCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
18958
|
-
* ### Prerequisites
|
|
18959
|
-
* Make sure that the following operations are performed before you call this operation:
|
|
18960
|
-
* * A standard GA instance is created. For more information, see [CreateAccelerator](~~206786~~).
|
|
18961
|
-
* * A bandwidth plan is associated with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
|
|
18962
|
-
* * An application is deployed to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
|
|
18963
|
-
* * The permissions to use custom routing listeners are acquired and a custom routing listener is created for the GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
|
|
18964
|
-
* * An endpoint group is created for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
|
|
19271
|
+
* readAndWrite
|
|
18965
19272
|
*
|
|
18966
19273
|
* @param request CreateCustomRoutingEndpointGroupDestinationsRequest
|
|
18967
19274
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19008,19 +19315,7 @@ export default class Client extends OpenApi {
|
|
|
19008
19315
|
}
|
|
19009
19316
|
|
|
19010
19317
|
/**
|
|
19011
|
-
*
|
|
19012
|
-
* You can call this operation to create mapping configurations for an endpoint group of a custom routing listener. When you call this operation, take note of the following items:
|
|
19013
|
-
* * **CreateCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether mapping configurations are created for the endpoint group.
|
|
19014
|
-
* * If the endpoint group is in the **updating** state, it indicates that mapping configurations are being created for the endpoint group. In this case, you can perform only query operations.
|
|
19015
|
-
* * If the endpoint group is in the **active** state, it indicates that mapping configurations are created for the endpoint group.
|
|
19016
|
-
* * The **CreateCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
19017
|
-
* ### Prerequisites
|
|
19018
|
-
* Make sure that the following operations are performed before you call this operation:
|
|
19019
|
-
* * A standard GA instance is created. For more information, see [CreateAccelerator](~~206786~~).
|
|
19020
|
-
* * A bandwidth plan is associated with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
|
|
19021
|
-
* * An application is deployed to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
|
|
19022
|
-
* * The permissions to use custom routing listeners are acquired and a custom routing listener is created for the GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
|
|
19023
|
-
* * An endpoint group is created for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
|
|
19318
|
+
* readAndWrite
|
|
19024
19319
|
*
|
|
19025
19320
|
* @param request CreateCustomRoutingEndpointGroupDestinationsRequest
|
|
19026
19321
|
* @return CreateCustomRoutingEndpointGroupDestinationsResponse
|
|
@@ -19201,19 +19496,7 @@ export default class Client extends OpenApi {
|
|
|
19201
19496
|
}
|
|
19202
19497
|
|
|
19203
19498
|
/**
|
|
19204
|
-
*
|
|
19205
|
-
* This operation is used to create endpoints for custom routing listeners. When you call this operation, take note of the following items:
|
|
19206
|
-
* * **CreateCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether endpoints are created in the endpoint group.
|
|
19207
|
-
* * If the endpoint group is in the **updating** state, it indicates that endpoints are being created. In this case, you can perform only query operations.
|
|
19208
|
-
* * If the endpoint group is in the **active** state, it indicates that endpoints are created.
|
|
19209
|
-
* * The **CreateCustomRoutingEndpoints** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
19210
|
-
* ### Prerequisites
|
|
19211
|
-
* The following operations are complete before you call this operation:
|
|
19212
|
-
* * Create a standard GA instance. For more information, see [CreateAccelerator](~~206786~~).
|
|
19213
|
-
* * Associate a bandwidth plan with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
|
|
19214
|
-
* * Deploy an application that serves as the endpoint of the GA instance. The application is used to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
|
|
19215
|
-
* * Apply for permissions to use custom routing listeners and create a custom routing listener for the standard GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
|
|
19216
|
-
* * Create an endpoint group for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
|
|
19499
|
+
* readAndWrite
|
|
19217
19500
|
*
|
|
19218
19501
|
* @param request CreateCustomRoutingEndpointsRequest
|
|
19219
19502
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19256,19 +19539,7 @@ export default class Client extends OpenApi {
|
|
|
19256
19539
|
}
|
|
19257
19540
|
|
|
19258
19541
|
/**
|
|
19259
|
-
*
|
|
19260
|
-
* This operation is used to create endpoints for custom routing listeners. When you call this operation, take note of the following items:
|
|
19261
|
-
* * **CreateCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether endpoints are created in the endpoint group.
|
|
19262
|
-
* * If the endpoint group is in the **updating** state, it indicates that endpoints are being created. In this case, you can perform only query operations.
|
|
19263
|
-
* * If the endpoint group is in the **active** state, it indicates that endpoints are created.
|
|
19264
|
-
* * The **CreateCustomRoutingEndpoints** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
19265
|
-
* ### Prerequisites
|
|
19266
|
-
* The following operations are complete before you call this operation:
|
|
19267
|
-
* * Create a standard GA instance. For more information, see [CreateAccelerator](~~206786~~).
|
|
19268
|
-
* * Associate a bandwidth plan with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
|
|
19269
|
-
* * Deploy an application that serves as the endpoint of the GA instance. The application is used to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
|
|
19270
|
-
* * Apply for permissions to use custom routing listeners and create a custom routing listener for the standard GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
|
|
19271
|
-
* * Create an endpoint group for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
|
|
19542
|
+
* readAndWrite
|
|
19272
19543
|
*
|
|
19273
19544
|
* @param request CreateCustomRoutingEndpointsRequest
|
|
19274
19545
|
* @return CreateCustomRoutingEndpointsResponse
|
|
@@ -19593,11 +19864,10 @@ export default class Client extends OpenApi {
|
|
|
19593
19864
|
}
|
|
19594
19865
|
|
|
19595
19866
|
/**
|
|
19596
|
-
*
|
|
19597
|
-
* * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of acceleration regions.
|
|
19867
|
+
* * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
|
|
19598
19868
|
* * If acceleration regions are in the **init** state, it indicates that the acceleration regions are being created. In this case, you can perform only query operations.
|
|
19599
19869
|
* * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
|
|
19600
|
-
* *
|
|
19870
|
+
* * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
|
|
19601
19871
|
*
|
|
19602
19872
|
* @param request CreateIpSetsRequest
|
|
19603
19873
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19640,11 +19910,10 @@ export default class Client extends OpenApi {
|
|
|
19640
19910
|
}
|
|
19641
19911
|
|
|
19642
19912
|
/**
|
|
19643
|
-
*
|
|
19644
|
-
* * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of acceleration regions.
|
|
19913
|
+
* * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
|
|
19645
19914
|
* * If acceleration regions are in the **init** state, it indicates that the acceleration regions are being created. In this case, you can perform only query operations.
|
|
19646
19915
|
* * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
|
|
19647
|
-
* *
|
|
19916
|
+
* * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
|
|
19648
19917
|
*
|
|
19649
19918
|
* @param request CreateIpSetsRequest
|
|
19650
19919
|
* @return CreateIpSetsResponse
|
|
@@ -19828,9 +20097,9 @@ export default class Client extends OpenApi {
|
|
|
19828
20097
|
|
|
19829
20098
|
/**
|
|
19830
20099
|
* * Subscription GA instances cannot be deleted.
|
|
19831
|
-
* * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
|
|
19832
|
-
* * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can
|
|
19833
|
-
* * If the GA instance is in the **deleting** state,
|
|
20100
|
+
* * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans first. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
|
|
20101
|
+
* * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [DescribeAccelerator](~~153235~~) operation to query the state of a GA instance.
|
|
20102
|
+
* * If the GA instance is in the **deleting** state, the GA instance is being deleted. In this case, you can perform only query operations.
|
|
19834
20103
|
* * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
|
|
19835
20104
|
*
|
|
19836
20105
|
* @param request DeleteAcceleratorRequest
|
|
@@ -19867,9 +20136,9 @@ export default class Client extends OpenApi {
|
|
|
19867
20136
|
|
|
19868
20137
|
/**
|
|
19869
20138
|
* * Subscription GA instances cannot be deleted.
|
|
19870
|
-
* * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
|
|
19871
|
-
* * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can
|
|
19872
|
-
* * If the GA instance is in the **deleting** state,
|
|
20139
|
+
* * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans first. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
|
|
20140
|
+
* * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [DescribeAccelerator](~~153235~~) operation to query the state of a GA instance.
|
|
20141
|
+
* * If the GA instance is in the **deleting** state, the GA instance is being deleted. In this case, you can perform only query operations.
|
|
19873
20142
|
* * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
|
|
19874
20143
|
*
|
|
19875
20144
|
* @param request DeleteAcceleratorRequest
|
|
@@ -19999,7 +20268,7 @@ export default class Client extends OpenApi {
|
|
|
19999
20268
|
/**
|
|
20000
20269
|
* * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
|
|
20001
20270
|
* * Bandwidth plans that are associated with Global Accelerator (GA) instances cannot be deleted. Before you can delete a bandwidth plan that is associated with a GA instance, you must disassociate the bandwidth plan from the GA instance. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
|
|
20002
|
-
* * **DeleteBandwidthPackage** is an asynchronous operation. After
|
|
20271
|
+
* * **DeleteBandwidthPackage** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
|
|
20003
20272
|
* * If the bandwidth plan is in the **deleting** state, it indicates that the bandwidth plan is being deleted. In this case, you can perform only query operations.
|
|
20004
20273
|
* * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
|
|
20005
20274
|
* * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
|
|
@@ -20043,7 +20312,7 @@ export default class Client extends OpenApi {
|
|
|
20043
20312
|
/**
|
|
20044
20313
|
* * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
|
|
20045
20314
|
* * Bandwidth plans that are associated with Global Accelerator (GA) instances cannot be deleted. Before you can delete a bandwidth plan that is associated with a GA instance, you must disassociate the bandwidth plan from the GA instance. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
|
|
20046
|
-
* * **DeleteBandwidthPackage** is an asynchronous operation. After
|
|
20315
|
+
* * **DeleteBandwidthPackage** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
|
|
20047
20316
|
* * If the bandwidth plan is in the **deleting** state, it indicates that the bandwidth plan is being deleted. In this case, you can perform only query operations.
|
|
20048
20317
|
* * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
|
|
20049
20318
|
* * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
|
|
@@ -20339,10 +20608,10 @@ export default class Client extends OpenApi {
|
|
|
20339
20608
|
}
|
|
20340
20609
|
|
|
20341
20610
|
/**
|
|
20342
|
-
* *
|
|
20611
|
+
* * \\*\\*DeleteBasicIpSet\\*\\* is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of an acceleration region:
|
|
20343
20612
|
* * If the acceleration region is in the **deleting** state, it indicates that the acceleration region is being deleted. In this case, you can perform only query operations.
|
|
20344
20613
|
* * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
|
|
20345
|
-
* * The
|
|
20614
|
+
* * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
|
|
20346
20615
|
*
|
|
20347
20616
|
* @param request DeleteBasicIpSetRequest
|
|
20348
20617
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20381,10 +20650,10 @@ export default class Client extends OpenApi {
|
|
|
20381
20650
|
}
|
|
20382
20651
|
|
|
20383
20652
|
/**
|
|
20384
|
-
* *
|
|
20653
|
+
* * \\*\\*DeleteBasicIpSet\\*\\* is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of an acceleration region:
|
|
20385
20654
|
* * If the acceleration region is in the **deleting** state, it indicates that the acceleration region is being deleted. In this case, you can perform only query operations.
|
|
20386
20655
|
* * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
|
|
20387
|
-
* * The
|
|
20656
|
+
* * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
|
|
20388
20657
|
*
|
|
20389
20658
|
* @param request DeleteBasicIpSetRequest
|
|
20390
20659
|
* @return DeleteBasicIpSetResponse
|
|
@@ -20395,11 +20664,10 @@ export default class Client extends OpenApi {
|
|
|
20395
20664
|
}
|
|
20396
20665
|
|
|
20397
20666
|
/**
|
|
20398
|
-
*
|
|
20399
|
-
* * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of an endpoint group and verify whether mappings are deleted from the endpoint group.
|
|
20667
|
+
* * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
|
|
20400
20668
|
* * If the endpoint group is in the **updating** state, it indicates that mappings are being deleted from the endpoint group. In this case, you can perform only query operations.
|
|
20401
|
-
* * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response
|
|
20402
|
-
* *
|
|
20669
|
+
* * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response when you call the [DescribeCustomRoutingEndpointGroupDestinations](~~449378~~) operation, it indicates the mappings are deleted from the endpoint group.
|
|
20670
|
+
* * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
|
|
20403
20671
|
*
|
|
20404
20672
|
* @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
|
|
20405
20673
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20446,11 +20714,10 @@ export default class Client extends OpenApi {
|
|
|
20446
20714
|
}
|
|
20447
20715
|
|
|
20448
20716
|
/**
|
|
20449
|
-
*
|
|
20450
|
-
* * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of an endpoint group and verify whether mappings are deleted from the endpoint group.
|
|
20717
|
+
* * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
|
|
20451
20718
|
* * If the endpoint group is in the **updating** state, it indicates that mappings are being deleted from the endpoint group. In this case, you can perform only query operations.
|
|
20452
|
-
* * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response
|
|
20453
|
-
* *
|
|
20719
|
+
* * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response when you call the [DescribeCustomRoutingEndpointGroupDestinations](~~449378~~) operation, it indicates the mappings are deleted from the endpoint group.
|
|
20720
|
+
* * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
|
|
20454
20721
|
*
|
|
20455
20722
|
* @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
|
|
20456
20723
|
* @return DeleteCustomRoutingEndpointGroupDestinationsResponse
|
|
@@ -20585,11 +20852,10 @@ export default class Client extends OpenApi {
|
|
|
20585
20852
|
}
|
|
20586
20853
|
|
|
20587
20854
|
/**
|
|
20588
|
-
*
|
|
20589
|
-
*
|
|
20590
|
-
* * If an endpoint group is in the **
|
|
20591
|
-
*
|
|
20592
|
-
* * You cannot repeatedly call the **DeleteCustomRoutingEndpoints** operation for the same Global Accelerator (GA) instance within the specified period of time.
|
|
20855
|
+
* * **DeleteCustomRoutingEndpoints** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
|
|
20856
|
+
* * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
|
|
20857
|
+
* * If an endpoint group is in the **active** state and the endpoint cannot be found after you call the [DescribeCustomRoutingEndpoint](~~449386~~) operation, the endpoint is deleted.
|
|
20858
|
+
* * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
|
|
20593
20859
|
*
|
|
20594
20860
|
* @param request DeleteCustomRoutingEndpointsRequest
|
|
20595
20861
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20632,11 +20898,10 @@ export default class Client extends OpenApi {
|
|
|
20632
20898
|
}
|
|
20633
20899
|
|
|
20634
20900
|
/**
|
|
20635
|
-
*
|
|
20636
|
-
*
|
|
20637
|
-
* * If an endpoint group is in the **
|
|
20638
|
-
*
|
|
20639
|
-
* * You cannot repeatedly call the **DeleteCustomRoutingEndpoints** operation for the same Global Accelerator (GA) instance within the specified period of time.
|
|
20901
|
+
* * **DeleteCustomRoutingEndpoints** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
|
|
20902
|
+
* * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
|
|
20903
|
+
* * If an endpoint group is in the **active** state and the endpoint cannot be found after you call the [DescribeCustomRoutingEndpoint](~~449386~~) operation, the endpoint is deleted.
|
|
20904
|
+
* * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
|
|
20640
20905
|
*
|
|
20641
20906
|
* @param request DeleteCustomRoutingEndpointsRequest
|
|
20642
20907
|
* @return DeleteCustomRoutingEndpointsResponse
|
|
@@ -20753,9 +21018,9 @@ export default class Client extends OpenApi {
|
|
|
20753
21018
|
}
|
|
20754
21019
|
|
|
20755
21020
|
/**
|
|
20756
|
-
* * **DeleteEndpointGroups** is an asynchronous operation. After
|
|
20757
|
-
* * If
|
|
20758
|
-
* * If
|
|
21021
|
+
* * **DeleteEndpointGroups** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the status of the task.
|
|
21022
|
+
* * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
|
|
21023
|
+
* * If an endpoint group cannot be queried, the endpoint group is deleted.
|
|
20759
21024
|
* * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20760
21025
|
*
|
|
20761
21026
|
* @param request DeleteEndpointGroupsRequest
|
|
@@ -20799,9 +21064,9 @@ export default class Client extends OpenApi {
|
|
|
20799
21064
|
}
|
|
20800
21065
|
|
|
20801
21066
|
/**
|
|
20802
|
-
* * **DeleteEndpointGroups** is an asynchronous operation. After
|
|
20803
|
-
* * If
|
|
20804
|
-
* * If
|
|
21067
|
+
* * **DeleteEndpointGroups** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the status of the task.
|
|
21068
|
+
* * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
|
|
21069
|
+
* * If an endpoint group cannot be queried, the endpoint group is deleted.
|
|
20805
21070
|
* * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20806
21071
|
*
|
|
20807
21072
|
* @param request DeleteEndpointGroupsRequest
|
|
@@ -20813,9 +21078,9 @@ export default class Client extends OpenApi {
|
|
|
20813
21078
|
}
|
|
20814
21079
|
|
|
20815
21080
|
/**
|
|
20816
|
-
* * **DeleteForwardingRules** is an asynchronous operation. After
|
|
20817
|
-
* * If
|
|
20818
|
-
* * If
|
|
21081
|
+
* * **DeleteForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of the task.
|
|
21082
|
+
* * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
|
|
21083
|
+
* * If a forwarding rule cannot be queried, the forwarding rule is deleted.
|
|
20819
21084
|
* * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20820
21085
|
*
|
|
20821
21086
|
* @param request DeleteForwardingRulesRequest
|
|
@@ -20863,9 +21128,9 @@ export default class Client extends OpenApi {
|
|
|
20863
21128
|
}
|
|
20864
21129
|
|
|
20865
21130
|
/**
|
|
20866
|
-
* * **DeleteForwardingRules** is an asynchronous operation. After
|
|
20867
|
-
* * If
|
|
20868
|
-
* * If
|
|
21131
|
+
* * **DeleteForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of the task.
|
|
21132
|
+
* * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
|
|
21133
|
+
* * If a forwarding rule cannot be queried, the forwarding rule is deleted.
|
|
20869
21134
|
* * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20870
21135
|
*
|
|
20871
21136
|
* @param request DeleteForwardingRulesRequest
|
|
@@ -20989,8 +21254,8 @@ export default class Client extends OpenApi {
|
|
|
20989
21254
|
}
|
|
20990
21255
|
|
|
20991
21256
|
/**
|
|
20992
|
-
* * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
20993
|
-
* * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can perform
|
|
21257
|
+
* * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the state of the listener.
|
|
21258
|
+
* * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can continue to perform query operations on the listener.
|
|
20994
21259
|
* * If the listener cannot be queried, it indicates that the listener is deleted.
|
|
20995
21260
|
* * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20996
21261
|
*
|
|
@@ -21031,8 +21296,8 @@ export default class Client extends OpenApi {
|
|
|
21031
21296
|
}
|
|
21032
21297
|
|
|
21033
21298
|
/**
|
|
21034
|
-
* * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
21035
|
-
* * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can perform
|
|
21299
|
+
* * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the state of the listener.
|
|
21300
|
+
* * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can continue to perform query operations on the listener.
|
|
21036
21301
|
* * If the listener cannot be queried, it indicates that the listener is deleted.
|
|
21037
21302
|
* * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
|
|
21038
21303
|
*
|
|
@@ -21174,6 +21439,35 @@ export default class Client extends OpenApi {
|
|
|
21174
21439
|
return await this.describeAcceleratorAutoRenewAttributeWithOptions(request, runtime);
|
|
21175
21440
|
}
|
|
21176
21441
|
|
|
21442
|
+
async describeAcceleratorServiceStatusWithOptions(request: DescribeAcceleratorServiceStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAcceleratorServiceStatusResponse> {
|
|
21443
|
+
Util.validateModel(request);
|
|
21444
|
+
let query = { };
|
|
21445
|
+
if (!Util.isUnset(request.regionId)) {
|
|
21446
|
+
query["RegionId"] = request.regionId;
|
|
21447
|
+
}
|
|
21448
|
+
|
|
21449
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
21450
|
+
query: OpenApiUtil.query(query),
|
|
21451
|
+
});
|
|
21452
|
+
let params = new $OpenApi.Params({
|
|
21453
|
+
action: "DescribeAcceleratorServiceStatus",
|
|
21454
|
+
version: "2019-11-20",
|
|
21455
|
+
protocol: "HTTPS",
|
|
21456
|
+
pathname: "/",
|
|
21457
|
+
method: "POST",
|
|
21458
|
+
authType: "AK",
|
|
21459
|
+
style: "RPC",
|
|
21460
|
+
reqBodyType: "formData",
|
|
21461
|
+
bodyType: "json",
|
|
21462
|
+
});
|
|
21463
|
+
return $tea.cast<DescribeAcceleratorServiceStatusResponse>(await this.callApi(params, req, runtime), new DescribeAcceleratorServiceStatusResponse({}));
|
|
21464
|
+
}
|
|
21465
|
+
|
|
21466
|
+
async describeAcceleratorServiceStatus(request: DescribeAcceleratorServiceStatusRequest): Promise<DescribeAcceleratorServiceStatusResponse> {
|
|
21467
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21468
|
+
return await this.describeAcceleratorServiceStatusWithOptions(request, runtime);
|
|
21469
|
+
}
|
|
21470
|
+
|
|
21177
21471
|
async describeApplicationMonitorWithOptions(request: DescribeApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationMonitorResponse> {
|
|
21178
21472
|
Util.validateModel(request);
|
|
21179
21473
|
let query = { };
|
|
@@ -23497,6 +23791,39 @@ export default class Client extends OpenApi {
|
|
|
23497
23791
|
return await this.listDomainsWithOptions(request, runtime);
|
|
23498
23792
|
}
|
|
23499
23793
|
|
|
23794
|
+
async listEndpointGroupIpAddressCidrBlocksWithOptions(request: ListEndpointGroupIpAddressCidrBlocksRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupIpAddressCidrBlocksResponse> {
|
|
23795
|
+
Util.validateModel(request);
|
|
23796
|
+
let query = { };
|
|
23797
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
23798
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
23799
|
+
}
|
|
23800
|
+
|
|
23801
|
+
if (!Util.isUnset(request.regionId)) {
|
|
23802
|
+
query["RegionId"] = request.regionId;
|
|
23803
|
+
}
|
|
23804
|
+
|
|
23805
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
23806
|
+
query: OpenApiUtil.query(query),
|
|
23807
|
+
});
|
|
23808
|
+
let params = new $OpenApi.Params({
|
|
23809
|
+
action: "ListEndpointGroupIpAddressCidrBlocks",
|
|
23810
|
+
version: "2019-11-20",
|
|
23811
|
+
protocol: "HTTPS",
|
|
23812
|
+
pathname: "/",
|
|
23813
|
+
method: "POST",
|
|
23814
|
+
authType: "AK",
|
|
23815
|
+
style: "RPC",
|
|
23816
|
+
reqBodyType: "formData",
|
|
23817
|
+
bodyType: "json",
|
|
23818
|
+
});
|
|
23819
|
+
return $tea.cast<ListEndpointGroupIpAddressCidrBlocksResponse>(await this.callApi(params, req, runtime), new ListEndpointGroupIpAddressCidrBlocksResponse({}));
|
|
23820
|
+
}
|
|
23821
|
+
|
|
23822
|
+
async listEndpointGroupIpAddressCidrBlocks(request: ListEndpointGroupIpAddressCidrBlocksRequest): Promise<ListEndpointGroupIpAddressCidrBlocksResponse> {
|
|
23823
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23824
|
+
return await this.listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime);
|
|
23825
|
+
}
|
|
23826
|
+
|
|
23500
23827
|
async listEndpointGroupsWithOptions(request: ListEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupsResponse> {
|
|
23501
23828
|
Util.validateModel(request);
|
|
23502
23829
|
let query = { };
|
|
@@ -23964,11 +24291,70 @@ export default class Client extends OpenApi {
|
|
|
23964
24291
|
return await this.listTagResourcesWithOptions(request, runtime);
|
|
23965
24292
|
}
|
|
23966
24293
|
|
|
24294
|
+
async openAcceleratorServiceWithOptions(request: OpenAcceleratorServiceRequest, runtime: $Util.RuntimeOptions): Promise<OpenAcceleratorServiceResponse> {
|
|
24295
|
+
Util.validateModel(request);
|
|
24296
|
+
let query = { };
|
|
24297
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
24298
|
+
query["ClientToken"] = request.clientToken;
|
|
24299
|
+
}
|
|
24300
|
+
|
|
24301
|
+
if (!Util.isUnset(request.regionId)) {
|
|
24302
|
+
query["RegionId"] = request.regionId;
|
|
24303
|
+
}
|
|
24304
|
+
|
|
24305
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
24306
|
+
query: OpenApiUtil.query(query),
|
|
24307
|
+
});
|
|
24308
|
+
let params = new $OpenApi.Params({
|
|
24309
|
+
action: "OpenAcceleratorService",
|
|
24310
|
+
version: "2019-11-20",
|
|
24311
|
+
protocol: "HTTPS",
|
|
24312
|
+
pathname: "/",
|
|
24313
|
+
method: "POST",
|
|
24314
|
+
authType: "AK",
|
|
24315
|
+
style: "RPC",
|
|
24316
|
+
reqBodyType: "formData",
|
|
24317
|
+
bodyType: "json",
|
|
24318
|
+
});
|
|
24319
|
+
return $tea.cast<OpenAcceleratorServiceResponse>(await this.callApi(params, req, runtime), new OpenAcceleratorServiceResponse({}));
|
|
24320
|
+
}
|
|
24321
|
+
|
|
24322
|
+
async openAcceleratorService(request: OpenAcceleratorServiceRequest): Promise<OpenAcceleratorServiceResponse> {
|
|
24323
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24324
|
+
return await this.openAcceleratorServiceWithOptions(request, runtime);
|
|
24325
|
+
}
|
|
24326
|
+
|
|
24327
|
+
async queryCrossBorderApprovalStatusWithOptions(request: QueryCrossBorderApprovalStatusRequest, runtime: $Util.RuntimeOptions): Promise<QueryCrossBorderApprovalStatusResponse> {
|
|
24328
|
+
Util.validateModel(request);
|
|
24329
|
+
let query = { };
|
|
24330
|
+
if (!Util.isUnset(request.regionId)) {
|
|
24331
|
+
query["RegionId"] = request.regionId;
|
|
24332
|
+
}
|
|
24333
|
+
|
|
24334
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
24335
|
+
query: OpenApiUtil.query(query),
|
|
24336
|
+
});
|
|
24337
|
+
let params = new $OpenApi.Params({
|
|
24338
|
+
action: "QueryCrossBorderApprovalStatus",
|
|
24339
|
+
version: "2019-11-20",
|
|
24340
|
+
protocol: "HTTPS",
|
|
24341
|
+
pathname: "/",
|
|
24342
|
+
method: "POST",
|
|
24343
|
+
authType: "AK",
|
|
24344
|
+
style: "RPC",
|
|
24345
|
+
reqBodyType: "formData",
|
|
24346
|
+
bodyType: "json",
|
|
24347
|
+
});
|
|
24348
|
+
return $tea.cast<QueryCrossBorderApprovalStatusResponse>(await this.callApi(params, req, runtime), new QueryCrossBorderApprovalStatusResponse({}));
|
|
24349
|
+
}
|
|
24350
|
+
|
|
24351
|
+
async queryCrossBorderApprovalStatus(request: QueryCrossBorderApprovalStatusRequest): Promise<QueryCrossBorderApprovalStatusResponse> {
|
|
24352
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24353
|
+
return await this.queryCrossBorderApprovalStatusWithOptions(request, runtime);
|
|
24354
|
+
}
|
|
24355
|
+
|
|
23967
24356
|
/**
|
|
23968
|
-
*
|
|
23969
|
-
* * If an ACL is in the **configuring** state, the IP entries are being deleted. In this case, you can perform only query operations.
|
|
23970
|
-
* * If an ACL is in the **active** state, the IP entries are deleted.
|
|
23971
|
-
* * You cannot repeatedly call the **RemoveEntriesFromAcl** operation for the same Global Accelerator (GA) instance within the specified period of time.
|
|
24357
|
+
* The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
|
|
23972
24358
|
*
|
|
23973
24359
|
* @param request RemoveEntriesFromAclRequest
|
|
23974
24360
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24015,10 +24401,7 @@ export default class Client extends OpenApi {
|
|
|
24015
24401
|
}
|
|
24016
24402
|
|
|
24017
24403
|
/**
|
|
24018
|
-
*
|
|
24019
|
-
* * If an ACL is in the **configuring** state, the IP entries are being deleted. In this case, you can perform only query operations.
|
|
24020
|
-
* * If an ACL is in the **active** state, the IP entries are deleted.
|
|
24021
|
-
* * You cannot repeatedly call the **RemoveEntriesFromAcl** operation for the same Global Accelerator (GA) instance within the specified period of time.
|
|
24404
|
+
* The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
|
|
24022
24405
|
*
|
|
24023
24406
|
* @param request RemoveEntriesFromAclRequest
|
|
24024
24407
|
* @return RemoveEntriesFromAclResponse
|
|
@@ -24344,8 +24727,8 @@ export default class Client extends OpenApi {
|
|
|
24344
24727
|
}
|
|
24345
24728
|
|
|
24346
24729
|
/**
|
|
24347
|
-
* After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification
|
|
24348
|
-
* * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
24730
|
+
* After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification of a GA instance that is modified. When you call this operation to confirm the specification of a GA instance, take note of the following items:
|
|
24731
|
+
* * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
|
|
24349
24732
|
* * If the GA instance is in the **configuring** state, it indicates that the specification of the instance is being modified. In this case, you can perform only query operations.
|
|
24350
24733
|
* * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
|
|
24351
24734
|
* * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
@@ -24383,8 +24766,8 @@ export default class Client extends OpenApi {
|
|
|
24383
24766
|
}
|
|
24384
24767
|
|
|
24385
24768
|
/**
|
|
24386
|
-
* After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification
|
|
24387
|
-
* * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
24769
|
+
* After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification of a GA instance that is modified. When you call this operation to confirm the specification of a GA instance, take note of the following items:
|
|
24770
|
+
* * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
|
|
24388
24771
|
* * If the GA instance is in the **configuring** state, it indicates that the specification of the instance is being modified. In this case, you can perform only query operations.
|
|
24389
24772
|
* * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
|
|
24390
24773
|
* * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
@@ -24397,6 +24780,16 @@ export default class Client extends OpenApi {
|
|
|
24397
24780
|
return await this.updateAcceleratorConfirmWithOptions(request, runtime);
|
|
24398
24781
|
}
|
|
24399
24782
|
|
|
24783
|
+
/**
|
|
24784
|
+
* ### Prerequisites
|
|
24785
|
+
* You can call this operation to change the type of transmission network for a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**. Before you call this operation, make sure that the following requirements are met:
|
|
24786
|
+
* * Cloud Data Transfer (CDT) is activated. When you call the [CreateAccelerator](~~206786~~) operation and set **BandwidthBillingType** to **CDT** to create a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**, CDT is automatically activated. The data transfer fees are managed by CDT.
|
|
24787
|
+
* * If you want to set **CrossBorderMode** to **private**, which specifies cross-border Express Connect circuit as the type of transmission network, make sure that your enterprise account completed real-name verification. For more information, see [Real-name verification](~~52595~~).
|
|
24788
|
+
*
|
|
24789
|
+
* @param request UpdateAcceleratorCrossBorderModeRequest
|
|
24790
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24791
|
+
* @return UpdateAcceleratorCrossBorderModeResponse
|
|
24792
|
+
*/
|
|
24400
24793
|
async updateAcceleratorCrossBorderModeWithOptions(request: UpdateAcceleratorCrossBorderModeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorCrossBorderModeResponse> {
|
|
24401
24794
|
Util.validateModel(request);
|
|
24402
24795
|
let query = { };
|
|
@@ -24433,6 +24826,15 @@ export default class Client extends OpenApi {
|
|
|
24433
24826
|
return $tea.cast<UpdateAcceleratorCrossBorderModeResponse>(await this.callApi(params, req, runtime), new UpdateAcceleratorCrossBorderModeResponse({}));
|
|
24434
24827
|
}
|
|
24435
24828
|
|
|
24829
|
+
/**
|
|
24830
|
+
* ### Prerequisites
|
|
24831
|
+
* You can call this operation to change the type of transmission network for a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**. Before you call this operation, make sure that the following requirements are met:
|
|
24832
|
+
* * Cloud Data Transfer (CDT) is activated. When you call the [CreateAccelerator](~~206786~~) operation and set **BandwidthBillingType** to **CDT** to create a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**, CDT is automatically activated. The data transfer fees are managed by CDT.
|
|
24833
|
+
* * If you want to set **CrossBorderMode** to **private**, which specifies cross-border Express Connect circuit as the type of transmission network, make sure that your enterprise account completed real-name verification. For more information, see [Real-name verification](~~52595~~).
|
|
24834
|
+
*
|
|
24835
|
+
* @param request UpdateAcceleratorCrossBorderModeRequest
|
|
24836
|
+
* @return UpdateAcceleratorCrossBorderModeResponse
|
|
24837
|
+
*/
|
|
24436
24838
|
async updateAcceleratorCrossBorderMode(request: UpdateAcceleratorCrossBorderModeRequest): Promise<UpdateAcceleratorCrossBorderModeResponse> {
|
|
24437
24839
|
let runtime = new $Util.RuntimeOptions({ });
|
|
24438
24840
|
return await this.updateAcceleratorCrossBorderModeWithOptions(request, runtime);
|
|
@@ -24710,15 +25112,15 @@ export default class Client extends OpenApi {
|
|
|
24710
25112
|
}
|
|
24711
25113
|
|
|
24712
25114
|
/**
|
|
24713
|
-
*
|
|
24714
|
-
* * **UpdateBandwidthPackage** is a synchronous operation when
|
|
24715
|
-
* * **UpdateBandwidthPackage** is an asynchronous operation when
|
|
24716
|
-
* * If the parameter
|
|
24717
|
-
* * If the parameter
|
|
24718
|
-
* * **UpdateBandwidthPackage** is an asynchronous operation when
|
|
24719
|
-
* * If the GA instance is in the **configuring** state,
|
|
24720
|
-
* * If the GA instance is in the **active** state,
|
|
24721
|
-
* *
|
|
25115
|
+
* Take note of the following items:
|
|
25116
|
+
* * **UpdateBandwidthPackage** is a synchronous operation when you call the operation to modify the configuration excluding the bandwidth value of a bandwidth plan. The new configuration immediately takes effect after the operation is performed.
|
|
25117
|
+
* * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is not associated with a Global Accelerator (GA) instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
|
|
25118
|
+
* * If the parameter values of the bandwidth plan remain unchanged, the bandwidth plan is being modified. In this case, you can perform only query operations.
|
|
25119
|
+
* * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
|
|
25120
|
+
* * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is associated with a GA instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of the task.
|
|
25121
|
+
* * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
|
|
25122
|
+
* * If the GA instance is in the **active** state, the bandwidth plan is modified.
|
|
25123
|
+
* * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
|
|
24722
25124
|
*
|
|
24723
25125
|
* @param request UpdateBandwidthPackageRequest
|
|
24724
25126
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24777,15 +25179,15 @@ export default class Client extends OpenApi {
|
|
|
24777
25179
|
}
|
|
24778
25180
|
|
|
24779
25181
|
/**
|
|
24780
|
-
*
|
|
24781
|
-
* * **UpdateBandwidthPackage** is a synchronous operation when
|
|
24782
|
-
* * **UpdateBandwidthPackage** is an asynchronous operation when
|
|
24783
|
-
* * If the parameter
|
|
24784
|
-
* * If the parameter
|
|
24785
|
-
* * **UpdateBandwidthPackage** is an asynchronous operation when
|
|
24786
|
-
* * If the GA instance is in the **configuring** state,
|
|
24787
|
-
* * If the GA instance is in the **active** state,
|
|
24788
|
-
* *
|
|
25182
|
+
* Take note of the following items:
|
|
25183
|
+
* * **UpdateBandwidthPackage** is a synchronous operation when you call the operation to modify the configuration excluding the bandwidth value of a bandwidth plan. The new configuration immediately takes effect after the operation is performed.
|
|
25184
|
+
* * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is not associated with a Global Accelerator (GA) instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
|
|
25185
|
+
* * If the parameter values of the bandwidth plan remain unchanged, the bandwidth plan is being modified. In this case, you can perform only query operations.
|
|
25186
|
+
* * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
|
|
25187
|
+
* * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is associated with a GA instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of the task.
|
|
25188
|
+
* * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
|
|
25189
|
+
* * If the GA instance is in the **active** state, the bandwidth plan is modified.
|
|
25190
|
+
* * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
|
|
24789
25191
|
*
|
|
24790
25192
|
* @param request UpdateBandwidthPackageRequest
|
|
24791
25193
|
* @return UpdateBandwidthPackageResponse
|
|
@@ -25135,9 +25537,9 @@ export default class Client extends OpenApi {
|
|
|
25135
25537
|
}
|
|
25136
25538
|
|
|
25137
25539
|
/**
|
|
25138
|
-
* * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
25139
|
-
* * If the endpoint group is in the **updating** state,
|
|
25140
|
-
* * If the endpoint group is in the **active** state,
|
|
25540
|
+
* * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of the task.
|
|
25541
|
+
* * If the endpoint group is in the **updating** state, traffic policies are being modified for endpoints in the endpoint group. In this case, you can perform only query operations.
|
|
25542
|
+
* * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
|
|
25141
25543
|
* * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
25142
25544
|
*
|
|
25143
25545
|
* @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
|
|
@@ -25181,9 +25583,9 @@ export default class Client extends OpenApi {
|
|
|
25181
25583
|
}
|
|
25182
25584
|
|
|
25183
25585
|
/**
|
|
25184
|
-
* * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
25185
|
-
* * If the endpoint group is in the **updating** state,
|
|
25186
|
-
* * If the endpoint group is in the **active** state,
|
|
25586
|
+
* * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of the task.
|
|
25587
|
+
* * If the endpoint group is in the **updating** state, traffic policies are being modified for endpoints in the endpoint group. In this case, you can perform only query operations.
|
|
25588
|
+
* * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
|
|
25187
25589
|
* * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
25188
25590
|
*
|
|
25189
25591
|
* @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
|
|
@@ -25255,9 +25657,8 @@ export default class Client extends OpenApi {
|
|
|
25255
25657
|
}
|
|
25256
25658
|
|
|
25257
25659
|
/**
|
|
25258
|
-
*
|
|
25259
|
-
* You
|
|
25260
|
-
* You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
|
|
25660
|
+
* You can call this operation to modify an accelerated domain name. If the new accelerated domain name is hosted in the Chinese mainland, you must obtain an Internet content provider (ICP) number for the domain name.
|
|
25661
|
+
* You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
|
|
25261
25662
|
*
|
|
25262
25663
|
* @param request UpdateDomainRequest
|
|
25263
25664
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25296,9 +25697,8 @@ export default class Client extends OpenApi {
|
|
|
25296
25697
|
}
|
|
25297
25698
|
|
|
25298
25699
|
/**
|
|
25299
|
-
*
|
|
25300
|
-
* You
|
|
25301
|
-
* You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
|
|
25700
|
+
* You can call this operation to modify an accelerated domain name. If the new accelerated domain name is hosted in the Chinese mainland, you must obtain an Internet content provider (ICP) number for the domain name.
|
|
25701
|
+
* You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
|
|
25302
25702
|
*
|
|
25303
25703
|
* @param request UpdateDomainRequest
|
|
25304
25704
|
* @return UpdateDomainResponse
|
|
@@ -25309,8 +25709,8 @@ export default class Client extends OpenApi {
|
|
|
25309
25709
|
}
|
|
25310
25710
|
|
|
25311
25711
|
/**
|
|
25312
|
-
* You can call this operation to
|
|
25313
|
-
*
|
|
25712
|
+
* You can call this operation to query and update the ICP filing status of an accelerated domain name.
|
|
25713
|
+
* The **UpdateDomainState** operation holds an exclusive lock on the GA instance. While the operation is in progress, you cannot call the same operation with the same Alibaba Cloud account.
|
|
25314
25714
|
*
|
|
25315
25715
|
* @param request UpdateDomainStateRequest
|
|
25316
25716
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25345,8 +25745,8 @@ export default class Client extends OpenApi {
|
|
|
25345
25745
|
}
|
|
25346
25746
|
|
|
25347
25747
|
/**
|
|
25348
|
-
* You can call this operation to
|
|
25349
|
-
*
|
|
25748
|
+
* You can call this operation to query and update the ICP filing status of an accelerated domain name.
|
|
25749
|
+
* The **UpdateDomainState** operation holds an exclusive lock on the GA instance. While the operation is in progress, you cannot call the same operation with the same Alibaba Cloud account.
|
|
25350
25750
|
*
|
|
25351
25751
|
* @param request UpdateDomainStateRequest
|
|
25352
25752
|
* @return UpdateDomainStateResponse
|
|
@@ -25638,11 +26038,10 @@ export default class Client extends OpenApi {
|
|
|
25638
26038
|
}
|
|
25639
26039
|
|
|
25640
26040
|
/**
|
|
25641
|
-
* ## Usage notes
|
|
25642
26041
|
* * **UpdateIpSet** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of an acceleration region.
|
|
25643
|
-
* * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform
|
|
25644
|
-
* * If the acceleration region is in the **active** state, the acceleration region is modified.
|
|
25645
|
-
* *
|
|
26042
|
+
* * If the acceleration region is in the **updating** state, it indicates that the acceleration region is being modified. In this case, you can continue to perform query operations on the acceleration regions.
|
|
26043
|
+
* * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
|
|
26044
|
+
* * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
|
|
25646
26045
|
*
|
|
25647
26046
|
* @param request UpdateIpSetRequest
|
|
25648
26047
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25685,11 +26084,10 @@ export default class Client extends OpenApi {
|
|
|
25685
26084
|
}
|
|
25686
26085
|
|
|
25687
26086
|
/**
|
|
25688
|
-
* ## Usage notes
|
|
25689
26087
|
* * **UpdateIpSet** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of an acceleration region.
|
|
25690
|
-
* * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform
|
|
25691
|
-
* * If the acceleration region is in the **active** state, the acceleration region is modified.
|
|
25692
|
-
* *
|
|
26088
|
+
* * If the acceleration region is in the **updating** state, it indicates that the acceleration region is being modified. In this case, you can continue to perform query operations on the acceleration regions.
|
|
26089
|
+
* * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
|
|
26090
|
+
* * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
|
|
25693
26091
|
*
|
|
25694
26092
|
* @param request UpdateIpSetRequest
|
|
25695
26093
|
* @return UpdateIpSetResponse
|
|
@@ -25700,10 +26098,10 @@ export default class Client extends OpenApi {
|
|
|
25700
26098
|
}
|
|
25701
26099
|
|
|
25702
26100
|
/**
|
|
25703
|
-
* * **UpdateIpSet** is an asynchronous operation. After
|
|
25704
|
-
* * If
|
|
25705
|
-
* * If
|
|
25706
|
-
* *
|
|
26101
|
+
* * **UpdateIpSet** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
|
|
26102
|
+
* * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
|
|
26103
|
+
* * If an acceleration region is in the **active** state, the acceleration region is modified.
|
|
26104
|
+
* * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
|
|
25707
26105
|
*
|
|
25708
26106
|
* @param request UpdateIpSetsRequest
|
|
25709
26107
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25738,10 +26136,10 @@ export default class Client extends OpenApi {
|
|
|
25738
26136
|
}
|
|
25739
26137
|
|
|
25740
26138
|
/**
|
|
25741
|
-
* * **UpdateIpSet** is an asynchronous operation. After
|
|
25742
|
-
* * If
|
|
25743
|
-
* * If
|
|
25744
|
-
* *
|
|
26139
|
+
* * **UpdateIpSet** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
|
|
26140
|
+
* * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
|
|
26141
|
+
* * If an acceleration region is in the **active** state, the acceleration region is modified.
|
|
26142
|
+
* * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
|
|
25745
26143
|
*
|
|
25746
26144
|
* @param request UpdateIpSetsRequest
|
|
25747
26145
|
* @return UpdateIpSetsResponse
|
|
@@ -25752,9 +26150,9 @@ export default class Client extends OpenApi {
|
|
|
25752
26150
|
}
|
|
25753
26151
|
|
|
25754
26152
|
/**
|
|
25755
|
-
* This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
|
|
26153
|
+
* This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
|
|
25756
26154
|
* When you call this operation, take note of the following items:
|
|
25757
|
-
* * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
26155
|
+
* * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the status of a listener.
|
|
25758
26156
|
* * If the listener is in the **updating** state, it indicates that its configurations are being modified. In this case, you can perform only query operations.
|
|
25759
26157
|
* * If the listener is in the **active** state, it indicates that its configurations are modified.
|
|
25760
26158
|
* * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.
|
|
@@ -25836,9 +26234,9 @@ export default class Client extends OpenApi {
|
|
|
25836
26234
|
}
|
|
25837
26235
|
|
|
25838
26236
|
/**
|
|
25839
|
-
* This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
|
|
26237
|
+
* This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
|
|
25840
26238
|
* When you call this operation, take note of the following items:
|
|
25841
|
-
* * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID
|
|
26239
|
+
* * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the status of a listener.
|
|
25842
26240
|
* * If the listener is in the **updating** state, it indicates that its configurations are being modified. In this case, you can perform only query operations.
|
|
25843
26241
|
* * If the listener is in the **active** state, it indicates that its configurations are modified.
|
|
25844
26242
|
* * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.
|