@alicloud/ga20191120 1.0.7 → 1.0.10
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +534 -0
- package/dist/client.js +2377 -492
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +3050 -497
package/src/client.ts
CHANGED
|
@@ -627,6 +627,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
627
627
|
autoUseCoupon?: string;
|
|
628
628
|
clientToken?: string;
|
|
629
629
|
duration?: number;
|
|
630
|
+
ipSetConfig?: CreateAcceleratorRequestIpSetConfig;
|
|
630
631
|
name?: string;
|
|
631
632
|
pricingCycle?: string;
|
|
632
633
|
regionId?: string;
|
|
@@ -639,6 +640,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
639
640
|
autoUseCoupon: 'AutoUseCoupon',
|
|
640
641
|
clientToken: 'ClientToken',
|
|
641
642
|
duration: 'Duration',
|
|
643
|
+
ipSetConfig: 'IpSetConfig',
|
|
642
644
|
name: 'Name',
|
|
643
645
|
pricingCycle: 'PricingCycle',
|
|
644
646
|
regionId: 'RegionId',
|
|
@@ -654,6 +656,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
654
656
|
autoUseCoupon: 'string',
|
|
655
657
|
clientToken: 'string',
|
|
656
658
|
duration: 'number',
|
|
659
|
+
ipSetConfig: CreateAcceleratorRequestIpSetConfig,
|
|
657
660
|
name: 'string',
|
|
658
661
|
pricingCycle: 'string',
|
|
659
662
|
regionId: 'string',
|
|
@@ -791,6 +794,99 @@ export class CreateAclResponse extends $tea.Model {
|
|
|
791
794
|
}
|
|
792
795
|
}
|
|
793
796
|
|
|
797
|
+
export class CreateApplicationMonitorRequest extends $tea.Model {
|
|
798
|
+
acceleratorId?: string;
|
|
799
|
+
address?: string;
|
|
800
|
+
clientToken?: string;
|
|
801
|
+
detectEnable?: boolean;
|
|
802
|
+
detectThreshold?: number;
|
|
803
|
+
detectTimes?: number;
|
|
804
|
+
listenerId?: string;
|
|
805
|
+
optionsJson?: string;
|
|
806
|
+
regionId?: string;
|
|
807
|
+
silenceTime?: number;
|
|
808
|
+
taskName?: string;
|
|
809
|
+
static names(): { [key: string]: string } {
|
|
810
|
+
return {
|
|
811
|
+
acceleratorId: 'AcceleratorId',
|
|
812
|
+
address: 'Address',
|
|
813
|
+
clientToken: 'ClientToken',
|
|
814
|
+
detectEnable: 'DetectEnable',
|
|
815
|
+
detectThreshold: 'DetectThreshold',
|
|
816
|
+
detectTimes: 'DetectTimes',
|
|
817
|
+
listenerId: 'ListenerId',
|
|
818
|
+
optionsJson: 'OptionsJson',
|
|
819
|
+
regionId: 'RegionId',
|
|
820
|
+
silenceTime: 'SilenceTime',
|
|
821
|
+
taskName: 'TaskName',
|
|
822
|
+
};
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
static types(): { [key: string]: any } {
|
|
826
|
+
return {
|
|
827
|
+
acceleratorId: 'string',
|
|
828
|
+
address: 'string',
|
|
829
|
+
clientToken: 'string',
|
|
830
|
+
detectEnable: 'boolean',
|
|
831
|
+
detectThreshold: 'number',
|
|
832
|
+
detectTimes: 'number',
|
|
833
|
+
listenerId: 'string',
|
|
834
|
+
optionsJson: 'string',
|
|
835
|
+
regionId: 'string',
|
|
836
|
+
silenceTime: 'number',
|
|
837
|
+
taskName: 'string',
|
|
838
|
+
};
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
constructor(map?: { [key: string]: any }) {
|
|
842
|
+
super(map);
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
export class CreateApplicationMonitorResponseBody extends $tea.Model {
|
|
847
|
+
requestId?: string;
|
|
848
|
+
taskId?: string;
|
|
849
|
+
static names(): { [key: string]: string } {
|
|
850
|
+
return {
|
|
851
|
+
requestId: 'RequestId',
|
|
852
|
+
taskId: 'TaskId',
|
|
853
|
+
};
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
static types(): { [key: string]: any } {
|
|
857
|
+
return {
|
|
858
|
+
requestId: 'string',
|
|
859
|
+
taskId: 'string',
|
|
860
|
+
};
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
constructor(map?: { [key: string]: any }) {
|
|
864
|
+
super(map);
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
export class CreateApplicationMonitorResponse extends $tea.Model {
|
|
869
|
+
headers: { [key: string]: string };
|
|
870
|
+
body: CreateApplicationMonitorResponseBody;
|
|
871
|
+
static names(): { [key: string]: string } {
|
|
872
|
+
return {
|
|
873
|
+
headers: 'headers',
|
|
874
|
+
body: 'body',
|
|
875
|
+
};
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
static types(): { [key: string]: any } {
|
|
879
|
+
return {
|
|
880
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
881
|
+
body: CreateApplicationMonitorResponseBody,
|
|
882
|
+
};
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
constructor(map?: { [key: string]: any }) {
|
|
886
|
+
super(map);
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
|
|
794
890
|
export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
795
891
|
autoPay?: boolean;
|
|
796
892
|
autoUseCoupon?: string;
|
|
@@ -1787,6 +1883,72 @@ export class DeleteAclResponse extends $tea.Model {
|
|
|
1787
1883
|
}
|
|
1788
1884
|
}
|
|
1789
1885
|
|
|
1886
|
+
export class DeleteApplicationMonitorRequest extends $tea.Model {
|
|
1887
|
+
clientToken?: string;
|
|
1888
|
+
regionId?: string;
|
|
1889
|
+
taskId?: string;
|
|
1890
|
+
static names(): { [key: string]: string } {
|
|
1891
|
+
return {
|
|
1892
|
+
clientToken: 'ClientToken',
|
|
1893
|
+
regionId: 'RegionId',
|
|
1894
|
+
taskId: 'TaskId',
|
|
1895
|
+
};
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
static types(): { [key: string]: any } {
|
|
1899
|
+
return {
|
|
1900
|
+
clientToken: 'string',
|
|
1901
|
+
regionId: 'string',
|
|
1902
|
+
taskId: 'string',
|
|
1903
|
+
};
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
constructor(map?: { [key: string]: any }) {
|
|
1907
|
+
super(map);
|
|
1908
|
+
}
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
export class DeleteApplicationMonitorResponseBody extends $tea.Model {
|
|
1912
|
+
requestId?: string;
|
|
1913
|
+
static names(): { [key: string]: string } {
|
|
1914
|
+
return {
|
|
1915
|
+
requestId: 'RequestId',
|
|
1916
|
+
};
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
static types(): { [key: string]: any } {
|
|
1920
|
+
return {
|
|
1921
|
+
requestId: 'string',
|
|
1922
|
+
};
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
constructor(map?: { [key: string]: any }) {
|
|
1926
|
+
super(map);
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
export class DeleteApplicationMonitorResponse extends $tea.Model {
|
|
1931
|
+
headers: { [key: string]: string };
|
|
1932
|
+
body: DeleteApplicationMonitorResponseBody;
|
|
1933
|
+
static names(): { [key: string]: string } {
|
|
1934
|
+
return {
|
|
1935
|
+
headers: 'headers',
|
|
1936
|
+
body: 'body',
|
|
1937
|
+
};
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
static types(): { [key: string]: any } {
|
|
1941
|
+
return {
|
|
1942
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1943
|
+
body: DeleteApplicationMonitorResponseBody,
|
|
1944
|
+
};
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
constructor(map?: { [key: string]: any }) {
|
|
1948
|
+
super(map);
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1790
1952
|
export class DeleteBandwidthPackageRequest extends $tea.Model {
|
|
1791
1953
|
bandwidthPackageId?: string;
|
|
1792
1954
|
clientToken?: string;
|
|
@@ -2564,6 +2726,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
2564
2726
|
dnsName?: string;
|
|
2565
2727
|
expiredTime?: number;
|
|
2566
2728
|
instanceChargeType?: string;
|
|
2729
|
+
ipSetConfig?: DescribeAcceleratorResponseBodyIpSetConfig;
|
|
2567
2730
|
name?: string;
|
|
2568
2731
|
regionId?: string;
|
|
2569
2732
|
requestId?: string;
|
|
@@ -2582,6 +2745,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
2582
2745
|
dnsName: 'DnsName',
|
|
2583
2746
|
expiredTime: 'ExpiredTime',
|
|
2584
2747
|
instanceChargeType: 'InstanceChargeType',
|
|
2748
|
+
ipSetConfig: 'IpSetConfig',
|
|
2585
2749
|
name: 'Name',
|
|
2586
2750
|
regionId: 'RegionId',
|
|
2587
2751
|
requestId: 'RequestId',
|
|
@@ -2603,6 +2767,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
2603
2767
|
dnsName: 'string',
|
|
2604
2768
|
expiredTime: 'number',
|
|
2605
2769
|
instanceChargeType: 'string',
|
|
2770
|
+
ipSetConfig: DescribeAcceleratorResponseBodyIpSetConfig,
|
|
2606
2771
|
name: 'string',
|
|
2607
2772
|
regionId: 'string',
|
|
2608
2773
|
requestId: 'string',
|
|
@@ -2714,6 +2879,108 @@ export class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.Model {
|
|
|
2714
2879
|
}
|
|
2715
2880
|
}
|
|
2716
2881
|
|
|
2882
|
+
export class DescribeApplicationMonitorRequest extends $tea.Model {
|
|
2883
|
+
clientToken?: string;
|
|
2884
|
+
regionId?: string;
|
|
2885
|
+
taskId?: string;
|
|
2886
|
+
static names(): { [key: string]: string } {
|
|
2887
|
+
return {
|
|
2888
|
+
clientToken: 'ClientToken',
|
|
2889
|
+
regionId: 'RegionId',
|
|
2890
|
+
taskId: 'TaskId',
|
|
2891
|
+
};
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
static types(): { [key: string]: any } {
|
|
2895
|
+
return {
|
|
2896
|
+
clientToken: 'string',
|
|
2897
|
+
regionId: 'string',
|
|
2898
|
+
taskId: 'string',
|
|
2899
|
+
};
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
constructor(map?: { [key: string]: any }) {
|
|
2903
|
+
super(map);
|
|
2904
|
+
}
|
|
2905
|
+
}
|
|
2906
|
+
|
|
2907
|
+
export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
2908
|
+
acceleratorId?: string;
|
|
2909
|
+
address?: string;
|
|
2910
|
+
detectEnable?: boolean;
|
|
2911
|
+
detectThreshold?: number;
|
|
2912
|
+
detectTimes?: number;
|
|
2913
|
+
ispCityList?: DescribeApplicationMonitorResponseBodyIspCityList[];
|
|
2914
|
+
listenerId?: string;
|
|
2915
|
+
optionsJson?: string;
|
|
2916
|
+
regionId?: string;
|
|
2917
|
+
requestId?: string;
|
|
2918
|
+
silenceTime?: number;
|
|
2919
|
+
taskId?: string;
|
|
2920
|
+
taskName?: string;
|
|
2921
|
+
static names(): { [key: string]: string } {
|
|
2922
|
+
return {
|
|
2923
|
+
acceleratorId: 'AcceleratorId',
|
|
2924
|
+
address: 'Address',
|
|
2925
|
+
detectEnable: 'DetectEnable',
|
|
2926
|
+
detectThreshold: 'DetectThreshold',
|
|
2927
|
+
detectTimes: 'DetectTimes',
|
|
2928
|
+
ispCityList: 'IspCityList',
|
|
2929
|
+
listenerId: 'ListenerId',
|
|
2930
|
+
optionsJson: 'OptionsJson',
|
|
2931
|
+
regionId: 'RegionId',
|
|
2932
|
+
requestId: 'RequestId',
|
|
2933
|
+
silenceTime: 'SilenceTime',
|
|
2934
|
+
taskId: 'TaskId',
|
|
2935
|
+
taskName: 'TaskName',
|
|
2936
|
+
};
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
static types(): { [key: string]: any } {
|
|
2940
|
+
return {
|
|
2941
|
+
acceleratorId: 'string',
|
|
2942
|
+
address: 'string',
|
|
2943
|
+
detectEnable: 'boolean',
|
|
2944
|
+
detectThreshold: 'number',
|
|
2945
|
+
detectTimes: 'number',
|
|
2946
|
+
ispCityList: { 'type': 'array', 'itemType': DescribeApplicationMonitorResponseBodyIspCityList },
|
|
2947
|
+
listenerId: 'string',
|
|
2948
|
+
optionsJson: 'string',
|
|
2949
|
+
regionId: 'string',
|
|
2950
|
+
requestId: 'string',
|
|
2951
|
+
silenceTime: 'number',
|
|
2952
|
+
taskId: 'string',
|
|
2953
|
+
taskName: 'string',
|
|
2954
|
+
};
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
constructor(map?: { [key: string]: any }) {
|
|
2958
|
+
super(map);
|
|
2959
|
+
}
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
export class DescribeApplicationMonitorResponse extends $tea.Model {
|
|
2963
|
+
headers: { [key: string]: string };
|
|
2964
|
+
body: DescribeApplicationMonitorResponseBody;
|
|
2965
|
+
static names(): { [key: string]: string } {
|
|
2966
|
+
return {
|
|
2967
|
+
headers: 'headers',
|
|
2968
|
+
body: 'body',
|
|
2969
|
+
};
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
static types(): { [key: string]: any } {
|
|
2973
|
+
return {
|
|
2974
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2975
|
+
body: DescribeApplicationMonitorResponseBody,
|
|
2976
|
+
};
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
constructor(map?: { [key: string]: any }) {
|
|
2980
|
+
super(map);
|
|
2981
|
+
}
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2717
2984
|
export class DescribeBandwidthPackageRequest extends $tea.Model {
|
|
2718
2985
|
bandwidthPackageId?: string;
|
|
2719
2986
|
regionId?: string;
|
|
@@ -3365,29 +3632,23 @@ export class DetachLogStoreFromEndpointGroupResponse extends $tea.Model {
|
|
|
3365
3632
|
}
|
|
3366
3633
|
}
|
|
3367
3634
|
|
|
3368
|
-
export class
|
|
3369
|
-
aclIds?: string[];
|
|
3635
|
+
export class DetectApplicationMonitorRequest extends $tea.Model {
|
|
3370
3636
|
clientToken?: string;
|
|
3371
|
-
dryRun?: boolean;
|
|
3372
|
-
listenerId?: string;
|
|
3373
3637
|
regionId?: string;
|
|
3638
|
+
taskId?: string;
|
|
3374
3639
|
static names(): { [key: string]: string } {
|
|
3375
3640
|
return {
|
|
3376
|
-
aclIds: 'AclIds',
|
|
3377
3641
|
clientToken: 'ClientToken',
|
|
3378
|
-
dryRun: 'DryRun',
|
|
3379
|
-
listenerId: 'ListenerId',
|
|
3380
3642
|
regionId: 'RegionId',
|
|
3643
|
+
taskId: 'TaskId',
|
|
3381
3644
|
};
|
|
3382
3645
|
}
|
|
3383
3646
|
|
|
3384
3647
|
static types(): { [key: string]: any } {
|
|
3385
3648
|
return {
|
|
3386
|
-
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3387
3649
|
clientToken: 'string',
|
|
3388
|
-
dryRun: 'boolean',
|
|
3389
|
-
listenerId: 'string',
|
|
3390
3650
|
regionId: 'string',
|
|
3651
|
+
taskId: 'string',
|
|
3391
3652
|
};
|
|
3392
3653
|
}
|
|
3393
3654
|
|
|
@@ -3396,22 +3657,16 @@ export class DissociateAclsFromListenerRequest extends $tea.Model {
|
|
|
3396
3657
|
}
|
|
3397
3658
|
}
|
|
3398
3659
|
|
|
3399
|
-
export class
|
|
3400
|
-
aclIds?: string[];
|
|
3401
|
-
listenerId?: string;
|
|
3660
|
+
export class DetectApplicationMonitorResponseBody extends $tea.Model {
|
|
3402
3661
|
requestId?: string;
|
|
3403
3662
|
static names(): { [key: string]: string } {
|
|
3404
3663
|
return {
|
|
3405
|
-
aclIds: 'AclIds',
|
|
3406
|
-
listenerId: 'ListenerId',
|
|
3407
3664
|
requestId: 'RequestId',
|
|
3408
3665
|
};
|
|
3409
3666
|
}
|
|
3410
3667
|
|
|
3411
3668
|
static types(): { [key: string]: any } {
|
|
3412
3669
|
return {
|
|
3413
|
-
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3414
|
-
listenerId: 'string',
|
|
3415
3670
|
requestId: 'string',
|
|
3416
3671
|
};
|
|
3417
3672
|
}
|
|
@@ -3421,9 +3676,9 @@ export class DissociateAclsFromListenerResponseBody extends $tea.Model {
|
|
|
3421
3676
|
}
|
|
3422
3677
|
}
|
|
3423
3678
|
|
|
3424
|
-
export class
|
|
3679
|
+
export class DetectApplicationMonitorResponse extends $tea.Model {
|
|
3425
3680
|
headers: { [key: string]: string };
|
|
3426
|
-
body:
|
|
3681
|
+
body: DetectApplicationMonitorResponseBody;
|
|
3427
3682
|
static names(): { [key: string]: string } {
|
|
3428
3683
|
return {
|
|
3429
3684
|
headers: 'headers',
|
|
@@ -3434,7 +3689,7 @@ export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
3434
3689
|
static types(): { [key: string]: any } {
|
|
3435
3690
|
return {
|
|
3436
3691
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3437
|
-
body:
|
|
3692
|
+
body: DetectApplicationMonitorResponseBody,
|
|
3438
3693
|
};
|
|
3439
3694
|
}
|
|
3440
3695
|
|
|
@@ -3443,29 +3698,23 @@ export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
3443
3698
|
}
|
|
3444
3699
|
}
|
|
3445
3700
|
|
|
3446
|
-
export class
|
|
3447
|
-
acceleratorId?: string;
|
|
3701
|
+
export class DisableApplicationMonitorRequest extends $tea.Model {
|
|
3448
3702
|
clientToken?: string;
|
|
3449
|
-
domains?: string[];
|
|
3450
|
-
listenerId?: string;
|
|
3451
3703
|
regionId?: string;
|
|
3704
|
+
taskId?: string;
|
|
3452
3705
|
static names(): { [key: string]: string } {
|
|
3453
3706
|
return {
|
|
3454
|
-
acceleratorId: 'AcceleratorId',
|
|
3455
3707
|
clientToken: 'ClientToken',
|
|
3456
|
-
domains: 'Domains',
|
|
3457
|
-
listenerId: 'ListenerId',
|
|
3458
3708
|
regionId: 'RegionId',
|
|
3709
|
+
taskId: 'TaskId',
|
|
3459
3710
|
};
|
|
3460
3711
|
}
|
|
3461
3712
|
|
|
3462
3713
|
static types(): { [key: string]: any } {
|
|
3463
3714
|
return {
|
|
3464
|
-
acceleratorId: 'string',
|
|
3465
3715
|
clientToken: 'string',
|
|
3466
|
-
domains: { 'type': 'array', 'itemType': 'string' },
|
|
3467
|
-
listenerId: 'string',
|
|
3468
3716
|
regionId: 'string',
|
|
3717
|
+
taskId: 'string',
|
|
3469
3718
|
};
|
|
3470
3719
|
}
|
|
3471
3720
|
|
|
@@ -3474,7 +3723,7 @@ export class DissociateAdditionalCertificatesFromListenerRequest extends $tea.Mo
|
|
|
3474
3723
|
}
|
|
3475
3724
|
}
|
|
3476
3725
|
|
|
3477
|
-
export class
|
|
3726
|
+
export class DisableApplicationMonitorResponseBody extends $tea.Model {
|
|
3478
3727
|
requestId?: string;
|
|
3479
3728
|
static names(): { [key: string]: string } {
|
|
3480
3729
|
return {
|
|
@@ -3493,9 +3742,9 @@ export class DissociateAdditionalCertificatesFromListenerResponseBody extends $t
|
|
|
3493
3742
|
}
|
|
3494
3743
|
}
|
|
3495
3744
|
|
|
3496
|
-
export class
|
|
3745
|
+
export class DisableApplicationMonitorResponse extends $tea.Model {
|
|
3497
3746
|
headers: { [key: string]: string };
|
|
3498
|
-
body:
|
|
3747
|
+
body: DisableApplicationMonitorResponseBody;
|
|
3499
3748
|
static names(): { [key: string]: string } {
|
|
3500
3749
|
return {
|
|
3501
3750
|
headers: 'headers',
|
|
@@ -3506,7 +3755,7 @@ export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.M
|
|
|
3506
3755
|
static types(): { [key: string]: any } {
|
|
3507
3756
|
return {
|
|
3508
3757
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3509
|
-
body:
|
|
3758
|
+
body: DisableApplicationMonitorResponseBody,
|
|
3510
3759
|
};
|
|
3511
3760
|
}
|
|
3512
3761
|
|
|
@@ -3515,19 +3764,28 @@ export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.M
|
|
|
3515
3764
|
}
|
|
3516
3765
|
}
|
|
3517
3766
|
|
|
3518
|
-
export class
|
|
3519
|
-
|
|
3767
|
+
export class DissociateAclsFromListenerRequest extends $tea.Model {
|
|
3768
|
+
aclIds?: string[];
|
|
3769
|
+
clientToken?: string;
|
|
3770
|
+
dryRun?: boolean;
|
|
3771
|
+
listenerId?: string;
|
|
3520
3772
|
regionId?: string;
|
|
3521
3773
|
static names(): { [key: string]: string } {
|
|
3522
3774
|
return {
|
|
3523
|
-
|
|
3775
|
+
aclIds: 'AclIds',
|
|
3776
|
+
clientToken: 'ClientToken',
|
|
3777
|
+
dryRun: 'DryRun',
|
|
3778
|
+
listenerId: 'ListenerId',
|
|
3524
3779
|
regionId: 'RegionId',
|
|
3525
3780
|
};
|
|
3526
3781
|
}
|
|
3527
3782
|
|
|
3528
3783
|
static types(): { [key: string]: any } {
|
|
3529
3784
|
return {
|
|
3530
|
-
|
|
3785
|
+
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3786
|
+
clientToken: 'string',
|
|
3787
|
+
dryRun: 'boolean',
|
|
3788
|
+
listenerId: 'string',
|
|
3531
3789
|
regionId: 'string',
|
|
3532
3790
|
};
|
|
3533
3791
|
}
|
|
@@ -3537,13 +3795,220 @@ export class GetAclRequest extends $tea.Model {
|
|
|
3537
3795
|
}
|
|
3538
3796
|
}
|
|
3539
3797
|
|
|
3540
|
-
export class
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3798
|
+
export class DissociateAclsFromListenerResponseBody extends $tea.Model {
|
|
3799
|
+
aclIds?: string[];
|
|
3800
|
+
listenerId?: string;
|
|
3801
|
+
requestId?: string;
|
|
3802
|
+
static names(): { [key: string]: string } {
|
|
3803
|
+
return {
|
|
3804
|
+
aclIds: 'AclIds',
|
|
3805
|
+
listenerId: 'ListenerId',
|
|
3806
|
+
requestId: 'RequestId',
|
|
3807
|
+
};
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
static types(): { [key: string]: any } {
|
|
3811
|
+
return {
|
|
3812
|
+
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3813
|
+
listenerId: 'string',
|
|
3814
|
+
requestId: 'string',
|
|
3815
|
+
};
|
|
3816
|
+
}
|
|
3817
|
+
|
|
3818
|
+
constructor(map?: { [key: string]: any }) {
|
|
3819
|
+
super(map);
|
|
3820
|
+
}
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
3824
|
+
headers: { [key: string]: string };
|
|
3825
|
+
body: DissociateAclsFromListenerResponseBody;
|
|
3826
|
+
static names(): { [key: string]: string } {
|
|
3827
|
+
return {
|
|
3828
|
+
headers: 'headers',
|
|
3829
|
+
body: 'body',
|
|
3830
|
+
};
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
static types(): { [key: string]: any } {
|
|
3834
|
+
return {
|
|
3835
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3836
|
+
body: DissociateAclsFromListenerResponseBody,
|
|
3837
|
+
};
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
constructor(map?: { [key: string]: any }) {
|
|
3841
|
+
super(map);
|
|
3842
|
+
}
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
export class DissociateAdditionalCertificatesFromListenerRequest extends $tea.Model {
|
|
3846
|
+
acceleratorId?: string;
|
|
3847
|
+
clientToken?: string;
|
|
3848
|
+
domains?: string[];
|
|
3849
|
+
listenerId?: string;
|
|
3850
|
+
regionId?: string;
|
|
3851
|
+
static names(): { [key: string]: string } {
|
|
3852
|
+
return {
|
|
3853
|
+
acceleratorId: 'AcceleratorId',
|
|
3854
|
+
clientToken: 'ClientToken',
|
|
3855
|
+
domains: 'Domains',
|
|
3856
|
+
listenerId: 'ListenerId',
|
|
3857
|
+
regionId: 'RegionId',
|
|
3858
|
+
};
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
static types(): { [key: string]: any } {
|
|
3862
|
+
return {
|
|
3863
|
+
acceleratorId: 'string',
|
|
3864
|
+
clientToken: 'string',
|
|
3865
|
+
domains: { 'type': 'array', 'itemType': 'string' },
|
|
3866
|
+
listenerId: 'string',
|
|
3867
|
+
regionId: 'string',
|
|
3868
|
+
};
|
|
3869
|
+
}
|
|
3870
|
+
|
|
3871
|
+
constructor(map?: { [key: string]: any }) {
|
|
3872
|
+
super(map);
|
|
3873
|
+
}
|
|
3874
|
+
}
|
|
3875
|
+
|
|
3876
|
+
export class DissociateAdditionalCertificatesFromListenerResponseBody extends $tea.Model {
|
|
3877
|
+
requestId?: string;
|
|
3878
|
+
static names(): { [key: string]: string } {
|
|
3879
|
+
return {
|
|
3880
|
+
requestId: 'RequestId',
|
|
3881
|
+
};
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
static types(): { [key: string]: any } {
|
|
3885
|
+
return {
|
|
3886
|
+
requestId: 'string',
|
|
3887
|
+
};
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
constructor(map?: { [key: string]: any }) {
|
|
3891
|
+
super(map);
|
|
3892
|
+
}
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.Model {
|
|
3896
|
+
headers: { [key: string]: string };
|
|
3897
|
+
body: DissociateAdditionalCertificatesFromListenerResponseBody;
|
|
3898
|
+
static names(): { [key: string]: string } {
|
|
3899
|
+
return {
|
|
3900
|
+
headers: 'headers',
|
|
3901
|
+
body: 'body',
|
|
3902
|
+
};
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
static types(): { [key: string]: any } {
|
|
3906
|
+
return {
|
|
3907
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3908
|
+
body: DissociateAdditionalCertificatesFromListenerResponseBody,
|
|
3909
|
+
};
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
constructor(map?: { [key: string]: any }) {
|
|
3913
|
+
super(map);
|
|
3914
|
+
}
|
|
3915
|
+
}
|
|
3916
|
+
|
|
3917
|
+
export class EnableApplicationMonitorRequest extends $tea.Model {
|
|
3918
|
+
clientToken?: string;
|
|
3919
|
+
regionId?: string;
|
|
3920
|
+
taskId?: string;
|
|
3921
|
+
static names(): { [key: string]: string } {
|
|
3922
|
+
return {
|
|
3923
|
+
clientToken: 'ClientToken',
|
|
3924
|
+
regionId: 'RegionId',
|
|
3925
|
+
taskId: 'TaskId',
|
|
3926
|
+
};
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
static types(): { [key: string]: any } {
|
|
3930
|
+
return {
|
|
3931
|
+
clientToken: 'string',
|
|
3932
|
+
regionId: 'string',
|
|
3933
|
+
taskId: 'string',
|
|
3934
|
+
};
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
constructor(map?: { [key: string]: any }) {
|
|
3938
|
+
super(map);
|
|
3939
|
+
}
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
export class EnableApplicationMonitorResponseBody extends $tea.Model {
|
|
3943
|
+
requestId?: string;
|
|
3944
|
+
static names(): { [key: string]: string } {
|
|
3945
|
+
return {
|
|
3946
|
+
requestId: 'RequestId',
|
|
3947
|
+
};
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
static types(): { [key: string]: any } {
|
|
3951
|
+
return {
|
|
3952
|
+
requestId: 'string',
|
|
3953
|
+
};
|
|
3954
|
+
}
|
|
3955
|
+
|
|
3956
|
+
constructor(map?: { [key: string]: any }) {
|
|
3957
|
+
super(map);
|
|
3958
|
+
}
|
|
3959
|
+
}
|
|
3960
|
+
|
|
3961
|
+
export class EnableApplicationMonitorResponse extends $tea.Model {
|
|
3962
|
+
headers: { [key: string]: string };
|
|
3963
|
+
body: EnableApplicationMonitorResponseBody;
|
|
3964
|
+
static names(): { [key: string]: string } {
|
|
3965
|
+
return {
|
|
3966
|
+
headers: 'headers',
|
|
3967
|
+
body: 'body',
|
|
3968
|
+
};
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
static types(): { [key: string]: any } {
|
|
3972
|
+
return {
|
|
3973
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3974
|
+
body: EnableApplicationMonitorResponseBody,
|
|
3975
|
+
};
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
constructor(map?: { [key: string]: any }) {
|
|
3979
|
+
super(map);
|
|
3980
|
+
}
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3983
|
+
export class GetAclRequest extends $tea.Model {
|
|
3984
|
+
aclId?: string;
|
|
3985
|
+
regionId?: string;
|
|
3986
|
+
static names(): { [key: string]: string } {
|
|
3987
|
+
return {
|
|
3988
|
+
aclId: 'AclId',
|
|
3989
|
+
regionId: 'RegionId',
|
|
3990
|
+
};
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
static types(): { [key: string]: any } {
|
|
3994
|
+
return {
|
|
3995
|
+
aclId: 'string',
|
|
3996
|
+
regionId: 'string',
|
|
3997
|
+
};
|
|
3998
|
+
}
|
|
3999
|
+
|
|
4000
|
+
constructor(map?: { [key: string]: any }) {
|
|
4001
|
+
super(map);
|
|
4002
|
+
}
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
export class GetAclResponseBody extends $tea.Model {
|
|
4006
|
+
aclEntries?: GetAclResponseBodyAclEntries[];
|
|
4007
|
+
aclId?: string;
|
|
4008
|
+
aclName?: string;
|
|
4009
|
+
aclStatus?: string;
|
|
4010
|
+
addressIPVersion?: string;
|
|
4011
|
+
relatedListeners?: GetAclResponseBodyRelatedListeners[];
|
|
3547
4012
|
requestId?: string;
|
|
3548
4013
|
static names(): { [key: string]: string } {
|
|
3549
4014
|
return {
|
|
@@ -4265,20 +4730,26 @@ export class ListAclsResponse extends $tea.Model {
|
|
|
4265
4730
|
}
|
|
4266
4731
|
}
|
|
4267
4732
|
|
|
4268
|
-
export class
|
|
4269
|
-
|
|
4733
|
+
export class ListApplicationMonitorRequest extends $tea.Model {
|
|
4734
|
+
pageNumber?: number;
|
|
4735
|
+
pageSize?: number;
|
|
4270
4736
|
regionId?: string;
|
|
4737
|
+
searchValue?: string;
|
|
4271
4738
|
static names(): { [key: string]: string } {
|
|
4272
4739
|
return {
|
|
4273
|
-
|
|
4740
|
+
pageNumber: 'PageNumber',
|
|
4741
|
+
pageSize: 'PageSize',
|
|
4274
4742
|
regionId: 'RegionId',
|
|
4743
|
+
searchValue: 'SearchValue',
|
|
4275
4744
|
};
|
|
4276
4745
|
}
|
|
4277
4746
|
|
|
4278
4747
|
static types(): { [key: string]: any } {
|
|
4279
4748
|
return {
|
|
4280
|
-
|
|
4749
|
+
pageNumber: 'number',
|
|
4750
|
+
pageSize: 'number',
|
|
4281
4751
|
regionId: 'string',
|
|
4752
|
+
searchValue: 'string',
|
|
4282
4753
|
};
|
|
4283
4754
|
}
|
|
4284
4755
|
|
|
@@ -4287,20 +4758,29 @@ export class ListAvailableAccelerateAreasRequest extends $tea.Model {
|
|
|
4287
4758
|
}
|
|
4288
4759
|
}
|
|
4289
4760
|
|
|
4290
|
-
export class
|
|
4291
|
-
|
|
4761
|
+
export class ListApplicationMonitorResponseBody extends $tea.Model {
|
|
4762
|
+
applicationMonitors?: ListApplicationMonitorResponseBodyApplicationMonitors[];
|
|
4763
|
+
pageNumber?: number;
|
|
4764
|
+
pageSize?: number;
|
|
4292
4765
|
requestId?: string;
|
|
4766
|
+
totalCount?: number;
|
|
4293
4767
|
static names(): { [key: string]: string } {
|
|
4294
4768
|
return {
|
|
4295
|
-
|
|
4769
|
+
applicationMonitors: 'ApplicationMonitors',
|
|
4770
|
+
pageNumber: 'PageNumber',
|
|
4771
|
+
pageSize: 'PageSize',
|
|
4296
4772
|
requestId: 'RequestId',
|
|
4773
|
+
totalCount: 'TotalCount',
|
|
4297
4774
|
};
|
|
4298
4775
|
}
|
|
4299
4776
|
|
|
4300
4777
|
static types(): { [key: string]: any } {
|
|
4301
4778
|
return {
|
|
4302
|
-
|
|
4779
|
+
applicationMonitors: { 'type': 'array', 'itemType': ListApplicationMonitorResponseBodyApplicationMonitors },
|
|
4780
|
+
pageNumber: 'number',
|
|
4781
|
+
pageSize: 'number',
|
|
4303
4782
|
requestId: 'string',
|
|
4783
|
+
totalCount: 'number',
|
|
4304
4784
|
};
|
|
4305
4785
|
}
|
|
4306
4786
|
|
|
@@ -4309,9 +4789,9 @@ export class ListAvailableAccelerateAreasResponseBody extends $tea.Model {
|
|
|
4309
4789
|
}
|
|
4310
4790
|
}
|
|
4311
4791
|
|
|
4312
|
-
export class
|
|
4792
|
+
export class ListApplicationMonitorResponse extends $tea.Model {
|
|
4313
4793
|
headers: { [key: string]: string };
|
|
4314
|
-
body:
|
|
4794
|
+
body: ListApplicationMonitorResponseBody;
|
|
4315
4795
|
static names(): { [key: string]: string } {
|
|
4316
4796
|
return {
|
|
4317
4797
|
headers: 'headers',
|
|
@@ -4322,7 +4802,7 @@ export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
4322
4802
|
static types(): { [key: string]: any } {
|
|
4323
4803
|
return {
|
|
4324
4804
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4325
|
-
body:
|
|
4805
|
+
body: ListApplicationMonitorResponseBody,
|
|
4326
4806
|
};
|
|
4327
4807
|
}
|
|
4328
4808
|
|
|
@@ -4331,20 +4811,32 @@ export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
4331
4811
|
}
|
|
4332
4812
|
}
|
|
4333
4813
|
|
|
4334
|
-
export class
|
|
4335
|
-
|
|
4814
|
+
export class ListApplicationMonitorDetectResultRequest extends $tea.Model {
|
|
4815
|
+
beginTime?: number;
|
|
4816
|
+
endTime?: number;
|
|
4817
|
+
pageNumber?: number;
|
|
4818
|
+
pageSize?: number;
|
|
4336
4819
|
regionId?: string;
|
|
4820
|
+
taskId?: string;
|
|
4337
4821
|
static names(): { [key: string]: string } {
|
|
4338
4822
|
return {
|
|
4339
|
-
|
|
4823
|
+
beginTime: 'BeginTime',
|
|
4824
|
+
endTime: 'EndTime',
|
|
4825
|
+
pageNumber: 'PageNumber',
|
|
4826
|
+
pageSize: 'PageSize',
|
|
4340
4827
|
regionId: 'RegionId',
|
|
4828
|
+
taskId: 'TaskId',
|
|
4341
4829
|
};
|
|
4342
4830
|
}
|
|
4343
4831
|
|
|
4344
4832
|
static types(): { [key: string]: any } {
|
|
4345
4833
|
return {
|
|
4346
|
-
|
|
4834
|
+
beginTime: 'number',
|
|
4835
|
+
endTime: 'number',
|
|
4836
|
+
pageNumber: 'number',
|
|
4837
|
+
pageSize: 'number',
|
|
4347
4838
|
regionId: 'string',
|
|
4839
|
+
taskId: 'string',
|
|
4348
4840
|
};
|
|
4349
4841
|
}
|
|
4350
4842
|
|
|
@@ -4353,20 +4845,29 @@ export class ListAvailableBusiRegionsRequest extends $tea.Model {
|
|
|
4353
4845
|
}
|
|
4354
4846
|
}
|
|
4355
4847
|
|
|
4356
|
-
export class
|
|
4357
|
-
|
|
4848
|
+
export class ListApplicationMonitorDetectResultResponseBody extends $tea.Model {
|
|
4849
|
+
applicationMonitorDetectResultList?: ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList[];
|
|
4850
|
+
pageNumber?: number;
|
|
4851
|
+
pageSize?: number;
|
|
4358
4852
|
requestId?: string;
|
|
4853
|
+
totalCount?: number;
|
|
4359
4854
|
static names(): { [key: string]: string } {
|
|
4360
4855
|
return {
|
|
4361
|
-
|
|
4856
|
+
applicationMonitorDetectResultList: 'ApplicationMonitorDetectResultList',
|
|
4857
|
+
pageNumber: 'PageNumber',
|
|
4858
|
+
pageSize: 'PageSize',
|
|
4362
4859
|
requestId: 'RequestId',
|
|
4860
|
+
totalCount: 'TotalCount',
|
|
4363
4861
|
};
|
|
4364
4862
|
}
|
|
4365
4863
|
|
|
4366
4864
|
static types(): { [key: string]: any } {
|
|
4367
4865
|
return {
|
|
4368
|
-
|
|
4866
|
+
applicationMonitorDetectResultList: { 'type': 'array', 'itemType': ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList },
|
|
4867
|
+
pageNumber: 'number',
|
|
4868
|
+
pageSize: 'number',
|
|
4369
4869
|
requestId: 'string',
|
|
4870
|
+
totalCount: 'number',
|
|
4370
4871
|
};
|
|
4371
4872
|
}
|
|
4372
4873
|
|
|
@@ -4375,9 +4876,9 @@ export class ListAvailableBusiRegionsResponseBody extends $tea.Model {
|
|
|
4375
4876
|
}
|
|
4376
4877
|
}
|
|
4377
4878
|
|
|
4378
|
-
export class
|
|
4879
|
+
export class ListApplicationMonitorDetectResultResponse extends $tea.Model {
|
|
4379
4880
|
headers: { [key: string]: string };
|
|
4380
|
-
body:
|
|
4881
|
+
body: ListApplicationMonitorDetectResultResponseBody;
|
|
4381
4882
|
static names(): { [key: string]: string } {
|
|
4382
4883
|
return {
|
|
4383
4884
|
headers: 'headers',
|
|
@@ -4388,7 +4889,7 @@ export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
4388
4889
|
static types(): { [key: string]: any } {
|
|
4389
4890
|
return {
|
|
4390
4891
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4391
|
-
body:
|
|
4892
|
+
body: ListApplicationMonitorDetectResultResponseBody,
|
|
4392
4893
|
};
|
|
4393
4894
|
}
|
|
4394
4895
|
|
|
@@ -4397,7 +4898,139 @@ export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
4397
4898
|
}
|
|
4398
4899
|
}
|
|
4399
4900
|
|
|
4400
|
-
export class
|
|
4901
|
+
export class ListAvailableAccelerateAreasRequest extends $tea.Model {
|
|
4902
|
+
acceleratorId?: string;
|
|
4903
|
+
regionId?: string;
|
|
4904
|
+
static names(): { [key: string]: string } {
|
|
4905
|
+
return {
|
|
4906
|
+
acceleratorId: 'AcceleratorId',
|
|
4907
|
+
regionId: 'RegionId',
|
|
4908
|
+
};
|
|
4909
|
+
}
|
|
4910
|
+
|
|
4911
|
+
static types(): { [key: string]: any } {
|
|
4912
|
+
return {
|
|
4913
|
+
acceleratorId: 'string',
|
|
4914
|
+
regionId: 'string',
|
|
4915
|
+
};
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
constructor(map?: { [key: string]: any }) {
|
|
4919
|
+
super(map);
|
|
4920
|
+
}
|
|
4921
|
+
}
|
|
4922
|
+
|
|
4923
|
+
export class ListAvailableAccelerateAreasResponseBody extends $tea.Model {
|
|
4924
|
+
areas?: ListAvailableAccelerateAreasResponseBodyAreas[];
|
|
4925
|
+
requestId?: string;
|
|
4926
|
+
static names(): { [key: string]: string } {
|
|
4927
|
+
return {
|
|
4928
|
+
areas: 'Areas',
|
|
4929
|
+
requestId: 'RequestId',
|
|
4930
|
+
};
|
|
4931
|
+
}
|
|
4932
|
+
|
|
4933
|
+
static types(): { [key: string]: any } {
|
|
4934
|
+
return {
|
|
4935
|
+
areas: { 'type': 'array', 'itemType': ListAvailableAccelerateAreasResponseBodyAreas },
|
|
4936
|
+
requestId: 'string',
|
|
4937
|
+
};
|
|
4938
|
+
}
|
|
4939
|
+
|
|
4940
|
+
constructor(map?: { [key: string]: any }) {
|
|
4941
|
+
super(map);
|
|
4942
|
+
}
|
|
4943
|
+
}
|
|
4944
|
+
|
|
4945
|
+
export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
4946
|
+
headers: { [key: string]: string };
|
|
4947
|
+
body: ListAvailableAccelerateAreasResponseBody;
|
|
4948
|
+
static names(): { [key: string]: string } {
|
|
4949
|
+
return {
|
|
4950
|
+
headers: 'headers',
|
|
4951
|
+
body: 'body',
|
|
4952
|
+
};
|
|
4953
|
+
}
|
|
4954
|
+
|
|
4955
|
+
static types(): { [key: string]: any } {
|
|
4956
|
+
return {
|
|
4957
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4958
|
+
body: ListAvailableAccelerateAreasResponseBody,
|
|
4959
|
+
};
|
|
4960
|
+
}
|
|
4961
|
+
|
|
4962
|
+
constructor(map?: { [key: string]: any }) {
|
|
4963
|
+
super(map);
|
|
4964
|
+
}
|
|
4965
|
+
}
|
|
4966
|
+
|
|
4967
|
+
export class ListAvailableBusiRegionsRequest extends $tea.Model {
|
|
4968
|
+
acceleratorId?: string;
|
|
4969
|
+
regionId?: string;
|
|
4970
|
+
static names(): { [key: string]: string } {
|
|
4971
|
+
return {
|
|
4972
|
+
acceleratorId: 'AcceleratorId',
|
|
4973
|
+
regionId: 'RegionId',
|
|
4974
|
+
};
|
|
4975
|
+
}
|
|
4976
|
+
|
|
4977
|
+
static types(): { [key: string]: any } {
|
|
4978
|
+
return {
|
|
4979
|
+
acceleratorId: 'string',
|
|
4980
|
+
regionId: 'string',
|
|
4981
|
+
};
|
|
4982
|
+
}
|
|
4983
|
+
|
|
4984
|
+
constructor(map?: { [key: string]: any }) {
|
|
4985
|
+
super(map);
|
|
4986
|
+
}
|
|
4987
|
+
}
|
|
4988
|
+
|
|
4989
|
+
export class ListAvailableBusiRegionsResponseBody extends $tea.Model {
|
|
4990
|
+
regions?: ListAvailableBusiRegionsResponseBodyRegions[];
|
|
4991
|
+
requestId?: string;
|
|
4992
|
+
static names(): { [key: string]: string } {
|
|
4993
|
+
return {
|
|
4994
|
+
regions: 'Regions',
|
|
4995
|
+
requestId: 'RequestId',
|
|
4996
|
+
};
|
|
4997
|
+
}
|
|
4998
|
+
|
|
4999
|
+
static types(): { [key: string]: any } {
|
|
5000
|
+
return {
|
|
5001
|
+
regions: { 'type': 'array', 'itemType': ListAvailableBusiRegionsResponseBodyRegions },
|
|
5002
|
+
requestId: 'string',
|
|
5003
|
+
};
|
|
5004
|
+
}
|
|
5005
|
+
|
|
5006
|
+
constructor(map?: { [key: string]: any }) {
|
|
5007
|
+
super(map);
|
|
5008
|
+
}
|
|
5009
|
+
}
|
|
5010
|
+
|
|
5011
|
+
export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
5012
|
+
headers: { [key: string]: string };
|
|
5013
|
+
body: ListAvailableBusiRegionsResponseBody;
|
|
5014
|
+
static names(): { [key: string]: string } {
|
|
5015
|
+
return {
|
|
5016
|
+
headers: 'headers',
|
|
5017
|
+
body: 'body',
|
|
5018
|
+
};
|
|
5019
|
+
}
|
|
5020
|
+
|
|
5021
|
+
static types(): { [key: string]: any } {
|
|
5022
|
+
return {
|
|
5023
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5024
|
+
body: ListAvailableBusiRegionsResponseBody,
|
|
5025
|
+
};
|
|
5026
|
+
}
|
|
5027
|
+
|
|
5028
|
+
constructor(map?: { [key: string]: any }) {
|
|
5029
|
+
super(map);
|
|
5030
|
+
}
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5033
|
+
export class ListBandwidthPackagesRequest extends $tea.Model {
|
|
4401
5034
|
bandwidthPackageId?: string;
|
|
4402
5035
|
pageNumber?: number;
|
|
4403
5036
|
pageSize?: number;
|
|
@@ -5732,6 +6365,96 @@ export class UpdateAclAttributeResponse extends $tea.Model {
|
|
|
5732
6365
|
}
|
|
5733
6366
|
}
|
|
5734
6367
|
|
|
6368
|
+
export class UpdateApplicationMonitorRequest extends $tea.Model {
|
|
6369
|
+
address?: string;
|
|
6370
|
+
clientToken?: string;
|
|
6371
|
+
detectEnable?: boolean;
|
|
6372
|
+
detectThreshold?: number;
|
|
6373
|
+
detectTimes?: number;
|
|
6374
|
+
listenerId?: string;
|
|
6375
|
+
optionsJson?: string;
|
|
6376
|
+
regionId?: string;
|
|
6377
|
+
silenceTime?: number;
|
|
6378
|
+
taskId?: string;
|
|
6379
|
+
taskName?: string;
|
|
6380
|
+
static names(): { [key: string]: string } {
|
|
6381
|
+
return {
|
|
6382
|
+
address: 'Address',
|
|
6383
|
+
clientToken: 'ClientToken',
|
|
6384
|
+
detectEnable: 'DetectEnable',
|
|
6385
|
+
detectThreshold: 'DetectThreshold',
|
|
6386
|
+
detectTimes: 'DetectTimes',
|
|
6387
|
+
listenerId: 'ListenerId',
|
|
6388
|
+
optionsJson: 'OptionsJson',
|
|
6389
|
+
regionId: 'RegionId',
|
|
6390
|
+
silenceTime: 'SilenceTime',
|
|
6391
|
+
taskId: 'TaskId',
|
|
6392
|
+
taskName: 'TaskName',
|
|
6393
|
+
};
|
|
6394
|
+
}
|
|
6395
|
+
|
|
6396
|
+
static types(): { [key: string]: any } {
|
|
6397
|
+
return {
|
|
6398
|
+
address: 'string',
|
|
6399
|
+
clientToken: 'string',
|
|
6400
|
+
detectEnable: 'boolean',
|
|
6401
|
+
detectThreshold: 'number',
|
|
6402
|
+
detectTimes: 'number',
|
|
6403
|
+
listenerId: 'string',
|
|
6404
|
+
optionsJson: 'string',
|
|
6405
|
+
regionId: 'string',
|
|
6406
|
+
silenceTime: 'number',
|
|
6407
|
+
taskId: 'string',
|
|
6408
|
+
taskName: 'string',
|
|
6409
|
+
};
|
|
6410
|
+
}
|
|
6411
|
+
|
|
6412
|
+
constructor(map?: { [key: string]: any }) {
|
|
6413
|
+
super(map);
|
|
6414
|
+
}
|
|
6415
|
+
}
|
|
6416
|
+
|
|
6417
|
+
export class UpdateApplicationMonitorResponseBody extends $tea.Model {
|
|
6418
|
+
requestId?: string;
|
|
6419
|
+
static names(): { [key: string]: string } {
|
|
6420
|
+
return {
|
|
6421
|
+
requestId: 'RequestId',
|
|
6422
|
+
};
|
|
6423
|
+
}
|
|
6424
|
+
|
|
6425
|
+
static types(): { [key: string]: any } {
|
|
6426
|
+
return {
|
|
6427
|
+
requestId: 'string',
|
|
6428
|
+
};
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6431
|
+
constructor(map?: { [key: string]: any }) {
|
|
6432
|
+
super(map);
|
|
6433
|
+
}
|
|
6434
|
+
}
|
|
6435
|
+
|
|
6436
|
+
export class UpdateApplicationMonitorResponse extends $tea.Model {
|
|
6437
|
+
headers: { [key: string]: string };
|
|
6438
|
+
body: UpdateApplicationMonitorResponseBody;
|
|
6439
|
+
static names(): { [key: string]: string } {
|
|
6440
|
+
return {
|
|
6441
|
+
headers: 'headers',
|
|
6442
|
+
body: 'body',
|
|
6443
|
+
};
|
|
6444
|
+
}
|
|
6445
|
+
|
|
6446
|
+
static types(): { [key: string]: any } {
|
|
6447
|
+
return {
|
|
6448
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6449
|
+
body: UpdateApplicationMonitorResponseBody,
|
|
6450
|
+
};
|
|
6451
|
+
}
|
|
6452
|
+
|
|
6453
|
+
constructor(map?: { [key: string]: any }) {
|
|
6454
|
+
super(map);
|
|
6455
|
+
}
|
|
6456
|
+
}
|
|
6457
|
+
|
|
5735
6458
|
export class UpdateBandwidthPackageRequest extends $tea.Model {
|
|
5736
6459
|
autoPay?: boolean;
|
|
5737
6460
|
autoUseCoupon?: boolean;
|
|
@@ -6571,6 +7294,25 @@ export class AssociateAdditionalCertificatesWithListenerRequestCertificates exte
|
|
|
6571
7294
|
}
|
|
6572
7295
|
}
|
|
6573
7296
|
|
|
7297
|
+
export class CreateAcceleratorRequestIpSetConfig extends $tea.Model {
|
|
7298
|
+
accessMode?: string;
|
|
7299
|
+
static names(): { [key: string]: string } {
|
|
7300
|
+
return {
|
|
7301
|
+
accessMode: 'AccessMode',
|
|
7302
|
+
};
|
|
7303
|
+
}
|
|
7304
|
+
|
|
7305
|
+
static types(): { [key: string]: any } {
|
|
7306
|
+
return {
|
|
7307
|
+
accessMode: 'string',
|
|
7308
|
+
};
|
|
7309
|
+
}
|
|
7310
|
+
|
|
7311
|
+
constructor(map?: { [key: string]: any }) {
|
|
7312
|
+
super(map);
|
|
7313
|
+
}
|
|
7314
|
+
}
|
|
7315
|
+
|
|
6574
7316
|
export class CreateAclRequestAclEntries extends $tea.Model {
|
|
6575
7317
|
entry?: string;
|
|
6576
7318
|
entryDescription?: string;
|
|
@@ -6796,11 +7538,13 @@ export class CreateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
6796
7538
|
forwardGroupConfig?: CreateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig;
|
|
6797
7539
|
order?: number;
|
|
6798
7540
|
ruleActionType?: string;
|
|
7541
|
+
ruleActionValue?: string;
|
|
6799
7542
|
static names(): { [key: string]: string } {
|
|
6800
7543
|
return {
|
|
6801
7544
|
forwardGroupConfig: 'ForwardGroupConfig',
|
|
6802
7545
|
order: 'Order',
|
|
6803
7546
|
ruleActionType: 'RuleActionType',
|
|
7547
|
+
ruleActionValue: 'RuleActionValue',
|
|
6804
7548
|
};
|
|
6805
7549
|
}
|
|
6806
7550
|
|
|
@@ -6809,6 +7553,7 @@ export class CreateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
6809
7553
|
forwardGroupConfig: CreateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig,
|
|
6810
7554
|
order: 'number',
|
|
6811
7555
|
ruleActionType: 'string',
|
|
7556
|
+
ruleActionValue: 'string',
|
|
6812
7557
|
};
|
|
6813
7558
|
}
|
|
6814
7559
|
|
|
@@ -6859,11 +7604,13 @@ export class CreateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
6859
7604
|
hostConfig?: CreateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig;
|
|
6860
7605
|
pathConfig?: CreateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig;
|
|
6861
7606
|
ruleConditionType?: string;
|
|
7607
|
+
ruleConditionValue?: string;
|
|
6862
7608
|
static names(): { [key: string]: string } {
|
|
6863
7609
|
return {
|
|
6864
7610
|
hostConfig: 'HostConfig',
|
|
6865
7611
|
pathConfig: 'PathConfig',
|
|
6866
7612
|
ruleConditionType: 'RuleConditionType',
|
|
7613
|
+
ruleConditionValue: 'RuleConditionValue',
|
|
6867
7614
|
};
|
|
6868
7615
|
}
|
|
6869
7616
|
|
|
@@ -6872,6 +7619,7 @@ export class CreateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
6872
7619
|
hostConfig: CreateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig,
|
|
6873
7620
|
pathConfig: CreateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig,
|
|
6874
7621
|
ruleConditionType: 'string',
|
|
7622
|
+
ruleConditionValue: 'string',
|
|
6875
7623
|
};
|
|
6876
7624
|
}
|
|
6877
7625
|
|
|
@@ -6885,12 +7633,14 @@ export class CreateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
6885
7633
|
priority?: number;
|
|
6886
7634
|
ruleActions?: CreateForwardingRulesRequestForwardingRulesRuleActions[];
|
|
6887
7635
|
ruleConditions?: CreateForwardingRulesRequestForwardingRulesRuleConditions[];
|
|
7636
|
+
ruleDirection?: string;
|
|
6888
7637
|
static names(): { [key: string]: string } {
|
|
6889
7638
|
return {
|
|
6890
7639
|
forwardingRuleName: 'ForwardingRuleName',
|
|
6891
7640
|
priority: 'Priority',
|
|
6892
7641
|
ruleActions: 'RuleActions',
|
|
6893
7642
|
ruleConditions: 'RuleConditions',
|
|
7643
|
+
ruleDirection: 'RuleDirection',
|
|
6894
7644
|
};
|
|
6895
7645
|
}
|
|
6896
7646
|
|
|
@@ -6900,6 +7650,7 @@ export class CreateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
6900
7650
|
priority: 'number',
|
|
6901
7651
|
ruleActions: { 'type': 'array', 'itemType': CreateForwardingRulesRequestForwardingRulesRuleActions },
|
|
6902
7652
|
ruleConditions: { 'type': 'array', 'itemType': CreateForwardingRulesRequestForwardingRulesRuleConditions },
|
|
7653
|
+
ruleDirection: 'string',
|
|
6903
7654
|
};
|
|
6904
7655
|
}
|
|
6905
7656
|
|
|
@@ -7115,6 +7866,53 @@ export class DescribeAcceleratorResponseBodyCrossDomainBandwidthPackage extends
|
|
|
7115
7866
|
}
|
|
7116
7867
|
}
|
|
7117
7868
|
|
|
7869
|
+
export class DescribeAcceleratorResponseBodyIpSetConfig extends $tea.Model {
|
|
7870
|
+
accessMode?: string;
|
|
7871
|
+
static names(): { [key: string]: string } {
|
|
7872
|
+
return {
|
|
7873
|
+
accessMode: 'AccessMode',
|
|
7874
|
+
};
|
|
7875
|
+
}
|
|
7876
|
+
|
|
7877
|
+
static types(): { [key: string]: any } {
|
|
7878
|
+
return {
|
|
7879
|
+
accessMode: 'string',
|
|
7880
|
+
};
|
|
7881
|
+
}
|
|
7882
|
+
|
|
7883
|
+
constructor(map?: { [key: string]: any }) {
|
|
7884
|
+
super(map);
|
|
7885
|
+
}
|
|
7886
|
+
}
|
|
7887
|
+
|
|
7888
|
+
export class DescribeApplicationMonitorResponseBodyIspCityList extends $tea.Model {
|
|
7889
|
+
city?: string;
|
|
7890
|
+
cityName?: string;
|
|
7891
|
+
isp?: string;
|
|
7892
|
+
ispName?: string;
|
|
7893
|
+
static names(): { [key: string]: string } {
|
|
7894
|
+
return {
|
|
7895
|
+
city: 'City',
|
|
7896
|
+
cityName: 'CityName',
|
|
7897
|
+
isp: 'Isp',
|
|
7898
|
+
ispName: 'IspName',
|
|
7899
|
+
};
|
|
7900
|
+
}
|
|
7901
|
+
|
|
7902
|
+
static types(): { [key: string]: any } {
|
|
7903
|
+
return {
|
|
7904
|
+
city: 'string',
|
|
7905
|
+
cityName: 'string',
|
|
7906
|
+
isp: 'string',
|
|
7907
|
+
ispName: 'string',
|
|
7908
|
+
};
|
|
7909
|
+
}
|
|
7910
|
+
|
|
7911
|
+
constructor(map?: { [key: string]: any }) {
|
|
7912
|
+
super(map);
|
|
7913
|
+
}
|
|
7914
|
+
}
|
|
7915
|
+
|
|
7118
7916
|
export class DescribeEndpointGroupResponseBodyEndpointConfigurations extends $tea.Model {
|
|
7119
7917
|
enableClientIPPreservation?: boolean;
|
|
7120
7918
|
endpoint?: string;
|
|
@@ -7565,20 +8363,40 @@ export class ListAcceleratorsResponseBodyAcceleratorsCrossDomainBandwidthPackage
|
|
|
7565
8363
|
}
|
|
7566
8364
|
}
|
|
7567
8365
|
|
|
7568
|
-
export class
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
7572
|
-
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
7576
|
-
|
|
7577
|
-
|
|
7578
|
-
|
|
7579
|
-
|
|
7580
|
-
|
|
7581
|
-
|
|
8366
|
+
export class ListAcceleratorsResponseBodyAcceleratorsIpSetConfig extends $tea.Model {
|
|
8367
|
+
accessMode?: string;
|
|
8368
|
+
static names(): { [key: string]: string } {
|
|
8369
|
+
return {
|
|
8370
|
+
accessMode: 'AccessMode',
|
|
8371
|
+
};
|
|
8372
|
+
}
|
|
8373
|
+
|
|
8374
|
+
static types(): { [key: string]: any } {
|
|
8375
|
+
return {
|
|
8376
|
+
accessMode: 'string',
|
|
8377
|
+
};
|
|
8378
|
+
}
|
|
8379
|
+
|
|
8380
|
+
constructor(map?: { [key: string]: any }) {
|
|
8381
|
+
super(map);
|
|
8382
|
+
}
|
|
8383
|
+
}
|
|
8384
|
+
|
|
8385
|
+
export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
8386
|
+
acceleratorId?: string;
|
|
8387
|
+
bandwidth?: number;
|
|
8388
|
+
basicBandwidthPackage?: ListAcceleratorsResponseBodyAcceleratorsBasicBandwidthPackage;
|
|
8389
|
+
cenId?: string;
|
|
8390
|
+
createTime?: number;
|
|
8391
|
+
crossDomainBandwidthPackage?: ListAcceleratorsResponseBodyAcceleratorsCrossDomainBandwidthPackage;
|
|
8392
|
+
ddosId?: string;
|
|
8393
|
+
description?: string;
|
|
8394
|
+
dnsName?: string;
|
|
8395
|
+
expiredTime?: number;
|
|
8396
|
+
instanceChargeType?: string;
|
|
8397
|
+
ipSetConfig?: ListAcceleratorsResponseBodyAcceleratorsIpSetConfig;
|
|
8398
|
+
name?: string;
|
|
8399
|
+
regionId?: string;
|
|
7582
8400
|
secondDnsName?: string;
|
|
7583
8401
|
spec?: string;
|
|
7584
8402
|
state?: string;
|
|
@@ -7596,6 +8414,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
7596
8414
|
dnsName: 'DnsName',
|
|
7597
8415
|
expiredTime: 'ExpiredTime',
|
|
7598
8416
|
instanceChargeType: 'InstanceChargeType',
|
|
8417
|
+
ipSetConfig: 'IpSetConfig',
|
|
7599
8418
|
name: 'Name',
|
|
7600
8419
|
regionId: 'RegionId',
|
|
7601
8420
|
secondDnsName: 'SecondDnsName',
|
|
@@ -7618,6 +8437,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
7618
8437
|
dnsName: 'string',
|
|
7619
8438
|
expiredTime: 'number',
|
|
7620
8439
|
instanceChargeType: 'string',
|
|
8440
|
+
ipSetConfig: ListAcceleratorsResponseBodyAcceleratorsIpSetConfig,
|
|
7621
8441
|
name: 'string',
|
|
7622
8442
|
regionId: 'string',
|
|
7623
8443
|
secondDnsName: 'string',
|
|
@@ -7660,6 +8480,101 @@ export class ListAclsResponseBodyAcls extends $tea.Model {
|
|
|
7660
8480
|
}
|
|
7661
8481
|
}
|
|
7662
8482
|
|
|
8483
|
+
export class ListApplicationMonitorResponseBodyApplicationMonitors extends $tea.Model {
|
|
8484
|
+
acceleratorId?: string;
|
|
8485
|
+
address?: string;
|
|
8486
|
+
detectEnable?: boolean;
|
|
8487
|
+
detectThreshold?: number;
|
|
8488
|
+
detectTimes?: number;
|
|
8489
|
+
listenerId?: string;
|
|
8490
|
+
optionsJson?: string;
|
|
8491
|
+
silenceTime?: number;
|
|
8492
|
+
state?: string;
|
|
8493
|
+
taskId?: string;
|
|
8494
|
+
taskName?: string;
|
|
8495
|
+
static names(): { [key: string]: string } {
|
|
8496
|
+
return {
|
|
8497
|
+
acceleratorId: 'AcceleratorId',
|
|
8498
|
+
address: 'Address',
|
|
8499
|
+
detectEnable: 'DetectEnable',
|
|
8500
|
+
detectThreshold: 'DetectThreshold',
|
|
8501
|
+
detectTimes: 'DetectTimes',
|
|
8502
|
+
listenerId: 'ListenerId',
|
|
8503
|
+
optionsJson: 'OptionsJson',
|
|
8504
|
+
silenceTime: 'SilenceTime',
|
|
8505
|
+
state: 'State',
|
|
8506
|
+
taskId: 'TaskId',
|
|
8507
|
+
taskName: 'TaskName',
|
|
8508
|
+
};
|
|
8509
|
+
}
|
|
8510
|
+
|
|
8511
|
+
static types(): { [key: string]: any } {
|
|
8512
|
+
return {
|
|
8513
|
+
acceleratorId: 'string',
|
|
8514
|
+
address: 'string',
|
|
8515
|
+
detectEnable: 'boolean',
|
|
8516
|
+
detectThreshold: 'number',
|
|
8517
|
+
detectTimes: 'number',
|
|
8518
|
+
listenerId: 'string',
|
|
8519
|
+
optionsJson: 'string',
|
|
8520
|
+
silenceTime: 'number',
|
|
8521
|
+
state: 'string',
|
|
8522
|
+
taskId: 'string',
|
|
8523
|
+
taskName: 'string',
|
|
8524
|
+
};
|
|
8525
|
+
}
|
|
8526
|
+
|
|
8527
|
+
constructor(map?: { [key: string]: any }) {
|
|
8528
|
+
super(map);
|
|
8529
|
+
}
|
|
8530
|
+
}
|
|
8531
|
+
|
|
8532
|
+
export class ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList extends $tea.Model {
|
|
8533
|
+
acceleratorId?: string;
|
|
8534
|
+
content?: string;
|
|
8535
|
+
detail?: string;
|
|
8536
|
+
detectTime?: string;
|
|
8537
|
+
diagStatus?: string;
|
|
8538
|
+
listenerId?: string;
|
|
8539
|
+
port?: string;
|
|
8540
|
+
protocol?: string;
|
|
8541
|
+
statusCode?: string;
|
|
8542
|
+
taskId?: string;
|
|
8543
|
+
static names(): { [key: string]: string } {
|
|
8544
|
+
return {
|
|
8545
|
+
acceleratorId: 'AcceleratorId',
|
|
8546
|
+
content: 'Content',
|
|
8547
|
+
detail: 'Detail',
|
|
8548
|
+
detectTime: 'DetectTime',
|
|
8549
|
+
diagStatus: 'DiagStatus',
|
|
8550
|
+
listenerId: 'ListenerId',
|
|
8551
|
+
port: 'Port',
|
|
8552
|
+
protocol: 'Protocol',
|
|
8553
|
+
statusCode: 'StatusCode',
|
|
8554
|
+
taskId: 'TaskId',
|
|
8555
|
+
};
|
|
8556
|
+
}
|
|
8557
|
+
|
|
8558
|
+
static types(): { [key: string]: any } {
|
|
8559
|
+
return {
|
|
8560
|
+
acceleratorId: 'string',
|
|
8561
|
+
content: 'string',
|
|
8562
|
+
detail: 'string',
|
|
8563
|
+
detectTime: 'string',
|
|
8564
|
+
diagStatus: 'string',
|
|
8565
|
+
listenerId: 'string',
|
|
8566
|
+
port: 'string',
|
|
8567
|
+
protocol: 'string',
|
|
8568
|
+
statusCode: 'string',
|
|
8569
|
+
taskId: 'string',
|
|
8570
|
+
};
|
|
8571
|
+
}
|
|
8572
|
+
|
|
8573
|
+
constructor(map?: { [key: string]: any }) {
|
|
8574
|
+
super(map);
|
|
8575
|
+
}
|
|
8576
|
+
}
|
|
8577
|
+
|
|
7663
8578
|
export class ListAvailableAccelerateAreasResponseBodyAreasRegionList extends $tea.Model {
|
|
7664
8579
|
localName?: string;
|
|
7665
8580
|
regionId?: string;
|
|
@@ -8146,11 +9061,13 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleActions extends $
|
|
|
8146
9061
|
forwardGroupConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleActionsForwardGroupConfig;
|
|
8147
9062
|
order?: number;
|
|
8148
9063
|
ruleActionType?: string;
|
|
9064
|
+
ruleActionValue?: string;
|
|
8149
9065
|
static names(): { [key: string]: string } {
|
|
8150
9066
|
return {
|
|
8151
9067
|
forwardGroupConfig: 'ForwardGroupConfig',
|
|
8152
9068
|
order: 'Order',
|
|
8153
9069
|
ruleActionType: 'RuleActionType',
|
|
9070
|
+
ruleActionValue: 'RuleActionValue',
|
|
8154
9071
|
};
|
|
8155
9072
|
}
|
|
8156
9073
|
|
|
@@ -8159,6 +9076,7 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleActions extends $
|
|
|
8159
9076
|
forwardGroupConfig: ListForwardingRulesResponseBodyForwardingRulesRuleActionsForwardGroupConfig,
|
|
8160
9077
|
order: 'number',
|
|
8161
9078
|
ruleActionType: 'string',
|
|
9079
|
+
ruleActionValue: 'string',
|
|
8162
9080
|
};
|
|
8163
9081
|
}
|
|
8164
9082
|
|
|
@@ -8209,11 +9127,13 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleConditions extend
|
|
|
8209
9127
|
hostConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsHostConfig;
|
|
8210
9128
|
pathConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsPathConfig;
|
|
8211
9129
|
ruleConditionType?: string;
|
|
9130
|
+
ruleConditionValue?: string;
|
|
8212
9131
|
static names(): { [key: string]: string } {
|
|
8213
9132
|
return {
|
|
8214
9133
|
hostConfig: 'HostConfig',
|
|
8215
9134
|
pathConfig: 'PathConfig',
|
|
8216
9135
|
ruleConditionType: 'RuleConditionType',
|
|
9136
|
+
ruleConditionValue: 'RuleConditionValue',
|
|
8217
9137
|
};
|
|
8218
9138
|
}
|
|
8219
9139
|
|
|
@@ -8222,6 +9142,7 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleConditions extend
|
|
|
8222
9142
|
hostConfig: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsHostConfig,
|
|
8223
9143
|
pathConfig: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsPathConfig,
|
|
8224
9144
|
ruleConditionType: 'string',
|
|
9145
|
+
ruleConditionValue: 'string',
|
|
8225
9146
|
};
|
|
8226
9147
|
}
|
|
8227
9148
|
|
|
@@ -8231,6 +9152,7 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleConditions extend
|
|
|
8231
9152
|
}
|
|
8232
9153
|
|
|
8233
9154
|
export class ListForwardingRulesResponseBodyForwardingRules extends $tea.Model {
|
|
9155
|
+
forwardingRuleDirection?: string;
|
|
8234
9156
|
forwardingRuleId?: string;
|
|
8235
9157
|
forwardingRuleName?: string;
|
|
8236
9158
|
forwardingRuleStatus?: string;
|
|
@@ -8240,6 +9162,7 @@ export class ListForwardingRulesResponseBodyForwardingRules extends $tea.Model {
|
|
|
8240
9162
|
ruleConditions?: ListForwardingRulesResponseBodyForwardingRulesRuleConditions[];
|
|
8241
9163
|
static names(): { [key: string]: string } {
|
|
8242
9164
|
return {
|
|
9165
|
+
forwardingRuleDirection: 'ForwardingRuleDirection',
|
|
8243
9166
|
forwardingRuleId: 'ForwardingRuleId',
|
|
8244
9167
|
forwardingRuleName: 'ForwardingRuleName',
|
|
8245
9168
|
forwardingRuleStatus: 'ForwardingRuleStatus',
|
|
@@ -8252,6 +9175,7 @@ export class ListForwardingRulesResponseBodyForwardingRules extends $tea.Model {
|
|
|
8252
9175
|
|
|
8253
9176
|
static types(): { [key: string]: any } {
|
|
8254
9177
|
return {
|
|
9178
|
+
forwardingRuleDirection: 'string',
|
|
8255
9179
|
forwardingRuleId: 'string',
|
|
8256
9180
|
forwardingRuleName: 'string',
|
|
8257
9181
|
forwardingRuleStatus: 'string',
|
|
@@ -8747,11 +9671,13 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
8747
9671
|
forwardGroupConfig?: UpdateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig;
|
|
8748
9672
|
order?: number;
|
|
8749
9673
|
ruleActionType?: string;
|
|
9674
|
+
ruleActionValue?: string;
|
|
8750
9675
|
static names(): { [key: string]: string } {
|
|
8751
9676
|
return {
|
|
8752
9677
|
forwardGroupConfig: 'ForwardGroupConfig',
|
|
8753
9678
|
order: 'Order',
|
|
8754
9679
|
ruleActionType: 'RuleActionType',
|
|
9680
|
+
ruleActionValue: 'RuleActionValue',
|
|
8755
9681
|
};
|
|
8756
9682
|
}
|
|
8757
9683
|
|
|
@@ -8760,6 +9686,7 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
8760
9686
|
forwardGroupConfig: UpdateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig,
|
|
8761
9687
|
order: 'number',
|
|
8762
9688
|
ruleActionType: 'string',
|
|
9689
|
+
ruleActionValue: 'string',
|
|
8763
9690
|
};
|
|
8764
9691
|
}
|
|
8765
9692
|
|
|
@@ -8810,11 +9737,13 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
8810
9737
|
hostConfig?: UpdateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig;
|
|
8811
9738
|
pathConfig?: UpdateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig;
|
|
8812
9739
|
ruleConditionType?: string;
|
|
9740
|
+
ruleConditionValue?: string;
|
|
8813
9741
|
static names(): { [key: string]: string } {
|
|
8814
9742
|
return {
|
|
8815
9743
|
hostConfig: 'HostConfig',
|
|
8816
9744
|
pathConfig: 'PathConfig',
|
|
8817
9745
|
ruleConditionType: 'RuleConditionType',
|
|
9746
|
+
ruleConditionValue: 'RuleConditionValue',
|
|
8818
9747
|
};
|
|
8819
9748
|
}
|
|
8820
9749
|
|
|
@@ -8823,6 +9752,7 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
8823
9752
|
hostConfig: UpdateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig,
|
|
8824
9753
|
pathConfig: UpdateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig,
|
|
8825
9754
|
ruleConditionType: 'string',
|
|
9755
|
+
ruleConditionValue: 'string',
|
|
8826
9756
|
};
|
|
8827
9757
|
}
|
|
8828
9758
|
|
|
@@ -8837,6 +9767,7 @@ export class UpdateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
8837
9767
|
priority?: number;
|
|
8838
9768
|
ruleActions?: UpdateForwardingRulesRequestForwardingRulesRuleActions[];
|
|
8839
9769
|
ruleConditions?: UpdateForwardingRulesRequestForwardingRulesRuleConditions[];
|
|
9770
|
+
ruleDirection?: string;
|
|
8840
9771
|
static names(): { [key: string]: string } {
|
|
8841
9772
|
return {
|
|
8842
9773
|
forwardingRuleId: 'ForwardingRuleId',
|
|
@@ -8844,6 +9775,7 @@ export class UpdateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
8844
9775
|
priority: 'Priority',
|
|
8845
9776
|
ruleActions: 'RuleActions',
|
|
8846
9777
|
ruleConditions: 'RuleConditions',
|
|
9778
|
+
ruleDirection: 'RuleDirection',
|
|
8847
9779
|
};
|
|
8848
9780
|
}
|
|
8849
9781
|
|
|
@@ -8854,6 +9786,7 @@ export class UpdateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
8854
9786
|
priority: 'number',
|
|
8855
9787
|
ruleActions: { 'type': 'array', 'itemType': UpdateForwardingRulesRequestForwardingRulesRuleActions },
|
|
8856
9788
|
ruleConditions: { 'type': 'array', 'itemType': UpdateForwardingRulesRequestForwardingRulesRuleConditions },
|
|
9789
|
+
ruleDirection: 'string',
|
|
8857
9790
|
};
|
|
8858
9791
|
}
|
|
8859
9792
|
|
|
@@ -9023,11 +9956,26 @@ export default class Client extends OpenApi {
|
|
|
9023
9956
|
async addEntriesToAclWithOptions(request: AddEntriesToAclRequest, runtime: $Util.RuntimeOptions): Promise<AddEntriesToAclResponse> {
|
|
9024
9957
|
Util.validateModel(request);
|
|
9025
9958
|
let query = { };
|
|
9026
|
-
|
|
9027
|
-
|
|
9028
|
-
|
|
9029
|
-
|
|
9030
|
-
|
|
9959
|
+
if (!Util.isUnset(request.aclEntries)) {
|
|
9960
|
+
query["AclEntries"] = request.aclEntries;
|
|
9961
|
+
}
|
|
9962
|
+
|
|
9963
|
+
if (!Util.isUnset(request.aclId)) {
|
|
9964
|
+
query["AclId"] = request.aclId;
|
|
9965
|
+
}
|
|
9966
|
+
|
|
9967
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
9968
|
+
query["ClientToken"] = request.clientToken;
|
|
9969
|
+
}
|
|
9970
|
+
|
|
9971
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
9972
|
+
query["DryRun"] = request.dryRun;
|
|
9973
|
+
}
|
|
9974
|
+
|
|
9975
|
+
if (!Util.isUnset(request.regionId)) {
|
|
9976
|
+
query["RegionId"] = request.regionId;
|
|
9977
|
+
}
|
|
9978
|
+
|
|
9031
9979
|
let req = new $OpenApi.OpenApiRequest({
|
|
9032
9980
|
query: OpenApiUtil.query(query),
|
|
9033
9981
|
});
|
|
@@ -9053,12 +10001,30 @@ export default class Client extends OpenApi {
|
|
|
9053
10001
|
async associateAclsWithListenerWithOptions(request: AssociateAclsWithListenerRequest, runtime: $Util.RuntimeOptions): Promise<AssociateAclsWithListenerResponse> {
|
|
9054
10002
|
Util.validateModel(request);
|
|
9055
10003
|
let query = { };
|
|
9056
|
-
|
|
9057
|
-
|
|
9058
|
-
|
|
9059
|
-
|
|
9060
|
-
|
|
9061
|
-
|
|
10004
|
+
if (!Util.isUnset(request.aclIds)) {
|
|
10005
|
+
query["AclIds"] = request.aclIds;
|
|
10006
|
+
}
|
|
10007
|
+
|
|
10008
|
+
if (!Util.isUnset(request.aclType)) {
|
|
10009
|
+
query["AclType"] = request.aclType;
|
|
10010
|
+
}
|
|
10011
|
+
|
|
10012
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10013
|
+
query["ClientToken"] = request.clientToken;
|
|
10014
|
+
}
|
|
10015
|
+
|
|
10016
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
10017
|
+
query["DryRun"] = request.dryRun;
|
|
10018
|
+
}
|
|
10019
|
+
|
|
10020
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10021
|
+
query["ListenerId"] = request.listenerId;
|
|
10022
|
+
}
|
|
10023
|
+
|
|
10024
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10025
|
+
query["RegionId"] = request.regionId;
|
|
10026
|
+
}
|
|
10027
|
+
|
|
9062
10028
|
let req = new $OpenApi.OpenApiRequest({
|
|
9063
10029
|
query: OpenApiUtil.query(query),
|
|
9064
10030
|
});
|
|
@@ -9084,11 +10050,26 @@ export default class Client extends OpenApi {
|
|
|
9084
10050
|
async associateAdditionalCertificatesWithListenerWithOptions(request: AssociateAdditionalCertificatesWithListenerRequest, runtime: $Util.RuntimeOptions): Promise<AssociateAdditionalCertificatesWithListenerResponse> {
|
|
9085
10051
|
Util.validateModel(request);
|
|
9086
10052
|
let query = { };
|
|
9087
|
-
|
|
9088
|
-
|
|
9089
|
-
|
|
9090
|
-
|
|
9091
|
-
|
|
10053
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10054
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10055
|
+
}
|
|
10056
|
+
|
|
10057
|
+
if (!Util.isUnset(request.certificates)) {
|
|
10058
|
+
query["Certificates"] = request.certificates;
|
|
10059
|
+
}
|
|
10060
|
+
|
|
10061
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10062
|
+
query["ClientToken"] = request.clientToken;
|
|
10063
|
+
}
|
|
10064
|
+
|
|
10065
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10066
|
+
query["ListenerId"] = request.listenerId;
|
|
10067
|
+
}
|
|
10068
|
+
|
|
10069
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10070
|
+
query["RegionId"] = request.regionId;
|
|
10071
|
+
}
|
|
10072
|
+
|
|
9092
10073
|
let req = new $OpenApi.OpenApiRequest({
|
|
9093
10074
|
query: OpenApiUtil.query(query),
|
|
9094
10075
|
});
|
|
@@ -9114,10 +10095,22 @@ export default class Client extends OpenApi {
|
|
|
9114
10095
|
async attachDdosToAcceleratorWithOptions(request: AttachDdosToAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<AttachDdosToAcceleratorResponse> {
|
|
9115
10096
|
Util.validateModel(request);
|
|
9116
10097
|
let query = { };
|
|
9117
|
-
|
|
9118
|
-
|
|
9119
|
-
|
|
9120
|
-
|
|
10098
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10099
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10100
|
+
}
|
|
10101
|
+
|
|
10102
|
+
if (!Util.isUnset(request.ddosId)) {
|
|
10103
|
+
query["DdosId"] = request.ddosId;
|
|
10104
|
+
}
|
|
10105
|
+
|
|
10106
|
+
if (!Util.isUnset(request.ddosRegionId)) {
|
|
10107
|
+
query["DdosRegionId"] = request.ddosRegionId;
|
|
10108
|
+
}
|
|
10109
|
+
|
|
10110
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10111
|
+
query["RegionId"] = request.regionId;
|
|
10112
|
+
}
|
|
10113
|
+
|
|
9121
10114
|
let req = new $OpenApi.OpenApiRequest({
|
|
9122
10115
|
query: OpenApiUtil.query(query),
|
|
9123
10116
|
});
|
|
@@ -9143,14 +10136,38 @@ export default class Client extends OpenApi {
|
|
|
9143
10136
|
async attachLogStoreToEndpointGroupWithOptions(request: AttachLogStoreToEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<AttachLogStoreToEndpointGroupResponse> {
|
|
9144
10137
|
Util.validateModel(request);
|
|
9145
10138
|
let query = { };
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
9149
|
-
|
|
9150
|
-
|
|
9151
|
-
|
|
9152
|
-
|
|
9153
|
-
|
|
10139
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10140
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10141
|
+
}
|
|
10142
|
+
|
|
10143
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10144
|
+
query["ClientToken"] = request.clientToken;
|
|
10145
|
+
}
|
|
10146
|
+
|
|
10147
|
+
if (!Util.isUnset(request.endpointGroupIds)) {
|
|
10148
|
+
query["EndpointGroupIds"] = request.endpointGroupIds;
|
|
10149
|
+
}
|
|
10150
|
+
|
|
10151
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10152
|
+
query["ListenerId"] = request.listenerId;
|
|
10153
|
+
}
|
|
10154
|
+
|
|
10155
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10156
|
+
query["RegionId"] = request.regionId;
|
|
10157
|
+
}
|
|
10158
|
+
|
|
10159
|
+
if (!Util.isUnset(request.slsLogStoreName)) {
|
|
10160
|
+
query["SlsLogStoreName"] = request.slsLogStoreName;
|
|
10161
|
+
}
|
|
10162
|
+
|
|
10163
|
+
if (!Util.isUnset(request.slsProjectName)) {
|
|
10164
|
+
query["SlsProjectName"] = request.slsProjectName;
|
|
10165
|
+
}
|
|
10166
|
+
|
|
10167
|
+
if (!Util.isUnset(request.slsRegionId)) {
|
|
10168
|
+
query["SlsRegionId"] = request.slsRegionId;
|
|
10169
|
+
}
|
|
10170
|
+
|
|
9154
10171
|
let req = new $OpenApi.OpenApiRequest({
|
|
9155
10172
|
query: OpenApiUtil.query(query),
|
|
9156
10173
|
});
|
|
@@ -9176,9 +10193,18 @@ export default class Client extends OpenApi {
|
|
|
9176
10193
|
async bandwidthPackageAddAcceleratorWithOptions(request: BandwidthPackageAddAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<BandwidthPackageAddAcceleratorResponse> {
|
|
9177
10194
|
Util.validateModel(request);
|
|
9178
10195
|
let query = { };
|
|
9179
|
-
|
|
9180
|
-
|
|
9181
|
-
|
|
10196
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10197
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10198
|
+
}
|
|
10199
|
+
|
|
10200
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
10201
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
10202
|
+
}
|
|
10203
|
+
|
|
10204
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10205
|
+
query["RegionId"] = request.regionId;
|
|
10206
|
+
}
|
|
10207
|
+
|
|
9182
10208
|
let req = new $OpenApi.OpenApiRequest({
|
|
9183
10209
|
query: OpenApiUtil.query(query),
|
|
9184
10210
|
});
|
|
@@ -9204,9 +10230,18 @@ export default class Client extends OpenApi {
|
|
|
9204
10230
|
async bandwidthPackageRemoveAcceleratorWithOptions(request: BandwidthPackageRemoveAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<BandwidthPackageRemoveAcceleratorResponse> {
|
|
9205
10231
|
Util.validateModel(request);
|
|
9206
10232
|
let query = { };
|
|
9207
|
-
|
|
9208
|
-
|
|
9209
|
-
|
|
10233
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10234
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10235
|
+
}
|
|
10236
|
+
|
|
10237
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
10238
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
10239
|
+
}
|
|
10240
|
+
|
|
10241
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10242
|
+
query["RegionId"] = request.regionId;
|
|
10243
|
+
}
|
|
10244
|
+
|
|
9210
10245
|
let req = new $OpenApi.OpenApiRequest({
|
|
9211
10246
|
query: OpenApiUtil.query(query),
|
|
9212
10247
|
});
|
|
@@ -9232,14 +10267,38 @@ export default class Client extends OpenApi {
|
|
|
9232
10267
|
async configEndpointProbeWithOptions(request: ConfigEndpointProbeRequest, runtime: $Util.RuntimeOptions): Promise<ConfigEndpointProbeResponse> {
|
|
9233
10268
|
Util.validateModel(request);
|
|
9234
10269
|
let query = { };
|
|
9235
|
-
|
|
9236
|
-
|
|
9237
|
-
|
|
9238
|
-
|
|
9239
|
-
|
|
9240
|
-
|
|
9241
|
-
|
|
9242
|
-
|
|
10270
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10271
|
+
query["ClientToken"] = request.clientToken;
|
|
10272
|
+
}
|
|
10273
|
+
|
|
10274
|
+
if (!Util.isUnset(request.enable)) {
|
|
10275
|
+
query["Enable"] = request.enable;
|
|
10276
|
+
}
|
|
10277
|
+
|
|
10278
|
+
if (!Util.isUnset(request.endpoint)) {
|
|
10279
|
+
query["Endpoint"] = request.endpoint;
|
|
10280
|
+
}
|
|
10281
|
+
|
|
10282
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
10283
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
10284
|
+
}
|
|
10285
|
+
|
|
10286
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
10287
|
+
query["EndpointType"] = request.endpointType;
|
|
10288
|
+
}
|
|
10289
|
+
|
|
10290
|
+
if (!Util.isUnset(request.probePort)) {
|
|
10291
|
+
query["ProbePort"] = request.probePort;
|
|
10292
|
+
}
|
|
10293
|
+
|
|
10294
|
+
if (!Util.isUnset(request.probeProtocol)) {
|
|
10295
|
+
query["ProbeProtocol"] = request.probeProtocol;
|
|
10296
|
+
}
|
|
10297
|
+
|
|
10298
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10299
|
+
query["RegionId"] = request.regionId;
|
|
10300
|
+
}
|
|
10301
|
+
|
|
9243
10302
|
let req = new $OpenApi.OpenApiRequest({
|
|
9244
10303
|
query: OpenApiUtil.query(query),
|
|
9245
10304
|
});
|
|
@@ -9265,16 +10324,50 @@ export default class Client extends OpenApi {
|
|
|
9265
10324
|
async createAcceleratorWithOptions(request: CreateAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<CreateAcceleratorResponse> {
|
|
9266
10325
|
Util.validateModel(request);
|
|
9267
10326
|
let query = { };
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
|
|
9276
|
-
|
|
9277
|
-
|
|
10327
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
10328
|
+
query["AutoPay"] = request.autoPay;
|
|
10329
|
+
}
|
|
10330
|
+
|
|
10331
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
10332
|
+
query["AutoRenew"] = request.autoRenew;
|
|
10333
|
+
}
|
|
10334
|
+
|
|
10335
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
10336
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
10337
|
+
}
|
|
10338
|
+
|
|
10339
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
10340
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
10341
|
+
}
|
|
10342
|
+
|
|
10343
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10344
|
+
query["ClientToken"] = request.clientToken;
|
|
10345
|
+
}
|
|
10346
|
+
|
|
10347
|
+
if (!Util.isUnset(request.duration)) {
|
|
10348
|
+
query["Duration"] = request.duration;
|
|
10349
|
+
}
|
|
10350
|
+
|
|
10351
|
+
if (!Util.isUnset($tea.toMap(request.ipSetConfig))) {
|
|
10352
|
+
query["IpSetConfig"] = request.ipSetConfig;
|
|
10353
|
+
}
|
|
10354
|
+
|
|
10355
|
+
if (!Util.isUnset(request.name)) {
|
|
10356
|
+
query["Name"] = request.name;
|
|
10357
|
+
}
|
|
10358
|
+
|
|
10359
|
+
if (!Util.isUnset(request.pricingCycle)) {
|
|
10360
|
+
query["PricingCycle"] = request.pricingCycle;
|
|
10361
|
+
}
|
|
10362
|
+
|
|
10363
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10364
|
+
query["RegionId"] = request.regionId;
|
|
10365
|
+
}
|
|
10366
|
+
|
|
10367
|
+
if (!Util.isUnset(request.spec)) {
|
|
10368
|
+
query["Spec"] = request.spec;
|
|
10369
|
+
}
|
|
10370
|
+
|
|
9278
10371
|
let req = new $OpenApi.OpenApiRequest({
|
|
9279
10372
|
query: OpenApiUtil.query(query),
|
|
9280
10373
|
});
|
|
@@ -9300,12 +10393,30 @@ export default class Client extends OpenApi {
|
|
|
9300
10393
|
async createAclWithOptions(request: CreateAclRequest, runtime: $Util.RuntimeOptions): Promise<CreateAclResponse> {
|
|
9301
10394
|
Util.validateModel(request);
|
|
9302
10395
|
let query = { };
|
|
9303
|
-
|
|
9304
|
-
|
|
9305
|
-
|
|
9306
|
-
|
|
9307
|
-
|
|
9308
|
-
|
|
10396
|
+
if (!Util.isUnset(request.aclEntries)) {
|
|
10397
|
+
query["AclEntries"] = request.aclEntries;
|
|
10398
|
+
}
|
|
10399
|
+
|
|
10400
|
+
if (!Util.isUnset(request.aclName)) {
|
|
10401
|
+
query["AclName"] = request.aclName;
|
|
10402
|
+
}
|
|
10403
|
+
|
|
10404
|
+
if (!Util.isUnset(request.addressIPVersion)) {
|
|
10405
|
+
query["AddressIPVersion"] = request.addressIPVersion;
|
|
10406
|
+
}
|
|
10407
|
+
|
|
10408
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10409
|
+
query["ClientToken"] = request.clientToken;
|
|
10410
|
+
}
|
|
10411
|
+
|
|
10412
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
10413
|
+
query["DryRun"] = request.dryRun;
|
|
10414
|
+
}
|
|
10415
|
+
|
|
10416
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10417
|
+
query["RegionId"] = request.regionId;
|
|
10418
|
+
}
|
|
10419
|
+
|
|
9309
10420
|
let req = new $OpenApi.OpenApiRequest({
|
|
9310
10421
|
query: OpenApiUtil.query(query),
|
|
9311
10422
|
});
|
|
@@ -9328,28 +10439,58 @@ export default class Client extends OpenApi {
|
|
|
9328
10439
|
return await this.createAclWithOptions(request, runtime);
|
|
9329
10440
|
}
|
|
9330
10441
|
|
|
9331
|
-
async
|
|
10442
|
+
async createApplicationMonitorWithOptions(request: CreateApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationMonitorResponse> {
|
|
9332
10443
|
Util.validateModel(request);
|
|
9333
10444
|
let query = { };
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
10445
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10446
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10447
|
+
}
|
|
10448
|
+
|
|
10449
|
+
if (!Util.isUnset(request.address)) {
|
|
10450
|
+
query["Address"] = request.address;
|
|
10451
|
+
}
|
|
10452
|
+
|
|
10453
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10454
|
+
query["ClientToken"] = request.clientToken;
|
|
10455
|
+
}
|
|
10456
|
+
|
|
10457
|
+
if (!Util.isUnset(request.detectEnable)) {
|
|
10458
|
+
query["DetectEnable"] = request.detectEnable;
|
|
10459
|
+
}
|
|
10460
|
+
|
|
10461
|
+
if (!Util.isUnset(request.detectThreshold)) {
|
|
10462
|
+
query["DetectThreshold"] = request.detectThreshold;
|
|
10463
|
+
}
|
|
10464
|
+
|
|
10465
|
+
if (!Util.isUnset(request.detectTimes)) {
|
|
10466
|
+
query["DetectTimes"] = request.detectTimes;
|
|
10467
|
+
}
|
|
10468
|
+
|
|
10469
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10470
|
+
query["ListenerId"] = request.listenerId;
|
|
10471
|
+
}
|
|
10472
|
+
|
|
10473
|
+
if (!Util.isUnset(request.optionsJson)) {
|
|
10474
|
+
query["OptionsJson"] = request.optionsJson;
|
|
10475
|
+
}
|
|
10476
|
+
|
|
10477
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10478
|
+
query["RegionId"] = request.regionId;
|
|
10479
|
+
}
|
|
10480
|
+
|
|
10481
|
+
if (!Util.isUnset(request.silenceTime)) {
|
|
10482
|
+
query["SilenceTime"] = request.silenceTime;
|
|
10483
|
+
}
|
|
10484
|
+
|
|
10485
|
+
if (!Util.isUnset(request.taskName)) {
|
|
10486
|
+
query["TaskName"] = request.taskName;
|
|
10487
|
+
}
|
|
10488
|
+
|
|
9348
10489
|
let req = new $OpenApi.OpenApiRequest({
|
|
9349
10490
|
query: OpenApiUtil.query(query),
|
|
9350
10491
|
});
|
|
9351
10492
|
let params = new $OpenApi.Params({
|
|
9352
|
-
action: "
|
|
10493
|
+
action: "CreateApplicationMonitor",
|
|
9353
10494
|
version: "2019-11-20",
|
|
9354
10495
|
protocol: "HTTPS",
|
|
9355
10496
|
pathname: "/",
|
|
@@ -9359,25 +10500,130 @@ export default class Client extends OpenApi {
|
|
|
9359
10500
|
reqBodyType: "formData",
|
|
9360
10501
|
bodyType: "json",
|
|
9361
10502
|
});
|
|
9362
|
-
return $tea.cast<
|
|
10503
|
+
return $tea.cast<CreateApplicationMonitorResponse>(await this.callApi(params, req, runtime), new CreateApplicationMonitorResponse({}));
|
|
9363
10504
|
}
|
|
9364
10505
|
|
|
9365
|
-
async
|
|
10506
|
+
async createApplicationMonitor(request: CreateApplicationMonitorRequest): Promise<CreateApplicationMonitorResponse> {
|
|
9366
10507
|
let runtime = new $Util.RuntimeOptions({ });
|
|
9367
|
-
return await this.
|
|
10508
|
+
return await this.createApplicationMonitorWithOptions(request, runtime);
|
|
9368
10509
|
}
|
|
9369
10510
|
|
|
9370
|
-
async
|
|
10511
|
+
async createBandwidthPackageWithOptions(request: CreateBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<CreateBandwidthPackageResponse> {
|
|
9371
10512
|
Util.validateModel(request);
|
|
9372
10513
|
let query = { };
|
|
9373
|
-
|
|
9374
|
-
|
|
9375
|
-
|
|
9376
|
-
|
|
9377
|
-
|
|
9378
|
-
|
|
9379
|
-
|
|
9380
|
-
|
|
10514
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
10515
|
+
query["AutoPay"] = request.autoPay;
|
|
10516
|
+
}
|
|
10517
|
+
|
|
10518
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
10519
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
10520
|
+
}
|
|
10521
|
+
|
|
10522
|
+
if (!Util.isUnset(request.bandwidth)) {
|
|
10523
|
+
query["Bandwidth"] = request.bandwidth;
|
|
10524
|
+
}
|
|
10525
|
+
|
|
10526
|
+
if (!Util.isUnset(request.bandwidthType)) {
|
|
10527
|
+
query["BandwidthType"] = request.bandwidthType;
|
|
10528
|
+
}
|
|
10529
|
+
|
|
10530
|
+
if (!Util.isUnset(request.billingType)) {
|
|
10531
|
+
query["BillingType"] = request.billingType;
|
|
10532
|
+
}
|
|
10533
|
+
|
|
10534
|
+
if (!Util.isUnset(request.cbnGeographicRegionIdA)) {
|
|
10535
|
+
query["CbnGeographicRegionIdA"] = request.cbnGeographicRegionIdA;
|
|
10536
|
+
}
|
|
10537
|
+
|
|
10538
|
+
if (!Util.isUnset(request.cbnGeographicRegionIdB)) {
|
|
10539
|
+
query["CbnGeographicRegionIdB"] = request.cbnGeographicRegionIdB;
|
|
10540
|
+
}
|
|
10541
|
+
|
|
10542
|
+
if (!Util.isUnset(request.chargeType)) {
|
|
10543
|
+
query["ChargeType"] = request.chargeType;
|
|
10544
|
+
}
|
|
10545
|
+
|
|
10546
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10547
|
+
query["ClientToken"] = request.clientToken;
|
|
10548
|
+
}
|
|
10549
|
+
|
|
10550
|
+
if (!Util.isUnset(request.duration)) {
|
|
10551
|
+
query["Duration"] = request.duration;
|
|
10552
|
+
}
|
|
10553
|
+
|
|
10554
|
+
if (!Util.isUnset(request.pricingCycle)) {
|
|
10555
|
+
query["PricingCycle"] = request.pricingCycle;
|
|
10556
|
+
}
|
|
10557
|
+
|
|
10558
|
+
if (!Util.isUnset(request.ratio)) {
|
|
10559
|
+
query["Ratio"] = request.ratio;
|
|
10560
|
+
}
|
|
10561
|
+
|
|
10562
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10563
|
+
query["RegionId"] = request.regionId;
|
|
10564
|
+
}
|
|
10565
|
+
|
|
10566
|
+
if (!Util.isUnset(request.type)) {
|
|
10567
|
+
query["Type"] = request.type;
|
|
10568
|
+
}
|
|
10569
|
+
|
|
10570
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
10571
|
+
query: OpenApiUtil.query(query),
|
|
10572
|
+
});
|
|
10573
|
+
let params = new $OpenApi.Params({
|
|
10574
|
+
action: "CreateBandwidthPackage",
|
|
10575
|
+
version: "2019-11-20",
|
|
10576
|
+
protocol: "HTTPS",
|
|
10577
|
+
pathname: "/",
|
|
10578
|
+
method: "POST",
|
|
10579
|
+
authType: "AK",
|
|
10580
|
+
style: "RPC",
|
|
10581
|
+
reqBodyType: "formData",
|
|
10582
|
+
bodyType: "json",
|
|
10583
|
+
});
|
|
10584
|
+
return $tea.cast<CreateBandwidthPackageResponse>(await this.callApi(params, req, runtime), new CreateBandwidthPackageResponse({}));
|
|
10585
|
+
}
|
|
10586
|
+
|
|
10587
|
+
async createBandwidthPackage(request: CreateBandwidthPackageRequest): Promise<CreateBandwidthPackageResponse> {
|
|
10588
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
10589
|
+
return await this.createBandwidthPackageWithOptions(request, runtime);
|
|
10590
|
+
}
|
|
10591
|
+
|
|
10592
|
+
async createBasicAcceleratorWithOptions(request: CreateBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicAcceleratorResponse> {
|
|
10593
|
+
Util.validateModel(request);
|
|
10594
|
+
let query = { };
|
|
10595
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
10596
|
+
query["AutoPay"] = request.autoPay;
|
|
10597
|
+
}
|
|
10598
|
+
|
|
10599
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
10600
|
+
query["AutoRenew"] = request.autoRenew;
|
|
10601
|
+
}
|
|
10602
|
+
|
|
10603
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
10604
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
10605
|
+
}
|
|
10606
|
+
|
|
10607
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
10608
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
10609
|
+
}
|
|
10610
|
+
|
|
10611
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10612
|
+
query["ClientToken"] = request.clientToken;
|
|
10613
|
+
}
|
|
10614
|
+
|
|
10615
|
+
if (!Util.isUnset(request.duration)) {
|
|
10616
|
+
query["Duration"] = request.duration;
|
|
10617
|
+
}
|
|
10618
|
+
|
|
10619
|
+
if (!Util.isUnset(request.pricingCycle)) {
|
|
10620
|
+
query["PricingCycle"] = request.pricingCycle;
|
|
10621
|
+
}
|
|
10622
|
+
|
|
10623
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10624
|
+
query["RegionId"] = request.regionId;
|
|
10625
|
+
}
|
|
10626
|
+
|
|
9381
10627
|
let req = new $OpenApi.OpenApiRequest({
|
|
9382
10628
|
query: OpenApiUtil.query(query),
|
|
9383
10629
|
});
|
|
@@ -9403,14 +10649,38 @@ export default class Client extends OpenApi {
|
|
|
9403
10649
|
async createBasicEndpointGroupWithOptions(request: CreateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointGroupResponse> {
|
|
9404
10650
|
Util.validateModel(request);
|
|
9405
10651
|
let query = { };
|
|
9406
|
-
|
|
9407
|
-
|
|
9408
|
-
|
|
9409
|
-
|
|
9410
|
-
|
|
9411
|
-
|
|
9412
|
-
|
|
9413
|
-
|
|
10652
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10653
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10654
|
+
}
|
|
10655
|
+
|
|
10656
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10657
|
+
query["ClientToken"] = request.clientToken;
|
|
10658
|
+
}
|
|
10659
|
+
|
|
10660
|
+
if (!Util.isUnset(request.description)) {
|
|
10661
|
+
query["Description"] = request.description;
|
|
10662
|
+
}
|
|
10663
|
+
|
|
10664
|
+
if (!Util.isUnset(request.endpointAddress)) {
|
|
10665
|
+
query["EndpointAddress"] = request.endpointAddress;
|
|
10666
|
+
}
|
|
10667
|
+
|
|
10668
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
10669
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
10670
|
+
}
|
|
10671
|
+
|
|
10672
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
10673
|
+
query["EndpointType"] = request.endpointType;
|
|
10674
|
+
}
|
|
10675
|
+
|
|
10676
|
+
if (!Util.isUnset(request.name)) {
|
|
10677
|
+
query["Name"] = request.name;
|
|
10678
|
+
}
|
|
10679
|
+
|
|
10680
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10681
|
+
query["RegionId"] = request.regionId;
|
|
10682
|
+
}
|
|
10683
|
+
|
|
9414
10684
|
let req = new $OpenApi.OpenApiRequest({
|
|
9415
10685
|
query: OpenApiUtil.query(query),
|
|
9416
10686
|
});
|
|
@@ -9436,10 +10706,22 @@ export default class Client extends OpenApi {
|
|
|
9436
10706
|
async createBasicIpSetWithOptions(request: CreateBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicIpSetResponse> {
|
|
9437
10707
|
Util.validateModel(request);
|
|
9438
10708
|
let query = { };
|
|
9439
|
-
|
|
9440
|
-
|
|
9441
|
-
|
|
9442
|
-
|
|
10709
|
+
if (!Util.isUnset(request.accelerateRegionId)) {
|
|
10710
|
+
query["AccelerateRegionId"] = request.accelerateRegionId;
|
|
10711
|
+
}
|
|
10712
|
+
|
|
10713
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10714
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10715
|
+
}
|
|
10716
|
+
|
|
10717
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10718
|
+
query["ClientToken"] = request.clientToken;
|
|
10719
|
+
}
|
|
10720
|
+
|
|
10721
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10722
|
+
query["RegionId"] = request.regionId;
|
|
10723
|
+
}
|
|
10724
|
+
|
|
9443
10725
|
let req = new $OpenApi.OpenApiRequest({
|
|
9444
10726
|
query: OpenApiUtil.query(query),
|
|
9445
10727
|
});
|
|
@@ -9465,24 +10747,78 @@ export default class Client extends OpenApi {
|
|
|
9465
10747
|
async createEndpointGroupWithOptions(request: CreateEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateEndpointGroupResponse> {
|
|
9466
10748
|
Util.validateModel(request);
|
|
9467
10749
|
let query = { };
|
|
9468
|
-
|
|
9469
|
-
|
|
9470
|
-
|
|
9471
|
-
|
|
9472
|
-
|
|
9473
|
-
|
|
9474
|
-
|
|
9475
|
-
|
|
9476
|
-
|
|
9477
|
-
|
|
9478
|
-
|
|
9479
|
-
|
|
9480
|
-
|
|
9481
|
-
|
|
9482
|
-
|
|
9483
|
-
|
|
9484
|
-
|
|
9485
|
-
|
|
10750
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10751
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10752
|
+
}
|
|
10753
|
+
|
|
10754
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10755
|
+
query["ClientToken"] = request.clientToken;
|
|
10756
|
+
}
|
|
10757
|
+
|
|
10758
|
+
if (!Util.isUnset(request.description)) {
|
|
10759
|
+
query["Description"] = request.description;
|
|
10760
|
+
}
|
|
10761
|
+
|
|
10762
|
+
if (!Util.isUnset(request.endpointConfigurations)) {
|
|
10763
|
+
query["EndpointConfigurations"] = request.endpointConfigurations;
|
|
10764
|
+
}
|
|
10765
|
+
|
|
10766
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
10767
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
10768
|
+
}
|
|
10769
|
+
|
|
10770
|
+
if (!Util.isUnset(request.endpointGroupType)) {
|
|
10771
|
+
query["EndpointGroupType"] = request.endpointGroupType;
|
|
10772
|
+
}
|
|
10773
|
+
|
|
10774
|
+
if (!Util.isUnset(request.endpointRequestProtocol)) {
|
|
10775
|
+
query["EndpointRequestProtocol"] = request.endpointRequestProtocol;
|
|
10776
|
+
}
|
|
10777
|
+
|
|
10778
|
+
if (!Util.isUnset(request.healthCheckEnabled)) {
|
|
10779
|
+
query["HealthCheckEnabled"] = request.healthCheckEnabled;
|
|
10780
|
+
}
|
|
10781
|
+
|
|
10782
|
+
if (!Util.isUnset(request.healthCheckIntervalSeconds)) {
|
|
10783
|
+
query["HealthCheckIntervalSeconds"] = request.healthCheckIntervalSeconds;
|
|
10784
|
+
}
|
|
10785
|
+
|
|
10786
|
+
if (!Util.isUnset(request.healthCheckPath)) {
|
|
10787
|
+
query["HealthCheckPath"] = request.healthCheckPath;
|
|
10788
|
+
}
|
|
10789
|
+
|
|
10790
|
+
if (!Util.isUnset(request.healthCheckPort)) {
|
|
10791
|
+
query["HealthCheckPort"] = request.healthCheckPort;
|
|
10792
|
+
}
|
|
10793
|
+
|
|
10794
|
+
if (!Util.isUnset(request.healthCheckProtocol)) {
|
|
10795
|
+
query["HealthCheckProtocol"] = request.healthCheckProtocol;
|
|
10796
|
+
}
|
|
10797
|
+
|
|
10798
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10799
|
+
query["ListenerId"] = request.listenerId;
|
|
10800
|
+
}
|
|
10801
|
+
|
|
10802
|
+
if (!Util.isUnset(request.name)) {
|
|
10803
|
+
query["Name"] = request.name;
|
|
10804
|
+
}
|
|
10805
|
+
|
|
10806
|
+
if (!Util.isUnset(request.portOverrides)) {
|
|
10807
|
+
query["PortOverrides"] = request.portOverrides;
|
|
10808
|
+
}
|
|
10809
|
+
|
|
10810
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10811
|
+
query["RegionId"] = request.regionId;
|
|
10812
|
+
}
|
|
10813
|
+
|
|
10814
|
+
if (!Util.isUnset(request.thresholdCount)) {
|
|
10815
|
+
query["ThresholdCount"] = request.thresholdCount;
|
|
10816
|
+
}
|
|
10817
|
+
|
|
10818
|
+
if (!Util.isUnset(request.trafficPercentage)) {
|
|
10819
|
+
query["TrafficPercentage"] = request.trafficPercentage;
|
|
10820
|
+
}
|
|
10821
|
+
|
|
9486
10822
|
let req = new $OpenApi.OpenApiRequest({
|
|
9487
10823
|
query: OpenApiUtil.query(query),
|
|
9488
10824
|
});
|
|
@@ -9508,12 +10844,30 @@ export default class Client extends OpenApi {
|
|
|
9508
10844
|
async createEndpointGroupsWithOptions(request: CreateEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<CreateEndpointGroupsResponse> {
|
|
9509
10845
|
Util.validateModel(request);
|
|
9510
10846
|
let query = { };
|
|
9511
|
-
|
|
9512
|
-
|
|
9513
|
-
|
|
9514
|
-
|
|
9515
|
-
|
|
9516
|
-
|
|
10847
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10848
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10849
|
+
}
|
|
10850
|
+
|
|
10851
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10852
|
+
query["ClientToken"] = request.clientToken;
|
|
10853
|
+
}
|
|
10854
|
+
|
|
10855
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
10856
|
+
query["DryRun"] = request.dryRun;
|
|
10857
|
+
}
|
|
10858
|
+
|
|
10859
|
+
if (!Util.isUnset(request.endpointGroupConfigurations)) {
|
|
10860
|
+
query["EndpointGroupConfigurations"] = request.endpointGroupConfigurations;
|
|
10861
|
+
}
|
|
10862
|
+
|
|
10863
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10864
|
+
query["ListenerId"] = request.listenerId;
|
|
10865
|
+
}
|
|
10866
|
+
|
|
10867
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10868
|
+
query["RegionId"] = request.regionId;
|
|
10869
|
+
}
|
|
10870
|
+
|
|
9517
10871
|
let req = new $OpenApi.OpenApiRequest({
|
|
9518
10872
|
query: OpenApiUtil.query(query),
|
|
9519
10873
|
});
|
|
@@ -9539,11 +10893,26 @@ export default class Client extends OpenApi {
|
|
|
9539
10893
|
async createForwardingRulesWithOptions(request: CreateForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<CreateForwardingRulesResponse> {
|
|
9540
10894
|
Util.validateModel(request);
|
|
9541
10895
|
let query = { };
|
|
9542
|
-
|
|
9543
|
-
|
|
9544
|
-
|
|
9545
|
-
|
|
9546
|
-
|
|
10896
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10897
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10898
|
+
}
|
|
10899
|
+
|
|
10900
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10901
|
+
query["ClientToken"] = request.clientToken;
|
|
10902
|
+
}
|
|
10903
|
+
|
|
10904
|
+
if (!Util.isUnset(request.forwardingRules)) {
|
|
10905
|
+
query["ForwardingRules"] = request.forwardingRules;
|
|
10906
|
+
}
|
|
10907
|
+
|
|
10908
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10909
|
+
query["ListenerId"] = request.listenerId;
|
|
10910
|
+
}
|
|
10911
|
+
|
|
10912
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10913
|
+
query["RegionId"] = request.regionId;
|
|
10914
|
+
}
|
|
10915
|
+
|
|
9547
10916
|
let req = new $OpenApi.OpenApiRequest({
|
|
9548
10917
|
query: OpenApiUtil.query(query),
|
|
9549
10918
|
});
|
|
@@ -9569,10 +10938,22 @@ export default class Client extends OpenApi {
|
|
|
9569
10938
|
async createIpSetsWithOptions(request: CreateIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<CreateIpSetsResponse> {
|
|
9570
10939
|
Util.validateModel(request);
|
|
9571
10940
|
let query = { };
|
|
9572
|
-
|
|
9573
|
-
|
|
9574
|
-
|
|
9575
|
-
|
|
10941
|
+
if (!Util.isUnset(request.accelerateRegion)) {
|
|
10942
|
+
query["AccelerateRegion"] = request.accelerateRegion;
|
|
10943
|
+
}
|
|
10944
|
+
|
|
10945
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10946
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10947
|
+
}
|
|
10948
|
+
|
|
10949
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10950
|
+
query["ClientToken"] = request.clientToken;
|
|
10951
|
+
}
|
|
10952
|
+
|
|
10953
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10954
|
+
query["RegionId"] = request.regionId;
|
|
10955
|
+
}
|
|
10956
|
+
|
|
9576
10957
|
let req = new $OpenApi.OpenApiRequest({
|
|
9577
10958
|
query: OpenApiUtil.query(query),
|
|
9578
10959
|
});
|
|
@@ -9598,18 +10979,54 @@ export default class Client extends OpenApi {
|
|
|
9598
10979
|
async createListenerWithOptions(request: CreateListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateListenerResponse> {
|
|
9599
10980
|
Util.validateModel(request);
|
|
9600
10981
|
let query = { };
|
|
9601
|
-
|
|
9602
|
-
|
|
9603
|
-
|
|
9604
|
-
|
|
9605
|
-
|
|
9606
|
-
|
|
9607
|
-
|
|
9608
|
-
|
|
9609
|
-
|
|
9610
|
-
|
|
9611
|
-
|
|
9612
|
-
|
|
10982
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10983
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10984
|
+
}
|
|
10985
|
+
|
|
10986
|
+
if (!Util.isUnset(request.certificates)) {
|
|
10987
|
+
query["Certificates"] = request.certificates;
|
|
10988
|
+
}
|
|
10989
|
+
|
|
10990
|
+
if (!Util.isUnset(request.clientAffinity)) {
|
|
10991
|
+
query["ClientAffinity"] = request.clientAffinity;
|
|
10992
|
+
}
|
|
10993
|
+
|
|
10994
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10995
|
+
query["ClientToken"] = request.clientToken;
|
|
10996
|
+
}
|
|
10997
|
+
|
|
10998
|
+
if (!Util.isUnset(request.description)) {
|
|
10999
|
+
query["Description"] = request.description;
|
|
11000
|
+
}
|
|
11001
|
+
|
|
11002
|
+
if (!Util.isUnset(request.name)) {
|
|
11003
|
+
query["Name"] = request.name;
|
|
11004
|
+
}
|
|
11005
|
+
|
|
11006
|
+
if (!Util.isUnset(request.portRanges)) {
|
|
11007
|
+
query["PortRanges"] = request.portRanges;
|
|
11008
|
+
}
|
|
11009
|
+
|
|
11010
|
+
if (!Util.isUnset(request.protocol)) {
|
|
11011
|
+
query["Protocol"] = request.protocol;
|
|
11012
|
+
}
|
|
11013
|
+
|
|
11014
|
+
if (!Util.isUnset(request.proxyProtocol)) {
|
|
11015
|
+
query["ProxyProtocol"] = request.proxyProtocol;
|
|
11016
|
+
}
|
|
11017
|
+
|
|
11018
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11019
|
+
query["RegionId"] = request.regionId;
|
|
11020
|
+
}
|
|
11021
|
+
|
|
11022
|
+
if (!Util.isUnset(request.securityPolicyId)) {
|
|
11023
|
+
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
11024
|
+
}
|
|
11025
|
+
|
|
11026
|
+
if (!Util.isUnset($tea.toMap(request.XForwardedForConfig))) {
|
|
11027
|
+
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
11028
|
+
}
|
|
11029
|
+
|
|
9613
11030
|
let req = new $OpenApi.OpenApiRequest({
|
|
9614
11031
|
query: OpenApiUtil.query(query),
|
|
9615
11032
|
});
|
|
@@ -9635,11 +11052,26 @@ export default class Client extends OpenApi {
|
|
|
9635
11052
|
async createSpareIpsWithOptions(request: CreateSpareIpsRequest, runtime: $Util.RuntimeOptions): Promise<CreateSpareIpsResponse> {
|
|
9636
11053
|
Util.validateModel(request);
|
|
9637
11054
|
let query = { };
|
|
9638
|
-
|
|
9639
|
-
|
|
9640
|
-
|
|
9641
|
-
|
|
9642
|
-
|
|
11055
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11056
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11057
|
+
}
|
|
11058
|
+
|
|
11059
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11060
|
+
query["ClientToken"] = request.clientToken;
|
|
11061
|
+
}
|
|
11062
|
+
|
|
11063
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
11064
|
+
query["DryRun"] = request.dryRun;
|
|
11065
|
+
}
|
|
11066
|
+
|
|
11067
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11068
|
+
query["RegionId"] = request.regionId;
|
|
11069
|
+
}
|
|
11070
|
+
|
|
11071
|
+
if (!Util.isUnset(request.spareIps)) {
|
|
11072
|
+
query["SpareIps"] = request.spareIps;
|
|
11073
|
+
}
|
|
11074
|
+
|
|
9643
11075
|
let req = new $OpenApi.OpenApiRequest({
|
|
9644
11076
|
query: OpenApiUtil.query(query),
|
|
9645
11077
|
});
|
|
@@ -9665,8 +11097,14 @@ export default class Client extends OpenApi {
|
|
|
9665
11097
|
async deleteAcceleratorWithOptions(request: DeleteAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAcceleratorResponse> {
|
|
9666
11098
|
Util.validateModel(request);
|
|
9667
11099
|
let query = { };
|
|
9668
|
-
|
|
9669
|
-
|
|
11100
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11101
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11102
|
+
}
|
|
11103
|
+
|
|
11104
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11105
|
+
query["RegionId"] = request.regionId;
|
|
11106
|
+
}
|
|
11107
|
+
|
|
9670
11108
|
let req = new $OpenApi.OpenApiRequest({
|
|
9671
11109
|
query: OpenApiUtil.query(query),
|
|
9672
11110
|
});
|
|
@@ -9692,10 +11130,22 @@ export default class Client extends OpenApi {
|
|
|
9692
11130
|
async deleteAclWithOptions(request: DeleteAclRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAclResponse> {
|
|
9693
11131
|
Util.validateModel(request);
|
|
9694
11132
|
let query = { };
|
|
9695
|
-
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
|
-
|
|
11133
|
+
if (!Util.isUnset(request.aclId)) {
|
|
11134
|
+
query["AclId"] = request.aclId;
|
|
11135
|
+
}
|
|
11136
|
+
|
|
11137
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11138
|
+
query["ClientToken"] = request.clientToken;
|
|
11139
|
+
}
|
|
11140
|
+
|
|
11141
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
11142
|
+
query["DryRun"] = request.dryRun;
|
|
11143
|
+
}
|
|
11144
|
+
|
|
11145
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11146
|
+
query["RegionId"] = request.regionId;
|
|
11147
|
+
}
|
|
11148
|
+
|
|
9699
11149
|
let req = new $OpenApi.OpenApiRequest({
|
|
9700
11150
|
query: OpenApiUtil.query(query),
|
|
9701
11151
|
});
|
|
@@ -9718,12 +11168,58 @@ export default class Client extends OpenApi {
|
|
|
9718
11168
|
return await this.deleteAclWithOptions(request, runtime);
|
|
9719
11169
|
}
|
|
9720
11170
|
|
|
11171
|
+
async deleteApplicationMonitorWithOptions(request: DeleteApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationMonitorResponse> {
|
|
11172
|
+
Util.validateModel(request);
|
|
11173
|
+
let query = { };
|
|
11174
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11175
|
+
query["ClientToken"] = request.clientToken;
|
|
11176
|
+
}
|
|
11177
|
+
|
|
11178
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11179
|
+
query["RegionId"] = request.regionId;
|
|
11180
|
+
}
|
|
11181
|
+
|
|
11182
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11183
|
+
query["TaskId"] = request.taskId;
|
|
11184
|
+
}
|
|
11185
|
+
|
|
11186
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11187
|
+
query: OpenApiUtil.query(query),
|
|
11188
|
+
});
|
|
11189
|
+
let params = new $OpenApi.Params({
|
|
11190
|
+
action: "DeleteApplicationMonitor",
|
|
11191
|
+
version: "2019-11-20",
|
|
11192
|
+
protocol: "HTTPS",
|
|
11193
|
+
pathname: "/",
|
|
11194
|
+
method: "POST",
|
|
11195
|
+
authType: "AK",
|
|
11196
|
+
style: "RPC",
|
|
11197
|
+
reqBodyType: "formData",
|
|
11198
|
+
bodyType: "json",
|
|
11199
|
+
});
|
|
11200
|
+
return $tea.cast<DeleteApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DeleteApplicationMonitorResponse({}));
|
|
11201
|
+
}
|
|
11202
|
+
|
|
11203
|
+
async deleteApplicationMonitor(request: DeleteApplicationMonitorRequest): Promise<DeleteApplicationMonitorResponse> {
|
|
11204
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
11205
|
+
return await this.deleteApplicationMonitorWithOptions(request, runtime);
|
|
11206
|
+
}
|
|
11207
|
+
|
|
9721
11208
|
async deleteBandwidthPackageWithOptions(request: DeleteBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBandwidthPackageResponse> {
|
|
9722
11209
|
Util.validateModel(request);
|
|
9723
11210
|
let query = { };
|
|
9724
|
-
|
|
9725
|
-
|
|
9726
|
-
|
|
11211
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
11212
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
11213
|
+
}
|
|
11214
|
+
|
|
11215
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11216
|
+
query["ClientToken"] = request.clientToken;
|
|
11217
|
+
}
|
|
11218
|
+
|
|
11219
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11220
|
+
query["RegionId"] = request.regionId;
|
|
11221
|
+
}
|
|
11222
|
+
|
|
9727
11223
|
let req = new $OpenApi.OpenApiRequest({
|
|
9728
11224
|
query: OpenApiUtil.query(query),
|
|
9729
11225
|
});
|
|
@@ -9749,8 +11245,14 @@ export default class Client extends OpenApi {
|
|
|
9749
11245
|
async deleteBasicAcceleratorWithOptions(request: DeleteBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicAcceleratorResponse> {
|
|
9750
11246
|
Util.validateModel(request);
|
|
9751
11247
|
let query = { };
|
|
9752
|
-
|
|
9753
|
-
|
|
11248
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11249
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11250
|
+
}
|
|
11251
|
+
|
|
11252
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11253
|
+
query["RegionId"] = request.regionId;
|
|
11254
|
+
}
|
|
11255
|
+
|
|
9754
11256
|
let req = new $OpenApi.OpenApiRequest({
|
|
9755
11257
|
query: OpenApiUtil.query(query),
|
|
9756
11258
|
});
|
|
@@ -9776,8 +11278,14 @@ export default class Client extends OpenApi {
|
|
|
9776
11278
|
async deleteBasicEndpointGroupWithOptions(request: DeleteBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicEndpointGroupResponse> {
|
|
9777
11279
|
Util.validateModel(request);
|
|
9778
11280
|
let query = { };
|
|
9779
|
-
|
|
9780
|
-
|
|
11281
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11282
|
+
query["ClientToken"] = request.clientToken;
|
|
11283
|
+
}
|
|
11284
|
+
|
|
11285
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
11286
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
11287
|
+
}
|
|
11288
|
+
|
|
9781
11289
|
let req = new $OpenApi.OpenApiRequest({
|
|
9782
11290
|
query: OpenApiUtil.query(query),
|
|
9783
11291
|
});
|
|
@@ -9803,9 +11311,18 @@ export default class Client extends OpenApi {
|
|
|
9803
11311
|
async deleteBasicIpSetWithOptions(request: DeleteBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicIpSetResponse> {
|
|
9804
11312
|
Util.validateModel(request);
|
|
9805
11313
|
let query = { };
|
|
9806
|
-
|
|
9807
|
-
|
|
9808
|
-
|
|
11314
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11315
|
+
query["ClientToken"] = request.clientToken;
|
|
11316
|
+
}
|
|
11317
|
+
|
|
11318
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
11319
|
+
query["IpSetId"] = request.ipSetId;
|
|
11320
|
+
}
|
|
11321
|
+
|
|
11322
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11323
|
+
query["RegionId"] = request.regionId;
|
|
11324
|
+
}
|
|
11325
|
+
|
|
9809
11326
|
let req = new $OpenApi.OpenApiRequest({
|
|
9810
11327
|
query: OpenApiUtil.query(query),
|
|
9811
11328
|
});
|
|
@@ -9831,9 +11348,18 @@ export default class Client extends OpenApi {
|
|
|
9831
11348
|
async deleteEndpointGroupWithOptions(request: DeleteEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteEndpointGroupResponse> {
|
|
9832
11349
|
Util.validateModel(request);
|
|
9833
11350
|
let query = { };
|
|
9834
|
-
|
|
9835
|
-
|
|
9836
|
-
|
|
11351
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11352
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11353
|
+
}
|
|
11354
|
+
|
|
11355
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11356
|
+
query["ClientToken"] = request.clientToken;
|
|
11357
|
+
}
|
|
11358
|
+
|
|
11359
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
11360
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
11361
|
+
}
|
|
11362
|
+
|
|
9837
11363
|
let req = new $OpenApi.OpenApiRequest({
|
|
9838
11364
|
query: OpenApiUtil.query(query),
|
|
9839
11365
|
});
|
|
@@ -9859,10 +11385,22 @@ export default class Client extends OpenApi {
|
|
|
9859
11385
|
async deleteEndpointGroupsWithOptions(request: DeleteEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteEndpointGroupsResponse> {
|
|
9860
11386
|
Util.validateModel(request);
|
|
9861
11387
|
let query = { };
|
|
9862
|
-
|
|
9863
|
-
|
|
9864
|
-
|
|
9865
|
-
|
|
11388
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11389
|
+
query["ClientToken"] = request.clientToken;
|
|
11390
|
+
}
|
|
11391
|
+
|
|
11392
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
11393
|
+
query["DryRun"] = request.dryRun;
|
|
11394
|
+
}
|
|
11395
|
+
|
|
11396
|
+
if (!Util.isUnset(request.endpointGroupIds)) {
|
|
11397
|
+
query["EndpointGroupIds"] = request.endpointGroupIds;
|
|
11398
|
+
}
|
|
11399
|
+
|
|
11400
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11401
|
+
query["RegionId"] = request.regionId;
|
|
11402
|
+
}
|
|
11403
|
+
|
|
9866
11404
|
let req = new $OpenApi.OpenApiRequest({
|
|
9867
11405
|
query: OpenApiUtil.query(query),
|
|
9868
11406
|
});
|
|
@@ -9888,11 +11426,26 @@ export default class Client extends OpenApi {
|
|
|
9888
11426
|
async deleteForwardingRulesWithOptions(request: DeleteForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteForwardingRulesResponse> {
|
|
9889
11427
|
Util.validateModel(request);
|
|
9890
11428
|
let query = { };
|
|
9891
|
-
|
|
9892
|
-
|
|
9893
|
-
|
|
9894
|
-
|
|
9895
|
-
|
|
11429
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11430
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11431
|
+
}
|
|
11432
|
+
|
|
11433
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11434
|
+
query["ClientToken"] = request.clientToken;
|
|
11435
|
+
}
|
|
11436
|
+
|
|
11437
|
+
if (!Util.isUnset(request.forwardingRuleIds)) {
|
|
11438
|
+
query["ForwardingRuleIds"] = request.forwardingRuleIds;
|
|
11439
|
+
}
|
|
11440
|
+
|
|
11441
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11442
|
+
query["ListenerId"] = request.listenerId;
|
|
11443
|
+
}
|
|
11444
|
+
|
|
11445
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11446
|
+
query["RegionId"] = request.regionId;
|
|
11447
|
+
}
|
|
11448
|
+
|
|
9896
11449
|
let req = new $OpenApi.OpenApiRequest({
|
|
9897
11450
|
query: OpenApiUtil.query(query),
|
|
9898
11451
|
});
|
|
@@ -9918,10 +11471,22 @@ export default class Client extends OpenApi {
|
|
|
9918
11471
|
async deleteIpSetWithOptions(request: DeleteIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteIpSetResponse> {
|
|
9919
11472
|
Util.validateModel(request);
|
|
9920
11473
|
let query = { };
|
|
9921
|
-
|
|
9922
|
-
|
|
9923
|
-
|
|
9924
|
-
|
|
11474
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11475
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11476
|
+
}
|
|
11477
|
+
|
|
11478
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11479
|
+
query["ClientToken"] = request.clientToken;
|
|
11480
|
+
}
|
|
11481
|
+
|
|
11482
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
11483
|
+
query["IpSetId"] = request.ipSetId;
|
|
11484
|
+
}
|
|
11485
|
+
|
|
11486
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11487
|
+
query["RegionId"] = request.regionId;
|
|
11488
|
+
}
|
|
11489
|
+
|
|
9925
11490
|
let req = new $OpenApi.OpenApiRequest({
|
|
9926
11491
|
query: OpenApiUtil.query(query),
|
|
9927
11492
|
});
|
|
@@ -9947,9 +11512,15 @@ export default class Client extends OpenApi {
|
|
|
9947
11512
|
async deleteIpSetsWithOptions(request: DeleteIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteIpSetsResponse> {
|
|
9948
11513
|
Util.validateModel(request);
|
|
9949
11514
|
let query = { };
|
|
9950
|
-
|
|
9951
|
-
|
|
9952
|
-
|
|
11515
|
+
if (!Util.isUnset(request.ipSetIds)) {
|
|
11516
|
+
query["IpSetIds"] = request.ipSetIds;
|
|
11517
|
+
}
|
|
11518
|
+
|
|
11519
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11520
|
+
query["RegionId"] = request.regionId;
|
|
11521
|
+
}
|
|
11522
|
+
|
|
11523
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
9953
11524
|
query: OpenApiUtil.query(query),
|
|
9954
11525
|
});
|
|
9955
11526
|
let params = new $OpenApi.Params({
|
|
@@ -9974,9 +11545,18 @@ export default class Client extends OpenApi {
|
|
|
9974
11545
|
async deleteListenerWithOptions(request: DeleteListenerRequest, runtime: $Util.RuntimeOptions): Promise<DeleteListenerResponse> {
|
|
9975
11546
|
Util.validateModel(request);
|
|
9976
11547
|
let query = { };
|
|
9977
|
-
|
|
9978
|
-
|
|
9979
|
-
|
|
11548
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11549
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11550
|
+
}
|
|
11551
|
+
|
|
11552
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11553
|
+
query["ClientToken"] = request.clientToken;
|
|
11554
|
+
}
|
|
11555
|
+
|
|
11556
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11557
|
+
query["ListenerId"] = request.listenerId;
|
|
11558
|
+
}
|
|
11559
|
+
|
|
9980
11560
|
let req = new $OpenApi.OpenApiRequest({
|
|
9981
11561
|
query: OpenApiUtil.query(query),
|
|
9982
11562
|
});
|
|
@@ -10002,11 +11582,26 @@ export default class Client extends OpenApi {
|
|
|
10002
11582
|
async deleteSpareIpsWithOptions(request: DeleteSpareIpsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSpareIpsResponse> {
|
|
10003
11583
|
Util.validateModel(request);
|
|
10004
11584
|
let query = { };
|
|
10005
|
-
|
|
10006
|
-
|
|
10007
|
-
|
|
10008
|
-
|
|
10009
|
-
|
|
11585
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11586
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11587
|
+
}
|
|
11588
|
+
|
|
11589
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11590
|
+
query["ClientToken"] = request.clientToken;
|
|
11591
|
+
}
|
|
11592
|
+
|
|
11593
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
11594
|
+
query["DryRun"] = request.dryRun;
|
|
11595
|
+
}
|
|
11596
|
+
|
|
11597
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11598
|
+
query["RegionId"] = request.regionId;
|
|
11599
|
+
}
|
|
11600
|
+
|
|
11601
|
+
if (!Util.isUnset(request.spareIps)) {
|
|
11602
|
+
query["SpareIps"] = request.spareIps;
|
|
11603
|
+
}
|
|
11604
|
+
|
|
10010
11605
|
let req = new $OpenApi.OpenApiRequest({
|
|
10011
11606
|
query: OpenApiUtil.query(query),
|
|
10012
11607
|
});
|
|
@@ -10032,8 +11627,14 @@ export default class Client extends OpenApi {
|
|
|
10032
11627
|
async describeAcceleratorWithOptions(request: DescribeAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAcceleratorResponse> {
|
|
10033
11628
|
Util.validateModel(request);
|
|
10034
11629
|
let query = { };
|
|
10035
|
-
|
|
10036
|
-
|
|
11630
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11631
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11632
|
+
}
|
|
11633
|
+
|
|
11634
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11635
|
+
query["RegionId"] = request.regionId;
|
|
11636
|
+
}
|
|
11637
|
+
|
|
10037
11638
|
let req = new $OpenApi.OpenApiRequest({
|
|
10038
11639
|
query: OpenApiUtil.query(query),
|
|
10039
11640
|
});
|
|
@@ -10059,8 +11660,14 @@ export default class Client extends OpenApi {
|
|
|
10059
11660
|
async describeAcceleratorAutoRenewAttributeWithOptions(request: DescribeAcceleratorAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAcceleratorAutoRenewAttributeResponse> {
|
|
10060
11661
|
Util.validateModel(request);
|
|
10061
11662
|
let query = { };
|
|
10062
|
-
|
|
10063
|
-
|
|
11663
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11664
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11665
|
+
}
|
|
11666
|
+
|
|
11667
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11668
|
+
query["RegionId"] = request.regionId;
|
|
11669
|
+
}
|
|
11670
|
+
|
|
10064
11671
|
let req = new $OpenApi.OpenApiRequest({
|
|
10065
11672
|
query: OpenApiUtil.query(query),
|
|
10066
11673
|
});
|
|
@@ -10083,11 +11690,54 @@ export default class Client extends OpenApi {
|
|
|
10083
11690
|
return await this.describeAcceleratorAutoRenewAttributeWithOptions(request, runtime);
|
|
10084
11691
|
}
|
|
10085
11692
|
|
|
11693
|
+
async describeApplicationMonitorWithOptions(request: DescribeApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationMonitorResponse> {
|
|
11694
|
+
Util.validateModel(request);
|
|
11695
|
+
let query = { };
|
|
11696
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11697
|
+
query["ClientToken"] = request.clientToken;
|
|
11698
|
+
}
|
|
11699
|
+
|
|
11700
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11701
|
+
query["RegionId"] = request.regionId;
|
|
11702
|
+
}
|
|
11703
|
+
|
|
11704
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11705
|
+
query["TaskId"] = request.taskId;
|
|
11706
|
+
}
|
|
11707
|
+
|
|
11708
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11709
|
+
query: OpenApiUtil.query(query),
|
|
11710
|
+
});
|
|
11711
|
+
let params = new $OpenApi.Params({
|
|
11712
|
+
action: "DescribeApplicationMonitor",
|
|
11713
|
+
version: "2019-11-20",
|
|
11714
|
+
protocol: "HTTPS",
|
|
11715
|
+
pathname: "/",
|
|
11716
|
+
method: "POST",
|
|
11717
|
+
authType: "AK",
|
|
11718
|
+
style: "RPC",
|
|
11719
|
+
reqBodyType: "formData",
|
|
11720
|
+
bodyType: "json",
|
|
11721
|
+
});
|
|
11722
|
+
return $tea.cast<DescribeApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DescribeApplicationMonitorResponse({}));
|
|
11723
|
+
}
|
|
11724
|
+
|
|
11725
|
+
async describeApplicationMonitor(request: DescribeApplicationMonitorRequest): Promise<DescribeApplicationMonitorResponse> {
|
|
11726
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
11727
|
+
return await this.describeApplicationMonitorWithOptions(request, runtime);
|
|
11728
|
+
}
|
|
11729
|
+
|
|
10086
11730
|
async describeBandwidthPackageWithOptions(request: DescribeBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBandwidthPackageResponse> {
|
|
10087
11731
|
Util.validateModel(request);
|
|
10088
11732
|
let query = { };
|
|
10089
|
-
|
|
10090
|
-
|
|
11733
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
11734
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
11735
|
+
}
|
|
11736
|
+
|
|
11737
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11738
|
+
query["RegionId"] = request.regionId;
|
|
11739
|
+
}
|
|
11740
|
+
|
|
10091
11741
|
let req = new $OpenApi.OpenApiRequest({
|
|
10092
11742
|
query: OpenApiUtil.query(query),
|
|
10093
11743
|
});
|
|
@@ -10113,8 +11763,14 @@ export default class Client extends OpenApi {
|
|
|
10113
11763
|
async describeEndpointGroupWithOptions(request: DescribeEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEndpointGroupResponse> {
|
|
10114
11764
|
Util.validateModel(request);
|
|
10115
11765
|
let query = { };
|
|
10116
|
-
|
|
10117
|
-
|
|
11766
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
11767
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
11768
|
+
}
|
|
11769
|
+
|
|
11770
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11771
|
+
query["RegionId"] = request.regionId;
|
|
11772
|
+
}
|
|
11773
|
+
|
|
10118
11774
|
let req = new $OpenApi.OpenApiRequest({
|
|
10119
11775
|
query: OpenApiUtil.query(query),
|
|
10120
11776
|
});
|
|
@@ -10140,8 +11796,14 @@ export default class Client extends OpenApi {
|
|
|
10140
11796
|
async describeIpSetWithOptions(request: DescribeIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpSetResponse> {
|
|
10141
11797
|
Util.validateModel(request);
|
|
10142
11798
|
let query = { };
|
|
10143
|
-
|
|
10144
|
-
|
|
11799
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
11800
|
+
query["IpSetId"] = request.ipSetId;
|
|
11801
|
+
}
|
|
11802
|
+
|
|
11803
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11804
|
+
query["RegionId"] = request.regionId;
|
|
11805
|
+
}
|
|
11806
|
+
|
|
10145
11807
|
let req = new $OpenApi.OpenApiRequest({
|
|
10146
11808
|
query: OpenApiUtil.query(query),
|
|
10147
11809
|
});
|
|
@@ -10167,8 +11829,14 @@ export default class Client extends OpenApi {
|
|
|
10167
11829
|
async describeListenerWithOptions(request: DescribeListenerRequest, runtime: $Util.RuntimeOptions): Promise<DescribeListenerResponse> {
|
|
10168
11830
|
Util.validateModel(request);
|
|
10169
11831
|
let query = { };
|
|
10170
|
-
|
|
10171
|
-
|
|
11832
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11833
|
+
query["ListenerId"] = request.listenerId;
|
|
11834
|
+
}
|
|
11835
|
+
|
|
11836
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11837
|
+
query["RegionId"] = request.regionId;
|
|
11838
|
+
}
|
|
11839
|
+
|
|
10172
11840
|
let req = new $OpenApi.OpenApiRequest({
|
|
10173
11841
|
query: OpenApiUtil.query(query),
|
|
10174
11842
|
});
|
|
@@ -10194,7 +11862,10 @@ export default class Client extends OpenApi {
|
|
|
10194
11862
|
async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
10195
11863
|
Util.validateModel(request);
|
|
10196
11864
|
let query = { };
|
|
10197
|
-
|
|
11865
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11866
|
+
query["RegionId"] = request.regionId;
|
|
11867
|
+
}
|
|
11868
|
+
|
|
10198
11869
|
let req = new $OpenApi.OpenApiRequest({
|
|
10199
11870
|
query: OpenApiUtil.query(query),
|
|
10200
11871
|
});
|
|
@@ -10220,8 +11891,14 @@ export default class Client extends OpenApi {
|
|
|
10220
11891
|
async detachDdosFromAcceleratorWithOptions(request: DetachDdosFromAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DetachDdosFromAcceleratorResponse> {
|
|
10221
11892
|
Util.validateModel(request);
|
|
10222
11893
|
let query = { };
|
|
10223
|
-
|
|
10224
|
-
|
|
11894
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11895
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11896
|
+
}
|
|
11897
|
+
|
|
11898
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11899
|
+
query["RegionId"] = request.regionId;
|
|
11900
|
+
}
|
|
11901
|
+
|
|
10225
11902
|
let req = new $OpenApi.OpenApiRequest({
|
|
10226
11903
|
query: OpenApiUtil.query(query),
|
|
10227
11904
|
});
|
|
@@ -10247,11 +11924,26 @@ export default class Client extends OpenApi {
|
|
|
10247
11924
|
async detachLogStoreFromEndpointGroupWithOptions(request: DetachLogStoreFromEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DetachLogStoreFromEndpointGroupResponse> {
|
|
10248
11925
|
Util.validateModel(request);
|
|
10249
11926
|
let query = { };
|
|
10250
|
-
|
|
10251
|
-
|
|
10252
|
-
|
|
10253
|
-
|
|
10254
|
-
|
|
11927
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11928
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11929
|
+
}
|
|
11930
|
+
|
|
11931
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11932
|
+
query["ClientToken"] = request.clientToken;
|
|
11933
|
+
}
|
|
11934
|
+
|
|
11935
|
+
if (!Util.isUnset(request.endpointGroupIds)) {
|
|
11936
|
+
query["EndpointGroupIds"] = request.endpointGroupIds;
|
|
11937
|
+
}
|
|
11938
|
+
|
|
11939
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11940
|
+
query["ListenerId"] = request.listenerId;
|
|
11941
|
+
}
|
|
11942
|
+
|
|
11943
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11944
|
+
query["RegionId"] = request.regionId;
|
|
11945
|
+
}
|
|
11946
|
+
|
|
10255
11947
|
let req = new $OpenApi.OpenApiRequest({
|
|
10256
11948
|
query: OpenApiUtil.query(query),
|
|
10257
11949
|
});
|
|
@@ -10274,14 +11966,103 @@ export default class Client extends OpenApi {
|
|
|
10274
11966
|
return await this.detachLogStoreFromEndpointGroupWithOptions(request, runtime);
|
|
10275
11967
|
}
|
|
10276
11968
|
|
|
11969
|
+
async detectApplicationMonitorWithOptions(request: DetectApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DetectApplicationMonitorResponse> {
|
|
11970
|
+
Util.validateModel(request);
|
|
11971
|
+
let query = { };
|
|
11972
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11973
|
+
query["ClientToken"] = request.clientToken;
|
|
11974
|
+
}
|
|
11975
|
+
|
|
11976
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11977
|
+
query["RegionId"] = request.regionId;
|
|
11978
|
+
}
|
|
11979
|
+
|
|
11980
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11981
|
+
query["TaskId"] = request.taskId;
|
|
11982
|
+
}
|
|
11983
|
+
|
|
11984
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11985
|
+
query: OpenApiUtil.query(query),
|
|
11986
|
+
});
|
|
11987
|
+
let params = new $OpenApi.Params({
|
|
11988
|
+
action: "DetectApplicationMonitor",
|
|
11989
|
+
version: "2019-11-20",
|
|
11990
|
+
protocol: "HTTPS",
|
|
11991
|
+
pathname: "/",
|
|
11992
|
+
method: "POST",
|
|
11993
|
+
authType: "AK",
|
|
11994
|
+
style: "RPC",
|
|
11995
|
+
reqBodyType: "formData",
|
|
11996
|
+
bodyType: "json",
|
|
11997
|
+
});
|
|
11998
|
+
return $tea.cast<DetectApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DetectApplicationMonitorResponse({}));
|
|
11999
|
+
}
|
|
12000
|
+
|
|
12001
|
+
async detectApplicationMonitor(request: DetectApplicationMonitorRequest): Promise<DetectApplicationMonitorResponse> {
|
|
12002
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12003
|
+
return await this.detectApplicationMonitorWithOptions(request, runtime);
|
|
12004
|
+
}
|
|
12005
|
+
|
|
12006
|
+
async disableApplicationMonitorWithOptions(request: DisableApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DisableApplicationMonitorResponse> {
|
|
12007
|
+
Util.validateModel(request);
|
|
12008
|
+
let query = { };
|
|
12009
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12010
|
+
query["ClientToken"] = request.clientToken;
|
|
12011
|
+
}
|
|
12012
|
+
|
|
12013
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12014
|
+
query["RegionId"] = request.regionId;
|
|
12015
|
+
}
|
|
12016
|
+
|
|
12017
|
+
if (!Util.isUnset(request.taskId)) {
|
|
12018
|
+
query["TaskId"] = request.taskId;
|
|
12019
|
+
}
|
|
12020
|
+
|
|
12021
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12022
|
+
query: OpenApiUtil.query(query),
|
|
12023
|
+
});
|
|
12024
|
+
let params = new $OpenApi.Params({
|
|
12025
|
+
action: "DisableApplicationMonitor",
|
|
12026
|
+
version: "2019-11-20",
|
|
12027
|
+
protocol: "HTTPS",
|
|
12028
|
+
pathname: "/",
|
|
12029
|
+
method: "POST",
|
|
12030
|
+
authType: "AK",
|
|
12031
|
+
style: "RPC",
|
|
12032
|
+
reqBodyType: "formData",
|
|
12033
|
+
bodyType: "json",
|
|
12034
|
+
});
|
|
12035
|
+
return $tea.cast<DisableApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DisableApplicationMonitorResponse({}));
|
|
12036
|
+
}
|
|
12037
|
+
|
|
12038
|
+
async disableApplicationMonitor(request: DisableApplicationMonitorRequest): Promise<DisableApplicationMonitorResponse> {
|
|
12039
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12040
|
+
return await this.disableApplicationMonitorWithOptions(request, runtime);
|
|
12041
|
+
}
|
|
12042
|
+
|
|
10277
12043
|
async dissociateAclsFromListenerWithOptions(request: DissociateAclsFromListenerRequest, runtime: $Util.RuntimeOptions): Promise<DissociateAclsFromListenerResponse> {
|
|
10278
12044
|
Util.validateModel(request);
|
|
10279
12045
|
let query = { };
|
|
10280
|
-
|
|
10281
|
-
|
|
10282
|
-
|
|
10283
|
-
|
|
10284
|
-
|
|
12046
|
+
if (!Util.isUnset(request.aclIds)) {
|
|
12047
|
+
query["AclIds"] = request.aclIds;
|
|
12048
|
+
}
|
|
12049
|
+
|
|
12050
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12051
|
+
query["ClientToken"] = request.clientToken;
|
|
12052
|
+
}
|
|
12053
|
+
|
|
12054
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
12055
|
+
query["DryRun"] = request.dryRun;
|
|
12056
|
+
}
|
|
12057
|
+
|
|
12058
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12059
|
+
query["ListenerId"] = request.listenerId;
|
|
12060
|
+
}
|
|
12061
|
+
|
|
12062
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12063
|
+
query["RegionId"] = request.regionId;
|
|
12064
|
+
}
|
|
12065
|
+
|
|
10285
12066
|
let req = new $OpenApi.OpenApiRequest({
|
|
10286
12067
|
query: OpenApiUtil.query(query),
|
|
10287
12068
|
});
|
|
@@ -10307,11 +12088,26 @@ export default class Client extends OpenApi {
|
|
|
10307
12088
|
async dissociateAdditionalCertificatesFromListenerWithOptions(request: DissociateAdditionalCertificatesFromListenerRequest, runtime: $Util.RuntimeOptions): Promise<DissociateAdditionalCertificatesFromListenerResponse> {
|
|
10308
12089
|
Util.validateModel(request);
|
|
10309
12090
|
let query = { };
|
|
10310
|
-
|
|
10311
|
-
|
|
10312
|
-
|
|
10313
|
-
|
|
10314
|
-
|
|
12091
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12092
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12093
|
+
}
|
|
12094
|
+
|
|
12095
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12096
|
+
query["ClientToken"] = request.clientToken;
|
|
12097
|
+
}
|
|
12098
|
+
|
|
12099
|
+
if (!Util.isUnset(request.domains)) {
|
|
12100
|
+
query["Domains"] = request.domains;
|
|
12101
|
+
}
|
|
12102
|
+
|
|
12103
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12104
|
+
query["ListenerId"] = request.listenerId;
|
|
12105
|
+
}
|
|
12106
|
+
|
|
12107
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12108
|
+
query["RegionId"] = request.regionId;
|
|
12109
|
+
}
|
|
12110
|
+
|
|
10315
12111
|
let req = new $OpenApi.OpenApiRequest({
|
|
10316
12112
|
query: OpenApiUtil.query(query),
|
|
10317
12113
|
});
|
|
@@ -10334,11 +12130,54 @@ export default class Client extends OpenApi {
|
|
|
10334
12130
|
return await this.dissociateAdditionalCertificatesFromListenerWithOptions(request, runtime);
|
|
10335
12131
|
}
|
|
10336
12132
|
|
|
12133
|
+
async enableApplicationMonitorWithOptions(request: EnableApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationMonitorResponse> {
|
|
12134
|
+
Util.validateModel(request);
|
|
12135
|
+
let query = { };
|
|
12136
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12137
|
+
query["ClientToken"] = request.clientToken;
|
|
12138
|
+
}
|
|
12139
|
+
|
|
12140
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12141
|
+
query["RegionId"] = request.regionId;
|
|
12142
|
+
}
|
|
12143
|
+
|
|
12144
|
+
if (!Util.isUnset(request.taskId)) {
|
|
12145
|
+
query["TaskId"] = request.taskId;
|
|
12146
|
+
}
|
|
12147
|
+
|
|
12148
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12149
|
+
query: OpenApiUtil.query(query),
|
|
12150
|
+
});
|
|
12151
|
+
let params = new $OpenApi.Params({
|
|
12152
|
+
action: "EnableApplicationMonitor",
|
|
12153
|
+
version: "2019-11-20",
|
|
12154
|
+
protocol: "HTTPS",
|
|
12155
|
+
pathname: "/",
|
|
12156
|
+
method: "POST",
|
|
12157
|
+
authType: "AK",
|
|
12158
|
+
style: "RPC",
|
|
12159
|
+
reqBodyType: "formData",
|
|
12160
|
+
bodyType: "json",
|
|
12161
|
+
});
|
|
12162
|
+
return $tea.cast<EnableApplicationMonitorResponse>(await this.callApi(params, req, runtime), new EnableApplicationMonitorResponse({}));
|
|
12163
|
+
}
|
|
12164
|
+
|
|
12165
|
+
async enableApplicationMonitor(request: EnableApplicationMonitorRequest): Promise<EnableApplicationMonitorResponse> {
|
|
12166
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12167
|
+
return await this.enableApplicationMonitorWithOptions(request, runtime);
|
|
12168
|
+
}
|
|
12169
|
+
|
|
10337
12170
|
async getAclWithOptions(request: GetAclRequest, runtime: $Util.RuntimeOptions): Promise<GetAclResponse> {
|
|
10338
12171
|
Util.validateModel(request);
|
|
10339
12172
|
let query = { };
|
|
10340
|
-
|
|
10341
|
-
|
|
12173
|
+
if (!Util.isUnset(request.aclId)) {
|
|
12174
|
+
query["AclId"] = request.aclId;
|
|
12175
|
+
}
|
|
12176
|
+
|
|
12177
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12178
|
+
query["RegionId"] = request.regionId;
|
|
12179
|
+
}
|
|
12180
|
+
|
|
10342
12181
|
let req = new $OpenApi.OpenApiRequest({
|
|
10343
12182
|
query: OpenApiUtil.query(query),
|
|
10344
12183
|
});
|
|
@@ -10364,8 +12203,14 @@ export default class Client extends OpenApi {
|
|
|
10364
12203
|
async getBasicAcceleratorWithOptions(request: GetBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAcceleratorResponse> {
|
|
10365
12204
|
Util.validateModel(request);
|
|
10366
12205
|
let query = { };
|
|
10367
|
-
|
|
10368
|
-
|
|
12206
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12207
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12208
|
+
}
|
|
12209
|
+
|
|
12210
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12211
|
+
query["RegionId"] = request.regionId;
|
|
12212
|
+
}
|
|
12213
|
+
|
|
10369
12214
|
let req = new $OpenApi.OpenApiRequest({
|
|
10370
12215
|
query: OpenApiUtil.query(query),
|
|
10371
12216
|
});
|
|
@@ -10391,9 +12236,18 @@ export default class Client extends OpenApi {
|
|
|
10391
12236
|
async getBasicEndpointGroupWithOptions(request: GetBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointGroupResponse> {
|
|
10392
12237
|
Util.validateModel(request);
|
|
10393
12238
|
let query = { };
|
|
10394
|
-
|
|
10395
|
-
|
|
10396
|
-
|
|
12239
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12240
|
+
query["ClientToken"] = request.clientToken;
|
|
12241
|
+
}
|
|
12242
|
+
|
|
12243
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
12244
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
12245
|
+
}
|
|
12246
|
+
|
|
12247
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12248
|
+
query["RegionId"] = request.regionId;
|
|
12249
|
+
}
|
|
12250
|
+
|
|
10397
12251
|
let req = new $OpenApi.OpenApiRequest({
|
|
10398
12252
|
query: OpenApiUtil.query(query),
|
|
10399
12253
|
});
|
|
@@ -10419,9 +12273,18 @@ export default class Client extends OpenApi {
|
|
|
10419
12273
|
async getBasicIpSetWithOptions(request: GetBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicIpSetResponse> {
|
|
10420
12274
|
Util.validateModel(request);
|
|
10421
12275
|
let query = { };
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
|
|
12276
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12277
|
+
query["ClientToken"] = request.clientToken;
|
|
12278
|
+
}
|
|
12279
|
+
|
|
12280
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
12281
|
+
query["IpSetId"] = request.ipSetId;
|
|
12282
|
+
}
|
|
12283
|
+
|
|
12284
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12285
|
+
query["RegionId"] = request.regionId;
|
|
12286
|
+
}
|
|
12287
|
+
|
|
10425
12288
|
let req = new $OpenApi.OpenApiRequest({
|
|
10426
12289
|
query: OpenApiUtil.query(query),
|
|
10427
12290
|
});
|
|
@@ -10447,11 +12310,26 @@ export default class Client extends OpenApi {
|
|
|
10447
12310
|
async getHealthStatusWithOptions(request: GetHealthStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetHealthStatusResponse> {
|
|
10448
12311
|
Util.validateModel(request);
|
|
10449
12312
|
let query = { };
|
|
10450
|
-
|
|
10451
|
-
|
|
10452
|
-
|
|
10453
|
-
|
|
10454
|
-
|
|
12313
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12314
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12315
|
+
}
|
|
12316
|
+
|
|
12317
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12318
|
+
query["ClientToken"] = request.clientToken;
|
|
12319
|
+
}
|
|
12320
|
+
|
|
12321
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
12322
|
+
query["DryRun"] = request.dryRun;
|
|
12323
|
+
}
|
|
12324
|
+
|
|
12325
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12326
|
+
query["ListenerId"] = request.listenerId;
|
|
12327
|
+
}
|
|
12328
|
+
|
|
12329
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12330
|
+
query["RegionId"] = request.regionId;
|
|
12331
|
+
}
|
|
12332
|
+
|
|
10455
12333
|
let req = new $OpenApi.OpenApiRequest({
|
|
10456
12334
|
query: OpenApiUtil.query(query),
|
|
10457
12335
|
});
|
|
@@ -10477,11 +12355,26 @@ export default class Client extends OpenApi {
|
|
|
10477
12355
|
async getSpareIpWithOptions(request: GetSpareIpRequest, runtime: $Util.RuntimeOptions): Promise<GetSpareIpResponse> {
|
|
10478
12356
|
Util.validateModel(request);
|
|
10479
12357
|
let query = { };
|
|
10480
|
-
|
|
10481
|
-
|
|
10482
|
-
|
|
10483
|
-
|
|
10484
|
-
|
|
12358
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12359
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12360
|
+
}
|
|
12361
|
+
|
|
12362
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12363
|
+
query["ClientToken"] = request.clientToken;
|
|
12364
|
+
}
|
|
12365
|
+
|
|
12366
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
12367
|
+
query["DryRun"] = request.dryRun;
|
|
12368
|
+
}
|
|
12369
|
+
|
|
12370
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12371
|
+
query["RegionId"] = request.regionId;
|
|
12372
|
+
}
|
|
12373
|
+
|
|
12374
|
+
if (!Util.isUnset(request.spareIp)) {
|
|
12375
|
+
query["SpareIp"] = request.spareIp;
|
|
12376
|
+
}
|
|
12377
|
+
|
|
10485
12378
|
let req = new $OpenApi.OpenApiRequest({
|
|
10486
12379
|
query: OpenApiUtil.query(query),
|
|
10487
12380
|
});
|
|
@@ -10507,7 +12400,10 @@ export default class Client extends OpenApi {
|
|
|
10507
12400
|
async listAccelerateAreasWithOptions(request: ListAccelerateAreasRequest, runtime: $Util.RuntimeOptions): Promise<ListAccelerateAreasResponse> {
|
|
10508
12401
|
Util.validateModel(request);
|
|
10509
12402
|
let query = { };
|
|
10510
|
-
|
|
12403
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12404
|
+
query["RegionId"] = request.regionId;
|
|
12405
|
+
}
|
|
12406
|
+
|
|
10511
12407
|
let req = new $OpenApi.OpenApiRequest({
|
|
10512
12408
|
query: OpenApiUtil.query(query),
|
|
10513
12409
|
});
|
|
@@ -10533,11 +12429,26 @@ export default class Client extends OpenApi {
|
|
|
10533
12429
|
async listAcceleratorsWithOptions(request: ListAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListAcceleratorsResponse> {
|
|
10534
12430
|
Util.validateModel(request);
|
|
10535
12431
|
let query = { };
|
|
10536
|
-
|
|
10537
|
-
|
|
10538
|
-
|
|
10539
|
-
|
|
10540
|
-
|
|
12432
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12433
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12434
|
+
}
|
|
12435
|
+
|
|
12436
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12437
|
+
query["PageNumber"] = request.pageNumber;
|
|
12438
|
+
}
|
|
12439
|
+
|
|
12440
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12441
|
+
query["PageSize"] = request.pageSize;
|
|
12442
|
+
}
|
|
12443
|
+
|
|
12444
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12445
|
+
query["RegionId"] = request.regionId;
|
|
12446
|
+
}
|
|
12447
|
+
|
|
12448
|
+
if (!Util.isUnset(request.state)) {
|
|
12449
|
+
query["State"] = request.state;
|
|
12450
|
+
}
|
|
12451
|
+
|
|
10541
12452
|
let req = new $OpenApi.OpenApiRequest({
|
|
10542
12453
|
query: OpenApiUtil.query(query),
|
|
10543
12454
|
});
|
|
@@ -10563,12 +12474,30 @@ export default class Client extends OpenApi {
|
|
|
10563
12474
|
async listAclsWithOptions(request: ListAclsRequest, runtime: $Util.RuntimeOptions): Promise<ListAclsResponse> {
|
|
10564
12475
|
Util.validateModel(request);
|
|
10565
12476
|
let query = { };
|
|
10566
|
-
|
|
10567
|
-
|
|
10568
|
-
|
|
10569
|
-
|
|
10570
|
-
|
|
10571
|
-
|
|
12477
|
+
if (!Util.isUnset(request.aclIds)) {
|
|
12478
|
+
query["AclIds"] = request.aclIds;
|
|
12479
|
+
}
|
|
12480
|
+
|
|
12481
|
+
if (!Util.isUnset(request.aclName)) {
|
|
12482
|
+
query["AclName"] = request.aclName;
|
|
12483
|
+
}
|
|
12484
|
+
|
|
12485
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12486
|
+
query["ClientToken"] = request.clientToken;
|
|
12487
|
+
}
|
|
12488
|
+
|
|
12489
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
12490
|
+
query["MaxResults"] = request.maxResults;
|
|
12491
|
+
}
|
|
12492
|
+
|
|
12493
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
12494
|
+
query["NextToken"] = request.nextToken;
|
|
12495
|
+
}
|
|
12496
|
+
|
|
12497
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12498
|
+
query["RegionId"] = request.regionId;
|
|
12499
|
+
}
|
|
12500
|
+
|
|
10572
12501
|
let req = new $OpenApi.OpenApiRequest({
|
|
10573
12502
|
query: OpenApiUtil.query(query),
|
|
10574
12503
|
});
|
|
@@ -10591,17 +12520,113 @@ export default class Client extends OpenApi {
|
|
|
10591
12520
|
return await this.listAclsWithOptions(request, runtime);
|
|
10592
12521
|
}
|
|
10593
12522
|
|
|
10594
|
-
async
|
|
12523
|
+
async listApplicationMonitorWithOptions(request: ListApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationMonitorResponse> {
|
|
10595
12524
|
Util.validateModel(request);
|
|
10596
12525
|
let query = { };
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
|
|
10600
|
-
|
|
10601
|
-
|
|
10602
|
-
|
|
10603
|
-
|
|
10604
|
-
|
|
12526
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12527
|
+
query["PageNumber"] = request.pageNumber;
|
|
12528
|
+
}
|
|
12529
|
+
|
|
12530
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12531
|
+
query["PageSize"] = request.pageSize;
|
|
12532
|
+
}
|
|
12533
|
+
|
|
12534
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12535
|
+
query["RegionId"] = request.regionId;
|
|
12536
|
+
}
|
|
12537
|
+
|
|
12538
|
+
if (!Util.isUnset(request.searchValue)) {
|
|
12539
|
+
query["SearchValue"] = request.searchValue;
|
|
12540
|
+
}
|
|
12541
|
+
|
|
12542
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12543
|
+
query: OpenApiUtil.query(query),
|
|
12544
|
+
});
|
|
12545
|
+
let params = new $OpenApi.Params({
|
|
12546
|
+
action: "ListApplicationMonitor",
|
|
12547
|
+
version: "2019-11-20",
|
|
12548
|
+
protocol: "HTTPS",
|
|
12549
|
+
pathname: "/",
|
|
12550
|
+
method: "POST",
|
|
12551
|
+
authType: "AK",
|
|
12552
|
+
style: "RPC",
|
|
12553
|
+
reqBodyType: "formData",
|
|
12554
|
+
bodyType: "json",
|
|
12555
|
+
});
|
|
12556
|
+
return $tea.cast<ListApplicationMonitorResponse>(await this.callApi(params, req, runtime), new ListApplicationMonitorResponse({}));
|
|
12557
|
+
}
|
|
12558
|
+
|
|
12559
|
+
async listApplicationMonitor(request: ListApplicationMonitorRequest): Promise<ListApplicationMonitorResponse> {
|
|
12560
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12561
|
+
return await this.listApplicationMonitorWithOptions(request, runtime);
|
|
12562
|
+
}
|
|
12563
|
+
|
|
12564
|
+
async listApplicationMonitorDetectResultWithOptions(request: ListApplicationMonitorDetectResultRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationMonitorDetectResultResponse> {
|
|
12565
|
+
Util.validateModel(request);
|
|
12566
|
+
let query = { };
|
|
12567
|
+
if (!Util.isUnset(request.beginTime)) {
|
|
12568
|
+
query["BeginTime"] = request.beginTime;
|
|
12569
|
+
}
|
|
12570
|
+
|
|
12571
|
+
if (!Util.isUnset(request.endTime)) {
|
|
12572
|
+
query["EndTime"] = request.endTime;
|
|
12573
|
+
}
|
|
12574
|
+
|
|
12575
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12576
|
+
query["PageNumber"] = request.pageNumber;
|
|
12577
|
+
}
|
|
12578
|
+
|
|
12579
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12580
|
+
query["PageSize"] = request.pageSize;
|
|
12581
|
+
}
|
|
12582
|
+
|
|
12583
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12584
|
+
query["RegionId"] = request.regionId;
|
|
12585
|
+
}
|
|
12586
|
+
|
|
12587
|
+
if (!Util.isUnset(request.taskId)) {
|
|
12588
|
+
query["TaskId"] = request.taskId;
|
|
12589
|
+
}
|
|
12590
|
+
|
|
12591
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12592
|
+
query: OpenApiUtil.query(query),
|
|
12593
|
+
});
|
|
12594
|
+
let params = new $OpenApi.Params({
|
|
12595
|
+
action: "ListApplicationMonitorDetectResult",
|
|
12596
|
+
version: "2019-11-20",
|
|
12597
|
+
protocol: "HTTPS",
|
|
12598
|
+
pathname: "/",
|
|
12599
|
+
method: "POST",
|
|
12600
|
+
authType: "AK",
|
|
12601
|
+
style: "RPC",
|
|
12602
|
+
reqBodyType: "formData",
|
|
12603
|
+
bodyType: "json",
|
|
12604
|
+
});
|
|
12605
|
+
return $tea.cast<ListApplicationMonitorDetectResultResponse>(await this.callApi(params, req, runtime), new ListApplicationMonitorDetectResultResponse({}));
|
|
12606
|
+
}
|
|
12607
|
+
|
|
12608
|
+
async listApplicationMonitorDetectResult(request: ListApplicationMonitorDetectResultRequest): Promise<ListApplicationMonitorDetectResultResponse> {
|
|
12609
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12610
|
+
return await this.listApplicationMonitorDetectResultWithOptions(request, runtime);
|
|
12611
|
+
}
|
|
12612
|
+
|
|
12613
|
+
async listAvailableAccelerateAreasWithOptions(request: ListAvailableAccelerateAreasRequest, runtime: $Util.RuntimeOptions): Promise<ListAvailableAccelerateAreasResponse> {
|
|
12614
|
+
Util.validateModel(request);
|
|
12615
|
+
let query = { };
|
|
12616
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12617
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12618
|
+
}
|
|
12619
|
+
|
|
12620
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12621
|
+
query["RegionId"] = request.regionId;
|
|
12622
|
+
}
|
|
12623
|
+
|
|
12624
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12625
|
+
query: OpenApiUtil.query(query),
|
|
12626
|
+
});
|
|
12627
|
+
let params = new $OpenApi.Params({
|
|
12628
|
+
action: "ListAvailableAccelerateAreas",
|
|
12629
|
+
version: "2019-11-20",
|
|
10605
12630
|
protocol: "HTTPS",
|
|
10606
12631
|
pathname: "/",
|
|
10607
12632
|
method: "POST",
|
|
@@ -10621,8 +12646,14 @@ export default class Client extends OpenApi {
|
|
|
10621
12646
|
async listAvailableBusiRegionsWithOptions(request: ListAvailableBusiRegionsRequest, runtime: $Util.RuntimeOptions): Promise<ListAvailableBusiRegionsResponse> {
|
|
10622
12647
|
Util.validateModel(request);
|
|
10623
12648
|
let query = { };
|
|
10624
|
-
|
|
10625
|
-
|
|
12649
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12650
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12651
|
+
}
|
|
12652
|
+
|
|
12653
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12654
|
+
query["RegionId"] = request.regionId;
|
|
12655
|
+
}
|
|
12656
|
+
|
|
10626
12657
|
let req = new $OpenApi.OpenApiRequest({
|
|
10627
12658
|
query: OpenApiUtil.query(query),
|
|
10628
12659
|
});
|
|
@@ -10648,12 +12679,30 @@ export default class Client extends OpenApi {
|
|
|
10648
12679
|
async listBandwidthPackagesWithOptions(request: ListBandwidthPackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthPackagesResponse> {
|
|
10649
12680
|
Util.validateModel(request);
|
|
10650
12681
|
let query = { };
|
|
10651
|
-
|
|
10652
|
-
|
|
10653
|
-
|
|
10654
|
-
|
|
10655
|
-
|
|
10656
|
-
|
|
12682
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
12683
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
12684
|
+
}
|
|
12685
|
+
|
|
12686
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12687
|
+
query["PageNumber"] = request.pageNumber;
|
|
12688
|
+
}
|
|
12689
|
+
|
|
12690
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12691
|
+
query["PageSize"] = request.pageSize;
|
|
12692
|
+
}
|
|
12693
|
+
|
|
12694
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12695
|
+
query["RegionId"] = request.regionId;
|
|
12696
|
+
}
|
|
12697
|
+
|
|
12698
|
+
if (!Util.isUnset(request.state)) {
|
|
12699
|
+
query["State"] = request.state;
|
|
12700
|
+
}
|
|
12701
|
+
|
|
12702
|
+
if (!Util.isUnset(request.type)) {
|
|
12703
|
+
query["Type"] = request.type;
|
|
12704
|
+
}
|
|
12705
|
+
|
|
10657
12706
|
let req = new $OpenApi.OpenApiRequest({
|
|
10658
12707
|
query: OpenApiUtil.query(query),
|
|
10659
12708
|
});
|
|
@@ -10679,9 +12728,18 @@ export default class Client extends OpenApi {
|
|
|
10679
12728
|
async listBandwidthackagesWithOptions(request: ListBandwidthackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthackagesResponse> {
|
|
10680
12729
|
Util.validateModel(request);
|
|
10681
12730
|
let query = { };
|
|
10682
|
-
|
|
10683
|
-
|
|
10684
|
-
|
|
12731
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12732
|
+
query["PageNumber"] = request.pageNumber;
|
|
12733
|
+
}
|
|
12734
|
+
|
|
12735
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12736
|
+
query["PageSize"] = request.pageSize;
|
|
12737
|
+
}
|
|
12738
|
+
|
|
12739
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12740
|
+
query["RegionId"] = request.regionId;
|
|
12741
|
+
}
|
|
12742
|
+
|
|
10685
12743
|
let req = new $OpenApi.OpenApiRequest({
|
|
10686
12744
|
query: OpenApiUtil.query(query),
|
|
10687
12745
|
});
|
|
@@ -10707,11 +12765,26 @@ export default class Client extends OpenApi {
|
|
|
10707
12765
|
async listBasicAcceleratorsWithOptions(request: ListBasicAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAcceleratorsResponse> {
|
|
10708
12766
|
Util.validateModel(request);
|
|
10709
12767
|
let query = { };
|
|
10710
|
-
|
|
10711
|
-
|
|
10712
|
-
|
|
10713
|
-
|
|
10714
|
-
|
|
12768
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12769
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12770
|
+
}
|
|
12771
|
+
|
|
12772
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12773
|
+
query["PageNumber"] = request.pageNumber;
|
|
12774
|
+
}
|
|
12775
|
+
|
|
12776
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12777
|
+
query["PageSize"] = request.pageSize;
|
|
12778
|
+
}
|
|
12779
|
+
|
|
12780
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12781
|
+
query["RegionId"] = request.regionId;
|
|
12782
|
+
}
|
|
12783
|
+
|
|
12784
|
+
if (!Util.isUnset(request.state)) {
|
|
12785
|
+
query["State"] = request.state;
|
|
12786
|
+
}
|
|
12787
|
+
|
|
10715
12788
|
let req = new $OpenApi.OpenApiRequest({
|
|
10716
12789
|
query: OpenApiUtil.query(query),
|
|
10717
12790
|
});
|
|
@@ -10737,7 +12810,10 @@ export default class Client extends OpenApi {
|
|
|
10737
12810
|
async listBusiRegionsWithOptions(request: ListBusiRegionsRequest, runtime: $Util.RuntimeOptions): Promise<ListBusiRegionsResponse> {
|
|
10738
12811
|
Util.validateModel(request);
|
|
10739
12812
|
let query = { };
|
|
10740
|
-
|
|
12813
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12814
|
+
query["RegionId"] = request.regionId;
|
|
12815
|
+
}
|
|
12816
|
+
|
|
10741
12817
|
let req = new $OpenApi.OpenApiRequest({
|
|
10742
12818
|
query: OpenApiUtil.query(query),
|
|
10743
12819
|
});
|
|
@@ -10763,14 +12839,38 @@ export default class Client extends OpenApi {
|
|
|
10763
12839
|
async listEndpointGroupsWithOptions(request: ListEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupsResponse> {
|
|
10764
12840
|
Util.validateModel(request);
|
|
10765
12841
|
let query = { };
|
|
10766
|
-
|
|
10767
|
-
|
|
10768
|
-
|
|
10769
|
-
|
|
10770
|
-
|
|
10771
|
-
|
|
10772
|
-
|
|
10773
|
-
|
|
12842
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12843
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12844
|
+
}
|
|
12845
|
+
|
|
12846
|
+
if (!Util.isUnset(request.accessLogSwitch)) {
|
|
12847
|
+
query["AccessLogSwitch"] = request.accessLogSwitch;
|
|
12848
|
+
}
|
|
12849
|
+
|
|
12850
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
12851
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
12852
|
+
}
|
|
12853
|
+
|
|
12854
|
+
if (!Util.isUnset(request.endpointGroupType)) {
|
|
12855
|
+
query["EndpointGroupType"] = request.endpointGroupType;
|
|
12856
|
+
}
|
|
12857
|
+
|
|
12858
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12859
|
+
query["ListenerId"] = request.listenerId;
|
|
12860
|
+
}
|
|
12861
|
+
|
|
12862
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12863
|
+
query["PageNumber"] = request.pageNumber;
|
|
12864
|
+
}
|
|
12865
|
+
|
|
12866
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12867
|
+
query["PageSize"] = request.pageSize;
|
|
12868
|
+
}
|
|
12869
|
+
|
|
12870
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12871
|
+
query["RegionId"] = request.regionId;
|
|
12872
|
+
}
|
|
12873
|
+
|
|
10774
12874
|
let req = new $OpenApi.OpenApiRequest({
|
|
10775
12875
|
query: OpenApiUtil.query(query),
|
|
10776
12876
|
});
|
|
@@ -10796,13 +12896,34 @@ export default class Client extends OpenApi {
|
|
|
10796
12896
|
async listForwardingRulesWithOptions(request: ListForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<ListForwardingRulesResponse> {
|
|
10797
12897
|
Util.validateModel(request);
|
|
10798
12898
|
let query = { };
|
|
10799
|
-
|
|
10800
|
-
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10804
|
-
|
|
10805
|
-
|
|
12899
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12900
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12901
|
+
}
|
|
12902
|
+
|
|
12903
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12904
|
+
query["ClientToken"] = request.clientToken;
|
|
12905
|
+
}
|
|
12906
|
+
|
|
12907
|
+
if (!Util.isUnset(request.forwardingRuleId)) {
|
|
12908
|
+
query["ForwardingRuleId"] = request.forwardingRuleId;
|
|
12909
|
+
}
|
|
12910
|
+
|
|
12911
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12912
|
+
query["ListenerId"] = request.listenerId;
|
|
12913
|
+
}
|
|
12914
|
+
|
|
12915
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
12916
|
+
query["MaxResults"] = request.maxResults;
|
|
12917
|
+
}
|
|
12918
|
+
|
|
12919
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
12920
|
+
query["NextToken"] = request.nextToken;
|
|
12921
|
+
}
|
|
12922
|
+
|
|
12923
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12924
|
+
query["RegionId"] = request.regionId;
|
|
12925
|
+
}
|
|
12926
|
+
|
|
10806
12927
|
let req = new $OpenApi.OpenApiRequest({
|
|
10807
12928
|
query: OpenApiUtil.query(query),
|
|
10808
12929
|
});
|
|
@@ -10828,10 +12949,22 @@ export default class Client extends OpenApi {
|
|
|
10828
12949
|
async listIpSetsWithOptions(request: ListIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<ListIpSetsResponse> {
|
|
10829
12950
|
Util.validateModel(request);
|
|
10830
12951
|
let query = { };
|
|
10831
|
-
|
|
10832
|
-
|
|
10833
|
-
|
|
10834
|
-
|
|
12952
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12953
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12954
|
+
}
|
|
12955
|
+
|
|
12956
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12957
|
+
query["PageNumber"] = request.pageNumber;
|
|
12958
|
+
}
|
|
12959
|
+
|
|
12960
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12961
|
+
query["PageSize"] = request.pageSize;
|
|
12962
|
+
}
|
|
12963
|
+
|
|
12964
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12965
|
+
query["RegionId"] = request.regionId;
|
|
12966
|
+
}
|
|
12967
|
+
|
|
10835
12968
|
let req = new $OpenApi.OpenApiRequest({
|
|
10836
12969
|
query: OpenApiUtil.query(query),
|
|
10837
12970
|
});
|
|
@@ -10857,12 +12990,30 @@ export default class Client extends OpenApi {
|
|
|
10857
12990
|
async listListenerCertificatesWithOptions(request: ListListenerCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<ListListenerCertificatesResponse> {
|
|
10858
12991
|
Util.validateModel(request);
|
|
10859
12992
|
let query = { };
|
|
10860
|
-
|
|
10861
|
-
|
|
10862
|
-
|
|
10863
|
-
|
|
10864
|
-
|
|
10865
|
-
|
|
12993
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12994
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12995
|
+
}
|
|
12996
|
+
|
|
12997
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12998
|
+
query["ListenerId"] = request.listenerId;
|
|
12999
|
+
}
|
|
13000
|
+
|
|
13001
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
13002
|
+
query["MaxResults"] = request.maxResults;
|
|
13003
|
+
}
|
|
13004
|
+
|
|
13005
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
13006
|
+
query["NextToken"] = request.nextToken;
|
|
13007
|
+
}
|
|
13008
|
+
|
|
13009
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13010
|
+
query["RegionId"] = request.regionId;
|
|
13011
|
+
}
|
|
13012
|
+
|
|
13013
|
+
if (!Util.isUnset(request.role)) {
|
|
13014
|
+
query["Role"] = request.role;
|
|
13015
|
+
}
|
|
13016
|
+
|
|
10866
13017
|
let req = new $OpenApi.OpenApiRequest({
|
|
10867
13018
|
query: OpenApiUtil.query(query),
|
|
10868
13019
|
});
|
|
@@ -10888,10 +13039,22 @@ export default class Client extends OpenApi {
|
|
|
10888
13039
|
async listListenersWithOptions(request: ListListenersRequest, runtime: $Util.RuntimeOptions): Promise<ListListenersResponse> {
|
|
10889
13040
|
Util.validateModel(request);
|
|
10890
13041
|
let query = { };
|
|
10891
|
-
|
|
10892
|
-
|
|
10893
|
-
|
|
10894
|
-
|
|
13042
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13043
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13044
|
+
}
|
|
13045
|
+
|
|
13046
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
13047
|
+
query["PageNumber"] = request.pageNumber;
|
|
13048
|
+
}
|
|
13049
|
+
|
|
13050
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
13051
|
+
query["PageSize"] = request.pageSize;
|
|
13052
|
+
}
|
|
13053
|
+
|
|
13054
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13055
|
+
query["RegionId"] = request.regionId;
|
|
13056
|
+
}
|
|
13057
|
+
|
|
10895
13058
|
let req = new $OpenApi.OpenApiRequest({
|
|
10896
13059
|
query: OpenApiUtil.query(query),
|
|
10897
13060
|
});
|
|
@@ -10917,10 +13080,22 @@ export default class Client extends OpenApi {
|
|
|
10917
13080
|
async listSpareIpsWithOptions(request: ListSpareIpsRequest, runtime: $Util.RuntimeOptions): Promise<ListSpareIpsResponse> {
|
|
10918
13081
|
Util.validateModel(request);
|
|
10919
13082
|
let query = { };
|
|
10920
|
-
|
|
10921
|
-
|
|
10922
|
-
|
|
10923
|
-
|
|
13083
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13084
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13085
|
+
}
|
|
13086
|
+
|
|
13087
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13088
|
+
query["ClientToken"] = request.clientToken;
|
|
13089
|
+
}
|
|
13090
|
+
|
|
13091
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
13092
|
+
query["DryRun"] = request.dryRun;
|
|
13093
|
+
}
|
|
13094
|
+
|
|
13095
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13096
|
+
query["RegionId"] = request.regionId;
|
|
13097
|
+
}
|
|
13098
|
+
|
|
10924
13099
|
let req = new $OpenApi.OpenApiRequest({
|
|
10925
13100
|
query: OpenApiUtil.query(query),
|
|
10926
13101
|
});
|
|
@@ -10946,9 +13121,18 @@ export default class Client extends OpenApi {
|
|
|
10946
13121
|
async listSystemSecurityPoliciesWithOptions(request: ListSystemSecurityPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<ListSystemSecurityPoliciesResponse> {
|
|
10947
13122
|
Util.validateModel(request);
|
|
10948
13123
|
let query = { };
|
|
10949
|
-
|
|
10950
|
-
|
|
10951
|
-
|
|
13124
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
13125
|
+
query["PageNumber"] = request.pageNumber;
|
|
13126
|
+
}
|
|
13127
|
+
|
|
13128
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
13129
|
+
query["PageSize"] = request.pageSize;
|
|
13130
|
+
}
|
|
13131
|
+
|
|
13132
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13133
|
+
query["RegionId"] = request.regionId;
|
|
13134
|
+
}
|
|
13135
|
+
|
|
10952
13136
|
let req = new $OpenApi.OpenApiRequest({
|
|
10953
13137
|
query: OpenApiUtil.query(query),
|
|
10954
13138
|
});
|
|
@@ -10974,11 +13158,26 @@ export default class Client extends OpenApi {
|
|
|
10974
13158
|
async removeEntriesFromAclWithOptions(request: RemoveEntriesFromAclRequest, runtime: $Util.RuntimeOptions): Promise<RemoveEntriesFromAclResponse> {
|
|
10975
13159
|
Util.validateModel(request);
|
|
10976
13160
|
let query = { };
|
|
10977
|
-
|
|
10978
|
-
|
|
10979
|
-
|
|
10980
|
-
|
|
10981
|
-
|
|
13161
|
+
if (!Util.isUnset(request.aclEntries)) {
|
|
13162
|
+
query["AclEntries"] = request.aclEntries;
|
|
13163
|
+
}
|
|
13164
|
+
|
|
13165
|
+
if (!Util.isUnset(request.aclId)) {
|
|
13166
|
+
query["AclId"] = request.aclId;
|
|
13167
|
+
}
|
|
13168
|
+
|
|
13169
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13170
|
+
query["ClientToken"] = request.clientToken;
|
|
13171
|
+
}
|
|
13172
|
+
|
|
13173
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
13174
|
+
query["DryRun"] = request.dryRun;
|
|
13175
|
+
}
|
|
13176
|
+
|
|
13177
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13178
|
+
query["RegionId"] = request.regionId;
|
|
13179
|
+
}
|
|
13180
|
+
|
|
10982
13181
|
let req = new $OpenApi.OpenApiRequest({
|
|
10983
13182
|
query: OpenApiUtil.query(query),
|
|
10984
13183
|
});
|
|
@@ -11004,9 +13203,18 @@ export default class Client extends OpenApi {
|
|
|
11004
13203
|
async replaceBandwidthPackageWithOptions(request: ReplaceBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<ReplaceBandwidthPackageResponse> {
|
|
11005
13204
|
Util.validateModel(request);
|
|
11006
13205
|
let query = { };
|
|
11007
|
-
|
|
11008
|
-
|
|
11009
|
-
|
|
13206
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
13207
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
13208
|
+
}
|
|
13209
|
+
|
|
13210
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13211
|
+
query["RegionId"] = request.regionId;
|
|
13212
|
+
}
|
|
13213
|
+
|
|
13214
|
+
if (!Util.isUnset(request.targetBandwidthPackageId)) {
|
|
13215
|
+
query["TargetBandwidthPackageId"] = request.targetBandwidthPackageId;
|
|
13216
|
+
}
|
|
13217
|
+
|
|
11010
13218
|
let req = new $OpenApi.OpenApiRequest({
|
|
11011
13219
|
query: OpenApiUtil.query(query),
|
|
11012
13220
|
});
|
|
@@ -11032,14 +13240,38 @@ export default class Client extends OpenApi {
|
|
|
11032
13240
|
async updateAcceleratorWithOptions(request: UpdateAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorResponse> {
|
|
11033
13241
|
Util.validateModel(request);
|
|
11034
13242
|
let query = { };
|
|
11035
|
-
|
|
11036
|
-
|
|
11037
|
-
|
|
11038
|
-
|
|
11039
|
-
|
|
11040
|
-
|
|
11041
|
-
|
|
11042
|
-
|
|
13243
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13244
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13245
|
+
}
|
|
13246
|
+
|
|
13247
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
13248
|
+
query["AutoPay"] = request.autoPay;
|
|
13249
|
+
}
|
|
13250
|
+
|
|
13251
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
13252
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
13253
|
+
}
|
|
13254
|
+
|
|
13255
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13256
|
+
query["ClientToken"] = request.clientToken;
|
|
13257
|
+
}
|
|
13258
|
+
|
|
13259
|
+
if (!Util.isUnset(request.description)) {
|
|
13260
|
+
query["Description"] = request.description;
|
|
13261
|
+
}
|
|
13262
|
+
|
|
13263
|
+
if (!Util.isUnset(request.name)) {
|
|
13264
|
+
query["Name"] = request.name;
|
|
13265
|
+
}
|
|
13266
|
+
|
|
13267
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13268
|
+
query["RegionId"] = request.regionId;
|
|
13269
|
+
}
|
|
13270
|
+
|
|
13271
|
+
if (!Util.isUnset(request.spec)) {
|
|
13272
|
+
query["Spec"] = request.spec;
|
|
13273
|
+
}
|
|
13274
|
+
|
|
11043
13275
|
let req = new $OpenApi.OpenApiRequest({
|
|
11044
13276
|
query: OpenApiUtil.query(query),
|
|
11045
13277
|
});
|
|
@@ -11065,13 +13297,34 @@ export default class Client extends OpenApi {
|
|
|
11065
13297
|
async updateAcceleratorAutoRenewAttributeWithOptions(request: UpdateAcceleratorAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorAutoRenewAttributeResponse> {
|
|
11066
13298
|
Util.validateModel(request);
|
|
11067
13299
|
let query = { };
|
|
11068
|
-
|
|
11069
|
-
|
|
11070
|
-
|
|
11071
|
-
|
|
11072
|
-
|
|
11073
|
-
|
|
11074
|
-
|
|
13300
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13301
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13302
|
+
}
|
|
13303
|
+
|
|
13304
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
13305
|
+
query["AutoRenew"] = request.autoRenew;
|
|
13306
|
+
}
|
|
13307
|
+
|
|
13308
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
13309
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
13310
|
+
}
|
|
13311
|
+
|
|
13312
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13313
|
+
query["ClientToken"] = request.clientToken;
|
|
13314
|
+
}
|
|
13315
|
+
|
|
13316
|
+
if (!Util.isUnset(request.name)) {
|
|
13317
|
+
query["Name"] = request.name;
|
|
13318
|
+
}
|
|
13319
|
+
|
|
13320
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13321
|
+
query["RegionId"] = request.regionId;
|
|
13322
|
+
}
|
|
13323
|
+
|
|
13324
|
+
if (!Util.isUnset(request.renewalStatus)) {
|
|
13325
|
+
query["RenewalStatus"] = request.renewalStatus;
|
|
13326
|
+
}
|
|
13327
|
+
|
|
11075
13328
|
let req = new $OpenApi.OpenApiRequest({
|
|
11076
13329
|
query: OpenApiUtil.query(query),
|
|
11077
13330
|
});
|
|
@@ -11097,8 +13350,14 @@ export default class Client extends OpenApi {
|
|
|
11097
13350
|
async updateAcceleratorConfirmWithOptions(request: UpdateAcceleratorConfirmRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorConfirmResponse> {
|
|
11098
13351
|
Util.validateModel(request);
|
|
11099
13352
|
let query = { };
|
|
11100
|
-
|
|
11101
|
-
|
|
13353
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13354
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13355
|
+
}
|
|
13356
|
+
|
|
13357
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13358
|
+
query["RegionId"] = request.regionId;
|
|
13359
|
+
}
|
|
13360
|
+
|
|
11102
13361
|
let req = new $OpenApi.OpenApiRequest({
|
|
11103
13362
|
query: OpenApiUtil.query(query),
|
|
11104
13363
|
});
|
|
@@ -11124,11 +13383,26 @@ export default class Client extends OpenApi {
|
|
|
11124
13383
|
async updateAclAttributeWithOptions(request: UpdateAclAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAclAttributeResponse> {
|
|
11125
13384
|
Util.validateModel(request);
|
|
11126
13385
|
let query = { };
|
|
11127
|
-
|
|
11128
|
-
|
|
11129
|
-
|
|
11130
|
-
|
|
11131
|
-
|
|
13386
|
+
if (!Util.isUnset(request.aclId)) {
|
|
13387
|
+
query["AclId"] = request.aclId;
|
|
13388
|
+
}
|
|
13389
|
+
|
|
13390
|
+
if (!Util.isUnset(request.aclName)) {
|
|
13391
|
+
query["AclName"] = request.aclName;
|
|
13392
|
+
}
|
|
13393
|
+
|
|
13394
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13395
|
+
query["ClientToken"] = request.clientToken;
|
|
13396
|
+
}
|
|
13397
|
+
|
|
13398
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
13399
|
+
query["DryRun"] = request.dryRun;
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13402
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13403
|
+
query["RegionId"] = request.regionId;
|
|
13404
|
+
}
|
|
13405
|
+
|
|
11132
13406
|
let req = new $OpenApi.OpenApiRequest({
|
|
11133
13407
|
query: OpenApiUtil.query(query),
|
|
11134
13408
|
});
|
|
@@ -11151,17 +13425,110 @@ export default class Client extends OpenApi {
|
|
|
11151
13425
|
return await this.updateAclAttributeWithOptions(request, runtime);
|
|
11152
13426
|
}
|
|
11153
13427
|
|
|
13428
|
+
async updateApplicationMonitorWithOptions(request: UpdateApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationMonitorResponse> {
|
|
13429
|
+
Util.validateModel(request);
|
|
13430
|
+
let query = { };
|
|
13431
|
+
if (!Util.isUnset(request.address)) {
|
|
13432
|
+
query["Address"] = request.address;
|
|
13433
|
+
}
|
|
13434
|
+
|
|
13435
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13436
|
+
query["ClientToken"] = request.clientToken;
|
|
13437
|
+
}
|
|
13438
|
+
|
|
13439
|
+
if (!Util.isUnset(request.detectEnable)) {
|
|
13440
|
+
query["DetectEnable"] = request.detectEnable;
|
|
13441
|
+
}
|
|
13442
|
+
|
|
13443
|
+
if (!Util.isUnset(request.detectThreshold)) {
|
|
13444
|
+
query["DetectThreshold"] = request.detectThreshold;
|
|
13445
|
+
}
|
|
13446
|
+
|
|
13447
|
+
if (!Util.isUnset(request.detectTimes)) {
|
|
13448
|
+
query["DetectTimes"] = request.detectTimes;
|
|
13449
|
+
}
|
|
13450
|
+
|
|
13451
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13452
|
+
query["ListenerId"] = request.listenerId;
|
|
13453
|
+
}
|
|
13454
|
+
|
|
13455
|
+
if (!Util.isUnset(request.optionsJson)) {
|
|
13456
|
+
query["OptionsJson"] = request.optionsJson;
|
|
13457
|
+
}
|
|
13458
|
+
|
|
13459
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13460
|
+
query["RegionId"] = request.regionId;
|
|
13461
|
+
}
|
|
13462
|
+
|
|
13463
|
+
if (!Util.isUnset(request.silenceTime)) {
|
|
13464
|
+
query["SilenceTime"] = request.silenceTime;
|
|
13465
|
+
}
|
|
13466
|
+
|
|
13467
|
+
if (!Util.isUnset(request.taskId)) {
|
|
13468
|
+
query["TaskId"] = request.taskId;
|
|
13469
|
+
}
|
|
13470
|
+
|
|
13471
|
+
if (!Util.isUnset(request.taskName)) {
|
|
13472
|
+
query["TaskName"] = request.taskName;
|
|
13473
|
+
}
|
|
13474
|
+
|
|
13475
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
13476
|
+
query: OpenApiUtil.query(query),
|
|
13477
|
+
});
|
|
13478
|
+
let params = new $OpenApi.Params({
|
|
13479
|
+
action: "UpdateApplicationMonitor",
|
|
13480
|
+
version: "2019-11-20",
|
|
13481
|
+
protocol: "HTTPS",
|
|
13482
|
+
pathname: "/",
|
|
13483
|
+
method: "POST",
|
|
13484
|
+
authType: "AK",
|
|
13485
|
+
style: "RPC",
|
|
13486
|
+
reqBodyType: "formData",
|
|
13487
|
+
bodyType: "json",
|
|
13488
|
+
});
|
|
13489
|
+
return $tea.cast<UpdateApplicationMonitorResponse>(await this.callApi(params, req, runtime), new UpdateApplicationMonitorResponse({}));
|
|
13490
|
+
}
|
|
13491
|
+
|
|
13492
|
+
async updateApplicationMonitor(request: UpdateApplicationMonitorRequest): Promise<UpdateApplicationMonitorResponse> {
|
|
13493
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
13494
|
+
return await this.updateApplicationMonitorWithOptions(request, runtime);
|
|
13495
|
+
}
|
|
13496
|
+
|
|
11154
13497
|
async updateBandwidthPackageWithOptions(request: UpdateBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBandwidthPackageResponse> {
|
|
11155
13498
|
Util.validateModel(request);
|
|
11156
13499
|
let query = { };
|
|
11157
|
-
|
|
11158
|
-
|
|
11159
|
-
|
|
11160
|
-
|
|
11161
|
-
|
|
11162
|
-
|
|
11163
|
-
|
|
11164
|
-
|
|
13500
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
13501
|
+
query["AutoPay"] = request.autoPay;
|
|
13502
|
+
}
|
|
13503
|
+
|
|
13504
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
13505
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
13506
|
+
}
|
|
13507
|
+
|
|
13508
|
+
if (!Util.isUnset(request.bandwidth)) {
|
|
13509
|
+
query["Bandwidth"] = request.bandwidth;
|
|
13510
|
+
}
|
|
13511
|
+
|
|
13512
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
13513
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
13514
|
+
}
|
|
13515
|
+
|
|
13516
|
+
if (!Util.isUnset(request.bandwidthType)) {
|
|
13517
|
+
query["BandwidthType"] = request.bandwidthType;
|
|
13518
|
+
}
|
|
13519
|
+
|
|
13520
|
+
if (!Util.isUnset(request.description)) {
|
|
13521
|
+
query["Description"] = request.description;
|
|
13522
|
+
}
|
|
13523
|
+
|
|
13524
|
+
if (!Util.isUnset(request.name)) {
|
|
13525
|
+
query["Name"] = request.name;
|
|
13526
|
+
}
|
|
13527
|
+
|
|
13528
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13529
|
+
query["RegionId"] = request.regionId;
|
|
13530
|
+
}
|
|
13531
|
+
|
|
11165
13532
|
let req = new $OpenApi.OpenApiRequest({
|
|
11166
13533
|
query: OpenApiUtil.query(query),
|
|
11167
13534
|
});
|
|
@@ -11187,11 +13554,26 @@ export default class Client extends OpenApi {
|
|
|
11187
13554
|
async updateBasicAcceleratorWithOptions(request: UpdateBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicAcceleratorResponse> {
|
|
11188
13555
|
Util.validateModel(request);
|
|
11189
13556
|
let query = { };
|
|
11190
|
-
|
|
11191
|
-
|
|
11192
|
-
|
|
11193
|
-
|
|
11194
|
-
|
|
13557
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13558
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13559
|
+
}
|
|
13560
|
+
|
|
13561
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13562
|
+
query["ClientToken"] = request.clientToken;
|
|
13563
|
+
}
|
|
13564
|
+
|
|
13565
|
+
if (!Util.isUnset(request.description)) {
|
|
13566
|
+
query["Description"] = request.description;
|
|
13567
|
+
}
|
|
13568
|
+
|
|
13569
|
+
if (!Util.isUnset(request.name)) {
|
|
13570
|
+
query["Name"] = request.name;
|
|
13571
|
+
}
|
|
13572
|
+
|
|
13573
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13574
|
+
query["RegionId"] = request.regionId;
|
|
13575
|
+
}
|
|
13576
|
+
|
|
11195
13577
|
let req = new $OpenApi.OpenApiRequest({
|
|
11196
13578
|
query: OpenApiUtil.query(query),
|
|
11197
13579
|
});
|
|
@@ -11217,13 +13599,34 @@ export default class Client extends OpenApi {
|
|
|
11217
13599
|
async updateBasicEndpointGroupWithOptions(request: UpdateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointGroupResponse> {
|
|
11218
13600
|
Util.validateModel(request);
|
|
11219
13601
|
let query = { };
|
|
11220
|
-
|
|
11221
|
-
|
|
11222
|
-
|
|
11223
|
-
|
|
11224
|
-
|
|
11225
|
-
|
|
11226
|
-
|
|
13602
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13603
|
+
query["ClientToken"] = request.clientToken;
|
|
13604
|
+
}
|
|
13605
|
+
|
|
13606
|
+
if (!Util.isUnset(request.description)) {
|
|
13607
|
+
query["Description"] = request.description;
|
|
13608
|
+
}
|
|
13609
|
+
|
|
13610
|
+
if (!Util.isUnset(request.endpointAddress)) {
|
|
13611
|
+
query["EndpointAddress"] = request.endpointAddress;
|
|
13612
|
+
}
|
|
13613
|
+
|
|
13614
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
13615
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
13616
|
+
}
|
|
13617
|
+
|
|
13618
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
13619
|
+
query["EndpointType"] = request.endpointType;
|
|
13620
|
+
}
|
|
13621
|
+
|
|
13622
|
+
if (!Util.isUnset(request.name)) {
|
|
13623
|
+
query["Name"] = request.name;
|
|
13624
|
+
}
|
|
13625
|
+
|
|
13626
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13627
|
+
query["RegionId"] = request.regionId;
|
|
13628
|
+
}
|
|
13629
|
+
|
|
11227
13630
|
let req = new $OpenApi.OpenApiRequest({
|
|
11228
13631
|
query: OpenApiUtil.query(query),
|
|
11229
13632
|
});
|
|
@@ -11249,22 +13652,70 @@ export default class Client extends OpenApi {
|
|
|
11249
13652
|
async updateEndpointGroupWithOptions(request: UpdateEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateEndpointGroupResponse> {
|
|
11250
13653
|
Util.validateModel(request);
|
|
11251
13654
|
let query = { };
|
|
11252
|
-
|
|
11253
|
-
|
|
11254
|
-
|
|
11255
|
-
|
|
11256
|
-
|
|
11257
|
-
|
|
11258
|
-
|
|
11259
|
-
|
|
11260
|
-
|
|
11261
|
-
|
|
11262
|
-
|
|
11263
|
-
|
|
11264
|
-
|
|
11265
|
-
|
|
11266
|
-
|
|
11267
|
-
|
|
13655
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13656
|
+
query["ClientToken"] = request.clientToken;
|
|
13657
|
+
}
|
|
13658
|
+
|
|
13659
|
+
if (!Util.isUnset(request.description)) {
|
|
13660
|
+
query["Description"] = request.description;
|
|
13661
|
+
}
|
|
13662
|
+
|
|
13663
|
+
if (!Util.isUnset(request.endpointConfigurations)) {
|
|
13664
|
+
query["EndpointConfigurations"] = request.endpointConfigurations;
|
|
13665
|
+
}
|
|
13666
|
+
|
|
13667
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
13668
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
13669
|
+
}
|
|
13670
|
+
|
|
13671
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
13672
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
13673
|
+
}
|
|
13674
|
+
|
|
13675
|
+
if (!Util.isUnset(request.endpointRequestProtocol)) {
|
|
13676
|
+
query["EndpointRequestProtocol"] = request.endpointRequestProtocol;
|
|
13677
|
+
}
|
|
13678
|
+
|
|
13679
|
+
if (!Util.isUnset(request.healthCheckEnabled)) {
|
|
13680
|
+
query["HealthCheckEnabled"] = request.healthCheckEnabled;
|
|
13681
|
+
}
|
|
13682
|
+
|
|
13683
|
+
if (!Util.isUnset(request.healthCheckIntervalSeconds)) {
|
|
13684
|
+
query["HealthCheckIntervalSeconds"] = request.healthCheckIntervalSeconds;
|
|
13685
|
+
}
|
|
13686
|
+
|
|
13687
|
+
if (!Util.isUnset(request.healthCheckPath)) {
|
|
13688
|
+
query["HealthCheckPath"] = request.healthCheckPath;
|
|
13689
|
+
}
|
|
13690
|
+
|
|
13691
|
+
if (!Util.isUnset(request.healthCheckPort)) {
|
|
13692
|
+
query["HealthCheckPort"] = request.healthCheckPort;
|
|
13693
|
+
}
|
|
13694
|
+
|
|
13695
|
+
if (!Util.isUnset(request.healthCheckProtocol)) {
|
|
13696
|
+
query["HealthCheckProtocol"] = request.healthCheckProtocol;
|
|
13697
|
+
}
|
|
13698
|
+
|
|
13699
|
+
if (!Util.isUnset(request.name)) {
|
|
13700
|
+
query["Name"] = request.name;
|
|
13701
|
+
}
|
|
13702
|
+
|
|
13703
|
+
if (!Util.isUnset(request.portOverrides)) {
|
|
13704
|
+
query["PortOverrides"] = request.portOverrides;
|
|
13705
|
+
}
|
|
13706
|
+
|
|
13707
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13708
|
+
query["RegionId"] = request.regionId;
|
|
13709
|
+
}
|
|
13710
|
+
|
|
13711
|
+
if (!Util.isUnset(request.thresholdCount)) {
|
|
13712
|
+
query["ThresholdCount"] = request.thresholdCount;
|
|
13713
|
+
}
|
|
13714
|
+
|
|
13715
|
+
if (!Util.isUnset(request.trafficPercentage)) {
|
|
13716
|
+
query["TrafficPercentage"] = request.trafficPercentage;
|
|
13717
|
+
}
|
|
13718
|
+
|
|
11268
13719
|
let req = new $OpenApi.OpenApiRequest({
|
|
11269
13720
|
query: OpenApiUtil.query(query),
|
|
11270
13721
|
});
|
|
@@ -11290,11 +13741,26 @@ export default class Client extends OpenApi {
|
|
|
11290
13741
|
async updateEndpointGroupAttributeWithOptions(request: UpdateEndpointGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateEndpointGroupAttributeResponse> {
|
|
11291
13742
|
Util.validateModel(request);
|
|
11292
13743
|
let query = { };
|
|
11293
|
-
|
|
11294
|
-
|
|
11295
|
-
|
|
11296
|
-
|
|
11297
|
-
|
|
13744
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13745
|
+
query["ClientToken"] = request.clientToken;
|
|
13746
|
+
}
|
|
13747
|
+
|
|
13748
|
+
if (!Util.isUnset(request.description)) {
|
|
13749
|
+
query["Description"] = request.description;
|
|
13750
|
+
}
|
|
13751
|
+
|
|
13752
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
13753
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
13754
|
+
}
|
|
13755
|
+
|
|
13756
|
+
if (!Util.isUnset(request.name)) {
|
|
13757
|
+
query["Name"] = request.name;
|
|
13758
|
+
}
|
|
13759
|
+
|
|
13760
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13761
|
+
query["RegionId"] = request.regionId;
|
|
13762
|
+
}
|
|
13763
|
+
|
|
11298
13764
|
let req = new $OpenApi.OpenApiRequest({
|
|
11299
13765
|
query: OpenApiUtil.query(query),
|
|
11300
13766
|
});
|
|
@@ -11320,11 +13786,26 @@ export default class Client extends OpenApi {
|
|
|
11320
13786
|
async updateEndpointGroupsWithOptions(request: UpdateEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<UpdateEndpointGroupsResponse> {
|
|
11321
13787
|
Util.validateModel(request);
|
|
11322
13788
|
let query = { };
|
|
11323
|
-
|
|
11324
|
-
|
|
11325
|
-
|
|
11326
|
-
|
|
11327
|
-
|
|
13789
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13790
|
+
query["ClientToken"] = request.clientToken;
|
|
13791
|
+
}
|
|
13792
|
+
|
|
13793
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
13794
|
+
query["DryRun"] = request.dryRun;
|
|
13795
|
+
}
|
|
13796
|
+
|
|
13797
|
+
if (!Util.isUnset(request.endpointGroupConfigurations)) {
|
|
13798
|
+
query["EndpointGroupConfigurations"] = request.endpointGroupConfigurations;
|
|
13799
|
+
}
|
|
13800
|
+
|
|
13801
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13802
|
+
query["ListenerId"] = request.listenerId;
|
|
13803
|
+
}
|
|
13804
|
+
|
|
13805
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13806
|
+
query["RegionId"] = request.regionId;
|
|
13807
|
+
}
|
|
13808
|
+
|
|
11328
13809
|
let req = new $OpenApi.OpenApiRequest({
|
|
11329
13810
|
query: OpenApiUtil.query(query),
|
|
11330
13811
|
});
|
|
@@ -11350,11 +13831,26 @@ export default class Client extends OpenApi {
|
|
|
11350
13831
|
async updateForwardingRulesWithOptions(request: UpdateForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<UpdateForwardingRulesResponse> {
|
|
11351
13832
|
Util.validateModel(request);
|
|
11352
13833
|
let query = { };
|
|
11353
|
-
|
|
11354
|
-
|
|
11355
|
-
|
|
11356
|
-
|
|
11357
|
-
|
|
13834
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13835
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13836
|
+
}
|
|
13837
|
+
|
|
13838
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13839
|
+
query["ClientToken"] = request.clientToken;
|
|
13840
|
+
}
|
|
13841
|
+
|
|
13842
|
+
if (!Util.isUnset(request.forwardingRules)) {
|
|
13843
|
+
query["ForwardingRules"] = request.forwardingRules;
|
|
13844
|
+
}
|
|
13845
|
+
|
|
13846
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13847
|
+
query["ListenerId"] = request.listenerId;
|
|
13848
|
+
}
|
|
13849
|
+
|
|
13850
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13851
|
+
query["RegionId"] = request.regionId;
|
|
13852
|
+
}
|
|
13853
|
+
|
|
11358
13854
|
let req = new $OpenApi.OpenApiRequest({
|
|
11359
13855
|
query: OpenApiUtil.query(query),
|
|
11360
13856
|
});
|
|
@@ -11380,10 +13876,22 @@ export default class Client extends OpenApi {
|
|
|
11380
13876
|
async updateIpSetWithOptions(request: UpdateIpSetRequest, runtime: $Util.RuntimeOptions): Promise<UpdateIpSetResponse> {
|
|
11381
13877
|
Util.validateModel(request);
|
|
11382
13878
|
let query = { };
|
|
11383
|
-
|
|
11384
|
-
|
|
11385
|
-
|
|
11386
|
-
|
|
13879
|
+
if (!Util.isUnset(request.bandwidth)) {
|
|
13880
|
+
query["Bandwidth"] = request.bandwidth;
|
|
13881
|
+
}
|
|
13882
|
+
|
|
13883
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13884
|
+
query["ClientToken"] = request.clientToken;
|
|
13885
|
+
}
|
|
13886
|
+
|
|
13887
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
13888
|
+
query["IpSetId"] = request.ipSetId;
|
|
13889
|
+
}
|
|
13890
|
+
|
|
13891
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13892
|
+
query["RegionId"] = request.regionId;
|
|
13893
|
+
}
|
|
13894
|
+
|
|
11387
13895
|
let req = new $OpenApi.OpenApiRequest({
|
|
11388
13896
|
query: OpenApiUtil.query(query),
|
|
11389
13897
|
});
|
|
@@ -11409,8 +13917,14 @@ export default class Client extends OpenApi {
|
|
|
11409
13917
|
async updateIpSetsWithOptions(request: UpdateIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<UpdateIpSetsResponse> {
|
|
11410
13918
|
Util.validateModel(request);
|
|
11411
13919
|
let query = { };
|
|
11412
|
-
|
|
11413
|
-
|
|
13920
|
+
if (!Util.isUnset(request.ipSets)) {
|
|
13921
|
+
query["IpSets"] = request.ipSets;
|
|
13922
|
+
}
|
|
13923
|
+
|
|
13924
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13925
|
+
query["RegionId"] = request.regionId;
|
|
13926
|
+
}
|
|
13927
|
+
|
|
11414
13928
|
let req = new $OpenApi.OpenApiRequest({
|
|
11415
13929
|
query: OpenApiUtil.query(query),
|
|
11416
13930
|
});
|
|
@@ -11436,19 +13950,58 @@ export default class Client extends OpenApi {
|
|
|
11436
13950
|
async updateListenerWithOptions(request: UpdateListenerRequest, runtime: $Util.RuntimeOptions): Promise<UpdateListenerResponse> {
|
|
11437
13951
|
Util.validateModel(request);
|
|
11438
13952
|
let query = { };
|
|
11439
|
-
|
|
11440
|
-
|
|
11441
|
-
|
|
11442
|
-
|
|
11443
|
-
|
|
11444
|
-
|
|
11445
|
-
|
|
11446
|
-
|
|
11447
|
-
|
|
11448
|
-
|
|
11449
|
-
|
|
11450
|
-
|
|
11451
|
-
|
|
13953
|
+
if (!Util.isUnset(request.backendPorts)) {
|
|
13954
|
+
query["BackendPorts"] = request.backendPorts;
|
|
13955
|
+
}
|
|
13956
|
+
|
|
13957
|
+
if (!Util.isUnset(request.certificates)) {
|
|
13958
|
+
query["Certificates"] = request.certificates;
|
|
13959
|
+
}
|
|
13960
|
+
|
|
13961
|
+
if (!Util.isUnset(request.clientAffinity)) {
|
|
13962
|
+
query["ClientAffinity"] = request.clientAffinity;
|
|
13963
|
+
}
|
|
13964
|
+
|
|
13965
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13966
|
+
query["ClientToken"] = request.clientToken;
|
|
13967
|
+
}
|
|
13968
|
+
|
|
13969
|
+
if (!Util.isUnset(request.description)) {
|
|
13970
|
+
query["Description"] = request.description;
|
|
13971
|
+
}
|
|
13972
|
+
|
|
13973
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13974
|
+
query["ListenerId"] = request.listenerId;
|
|
13975
|
+
}
|
|
13976
|
+
|
|
13977
|
+
if (!Util.isUnset(request.name)) {
|
|
13978
|
+
query["Name"] = request.name;
|
|
13979
|
+
}
|
|
13980
|
+
|
|
13981
|
+
if (!Util.isUnset(request.portRanges)) {
|
|
13982
|
+
query["PortRanges"] = request.portRanges;
|
|
13983
|
+
}
|
|
13984
|
+
|
|
13985
|
+
if (!Util.isUnset(request.protocol)) {
|
|
13986
|
+
query["Protocol"] = request.protocol;
|
|
13987
|
+
}
|
|
13988
|
+
|
|
13989
|
+
if (!Util.isUnset(request.proxyProtocol)) {
|
|
13990
|
+
query["ProxyProtocol"] = request.proxyProtocol;
|
|
13991
|
+
}
|
|
13992
|
+
|
|
13993
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13994
|
+
query["RegionId"] = request.regionId;
|
|
13995
|
+
}
|
|
13996
|
+
|
|
13997
|
+
if (!Util.isUnset(request.securityPolicyId)) {
|
|
13998
|
+
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
13999
|
+
}
|
|
14000
|
+
|
|
14001
|
+
if (!Util.isUnset($tea.toMap(request.XForwardedForConfig))) {
|
|
14002
|
+
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
14003
|
+
}
|
|
14004
|
+
|
|
11452
14005
|
let req = new $OpenApi.OpenApiRequest({
|
|
11453
14006
|
query: OpenApiUtil.query(query),
|
|
11454
14007
|
});
|