@alicloud/ga20191120 1.0.13 → 1.0.14
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 +247 -0
- package/dist/client.js +438 -3
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +557 -3
package/src/client.ts
CHANGED
|
@@ -560,6 +560,81 @@ export class BandwidthPackageRemoveAcceleratorResponse extends $tea.Model {
|
|
|
560
560
|
}
|
|
561
561
|
}
|
|
562
562
|
|
|
563
|
+
export class ChangeResourceGroupRequest extends $tea.Model {
|
|
564
|
+
clientToken?: string;
|
|
565
|
+
newResourceGroupId?: string;
|
|
566
|
+
regionId?: string;
|
|
567
|
+
resourceId?: string;
|
|
568
|
+
resourceType?: string;
|
|
569
|
+
static names(): { [key: string]: string } {
|
|
570
|
+
return {
|
|
571
|
+
clientToken: 'ClientToken',
|
|
572
|
+
newResourceGroupId: 'NewResourceGroupId',
|
|
573
|
+
regionId: 'RegionId',
|
|
574
|
+
resourceId: 'ResourceId',
|
|
575
|
+
resourceType: 'ResourceType',
|
|
576
|
+
};
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
static types(): { [key: string]: any } {
|
|
580
|
+
return {
|
|
581
|
+
clientToken: 'string',
|
|
582
|
+
newResourceGroupId: 'string',
|
|
583
|
+
regionId: 'string',
|
|
584
|
+
resourceId: 'string',
|
|
585
|
+
resourceType: 'string',
|
|
586
|
+
};
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
constructor(map?: { [key: string]: any }) {
|
|
590
|
+
super(map);
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
export class ChangeResourceGroupResponseBody extends $tea.Model {
|
|
595
|
+
requestId?: string;
|
|
596
|
+
static names(): { [key: string]: string } {
|
|
597
|
+
return {
|
|
598
|
+
requestId: 'RequestId',
|
|
599
|
+
};
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
static types(): { [key: string]: any } {
|
|
603
|
+
return {
|
|
604
|
+
requestId: 'string',
|
|
605
|
+
};
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
constructor(map?: { [key: string]: any }) {
|
|
609
|
+
super(map);
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
export class ChangeResourceGroupResponse extends $tea.Model {
|
|
614
|
+
headers: { [key: string]: string };
|
|
615
|
+
statusCode: number;
|
|
616
|
+
body: ChangeResourceGroupResponseBody;
|
|
617
|
+
static names(): { [key: string]: string } {
|
|
618
|
+
return {
|
|
619
|
+
headers: 'headers',
|
|
620
|
+
statusCode: 'statusCode',
|
|
621
|
+
body: 'body',
|
|
622
|
+
};
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
static types(): { [key: string]: any } {
|
|
626
|
+
return {
|
|
627
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
628
|
+
statusCode: 'number',
|
|
629
|
+
body: ChangeResourceGroupResponseBody,
|
|
630
|
+
};
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
constructor(map?: { [key: string]: any }) {
|
|
634
|
+
super(map);
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
|
|
563
638
|
export class ConfigEndpointProbeRequest extends $tea.Model {
|
|
564
639
|
clientToken?: string;
|
|
565
640
|
enable?: string;
|
|
@@ -656,6 +731,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
656
731
|
name?: string;
|
|
657
732
|
pricingCycle?: string;
|
|
658
733
|
regionId?: string;
|
|
734
|
+
resourceGroupId?: string;
|
|
659
735
|
spec?: string;
|
|
660
736
|
static names(): { [key: string]: string } {
|
|
661
737
|
return {
|
|
@@ -670,6 +746,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
670
746
|
name: 'Name',
|
|
671
747
|
pricingCycle: 'PricingCycle',
|
|
672
748
|
regionId: 'RegionId',
|
|
749
|
+
resourceGroupId: 'ResourceGroupId',
|
|
673
750
|
spec: 'Spec',
|
|
674
751
|
};
|
|
675
752
|
}
|
|
@@ -687,6 +764,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
687
764
|
name: 'string',
|
|
688
765
|
pricingCycle: 'string',
|
|
689
766
|
regionId: 'string',
|
|
767
|
+
resourceGroupId: 'string',
|
|
690
768
|
spec: 'string',
|
|
691
769
|
};
|
|
692
770
|
}
|
|
@@ -753,6 +831,7 @@ export class CreateAclRequest extends $tea.Model {
|
|
|
753
831
|
clientToken?: string;
|
|
754
832
|
dryRun?: boolean;
|
|
755
833
|
regionId?: string;
|
|
834
|
+
resourceGroupId?: string;
|
|
756
835
|
static names(): { [key: string]: string } {
|
|
757
836
|
return {
|
|
758
837
|
aclEntries: 'AclEntries',
|
|
@@ -761,6 +840,7 @@ export class CreateAclRequest extends $tea.Model {
|
|
|
761
840
|
clientToken: 'ClientToken',
|
|
762
841
|
dryRun: 'DryRun',
|
|
763
842
|
regionId: 'RegionId',
|
|
843
|
+
resourceGroupId: 'ResourceGroupId',
|
|
764
844
|
};
|
|
765
845
|
}
|
|
766
846
|
|
|
@@ -772,6 +852,7 @@ export class CreateAclRequest extends $tea.Model {
|
|
|
772
852
|
clientToken: 'string',
|
|
773
853
|
dryRun: 'boolean',
|
|
774
854
|
regionId: 'string',
|
|
855
|
+
resourceGroupId: 'string',
|
|
775
856
|
};
|
|
776
857
|
}
|
|
777
858
|
|
|
@@ -939,6 +1020,7 @@ export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
|
939
1020
|
pricingCycle?: string;
|
|
940
1021
|
ratio?: number;
|
|
941
1022
|
regionId?: string;
|
|
1023
|
+
resourceGroupId?: string;
|
|
942
1024
|
type?: string;
|
|
943
1025
|
static names(): { [key: string]: string } {
|
|
944
1026
|
return {
|
|
@@ -957,6 +1039,7 @@ export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
|
957
1039
|
pricingCycle: 'PricingCycle',
|
|
958
1040
|
ratio: 'Ratio',
|
|
959
1041
|
regionId: 'RegionId',
|
|
1042
|
+
resourceGroupId: 'ResourceGroupId',
|
|
960
1043
|
type: 'Type',
|
|
961
1044
|
};
|
|
962
1045
|
}
|
|
@@ -978,6 +1061,7 @@ export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
|
978
1061
|
pricingCycle: 'string',
|
|
979
1062
|
ratio: 'number',
|
|
980
1063
|
regionId: 'string',
|
|
1064
|
+
resourceGroupId: 'string',
|
|
981
1065
|
type: 'string',
|
|
982
1066
|
};
|
|
983
1067
|
}
|
|
@@ -1047,6 +1131,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
|
|
|
1047
1131
|
duration?: number;
|
|
1048
1132
|
pricingCycle?: string;
|
|
1049
1133
|
regionId?: string;
|
|
1134
|
+
resourceGroupId?: string;
|
|
1050
1135
|
static names(): { [key: string]: string } {
|
|
1051
1136
|
return {
|
|
1052
1137
|
autoPay: 'AutoPay',
|
|
@@ -1058,6 +1143,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
|
|
|
1058
1143
|
duration: 'Duration',
|
|
1059
1144
|
pricingCycle: 'PricingCycle',
|
|
1060
1145
|
regionId: 'RegionId',
|
|
1146
|
+
resourceGroupId: 'ResourceGroupId',
|
|
1061
1147
|
};
|
|
1062
1148
|
}
|
|
1063
1149
|
|
|
@@ -1072,6 +1158,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
|
|
|
1072
1158
|
duration: 'number',
|
|
1073
1159
|
pricingCycle: 'string',
|
|
1074
1160
|
regionId: 'string',
|
|
1161
|
+
resourceGroupId: 'string',
|
|
1075
1162
|
};
|
|
1076
1163
|
}
|
|
1077
1164
|
|
|
@@ -3470,9 +3557,11 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
3470
3557
|
name?: string;
|
|
3471
3558
|
regionId?: string;
|
|
3472
3559
|
requestId?: string;
|
|
3560
|
+
resourceGroupId?: string;
|
|
3473
3561
|
secondDnsName?: string;
|
|
3474
3562
|
spec?: string;
|
|
3475
3563
|
state?: string;
|
|
3564
|
+
tags?: DescribeAcceleratorResponseBodyTags[];
|
|
3476
3565
|
static names(): { [key: string]: string } {
|
|
3477
3566
|
return {
|
|
3478
3567
|
acceleratorId: 'AcceleratorId',
|
|
@@ -3491,9 +3580,11 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
3491
3580
|
name: 'Name',
|
|
3492
3581
|
regionId: 'RegionId',
|
|
3493
3582
|
requestId: 'RequestId',
|
|
3583
|
+
resourceGroupId: 'ResourceGroupId',
|
|
3494
3584
|
secondDnsName: 'SecondDnsName',
|
|
3495
3585
|
spec: 'Spec',
|
|
3496
3586
|
state: 'State',
|
|
3587
|
+
tags: 'Tags',
|
|
3497
3588
|
};
|
|
3498
3589
|
}
|
|
3499
3590
|
|
|
@@ -3515,9 +3606,11 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
3515
3606
|
name: 'string',
|
|
3516
3607
|
regionId: 'string',
|
|
3517
3608
|
requestId: 'string',
|
|
3609
|
+
resourceGroupId: 'string',
|
|
3518
3610
|
secondDnsName: 'string',
|
|
3519
3611
|
spec: 'string',
|
|
3520
3612
|
state: 'string',
|
|
3613
|
+
tags: { 'type': 'array', 'itemType': DescribeAcceleratorResponseBodyTags },
|
|
3521
3614
|
};
|
|
3522
3615
|
}
|
|
3523
3616
|
|
|
@@ -3772,7 +3865,9 @@ export class DescribeBandwidthPackageResponseBody extends $tea.Model {
|
|
|
3772
3865
|
ratio?: number;
|
|
3773
3866
|
regionId?: string;
|
|
3774
3867
|
requestId?: string;
|
|
3868
|
+
resourceGroupId?: string;
|
|
3775
3869
|
state?: string;
|
|
3870
|
+
tags?: DescribeBandwidthPackageResponseBodyTags[];
|
|
3776
3871
|
type?: string;
|
|
3777
3872
|
static names(): { [key: string]: string } {
|
|
3778
3873
|
return {
|
|
@@ -3791,7 +3886,9 @@ export class DescribeBandwidthPackageResponseBody extends $tea.Model {
|
|
|
3791
3886
|
ratio: 'Ratio',
|
|
3792
3887
|
regionId: 'RegionId',
|
|
3793
3888
|
requestId: 'RequestId',
|
|
3889
|
+
resourceGroupId: 'ResourceGroupId',
|
|
3794
3890
|
state: 'State',
|
|
3891
|
+
tags: 'Tags',
|
|
3795
3892
|
type: 'Type',
|
|
3796
3893
|
};
|
|
3797
3894
|
}
|
|
@@ -3813,7 +3910,9 @@ export class DescribeBandwidthPackageResponseBody extends $tea.Model {
|
|
|
3813
3910
|
ratio: 'number',
|
|
3814
3911
|
regionId: 'string',
|
|
3815
3912
|
requestId: 'string',
|
|
3913
|
+
resourceGroupId: 'string',
|
|
3816
3914
|
state: 'string',
|
|
3915
|
+
tags: { 'type': 'array', 'itemType': DescribeBandwidthPackageResponseBodyTags },
|
|
3817
3916
|
type: 'string',
|
|
3818
3917
|
};
|
|
3819
3918
|
}
|
|
@@ -5255,6 +5354,8 @@ export class GetAclResponseBody extends $tea.Model {
|
|
|
5255
5354
|
addressIPVersion?: string;
|
|
5256
5355
|
relatedListeners?: GetAclResponseBodyRelatedListeners[];
|
|
5257
5356
|
requestId?: string;
|
|
5357
|
+
resourceGroupId?: string;
|
|
5358
|
+
tags?: GetAclResponseBodyTags[];
|
|
5258
5359
|
static names(): { [key: string]: string } {
|
|
5259
5360
|
return {
|
|
5260
5361
|
aclEntries: 'AclEntries',
|
|
@@ -5264,6 +5365,8 @@ export class GetAclResponseBody extends $tea.Model {
|
|
|
5264
5365
|
addressIPVersion: 'AddressIPVersion',
|
|
5265
5366
|
relatedListeners: 'RelatedListeners',
|
|
5266
5367
|
requestId: 'RequestId',
|
|
5368
|
+
resourceGroupId: 'ResourceGroupId',
|
|
5369
|
+
tags: 'Tags',
|
|
5267
5370
|
};
|
|
5268
5371
|
}
|
|
5269
5372
|
|
|
@@ -5276,6 +5379,8 @@ export class GetAclResponseBody extends $tea.Model {
|
|
|
5276
5379
|
addressIPVersion: 'string',
|
|
5277
5380
|
relatedListeners: { 'type': 'array', 'itemType': GetAclResponseBodyRelatedListeners },
|
|
5278
5381
|
requestId: 'string',
|
|
5382
|
+
resourceGroupId: 'string',
|
|
5383
|
+
tags: { 'type': 'array', 'itemType': GetAclResponseBodyTags },
|
|
5279
5384
|
};
|
|
5280
5385
|
}
|
|
5281
5386
|
|
|
@@ -5347,7 +5452,9 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
5347
5452
|
name?: string;
|
|
5348
5453
|
regionId?: string;
|
|
5349
5454
|
requestId?: string;
|
|
5455
|
+
resourceGroupId?: string;
|
|
5350
5456
|
state?: string;
|
|
5457
|
+
tags?: GetBasicAcceleratorResponseBodyTags[];
|
|
5351
5458
|
static names(): { [key: string]: string } {
|
|
5352
5459
|
return {
|
|
5353
5460
|
acceleratorId: 'AcceleratorId',
|
|
@@ -5365,7 +5472,9 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
5365
5472
|
name: 'Name',
|
|
5366
5473
|
regionId: 'RegionId',
|
|
5367
5474
|
requestId: 'RequestId',
|
|
5475
|
+
resourceGroupId: 'ResourceGroupId',
|
|
5368
5476
|
state: 'State',
|
|
5477
|
+
tags: 'Tags',
|
|
5369
5478
|
};
|
|
5370
5479
|
}
|
|
5371
5480
|
|
|
@@ -5386,7 +5495,9 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
5386
5495
|
name: 'string',
|
|
5387
5496
|
regionId: 'string',
|
|
5388
5497
|
requestId: 'string',
|
|
5498
|
+
resourceGroupId: 'string',
|
|
5389
5499
|
state: 'string',
|
|
5500
|
+
tags: { 'type': 'array', 'itemType': GetBasicAcceleratorResponseBodyTags },
|
|
5390
5501
|
};
|
|
5391
5502
|
}
|
|
5392
5503
|
|
|
@@ -5842,14 +5953,18 @@ export class ListAcceleratorsRequest extends $tea.Model {
|
|
|
5842
5953
|
pageNumber?: number;
|
|
5843
5954
|
pageSize?: number;
|
|
5844
5955
|
regionId?: string;
|
|
5956
|
+
resourceGroupId?: string;
|
|
5845
5957
|
state?: string;
|
|
5958
|
+
tag?: ListAcceleratorsRequestTag[];
|
|
5846
5959
|
static names(): { [key: string]: string } {
|
|
5847
5960
|
return {
|
|
5848
5961
|
acceleratorId: 'AcceleratorId',
|
|
5849
5962
|
pageNumber: 'PageNumber',
|
|
5850
5963
|
pageSize: 'PageSize',
|
|
5851
5964
|
regionId: 'RegionId',
|
|
5965
|
+
resourceGroupId: 'ResourceGroupId',
|
|
5852
5966
|
state: 'State',
|
|
5967
|
+
tag: 'Tag',
|
|
5853
5968
|
};
|
|
5854
5969
|
}
|
|
5855
5970
|
|
|
@@ -5859,7 +5974,9 @@ export class ListAcceleratorsRequest extends $tea.Model {
|
|
|
5859
5974
|
pageNumber: 'number',
|
|
5860
5975
|
pageSize: 'number',
|
|
5861
5976
|
regionId: 'string',
|
|
5977
|
+
resourceGroupId: 'string',
|
|
5862
5978
|
state: 'string',
|
|
5979
|
+
tag: { 'type': 'array', 'itemType': ListAcceleratorsRequestTag },
|
|
5863
5980
|
};
|
|
5864
5981
|
}
|
|
5865
5982
|
|
|
@@ -5931,6 +6048,8 @@ export class ListAclsRequest extends $tea.Model {
|
|
|
5931
6048
|
maxResults?: number;
|
|
5932
6049
|
nextToken?: string;
|
|
5933
6050
|
regionId?: string;
|
|
6051
|
+
resourceGroupId?: string;
|
|
6052
|
+
tag?: ListAclsRequestTag[];
|
|
5934
6053
|
static names(): { [key: string]: string } {
|
|
5935
6054
|
return {
|
|
5936
6055
|
aclIds: 'AclIds',
|
|
@@ -5939,6 +6058,8 @@ export class ListAclsRequest extends $tea.Model {
|
|
|
5939
6058
|
maxResults: 'MaxResults',
|
|
5940
6059
|
nextToken: 'NextToken',
|
|
5941
6060
|
regionId: 'RegionId',
|
|
6061
|
+
resourceGroupId: 'ResourceGroupId',
|
|
6062
|
+
tag: 'Tag',
|
|
5942
6063
|
};
|
|
5943
6064
|
}
|
|
5944
6065
|
|
|
@@ -5950,6 +6071,8 @@ export class ListAclsRequest extends $tea.Model {
|
|
|
5950
6071
|
maxResults: 'number',
|
|
5951
6072
|
nextToken: 'string',
|
|
5952
6073
|
regionId: 'string',
|
|
6074
|
+
resourceGroupId: 'string',
|
|
6075
|
+
tag: { 'type': 'array', 'itemType': ListAclsRequestTag },
|
|
5953
6076
|
};
|
|
5954
6077
|
}
|
|
5955
6078
|
|
|
@@ -6331,7 +6454,9 @@ export class ListBandwidthPackagesRequest extends $tea.Model {
|
|
|
6331
6454
|
pageNumber?: number;
|
|
6332
6455
|
pageSize?: number;
|
|
6333
6456
|
regionId?: string;
|
|
6457
|
+
resourceGroupId?: string;
|
|
6334
6458
|
state?: string;
|
|
6459
|
+
tag?: ListBandwidthPackagesRequestTag[];
|
|
6335
6460
|
type?: string;
|
|
6336
6461
|
static names(): { [key: string]: string } {
|
|
6337
6462
|
return {
|
|
@@ -6339,7 +6464,9 @@ export class ListBandwidthPackagesRequest extends $tea.Model {
|
|
|
6339
6464
|
pageNumber: 'PageNumber',
|
|
6340
6465
|
pageSize: 'PageSize',
|
|
6341
6466
|
regionId: 'RegionId',
|
|
6467
|
+
resourceGroupId: 'ResourceGroupId',
|
|
6342
6468
|
state: 'State',
|
|
6469
|
+
tag: 'Tag',
|
|
6343
6470
|
type: 'Type',
|
|
6344
6471
|
};
|
|
6345
6472
|
}
|
|
@@ -6350,7 +6477,9 @@ export class ListBandwidthPackagesRequest extends $tea.Model {
|
|
|
6350
6477
|
pageNumber: 'number',
|
|
6351
6478
|
pageSize: 'number',
|
|
6352
6479
|
regionId: 'string',
|
|
6480
|
+
resourceGroupId: 'string',
|
|
6353
6481
|
state: 'string',
|
|
6482
|
+
tag: { 'type': 'array', 'itemType': ListBandwidthPackagesRequestTag },
|
|
6354
6483
|
type: 'string',
|
|
6355
6484
|
};
|
|
6356
6485
|
}
|
|
@@ -6502,14 +6631,18 @@ export class ListBasicAcceleratorsRequest extends $tea.Model {
|
|
|
6502
6631
|
pageNumber?: number;
|
|
6503
6632
|
pageSize?: number;
|
|
6504
6633
|
regionId?: string;
|
|
6634
|
+
resourceGroupId?: string;
|
|
6505
6635
|
state?: string;
|
|
6636
|
+
tag?: ListBasicAcceleratorsRequestTag[];
|
|
6506
6637
|
static names(): { [key: string]: string } {
|
|
6507
6638
|
return {
|
|
6508
6639
|
acceleratorId: 'AcceleratorId',
|
|
6509
6640
|
pageNumber: 'PageNumber',
|
|
6510
6641
|
pageSize: 'PageSize',
|
|
6511
6642
|
regionId: 'RegionId',
|
|
6643
|
+
resourceGroupId: 'ResourceGroupId',
|
|
6512
6644
|
state: 'State',
|
|
6645
|
+
tag: 'Tag',
|
|
6513
6646
|
};
|
|
6514
6647
|
}
|
|
6515
6648
|
|
|
@@ -6519,7 +6652,9 @@ export class ListBasicAcceleratorsRequest extends $tea.Model {
|
|
|
6519
6652
|
pageNumber: 'number',
|
|
6520
6653
|
pageSize: 'number',
|
|
6521
6654
|
regionId: 'string',
|
|
6655
|
+
resourceGroupId: 'string',
|
|
6522
6656
|
state: 'string',
|
|
6657
|
+
tag: { 'type': 'array', 'itemType': ListBasicAcceleratorsRequestTag },
|
|
6523
6658
|
};
|
|
6524
6659
|
}
|
|
6525
6660
|
|
|
@@ -7884,11 +8019,13 @@ export class RemoveEntriesFromAclResponse extends $tea.Model {
|
|
|
7884
8019
|
}
|
|
7885
8020
|
|
|
7886
8021
|
export class ReplaceBandwidthPackageRequest extends $tea.Model {
|
|
8022
|
+
acceleratorId?: string;
|
|
7887
8023
|
bandwidthPackageId?: string;
|
|
7888
8024
|
regionId?: string;
|
|
7889
8025
|
targetBandwidthPackageId?: string;
|
|
7890
8026
|
static names(): { [key: string]: string } {
|
|
7891
8027
|
return {
|
|
8028
|
+
acceleratorId: 'AcceleratorId',
|
|
7892
8029
|
bandwidthPackageId: 'BandwidthPackageId',
|
|
7893
8030
|
regionId: 'RegionId',
|
|
7894
8031
|
targetBandwidthPackageId: 'TargetBandwidthPackageId',
|
|
@@ -7897,6 +8034,7 @@ export class ReplaceBandwidthPackageRequest extends $tea.Model {
|
|
|
7897
8034
|
|
|
7898
8035
|
static types(): { [key: string]: any } {
|
|
7899
8036
|
return {
|
|
8037
|
+
acceleratorId: 'string',
|
|
7900
8038
|
bandwidthPackageId: 'string',
|
|
7901
8039
|
regionId: 'string',
|
|
7902
8040
|
targetBandwidthPackageId: 'string',
|
|
@@ -10790,6 +10928,28 @@ export class DescribeAcceleratorResponseBodyIpSetConfig extends $tea.Model {
|
|
|
10790
10928
|
}
|
|
10791
10929
|
}
|
|
10792
10930
|
|
|
10931
|
+
export class DescribeAcceleratorResponseBodyTags extends $tea.Model {
|
|
10932
|
+
key?: string;
|
|
10933
|
+
value?: string;
|
|
10934
|
+
static names(): { [key: string]: string } {
|
|
10935
|
+
return {
|
|
10936
|
+
key: 'Key',
|
|
10937
|
+
value: 'Value',
|
|
10938
|
+
};
|
|
10939
|
+
}
|
|
10940
|
+
|
|
10941
|
+
static types(): { [key: string]: any } {
|
|
10942
|
+
return {
|
|
10943
|
+
key: 'string',
|
|
10944
|
+
value: 'string',
|
|
10945
|
+
};
|
|
10946
|
+
}
|
|
10947
|
+
|
|
10948
|
+
constructor(map?: { [key: string]: any }) {
|
|
10949
|
+
super(map);
|
|
10950
|
+
}
|
|
10951
|
+
}
|
|
10952
|
+
|
|
10793
10953
|
export class DescribeApplicationMonitorResponseBodyIspCityList extends $tea.Model {
|
|
10794
10954
|
city?: string;
|
|
10795
10955
|
cityName?: string;
|
|
@@ -10818,6 +10978,28 @@ export class DescribeApplicationMonitorResponseBodyIspCityList extends $tea.Mode
|
|
|
10818
10978
|
}
|
|
10819
10979
|
}
|
|
10820
10980
|
|
|
10981
|
+
export class DescribeBandwidthPackageResponseBodyTags extends $tea.Model {
|
|
10982
|
+
key?: string;
|
|
10983
|
+
value?: string;
|
|
10984
|
+
static names(): { [key: string]: string } {
|
|
10985
|
+
return {
|
|
10986
|
+
key: 'Key',
|
|
10987
|
+
value: 'Value',
|
|
10988
|
+
};
|
|
10989
|
+
}
|
|
10990
|
+
|
|
10991
|
+
static types(): { [key: string]: any } {
|
|
10992
|
+
return {
|
|
10993
|
+
key: 'string',
|
|
10994
|
+
value: 'string',
|
|
10995
|
+
};
|
|
10996
|
+
}
|
|
10997
|
+
|
|
10998
|
+
constructor(map?: { [key: string]: any }) {
|
|
10999
|
+
super(map);
|
|
11000
|
+
}
|
|
11001
|
+
}
|
|
11002
|
+
|
|
10821
11003
|
export class DescribeCustomRoutingEndPointTrafficPolicyResponseBodyPortRanges extends $tea.Model {
|
|
10822
11004
|
fromPort?: number;
|
|
10823
11005
|
toPort?: number;
|
|
@@ -11084,6 +11266,28 @@ export class GetAclResponseBodyRelatedListeners extends $tea.Model {
|
|
|
11084
11266
|
}
|
|
11085
11267
|
}
|
|
11086
11268
|
|
|
11269
|
+
export class GetAclResponseBodyTags extends $tea.Model {
|
|
11270
|
+
key?: string;
|
|
11271
|
+
value?: string;
|
|
11272
|
+
static names(): { [key: string]: string } {
|
|
11273
|
+
return {
|
|
11274
|
+
key: 'Key',
|
|
11275
|
+
value: 'Value',
|
|
11276
|
+
};
|
|
11277
|
+
}
|
|
11278
|
+
|
|
11279
|
+
static types(): { [key: string]: any } {
|
|
11280
|
+
return {
|
|
11281
|
+
key: 'string',
|
|
11282
|
+
value: 'string',
|
|
11283
|
+
};
|
|
11284
|
+
}
|
|
11285
|
+
|
|
11286
|
+
constructor(map?: { [key: string]: any }) {
|
|
11287
|
+
super(map);
|
|
11288
|
+
}
|
|
11289
|
+
}
|
|
11290
|
+
|
|
11087
11291
|
export class GetBasicAcceleratorResponseBodyBasicBandwidthPackage extends $tea.Model {
|
|
11088
11292
|
bandwidth?: number;
|
|
11089
11293
|
bandwidthType?: string;
|
|
@@ -11131,6 +11335,28 @@ export class GetBasicAcceleratorResponseBodyCrossDomainBandwidthPackage extends
|
|
|
11131
11335
|
}
|
|
11132
11336
|
}
|
|
11133
11337
|
|
|
11338
|
+
export class GetBasicAcceleratorResponseBodyTags extends $tea.Model {
|
|
11339
|
+
key?: string;
|
|
11340
|
+
value?: string;
|
|
11341
|
+
static names(): { [key: string]: string } {
|
|
11342
|
+
return {
|
|
11343
|
+
key: 'Key',
|
|
11344
|
+
value: 'Value',
|
|
11345
|
+
};
|
|
11346
|
+
}
|
|
11347
|
+
|
|
11348
|
+
static types(): { [key: string]: any } {
|
|
11349
|
+
return {
|
|
11350
|
+
key: 'string',
|
|
11351
|
+
value: 'string',
|
|
11352
|
+
};
|
|
11353
|
+
}
|
|
11354
|
+
|
|
11355
|
+
constructor(map?: { [key: string]: any }) {
|
|
11356
|
+
super(map);
|
|
11357
|
+
}
|
|
11358
|
+
}
|
|
11359
|
+
|
|
11134
11360
|
export class GetHealthStatusResponseBodyEndpointGroupsEndpoints extends $tea.Model {
|
|
11135
11361
|
address?: string;
|
|
11136
11362
|
endpointId?: string;
|
|
@@ -11243,6 +11469,28 @@ export class ListAccelerateAreasResponseBodyAreas extends $tea.Model {
|
|
|
11243
11469
|
}
|
|
11244
11470
|
}
|
|
11245
11471
|
|
|
11472
|
+
export class ListAcceleratorsRequestTag extends $tea.Model {
|
|
11473
|
+
key?: string;
|
|
11474
|
+
value?: string;
|
|
11475
|
+
static names(): { [key: string]: string } {
|
|
11476
|
+
return {
|
|
11477
|
+
key: 'Key',
|
|
11478
|
+
value: 'Value',
|
|
11479
|
+
};
|
|
11480
|
+
}
|
|
11481
|
+
|
|
11482
|
+
static types(): { [key: string]: any } {
|
|
11483
|
+
return {
|
|
11484
|
+
key: 'string',
|
|
11485
|
+
value: 'string',
|
|
11486
|
+
};
|
|
11487
|
+
}
|
|
11488
|
+
|
|
11489
|
+
constructor(map?: { [key: string]: any }) {
|
|
11490
|
+
super(map);
|
|
11491
|
+
}
|
|
11492
|
+
}
|
|
11493
|
+
|
|
11246
11494
|
export class ListAcceleratorsResponseBodyAcceleratorsBasicBandwidthPackage extends $tea.Model {
|
|
11247
11495
|
bandwidth?: number;
|
|
11248
11496
|
bandwidthType?: string;
|
|
@@ -11309,6 +11557,28 @@ export class ListAcceleratorsResponseBodyAcceleratorsIpSetConfig extends $tea.Mo
|
|
|
11309
11557
|
}
|
|
11310
11558
|
}
|
|
11311
11559
|
|
|
11560
|
+
export class ListAcceleratorsResponseBodyAcceleratorsTags extends $tea.Model {
|
|
11561
|
+
key?: string;
|
|
11562
|
+
value?: string;
|
|
11563
|
+
static names(): { [key: string]: string } {
|
|
11564
|
+
return {
|
|
11565
|
+
key: 'Key',
|
|
11566
|
+
value: 'Value',
|
|
11567
|
+
};
|
|
11568
|
+
}
|
|
11569
|
+
|
|
11570
|
+
static types(): { [key: string]: any } {
|
|
11571
|
+
return {
|
|
11572
|
+
key: 'string',
|
|
11573
|
+
value: 'string',
|
|
11574
|
+
};
|
|
11575
|
+
}
|
|
11576
|
+
|
|
11577
|
+
constructor(map?: { [key: string]: any }) {
|
|
11578
|
+
super(map);
|
|
11579
|
+
}
|
|
11580
|
+
}
|
|
11581
|
+
|
|
11312
11582
|
export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
11313
11583
|
acceleratorId?: string;
|
|
11314
11584
|
bandwidth?: number;
|
|
@@ -11325,9 +11595,11 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
11325
11595
|
ipSetConfig?: ListAcceleratorsResponseBodyAcceleratorsIpSetConfig;
|
|
11326
11596
|
name?: string;
|
|
11327
11597
|
regionId?: string;
|
|
11598
|
+
resourceGroupId?: string;
|
|
11328
11599
|
secondDnsName?: string;
|
|
11329
11600
|
spec?: string;
|
|
11330
11601
|
state?: string;
|
|
11602
|
+
tags?: ListAcceleratorsResponseBodyAcceleratorsTags[];
|
|
11331
11603
|
type?: string;
|
|
11332
11604
|
static names(): { [key: string]: string } {
|
|
11333
11605
|
return {
|
|
@@ -11346,9 +11618,11 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
11346
11618
|
ipSetConfig: 'IpSetConfig',
|
|
11347
11619
|
name: 'Name',
|
|
11348
11620
|
regionId: 'RegionId',
|
|
11621
|
+
resourceGroupId: 'ResourceGroupId',
|
|
11349
11622
|
secondDnsName: 'SecondDnsName',
|
|
11350
11623
|
spec: 'Spec',
|
|
11351
11624
|
state: 'State',
|
|
11625
|
+
tags: 'Tags',
|
|
11352
11626
|
type: 'Type',
|
|
11353
11627
|
};
|
|
11354
11628
|
}
|
|
@@ -11370,9 +11644,11 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
11370
11644
|
ipSetConfig: ListAcceleratorsResponseBodyAcceleratorsIpSetConfig,
|
|
11371
11645
|
name: 'string',
|
|
11372
11646
|
regionId: 'string',
|
|
11647
|
+
resourceGroupId: 'string',
|
|
11373
11648
|
secondDnsName: 'string',
|
|
11374
11649
|
spec: 'string',
|
|
11375
11650
|
state: 'string',
|
|
11651
|
+
tags: { 'type': 'array', 'itemType': ListAcceleratorsResponseBodyAcceleratorsTags },
|
|
11376
11652
|
type: 'string',
|
|
11377
11653
|
};
|
|
11378
11654
|
}
|
|
@@ -11382,17 +11658,65 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
11382
11658
|
}
|
|
11383
11659
|
}
|
|
11384
11660
|
|
|
11661
|
+
export class ListAclsRequestTag extends $tea.Model {
|
|
11662
|
+
key?: string;
|
|
11663
|
+
value?: string;
|
|
11664
|
+
static names(): { [key: string]: string } {
|
|
11665
|
+
return {
|
|
11666
|
+
key: 'Key',
|
|
11667
|
+
value: 'Value',
|
|
11668
|
+
};
|
|
11669
|
+
}
|
|
11670
|
+
|
|
11671
|
+
static types(): { [key: string]: any } {
|
|
11672
|
+
return {
|
|
11673
|
+
key: 'string',
|
|
11674
|
+
value: 'string',
|
|
11675
|
+
};
|
|
11676
|
+
}
|
|
11677
|
+
|
|
11678
|
+
constructor(map?: { [key: string]: any }) {
|
|
11679
|
+
super(map);
|
|
11680
|
+
}
|
|
11681
|
+
}
|
|
11682
|
+
|
|
11683
|
+
export class ListAclsResponseBodyAclsTags extends $tea.Model {
|
|
11684
|
+
key?: string;
|
|
11685
|
+
value?: string;
|
|
11686
|
+
static names(): { [key: string]: string } {
|
|
11687
|
+
return {
|
|
11688
|
+
key: 'Key',
|
|
11689
|
+
value: 'Value',
|
|
11690
|
+
};
|
|
11691
|
+
}
|
|
11692
|
+
|
|
11693
|
+
static types(): { [key: string]: any } {
|
|
11694
|
+
return {
|
|
11695
|
+
key: 'string',
|
|
11696
|
+
value: 'string',
|
|
11697
|
+
};
|
|
11698
|
+
}
|
|
11699
|
+
|
|
11700
|
+
constructor(map?: { [key: string]: any }) {
|
|
11701
|
+
super(map);
|
|
11702
|
+
}
|
|
11703
|
+
}
|
|
11704
|
+
|
|
11385
11705
|
export class ListAclsResponseBodyAcls extends $tea.Model {
|
|
11386
11706
|
aclId?: string;
|
|
11387
11707
|
aclName?: string;
|
|
11388
11708
|
aclStatus?: string;
|
|
11389
11709
|
addressIPVersion?: string;
|
|
11710
|
+
resourceGroupId?: string;
|
|
11711
|
+
tags?: ListAclsResponseBodyAclsTags[];
|
|
11390
11712
|
static names(): { [key: string]: string } {
|
|
11391
11713
|
return {
|
|
11392
11714
|
aclId: 'AclId',
|
|
11393
11715
|
aclName: 'AclName',
|
|
11394
11716
|
aclStatus: 'AclStatus',
|
|
11395
11717
|
addressIPVersion: 'AddressIPVersion',
|
|
11718
|
+
resourceGroupId: 'ResourceGroupId',
|
|
11719
|
+
tags: 'Tags',
|
|
11396
11720
|
};
|
|
11397
11721
|
}
|
|
11398
11722
|
|
|
@@ -11402,6 +11726,8 @@ export class ListAclsResponseBodyAcls extends $tea.Model {
|
|
|
11402
11726
|
aclName: 'string',
|
|
11403
11727
|
aclStatus: 'string',
|
|
11404
11728
|
addressIPVersion: 'string',
|
|
11729
|
+
resourceGroupId: 'string',
|
|
11730
|
+
tags: { 'type': 'array', 'itemType': ListAclsResponseBodyAclsTags },
|
|
11405
11731
|
};
|
|
11406
11732
|
}
|
|
11407
11733
|
|
|
@@ -11577,6 +11903,50 @@ export class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
|
11577
11903
|
}
|
|
11578
11904
|
}
|
|
11579
11905
|
|
|
11906
|
+
export class ListBandwidthPackagesRequestTag extends $tea.Model {
|
|
11907
|
+
key?: string;
|
|
11908
|
+
value?: string;
|
|
11909
|
+
static names(): { [key: string]: string } {
|
|
11910
|
+
return {
|
|
11911
|
+
key: 'Key',
|
|
11912
|
+
value: 'Value',
|
|
11913
|
+
};
|
|
11914
|
+
}
|
|
11915
|
+
|
|
11916
|
+
static types(): { [key: string]: any } {
|
|
11917
|
+
return {
|
|
11918
|
+
key: 'string',
|
|
11919
|
+
value: 'string',
|
|
11920
|
+
};
|
|
11921
|
+
}
|
|
11922
|
+
|
|
11923
|
+
constructor(map?: { [key: string]: any }) {
|
|
11924
|
+
super(map);
|
|
11925
|
+
}
|
|
11926
|
+
}
|
|
11927
|
+
|
|
11928
|
+
export class ListBandwidthPackagesResponseBodyBandwidthPackagesTags extends $tea.Model {
|
|
11929
|
+
key?: string;
|
|
11930
|
+
value?: string;
|
|
11931
|
+
static names(): { [key: string]: string } {
|
|
11932
|
+
return {
|
|
11933
|
+
key: 'Key',
|
|
11934
|
+
value: 'Value',
|
|
11935
|
+
};
|
|
11936
|
+
}
|
|
11937
|
+
|
|
11938
|
+
static types(): { [key: string]: any } {
|
|
11939
|
+
return {
|
|
11940
|
+
key: 'string',
|
|
11941
|
+
value: 'string',
|
|
11942
|
+
};
|
|
11943
|
+
}
|
|
11944
|
+
|
|
11945
|
+
constructor(map?: { [key: string]: any }) {
|
|
11946
|
+
super(map);
|
|
11947
|
+
}
|
|
11948
|
+
}
|
|
11949
|
+
|
|
11580
11950
|
export class ListBandwidthPackagesResponseBodyBandwidthPackages extends $tea.Model {
|
|
11581
11951
|
accelerators?: string[];
|
|
11582
11952
|
bandwidth?: number;
|
|
@@ -11592,7 +11962,9 @@ export class ListBandwidthPackagesResponseBodyBandwidthPackages extends $tea.Mod
|
|
|
11592
11962
|
name?: string;
|
|
11593
11963
|
ratio?: number;
|
|
11594
11964
|
regionId?: string;
|
|
11965
|
+
resourceGroupId?: string;
|
|
11595
11966
|
state?: string;
|
|
11967
|
+
tags?: ListBandwidthPackagesResponseBodyBandwidthPackagesTags[];
|
|
11596
11968
|
type?: string;
|
|
11597
11969
|
static names(): { [key: string]: string } {
|
|
11598
11970
|
return {
|
|
@@ -11610,7 +11982,9 @@ export class ListBandwidthPackagesResponseBodyBandwidthPackages extends $tea.Mod
|
|
|
11610
11982
|
name: 'Name',
|
|
11611
11983
|
ratio: 'Ratio',
|
|
11612
11984
|
regionId: 'RegionId',
|
|
11985
|
+
resourceGroupId: 'ResourceGroupId',
|
|
11613
11986
|
state: 'State',
|
|
11987
|
+
tags: 'Tags',
|
|
11614
11988
|
type: 'Type',
|
|
11615
11989
|
};
|
|
11616
11990
|
}
|
|
@@ -11631,7 +12005,9 @@ export class ListBandwidthPackagesResponseBodyBandwidthPackages extends $tea.Mod
|
|
|
11631
12005
|
name: 'string',
|
|
11632
12006
|
ratio: 'number',
|
|
11633
12007
|
regionId: 'string',
|
|
12008
|
+
resourceGroupId: 'string',
|
|
11634
12009
|
state: 'string',
|
|
12010
|
+
tags: { 'type': 'array', 'itemType': ListBandwidthPackagesResponseBodyBandwidthPackagesTags },
|
|
11635
12011
|
type: 'string',
|
|
11636
12012
|
};
|
|
11637
12013
|
}
|
|
@@ -11641,6 +12017,28 @@ export class ListBandwidthPackagesResponseBodyBandwidthPackages extends $tea.Mod
|
|
|
11641
12017
|
}
|
|
11642
12018
|
}
|
|
11643
12019
|
|
|
12020
|
+
export class ListBandwidthackagesResponseBodyBandwidthPackagesTags extends $tea.Model {
|
|
12021
|
+
key?: string;
|
|
12022
|
+
value?: string;
|
|
12023
|
+
static names(): { [key: string]: string } {
|
|
12024
|
+
return {
|
|
12025
|
+
key: 'Key',
|
|
12026
|
+
value: 'Value',
|
|
12027
|
+
};
|
|
12028
|
+
}
|
|
12029
|
+
|
|
12030
|
+
static types(): { [key: string]: any } {
|
|
12031
|
+
return {
|
|
12032
|
+
key: 'string',
|
|
12033
|
+
value: 'string',
|
|
12034
|
+
};
|
|
12035
|
+
}
|
|
12036
|
+
|
|
12037
|
+
constructor(map?: { [key: string]: any }) {
|
|
12038
|
+
super(map);
|
|
12039
|
+
}
|
|
12040
|
+
}
|
|
12041
|
+
|
|
11644
12042
|
export class ListBandwidthackagesResponseBodyBandwidthPackages extends $tea.Model {
|
|
11645
12043
|
accelerators?: string[];
|
|
11646
12044
|
bandwidth?: number;
|
|
@@ -11651,7 +12049,9 @@ export class ListBandwidthackagesResponseBodyBandwidthPackages extends $tea.Mode
|
|
|
11651
12049
|
expiredTime?: string;
|
|
11652
12050
|
name?: string;
|
|
11653
12051
|
regionId?: string;
|
|
12052
|
+
resourceGroupId?: string;
|
|
11654
12053
|
state?: string;
|
|
12054
|
+
tags?: ListBandwidthackagesResponseBodyBandwidthPackagesTags[];
|
|
11655
12055
|
static names(): { [key: string]: string } {
|
|
11656
12056
|
return {
|
|
11657
12057
|
accelerators: 'Accelerators',
|
|
@@ -11663,7 +12063,9 @@ export class ListBandwidthackagesResponseBodyBandwidthPackages extends $tea.Mode
|
|
|
11663
12063
|
expiredTime: 'ExpiredTime',
|
|
11664
12064
|
name: 'Name',
|
|
11665
12065
|
regionId: 'RegionId',
|
|
12066
|
+
resourceGroupId: 'ResourceGroupId',
|
|
11666
12067
|
state: 'State',
|
|
12068
|
+
tags: 'Tags',
|
|
11667
12069
|
};
|
|
11668
12070
|
}
|
|
11669
12071
|
|
|
@@ -11678,7 +12080,31 @@ export class ListBandwidthackagesResponseBodyBandwidthPackages extends $tea.Mode
|
|
|
11678
12080
|
expiredTime: 'string',
|
|
11679
12081
|
name: 'string',
|
|
11680
12082
|
regionId: 'string',
|
|
12083
|
+
resourceGroupId: 'string',
|
|
11681
12084
|
state: 'string',
|
|
12085
|
+
tags: { 'type': 'array', 'itemType': ListBandwidthackagesResponseBodyBandwidthPackagesTags },
|
|
12086
|
+
};
|
|
12087
|
+
}
|
|
12088
|
+
|
|
12089
|
+
constructor(map?: { [key: string]: any }) {
|
|
12090
|
+
super(map);
|
|
12091
|
+
}
|
|
12092
|
+
}
|
|
12093
|
+
|
|
12094
|
+
export class ListBasicAcceleratorsRequestTag extends $tea.Model {
|
|
12095
|
+
key?: string;
|
|
12096
|
+
value?: string;
|
|
12097
|
+
static names(): { [key: string]: string } {
|
|
12098
|
+
return {
|
|
12099
|
+
key: 'Key',
|
|
12100
|
+
value: 'Value',
|
|
12101
|
+
};
|
|
12102
|
+
}
|
|
12103
|
+
|
|
12104
|
+
static types(): { [key: string]: any } {
|
|
12105
|
+
return {
|
|
12106
|
+
key: 'string',
|
|
12107
|
+
value: 'string',
|
|
11682
12108
|
};
|
|
11683
12109
|
}
|
|
11684
12110
|
|
|
@@ -11734,6 +12160,28 @@ export class ListBasicAcceleratorsResponseBodyAcceleratorsCrossDomainBandwidthPa
|
|
|
11734
12160
|
}
|
|
11735
12161
|
}
|
|
11736
12162
|
|
|
12163
|
+
export class ListBasicAcceleratorsResponseBodyAcceleratorsTags extends $tea.Model {
|
|
12164
|
+
key?: string;
|
|
12165
|
+
value?: string;
|
|
12166
|
+
static names(): { [key: string]: string } {
|
|
12167
|
+
return {
|
|
12168
|
+
key: 'Key',
|
|
12169
|
+
value: 'Value',
|
|
12170
|
+
};
|
|
12171
|
+
}
|
|
12172
|
+
|
|
12173
|
+
static types(): { [key: string]: any } {
|
|
12174
|
+
return {
|
|
12175
|
+
key: 'string',
|
|
12176
|
+
value: 'string',
|
|
12177
|
+
};
|
|
12178
|
+
}
|
|
12179
|
+
|
|
12180
|
+
constructor(map?: { [key: string]: any }) {
|
|
12181
|
+
super(map);
|
|
12182
|
+
}
|
|
12183
|
+
}
|
|
12184
|
+
|
|
11737
12185
|
export class ListBasicAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
11738
12186
|
acceleratorId?: string;
|
|
11739
12187
|
bandwidthBillingType?: string;
|
|
@@ -11747,7 +12195,9 @@ export class ListBasicAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
11747
12195
|
instanceChargeType?: string;
|
|
11748
12196
|
name?: string;
|
|
11749
12197
|
regionId?: string;
|
|
12198
|
+
resourceGroupId?: string;
|
|
11750
12199
|
state?: string;
|
|
12200
|
+
tags?: ListBasicAcceleratorsResponseBodyAcceleratorsTags[];
|
|
11751
12201
|
type?: string;
|
|
11752
12202
|
static names(): { [key: string]: string } {
|
|
11753
12203
|
return {
|
|
@@ -11763,7 +12213,9 @@ export class ListBasicAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
11763
12213
|
instanceChargeType: 'InstanceChargeType',
|
|
11764
12214
|
name: 'Name',
|
|
11765
12215
|
regionId: 'RegionId',
|
|
12216
|
+
resourceGroupId: 'ResourceGroupId',
|
|
11766
12217
|
state: 'State',
|
|
12218
|
+
tags: 'Tags',
|
|
11767
12219
|
type: 'Type',
|
|
11768
12220
|
};
|
|
11769
12221
|
}
|
|
@@ -11782,7 +12234,9 @@ export class ListBasicAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
11782
12234
|
instanceChargeType: 'string',
|
|
11783
12235
|
name: 'string',
|
|
11784
12236
|
regionId: 'string',
|
|
12237
|
+
resourceGroupId: 'string',
|
|
11785
12238
|
state: 'string',
|
|
12239
|
+
tags: { 'type': 'array', 'itemType': ListBasicAcceleratorsResponseBodyAcceleratorsTags },
|
|
11786
12240
|
type: 'string',
|
|
11787
12241
|
};
|
|
11788
12242
|
}
|
|
@@ -12477,11 +12931,13 @@ export class ListListenerCertificatesResponseBodyCertificates extends $tea.Model
|
|
|
12477
12931
|
certificateId?: string;
|
|
12478
12932
|
domain?: string;
|
|
12479
12933
|
isDefault?: boolean;
|
|
12934
|
+
state?: string;
|
|
12480
12935
|
static names(): { [key: string]: string } {
|
|
12481
12936
|
return {
|
|
12482
12937
|
certificateId: 'CertificateId',
|
|
12483
12938
|
domain: 'Domain',
|
|
12484
12939
|
isDefault: 'IsDefault',
|
|
12940
|
+
state: 'State',
|
|
12485
12941
|
};
|
|
12486
12942
|
}
|
|
12487
12943
|
|
|
@@ -12490,6 +12946,7 @@ export class ListListenerCertificatesResponseBodyCertificates extends $tea.Model
|
|
|
12490
12946
|
certificateId: 'string',
|
|
12491
12947
|
domain: 'string',
|
|
12492
12948
|
isDefault: 'boolean',
|
|
12949
|
+
state: 'string',
|
|
12493
12950
|
};
|
|
12494
12951
|
}
|
|
12495
12952
|
|
|
@@ -13659,6 +14116,51 @@ export default class Client extends OpenApi {
|
|
|
13659
14116
|
return await this.bandwidthPackageRemoveAcceleratorWithOptions(request, runtime);
|
|
13660
14117
|
}
|
|
13661
14118
|
|
|
14119
|
+
async changeResourceGroupWithOptions(request: ChangeResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ChangeResourceGroupResponse> {
|
|
14120
|
+
Util.validateModel(request);
|
|
14121
|
+
let query = { };
|
|
14122
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
14123
|
+
query["ClientToken"] = request.clientToken;
|
|
14124
|
+
}
|
|
14125
|
+
|
|
14126
|
+
if (!Util.isUnset(request.newResourceGroupId)) {
|
|
14127
|
+
query["NewResourceGroupId"] = request.newResourceGroupId;
|
|
14128
|
+
}
|
|
14129
|
+
|
|
14130
|
+
if (!Util.isUnset(request.regionId)) {
|
|
14131
|
+
query["RegionId"] = request.regionId;
|
|
14132
|
+
}
|
|
14133
|
+
|
|
14134
|
+
if (!Util.isUnset(request.resourceId)) {
|
|
14135
|
+
query["ResourceId"] = request.resourceId;
|
|
14136
|
+
}
|
|
14137
|
+
|
|
14138
|
+
if (!Util.isUnset(request.resourceType)) {
|
|
14139
|
+
query["ResourceType"] = request.resourceType;
|
|
14140
|
+
}
|
|
14141
|
+
|
|
14142
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
14143
|
+
query: OpenApiUtil.query(query),
|
|
14144
|
+
});
|
|
14145
|
+
let params = new $OpenApi.Params({
|
|
14146
|
+
action: "ChangeResourceGroup",
|
|
14147
|
+
version: "2019-11-20",
|
|
14148
|
+
protocol: "HTTPS",
|
|
14149
|
+
pathname: "/",
|
|
14150
|
+
method: "POST",
|
|
14151
|
+
authType: "AK",
|
|
14152
|
+
style: "RPC",
|
|
14153
|
+
reqBodyType: "formData",
|
|
14154
|
+
bodyType: "json",
|
|
14155
|
+
});
|
|
14156
|
+
return $tea.cast<ChangeResourceGroupResponse>(await this.callApi(params, req, runtime), new ChangeResourceGroupResponse({}));
|
|
14157
|
+
}
|
|
14158
|
+
|
|
14159
|
+
async changeResourceGroup(request: ChangeResourceGroupRequest): Promise<ChangeResourceGroupResponse> {
|
|
14160
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
14161
|
+
return await this.changeResourceGroupWithOptions(request, runtime);
|
|
14162
|
+
}
|
|
14163
|
+
|
|
13662
14164
|
async configEndpointProbeWithOptions(request: ConfigEndpointProbeRequest, runtime: $Util.RuntimeOptions): Promise<ConfigEndpointProbeResponse> {
|
|
13663
14165
|
Util.validateModel(request);
|
|
13664
14166
|
let query = { };
|
|
@@ -13747,7 +14249,7 @@ export default class Client extends OpenApi {
|
|
|
13747
14249
|
query["Duration"] = request.duration;
|
|
13748
14250
|
}
|
|
13749
14251
|
|
|
13750
|
-
if (!Util.isUnset(
|
|
14252
|
+
if (!Util.isUnset(request.ipSetConfig)) {
|
|
13751
14253
|
query["IpSetConfig"] = request.ipSetConfig;
|
|
13752
14254
|
}
|
|
13753
14255
|
|
|
@@ -13763,6 +14265,10 @@ export default class Client extends OpenApi {
|
|
|
13763
14265
|
query["RegionId"] = request.regionId;
|
|
13764
14266
|
}
|
|
13765
14267
|
|
|
14268
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
14269
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
14270
|
+
}
|
|
14271
|
+
|
|
13766
14272
|
if (!Util.isUnset(request.spec)) {
|
|
13767
14273
|
query["Spec"] = request.spec;
|
|
13768
14274
|
}
|
|
@@ -13816,6 +14322,10 @@ export default class Client extends OpenApi {
|
|
|
13816
14322
|
query["RegionId"] = request.regionId;
|
|
13817
14323
|
}
|
|
13818
14324
|
|
|
14325
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
14326
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
14327
|
+
}
|
|
14328
|
+
|
|
13819
14329
|
let req = new $OpenApi.OpenApiRequest({
|
|
13820
14330
|
query: OpenApiUtil.query(query),
|
|
13821
14331
|
});
|
|
@@ -13970,6 +14480,10 @@ export default class Client extends OpenApi {
|
|
|
13970
14480
|
query["RegionId"] = request.regionId;
|
|
13971
14481
|
}
|
|
13972
14482
|
|
|
14483
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
14484
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
14485
|
+
}
|
|
14486
|
+
|
|
13973
14487
|
if (!Util.isUnset(request.type)) {
|
|
13974
14488
|
query["Type"] = request.type;
|
|
13975
14489
|
}
|
|
@@ -14035,6 +14549,10 @@ export default class Client extends OpenApi {
|
|
|
14035
14549
|
query["RegionId"] = request.regionId;
|
|
14036
14550
|
}
|
|
14037
14551
|
|
|
14552
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
14553
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
14554
|
+
}
|
|
14555
|
+
|
|
14038
14556
|
let req = new $OpenApi.OpenApiRequest({
|
|
14039
14557
|
query: OpenApiUtil.query(query),
|
|
14040
14558
|
});
|
|
@@ -14634,7 +15152,7 @@ export default class Client extends OpenApi {
|
|
|
14634
15152
|
query["Type"] = request.type;
|
|
14635
15153
|
}
|
|
14636
15154
|
|
|
14637
|
-
if (!Util.isUnset(
|
|
15155
|
+
if (!Util.isUnset(request.XForwardedForConfig)) {
|
|
14638
15156
|
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
14639
15157
|
}
|
|
14640
15158
|
|
|
@@ -16393,10 +16911,18 @@ export default class Client extends OpenApi {
|
|
|
16393
16911
|
query["RegionId"] = request.regionId;
|
|
16394
16912
|
}
|
|
16395
16913
|
|
|
16914
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
16915
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
16916
|
+
}
|
|
16917
|
+
|
|
16396
16918
|
if (!Util.isUnset(request.state)) {
|
|
16397
16919
|
query["State"] = request.state;
|
|
16398
16920
|
}
|
|
16399
16921
|
|
|
16922
|
+
if (!Util.isUnset(request.tag)) {
|
|
16923
|
+
query["Tag"] = request.tag;
|
|
16924
|
+
}
|
|
16925
|
+
|
|
16400
16926
|
let req = new $OpenApi.OpenApiRequest({
|
|
16401
16927
|
query: OpenApiUtil.query(query),
|
|
16402
16928
|
});
|
|
@@ -16446,6 +16972,14 @@ export default class Client extends OpenApi {
|
|
|
16446
16972
|
query["RegionId"] = request.regionId;
|
|
16447
16973
|
}
|
|
16448
16974
|
|
|
16975
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
16976
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
16977
|
+
}
|
|
16978
|
+
|
|
16979
|
+
if (!Util.isUnset(request.tag)) {
|
|
16980
|
+
query["Tag"] = request.tag;
|
|
16981
|
+
}
|
|
16982
|
+
|
|
16449
16983
|
let req = new $OpenApi.OpenApiRequest({
|
|
16450
16984
|
query: OpenApiUtil.query(query),
|
|
16451
16985
|
});
|
|
@@ -16643,10 +17177,18 @@ export default class Client extends OpenApi {
|
|
|
16643
17177
|
query["RegionId"] = request.regionId;
|
|
16644
17178
|
}
|
|
16645
17179
|
|
|
17180
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
17181
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
17182
|
+
}
|
|
17183
|
+
|
|
16646
17184
|
if (!Util.isUnset(request.state)) {
|
|
16647
17185
|
query["State"] = request.state;
|
|
16648
17186
|
}
|
|
16649
17187
|
|
|
17188
|
+
if (!Util.isUnset(request.tag)) {
|
|
17189
|
+
query["Tag"] = request.tag;
|
|
17190
|
+
}
|
|
17191
|
+
|
|
16650
17192
|
if (!Util.isUnset(request.type)) {
|
|
16651
17193
|
query["Type"] = request.type;
|
|
16652
17194
|
}
|
|
@@ -16729,10 +17271,18 @@ export default class Client extends OpenApi {
|
|
|
16729
17271
|
query["RegionId"] = request.regionId;
|
|
16730
17272
|
}
|
|
16731
17273
|
|
|
17274
|
+
if (!Util.isUnset(request.resourceGroupId)) {
|
|
17275
|
+
query["ResourceGroupId"] = request.resourceGroupId;
|
|
17276
|
+
}
|
|
17277
|
+
|
|
16732
17278
|
if (!Util.isUnset(request.state)) {
|
|
16733
17279
|
query["State"] = request.state;
|
|
16734
17280
|
}
|
|
16735
17281
|
|
|
17282
|
+
if (!Util.isUnset(request.tag)) {
|
|
17283
|
+
query["Tag"] = request.tag;
|
|
17284
|
+
}
|
|
17285
|
+
|
|
16736
17286
|
let req = new $OpenApi.OpenApiRequest({
|
|
16737
17287
|
query: OpenApiUtil.query(query),
|
|
16738
17288
|
});
|
|
@@ -17461,6 +18011,10 @@ export default class Client extends OpenApi {
|
|
|
17461
18011
|
async replaceBandwidthPackageWithOptions(request: ReplaceBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<ReplaceBandwidthPackageResponse> {
|
|
17462
18012
|
Util.validateModel(request);
|
|
17463
18013
|
let query = { };
|
|
18014
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
18015
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
18016
|
+
}
|
|
18017
|
+
|
|
17464
18018
|
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
17465
18019
|
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
17466
18020
|
}
|
|
@@ -18526,7 +19080,7 @@ export default class Client extends OpenApi {
|
|
|
18526
19080
|
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
18527
19081
|
}
|
|
18528
19082
|
|
|
18529
|
-
if (!Util.isUnset(
|
|
19083
|
+
if (!Util.isUnset(request.XForwardedForConfig)) {
|
|
18530
19084
|
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
18531
19085
|
}
|
|
18532
19086
|
|