@alicloud/ga20191120 1.0.20 → 1.0.21
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 +340 -212
- package/dist/client.js +517 -212
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +598 -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
|
|
|
@@ -16892,12 +17204,14 @@ export class UpdateCustomRoutingEndpointsRequestEndpointConfigurations extends $
|
|
|
16892
17204
|
|
|
16893
17205
|
export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
|
|
16894
17206
|
enableClientIPPreservation?: boolean;
|
|
17207
|
+
enableProxyProtocol?: boolean;
|
|
16895
17208
|
endpoint?: string;
|
|
16896
17209
|
type?: string;
|
|
16897
17210
|
weight?: number;
|
|
16898
17211
|
static names(): { [key: string]: string } {
|
|
16899
17212
|
return {
|
|
16900
17213
|
enableClientIPPreservation: 'EnableClientIPPreservation',
|
|
17214
|
+
enableProxyProtocol: 'EnableProxyProtocol',
|
|
16901
17215
|
endpoint: 'Endpoint',
|
|
16902
17216
|
type: 'Type',
|
|
16903
17217
|
weight: 'Weight',
|
|
@@ -16907,6 +17221,7 @@ export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
16907
17221
|
static types(): { [key: string]: any } {
|
|
16908
17222
|
return {
|
|
16909
17223
|
enableClientIPPreservation: 'boolean',
|
|
17224
|
+
enableProxyProtocol: 'boolean',
|
|
16910
17225
|
endpoint: 'string',
|
|
16911
17226
|
type: 'string',
|
|
16912
17227
|
weight: 'number',
|
|
@@ -17572,10 +17887,6 @@ export default class Client extends OpenApi {
|
|
|
17572
17887
|
|
|
17573
17888
|
/**
|
|
17574
17889
|
* 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
17890
|
* * **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
17891
|
* * 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
17892
|
* * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
|
|
@@ -17623,10 +17934,6 @@ export default class Client extends OpenApi {
|
|
|
17623
17934
|
|
|
17624
17935
|
/**
|
|
17625
17936
|
* 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
17937
|
* * **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
17938
|
* * 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
17939
|
* * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
|
|
@@ -17773,7 +18080,7 @@ export default class Client extends OpenApi {
|
|
|
17773
18080
|
}
|
|
17774
18081
|
|
|
17775
18082
|
/**
|
|
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
|
|
18083
|
+
* * **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
18084
|
* * 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
18085
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
|
|
17779
18086
|
* * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
|
|
@@ -17815,7 +18122,7 @@ export default class Client extends OpenApi {
|
|
|
17815
18122
|
}
|
|
17816
18123
|
|
|
17817
18124
|
/**
|
|
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
|
|
18125
|
+
* * **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
18126
|
* * 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
18127
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
|
|
17821
18128
|
* * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
|
|
@@ -17998,10 +18305,18 @@ export default class Client extends OpenApi {
|
|
|
17998
18305
|
query["ClientToken"] = request.clientToken;
|
|
17999
18306
|
}
|
|
18000
18307
|
|
|
18308
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
18309
|
+
query["DryRun"] = request.dryRun;
|
|
18310
|
+
}
|
|
18311
|
+
|
|
18001
18312
|
if (!Util.isUnset(request.duration)) {
|
|
18002
18313
|
query["Duration"] = request.duration;
|
|
18003
18314
|
}
|
|
18004
18315
|
|
|
18316
|
+
if (!Util.isUnset(request.instanceChargeType)) {
|
|
18317
|
+
query["InstanceChargeType"] = request.instanceChargeType;
|
|
18318
|
+
}
|
|
18319
|
+
|
|
18005
18320
|
if (!Util.isUnset(request.ipSetConfig)) {
|
|
18006
18321
|
query["IpSetConfig"] = request.ipSetConfig;
|
|
18007
18322
|
}
|
|
@@ -18231,13 +18546,12 @@ export default class Client extends OpenApi {
|
|
|
18231
18546
|
}
|
|
18232
18547
|
|
|
18233
18548
|
/**
|
|
18234
|
-
* ##
|
|
18235
18549
|
* To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
|
|
18236
18550
|
* * **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
18551
|
* * **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
|
|
18552
|
+
* * **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
18553
|
* When you call this operation, take note of the following items:
|
|
18240
|
-
* *
|
|
18554
|
+
* * **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
18555
|
* * 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
18556
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
|
|
18243
18557
|
* * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
@@ -18343,13 +18657,12 @@ export default class Client extends OpenApi {
|
|
|
18343
18657
|
}
|
|
18344
18658
|
|
|
18345
18659
|
/**
|
|
18346
|
-
* ##
|
|
18347
18660
|
* To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
|
|
18348
18661
|
* * **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
18662
|
* * **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
|
|
18663
|
+
* * **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
18664
|
* When you call this operation, take note of the following items:
|
|
18352
|
-
* *
|
|
18665
|
+
* * **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
18666
|
* * 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
18667
|
* * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
|
|
18355
18668
|
* * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
@@ -18547,10 +18860,9 @@ export default class Client extends OpenApi {
|
|
|
18547
18860
|
}
|
|
18548
18861
|
|
|
18549
18862
|
/**
|
|
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~~).
|
|
18863
|
+
* 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
18864
|
* **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
|
|
18865
|
+
* * 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
18866
|
* * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
|
|
18555
18867
|
*
|
|
18556
18868
|
* @param request CreateBasicAcceleratorRequest
|
|
@@ -18634,10 +18946,9 @@ export default class Client extends OpenApi {
|
|
|
18634
18946
|
}
|
|
18635
18947
|
|
|
18636
18948
|
/**
|
|
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~~).
|
|
18949
|
+
* 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
18950
|
* **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
|
|
18951
|
+
* * 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
18952
|
* * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
|
|
18642
18953
|
*
|
|
18643
18954
|
* @param request CreateBasicAcceleratorRequest
|
|
@@ -18733,11 +19044,10 @@ export default class Client extends OpenApi {
|
|
|
18733
19044
|
}
|
|
18734
19045
|
|
|
18735
19046
|
/**
|
|
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.
|
|
19047
|
+
* * **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
19048
|
* * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
|
|
18739
19049
|
* * If the endpoint group is in the **active** state, the endpoint group is created.
|
|
18740
|
-
* *
|
|
19050
|
+
* * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
|
|
18741
19051
|
*
|
|
18742
19052
|
* @param request CreateBasicEndpointGroupRequest
|
|
18743
19053
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18800,11 +19110,10 @@ export default class Client extends OpenApi {
|
|
|
18800
19110
|
}
|
|
18801
19111
|
|
|
18802
19112
|
/**
|
|
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.
|
|
19113
|
+
* * **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
19114
|
* * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
|
|
18806
19115
|
* * If the endpoint group is in the **active** state, the endpoint group is created.
|
|
18807
|
-
* *
|
|
19116
|
+
* * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
|
|
18808
19117
|
*
|
|
18809
19118
|
* @param request CreateBasicEndpointGroupRequest
|
|
18810
19119
|
* @return CreateBasicEndpointGroupResponse
|
|
@@ -18815,9 +19124,8 @@ export default class Client extends OpenApi {
|
|
|
18815
19124
|
}
|
|
18816
19125
|
|
|
18817
19126
|
/**
|
|
18818
|
-
*
|
|
18819
|
-
* *
|
|
18820
|
-
* * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
19127
|
+
* * **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.
|
|
19128
|
+
* * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
|
|
18821
19129
|
*
|
|
18822
19130
|
* @param request CreateBasicEndpointsRequest
|
|
18823
19131
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18864,9 +19172,8 @@ export default class Client extends OpenApi {
|
|
|
18864
19172
|
}
|
|
18865
19173
|
|
|
18866
19174
|
/**
|
|
18867
|
-
*
|
|
18868
|
-
* *
|
|
18869
|
-
* * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
19175
|
+
* * **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.
|
|
19176
|
+
* * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
|
|
18870
19177
|
*
|
|
18871
19178
|
* @param request CreateBasicEndpointsRequest
|
|
18872
19179
|
* @return CreateBasicEndpointsResponse
|
|
@@ -18877,12 +19184,12 @@ export default class Client extends OpenApi {
|
|
|
18877
19184
|
}
|
|
18878
19185
|
|
|
18879
19186
|
/**
|
|
18880
|
-
*
|
|
18881
|
-
* * You can
|
|
18882
|
-
* * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns
|
|
19187
|
+
* Take note of the following limits:
|
|
19188
|
+
* * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
|
|
19189
|
+
* * **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
19190
|
* * 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
19191
|
* * If the acceleration region is in the **active** state, the acceleration region is created.
|
|
18885
|
-
* *
|
|
19192
|
+
* * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
|
|
18886
19193
|
*
|
|
18887
19194
|
* @param request CreateBasicIpSetRequest
|
|
18888
19195
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18933,12 +19240,12 @@ export default class Client extends OpenApi {
|
|
|
18933
19240
|
}
|
|
18934
19241
|
|
|
18935
19242
|
/**
|
|
18936
|
-
*
|
|
18937
|
-
* * You can
|
|
18938
|
-
* * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns
|
|
19243
|
+
* Take note of the following limits:
|
|
19244
|
+
* * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
|
|
19245
|
+
* * **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
19246
|
* * 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
19247
|
* * If the acceleration region is in the **active** state, the acceleration region is created.
|
|
18941
|
-
* *
|
|
19248
|
+
* * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
|
|
18942
19249
|
*
|
|
18943
19250
|
* @param request CreateBasicIpSetRequest
|
|
18944
19251
|
* @return CreateBasicIpSetResponse
|
|
@@ -18949,19 +19256,7 @@ export default class Client extends OpenApi {
|
|
|
18949
19256
|
}
|
|
18950
19257
|
|
|
18951
19258
|
/**
|
|
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~~).
|
|
19259
|
+
* readAndWrite
|
|
18965
19260
|
*
|
|
18966
19261
|
* @param request CreateCustomRoutingEndpointGroupDestinationsRequest
|
|
18967
19262
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19008,19 +19303,7 @@ export default class Client extends OpenApi {
|
|
|
19008
19303
|
}
|
|
19009
19304
|
|
|
19010
19305
|
/**
|
|
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~~).
|
|
19306
|
+
* readAndWrite
|
|
19024
19307
|
*
|
|
19025
19308
|
* @param request CreateCustomRoutingEndpointGroupDestinationsRequest
|
|
19026
19309
|
* @return CreateCustomRoutingEndpointGroupDestinationsResponse
|
|
@@ -19201,19 +19484,7 @@ export default class Client extends OpenApi {
|
|
|
19201
19484
|
}
|
|
19202
19485
|
|
|
19203
19486
|
/**
|
|
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~~).
|
|
19487
|
+
* readAndWrite
|
|
19217
19488
|
*
|
|
19218
19489
|
* @param request CreateCustomRoutingEndpointsRequest
|
|
19219
19490
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19256,19 +19527,7 @@ export default class Client extends OpenApi {
|
|
|
19256
19527
|
}
|
|
19257
19528
|
|
|
19258
19529
|
/**
|
|
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~~).
|
|
19530
|
+
* readAndWrite
|
|
19272
19531
|
*
|
|
19273
19532
|
* @param request CreateCustomRoutingEndpointsRequest
|
|
19274
19533
|
* @return CreateCustomRoutingEndpointsResponse
|
|
@@ -19593,11 +19852,10 @@ export default class Client extends OpenApi {
|
|
|
19593
19852
|
}
|
|
19594
19853
|
|
|
19595
19854
|
/**
|
|
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.
|
|
19855
|
+
* * **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
19856
|
* * 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
19857
|
* * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
|
|
19600
|
-
* *
|
|
19858
|
+
* * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
|
|
19601
19859
|
*
|
|
19602
19860
|
* @param request CreateIpSetsRequest
|
|
19603
19861
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19640,11 +19898,10 @@ export default class Client extends OpenApi {
|
|
|
19640
19898
|
}
|
|
19641
19899
|
|
|
19642
19900
|
/**
|
|
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.
|
|
19901
|
+
* * **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
19902
|
* * 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
19903
|
* * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
|
|
19647
|
-
* *
|
|
19904
|
+
* * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
|
|
19648
19905
|
*
|
|
19649
19906
|
* @param request CreateIpSetsRequest
|
|
19650
19907
|
* @return CreateIpSetsResponse
|
|
@@ -19828,9 +20085,9 @@ export default class Client extends OpenApi {
|
|
|
19828
20085
|
|
|
19829
20086
|
/**
|
|
19830
20087
|
* * 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,
|
|
20088
|
+
* * 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~~).
|
|
20089
|
+
* * **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.
|
|
20090
|
+
* * 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
20091
|
* * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
|
|
19835
20092
|
*
|
|
19836
20093
|
* @param request DeleteAcceleratorRequest
|
|
@@ -19867,9 +20124,9 @@ export default class Client extends OpenApi {
|
|
|
19867
20124
|
|
|
19868
20125
|
/**
|
|
19869
20126
|
* * 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,
|
|
20127
|
+
* * 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~~).
|
|
20128
|
+
* * **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.
|
|
20129
|
+
* * 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
20130
|
* * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
|
|
19874
20131
|
*
|
|
19875
20132
|
* @param request DeleteAcceleratorRequest
|
|
@@ -19999,7 +20256,7 @@ export default class Client extends OpenApi {
|
|
|
19999
20256
|
/**
|
|
20000
20257
|
* * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
|
|
20001
20258
|
* * 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
|
|
20259
|
+
* * **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
20260
|
* * 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
20261
|
* * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
|
|
20005
20262
|
* * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
|
|
@@ -20043,7 +20300,7 @@ export default class Client extends OpenApi {
|
|
|
20043
20300
|
/**
|
|
20044
20301
|
* * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
|
|
20045
20302
|
* * 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
|
|
20303
|
+
* * **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
20304
|
* * 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
20305
|
* * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
|
|
20049
20306
|
* * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
|
|
@@ -20339,10 +20596,10 @@ export default class Client extends OpenApi {
|
|
|
20339
20596
|
}
|
|
20340
20597
|
|
|
20341
20598
|
/**
|
|
20342
|
-
* *
|
|
20599
|
+
* * \\*\\*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
20600
|
* * 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
20601
|
* * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
|
|
20345
|
-
* * The
|
|
20602
|
+
* * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
|
|
20346
20603
|
*
|
|
20347
20604
|
* @param request DeleteBasicIpSetRequest
|
|
20348
20605
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20381,10 +20638,10 @@ export default class Client extends OpenApi {
|
|
|
20381
20638
|
}
|
|
20382
20639
|
|
|
20383
20640
|
/**
|
|
20384
|
-
* *
|
|
20641
|
+
* * \\*\\*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
20642
|
* * 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
20643
|
* * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
|
|
20387
|
-
* * The
|
|
20644
|
+
* * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
|
|
20388
20645
|
*
|
|
20389
20646
|
* @param request DeleteBasicIpSetRequest
|
|
20390
20647
|
* @return DeleteBasicIpSetResponse
|
|
@@ -20395,11 +20652,10 @@ export default class Client extends OpenApi {
|
|
|
20395
20652
|
}
|
|
20396
20653
|
|
|
20397
20654
|
/**
|
|
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.
|
|
20655
|
+
* * **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
20656
|
* * 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
|
-
* *
|
|
20657
|
+
* * 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.
|
|
20658
|
+
* * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
|
|
20403
20659
|
*
|
|
20404
20660
|
* @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
|
|
20405
20661
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20446,11 +20702,10 @@ export default class Client extends OpenApi {
|
|
|
20446
20702
|
}
|
|
20447
20703
|
|
|
20448
20704
|
/**
|
|
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.
|
|
20705
|
+
* * **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
20706
|
* * 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
|
-
* *
|
|
20707
|
+
* * 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.
|
|
20708
|
+
* * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
|
|
20454
20709
|
*
|
|
20455
20710
|
* @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
|
|
20456
20711
|
* @return DeleteCustomRoutingEndpointGroupDestinationsResponse
|
|
@@ -20585,11 +20840,10 @@ export default class Client extends OpenApi {
|
|
|
20585
20840
|
}
|
|
20586
20841
|
|
|
20587
20842
|
/**
|
|
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.
|
|
20843
|
+
* * **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.
|
|
20844
|
+
* * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
|
|
20845
|
+
* * 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.
|
|
20846
|
+
* * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
|
|
20593
20847
|
*
|
|
20594
20848
|
* @param request DeleteCustomRoutingEndpointsRequest
|
|
20595
20849
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20632,11 +20886,10 @@ export default class Client extends OpenApi {
|
|
|
20632
20886
|
}
|
|
20633
20887
|
|
|
20634
20888
|
/**
|
|
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.
|
|
20889
|
+
* * **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.
|
|
20890
|
+
* * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
|
|
20891
|
+
* * 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.
|
|
20892
|
+
* * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
|
|
20640
20893
|
*
|
|
20641
20894
|
* @param request DeleteCustomRoutingEndpointsRequest
|
|
20642
20895
|
* @return DeleteCustomRoutingEndpointsResponse
|
|
@@ -20753,9 +21006,9 @@ export default class Client extends OpenApi {
|
|
|
20753
21006
|
}
|
|
20754
21007
|
|
|
20755
21008
|
/**
|
|
20756
|
-
* * **DeleteEndpointGroups** is an asynchronous operation. After
|
|
20757
|
-
* * If
|
|
20758
|
-
* * If
|
|
21009
|
+
* * **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.
|
|
21010
|
+
* * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
|
|
21011
|
+
* * If an endpoint group cannot be queried, the endpoint group is deleted.
|
|
20759
21012
|
* * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20760
21013
|
*
|
|
20761
21014
|
* @param request DeleteEndpointGroupsRequest
|
|
@@ -20799,9 +21052,9 @@ export default class Client extends OpenApi {
|
|
|
20799
21052
|
}
|
|
20800
21053
|
|
|
20801
21054
|
/**
|
|
20802
|
-
* * **DeleteEndpointGroups** is an asynchronous operation. After
|
|
20803
|
-
* * If
|
|
20804
|
-
* * If
|
|
21055
|
+
* * **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.
|
|
21056
|
+
* * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
|
|
21057
|
+
* * If an endpoint group cannot be queried, the endpoint group is deleted.
|
|
20805
21058
|
* * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20806
21059
|
*
|
|
20807
21060
|
* @param request DeleteEndpointGroupsRequest
|
|
@@ -20813,9 +21066,9 @@ export default class Client extends OpenApi {
|
|
|
20813
21066
|
}
|
|
20814
21067
|
|
|
20815
21068
|
/**
|
|
20816
|
-
* * **DeleteForwardingRules** is an asynchronous operation. After
|
|
20817
|
-
* * If
|
|
20818
|
-
* * If
|
|
21069
|
+
* * **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.
|
|
21070
|
+
* * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
|
|
21071
|
+
* * If a forwarding rule cannot be queried, the forwarding rule is deleted.
|
|
20819
21072
|
* * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20820
21073
|
*
|
|
20821
21074
|
* @param request DeleteForwardingRulesRequest
|
|
@@ -20863,9 +21116,9 @@ export default class Client extends OpenApi {
|
|
|
20863
21116
|
}
|
|
20864
21117
|
|
|
20865
21118
|
/**
|
|
20866
|
-
* * **DeleteForwardingRules** is an asynchronous operation. After
|
|
20867
|
-
* * If
|
|
20868
|
-
* * If
|
|
21119
|
+
* * **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.
|
|
21120
|
+
* * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
|
|
21121
|
+
* * If a forwarding rule cannot be queried, the forwarding rule is deleted.
|
|
20869
21122
|
* * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20870
21123
|
*
|
|
20871
21124
|
* @param request DeleteForwardingRulesRequest
|
|
@@ -20989,8 +21242,8 @@ export default class Client extends OpenApi {
|
|
|
20989
21242
|
}
|
|
20990
21243
|
|
|
20991
21244
|
/**
|
|
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
|
|
21245
|
+
* * **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.
|
|
21246
|
+
* * 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
21247
|
* * If the listener cannot be queried, it indicates that the listener is deleted.
|
|
20995
21248
|
* * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
|
|
20996
21249
|
*
|
|
@@ -21031,8 +21284,8 @@ export default class Client extends OpenApi {
|
|
|
21031
21284
|
}
|
|
21032
21285
|
|
|
21033
21286
|
/**
|
|
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
|
|
21287
|
+
* * **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.
|
|
21288
|
+
* * 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
21289
|
* * If the listener cannot be queried, it indicates that the listener is deleted.
|
|
21037
21290
|
* * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
|
|
21038
21291
|
*
|
|
@@ -21174,6 +21427,35 @@ export default class Client extends OpenApi {
|
|
|
21174
21427
|
return await this.describeAcceleratorAutoRenewAttributeWithOptions(request, runtime);
|
|
21175
21428
|
}
|
|
21176
21429
|
|
|
21430
|
+
async describeAcceleratorServiceStatusWithOptions(request: DescribeAcceleratorServiceStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAcceleratorServiceStatusResponse> {
|
|
21431
|
+
Util.validateModel(request);
|
|
21432
|
+
let query = { };
|
|
21433
|
+
if (!Util.isUnset(request.regionId)) {
|
|
21434
|
+
query["RegionId"] = request.regionId;
|
|
21435
|
+
}
|
|
21436
|
+
|
|
21437
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
21438
|
+
query: OpenApiUtil.query(query),
|
|
21439
|
+
});
|
|
21440
|
+
let params = new $OpenApi.Params({
|
|
21441
|
+
action: "DescribeAcceleratorServiceStatus",
|
|
21442
|
+
version: "2019-11-20",
|
|
21443
|
+
protocol: "HTTPS",
|
|
21444
|
+
pathname: "/",
|
|
21445
|
+
method: "POST",
|
|
21446
|
+
authType: "AK",
|
|
21447
|
+
style: "RPC",
|
|
21448
|
+
reqBodyType: "formData",
|
|
21449
|
+
bodyType: "json",
|
|
21450
|
+
});
|
|
21451
|
+
return $tea.cast<DescribeAcceleratorServiceStatusResponse>(await this.callApi(params, req, runtime), new DescribeAcceleratorServiceStatusResponse({}));
|
|
21452
|
+
}
|
|
21453
|
+
|
|
21454
|
+
async describeAcceleratorServiceStatus(request: DescribeAcceleratorServiceStatusRequest): Promise<DescribeAcceleratorServiceStatusResponse> {
|
|
21455
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21456
|
+
return await this.describeAcceleratorServiceStatusWithOptions(request, runtime);
|
|
21457
|
+
}
|
|
21458
|
+
|
|
21177
21459
|
async describeApplicationMonitorWithOptions(request: DescribeApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationMonitorResponse> {
|
|
21178
21460
|
Util.validateModel(request);
|
|
21179
21461
|
let query = { };
|
|
@@ -23497,6 +23779,39 @@ export default class Client extends OpenApi {
|
|
|
23497
23779
|
return await this.listDomainsWithOptions(request, runtime);
|
|
23498
23780
|
}
|
|
23499
23781
|
|
|
23782
|
+
async listEndpointGroupIpAddressCidrBlocksWithOptions(request: ListEndpointGroupIpAddressCidrBlocksRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupIpAddressCidrBlocksResponse> {
|
|
23783
|
+
Util.validateModel(request);
|
|
23784
|
+
let query = { };
|
|
23785
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
23786
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
23787
|
+
}
|
|
23788
|
+
|
|
23789
|
+
if (!Util.isUnset(request.regionId)) {
|
|
23790
|
+
query["RegionId"] = request.regionId;
|
|
23791
|
+
}
|
|
23792
|
+
|
|
23793
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
23794
|
+
query: OpenApiUtil.query(query),
|
|
23795
|
+
});
|
|
23796
|
+
let params = new $OpenApi.Params({
|
|
23797
|
+
action: "ListEndpointGroupIpAddressCidrBlocks",
|
|
23798
|
+
version: "2019-11-20",
|
|
23799
|
+
protocol: "HTTPS",
|
|
23800
|
+
pathname: "/",
|
|
23801
|
+
method: "POST",
|
|
23802
|
+
authType: "AK",
|
|
23803
|
+
style: "RPC",
|
|
23804
|
+
reqBodyType: "formData",
|
|
23805
|
+
bodyType: "json",
|
|
23806
|
+
});
|
|
23807
|
+
return $tea.cast<ListEndpointGroupIpAddressCidrBlocksResponse>(await this.callApi(params, req, runtime), new ListEndpointGroupIpAddressCidrBlocksResponse({}));
|
|
23808
|
+
}
|
|
23809
|
+
|
|
23810
|
+
async listEndpointGroupIpAddressCidrBlocks(request: ListEndpointGroupIpAddressCidrBlocksRequest): Promise<ListEndpointGroupIpAddressCidrBlocksResponse> {
|
|
23811
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23812
|
+
return await this.listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime);
|
|
23813
|
+
}
|
|
23814
|
+
|
|
23500
23815
|
async listEndpointGroupsWithOptions(request: ListEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupsResponse> {
|
|
23501
23816
|
Util.validateModel(request);
|
|
23502
23817
|
let query = { };
|
|
@@ -23964,11 +24279,70 @@ export default class Client extends OpenApi {
|
|
|
23964
24279
|
return await this.listTagResourcesWithOptions(request, runtime);
|
|
23965
24280
|
}
|
|
23966
24281
|
|
|
24282
|
+
async openAcceleratorServiceWithOptions(request: OpenAcceleratorServiceRequest, runtime: $Util.RuntimeOptions): Promise<OpenAcceleratorServiceResponse> {
|
|
24283
|
+
Util.validateModel(request);
|
|
24284
|
+
let query = { };
|
|
24285
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
24286
|
+
query["ClientToken"] = request.clientToken;
|
|
24287
|
+
}
|
|
24288
|
+
|
|
24289
|
+
if (!Util.isUnset(request.regionId)) {
|
|
24290
|
+
query["RegionId"] = request.regionId;
|
|
24291
|
+
}
|
|
24292
|
+
|
|
24293
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
24294
|
+
query: OpenApiUtil.query(query),
|
|
24295
|
+
});
|
|
24296
|
+
let params = new $OpenApi.Params({
|
|
24297
|
+
action: "OpenAcceleratorService",
|
|
24298
|
+
version: "2019-11-20",
|
|
24299
|
+
protocol: "HTTPS",
|
|
24300
|
+
pathname: "/",
|
|
24301
|
+
method: "POST",
|
|
24302
|
+
authType: "AK",
|
|
24303
|
+
style: "RPC",
|
|
24304
|
+
reqBodyType: "formData",
|
|
24305
|
+
bodyType: "json",
|
|
24306
|
+
});
|
|
24307
|
+
return $tea.cast<OpenAcceleratorServiceResponse>(await this.callApi(params, req, runtime), new OpenAcceleratorServiceResponse({}));
|
|
24308
|
+
}
|
|
24309
|
+
|
|
24310
|
+
async openAcceleratorService(request: OpenAcceleratorServiceRequest): Promise<OpenAcceleratorServiceResponse> {
|
|
24311
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24312
|
+
return await this.openAcceleratorServiceWithOptions(request, runtime);
|
|
24313
|
+
}
|
|
24314
|
+
|
|
24315
|
+
async queryCrossBorderApprovalStatusWithOptions(request: QueryCrossBorderApprovalStatusRequest, runtime: $Util.RuntimeOptions): Promise<QueryCrossBorderApprovalStatusResponse> {
|
|
24316
|
+
Util.validateModel(request);
|
|
24317
|
+
let query = { };
|
|
24318
|
+
if (!Util.isUnset(request.regionId)) {
|
|
24319
|
+
query["RegionId"] = request.regionId;
|
|
24320
|
+
}
|
|
24321
|
+
|
|
24322
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
24323
|
+
query: OpenApiUtil.query(query),
|
|
24324
|
+
});
|
|
24325
|
+
let params = new $OpenApi.Params({
|
|
24326
|
+
action: "QueryCrossBorderApprovalStatus",
|
|
24327
|
+
version: "2019-11-20",
|
|
24328
|
+
protocol: "HTTPS",
|
|
24329
|
+
pathname: "/",
|
|
24330
|
+
method: "POST",
|
|
24331
|
+
authType: "AK",
|
|
24332
|
+
style: "RPC",
|
|
24333
|
+
reqBodyType: "formData",
|
|
24334
|
+
bodyType: "json",
|
|
24335
|
+
});
|
|
24336
|
+
return $tea.cast<QueryCrossBorderApprovalStatusResponse>(await this.callApi(params, req, runtime), new QueryCrossBorderApprovalStatusResponse({}));
|
|
24337
|
+
}
|
|
24338
|
+
|
|
24339
|
+
async queryCrossBorderApprovalStatus(request: QueryCrossBorderApprovalStatusRequest): Promise<QueryCrossBorderApprovalStatusResponse> {
|
|
24340
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24341
|
+
return await this.queryCrossBorderApprovalStatusWithOptions(request, runtime);
|
|
24342
|
+
}
|
|
24343
|
+
|
|
23967
24344
|
/**
|
|
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.
|
|
24345
|
+
* The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
|
|
23972
24346
|
*
|
|
23973
24347
|
* @param request RemoveEntriesFromAclRequest
|
|
23974
24348
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24015,10 +24389,7 @@ export default class Client extends OpenApi {
|
|
|
24015
24389
|
}
|
|
24016
24390
|
|
|
24017
24391
|
/**
|
|
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.
|
|
24392
|
+
* The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
|
|
24022
24393
|
*
|
|
24023
24394
|
* @param request RemoveEntriesFromAclRequest
|
|
24024
24395
|
* @return RemoveEntriesFromAclResponse
|
|
@@ -24344,8 +24715,8 @@ export default class Client extends OpenApi {
|
|
|
24344
24715
|
}
|
|
24345
24716
|
|
|
24346
24717
|
/**
|
|
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
|
|
24718
|
+
* 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:
|
|
24719
|
+
* * **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
24720
|
* * 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
24721
|
* * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
|
|
24351
24722
|
* * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
@@ -24383,8 +24754,8 @@ export default class Client extends OpenApi {
|
|
|
24383
24754
|
}
|
|
24384
24755
|
|
|
24385
24756
|
/**
|
|
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
|
|
24757
|
+
* 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:
|
|
24758
|
+
* * **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
24759
|
* * 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
24760
|
* * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
|
|
24390
24761
|
* * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
|
|
@@ -24397,6 +24768,16 @@ export default class Client extends OpenApi {
|
|
|
24397
24768
|
return await this.updateAcceleratorConfirmWithOptions(request, runtime);
|
|
24398
24769
|
}
|
|
24399
24770
|
|
|
24771
|
+
/**
|
|
24772
|
+
* ### Prerequisites
|
|
24773
|
+
* 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:
|
|
24774
|
+
* * 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.
|
|
24775
|
+
* * 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~~).
|
|
24776
|
+
*
|
|
24777
|
+
* @param request UpdateAcceleratorCrossBorderModeRequest
|
|
24778
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24779
|
+
* @return UpdateAcceleratorCrossBorderModeResponse
|
|
24780
|
+
*/
|
|
24400
24781
|
async updateAcceleratorCrossBorderModeWithOptions(request: UpdateAcceleratorCrossBorderModeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorCrossBorderModeResponse> {
|
|
24401
24782
|
Util.validateModel(request);
|
|
24402
24783
|
let query = { };
|
|
@@ -24433,6 +24814,15 @@ export default class Client extends OpenApi {
|
|
|
24433
24814
|
return $tea.cast<UpdateAcceleratorCrossBorderModeResponse>(await this.callApi(params, req, runtime), new UpdateAcceleratorCrossBorderModeResponse({}));
|
|
24434
24815
|
}
|
|
24435
24816
|
|
|
24817
|
+
/**
|
|
24818
|
+
* ### Prerequisites
|
|
24819
|
+
* 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:
|
|
24820
|
+
* * 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.
|
|
24821
|
+
* * 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~~).
|
|
24822
|
+
*
|
|
24823
|
+
* @param request UpdateAcceleratorCrossBorderModeRequest
|
|
24824
|
+
* @return UpdateAcceleratorCrossBorderModeResponse
|
|
24825
|
+
*/
|
|
24436
24826
|
async updateAcceleratorCrossBorderMode(request: UpdateAcceleratorCrossBorderModeRequest): Promise<UpdateAcceleratorCrossBorderModeResponse> {
|
|
24437
24827
|
let runtime = new $Util.RuntimeOptions({ });
|
|
24438
24828
|
return await this.updateAcceleratorCrossBorderModeWithOptions(request, runtime);
|
|
@@ -24710,15 +25100,15 @@ export default class Client extends OpenApi {
|
|
|
24710
25100
|
}
|
|
24711
25101
|
|
|
24712
25102
|
/**
|
|
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
|
-
* *
|
|
25103
|
+
* Take note of the following items:
|
|
25104
|
+
* * **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.
|
|
25105
|
+
* * **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.
|
|
25106
|
+
* * 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.
|
|
25107
|
+
* * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
|
|
25108
|
+
* * **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.
|
|
25109
|
+
* * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
|
|
25110
|
+
* * If the GA instance is in the **active** state, the bandwidth plan is modified.
|
|
25111
|
+
* * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
|
|
24722
25112
|
*
|
|
24723
25113
|
* @param request UpdateBandwidthPackageRequest
|
|
24724
25114
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24777,15 +25167,15 @@ export default class Client extends OpenApi {
|
|
|
24777
25167
|
}
|
|
24778
25168
|
|
|
24779
25169
|
/**
|
|
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
|
-
* *
|
|
25170
|
+
* Take note of the following items:
|
|
25171
|
+
* * **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.
|
|
25172
|
+
* * **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.
|
|
25173
|
+
* * 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.
|
|
25174
|
+
* * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
|
|
25175
|
+
* * **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.
|
|
25176
|
+
* * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
|
|
25177
|
+
* * If the GA instance is in the **active** state, the bandwidth plan is modified.
|
|
25178
|
+
* * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
|
|
24789
25179
|
*
|
|
24790
25180
|
* @param request UpdateBandwidthPackageRequest
|
|
24791
25181
|
* @return UpdateBandwidthPackageResponse
|
|
@@ -25135,9 +25525,9 @@ export default class Client extends OpenApi {
|
|
|
25135
25525
|
}
|
|
25136
25526
|
|
|
25137
25527
|
/**
|
|
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,
|
|
25528
|
+
* * **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.
|
|
25529
|
+
* * 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.
|
|
25530
|
+
* * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
|
|
25141
25531
|
* * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
25142
25532
|
*
|
|
25143
25533
|
* @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
|
|
@@ -25181,9 +25571,9 @@ export default class Client extends OpenApi {
|
|
|
25181
25571
|
}
|
|
25182
25572
|
|
|
25183
25573
|
/**
|
|
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,
|
|
25574
|
+
* * **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.
|
|
25575
|
+
* * 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.
|
|
25576
|
+
* * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
|
|
25187
25577
|
* * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
25188
25578
|
*
|
|
25189
25579
|
* @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
|
|
@@ -25255,9 +25645,8 @@ export default class Client extends OpenApi {
|
|
|
25255
25645
|
}
|
|
25256
25646
|
|
|
25257
25647
|
/**
|
|
25258
|
-
*
|
|
25259
|
-
* You
|
|
25260
|
-
* You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
|
|
25648
|
+
* 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.
|
|
25649
|
+
* You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
|
|
25261
25650
|
*
|
|
25262
25651
|
* @param request UpdateDomainRequest
|
|
25263
25652
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25296,9 +25685,8 @@ export default class Client extends OpenApi {
|
|
|
25296
25685
|
}
|
|
25297
25686
|
|
|
25298
25687
|
/**
|
|
25299
|
-
*
|
|
25300
|
-
* You
|
|
25301
|
-
* You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
|
|
25688
|
+
* 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.
|
|
25689
|
+
* You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
|
|
25302
25690
|
*
|
|
25303
25691
|
* @param request UpdateDomainRequest
|
|
25304
25692
|
* @return UpdateDomainResponse
|
|
@@ -25309,8 +25697,8 @@ export default class Client extends OpenApi {
|
|
|
25309
25697
|
}
|
|
25310
25698
|
|
|
25311
25699
|
/**
|
|
25312
|
-
* You can call this operation to
|
|
25313
|
-
*
|
|
25700
|
+
* You can call this operation to query and update the ICP filing status of an accelerated domain name.
|
|
25701
|
+
* 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
25702
|
*
|
|
25315
25703
|
* @param request UpdateDomainStateRequest
|
|
25316
25704
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25345,8 +25733,8 @@ export default class Client extends OpenApi {
|
|
|
25345
25733
|
}
|
|
25346
25734
|
|
|
25347
25735
|
/**
|
|
25348
|
-
* You can call this operation to
|
|
25349
|
-
*
|
|
25736
|
+
* You can call this operation to query and update the ICP filing status of an accelerated domain name.
|
|
25737
|
+
* 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
25738
|
*
|
|
25351
25739
|
* @param request UpdateDomainStateRequest
|
|
25352
25740
|
* @return UpdateDomainStateResponse
|
|
@@ -25638,11 +26026,10 @@ export default class Client extends OpenApi {
|
|
|
25638
26026
|
}
|
|
25639
26027
|
|
|
25640
26028
|
/**
|
|
25641
|
-
* ## Usage notes
|
|
25642
26029
|
* * **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
|
-
* *
|
|
26030
|
+
* * 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.
|
|
26031
|
+
* * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
|
|
26032
|
+
* * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
|
|
25646
26033
|
*
|
|
25647
26034
|
* @param request UpdateIpSetRequest
|
|
25648
26035
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25685,11 +26072,10 @@ export default class Client extends OpenApi {
|
|
|
25685
26072
|
}
|
|
25686
26073
|
|
|
25687
26074
|
/**
|
|
25688
|
-
* ## Usage notes
|
|
25689
26075
|
* * **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
|
-
* *
|
|
26076
|
+
* * 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.
|
|
26077
|
+
* * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
|
|
26078
|
+
* * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
|
|
25693
26079
|
*
|
|
25694
26080
|
* @param request UpdateIpSetRequest
|
|
25695
26081
|
* @return UpdateIpSetResponse
|
|
@@ -25700,10 +26086,10 @@ export default class Client extends OpenApi {
|
|
|
25700
26086
|
}
|
|
25701
26087
|
|
|
25702
26088
|
/**
|
|
25703
|
-
* * **UpdateIpSet** is an asynchronous operation. After
|
|
25704
|
-
* * If
|
|
25705
|
-
* * If
|
|
25706
|
-
* *
|
|
26089
|
+
* * **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.
|
|
26090
|
+
* * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
|
|
26091
|
+
* * If an acceleration region is in the **active** state, the acceleration region is modified.
|
|
26092
|
+
* * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
|
|
25707
26093
|
*
|
|
25708
26094
|
* @param request UpdateIpSetsRequest
|
|
25709
26095
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25738,10 +26124,10 @@ export default class Client extends OpenApi {
|
|
|
25738
26124
|
}
|
|
25739
26125
|
|
|
25740
26126
|
/**
|
|
25741
|
-
* * **UpdateIpSet** is an asynchronous operation. After
|
|
25742
|
-
* * If
|
|
25743
|
-
* * If
|
|
25744
|
-
* *
|
|
26127
|
+
* * **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.
|
|
26128
|
+
* * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
|
|
26129
|
+
* * If an acceleration region is in the **active** state, the acceleration region is modified.
|
|
26130
|
+
* * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
|
|
25745
26131
|
*
|
|
25746
26132
|
* @param request UpdateIpSetsRequest
|
|
25747
26133
|
* @return UpdateIpSetsResponse
|
|
@@ -25752,9 +26138,9 @@ export default class Client extends OpenApi {
|
|
|
25752
26138
|
}
|
|
25753
26139
|
|
|
25754
26140
|
/**
|
|
25755
|
-
* This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
|
|
26141
|
+
* This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
|
|
25756
26142
|
* 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
|
|
26143
|
+
* * **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
26144
|
* * 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
26145
|
* * If the listener is in the **active** state, it indicates that its configurations are modified.
|
|
25760
26146
|
* * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.
|
|
@@ -25836,9 +26222,9 @@ export default class Client extends OpenApi {
|
|
|
25836
26222
|
}
|
|
25837
26223
|
|
|
25838
26224
|
/**
|
|
25839
|
-
* This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
|
|
26225
|
+
* This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
|
|
25840
26226
|
* 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
|
|
26227
|
+
* * **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
26228
|
* * 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
26229
|
* * If the listener is in the **active** state, it indicates that its configurations are modified.
|
|
25844
26230
|
* * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.
|