@alicloud/ga20191120 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +471 -0
- package/dist/client.js +2242 -480
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2906 -519
package/src/client.ts
CHANGED
|
@@ -791,6 +791,90 @@ export class CreateAclResponse extends $tea.Model {
|
|
|
791
791
|
}
|
|
792
792
|
}
|
|
793
793
|
|
|
794
|
+
export class CreateApplicationMonitorRequest extends $tea.Model {
|
|
795
|
+
acceleratorId?: string;
|
|
796
|
+
address?: string;
|
|
797
|
+
clientToken?: string;
|
|
798
|
+
detectThreshold?: number;
|
|
799
|
+
listenerId?: string;
|
|
800
|
+
optionsJson?: string;
|
|
801
|
+
regionId?: string;
|
|
802
|
+
taskName?: string;
|
|
803
|
+
static names(): { [key: string]: string } {
|
|
804
|
+
return {
|
|
805
|
+
acceleratorId: 'AcceleratorId',
|
|
806
|
+
address: 'Address',
|
|
807
|
+
clientToken: 'ClientToken',
|
|
808
|
+
detectThreshold: 'DetectThreshold',
|
|
809
|
+
listenerId: 'ListenerId',
|
|
810
|
+
optionsJson: 'OptionsJson',
|
|
811
|
+
regionId: 'RegionId',
|
|
812
|
+
taskName: 'TaskName',
|
|
813
|
+
};
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
static types(): { [key: string]: any } {
|
|
817
|
+
return {
|
|
818
|
+
acceleratorId: 'string',
|
|
819
|
+
address: 'string',
|
|
820
|
+
clientToken: 'string',
|
|
821
|
+
detectThreshold: 'number',
|
|
822
|
+
listenerId: 'string',
|
|
823
|
+
optionsJson: 'string',
|
|
824
|
+
regionId: 'string',
|
|
825
|
+
taskName: 'string',
|
|
826
|
+
};
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
constructor(map?: { [key: string]: any }) {
|
|
830
|
+
super(map);
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
export class CreateApplicationMonitorResponseBody extends $tea.Model {
|
|
835
|
+
requestId?: string;
|
|
836
|
+
taskId?: string;
|
|
837
|
+
static names(): { [key: string]: string } {
|
|
838
|
+
return {
|
|
839
|
+
requestId: 'RequestId',
|
|
840
|
+
taskId: 'TaskId',
|
|
841
|
+
};
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
static types(): { [key: string]: any } {
|
|
845
|
+
return {
|
|
846
|
+
requestId: 'string',
|
|
847
|
+
taskId: 'string',
|
|
848
|
+
};
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
constructor(map?: { [key: string]: any }) {
|
|
852
|
+
super(map);
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
export class CreateApplicationMonitorResponse extends $tea.Model {
|
|
857
|
+
headers: { [key: string]: string };
|
|
858
|
+
body: CreateApplicationMonitorResponseBody;
|
|
859
|
+
static names(): { [key: string]: string } {
|
|
860
|
+
return {
|
|
861
|
+
headers: 'headers',
|
|
862
|
+
body: 'body',
|
|
863
|
+
};
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
static types(): { [key: string]: any } {
|
|
867
|
+
return {
|
|
868
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
869
|
+
body: CreateApplicationMonitorResponseBody,
|
|
870
|
+
};
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
constructor(map?: { [key: string]: any }) {
|
|
874
|
+
super(map);
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
|
|
794
878
|
export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
795
879
|
autoPay?: boolean;
|
|
796
880
|
autoUseCoupon?: string;
|
|
@@ -1787,6 +1871,72 @@ export class DeleteAclResponse extends $tea.Model {
|
|
|
1787
1871
|
}
|
|
1788
1872
|
}
|
|
1789
1873
|
|
|
1874
|
+
export class DeleteApplicationMonitorRequest extends $tea.Model {
|
|
1875
|
+
clientToken?: string;
|
|
1876
|
+
regionId?: string;
|
|
1877
|
+
taskId?: string;
|
|
1878
|
+
static names(): { [key: string]: string } {
|
|
1879
|
+
return {
|
|
1880
|
+
clientToken: 'ClientToken',
|
|
1881
|
+
regionId: 'RegionId',
|
|
1882
|
+
taskId: 'TaskId',
|
|
1883
|
+
};
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
static types(): { [key: string]: any } {
|
|
1887
|
+
return {
|
|
1888
|
+
clientToken: 'string',
|
|
1889
|
+
regionId: 'string',
|
|
1890
|
+
taskId: 'string',
|
|
1891
|
+
};
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
constructor(map?: { [key: string]: any }) {
|
|
1895
|
+
super(map);
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
export class DeleteApplicationMonitorResponseBody extends $tea.Model {
|
|
1900
|
+
requestId?: string;
|
|
1901
|
+
static names(): { [key: string]: string } {
|
|
1902
|
+
return {
|
|
1903
|
+
requestId: 'RequestId',
|
|
1904
|
+
};
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
static types(): { [key: string]: any } {
|
|
1908
|
+
return {
|
|
1909
|
+
requestId: 'string',
|
|
1910
|
+
};
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
constructor(map?: { [key: string]: any }) {
|
|
1914
|
+
super(map);
|
|
1915
|
+
}
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
export class DeleteApplicationMonitorResponse extends $tea.Model {
|
|
1919
|
+
headers: { [key: string]: string };
|
|
1920
|
+
body: DeleteApplicationMonitorResponseBody;
|
|
1921
|
+
static names(): { [key: string]: string } {
|
|
1922
|
+
return {
|
|
1923
|
+
headers: 'headers',
|
|
1924
|
+
body: 'body',
|
|
1925
|
+
};
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
static types(): { [key: string]: any } {
|
|
1929
|
+
return {
|
|
1930
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1931
|
+
body: DeleteApplicationMonitorResponseBody,
|
|
1932
|
+
};
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
constructor(map?: { [key: string]: any }) {
|
|
1936
|
+
super(map);
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1790
1940
|
export class DeleteBandwidthPackageRequest extends $tea.Model {
|
|
1791
1941
|
bandwidthPackageId?: string;
|
|
1792
1942
|
clientToken?: string;
|
|
@@ -2714,6 +2864,99 @@ export class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.Model {
|
|
|
2714
2864
|
}
|
|
2715
2865
|
}
|
|
2716
2866
|
|
|
2867
|
+
export class DescribeApplicationMonitorRequest extends $tea.Model {
|
|
2868
|
+
clientToken?: string;
|
|
2869
|
+
regionId?: string;
|
|
2870
|
+
taskId?: string;
|
|
2871
|
+
static names(): { [key: string]: string } {
|
|
2872
|
+
return {
|
|
2873
|
+
clientToken: 'ClientToken',
|
|
2874
|
+
regionId: 'RegionId',
|
|
2875
|
+
taskId: 'TaskId',
|
|
2876
|
+
};
|
|
2877
|
+
}
|
|
2878
|
+
|
|
2879
|
+
static types(): { [key: string]: any } {
|
|
2880
|
+
return {
|
|
2881
|
+
clientToken: 'string',
|
|
2882
|
+
regionId: 'string',
|
|
2883
|
+
taskId: 'string',
|
|
2884
|
+
};
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
constructor(map?: { [key: string]: any }) {
|
|
2888
|
+
super(map);
|
|
2889
|
+
}
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2892
|
+
export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
2893
|
+
acceleratorId?: string;
|
|
2894
|
+
address?: string;
|
|
2895
|
+
detectThreshold?: string;
|
|
2896
|
+
ispCityList?: DescribeApplicationMonitorResponseBodyIspCityList[];
|
|
2897
|
+
listenerId?: string;
|
|
2898
|
+
optionsJson?: string;
|
|
2899
|
+
regionId?: string;
|
|
2900
|
+
requestId?: string;
|
|
2901
|
+
taskId?: string;
|
|
2902
|
+
taskName?: string;
|
|
2903
|
+
static names(): { [key: string]: string } {
|
|
2904
|
+
return {
|
|
2905
|
+
acceleratorId: 'AcceleratorId',
|
|
2906
|
+
address: 'Address',
|
|
2907
|
+
detectThreshold: 'DetectThreshold',
|
|
2908
|
+
ispCityList: 'IspCityList',
|
|
2909
|
+
listenerId: 'ListenerId',
|
|
2910
|
+
optionsJson: 'OptionsJson',
|
|
2911
|
+
regionId: 'RegionId',
|
|
2912
|
+
requestId: 'RequestId',
|
|
2913
|
+
taskId: 'TaskId',
|
|
2914
|
+
taskName: 'TaskName',
|
|
2915
|
+
};
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
static types(): { [key: string]: any } {
|
|
2919
|
+
return {
|
|
2920
|
+
acceleratorId: 'string',
|
|
2921
|
+
address: 'string',
|
|
2922
|
+
detectThreshold: 'string',
|
|
2923
|
+
ispCityList: { 'type': 'array', 'itemType': DescribeApplicationMonitorResponseBodyIspCityList },
|
|
2924
|
+
listenerId: 'string',
|
|
2925
|
+
optionsJson: 'string',
|
|
2926
|
+
regionId: 'string',
|
|
2927
|
+
requestId: 'string',
|
|
2928
|
+
taskId: 'string',
|
|
2929
|
+
taskName: 'string',
|
|
2930
|
+
};
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2933
|
+
constructor(map?: { [key: string]: any }) {
|
|
2934
|
+
super(map);
|
|
2935
|
+
}
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
export class DescribeApplicationMonitorResponse extends $tea.Model {
|
|
2939
|
+
headers: { [key: string]: string };
|
|
2940
|
+
body: DescribeApplicationMonitorResponseBody;
|
|
2941
|
+
static names(): { [key: string]: string } {
|
|
2942
|
+
return {
|
|
2943
|
+
headers: 'headers',
|
|
2944
|
+
body: 'body',
|
|
2945
|
+
};
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
static types(): { [key: string]: any } {
|
|
2949
|
+
return {
|
|
2950
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2951
|
+
body: DescribeApplicationMonitorResponseBody,
|
|
2952
|
+
};
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
constructor(map?: { [key: string]: any }) {
|
|
2956
|
+
super(map);
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2717
2960
|
export class DescribeBandwidthPackageRequest extends $tea.Model {
|
|
2718
2961
|
bandwidthPackageId?: string;
|
|
2719
2962
|
regionId?: string;
|
|
@@ -3365,29 +3608,23 @@ export class DetachLogStoreFromEndpointGroupResponse extends $tea.Model {
|
|
|
3365
3608
|
}
|
|
3366
3609
|
}
|
|
3367
3610
|
|
|
3368
|
-
export class
|
|
3369
|
-
aclIds?: string[];
|
|
3611
|
+
export class DetectApplicationMonitorRequest extends $tea.Model {
|
|
3370
3612
|
clientToken?: string;
|
|
3371
|
-
dryRun?: boolean;
|
|
3372
|
-
listenerId?: string;
|
|
3373
3613
|
regionId?: string;
|
|
3614
|
+
taskId?: string;
|
|
3374
3615
|
static names(): { [key: string]: string } {
|
|
3375
3616
|
return {
|
|
3376
|
-
aclIds: 'AclIds',
|
|
3377
3617
|
clientToken: 'ClientToken',
|
|
3378
|
-
dryRun: 'DryRun',
|
|
3379
|
-
listenerId: 'ListenerId',
|
|
3380
3618
|
regionId: 'RegionId',
|
|
3619
|
+
taskId: 'TaskId',
|
|
3381
3620
|
};
|
|
3382
3621
|
}
|
|
3383
3622
|
|
|
3384
3623
|
static types(): { [key: string]: any } {
|
|
3385
3624
|
return {
|
|
3386
|
-
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3387
3625
|
clientToken: 'string',
|
|
3388
|
-
dryRun: 'boolean',
|
|
3389
|
-
listenerId: 'string',
|
|
3390
3626
|
regionId: 'string',
|
|
3627
|
+
taskId: 'string',
|
|
3391
3628
|
};
|
|
3392
3629
|
}
|
|
3393
3630
|
|
|
@@ -3396,22 +3633,16 @@ export class DissociateAclsFromListenerRequest extends $tea.Model {
|
|
|
3396
3633
|
}
|
|
3397
3634
|
}
|
|
3398
3635
|
|
|
3399
|
-
export class
|
|
3400
|
-
aclIds?: string[];
|
|
3401
|
-
listenerId?: string;
|
|
3636
|
+
export class DetectApplicationMonitorResponseBody extends $tea.Model {
|
|
3402
3637
|
requestId?: string;
|
|
3403
3638
|
static names(): { [key: string]: string } {
|
|
3404
3639
|
return {
|
|
3405
|
-
aclIds: 'AclIds',
|
|
3406
|
-
listenerId: 'ListenerId',
|
|
3407
3640
|
requestId: 'RequestId',
|
|
3408
3641
|
};
|
|
3409
3642
|
}
|
|
3410
3643
|
|
|
3411
3644
|
static types(): { [key: string]: any } {
|
|
3412
3645
|
return {
|
|
3413
|
-
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3414
|
-
listenerId: 'string',
|
|
3415
3646
|
requestId: 'string',
|
|
3416
3647
|
};
|
|
3417
3648
|
}
|
|
@@ -3421,9 +3652,9 @@ export class DissociateAclsFromListenerResponseBody extends $tea.Model {
|
|
|
3421
3652
|
}
|
|
3422
3653
|
}
|
|
3423
3654
|
|
|
3424
|
-
export class
|
|
3655
|
+
export class DetectApplicationMonitorResponse extends $tea.Model {
|
|
3425
3656
|
headers: { [key: string]: string };
|
|
3426
|
-
body:
|
|
3657
|
+
body: DetectApplicationMonitorResponseBody;
|
|
3427
3658
|
static names(): { [key: string]: string } {
|
|
3428
3659
|
return {
|
|
3429
3660
|
headers: 'headers',
|
|
@@ -3434,7 +3665,7 @@ export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
3434
3665
|
static types(): { [key: string]: any } {
|
|
3435
3666
|
return {
|
|
3436
3667
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3437
|
-
body:
|
|
3668
|
+
body: DetectApplicationMonitorResponseBody,
|
|
3438
3669
|
};
|
|
3439
3670
|
}
|
|
3440
3671
|
|
|
@@ -3443,29 +3674,23 @@ export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
3443
3674
|
}
|
|
3444
3675
|
}
|
|
3445
3676
|
|
|
3446
|
-
export class
|
|
3447
|
-
acceleratorId?: string;
|
|
3677
|
+
export class DisableApplicationMonitorRequest extends $tea.Model {
|
|
3448
3678
|
clientToken?: string;
|
|
3449
|
-
domains?: string[];
|
|
3450
|
-
listenerId?: string;
|
|
3451
3679
|
regionId?: string;
|
|
3680
|
+
taskId?: string;
|
|
3452
3681
|
static names(): { [key: string]: string } {
|
|
3453
3682
|
return {
|
|
3454
|
-
acceleratorId: 'AcceleratorId',
|
|
3455
3683
|
clientToken: 'ClientToken',
|
|
3456
|
-
domains: 'Domains',
|
|
3457
|
-
listenerId: 'ListenerId',
|
|
3458
3684
|
regionId: 'RegionId',
|
|
3685
|
+
taskId: 'TaskId',
|
|
3459
3686
|
};
|
|
3460
3687
|
}
|
|
3461
3688
|
|
|
3462
3689
|
static types(): { [key: string]: any } {
|
|
3463
3690
|
return {
|
|
3464
|
-
acceleratorId: 'string',
|
|
3465
3691
|
clientToken: 'string',
|
|
3466
|
-
domains: { 'type': 'array', 'itemType': 'string' },
|
|
3467
|
-
listenerId: 'string',
|
|
3468
3692
|
regionId: 'string',
|
|
3693
|
+
taskId: 'string',
|
|
3469
3694
|
};
|
|
3470
3695
|
}
|
|
3471
3696
|
|
|
@@ -3474,7 +3699,7 @@ export class DissociateAdditionalCertificatesFromListenerRequest extends $tea.Mo
|
|
|
3474
3699
|
}
|
|
3475
3700
|
}
|
|
3476
3701
|
|
|
3477
|
-
export class
|
|
3702
|
+
export class DisableApplicationMonitorResponseBody extends $tea.Model {
|
|
3478
3703
|
requestId?: string;
|
|
3479
3704
|
static names(): { [key: string]: string } {
|
|
3480
3705
|
return {
|
|
@@ -3493,9 +3718,9 @@ export class DissociateAdditionalCertificatesFromListenerResponseBody extends $t
|
|
|
3493
3718
|
}
|
|
3494
3719
|
}
|
|
3495
3720
|
|
|
3496
|
-
export class
|
|
3721
|
+
export class DisableApplicationMonitorResponse extends $tea.Model {
|
|
3497
3722
|
headers: { [key: string]: string };
|
|
3498
|
-
body:
|
|
3723
|
+
body: DisableApplicationMonitorResponseBody;
|
|
3499
3724
|
static names(): { [key: string]: string } {
|
|
3500
3725
|
return {
|
|
3501
3726
|
headers: 'headers',
|
|
@@ -3506,7 +3731,7 @@ export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.M
|
|
|
3506
3731
|
static types(): { [key: string]: any } {
|
|
3507
3732
|
return {
|
|
3508
3733
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3509
|
-
body:
|
|
3734
|
+
body: DisableApplicationMonitorResponseBody,
|
|
3510
3735
|
};
|
|
3511
3736
|
}
|
|
3512
3737
|
|
|
@@ -3515,19 +3740,28 @@ export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.M
|
|
|
3515
3740
|
}
|
|
3516
3741
|
}
|
|
3517
3742
|
|
|
3518
|
-
export class
|
|
3519
|
-
|
|
3743
|
+
export class DissociateAclsFromListenerRequest extends $tea.Model {
|
|
3744
|
+
aclIds?: string[];
|
|
3745
|
+
clientToken?: string;
|
|
3746
|
+
dryRun?: boolean;
|
|
3747
|
+
listenerId?: string;
|
|
3520
3748
|
regionId?: string;
|
|
3521
3749
|
static names(): { [key: string]: string } {
|
|
3522
3750
|
return {
|
|
3523
|
-
|
|
3751
|
+
aclIds: 'AclIds',
|
|
3752
|
+
clientToken: 'ClientToken',
|
|
3753
|
+
dryRun: 'DryRun',
|
|
3754
|
+
listenerId: 'ListenerId',
|
|
3524
3755
|
regionId: 'RegionId',
|
|
3525
3756
|
};
|
|
3526
3757
|
}
|
|
3527
3758
|
|
|
3528
3759
|
static types(): { [key: string]: any } {
|
|
3529
3760
|
return {
|
|
3530
|
-
|
|
3761
|
+
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3762
|
+
clientToken: 'string',
|
|
3763
|
+
dryRun: 'boolean',
|
|
3764
|
+
listenerId: 'string',
|
|
3531
3765
|
regionId: 'string',
|
|
3532
3766
|
};
|
|
3533
3767
|
}
|
|
@@ -3537,13 +3771,220 @@ export class GetAclRequest extends $tea.Model {
|
|
|
3537
3771
|
}
|
|
3538
3772
|
}
|
|
3539
3773
|
|
|
3540
|
-
export class
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3774
|
+
export class DissociateAclsFromListenerResponseBody extends $tea.Model {
|
|
3775
|
+
aclIds?: string[];
|
|
3776
|
+
listenerId?: string;
|
|
3777
|
+
requestId?: string;
|
|
3778
|
+
static names(): { [key: string]: string } {
|
|
3779
|
+
return {
|
|
3780
|
+
aclIds: 'AclIds',
|
|
3781
|
+
listenerId: 'ListenerId',
|
|
3782
|
+
requestId: 'RequestId',
|
|
3783
|
+
};
|
|
3784
|
+
}
|
|
3785
|
+
|
|
3786
|
+
static types(): { [key: string]: any } {
|
|
3787
|
+
return {
|
|
3788
|
+
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
3789
|
+
listenerId: 'string',
|
|
3790
|
+
requestId: 'string',
|
|
3791
|
+
};
|
|
3792
|
+
}
|
|
3793
|
+
|
|
3794
|
+
constructor(map?: { [key: string]: any }) {
|
|
3795
|
+
super(map);
|
|
3796
|
+
}
|
|
3797
|
+
}
|
|
3798
|
+
|
|
3799
|
+
export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
3800
|
+
headers: { [key: string]: string };
|
|
3801
|
+
body: DissociateAclsFromListenerResponseBody;
|
|
3802
|
+
static names(): { [key: string]: string } {
|
|
3803
|
+
return {
|
|
3804
|
+
headers: 'headers',
|
|
3805
|
+
body: 'body',
|
|
3806
|
+
};
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
static types(): { [key: string]: any } {
|
|
3810
|
+
return {
|
|
3811
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3812
|
+
body: DissociateAclsFromListenerResponseBody,
|
|
3813
|
+
};
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
constructor(map?: { [key: string]: any }) {
|
|
3817
|
+
super(map);
|
|
3818
|
+
}
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
export class DissociateAdditionalCertificatesFromListenerRequest extends $tea.Model {
|
|
3822
|
+
acceleratorId?: string;
|
|
3823
|
+
clientToken?: string;
|
|
3824
|
+
domains?: string[];
|
|
3825
|
+
listenerId?: string;
|
|
3826
|
+
regionId?: string;
|
|
3827
|
+
static names(): { [key: string]: string } {
|
|
3828
|
+
return {
|
|
3829
|
+
acceleratorId: 'AcceleratorId',
|
|
3830
|
+
clientToken: 'ClientToken',
|
|
3831
|
+
domains: 'Domains',
|
|
3832
|
+
listenerId: 'ListenerId',
|
|
3833
|
+
regionId: 'RegionId',
|
|
3834
|
+
};
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
static types(): { [key: string]: any } {
|
|
3838
|
+
return {
|
|
3839
|
+
acceleratorId: 'string',
|
|
3840
|
+
clientToken: 'string',
|
|
3841
|
+
domains: { 'type': 'array', 'itemType': 'string' },
|
|
3842
|
+
listenerId: 'string',
|
|
3843
|
+
regionId: 'string',
|
|
3844
|
+
};
|
|
3845
|
+
}
|
|
3846
|
+
|
|
3847
|
+
constructor(map?: { [key: string]: any }) {
|
|
3848
|
+
super(map);
|
|
3849
|
+
}
|
|
3850
|
+
}
|
|
3851
|
+
|
|
3852
|
+
export class DissociateAdditionalCertificatesFromListenerResponseBody extends $tea.Model {
|
|
3853
|
+
requestId?: string;
|
|
3854
|
+
static names(): { [key: string]: string } {
|
|
3855
|
+
return {
|
|
3856
|
+
requestId: 'RequestId',
|
|
3857
|
+
};
|
|
3858
|
+
}
|
|
3859
|
+
|
|
3860
|
+
static types(): { [key: string]: any } {
|
|
3861
|
+
return {
|
|
3862
|
+
requestId: 'string',
|
|
3863
|
+
};
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
constructor(map?: { [key: string]: any }) {
|
|
3867
|
+
super(map);
|
|
3868
|
+
}
|
|
3869
|
+
}
|
|
3870
|
+
|
|
3871
|
+
export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.Model {
|
|
3872
|
+
headers: { [key: string]: string };
|
|
3873
|
+
body: DissociateAdditionalCertificatesFromListenerResponseBody;
|
|
3874
|
+
static names(): { [key: string]: string } {
|
|
3875
|
+
return {
|
|
3876
|
+
headers: 'headers',
|
|
3877
|
+
body: 'body',
|
|
3878
|
+
};
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
static types(): { [key: string]: any } {
|
|
3882
|
+
return {
|
|
3883
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3884
|
+
body: DissociateAdditionalCertificatesFromListenerResponseBody,
|
|
3885
|
+
};
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
constructor(map?: { [key: string]: any }) {
|
|
3889
|
+
super(map);
|
|
3890
|
+
}
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
export class EnableApplicationMonitorRequest extends $tea.Model {
|
|
3894
|
+
clientToken?: string;
|
|
3895
|
+
regionId?: string;
|
|
3896
|
+
taskId?: string;
|
|
3897
|
+
static names(): { [key: string]: string } {
|
|
3898
|
+
return {
|
|
3899
|
+
clientToken: 'ClientToken',
|
|
3900
|
+
regionId: 'RegionId',
|
|
3901
|
+
taskId: 'TaskId',
|
|
3902
|
+
};
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
static types(): { [key: string]: any } {
|
|
3906
|
+
return {
|
|
3907
|
+
clientToken: 'string',
|
|
3908
|
+
regionId: 'string',
|
|
3909
|
+
taskId: 'string',
|
|
3910
|
+
};
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
|
+
constructor(map?: { [key: string]: any }) {
|
|
3914
|
+
super(map);
|
|
3915
|
+
}
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
export class EnableApplicationMonitorResponseBody extends $tea.Model {
|
|
3919
|
+
requestId?: string;
|
|
3920
|
+
static names(): { [key: string]: string } {
|
|
3921
|
+
return {
|
|
3922
|
+
requestId: 'RequestId',
|
|
3923
|
+
};
|
|
3924
|
+
}
|
|
3925
|
+
|
|
3926
|
+
static types(): { [key: string]: any } {
|
|
3927
|
+
return {
|
|
3928
|
+
requestId: 'string',
|
|
3929
|
+
};
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
constructor(map?: { [key: string]: any }) {
|
|
3933
|
+
super(map);
|
|
3934
|
+
}
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
export class EnableApplicationMonitorResponse extends $tea.Model {
|
|
3938
|
+
headers: { [key: string]: string };
|
|
3939
|
+
body: EnableApplicationMonitorResponseBody;
|
|
3940
|
+
static names(): { [key: string]: string } {
|
|
3941
|
+
return {
|
|
3942
|
+
headers: 'headers',
|
|
3943
|
+
body: 'body',
|
|
3944
|
+
};
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3947
|
+
static types(): { [key: string]: any } {
|
|
3948
|
+
return {
|
|
3949
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3950
|
+
body: EnableApplicationMonitorResponseBody,
|
|
3951
|
+
};
|
|
3952
|
+
}
|
|
3953
|
+
|
|
3954
|
+
constructor(map?: { [key: string]: any }) {
|
|
3955
|
+
super(map);
|
|
3956
|
+
}
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
export class GetAclRequest extends $tea.Model {
|
|
3960
|
+
aclId?: string;
|
|
3961
|
+
regionId?: string;
|
|
3962
|
+
static names(): { [key: string]: string } {
|
|
3963
|
+
return {
|
|
3964
|
+
aclId: 'AclId',
|
|
3965
|
+
regionId: 'RegionId',
|
|
3966
|
+
};
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
static types(): { [key: string]: any } {
|
|
3970
|
+
return {
|
|
3971
|
+
aclId: 'string',
|
|
3972
|
+
regionId: 'string',
|
|
3973
|
+
};
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3976
|
+
constructor(map?: { [key: string]: any }) {
|
|
3977
|
+
super(map);
|
|
3978
|
+
}
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
export class GetAclResponseBody extends $tea.Model {
|
|
3982
|
+
aclEntries?: GetAclResponseBodyAclEntries[];
|
|
3983
|
+
aclId?: string;
|
|
3984
|
+
aclName?: string;
|
|
3985
|
+
aclStatus?: string;
|
|
3986
|
+
addressIPVersion?: string;
|
|
3987
|
+
relatedListeners?: GetAclResponseBodyRelatedListeners[];
|
|
3547
3988
|
requestId?: string;
|
|
3548
3989
|
static names(): { [key: string]: string } {
|
|
3549
3990
|
return {
|
|
@@ -4265,20 +4706,26 @@ export class ListAclsResponse extends $tea.Model {
|
|
|
4265
4706
|
}
|
|
4266
4707
|
}
|
|
4267
4708
|
|
|
4268
|
-
export class
|
|
4269
|
-
|
|
4709
|
+
export class ListApplicationMonitorRequest extends $tea.Model {
|
|
4710
|
+
pageNumber?: number;
|
|
4711
|
+
pageSize?: number;
|
|
4270
4712
|
regionId?: string;
|
|
4713
|
+
searchValue?: string;
|
|
4271
4714
|
static names(): { [key: string]: string } {
|
|
4272
4715
|
return {
|
|
4273
|
-
|
|
4716
|
+
pageNumber: 'PageNumber',
|
|
4717
|
+
pageSize: 'PageSize',
|
|
4274
4718
|
regionId: 'RegionId',
|
|
4719
|
+
searchValue: 'SearchValue',
|
|
4275
4720
|
};
|
|
4276
4721
|
}
|
|
4277
4722
|
|
|
4278
4723
|
static types(): { [key: string]: any } {
|
|
4279
4724
|
return {
|
|
4280
|
-
|
|
4725
|
+
pageNumber: 'number',
|
|
4726
|
+
pageSize: 'number',
|
|
4281
4727
|
regionId: 'string',
|
|
4728
|
+
searchValue: 'string',
|
|
4282
4729
|
};
|
|
4283
4730
|
}
|
|
4284
4731
|
|
|
@@ -4287,20 +4734,29 @@ export class ListAvailableAccelerateAreasRequest extends $tea.Model {
|
|
|
4287
4734
|
}
|
|
4288
4735
|
}
|
|
4289
4736
|
|
|
4290
|
-
export class
|
|
4291
|
-
|
|
4737
|
+
export class ListApplicationMonitorResponseBody extends $tea.Model {
|
|
4738
|
+
applicationMonitors?: ListApplicationMonitorResponseBodyApplicationMonitors[];
|
|
4739
|
+
pageNumber?: number;
|
|
4740
|
+
pageSize?: number;
|
|
4292
4741
|
requestId?: string;
|
|
4742
|
+
totalCount?: number;
|
|
4293
4743
|
static names(): { [key: string]: string } {
|
|
4294
4744
|
return {
|
|
4295
|
-
|
|
4745
|
+
applicationMonitors: 'ApplicationMonitors',
|
|
4746
|
+
pageNumber: 'PageNumber',
|
|
4747
|
+
pageSize: 'PageSize',
|
|
4296
4748
|
requestId: 'RequestId',
|
|
4749
|
+
totalCount: 'TotalCount',
|
|
4297
4750
|
};
|
|
4298
4751
|
}
|
|
4299
4752
|
|
|
4300
4753
|
static types(): { [key: string]: any } {
|
|
4301
4754
|
return {
|
|
4302
|
-
|
|
4755
|
+
applicationMonitors: { 'type': 'array', 'itemType': ListApplicationMonitorResponseBodyApplicationMonitors },
|
|
4756
|
+
pageNumber: 'number',
|
|
4757
|
+
pageSize: 'number',
|
|
4303
4758
|
requestId: 'string',
|
|
4759
|
+
totalCount: 'number',
|
|
4304
4760
|
};
|
|
4305
4761
|
}
|
|
4306
4762
|
|
|
@@ -4309,9 +4765,9 @@ export class ListAvailableAccelerateAreasResponseBody extends $tea.Model {
|
|
|
4309
4765
|
}
|
|
4310
4766
|
}
|
|
4311
4767
|
|
|
4312
|
-
export class
|
|
4768
|
+
export class ListApplicationMonitorResponse extends $tea.Model {
|
|
4313
4769
|
headers: { [key: string]: string };
|
|
4314
|
-
body:
|
|
4770
|
+
body: ListApplicationMonitorResponseBody;
|
|
4315
4771
|
static names(): { [key: string]: string } {
|
|
4316
4772
|
return {
|
|
4317
4773
|
headers: 'headers',
|
|
@@ -4322,7 +4778,7 @@ export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
4322
4778
|
static types(): { [key: string]: any } {
|
|
4323
4779
|
return {
|
|
4324
4780
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4325
|
-
body:
|
|
4781
|
+
body: ListApplicationMonitorResponseBody,
|
|
4326
4782
|
};
|
|
4327
4783
|
}
|
|
4328
4784
|
|
|
@@ -4331,20 +4787,32 @@ export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
4331
4787
|
}
|
|
4332
4788
|
}
|
|
4333
4789
|
|
|
4334
|
-
export class
|
|
4335
|
-
|
|
4790
|
+
export class ListApplicationMonitorDetectResultRequest extends $tea.Model {
|
|
4791
|
+
beginTime?: number;
|
|
4792
|
+
endTime?: number;
|
|
4793
|
+
pageNumber?: number;
|
|
4794
|
+
pageSize?: number;
|
|
4336
4795
|
regionId?: string;
|
|
4796
|
+
taskId?: string;
|
|
4337
4797
|
static names(): { [key: string]: string } {
|
|
4338
4798
|
return {
|
|
4339
|
-
|
|
4799
|
+
beginTime: 'BeginTime',
|
|
4800
|
+
endTime: 'EndTime',
|
|
4801
|
+
pageNumber: 'PageNumber',
|
|
4802
|
+
pageSize: 'PageSize',
|
|
4340
4803
|
regionId: 'RegionId',
|
|
4804
|
+
taskId: 'TaskId',
|
|
4341
4805
|
};
|
|
4342
4806
|
}
|
|
4343
4807
|
|
|
4344
4808
|
static types(): { [key: string]: any } {
|
|
4345
4809
|
return {
|
|
4346
|
-
|
|
4810
|
+
beginTime: 'number',
|
|
4811
|
+
endTime: 'number',
|
|
4812
|
+
pageNumber: 'number',
|
|
4813
|
+
pageSize: 'number',
|
|
4347
4814
|
regionId: 'string',
|
|
4815
|
+
taskId: 'string',
|
|
4348
4816
|
};
|
|
4349
4817
|
}
|
|
4350
4818
|
|
|
@@ -4353,20 +4821,29 @@ export class ListAvailableBusiRegionsRequest extends $tea.Model {
|
|
|
4353
4821
|
}
|
|
4354
4822
|
}
|
|
4355
4823
|
|
|
4356
|
-
export class
|
|
4357
|
-
|
|
4824
|
+
export class ListApplicationMonitorDetectResultResponseBody extends $tea.Model {
|
|
4825
|
+
applicationMonitorDetectResultList?: ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList[];
|
|
4826
|
+
pageNumber?: number;
|
|
4827
|
+
pageSize?: number;
|
|
4358
4828
|
requestId?: string;
|
|
4829
|
+
totalCount?: number;
|
|
4359
4830
|
static names(): { [key: string]: string } {
|
|
4360
4831
|
return {
|
|
4361
|
-
|
|
4832
|
+
applicationMonitorDetectResultList: 'ApplicationMonitorDetectResultList',
|
|
4833
|
+
pageNumber: 'PageNumber',
|
|
4834
|
+
pageSize: 'PageSize',
|
|
4362
4835
|
requestId: 'RequestId',
|
|
4836
|
+
totalCount: 'TotalCount',
|
|
4363
4837
|
};
|
|
4364
4838
|
}
|
|
4365
4839
|
|
|
4366
4840
|
static types(): { [key: string]: any } {
|
|
4367
4841
|
return {
|
|
4368
|
-
|
|
4842
|
+
applicationMonitorDetectResultList: { 'type': 'array', 'itemType': ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList },
|
|
4843
|
+
pageNumber: 'number',
|
|
4844
|
+
pageSize: 'number',
|
|
4369
4845
|
requestId: 'string',
|
|
4846
|
+
totalCount: 'number',
|
|
4370
4847
|
};
|
|
4371
4848
|
}
|
|
4372
4849
|
|
|
@@ -4375,9 +4852,9 @@ export class ListAvailableBusiRegionsResponseBody extends $tea.Model {
|
|
|
4375
4852
|
}
|
|
4376
4853
|
}
|
|
4377
4854
|
|
|
4378
|
-
export class
|
|
4855
|
+
export class ListApplicationMonitorDetectResultResponse extends $tea.Model {
|
|
4379
4856
|
headers: { [key: string]: string };
|
|
4380
|
-
body:
|
|
4857
|
+
body: ListApplicationMonitorDetectResultResponseBody;
|
|
4381
4858
|
static names(): { [key: string]: string } {
|
|
4382
4859
|
return {
|
|
4383
4860
|
headers: 'headers',
|
|
@@ -4388,7 +4865,7 @@ export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
4388
4865
|
static types(): { [key: string]: any } {
|
|
4389
4866
|
return {
|
|
4390
4867
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4391
|
-
body:
|
|
4868
|
+
body: ListApplicationMonitorDetectResultResponseBody,
|
|
4392
4869
|
};
|
|
4393
4870
|
}
|
|
4394
4871
|
|
|
@@ -4397,7 +4874,139 @@ export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
4397
4874
|
}
|
|
4398
4875
|
}
|
|
4399
4876
|
|
|
4400
|
-
export class
|
|
4877
|
+
export class ListAvailableAccelerateAreasRequest extends $tea.Model {
|
|
4878
|
+
acceleratorId?: string;
|
|
4879
|
+
regionId?: string;
|
|
4880
|
+
static names(): { [key: string]: string } {
|
|
4881
|
+
return {
|
|
4882
|
+
acceleratorId: 'AcceleratorId',
|
|
4883
|
+
regionId: 'RegionId',
|
|
4884
|
+
};
|
|
4885
|
+
}
|
|
4886
|
+
|
|
4887
|
+
static types(): { [key: string]: any } {
|
|
4888
|
+
return {
|
|
4889
|
+
acceleratorId: 'string',
|
|
4890
|
+
regionId: 'string',
|
|
4891
|
+
};
|
|
4892
|
+
}
|
|
4893
|
+
|
|
4894
|
+
constructor(map?: { [key: string]: any }) {
|
|
4895
|
+
super(map);
|
|
4896
|
+
}
|
|
4897
|
+
}
|
|
4898
|
+
|
|
4899
|
+
export class ListAvailableAccelerateAreasResponseBody extends $tea.Model {
|
|
4900
|
+
areas?: ListAvailableAccelerateAreasResponseBodyAreas[];
|
|
4901
|
+
requestId?: string;
|
|
4902
|
+
static names(): { [key: string]: string } {
|
|
4903
|
+
return {
|
|
4904
|
+
areas: 'Areas',
|
|
4905
|
+
requestId: 'RequestId',
|
|
4906
|
+
};
|
|
4907
|
+
}
|
|
4908
|
+
|
|
4909
|
+
static types(): { [key: string]: any } {
|
|
4910
|
+
return {
|
|
4911
|
+
areas: { 'type': 'array', 'itemType': ListAvailableAccelerateAreasResponseBodyAreas },
|
|
4912
|
+
requestId: 'string',
|
|
4913
|
+
};
|
|
4914
|
+
}
|
|
4915
|
+
|
|
4916
|
+
constructor(map?: { [key: string]: any }) {
|
|
4917
|
+
super(map);
|
|
4918
|
+
}
|
|
4919
|
+
}
|
|
4920
|
+
|
|
4921
|
+
export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
4922
|
+
headers: { [key: string]: string };
|
|
4923
|
+
body: ListAvailableAccelerateAreasResponseBody;
|
|
4924
|
+
static names(): { [key: string]: string } {
|
|
4925
|
+
return {
|
|
4926
|
+
headers: 'headers',
|
|
4927
|
+
body: 'body',
|
|
4928
|
+
};
|
|
4929
|
+
}
|
|
4930
|
+
|
|
4931
|
+
static types(): { [key: string]: any } {
|
|
4932
|
+
return {
|
|
4933
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4934
|
+
body: ListAvailableAccelerateAreasResponseBody,
|
|
4935
|
+
};
|
|
4936
|
+
}
|
|
4937
|
+
|
|
4938
|
+
constructor(map?: { [key: string]: any }) {
|
|
4939
|
+
super(map);
|
|
4940
|
+
}
|
|
4941
|
+
}
|
|
4942
|
+
|
|
4943
|
+
export class ListAvailableBusiRegionsRequest extends $tea.Model {
|
|
4944
|
+
acceleratorId?: string;
|
|
4945
|
+
regionId?: string;
|
|
4946
|
+
static names(): { [key: string]: string } {
|
|
4947
|
+
return {
|
|
4948
|
+
acceleratorId: 'AcceleratorId',
|
|
4949
|
+
regionId: 'RegionId',
|
|
4950
|
+
};
|
|
4951
|
+
}
|
|
4952
|
+
|
|
4953
|
+
static types(): { [key: string]: any } {
|
|
4954
|
+
return {
|
|
4955
|
+
acceleratorId: 'string',
|
|
4956
|
+
regionId: 'string',
|
|
4957
|
+
};
|
|
4958
|
+
}
|
|
4959
|
+
|
|
4960
|
+
constructor(map?: { [key: string]: any }) {
|
|
4961
|
+
super(map);
|
|
4962
|
+
}
|
|
4963
|
+
}
|
|
4964
|
+
|
|
4965
|
+
export class ListAvailableBusiRegionsResponseBody extends $tea.Model {
|
|
4966
|
+
regions?: ListAvailableBusiRegionsResponseBodyRegions[];
|
|
4967
|
+
requestId?: string;
|
|
4968
|
+
static names(): { [key: string]: string } {
|
|
4969
|
+
return {
|
|
4970
|
+
regions: 'Regions',
|
|
4971
|
+
requestId: 'RequestId',
|
|
4972
|
+
};
|
|
4973
|
+
}
|
|
4974
|
+
|
|
4975
|
+
static types(): { [key: string]: any } {
|
|
4976
|
+
return {
|
|
4977
|
+
regions: { 'type': 'array', 'itemType': ListAvailableBusiRegionsResponseBodyRegions },
|
|
4978
|
+
requestId: 'string',
|
|
4979
|
+
};
|
|
4980
|
+
}
|
|
4981
|
+
|
|
4982
|
+
constructor(map?: { [key: string]: any }) {
|
|
4983
|
+
super(map);
|
|
4984
|
+
}
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4987
|
+
export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
4988
|
+
headers: { [key: string]: string };
|
|
4989
|
+
body: ListAvailableBusiRegionsResponseBody;
|
|
4990
|
+
static names(): { [key: string]: string } {
|
|
4991
|
+
return {
|
|
4992
|
+
headers: 'headers',
|
|
4993
|
+
body: 'body',
|
|
4994
|
+
};
|
|
4995
|
+
}
|
|
4996
|
+
|
|
4997
|
+
static types(): { [key: string]: any } {
|
|
4998
|
+
return {
|
|
4999
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5000
|
+
body: ListAvailableBusiRegionsResponseBody,
|
|
5001
|
+
};
|
|
5002
|
+
}
|
|
5003
|
+
|
|
5004
|
+
constructor(map?: { [key: string]: any }) {
|
|
5005
|
+
super(map);
|
|
5006
|
+
}
|
|
5007
|
+
}
|
|
5008
|
+
|
|
5009
|
+
export class ListBandwidthPackagesRequest extends $tea.Model {
|
|
4401
5010
|
bandwidthPackageId?: string;
|
|
4402
5011
|
pageNumber?: number;
|
|
4403
5012
|
pageSize?: number;
|
|
@@ -5732,6 +6341,87 @@ export class UpdateAclAttributeResponse extends $tea.Model {
|
|
|
5732
6341
|
}
|
|
5733
6342
|
}
|
|
5734
6343
|
|
|
6344
|
+
export class UpdateApplicationMonitorRequest extends $tea.Model {
|
|
6345
|
+
address?: string;
|
|
6346
|
+
clientToken?: string;
|
|
6347
|
+
detectThreshold?: number;
|
|
6348
|
+
listenerId?: string;
|
|
6349
|
+
optionsJson?: string;
|
|
6350
|
+
regionId?: string;
|
|
6351
|
+
taskId?: string;
|
|
6352
|
+
taskName?: string;
|
|
6353
|
+
static names(): { [key: string]: string } {
|
|
6354
|
+
return {
|
|
6355
|
+
address: 'Address',
|
|
6356
|
+
clientToken: 'ClientToken',
|
|
6357
|
+
detectThreshold: 'DetectThreshold',
|
|
6358
|
+
listenerId: 'ListenerId',
|
|
6359
|
+
optionsJson: 'OptionsJson',
|
|
6360
|
+
regionId: 'RegionId',
|
|
6361
|
+
taskId: 'TaskId',
|
|
6362
|
+
taskName: 'TaskName',
|
|
6363
|
+
};
|
|
6364
|
+
}
|
|
6365
|
+
|
|
6366
|
+
static types(): { [key: string]: any } {
|
|
6367
|
+
return {
|
|
6368
|
+
address: 'string',
|
|
6369
|
+
clientToken: 'string',
|
|
6370
|
+
detectThreshold: 'number',
|
|
6371
|
+
listenerId: 'string',
|
|
6372
|
+
optionsJson: 'string',
|
|
6373
|
+
regionId: 'string',
|
|
6374
|
+
taskId: 'string',
|
|
6375
|
+
taskName: 'string',
|
|
6376
|
+
};
|
|
6377
|
+
}
|
|
6378
|
+
|
|
6379
|
+
constructor(map?: { [key: string]: any }) {
|
|
6380
|
+
super(map);
|
|
6381
|
+
}
|
|
6382
|
+
}
|
|
6383
|
+
|
|
6384
|
+
export class UpdateApplicationMonitorResponseBody extends $tea.Model {
|
|
6385
|
+
requestId?: string;
|
|
6386
|
+
static names(): { [key: string]: string } {
|
|
6387
|
+
return {
|
|
6388
|
+
requestId: 'RequestId',
|
|
6389
|
+
};
|
|
6390
|
+
}
|
|
6391
|
+
|
|
6392
|
+
static types(): { [key: string]: any } {
|
|
6393
|
+
return {
|
|
6394
|
+
requestId: 'string',
|
|
6395
|
+
};
|
|
6396
|
+
}
|
|
6397
|
+
|
|
6398
|
+
constructor(map?: { [key: string]: any }) {
|
|
6399
|
+
super(map);
|
|
6400
|
+
}
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6403
|
+
export class UpdateApplicationMonitorResponse extends $tea.Model {
|
|
6404
|
+
headers: { [key: string]: string };
|
|
6405
|
+
body: UpdateApplicationMonitorResponseBody;
|
|
6406
|
+
static names(): { [key: string]: string } {
|
|
6407
|
+
return {
|
|
6408
|
+
headers: 'headers',
|
|
6409
|
+
body: 'body',
|
|
6410
|
+
};
|
|
6411
|
+
}
|
|
6412
|
+
|
|
6413
|
+
static types(): { [key: string]: any } {
|
|
6414
|
+
return {
|
|
6415
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6416
|
+
body: UpdateApplicationMonitorResponseBody,
|
|
6417
|
+
};
|
|
6418
|
+
}
|
|
6419
|
+
|
|
6420
|
+
constructor(map?: { [key: string]: any }) {
|
|
6421
|
+
super(map);
|
|
6422
|
+
}
|
|
6423
|
+
}
|
|
6424
|
+
|
|
5735
6425
|
export class UpdateBandwidthPackageRequest extends $tea.Model {
|
|
5736
6426
|
autoPay?: boolean;
|
|
5737
6427
|
autoUseCoupon?: boolean;
|
|
@@ -7115,6 +7805,34 @@ export class DescribeAcceleratorResponseBodyCrossDomainBandwidthPackage extends
|
|
|
7115
7805
|
}
|
|
7116
7806
|
}
|
|
7117
7807
|
|
|
7808
|
+
export class DescribeApplicationMonitorResponseBodyIspCityList extends $tea.Model {
|
|
7809
|
+
city?: string;
|
|
7810
|
+
cityName?: string;
|
|
7811
|
+
isp?: string;
|
|
7812
|
+
ispName?: string;
|
|
7813
|
+
static names(): { [key: string]: string } {
|
|
7814
|
+
return {
|
|
7815
|
+
city: 'City',
|
|
7816
|
+
cityName: 'CityName',
|
|
7817
|
+
isp: 'Isp',
|
|
7818
|
+
ispName: 'IspName',
|
|
7819
|
+
};
|
|
7820
|
+
}
|
|
7821
|
+
|
|
7822
|
+
static types(): { [key: string]: any } {
|
|
7823
|
+
return {
|
|
7824
|
+
city: 'string',
|
|
7825
|
+
cityName: 'string',
|
|
7826
|
+
isp: 'string',
|
|
7827
|
+
ispName: 'string',
|
|
7828
|
+
};
|
|
7829
|
+
}
|
|
7830
|
+
|
|
7831
|
+
constructor(map?: { [key: string]: any }) {
|
|
7832
|
+
super(map);
|
|
7833
|
+
}
|
|
7834
|
+
}
|
|
7835
|
+
|
|
7118
7836
|
export class DescribeEndpointGroupResponseBodyEndpointConfigurations extends $tea.Model {
|
|
7119
7837
|
enableClientIPPreservation?: boolean;
|
|
7120
7838
|
endpoint?: string;
|
|
@@ -7660,20 +8378,38 @@ export class ListAclsResponseBodyAcls extends $tea.Model {
|
|
|
7660
8378
|
}
|
|
7661
8379
|
}
|
|
7662
8380
|
|
|
7663
|
-
export class
|
|
7664
|
-
|
|
7665
|
-
|
|
8381
|
+
export class ListApplicationMonitorResponseBodyApplicationMonitors extends $tea.Model {
|
|
8382
|
+
acceleratorId?: string;
|
|
8383
|
+
address?: string;
|
|
8384
|
+
detectThreshold?: number;
|
|
8385
|
+
listenerId?: string;
|
|
8386
|
+
optionsJson?: string;
|
|
8387
|
+
state?: string;
|
|
8388
|
+
taskId?: string;
|
|
8389
|
+
taskName?: string;
|
|
7666
8390
|
static names(): { [key: string]: string } {
|
|
7667
8391
|
return {
|
|
7668
|
-
|
|
7669
|
-
|
|
8392
|
+
acceleratorId: 'AcceleratorId',
|
|
8393
|
+
address: 'Address',
|
|
8394
|
+
detectThreshold: 'DetectThreshold',
|
|
8395
|
+
listenerId: 'ListenerId',
|
|
8396
|
+
optionsJson: 'OptionsJson',
|
|
8397
|
+
state: 'State',
|
|
8398
|
+
taskId: 'TaskId',
|
|
8399
|
+
taskName: 'TaskName',
|
|
7670
8400
|
};
|
|
7671
8401
|
}
|
|
7672
8402
|
|
|
7673
8403
|
static types(): { [key: string]: any } {
|
|
7674
8404
|
return {
|
|
7675
|
-
|
|
7676
|
-
|
|
8405
|
+
acceleratorId: 'string',
|
|
8406
|
+
address: 'string',
|
|
8407
|
+
detectThreshold: 'number',
|
|
8408
|
+
listenerId: 'string',
|
|
8409
|
+
optionsJson: 'string',
|
|
8410
|
+
state: 'string',
|
|
8411
|
+
taskId: 'string',
|
|
8412
|
+
taskName: 'string',
|
|
7677
8413
|
};
|
|
7678
8414
|
}
|
|
7679
8415
|
|
|
@@ -7682,23 +8418,35 @@ export class ListAvailableAccelerateAreasResponseBodyAreasRegionList extends $te
|
|
|
7682
8418
|
}
|
|
7683
8419
|
}
|
|
7684
8420
|
|
|
7685
|
-
export class
|
|
7686
|
-
|
|
7687
|
-
|
|
7688
|
-
|
|
8421
|
+
export class ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList extends $tea.Model {
|
|
8422
|
+
acceleratorId?: string;
|
|
8423
|
+
detail?: string;
|
|
8424
|
+
diagStatus?: string;
|
|
8425
|
+
listenerId?: string;
|
|
8426
|
+
port?: string;
|
|
8427
|
+
protocol?: string;
|
|
8428
|
+
taskId?: string;
|
|
7689
8429
|
static names(): { [key: string]: string } {
|
|
7690
8430
|
return {
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
|
|
8431
|
+
acceleratorId: 'AcceleratorId',
|
|
8432
|
+
detail: 'Detail',
|
|
8433
|
+
diagStatus: 'DiagStatus',
|
|
8434
|
+
listenerId: 'ListenerId',
|
|
8435
|
+
port: 'Port',
|
|
8436
|
+
protocol: 'Protocol',
|
|
8437
|
+
taskId: 'TaskId',
|
|
7694
8438
|
};
|
|
7695
8439
|
}
|
|
7696
8440
|
|
|
7697
8441
|
static types(): { [key: string]: any } {
|
|
7698
8442
|
return {
|
|
7699
|
-
|
|
7700
|
-
|
|
7701
|
-
|
|
8443
|
+
acceleratorId: 'string',
|
|
8444
|
+
detail: 'string',
|
|
8445
|
+
diagStatus: 'string',
|
|
8446
|
+
listenerId: 'string',
|
|
8447
|
+
port: 'string',
|
|
8448
|
+
protocol: 'string',
|
|
8449
|
+
taskId: 'string',
|
|
7702
8450
|
};
|
|
7703
8451
|
}
|
|
7704
8452
|
|
|
@@ -7707,14 +8455,12 @@ export class ListAvailableAccelerateAreasResponseBodyAreas extends $tea.Model {
|
|
|
7707
8455
|
}
|
|
7708
8456
|
}
|
|
7709
8457
|
|
|
7710
|
-
export class
|
|
8458
|
+
export class ListAvailableAccelerateAreasResponseBodyAreasRegionList extends $tea.Model {
|
|
7711
8459
|
localName?: string;
|
|
7712
|
-
pop?: boolean;
|
|
7713
8460
|
regionId?: string;
|
|
7714
8461
|
static names(): { [key: string]: string } {
|
|
7715
8462
|
return {
|
|
7716
8463
|
localName: 'LocalName',
|
|
7717
|
-
pop: 'Pop',
|
|
7718
8464
|
regionId: 'RegionId',
|
|
7719
8465
|
};
|
|
7720
8466
|
}
|
|
@@ -7722,7 +8468,56 @@ export class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
|
7722
8468
|
static types(): { [key: string]: any } {
|
|
7723
8469
|
return {
|
|
7724
8470
|
localName: 'string',
|
|
7725
|
-
|
|
8471
|
+
regionId: 'string',
|
|
8472
|
+
};
|
|
8473
|
+
}
|
|
8474
|
+
|
|
8475
|
+
constructor(map?: { [key: string]: any }) {
|
|
8476
|
+
super(map);
|
|
8477
|
+
}
|
|
8478
|
+
}
|
|
8479
|
+
|
|
8480
|
+
export class ListAvailableAccelerateAreasResponseBodyAreas extends $tea.Model {
|
|
8481
|
+
areaId?: string;
|
|
8482
|
+
localName?: string;
|
|
8483
|
+
regionList?: ListAvailableAccelerateAreasResponseBodyAreasRegionList[];
|
|
8484
|
+
static names(): { [key: string]: string } {
|
|
8485
|
+
return {
|
|
8486
|
+
areaId: 'AreaId',
|
|
8487
|
+
localName: 'LocalName',
|
|
8488
|
+
regionList: 'RegionList',
|
|
8489
|
+
};
|
|
8490
|
+
}
|
|
8491
|
+
|
|
8492
|
+
static types(): { [key: string]: any } {
|
|
8493
|
+
return {
|
|
8494
|
+
areaId: 'string',
|
|
8495
|
+
localName: 'string',
|
|
8496
|
+
regionList: { 'type': 'array', 'itemType': ListAvailableAccelerateAreasResponseBodyAreasRegionList },
|
|
8497
|
+
};
|
|
8498
|
+
}
|
|
8499
|
+
|
|
8500
|
+
constructor(map?: { [key: string]: any }) {
|
|
8501
|
+
super(map);
|
|
8502
|
+
}
|
|
8503
|
+
}
|
|
8504
|
+
|
|
8505
|
+
export class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
8506
|
+
localName?: string;
|
|
8507
|
+
pop?: boolean;
|
|
8508
|
+
regionId?: string;
|
|
8509
|
+
static names(): { [key: string]: string } {
|
|
8510
|
+
return {
|
|
8511
|
+
localName: 'LocalName',
|
|
8512
|
+
pop: 'Pop',
|
|
8513
|
+
regionId: 'RegionId',
|
|
8514
|
+
};
|
|
8515
|
+
}
|
|
8516
|
+
|
|
8517
|
+
static types(): { [key: string]: any } {
|
|
8518
|
+
return {
|
|
8519
|
+
localName: 'string',
|
|
8520
|
+
pop: 'boolean',
|
|
7726
8521
|
regionId: 'string',
|
|
7727
8522
|
};
|
|
7728
8523
|
}
|
|
@@ -9023,11 +9818,26 @@ export default class Client extends OpenApi {
|
|
|
9023
9818
|
async addEntriesToAclWithOptions(request: AddEntriesToAclRequest, runtime: $Util.RuntimeOptions): Promise<AddEntriesToAclResponse> {
|
|
9024
9819
|
Util.validateModel(request);
|
|
9025
9820
|
let query = { };
|
|
9026
|
-
|
|
9027
|
-
|
|
9028
|
-
|
|
9029
|
-
|
|
9030
|
-
|
|
9821
|
+
if (!Util.isUnset(request.aclEntries)) {
|
|
9822
|
+
query["AclEntries"] = request.aclEntries;
|
|
9823
|
+
}
|
|
9824
|
+
|
|
9825
|
+
if (!Util.isUnset(request.aclId)) {
|
|
9826
|
+
query["AclId"] = request.aclId;
|
|
9827
|
+
}
|
|
9828
|
+
|
|
9829
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
9830
|
+
query["ClientToken"] = request.clientToken;
|
|
9831
|
+
}
|
|
9832
|
+
|
|
9833
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
9834
|
+
query["DryRun"] = request.dryRun;
|
|
9835
|
+
}
|
|
9836
|
+
|
|
9837
|
+
if (!Util.isUnset(request.regionId)) {
|
|
9838
|
+
query["RegionId"] = request.regionId;
|
|
9839
|
+
}
|
|
9840
|
+
|
|
9031
9841
|
let req = new $OpenApi.OpenApiRequest({
|
|
9032
9842
|
query: OpenApiUtil.query(query),
|
|
9033
9843
|
});
|
|
@@ -9053,12 +9863,30 @@ export default class Client extends OpenApi {
|
|
|
9053
9863
|
async associateAclsWithListenerWithOptions(request: AssociateAclsWithListenerRequest, runtime: $Util.RuntimeOptions): Promise<AssociateAclsWithListenerResponse> {
|
|
9054
9864
|
Util.validateModel(request);
|
|
9055
9865
|
let query = { };
|
|
9056
|
-
|
|
9057
|
-
|
|
9058
|
-
|
|
9059
|
-
|
|
9060
|
-
|
|
9061
|
-
|
|
9866
|
+
if (!Util.isUnset(request.aclIds)) {
|
|
9867
|
+
query["AclIds"] = request.aclIds;
|
|
9868
|
+
}
|
|
9869
|
+
|
|
9870
|
+
if (!Util.isUnset(request.aclType)) {
|
|
9871
|
+
query["AclType"] = request.aclType;
|
|
9872
|
+
}
|
|
9873
|
+
|
|
9874
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
9875
|
+
query["ClientToken"] = request.clientToken;
|
|
9876
|
+
}
|
|
9877
|
+
|
|
9878
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
9879
|
+
query["DryRun"] = request.dryRun;
|
|
9880
|
+
}
|
|
9881
|
+
|
|
9882
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
9883
|
+
query["ListenerId"] = request.listenerId;
|
|
9884
|
+
}
|
|
9885
|
+
|
|
9886
|
+
if (!Util.isUnset(request.regionId)) {
|
|
9887
|
+
query["RegionId"] = request.regionId;
|
|
9888
|
+
}
|
|
9889
|
+
|
|
9062
9890
|
let req = new $OpenApi.OpenApiRequest({
|
|
9063
9891
|
query: OpenApiUtil.query(query),
|
|
9064
9892
|
});
|
|
@@ -9084,11 +9912,26 @@ export default class Client extends OpenApi {
|
|
|
9084
9912
|
async associateAdditionalCertificatesWithListenerWithOptions(request: AssociateAdditionalCertificatesWithListenerRequest, runtime: $Util.RuntimeOptions): Promise<AssociateAdditionalCertificatesWithListenerResponse> {
|
|
9085
9913
|
Util.validateModel(request);
|
|
9086
9914
|
let query = { };
|
|
9087
|
-
|
|
9088
|
-
|
|
9089
|
-
|
|
9090
|
-
|
|
9091
|
-
|
|
9915
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
9916
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
9917
|
+
}
|
|
9918
|
+
|
|
9919
|
+
if (!Util.isUnset(request.certificates)) {
|
|
9920
|
+
query["Certificates"] = request.certificates;
|
|
9921
|
+
}
|
|
9922
|
+
|
|
9923
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
9924
|
+
query["ClientToken"] = request.clientToken;
|
|
9925
|
+
}
|
|
9926
|
+
|
|
9927
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
9928
|
+
query["ListenerId"] = request.listenerId;
|
|
9929
|
+
}
|
|
9930
|
+
|
|
9931
|
+
if (!Util.isUnset(request.regionId)) {
|
|
9932
|
+
query["RegionId"] = request.regionId;
|
|
9933
|
+
}
|
|
9934
|
+
|
|
9092
9935
|
let req = new $OpenApi.OpenApiRequest({
|
|
9093
9936
|
query: OpenApiUtil.query(query),
|
|
9094
9937
|
});
|
|
@@ -9114,10 +9957,22 @@ export default class Client extends OpenApi {
|
|
|
9114
9957
|
async attachDdosToAcceleratorWithOptions(request: AttachDdosToAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<AttachDdosToAcceleratorResponse> {
|
|
9115
9958
|
Util.validateModel(request);
|
|
9116
9959
|
let query = { };
|
|
9117
|
-
|
|
9118
|
-
|
|
9119
|
-
|
|
9120
|
-
|
|
9960
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
9961
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
9962
|
+
}
|
|
9963
|
+
|
|
9964
|
+
if (!Util.isUnset(request.ddosId)) {
|
|
9965
|
+
query["DdosId"] = request.ddosId;
|
|
9966
|
+
}
|
|
9967
|
+
|
|
9968
|
+
if (!Util.isUnset(request.ddosRegionId)) {
|
|
9969
|
+
query["DdosRegionId"] = request.ddosRegionId;
|
|
9970
|
+
}
|
|
9971
|
+
|
|
9972
|
+
if (!Util.isUnset(request.regionId)) {
|
|
9973
|
+
query["RegionId"] = request.regionId;
|
|
9974
|
+
}
|
|
9975
|
+
|
|
9121
9976
|
let req = new $OpenApi.OpenApiRequest({
|
|
9122
9977
|
query: OpenApiUtil.query(query),
|
|
9123
9978
|
});
|
|
@@ -9143,14 +9998,38 @@ export default class Client extends OpenApi {
|
|
|
9143
9998
|
async attachLogStoreToEndpointGroupWithOptions(request: AttachLogStoreToEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<AttachLogStoreToEndpointGroupResponse> {
|
|
9144
9999
|
Util.validateModel(request);
|
|
9145
10000
|
let query = { };
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
9149
|
-
|
|
9150
|
-
|
|
9151
|
-
|
|
9152
|
-
|
|
9153
|
-
|
|
10001
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10002
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10003
|
+
}
|
|
10004
|
+
|
|
10005
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10006
|
+
query["ClientToken"] = request.clientToken;
|
|
10007
|
+
}
|
|
10008
|
+
|
|
10009
|
+
if (!Util.isUnset(request.endpointGroupIds)) {
|
|
10010
|
+
query["EndpointGroupIds"] = request.endpointGroupIds;
|
|
10011
|
+
}
|
|
10012
|
+
|
|
10013
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10014
|
+
query["ListenerId"] = request.listenerId;
|
|
10015
|
+
}
|
|
10016
|
+
|
|
10017
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10018
|
+
query["RegionId"] = request.regionId;
|
|
10019
|
+
}
|
|
10020
|
+
|
|
10021
|
+
if (!Util.isUnset(request.slsLogStoreName)) {
|
|
10022
|
+
query["SlsLogStoreName"] = request.slsLogStoreName;
|
|
10023
|
+
}
|
|
10024
|
+
|
|
10025
|
+
if (!Util.isUnset(request.slsProjectName)) {
|
|
10026
|
+
query["SlsProjectName"] = request.slsProjectName;
|
|
10027
|
+
}
|
|
10028
|
+
|
|
10029
|
+
if (!Util.isUnset(request.slsRegionId)) {
|
|
10030
|
+
query["SlsRegionId"] = request.slsRegionId;
|
|
10031
|
+
}
|
|
10032
|
+
|
|
9154
10033
|
let req = new $OpenApi.OpenApiRequest({
|
|
9155
10034
|
query: OpenApiUtil.query(query),
|
|
9156
10035
|
});
|
|
@@ -9176,9 +10055,18 @@ export default class Client extends OpenApi {
|
|
|
9176
10055
|
async bandwidthPackageAddAcceleratorWithOptions(request: BandwidthPackageAddAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<BandwidthPackageAddAcceleratorResponse> {
|
|
9177
10056
|
Util.validateModel(request);
|
|
9178
10057
|
let query = { };
|
|
9179
|
-
|
|
9180
|
-
|
|
9181
|
-
|
|
10058
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10059
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10060
|
+
}
|
|
10061
|
+
|
|
10062
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
10063
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
10064
|
+
}
|
|
10065
|
+
|
|
10066
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10067
|
+
query["RegionId"] = request.regionId;
|
|
10068
|
+
}
|
|
10069
|
+
|
|
9182
10070
|
let req = new $OpenApi.OpenApiRequest({
|
|
9183
10071
|
query: OpenApiUtil.query(query),
|
|
9184
10072
|
});
|
|
@@ -9204,9 +10092,18 @@ export default class Client extends OpenApi {
|
|
|
9204
10092
|
async bandwidthPackageRemoveAcceleratorWithOptions(request: BandwidthPackageRemoveAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<BandwidthPackageRemoveAcceleratorResponse> {
|
|
9205
10093
|
Util.validateModel(request);
|
|
9206
10094
|
let query = { };
|
|
9207
|
-
|
|
9208
|
-
|
|
9209
|
-
|
|
10095
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10096
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10097
|
+
}
|
|
10098
|
+
|
|
10099
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
10100
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
10101
|
+
}
|
|
10102
|
+
|
|
10103
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10104
|
+
query["RegionId"] = request.regionId;
|
|
10105
|
+
}
|
|
10106
|
+
|
|
9210
10107
|
let req = new $OpenApi.OpenApiRequest({
|
|
9211
10108
|
query: OpenApiUtil.query(query),
|
|
9212
10109
|
});
|
|
@@ -9232,14 +10129,38 @@ export default class Client extends OpenApi {
|
|
|
9232
10129
|
async configEndpointProbeWithOptions(request: ConfigEndpointProbeRequest, runtime: $Util.RuntimeOptions): Promise<ConfigEndpointProbeResponse> {
|
|
9233
10130
|
Util.validateModel(request);
|
|
9234
10131
|
let query = { };
|
|
9235
|
-
|
|
9236
|
-
|
|
9237
|
-
|
|
9238
|
-
|
|
9239
|
-
|
|
9240
|
-
|
|
9241
|
-
|
|
9242
|
-
|
|
10132
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10133
|
+
query["ClientToken"] = request.clientToken;
|
|
10134
|
+
}
|
|
10135
|
+
|
|
10136
|
+
if (!Util.isUnset(request.enable)) {
|
|
10137
|
+
query["Enable"] = request.enable;
|
|
10138
|
+
}
|
|
10139
|
+
|
|
10140
|
+
if (!Util.isUnset(request.endpoint)) {
|
|
10141
|
+
query["Endpoint"] = request.endpoint;
|
|
10142
|
+
}
|
|
10143
|
+
|
|
10144
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
10145
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
10146
|
+
}
|
|
10147
|
+
|
|
10148
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
10149
|
+
query["EndpointType"] = request.endpointType;
|
|
10150
|
+
}
|
|
10151
|
+
|
|
10152
|
+
if (!Util.isUnset(request.probePort)) {
|
|
10153
|
+
query["ProbePort"] = request.probePort;
|
|
10154
|
+
}
|
|
10155
|
+
|
|
10156
|
+
if (!Util.isUnset(request.probeProtocol)) {
|
|
10157
|
+
query["ProbeProtocol"] = request.probeProtocol;
|
|
10158
|
+
}
|
|
10159
|
+
|
|
10160
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10161
|
+
query["RegionId"] = request.regionId;
|
|
10162
|
+
}
|
|
10163
|
+
|
|
9243
10164
|
let req = new $OpenApi.OpenApiRequest({
|
|
9244
10165
|
query: OpenApiUtil.query(query),
|
|
9245
10166
|
});
|
|
@@ -9265,16 +10186,46 @@ export default class Client extends OpenApi {
|
|
|
9265
10186
|
async createAcceleratorWithOptions(request: CreateAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<CreateAcceleratorResponse> {
|
|
9266
10187
|
Util.validateModel(request);
|
|
9267
10188
|
let query = { };
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
|
|
9276
|
-
|
|
9277
|
-
|
|
10189
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
10190
|
+
query["AutoPay"] = request.autoPay;
|
|
10191
|
+
}
|
|
10192
|
+
|
|
10193
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
10194
|
+
query["AutoRenew"] = request.autoRenew;
|
|
10195
|
+
}
|
|
10196
|
+
|
|
10197
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
10198
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
10199
|
+
}
|
|
10200
|
+
|
|
10201
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
10202
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
10203
|
+
}
|
|
10204
|
+
|
|
10205
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10206
|
+
query["ClientToken"] = request.clientToken;
|
|
10207
|
+
}
|
|
10208
|
+
|
|
10209
|
+
if (!Util.isUnset(request.duration)) {
|
|
10210
|
+
query["Duration"] = request.duration;
|
|
10211
|
+
}
|
|
10212
|
+
|
|
10213
|
+
if (!Util.isUnset(request.name)) {
|
|
10214
|
+
query["Name"] = request.name;
|
|
10215
|
+
}
|
|
10216
|
+
|
|
10217
|
+
if (!Util.isUnset(request.pricingCycle)) {
|
|
10218
|
+
query["PricingCycle"] = request.pricingCycle;
|
|
10219
|
+
}
|
|
10220
|
+
|
|
10221
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10222
|
+
query["RegionId"] = request.regionId;
|
|
10223
|
+
}
|
|
10224
|
+
|
|
10225
|
+
if (!Util.isUnset(request.spec)) {
|
|
10226
|
+
query["Spec"] = request.spec;
|
|
10227
|
+
}
|
|
10228
|
+
|
|
9278
10229
|
let req = new $OpenApi.OpenApiRequest({
|
|
9279
10230
|
query: OpenApiUtil.query(query),
|
|
9280
10231
|
});
|
|
@@ -9300,12 +10251,30 @@ export default class Client extends OpenApi {
|
|
|
9300
10251
|
async createAclWithOptions(request: CreateAclRequest, runtime: $Util.RuntimeOptions): Promise<CreateAclResponse> {
|
|
9301
10252
|
Util.validateModel(request);
|
|
9302
10253
|
let query = { };
|
|
9303
|
-
|
|
9304
|
-
|
|
9305
|
-
|
|
9306
|
-
|
|
9307
|
-
|
|
9308
|
-
|
|
10254
|
+
if (!Util.isUnset(request.aclEntries)) {
|
|
10255
|
+
query["AclEntries"] = request.aclEntries;
|
|
10256
|
+
}
|
|
10257
|
+
|
|
10258
|
+
if (!Util.isUnset(request.aclName)) {
|
|
10259
|
+
query["AclName"] = request.aclName;
|
|
10260
|
+
}
|
|
10261
|
+
|
|
10262
|
+
if (!Util.isUnset(request.addressIPVersion)) {
|
|
10263
|
+
query["AddressIPVersion"] = request.addressIPVersion;
|
|
10264
|
+
}
|
|
10265
|
+
|
|
10266
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10267
|
+
query["ClientToken"] = request.clientToken;
|
|
10268
|
+
}
|
|
10269
|
+
|
|
10270
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
10271
|
+
query["DryRun"] = request.dryRun;
|
|
10272
|
+
}
|
|
10273
|
+
|
|
10274
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10275
|
+
query["RegionId"] = request.regionId;
|
|
10276
|
+
}
|
|
10277
|
+
|
|
9309
10278
|
let req = new $OpenApi.OpenApiRequest({
|
|
9310
10279
|
query: OpenApiUtil.query(query),
|
|
9311
10280
|
});
|
|
@@ -9328,28 +10297,46 @@ export default class Client extends OpenApi {
|
|
|
9328
10297
|
return await this.createAclWithOptions(request, runtime);
|
|
9329
10298
|
}
|
|
9330
10299
|
|
|
9331
|
-
async
|
|
10300
|
+
async createApplicationMonitorWithOptions(request: CreateApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationMonitorResponse> {
|
|
9332
10301
|
Util.validateModel(request);
|
|
9333
10302
|
let query = { };
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
10303
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10304
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10305
|
+
}
|
|
10306
|
+
|
|
10307
|
+
if (!Util.isUnset(request.address)) {
|
|
10308
|
+
query["Address"] = request.address;
|
|
10309
|
+
}
|
|
10310
|
+
|
|
10311
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10312
|
+
query["ClientToken"] = request.clientToken;
|
|
10313
|
+
}
|
|
10314
|
+
|
|
10315
|
+
if (!Util.isUnset(request.detectThreshold)) {
|
|
10316
|
+
query["DetectThreshold"] = request.detectThreshold;
|
|
10317
|
+
}
|
|
10318
|
+
|
|
10319
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10320
|
+
query["ListenerId"] = request.listenerId;
|
|
10321
|
+
}
|
|
10322
|
+
|
|
10323
|
+
if (!Util.isUnset(request.optionsJson)) {
|
|
10324
|
+
query["OptionsJson"] = request.optionsJson;
|
|
10325
|
+
}
|
|
10326
|
+
|
|
10327
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10328
|
+
query["RegionId"] = request.regionId;
|
|
10329
|
+
}
|
|
10330
|
+
|
|
10331
|
+
if (!Util.isUnset(request.taskName)) {
|
|
10332
|
+
query["TaskName"] = request.taskName;
|
|
10333
|
+
}
|
|
10334
|
+
|
|
9348
10335
|
let req = new $OpenApi.OpenApiRequest({
|
|
9349
10336
|
query: OpenApiUtil.query(query),
|
|
9350
10337
|
});
|
|
9351
10338
|
let params = new $OpenApi.Params({
|
|
9352
|
-
action: "
|
|
10339
|
+
action: "CreateApplicationMonitor",
|
|
9353
10340
|
version: "2019-11-20",
|
|
9354
10341
|
protocol: "HTTPS",
|
|
9355
10342
|
pathname: "/",
|
|
@@ -9359,30 +10346,78 @@ export default class Client extends OpenApi {
|
|
|
9359
10346
|
reqBodyType: "formData",
|
|
9360
10347
|
bodyType: "json",
|
|
9361
10348
|
});
|
|
9362
|
-
return $tea.cast<
|
|
10349
|
+
return $tea.cast<CreateApplicationMonitorResponse>(await this.callApi(params, req, runtime), new CreateApplicationMonitorResponse({}));
|
|
9363
10350
|
}
|
|
9364
10351
|
|
|
9365
|
-
async
|
|
10352
|
+
async createApplicationMonitor(request: CreateApplicationMonitorRequest): Promise<CreateApplicationMonitorResponse> {
|
|
9366
10353
|
let runtime = new $Util.RuntimeOptions({ });
|
|
9367
|
-
return await this.
|
|
10354
|
+
return await this.createApplicationMonitorWithOptions(request, runtime);
|
|
9368
10355
|
}
|
|
9369
10356
|
|
|
9370
|
-
async
|
|
10357
|
+
async createBandwidthPackageWithOptions(request: CreateBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<CreateBandwidthPackageResponse> {
|
|
9371
10358
|
Util.validateModel(request);
|
|
9372
10359
|
let query = { };
|
|
9373
|
-
|
|
9374
|
-
|
|
9375
|
-
|
|
9376
|
-
|
|
9377
|
-
|
|
9378
|
-
|
|
9379
|
-
|
|
9380
|
-
|
|
10360
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
10361
|
+
query["AutoPay"] = request.autoPay;
|
|
10362
|
+
}
|
|
10363
|
+
|
|
10364
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
10365
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
10366
|
+
}
|
|
10367
|
+
|
|
10368
|
+
if (!Util.isUnset(request.bandwidth)) {
|
|
10369
|
+
query["Bandwidth"] = request.bandwidth;
|
|
10370
|
+
}
|
|
10371
|
+
|
|
10372
|
+
if (!Util.isUnset(request.bandwidthType)) {
|
|
10373
|
+
query["BandwidthType"] = request.bandwidthType;
|
|
10374
|
+
}
|
|
10375
|
+
|
|
10376
|
+
if (!Util.isUnset(request.billingType)) {
|
|
10377
|
+
query["BillingType"] = request.billingType;
|
|
10378
|
+
}
|
|
10379
|
+
|
|
10380
|
+
if (!Util.isUnset(request.cbnGeographicRegionIdA)) {
|
|
10381
|
+
query["CbnGeographicRegionIdA"] = request.cbnGeographicRegionIdA;
|
|
10382
|
+
}
|
|
10383
|
+
|
|
10384
|
+
if (!Util.isUnset(request.cbnGeographicRegionIdB)) {
|
|
10385
|
+
query["CbnGeographicRegionIdB"] = request.cbnGeographicRegionIdB;
|
|
10386
|
+
}
|
|
10387
|
+
|
|
10388
|
+
if (!Util.isUnset(request.chargeType)) {
|
|
10389
|
+
query["ChargeType"] = request.chargeType;
|
|
10390
|
+
}
|
|
10391
|
+
|
|
10392
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10393
|
+
query["ClientToken"] = request.clientToken;
|
|
10394
|
+
}
|
|
10395
|
+
|
|
10396
|
+
if (!Util.isUnset(request.duration)) {
|
|
10397
|
+
query["Duration"] = request.duration;
|
|
10398
|
+
}
|
|
10399
|
+
|
|
10400
|
+
if (!Util.isUnset(request.pricingCycle)) {
|
|
10401
|
+
query["PricingCycle"] = request.pricingCycle;
|
|
10402
|
+
}
|
|
10403
|
+
|
|
10404
|
+
if (!Util.isUnset(request.ratio)) {
|
|
10405
|
+
query["Ratio"] = request.ratio;
|
|
10406
|
+
}
|
|
10407
|
+
|
|
10408
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10409
|
+
query["RegionId"] = request.regionId;
|
|
10410
|
+
}
|
|
10411
|
+
|
|
10412
|
+
if (!Util.isUnset(request.type)) {
|
|
10413
|
+
query["Type"] = request.type;
|
|
10414
|
+
}
|
|
10415
|
+
|
|
9381
10416
|
let req = new $OpenApi.OpenApiRequest({
|
|
9382
10417
|
query: OpenApiUtil.query(query),
|
|
9383
10418
|
});
|
|
9384
10419
|
let params = new $OpenApi.Params({
|
|
9385
|
-
action: "
|
|
10420
|
+
action: "CreateBandwidthPackage",
|
|
9386
10421
|
version: "2019-11-20",
|
|
9387
10422
|
protocol: "HTTPS",
|
|
9388
10423
|
pathname: "/",
|
|
@@ -9392,30 +10427,54 @@ export default class Client extends OpenApi {
|
|
|
9392
10427
|
reqBodyType: "formData",
|
|
9393
10428
|
bodyType: "json",
|
|
9394
10429
|
});
|
|
9395
|
-
return $tea.cast<
|
|
10430
|
+
return $tea.cast<CreateBandwidthPackageResponse>(await this.callApi(params, req, runtime), new CreateBandwidthPackageResponse({}));
|
|
9396
10431
|
}
|
|
9397
10432
|
|
|
9398
|
-
async
|
|
10433
|
+
async createBandwidthPackage(request: CreateBandwidthPackageRequest): Promise<CreateBandwidthPackageResponse> {
|
|
9399
10434
|
let runtime = new $Util.RuntimeOptions({ });
|
|
9400
|
-
return await this.
|
|
10435
|
+
return await this.createBandwidthPackageWithOptions(request, runtime);
|
|
9401
10436
|
}
|
|
9402
10437
|
|
|
9403
|
-
async
|
|
10438
|
+
async createBasicAcceleratorWithOptions(request: CreateBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicAcceleratorResponse> {
|
|
9404
10439
|
Util.validateModel(request);
|
|
9405
10440
|
let query = { };
|
|
9406
|
-
|
|
9407
|
-
|
|
9408
|
-
|
|
9409
|
-
|
|
9410
|
-
|
|
9411
|
-
|
|
9412
|
-
|
|
9413
|
-
|
|
10441
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
10442
|
+
query["AutoPay"] = request.autoPay;
|
|
10443
|
+
}
|
|
10444
|
+
|
|
10445
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
10446
|
+
query["AutoRenew"] = request.autoRenew;
|
|
10447
|
+
}
|
|
10448
|
+
|
|
10449
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
10450
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
10451
|
+
}
|
|
10452
|
+
|
|
10453
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
10454
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
10455
|
+
}
|
|
10456
|
+
|
|
10457
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10458
|
+
query["ClientToken"] = request.clientToken;
|
|
10459
|
+
}
|
|
10460
|
+
|
|
10461
|
+
if (!Util.isUnset(request.duration)) {
|
|
10462
|
+
query["Duration"] = request.duration;
|
|
10463
|
+
}
|
|
10464
|
+
|
|
10465
|
+
if (!Util.isUnset(request.pricingCycle)) {
|
|
10466
|
+
query["PricingCycle"] = request.pricingCycle;
|
|
10467
|
+
}
|
|
10468
|
+
|
|
10469
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10470
|
+
query["RegionId"] = request.regionId;
|
|
10471
|
+
}
|
|
10472
|
+
|
|
9414
10473
|
let req = new $OpenApi.OpenApiRequest({
|
|
9415
10474
|
query: OpenApiUtil.query(query),
|
|
9416
10475
|
});
|
|
9417
10476
|
let params = new $OpenApi.Params({
|
|
9418
|
-
action: "
|
|
10477
|
+
action: "CreateBasicAccelerator",
|
|
9419
10478
|
version: "2019-11-20",
|
|
9420
10479
|
protocol: "HTTPS",
|
|
9421
10480
|
pathname: "/",
|
|
@@ -9425,24 +10484,93 @@ export default class Client extends OpenApi {
|
|
|
9425
10484
|
reqBodyType: "formData",
|
|
9426
10485
|
bodyType: "json",
|
|
9427
10486
|
});
|
|
9428
|
-
return $tea.cast<
|
|
10487
|
+
return $tea.cast<CreateBasicAcceleratorResponse>(await this.callApi(params, req, runtime), new CreateBasicAcceleratorResponse({}));
|
|
9429
10488
|
}
|
|
9430
10489
|
|
|
9431
|
-
async
|
|
10490
|
+
async createBasicAccelerator(request: CreateBasicAcceleratorRequest): Promise<CreateBasicAcceleratorResponse> {
|
|
9432
10491
|
let runtime = new $Util.RuntimeOptions({ });
|
|
9433
|
-
return await this.
|
|
10492
|
+
return await this.createBasicAcceleratorWithOptions(request, runtime);
|
|
9434
10493
|
}
|
|
9435
10494
|
|
|
9436
|
-
async
|
|
10495
|
+
async createBasicEndpointGroupWithOptions(request: CreateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointGroupResponse> {
|
|
9437
10496
|
Util.validateModel(request);
|
|
9438
10497
|
let query = { };
|
|
9439
|
-
|
|
9440
|
-
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
|
|
9444
|
-
query
|
|
9445
|
-
}
|
|
10498
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10499
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10500
|
+
}
|
|
10501
|
+
|
|
10502
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10503
|
+
query["ClientToken"] = request.clientToken;
|
|
10504
|
+
}
|
|
10505
|
+
|
|
10506
|
+
if (!Util.isUnset(request.description)) {
|
|
10507
|
+
query["Description"] = request.description;
|
|
10508
|
+
}
|
|
10509
|
+
|
|
10510
|
+
if (!Util.isUnset(request.endpointAddress)) {
|
|
10511
|
+
query["EndpointAddress"] = request.endpointAddress;
|
|
10512
|
+
}
|
|
10513
|
+
|
|
10514
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
10515
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
10516
|
+
}
|
|
10517
|
+
|
|
10518
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
10519
|
+
query["EndpointType"] = request.endpointType;
|
|
10520
|
+
}
|
|
10521
|
+
|
|
10522
|
+
if (!Util.isUnset(request.name)) {
|
|
10523
|
+
query["Name"] = request.name;
|
|
10524
|
+
}
|
|
10525
|
+
|
|
10526
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10527
|
+
query["RegionId"] = request.regionId;
|
|
10528
|
+
}
|
|
10529
|
+
|
|
10530
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
10531
|
+
query: OpenApiUtil.query(query),
|
|
10532
|
+
});
|
|
10533
|
+
let params = new $OpenApi.Params({
|
|
10534
|
+
action: "CreateBasicEndpointGroup",
|
|
10535
|
+
version: "2019-11-20",
|
|
10536
|
+
protocol: "HTTPS",
|
|
10537
|
+
pathname: "/",
|
|
10538
|
+
method: "POST",
|
|
10539
|
+
authType: "AK",
|
|
10540
|
+
style: "RPC",
|
|
10541
|
+
reqBodyType: "formData",
|
|
10542
|
+
bodyType: "json",
|
|
10543
|
+
});
|
|
10544
|
+
return $tea.cast<CreateBasicEndpointGroupResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointGroupResponse({}));
|
|
10545
|
+
}
|
|
10546
|
+
|
|
10547
|
+
async createBasicEndpointGroup(request: CreateBasicEndpointGroupRequest): Promise<CreateBasicEndpointGroupResponse> {
|
|
10548
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
10549
|
+
return await this.createBasicEndpointGroupWithOptions(request, runtime);
|
|
10550
|
+
}
|
|
10551
|
+
|
|
10552
|
+
async createBasicIpSetWithOptions(request: CreateBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicIpSetResponse> {
|
|
10553
|
+
Util.validateModel(request);
|
|
10554
|
+
let query = { };
|
|
10555
|
+
if (!Util.isUnset(request.accelerateRegionId)) {
|
|
10556
|
+
query["AccelerateRegionId"] = request.accelerateRegionId;
|
|
10557
|
+
}
|
|
10558
|
+
|
|
10559
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10560
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10561
|
+
}
|
|
10562
|
+
|
|
10563
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10564
|
+
query["ClientToken"] = request.clientToken;
|
|
10565
|
+
}
|
|
10566
|
+
|
|
10567
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10568
|
+
query["RegionId"] = request.regionId;
|
|
10569
|
+
}
|
|
10570
|
+
|
|
10571
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
10572
|
+
query: OpenApiUtil.query(query),
|
|
10573
|
+
});
|
|
9446
10574
|
let params = new $OpenApi.Params({
|
|
9447
10575
|
action: "CreateBasicIpSet",
|
|
9448
10576
|
version: "2019-11-20",
|
|
@@ -9465,24 +10593,78 @@ export default class Client extends OpenApi {
|
|
|
9465
10593
|
async createEndpointGroupWithOptions(request: CreateEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateEndpointGroupResponse> {
|
|
9466
10594
|
Util.validateModel(request);
|
|
9467
10595
|
let query = { };
|
|
9468
|
-
|
|
9469
|
-
|
|
9470
|
-
|
|
9471
|
-
|
|
9472
|
-
|
|
9473
|
-
|
|
9474
|
-
|
|
9475
|
-
|
|
9476
|
-
|
|
9477
|
-
|
|
9478
|
-
|
|
9479
|
-
|
|
9480
|
-
|
|
9481
|
-
|
|
9482
|
-
|
|
9483
|
-
|
|
9484
|
-
|
|
9485
|
-
|
|
10596
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10597
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10598
|
+
}
|
|
10599
|
+
|
|
10600
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10601
|
+
query["ClientToken"] = request.clientToken;
|
|
10602
|
+
}
|
|
10603
|
+
|
|
10604
|
+
if (!Util.isUnset(request.description)) {
|
|
10605
|
+
query["Description"] = request.description;
|
|
10606
|
+
}
|
|
10607
|
+
|
|
10608
|
+
if (!Util.isUnset(request.endpointConfigurations)) {
|
|
10609
|
+
query["EndpointConfigurations"] = request.endpointConfigurations;
|
|
10610
|
+
}
|
|
10611
|
+
|
|
10612
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
10613
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
10614
|
+
}
|
|
10615
|
+
|
|
10616
|
+
if (!Util.isUnset(request.endpointGroupType)) {
|
|
10617
|
+
query["EndpointGroupType"] = request.endpointGroupType;
|
|
10618
|
+
}
|
|
10619
|
+
|
|
10620
|
+
if (!Util.isUnset(request.endpointRequestProtocol)) {
|
|
10621
|
+
query["EndpointRequestProtocol"] = request.endpointRequestProtocol;
|
|
10622
|
+
}
|
|
10623
|
+
|
|
10624
|
+
if (!Util.isUnset(request.healthCheckEnabled)) {
|
|
10625
|
+
query["HealthCheckEnabled"] = request.healthCheckEnabled;
|
|
10626
|
+
}
|
|
10627
|
+
|
|
10628
|
+
if (!Util.isUnset(request.healthCheckIntervalSeconds)) {
|
|
10629
|
+
query["HealthCheckIntervalSeconds"] = request.healthCheckIntervalSeconds;
|
|
10630
|
+
}
|
|
10631
|
+
|
|
10632
|
+
if (!Util.isUnset(request.healthCheckPath)) {
|
|
10633
|
+
query["HealthCheckPath"] = request.healthCheckPath;
|
|
10634
|
+
}
|
|
10635
|
+
|
|
10636
|
+
if (!Util.isUnset(request.healthCheckPort)) {
|
|
10637
|
+
query["HealthCheckPort"] = request.healthCheckPort;
|
|
10638
|
+
}
|
|
10639
|
+
|
|
10640
|
+
if (!Util.isUnset(request.healthCheckProtocol)) {
|
|
10641
|
+
query["HealthCheckProtocol"] = request.healthCheckProtocol;
|
|
10642
|
+
}
|
|
10643
|
+
|
|
10644
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10645
|
+
query["ListenerId"] = request.listenerId;
|
|
10646
|
+
}
|
|
10647
|
+
|
|
10648
|
+
if (!Util.isUnset(request.name)) {
|
|
10649
|
+
query["Name"] = request.name;
|
|
10650
|
+
}
|
|
10651
|
+
|
|
10652
|
+
if (!Util.isUnset(request.portOverrides)) {
|
|
10653
|
+
query["PortOverrides"] = request.portOverrides;
|
|
10654
|
+
}
|
|
10655
|
+
|
|
10656
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10657
|
+
query["RegionId"] = request.regionId;
|
|
10658
|
+
}
|
|
10659
|
+
|
|
10660
|
+
if (!Util.isUnset(request.thresholdCount)) {
|
|
10661
|
+
query["ThresholdCount"] = request.thresholdCount;
|
|
10662
|
+
}
|
|
10663
|
+
|
|
10664
|
+
if (!Util.isUnset(request.trafficPercentage)) {
|
|
10665
|
+
query["TrafficPercentage"] = request.trafficPercentage;
|
|
10666
|
+
}
|
|
10667
|
+
|
|
9486
10668
|
let req = new $OpenApi.OpenApiRequest({
|
|
9487
10669
|
query: OpenApiUtil.query(query),
|
|
9488
10670
|
});
|
|
@@ -9508,12 +10690,30 @@ export default class Client extends OpenApi {
|
|
|
9508
10690
|
async createEndpointGroupsWithOptions(request: CreateEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<CreateEndpointGroupsResponse> {
|
|
9509
10691
|
Util.validateModel(request);
|
|
9510
10692
|
let query = { };
|
|
9511
|
-
|
|
9512
|
-
|
|
9513
|
-
|
|
9514
|
-
|
|
9515
|
-
|
|
9516
|
-
|
|
10693
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10694
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10695
|
+
}
|
|
10696
|
+
|
|
10697
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10698
|
+
query["ClientToken"] = request.clientToken;
|
|
10699
|
+
}
|
|
10700
|
+
|
|
10701
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
10702
|
+
query["DryRun"] = request.dryRun;
|
|
10703
|
+
}
|
|
10704
|
+
|
|
10705
|
+
if (!Util.isUnset(request.endpointGroupConfigurations)) {
|
|
10706
|
+
query["EndpointGroupConfigurations"] = request.endpointGroupConfigurations;
|
|
10707
|
+
}
|
|
10708
|
+
|
|
10709
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10710
|
+
query["ListenerId"] = request.listenerId;
|
|
10711
|
+
}
|
|
10712
|
+
|
|
10713
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10714
|
+
query["RegionId"] = request.regionId;
|
|
10715
|
+
}
|
|
10716
|
+
|
|
9517
10717
|
let req = new $OpenApi.OpenApiRequest({
|
|
9518
10718
|
query: OpenApiUtil.query(query),
|
|
9519
10719
|
});
|
|
@@ -9539,11 +10739,26 @@ export default class Client extends OpenApi {
|
|
|
9539
10739
|
async createForwardingRulesWithOptions(request: CreateForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<CreateForwardingRulesResponse> {
|
|
9540
10740
|
Util.validateModel(request);
|
|
9541
10741
|
let query = { };
|
|
9542
|
-
|
|
9543
|
-
|
|
9544
|
-
|
|
9545
|
-
|
|
9546
|
-
|
|
10742
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10743
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10744
|
+
}
|
|
10745
|
+
|
|
10746
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10747
|
+
query["ClientToken"] = request.clientToken;
|
|
10748
|
+
}
|
|
10749
|
+
|
|
10750
|
+
if (!Util.isUnset(request.forwardingRules)) {
|
|
10751
|
+
query["ForwardingRules"] = request.forwardingRules;
|
|
10752
|
+
}
|
|
10753
|
+
|
|
10754
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
10755
|
+
query["ListenerId"] = request.listenerId;
|
|
10756
|
+
}
|
|
10757
|
+
|
|
10758
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10759
|
+
query["RegionId"] = request.regionId;
|
|
10760
|
+
}
|
|
10761
|
+
|
|
9547
10762
|
let req = new $OpenApi.OpenApiRequest({
|
|
9548
10763
|
query: OpenApiUtil.query(query),
|
|
9549
10764
|
});
|
|
@@ -9569,10 +10784,22 @@ export default class Client extends OpenApi {
|
|
|
9569
10784
|
async createIpSetsWithOptions(request: CreateIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<CreateIpSetsResponse> {
|
|
9570
10785
|
Util.validateModel(request);
|
|
9571
10786
|
let query = { };
|
|
9572
|
-
|
|
9573
|
-
|
|
9574
|
-
|
|
9575
|
-
|
|
10787
|
+
if (!Util.isUnset(request.accelerateRegion)) {
|
|
10788
|
+
query["AccelerateRegion"] = request.accelerateRegion;
|
|
10789
|
+
}
|
|
10790
|
+
|
|
10791
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10792
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10793
|
+
}
|
|
10794
|
+
|
|
10795
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10796
|
+
query["ClientToken"] = request.clientToken;
|
|
10797
|
+
}
|
|
10798
|
+
|
|
10799
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10800
|
+
query["RegionId"] = request.regionId;
|
|
10801
|
+
}
|
|
10802
|
+
|
|
9576
10803
|
let req = new $OpenApi.OpenApiRequest({
|
|
9577
10804
|
query: OpenApiUtil.query(query),
|
|
9578
10805
|
});
|
|
@@ -9598,18 +10825,54 @@ export default class Client extends OpenApi {
|
|
|
9598
10825
|
async createListenerWithOptions(request: CreateListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateListenerResponse> {
|
|
9599
10826
|
Util.validateModel(request);
|
|
9600
10827
|
let query = { };
|
|
9601
|
-
|
|
9602
|
-
|
|
9603
|
-
|
|
9604
|
-
|
|
9605
|
-
|
|
9606
|
-
|
|
9607
|
-
|
|
9608
|
-
|
|
9609
|
-
|
|
9610
|
-
|
|
9611
|
-
|
|
9612
|
-
|
|
10828
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10829
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10830
|
+
}
|
|
10831
|
+
|
|
10832
|
+
if (!Util.isUnset(request.certificates)) {
|
|
10833
|
+
query["Certificates"] = request.certificates;
|
|
10834
|
+
}
|
|
10835
|
+
|
|
10836
|
+
if (!Util.isUnset(request.clientAffinity)) {
|
|
10837
|
+
query["ClientAffinity"] = request.clientAffinity;
|
|
10838
|
+
}
|
|
10839
|
+
|
|
10840
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10841
|
+
query["ClientToken"] = request.clientToken;
|
|
10842
|
+
}
|
|
10843
|
+
|
|
10844
|
+
if (!Util.isUnset(request.description)) {
|
|
10845
|
+
query["Description"] = request.description;
|
|
10846
|
+
}
|
|
10847
|
+
|
|
10848
|
+
if (!Util.isUnset(request.name)) {
|
|
10849
|
+
query["Name"] = request.name;
|
|
10850
|
+
}
|
|
10851
|
+
|
|
10852
|
+
if (!Util.isUnset(request.portRanges)) {
|
|
10853
|
+
query["PortRanges"] = request.portRanges;
|
|
10854
|
+
}
|
|
10855
|
+
|
|
10856
|
+
if (!Util.isUnset(request.protocol)) {
|
|
10857
|
+
query["Protocol"] = request.protocol;
|
|
10858
|
+
}
|
|
10859
|
+
|
|
10860
|
+
if (!Util.isUnset(request.proxyProtocol)) {
|
|
10861
|
+
query["ProxyProtocol"] = request.proxyProtocol;
|
|
10862
|
+
}
|
|
10863
|
+
|
|
10864
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10865
|
+
query["RegionId"] = request.regionId;
|
|
10866
|
+
}
|
|
10867
|
+
|
|
10868
|
+
if (!Util.isUnset(request.securityPolicyId)) {
|
|
10869
|
+
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
10870
|
+
}
|
|
10871
|
+
|
|
10872
|
+
if (!Util.isUnset($tea.toMap(request.XForwardedForConfig))) {
|
|
10873
|
+
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
10874
|
+
}
|
|
10875
|
+
|
|
9613
10876
|
let req = new $OpenApi.OpenApiRequest({
|
|
9614
10877
|
query: OpenApiUtil.query(query),
|
|
9615
10878
|
});
|
|
@@ -9635,11 +10898,26 @@ export default class Client extends OpenApi {
|
|
|
9635
10898
|
async createSpareIpsWithOptions(request: CreateSpareIpsRequest, runtime: $Util.RuntimeOptions): Promise<CreateSpareIpsResponse> {
|
|
9636
10899
|
Util.validateModel(request);
|
|
9637
10900
|
let query = { };
|
|
9638
|
-
|
|
9639
|
-
|
|
9640
|
-
|
|
9641
|
-
|
|
9642
|
-
|
|
10901
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10902
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10903
|
+
}
|
|
10904
|
+
|
|
10905
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10906
|
+
query["ClientToken"] = request.clientToken;
|
|
10907
|
+
}
|
|
10908
|
+
|
|
10909
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
10910
|
+
query["DryRun"] = request.dryRun;
|
|
10911
|
+
}
|
|
10912
|
+
|
|
10913
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10914
|
+
query["RegionId"] = request.regionId;
|
|
10915
|
+
}
|
|
10916
|
+
|
|
10917
|
+
if (!Util.isUnset(request.spareIps)) {
|
|
10918
|
+
query["SpareIps"] = request.spareIps;
|
|
10919
|
+
}
|
|
10920
|
+
|
|
9643
10921
|
let req = new $OpenApi.OpenApiRequest({
|
|
9644
10922
|
query: OpenApiUtil.query(query),
|
|
9645
10923
|
});
|
|
@@ -9665,8 +10943,14 @@ export default class Client extends OpenApi {
|
|
|
9665
10943
|
async deleteAcceleratorWithOptions(request: DeleteAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAcceleratorResponse> {
|
|
9666
10944
|
Util.validateModel(request);
|
|
9667
10945
|
let query = { };
|
|
9668
|
-
|
|
9669
|
-
|
|
10946
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
10947
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
10948
|
+
}
|
|
10949
|
+
|
|
10950
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10951
|
+
query["RegionId"] = request.regionId;
|
|
10952
|
+
}
|
|
10953
|
+
|
|
9670
10954
|
let req = new $OpenApi.OpenApiRequest({
|
|
9671
10955
|
query: OpenApiUtil.query(query),
|
|
9672
10956
|
});
|
|
@@ -9692,10 +10976,22 @@ export default class Client extends OpenApi {
|
|
|
9692
10976
|
async deleteAclWithOptions(request: DeleteAclRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAclResponse> {
|
|
9693
10977
|
Util.validateModel(request);
|
|
9694
10978
|
let query = { };
|
|
9695
|
-
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
|
-
|
|
10979
|
+
if (!Util.isUnset(request.aclId)) {
|
|
10980
|
+
query["AclId"] = request.aclId;
|
|
10981
|
+
}
|
|
10982
|
+
|
|
10983
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
10984
|
+
query["ClientToken"] = request.clientToken;
|
|
10985
|
+
}
|
|
10986
|
+
|
|
10987
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
10988
|
+
query["DryRun"] = request.dryRun;
|
|
10989
|
+
}
|
|
10990
|
+
|
|
10991
|
+
if (!Util.isUnset(request.regionId)) {
|
|
10992
|
+
query["RegionId"] = request.regionId;
|
|
10993
|
+
}
|
|
10994
|
+
|
|
9699
10995
|
let req = new $OpenApi.OpenApiRequest({
|
|
9700
10996
|
query: OpenApiUtil.query(query),
|
|
9701
10997
|
});
|
|
@@ -9718,12 +11014,58 @@ export default class Client extends OpenApi {
|
|
|
9718
11014
|
return await this.deleteAclWithOptions(request, runtime);
|
|
9719
11015
|
}
|
|
9720
11016
|
|
|
11017
|
+
async deleteApplicationMonitorWithOptions(request: DeleteApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationMonitorResponse> {
|
|
11018
|
+
Util.validateModel(request);
|
|
11019
|
+
let query = { };
|
|
11020
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11021
|
+
query["ClientToken"] = request.clientToken;
|
|
11022
|
+
}
|
|
11023
|
+
|
|
11024
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11025
|
+
query["RegionId"] = request.regionId;
|
|
11026
|
+
}
|
|
11027
|
+
|
|
11028
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11029
|
+
query["TaskId"] = request.taskId;
|
|
11030
|
+
}
|
|
11031
|
+
|
|
11032
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11033
|
+
query: OpenApiUtil.query(query),
|
|
11034
|
+
});
|
|
11035
|
+
let params = new $OpenApi.Params({
|
|
11036
|
+
action: "DeleteApplicationMonitor",
|
|
11037
|
+
version: "2019-11-20",
|
|
11038
|
+
protocol: "HTTPS",
|
|
11039
|
+
pathname: "/",
|
|
11040
|
+
method: "POST",
|
|
11041
|
+
authType: "AK",
|
|
11042
|
+
style: "RPC",
|
|
11043
|
+
reqBodyType: "formData",
|
|
11044
|
+
bodyType: "json",
|
|
11045
|
+
});
|
|
11046
|
+
return $tea.cast<DeleteApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DeleteApplicationMonitorResponse({}));
|
|
11047
|
+
}
|
|
11048
|
+
|
|
11049
|
+
async deleteApplicationMonitor(request: DeleteApplicationMonitorRequest): Promise<DeleteApplicationMonitorResponse> {
|
|
11050
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
11051
|
+
return await this.deleteApplicationMonitorWithOptions(request, runtime);
|
|
11052
|
+
}
|
|
11053
|
+
|
|
9721
11054
|
async deleteBandwidthPackageWithOptions(request: DeleteBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBandwidthPackageResponse> {
|
|
9722
11055
|
Util.validateModel(request);
|
|
9723
11056
|
let query = { };
|
|
9724
|
-
|
|
9725
|
-
|
|
9726
|
-
|
|
11057
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
11058
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
11059
|
+
}
|
|
11060
|
+
|
|
11061
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11062
|
+
query["ClientToken"] = request.clientToken;
|
|
11063
|
+
}
|
|
11064
|
+
|
|
11065
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11066
|
+
query["RegionId"] = request.regionId;
|
|
11067
|
+
}
|
|
11068
|
+
|
|
9727
11069
|
let req = new $OpenApi.OpenApiRequest({
|
|
9728
11070
|
query: OpenApiUtil.query(query),
|
|
9729
11071
|
});
|
|
@@ -9749,8 +11091,14 @@ export default class Client extends OpenApi {
|
|
|
9749
11091
|
async deleteBasicAcceleratorWithOptions(request: DeleteBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicAcceleratorResponse> {
|
|
9750
11092
|
Util.validateModel(request);
|
|
9751
11093
|
let query = { };
|
|
9752
|
-
|
|
9753
|
-
|
|
11094
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11095
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11096
|
+
}
|
|
11097
|
+
|
|
11098
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11099
|
+
query["RegionId"] = request.regionId;
|
|
11100
|
+
}
|
|
11101
|
+
|
|
9754
11102
|
let req = new $OpenApi.OpenApiRequest({
|
|
9755
11103
|
query: OpenApiUtil.query(query),
|
|
9756
11104
|
});
|
|
@@ -9776,8 +11124,14 @@ export default class Client extends OpenApi {
|
|
|
9776
11124
|
async deleteBasicEndpointGroupWithOptions(request: DeleteBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicEndpointGroupResponse> {
|
|
9777
11125
|
Util.validateModel(request);
|
|
9778
11126
|
let query = { };
|
|
9779
|
-
|
|
9780
|
-
|
|
11127
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11128
|
+
query["ClientToken"] = request.clientToken;
|
|
11129
|
+
}
|
|
11130
|
+
|
|
11131
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
11132
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
11133
|
+
}
|
|
11134
|
+
|
|
9781
11135
|
let req = new $OpenApi.OpenApiRequest({
|
|
9782
11136
|
query: OpenApiUtil.query(query),
|
|
9783
11137
|
});
|
|
@@ -9803,9 +11157,18 @@ export default class Client extends OpenApi {
|
|
|
9803
11157
|
async deleteBasicIpSetWithOptions(request: DeleteBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicIpSetResponse> {
|
|
9804
11158
|
Util.validateModel(request);
|
|
9805
11159
|
let query = { };
|
|
9806
|
-
|
|
9807
|
-
|
|
9808
|
-
|
|
11160
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11161
|
+
query["ClientToken"] = request.clientToken;
|
|
11162
|
+
}
|
|
11163
|
+
|
|
11164
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
11165
|
+
query["IpSetId"] = request.ipSetId;
|
|
11166
|
+
}
|
|
11167
|
+
|
|
11168
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11169
|
+
query["RegionId"] = request.regionId;
|
|
11170
|
+
}
|
|
11171
|
+
|
|
9809
11172
|
let req = new $OpenApi.OpenApiRequest({
|
|
9810
11173
|
query: OpenApiUtil.query(query),
|
|
9811
11174
|
});
|
|
@@ -9831,9 +11194,18 @@ export default class Client extends OpenApi {
|
|
|
9831
11194
|
async deleteEndpointGroupWithOptions(request: DeleteEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteEndpointGroupResponse> {
|
|
9832
11195
|
Util.validateModel(request);
|
|
9833
11196
|
let query = { };
|
|
9834
|
-
|
|
9835
|
-
|
|
9836
|
-
|
|
11197
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11198
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11199
|
+
}
|
|
11200
|
+
|
|
11201
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11202
|
+
query["ClientToken"] = request.clientToken;
|
|
11203
|
+
}
|
|
11204
|
+
|
|
11205
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
11206
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
11207
|
+
}
|
|
11208
|
+
|
|
9837
11209
|
let req = new $OpenApi.OpenApiRequest({
|
|
9838
11210
|
query: OpenApiUtil.query(query),
|
|
9839
11211
|
});
|
|
@@ -9859,10 +11231,22 @@ export default class Client extends OpenApi {
|
|
|
9859
11231
|
async deleteEndpointGroupsWithOptions(request: DeleteEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteEndpointGroupsResponse> {
|
|
9860
11232
|
Util.validateModel(request);
|
|
9861
11233
|
let query = { };
|
|
9862
|
-
|
|
9863
|
-
|
|
9864
|
-
|
|
9865
|
-
|
|
11234
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11235
|
+
query["ClientToken"] = request.clientToken;
|
|
11236
|
+
}
|
|
11237
|
+
|
|
11238
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
11239
|
+
query["DryRun"] = request.dryRun;
|
|
11240
|
+
}
|
|
11241
|
+
|
|
11242
|
+
if (!Util.isUnset(request.endpointGroupIds)) {
|
|
11243
|
+
query["EndpointGroupIds"] = request.endpointGroupIds;
|
|
11244
|
+
}
|
|
11245
|
+
|
|
11246
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11247
|
+
query["RegionId"] = request.regionId;
|
|
11248
|
+
}
|
|
11249
|
+
|
|
9866
11250
|
let req = new $OpenApi.OpenApiRequest({
|
|
9867
11251
|
query: OpenApiUtil.query(query),
|
|
9868
11252
|
});
|
|
@@ -9888,11 +11272,26 @@ export default class Client extends OpenApi {
|
|
|
9888
11272
|
async deleteForwardingRulesWithOptions(request: DeleteForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteForwardingRulesResponse> {
|
|
9889
11273
|
Util.validateModel(request);
|
|
9890
11274
|
let query = { };
|
|
9891
|
-
|
|
9892
|
-
|
|
9893
|
-
|
|
9894
|
-
|
|
9895
|
-
|
|
11275
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11276
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11277
|
+
}
|
|
11278
|
+
|
|
11279
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11280
|
+
query["ClientToken"] = request.clientToken;
|
|
11281
|
+
}
|
|
11282
|
+
|
|
11283
|
+
if (!Util.isUnset(request.forwardingRuleIds)) {
|
|
11284
|
+
query["ForwardingRuleIds"] = request.forwardingRuleIds;
|
|
11285
|
+
}
|
|
11286
|
+
|
|
11287
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11288
|
+
query["ListenerId"] = request.listenerId;
|
|
11289
|
+
}
|
|
11290
|
+
|
|
11291
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11292
|
+
query["RegionId"] = request.regionId;
|
|
11293
|
+
}
|
|
11294
|
+
|
|
9896
11295
|
let req = new $OpenApi.OpenApiRequest({
|
|
9897
11296
|
query: OpenApiUtil.query(query),
|
|
9898
11297
|
});
|
|
@@ -9918,10 +11317,22 @@ export default class Client extends OpenApi {
|
|
|
9918
11317
|
async deleteIpSetWithOptions(request: DeleteIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteIpSetResponse> {
|
|
9919
11318
|
Util.validateModel(request);
|
|
9920
11319
|
let query = { };
|
|
9921
|
-
|
|
9922
|
-
|
|
9923
|
-
|
|
9924
|
-
|
|
11320
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11321
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11322
|
+
}
|
|
11323
|
+
|
|
11324
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11325
|
+
query["ClientToken"] = request.clientToken;
|
|
11326
|
+
}
|
|
11327
|
+
|
|
11328
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
11329
|
+
query["IpSetId"] = request.ipSetId;
|
|
11330
|
+
}
|
|
11331
|
+
|
|
11332
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11333
|
+
query["RegionId"] = request.regionId;
|
|
11334
|
+
}
|
|
11335
|
+
|
|
9925
11336
|
let req = new $OpenApi.OpenApiRequest({
|
|
9926
11337
|
query: OpenApiUtil.query(query),
|
|
9927
11338
|
});
|
|
@@ -9947,8 +11358,14 @@ export default class Client extends OpenApi {
|
|
|
9947
11358
|
async deleteIpSetsWithOptions(request: DeleteIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteIpSetsResponse> {
|
|
9948
11359
|
Util.validateModel(request);
|
|
9949
11360
|
let query = { };
|
|
9950
|
-
|
|
9951
|
-
|
|
11361
|
+
if (!Util.isUnset(request.ipSetIds)) {
|
|
11362
|
+
query["IpSetIds"] = request.ipSetIds;
|
|
11363
|
+
}
|
|
11364
|
+
|
|
11365
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11366
|
+
query["RegionId"] = request.regionId;
|
|
11367
|
+
}
|
|
11368
|
+
|
|
9952
11369
|
let req = new $OpenApi.OpenApiRequest({
|
|
9953
11370
|
query: OpenApiUtil.query(query),
|
|
9954
11371
|
});
|
|
@@ -9974,9 +11391,18 @@ export default class Client extends OpenApi {
|
|
|
9974
11391
|
async deleteListenerWithOptions(request: DeleteListenerRequest, runtime: $Util.RuntimeOptions): Promise<DeleteListenerResponse> {
|
|
9975
11392
|
Util.validateModel(request);
|
|
9976
11393
|
let query = { };
|
|
9977
|
-
|
|
9978
|
-
|
|
9979
|
-
|
|
11394
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11395
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11396
|
+
}
|
|
11397
|
+
|
|
11398
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11399
|
+
query["ClientToken"] = request.clientToken;
|
|
11400
|
+
}
|
|
11401
|
+
|
|
11402
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11403
|
+
query["ListenerId"] = request.listenerId;
|
|
11404
|
+
}
|
|
11405
|
+
|
|
9980
11406
|
let req = new $OpenApi.OpenApiRequest({
|
|
9981
11407
|
query: OpenApiUtil.query(query),
|
|
9982
11408
|
});
|
|
@@ -10002,15 +11428,30 @@ export default class Client extends OpenApi {
|
|
|
10002
11428
|
async deleteSpareIpsWithOptions(request: DeleteSpareIpsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSpareIpsResponse> {
|
|
10003
11429
|
Util.validateModel(request);
|
|
10004
11430
|
let query = { };
|
|
10005
|
-
|
|
10006
|
-
|
|
10007
|
-
|
|
10008
|
-
|
|
10009
|
-
|
|
10010
|
-
|
|
10011
|
-
|
|
10012
|
-
|
|
10013
|
-
|
|
11431
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11432
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11433
|
+
}
|
|
11434
|
+
|
|
11435
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11436
|
+
query["ClientToken"] = request.clientToken;
|
|
11437
|
+
}
|
|
11438
|
+
|
|
11439
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
11440
|
+
query["DryRun"] = request.dryRun;
|
|
11441
|
+
}
|
|
11442
|
+
|
|
11443
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11444
|
+
query["RegionId"] = request.regionId;
|
|
11445
|
+
}
|
|
11446
|
+
|
|
11447
|
+
if (!Util.isUnset(request.spareIps)) {
|
|
11448
|
+
query["SpareIps"] = request.spareIps;
|
|
11449
|
+
}
|
|
11450
|
+
|
|
11451
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11452
|
+
query: OpenApiUtil.query(query),
|
|
11453
|
+
});
|
|
11454
|
+
let params = new $OpenApi.Params({
|
|
10014
11455
|
action: "DeleteSpareIps",
|
|
10015
11456
|
version: "2019-11-20",
|
|
10016
11457
|
protocol: "HTTPS",
|
|
@@ -10032,8 +11473,14 @@ export default class Client extends OpenApi {
|
|
|
10032
11473
|
async describeAcceleratorWithOptions(request: DescribeAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAcceleratorResponse> {
|
|
10033
11474
|
Util.validateModel(request);
|
|
10034
11475
|
let query = { };
|
|
10035
|
-
|
|
10036
|
-
|
|
11476
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11477
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11478
|
+
}
|
|
11479
|
+
|
|
11480
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11481
|
+
query["RegionId"] = request.regionId;
|
|
11482
|
+
}
|
|
11483
|
+
|
|
10037
11484
|
let req = new $OpenApi.OpenApiRequest({
|
|
10038
11485
|
query: OpenApiUtil.query(query),
|
|
10039
11486
|
});
|
|
@@ -10059,8 +11506,14 @@ export default class Client extends OpenApi {
|
|
|
10059
11506
|
async describeAcceleratorAutoRenewAttributeWithOptions(request: DescribeAcceleratorAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAcceleratorAutoRenewAttributeResponse> {
|
|
10060
11507
|
Util.validateModel(request);
|
|
10061
11508
|
let query = { };
|
|
10062
|
-
|
|
10063
|
-
|
|
11509
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11510
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11511
|
+
}
|
|
11512
|
+
|
|
11513
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11514
|
+
query["RegionId"] = request.regionId;
|
|
11515
|
+
}
|
|
11516
|
+
|
|
10064
11517
|
let req = new $OpenApi.OpenApiRequest({
|
|
10065
11518
|
query: OpenApiUtil.query(query),
|
|
10066
11519
|
});
|
|
@@ -10083,11 +11536,54 @@ export default class Client extends OpenApi {
|
|
|
10083
11536
|
return await this.describeAcceleratorAutoRenewAttributeWithOptions(request, runtime);
|
|
10084
11537
|
}
|
|
10085
11538
|
|
|
11539
|
+
async describeApplicationMonitorWithOptions(request: DescribeApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationMonitorResponse> {
|
|
11540
|
+
Util.validateModel(request);
|
|
11541
|
+
let query = { };
|
|
11542
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11543
|
+
query["ClientToken"] = request.clientToken;
|
|
11544
|
+
}
|
|
11545
|
+
|
|
11546
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11547
|
+
query["RegionId"] = request.regionId;
|
|
11548
|
+
}
|
|
11549
|
+
|
|
11550
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11551
|
+
query["TaskId"] = request.taskId;
|
|
11552
|
+
}
|
|
11553
|
+
|
|
11554
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11555
|
+
query: OpenApiUtil.query(query),
|
|
11556
|
+
});
|
|
11557
|
+
let params = new $OpenApi.Params({
|
|
11558
|
+
action: "DescribeApplicationMonitor",
|
|
11559
|
+
version: "2019-11-20",
|
|
11560
|
+
protocol: "HTTPS",
|
|
11561
|
+
pathname: "/",
|
|
11562
|
+
method: "POST",
|
|
11563
|
+
authType: "AK",
|
|
11564
|
+
style: "RPC",
|
|
11565
|
+
reqBodyType: "formData",
|
|
11566
|
+
bodyType: "json",
|
|
11567
|
+
});
|
|
11568
|
+
return $tea.cast<DescribeApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DescribeApplicationMonitorResponse({}));
|
|
11569
|
+
}
|
|
11570
|
+
|
|
11571
|
+
async describeApplicationMonitor(request: DescribeApplicationMonitorRequest): Promise<DescribeApplicationMonitorResponse> {
|
|
11572
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
11573
|
+
return await this.describeApplicationMonitorWithOptions(request, runtime);
|
|
11574
|
+
}
|
|
11575
|
+
|
|
10086
11576
|
async describeBandwidthPackageWithOptions(request: DescribeBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBandwidthPackageResponse> {
|
|
10087
11577
|
Util.validateModel(request);
|
|
10088
11578
|
let query = { };
|
|
10089
|
-
|
|
10090
|
-
|
|
11579
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
11580
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
11581
|
+
}
|
|
11582
|
+
|
|
11583
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11584
|
+
query["RegionId"] = request.regionId;
|
|
11585
|
+
}
|
|
11586
|
+
|
|
10091
11587
|
let req = new $OpenApi.OpenApiRequest({
|
|
10092
11588
|
query: OpenApiUtil.query(query),
|
|
10093
11589
|
});
|
|
@@ -10113,8 +11609,14 @@ export default class Client extends OpenApi {
|
|
|
10113
11609
|
async describeEndpointGroupWithOptions(request: DescribeEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEndpointGroupResponse> {
|
|
10114
11610
|
Util.validateModel(request);
|
|
10115
11611
|
let query = { };
|
|
10116
|
-
|
|
10117
|
-
|
|
11612
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
11613
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
11614
|
+
}
|
|
11615
|
+
|
|
11616
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11617
|
+
query["RegionId"] = request.regionId;
|
|
11618
|
+
}
|
|
11619
|
+
|
|
10118
11620
|
let req = new $OpenApi.OpenApiRequest({
|
|
10119
11621
|
query: OpenApiUtil.query(query),
|
|
10120
11622
|
});
|
|
@@ -10140,8 +11642,14 @@ export default class Client extends OpenApi {
|
|
|
10140
11642
|
async describeIpSetWithOptions(request: DescribeIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpSetResponse> {
|
|
10141
11643
|
Util.validateModel(request);
|
|
10142
11644
|
let query = { };
|
|
10143
|
-
|
|
10144
|
-
|
|
11645
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
11646
|
+
query["IpSetId"] = request.ipSetId;
|
|
11647
|
+
}
|
|
11648
|
+
|
|
11649
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11650
|
+
query["RegionId"] = request.regionId;
|
|
11651
|
+
}
|
|
11652
|
+
|
|
10145
11653
|
let req = new $OpenApi.OpenApiRequest({
|
|
10146
11654
|
query: OpenApiUtil.query(query),
|
|
10147
11655
|
});
|
|
@@ -10167,8 +11675,14 @@ export default class Client extends OpenApi {
|
|
|
10167
11675
|
async describeListenerWithOptions(request: DescribeListenerRequest, runtime: $Util.RuntimeOptions): Promise<DescribeListenerResponse> {
|
|
10168
11676
|
Util.validateModel(request);
|
|
10169
11677
|
let query = { };
|
|
10170
|
-
|
|
10171
|
-
|
|
11678
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11679
|
+
query["ListenerId"] = request.listenerId;
|
|
11680
|
+
}
|
|
11681
|
+
|
|
11682
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11683
|
+
query["RegionId"] = request.regionId;
|
|
11684
|
+
}
|
|
11685
|
+
|
|
10172
11686
|
let req = new $OpenApi.OpenApiRequest({
|
|
10173
11687
|
query: OpenApiUtil.query(query),
|
|
10174
11688
|
});
|
|
@@ -10194,7 +11708,10 @@ export default class Client extends OpenApi {
|
|
|
10194
11708
|
async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
10195
11709
|
Util.validateModel(request);
|
|
10196
11710
|
let query = { };
|
|
10197
|
-
|
|
11711
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11712
|
+
query["RegionId"] = request.regionId;
|
|
11713
|
+
}
|
|
11714
|
+
|
|
10198
11715
|
let req = new $OpenApi.OpenApiRequest({
|
|
10199
11716
|
query: OpenApiUtil.query(query),
|
|
10200
11717
|
});
|
|
@@ -10220,8 +11737,14 @@ export default class Client extends OpenApi {
|
|
|
10220
11737
|
async detachDdosFromAcceleratorWithOptions(request: DetachDdosFromAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DetachDdosFromAcceleratorResponse> {
|
|
10221
11738
|
Util.validateModel(request);
|
|
10222
11739
|
let query = { };
|
|
10223
|
-
|
|
10224
|
-
|
|
11740
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11741
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11742
|
+
}
|
|
11743
|
+
|
|
11744
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11745
|
+
query["RegionId"] = request.regionId;
|
|
11746
|
+
}
|
|
11747
|
+
|
|
10225
11748
|
let req = new $OpenApi.OpenApiRequest({
|
|
10226
11749
|
query: OpenApiUtil.query(query),
|
|
10227
11750
|
});
|
|
@@ -10247,11 +11770,26 @@ export default class Client extends OpenApi {
|
|
|
10247
11770
|
async detachLogStoreFromEndpointGroupWithOptions(request: DetachLogStoreFromEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DetachLogStoreFromEndpointGroupResponse> {
|
|
10248
11771
|
Util.validateModel(request);
|
|
10249
11772
|
let query = { };
|
|
10250
|
-
|
|
10251
|
-
|
|
10252
|
-
|
|
10253
|
-
|
|
10254
|
-
|
|
11773
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11774
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11775
|
+
}
|
|
11776
|
+
|
|
11777
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11778
|
+
query["ClientToken"] = request.clientToken;
|
|
11779
|
+
}
|
|
11780
|
+
|
|
11781
|
+
if (!Util.isUnset(request.endpointGroupIds)) {
|
|
11782
|
+
query["EndpointGroupIds"] = request.endpointGroupIds;
|
|
11783
|
+
}
|
|
11784
|
+
|
|
11785
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11786
|
+
query["ListenerId"] = request.listenerId;
|
|
11787
|
+
}
|
|
11788
|
+
|
|
11789
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11790
|
+
query["RegionId"] = request.regionId;
|
|
11791
|
+
}
|
|
11792
|
+
|
|
10255
11793
|
let req = new $OpenApi.OpenApiRequest({
|
|
10256
11794
|
query: OpenApiUtil.query(query),
|
|
10257
11795
|
});
|
|
@@ -10274,14 +11812,103 @@ export default class Client extends OpenApi {
|
|
|
10274
11812
|
return await this.detachLogStoreFromEndpointGroupWithOptions(request, runtime);
|
|
10275
11813
|
}
|
|
10276
11814
|
|
|
11815
|
+
async detectApplicationMonitorWithOptions(request: DetectApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DetectApplicationMonitorResponse> {
|
|
11816
|
+
Util.validateModel(request);
|
|
11817
|
+
let query = { };
|
|
11818
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11819
|
+
query["ClientToken"] = request.clientToken;
|
|
11820
|
+
}
|
|
11821
|
+
|
|
11822
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11823
|
+
query["RegionId"] = request.regionId;
|
|
11824
|
+
}
|
|
11825
|
+
|
|
11826
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11827
|
+
query["TaskId"] = request.taskId;
|
|
11828
|
+
}
|
|
11829
|
+
|
|
11830
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11831
|
+
query: OpenApiUtil.query(query),
|
|
11832
|
+
});
|
|
11833
|
+
let params = new $OpenApi.Params({
|
|
11834
|
+
action: "DetectApplicationMonitor",
|
|
11835
|
+
version: "2019-11-20",
|
|
11836
|
+
protocol: "HTTPS",
|
|
11837
|
+
pathname: "/",
|
|
11838
|
+
method: "POST",
|
|
11839
|
+
authType: "AK",
|
|
11840
|
+
style: "RPC",
|
|
11841
|
+
reqBodyType: "formData",
|
|
11842
|
+
bodyType: "json",
|
|
11843
|
+
});
|
|
11844
|
+
return $tea.cast<DetectApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DetectApplicationMonitorResponse({}));
|
|
11845
|
+
}
|
|
11846
|
+
|
|
11847
|
+
async detectApplicationMonitor(request: DetectApplicationMonitorRequest): Promise<DetectApplicationMonitorResponse> {
|
|
11848
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
11849
|
+
return await this.detectApplicationMonitorWithOptions(request, runtime);
|
|
11850
|
+
}
|
|
11851
|
+
|
|
11852
|
+
async disableApplicationMonitorWithOptions(request: DisableApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DisableApplicationMonitorResponse> {
|
|
11853
|
+
Util.validateModel(request);
|
|
11854
|
+
let query = { };
|
|
11855
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11856
|
+
query["ClientToken"] = request.clientToken;
|
|
11857
|
+
}
|
|
11858
|
+
|
|
11859
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11860
|
+
query["RegionId"] = request.regionId;
|
|
11861
|
+
}
|
|
11862
|
+
|
|
11863
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11864
|
+
query["TaskId"] = request.taskId;
|
|
11865
|
+
}
|
|
11866
|
+
|
|
11867
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11868
|
+
query: OpenApiUtil.query(query),
|
|
11869
|
+
});
|
|
11870
|
+
let params = new $OpenApi.Params({
|
|
11871
|
+
action: "DisableApplicationMonitor",
|
|
11872
|
+
version: "2019-11-20",
|
|
11873
|
+
protocol: "HTTPS",
|
|
11874
|
+
pathname: "/",
|
|
11875
|
+
method: "POST",
|
|
11876
|
+
authType: "AK",
|
|
11877
|
+
style: "RPC",
|
|
11878
|
+
reqBodyType: "formData",
|
|
11879
|
+
bodyType: "json",
|
|
11880
|
+
});
|
|
11881
|
+
return $tea.cast<DisableApplicationMonitorResponse>(await this.callApi(params, req, runtime), new DisableApplicationMonitorResponse({}));
|
|
11882
|
+
}
|
|
11883
|
+
|
|
11884
|
+
async disableApplicationMonitor(request: DisableApplicationMonitorRequest): Promise<DisableApplicationMonitorResponse> {
|
|
11885
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
11886
|
+
return await this.disableApplicationMonitorWithOptions(request, runtime);
|
|
11887
|
+
}
|
|
11888
|
+
|
|
10277
11889
|
async dissociateAclsFromListenerWithOptions(request: DissociateAclsFromListenerRequest, runtime: $Util.RuntimeOptions): Promise<DissociateAclsFromListenerResponse> {
|
|
10278
11890
|
Util.validateModel(request);
|
|
10279
11891
|
let query = { };
|
|
10280
|
-
|
|
10281
|
-
|
|
10282
|
-
|
|
10283
|
-
|
|
10284
|
-
|
|
11892
|
+
if (!Util.isUnset(request.aclIds)) {
|
|
11893
|
+
query["AclIds"] = request.aclIds;
|
|
11894
|
+
}
|
|
11895
|
+
|
|
11896
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11897
|
+
query["ClientToken"] = request.clientToken;
|
|
11898
|
+
}
|
|
11899
|
+
|
|
11900
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
11901
|
+
query["DryRun"] = request.dryRun;
|
|
11902
|
+
}
|
|
11903
|
+
|
|
11904
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11905
|
+
query["ListenerId"] = request.listenerId;
|
|
11906
|
+
}
|
|
11907
|
+
|
|
11908
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11909
|
+
query["RegionId"] = request.regionId;
|
|
11910
|
+
}
|
|
11911
|
+
|
|
10285
11912
|
let req = new $OpenApi.OpenApiRequest({
|
|
10286
11913
|
query: OpenApiUtil.query(query),
|
|
10287
11914
|
});
|
|
@@ -10307,11 +11934,26 @@ export default class Client extends OpenApi {
|
|
|
10307
11934
|
async dissociateAdditionalCertificatesFromListenerWithOptions(request: DissociateAdditionalCertificatesFromListenerRequest, runtime: $Util.RuntimeOptions): Promise<DissociateAdditionalCertificatesFromListenerResponse> {
|
|
10308
11935
|
Util.validateModel(request);
|
|
10309
11936
|
let query = { };
|
|
10310
|
-
|
|
10311
|
-
|
|
10312
|
-
|
|
10313
|
-
|
|
10314
|
-
|
|
11937
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
11938
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
11939
|
+
}
|
|
11940
|
+
|
|
11941
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11942
|
+
query["ClientToken"] = request.clientToken;
|
|
11943
|
+
}
|
|
11944
|
+
|
|
11945
|
+
if (!Util.isUnset(request.domains)) {
|
|
11946
|
+
query["Domains"] = request.domains;
|
|
11947
|
+
}
|
|
11948
|
+
|
|
11949
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
11950
|
+
query["ListenerId"] = request.listenerId;
|
|
11951
|
+
}
|
|
11952
|
+
|
|
11953
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11954
|
+
query["RegionId"] = request.regionId;
|
|
11955
|
+
}
|
|
11956
|
+
|
|
10315
11957
|
let req = new $OpenApi.OpenApiRequest({
|
|
10316
11958
|
query: OpenApiUtil.query(query),
|
|
10317
11959
|
});
|
|
@@ -10334,11 +11976,54 @@ export default class Client extends OpenApi {
|
|
|
10334
11976
|
return await this.dissociateAdditionalCertificatesFromListenerWithOptions(request, runtime);
|
|
10335
11977
|
}
|
|
10336
11978
|
|
|
11979
|
+
async enableApplicationMonitorWithOptions(request: EnableApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationMonitorResponse> {
|
|
11980
|
+
Util.validateModel(request);
|
|
11981
|
+
let query = { };
|
|
11982
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
11983
|
+
query["ClientToken"] = request.clientToken;
|
|
11984
|
+
}
|
|
11985
|
+
|
|
11986
|
+
if (!Util.isUnset(request.regionId)) {
|
|
11987
|
+
query["RegionId"] = request.regionId;
|
|
11988
|
+
}
|
|
11989
|
+
|
|
11990
|
+
if (!Util.isUnset(request.taskId)) {
|
|
11991
|
+
query["TaskId"] = request.taskId;
|
|
11992
|
+
}
|
|
11993
|
+
|
|
11994
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11995
|
+
query: OpenApiUtil.query(query),
|
|
11996
|
+
});
|
|
11997
|
+
let params = new $OpenApi.Params({
|
|
11998
|
+
action: "EnableApplicationMonitor",
|
|
11999
|
+
version: "2019-11-20",
|
|
12000
|
+
protocol: "HTTPS",
|
|
12001
|
+
pathname: "/",
|
|
12002
|
+
method: "POST",
|
|
12003
|
+
authType: "AK",
|
|
12004
|
+
style: "RPC",
|
|
12005
|
+
reqBodyType: "formData",
|
|
12006
|
+
bodyType: "json",
|
|
12007
|
+
});
|
|
12008
|
+
return $tea.cast<EnableApplicationMonitorResponse>(await this.callApi(params, req, runtime), new EnableApplicationMonitorResponse({}));
|
|
12009
|
+
}
|
|
12010
|
+
|
|
12011
|
+
async enableApplicationMonitor(request: EnableApplicationMonitorRequest): Promise<EnableApplicationMonitorResponse> {
|
|
12012
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12013
|
+
return await this.enableApplicationMonitorWithOptions(request, runtime);
|
|
12014
|
+
}
|
|
12015
|
+
|
|
10337
12016
|
async getAclWithOptions(request: GetAclRequest, runtime: $Util.RuntimeOptions): Promise<GetAclResponse> {
|
|
10338
12017
|
Util.validateModel(request);
|
|
10339
12018
|
let query = { };
|
|
10340
|
-
|
|
10341
|
-
|
|
12019
|
+
if (!Util.isUnset(request.aclId)) {
|
|
12020
|
+
query["AclId"] = request.aclId;
|
|
12021
|
+
}
|
|
12022
|
+
|
|
12023
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12024
|
+
query["RegionId"] = request.regionId;
|
|
12025
|
+
}
|
|
12026
|
+
|
|
10342
12027
|
let req = new $OpenApi.OpenApiRequest({
|
|
10343
12028
|
query: OpenApiUtil.query(query),
|
|
10344
12029
|
});
|
|
@@ -10364,8 +12049,14 @@ export default class Client extends OpenApi {
|
|
|
10364
12049
|
async getBasicAcceleratorWithOptions(request: GetBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAcceleratorResponse> {
|
|
10365
12050
|
Util.validateModel(request);
|
|
10366
12051
|
let query = { };
|
|
10367
|
-
|
|
10368
|
-
|
|
12052
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12053
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12054
|
+
}
|
|
12055
|
+
|
|
12056
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12057
|
+
query["RegionId"] = request.regionId;
|
|
12058
|
+
}
|
|
12059
|
+
|
|
10369
12060
|
let req = new $OpenApi.OpenApiRequest({
|
|
10370
12061
|
query: OpenApiUtil.query(query),
|
|
10371
12062
|
});
|
|
@@ -10391,9 +12082,18 @@ export default class Client extends OpenApi {
|
|
|
10391
12082
|
async getBasicEndpointGroupWithOptions(request: GetBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointGroupResponse> {
|
|
10392
12083
|
Util.validateModel(request);
|
|
10393
12084
|
let query = { };
|
|
10394
|
-
|
|
10395
|
-
|
|
10396
|
-
|
|
12085
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12086
|
+
query["ClientToken"] = request.clientToken;
|
|
12087
|
+
}
|
|
12088
|
+
|
|
12089
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
12090
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
12091
|
+
}
|
|
12092
|
+
|
|
12093
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12094
|
+
query["RegionId"] = request.regionId;
|
|
12095
|
+
}
|
|
12096
|
+
|
|
10397
12097
|
let req = new $OpenApi.OpenApiRequest({
|
|
10398
12098
|
query: OpenApiUtil.query(query),
|
|
10399
12099
|
});
|
|
@@ -10419,9 +12119,18 @@ export default class Client extends OpenApi {
|
|
|
10419
12119
|
async getBasicIpSetWithOptions(request: GetBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicIpSetResponse> {
|
|
10420
12120
|
Util.validateModel(request);
|
|
10421
12121
|
let query = { };
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
|
|
12122
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12123
|
+
query["ClientToken"] = request.clientToken;
|
|
12124
|
+
}
|
|
12125
|
+
|
|
12126
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
12127
|
+
query["IpSetId"] = request.ipSetId;
|
|
12128
|
+
}
|
|
12129
|
+
|
|
12130
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12131
|
+
query["RegionId"] = request.regionId;
|
|
12132
|
+
}
|
|
12133
|
+
|
|
10425
12134
|
let req = new $OpenApi.OpenApiRequest({
|
|
10426
12135
|
query: OpenApiUtil.query(query),
|
|
10427
12136
|
});
|
|
@@ -10447,11 +12156,26 @@ export default class Client extends OpenApi {
|
|
|
10447
12156
|
async getHealthStatusWithOptions(request: GetHealthStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetHealthStatusResponse> {
|
|
10448
12157
|
Util.validateModel(request);
|
|
10449
12158
|
let query = { };
|
|
10450
|
-
|
|
10451
|
-
|
|
10452
|
-
|
|
10453
|
-
|
|
10454
|
-
|
|
12159
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12160
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12161
|
+
}
|
|
12162
|
+
|
|
12163
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12164
|
+
query["ClientToken"] = request.clientToken;
|
|
12165
|
+
}
|
|
12166
|
+
|
|
12167
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
12168
|
+
query["DryRun"] = request.dryRun;
|
|
12169
|
+
}
|
|
12170
|
+
|
|
12171
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12172
|
+
query["ListenerId"] = request.listenerId;
|
|
12173
|
+
}
|
|
12174
|
+
|
|
12175
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12176
|
+
query["RegionId"] = request.regionId;
|
|
12177
|
+
}
|
|
12178
|
+
|
|
10455
12179
|
let req = new $OpenApi.OpenApiRequest({
|
|
10456
12180
|
query: OpenApiUtil.query(query),
|
|
10457
12181
|
});
|
|
@@ -10477,11 +12201,26 @@ export default class Client extends OpenApi {
|
|
|
10477
12201
|
async getSpareIpWithOptions(request: GetSpareIpRequest, runtime: $Util.RuntimeOptions): Promise<GetSpareIpResponse> {
|
|
10478
12202
|
Util.validateModel(request);
|
|
10479
12203
|
let query = { };
|
|
10480
|
-
|
|
10481
|
-
|
|
10482
|
-
|
|
10483
|
-
|
|
10484
|
-
|
|
12204
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12205
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12206
|
+
}
|
|
12207
|
+
|
|
12208
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12209
|
+
query["ClientToken"] = request.clientToken;
|
|
12210
|
+
}
|
|
12211
|
+
|
|
12212
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
12213
|
+
query["DryRun"] = request.dryRun;
|
|
12214
|
+
}
|
|
12215
|
+
|
|
12216
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12217
|
+
query["RegionId"] = request.regionId;
|
|
12218
|
+
}
|
|
12219
|
+
|
|
12220
|
+
if (!Util.isUnset(request.spareIp)) {
|
|
12221
|
+
query["SpareIp"] = request.spareIp;
|
|
12222
|
+
}
|
|
12223
|
+
|
|
10485
12224
|
let req = new $OpenApi.OpenApiRequest({
|
|
10486
12225
|
query: OpenApiUtil.query(query),
|
|
10487
12226
|
});
|
|
@@ -10507,7 +12246,10 @@ export default class Client extends OpenApi {
|
|
|
10507
12246
|
async listAccelerateAreasWithOptions(request: ListAccelerateAreasRequest, runtime: $Util.RuntimeOptions): Promise<ListAccelerateAreasResponse> {
|
|
10508
12247
|
Util.validateModel(request);
|
|
10509
12248
|
let query = { };
|
|
10510
|
-
|
|
12249
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12250
|
+
query["RegionId"] = request.regionId;
|
|
12251
|
+
}
|
|
12252
|
+
|
|
10511
12253
|
let req = new $OpenApi.OpenApiRequest({
|
|
10512
12254
|
query: OpenApiUtil.query(query),
|
|
10513
12255
|
});
|
|
@@ -10533,11 +12275,26 @@ export default class Client extends OpenApi {
|
|
|
10533
12275
|
async listAcceleratorsWithOptions(request: ListAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListAcceleratorsResponse> {
|
|
10534
12276
|
Util.validateModel(request);
|
|
10535
12277
|
let query = { };
|
|
10536
|
-
|
|
10537
|
-
|
|
10538
|
-
|
|
10539
|
-
|
|
10540
|
-
|
|
12278
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12279
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12280
|
+
}
|
|
12281
|
+
|
|
12282
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12283
|
+
query["PageNumber"] = request.pageNumber;
|
|
12284
|
+
}
|
|
12285
|
+
|
|
12286
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12287
|
+
query["PageSize"] = request.pageSize;
|
|
12288
|
+
}
|
|
12289
|
+
|
|
12290
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12291
|
+
query["RegionId"] = request.regionId;
|
|
12292
|
+
}
|
|
12293
|
+
|
|
12294
|
+
if (!Util.isUnset(request.state)) {
|
|
12295
|
+
query["State"] = request.state;
|
|
12296
|
+
}
|
|
12297
|
+
|
|
10541
12298
|
let req = new $OpenApi.OpenApiRequest({
|
|
10542
12299
|
query: OpenApiUtil.query(query),
|
|
10543
12300
|
});
|
|
@@ -10563,12 +12320,30 @@ export default class Client extends OpenApi {
|
|
|
10563
12320
|
async listAclsWithOptions(request: ListAclsRequest, runtime: $Util.RuntimeOptions): Promise<ListAclsResponse> {
|
|
10564
12321
|
Util.validateModel(request);
|
|
10565
12322
|
let query = { };
|
|
10566
|
-
|
|
10567
|
-
|
|
10568
|
-
|
|
10569
|
-
|
|
10570
|
-
|
|
10571
|
-
|
|
12323
|
+
if (!Util.isUnset(request.aclIds)) {
|
|
12324
|
+
query["AclIds"] = request.aclIds;
|
|
12325
|
+
}
|
|
12326
|
+
|
|
12327
|
+
if (!Util.isUnset(request.aclName)) {
|
|
12328
|
+
query["AclName"] = request.aclName;
|
|
12329
|
+
}
|
|
12330
|
+
|
|
12331
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12332
|
+
query["ClientToken"] = request.clientToken;
|
|
12333
|
+
}
|
|
12334
|
+
|
|
12335
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
12336
|
+
query["MaxResults"] = request.maxResults;
|
|
12337
|
+
}
|
|
12338
|
+
|
|
12339
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
12340
|
+
query["NextToken"] = request.nextToken;
|
|
12341
|
+
}
|
|
12342
|
+
|
|
12343
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12344
|
+
query["RegionId"] = request.regionId;
|
|
12345
|
+
}
|
|
12346
|
+
|
|
10572
12347
|
let req = new $OpenApi.OpenApiRequest({
|
|
10573
12348
|
query: OpenApiUtil.query(query),
|
|
10574
12349
|
});
|
|
@@ -10591,16 +12366,30 @@ export default class Client extends OpenApi {
|
|
|
10591
12366
|
return await this.listAclsWithOptions(request, runtime);
|
|
10592
12367
|
}
|
|
10593
12368
|
|
|
10594
|
-
async
|
|
12369
|
+
async listApplicationMonitorWithOptions(request: ListApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationMonitorResponse> {
|
|
10595
12370
|
Util.validateModel(request);
|
|
10596
12371
|
let query = { };
|
|
10597
|
-
|
|
10598
|
-
|
|
12372
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12373
|
+
query["PageNumber"] = request.pageNumber;
|
|
12374
|
+
}
|
|
12375
|
+
|
|
12376
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12377
|
+
query["PageSize"] = request.pageSize;
|
|
12378
|
+
}
|
|
12379
|
+
|
|
12380
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12381
|
+
query["RegionId"] = request.regionId;
|
|
12382
|
+
}
|
|
12383
|
+
|
|
12384
|
+
if (!Util.isUnset(request.searchValue)) {
|
|
12385
|
+
query["SearchValue"] = request.searchValue;
|
|
12386
|
+
}
|
|
12387
|
+
|
|
10599
12388
|
let req = new $OpenApi.OpenApiRequest({
|
|
10600
12389
|
query: OpenApiUtil.query(query),
|
|
10601
12390
|
});
|
|
10602
12391
|
let params = new $OpenApi.Params({
|
|
10603
|
-
action: "
|
|
12392
|
+
action: "ListApplicationMonitor",
|
|
10604
12393
|
version: "2019-11-20",
|
|
10605
12394
|
protocol: "HTTPS",
|
|
10606
12395
|
pathname: "/",
|
|
@@ -10610,19 +12399,107 @@ export default class Client extends OpenApi {
|
|
|
10610
12399
|
reqBodyType: "formData",
|
|
10611
12400
|
bodyType: "json",
|
|
10612
12401
|
});
|
|
10613
|
-
return $tea.cast<
|
|
12402
|
+
return $tea.cast<ListApplicationMonitorResponse>(await this.callApi(params, req, runtime), new ListApplicationMonitorResponse({}));
|
|
10614
12403
|
}
|
|
10615
12404
|
|
|
10616
|
-
async
|
|
12405
|
+
async listApplicationMonitor(request: ListApplicationMonitorRequest): Promise<ListApplicationMonitorResponse> {
|
|
10617
12406
|
let runtime = new $Util.RuntimeOptions({ });
|
|
10618
|
-
return await this.
|
|
12407
|
+
return await this.listApplicationMonitorWithOptions(request, runtime);
|
|
10619
12408
|
}
|
|
10620
12409
|
|
|
10621
|
-
async
|
|
12410
|
+
async listApplicationMonitorDetectResultWithOptions(request: ListApplicationMonitorDetectResultRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationMonitorDetectResultResponse> {
|
|
10622
12411
|
Util.validateModel(request);
|
|
10623
12412
|
let query = { };
|
|
10624
|
-
|
|
10625
|
-
|
|
12413
|
+
if (!Util.isUnset(request.beginTime)) {
|
|
12414
|
+
query["BeginTime"] = request.beginTime;
|
|
12415
|
+
}
|
|
12416
|
+
|
|
12417
|
+
if (!Util.isUnset(request.endTime)) {
|
|
12418
|
+
query["EndTime"] = request.endTime;
|
|
12419
|
+
}
|
|
12420
|
+
|
|
12421
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12422
|
+
query["PageNumber"] = request.pageNumber;
|
|
12423
|
+
}
|
|
12424
|
+
|
|
12425
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12426
|
+
query["PageSize"] = request.pageSize;
|
|
12427
|
+
}
|
|
12428
|
+
|
|
12429
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12430
|
+
query["RegionId"] = request.regionId;
|
|
12431
|
+
}
|
|
12432
|
+
|
|
12433
|
+
if (!Util.isUnset(request.taskId)) {
|
|
12434
|
+
query["TaskId"] = request.taskId;
|
|
12435
|
+
}
|
|
12436
|
+
|
|
12437
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12438
|
+
query: OpenApiUtil.query(query),
|
|
12439
|
+
});
|
|
12440
|
+
let params = new $OpenApi.Params({
|
|
12441
|
+
action: "ListApplicationMonitorDetectResult",
|
|
12442
|
+
version: "2019-11-20",
|
|
12443
|
+
protocol: "HTTPS",
|
|
12444
|
+
pathname: "/",
|
|
12445
|
+
method: "POST",
|
|
12446
|
+
authType: "AK",
|
|
12447
|
+
style: "RPC",
|
|
12448
|
+
reqBodyType: "formData",
|
|
12449
|
+
bodyType: "json",
|
|
12450
|
+
});
|
|
12451
|
+
return $tea.cast<ListApplicationMonitorDetectResultResponse>(await this.callApi(params, req, runtime), new ListApplicationMonitorDetectResultResponse({}));
|
|
12452
|
+
}
|
|
12453
|
+
|
|
12454
|
+
async listApplicationMonitorDetectResult(request: ListApplicationMonitorDetectResultRequest): Promise<ListApplicationMonitorDetectResultResponse> {
|
|
12455
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12456
|
+
return await this.listApplicationMonitorDetectResultWithOptions(request, runtime);
|
|
12457
|
+
}
|
|
12458
|
+
|
|
12459
|
+
async listAvailableAccelerateAreasWithOptions(request: ListAvailableAccelerateAreasRequest, runtime: $Util.RuntimeOptions): Promise<ListAvailableAccelerateAreasResponse> {
|
|
12460
|
+
Util.validateModel(request);
|
|
12461
|
+
let query = { };
|
|
12462
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12463
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12464
|
+
}
|
|
12465
|
+
|
|
12466
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12467
|
+
query["RegionId"] = request.regionId;
|
|
12468
|
+
}
|
|
12469
|
+
|
|
12470
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12471
|
+
query: OpenApiUtil.query(query),
|
|
12472
|
+
});
|
|
12473
|
+
let params = new $OpenApi.Params({
|
|
12474
|
+
action: "ListAvailableAccelerateAreas",
|
|
12475
|
+
version: "2019-11-20",
|
|
12476
|
+
protocol: "HTTPS",
|
|
12477
|
+
pathname: "/",
|
|
12478
|
+
method: "POST",
|
|
12479
|
+
authType: "AK",
|
|
12480
|
+
style: "RPC",
|
|
12481
|
+
reqBodyType: "formData",
|
|
12482
|
+
bodyType: "json",
|
|
12483
|
+
});
|
|
12484
|
+
return $tea.cast<ListAvailableAccelerateAreasResponse>(await this.callApi(params, req, runtime), new ListAvailableAccelerateAreasResponse({}));
|
|
12485
|
+
}
|
|
12486
|
+
|
|
12487
|
+
async listAvailableAccelerateAreas(request: ListAvailableAccelerateAreasRequest): Promise<ListAvailableAccelerateAreasResponse> {
|
|
12488
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12489
|
+
return await this.listAvailableAccelerateAreasWithOptions(request, runtime);
|
|
12490
|
+
}
|
|
12491
|
+
|
|
12492
|
+
async listAvailableBusiRegionsWithOptions(request: ListAvailableBusiRegionsRequest, runtime: $Util.RuntimeOptions): Promise<ListAvailableBusiRegionsResponse> {
|
|
12493
|
+
Util.validateModel(request);
|
|
12494
|
+
let query = { };
|
|
12495
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12496
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12497
|
+
}
|
|
12498
|
+
|
|
12499
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12500
|
+
query["RegionId"] = request.regionId;
|
|
12501
|
+
}
|
|
12502
|
+
|
|
10626
12503
|
let req = new $OpenApi.OpenApiRequest({
|
|
10627
12504
|
query: OpenApiUtil.query(query),
|
|
10628
12505
|
});
|
|
@@ -10648,12 +12525,30 @@ export default class Client extends OpenApi {
|
|
|
10648
12525
|
async listBandwidthPackagesWithOptions(request: ListBandwidthPackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthPackagesResponse> {
|
|
10649
12526
|
Util.validateModel(request);
|
|
10650
12527
|
let query = { };
|
|
10651
|
-
|
|
10652
|
-
|
|
10653
|
-
|
|
10654
|
-
|
|
10655
|
-
|
|
10656
|
-
|
|
12528
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
12529
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
12530
|
+
}
|
|
12531
|
+
|
|
12532
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12533
|
+
query["PageNumber"] = request.pageNumber;
|
|
12534
|
+
}
|
|
12535
|
+
|
|
12536
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12537
|
+
query["PageSize"] = request.pageSize;
|
|
12538
|
+
}
|
|
12539
|
+
|
|
12540
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12541
|
+
query["RegionId"] = request.regionId;
|
|
12542
|
+
}
|
|
12543
|
+
|
|
12544
|
+
if (!Util.isUnset(request.state)) {
|
|
12545
|
+
query["State"] = request.state;
|
|
12546
|
+
}
|
|
12547
|
+
|
|
12548
|
+
if (!Util.isUnset(request.type)) {
|
|
12549
|
+
query["Type"] = request.type;
|
|
12550
|
+
}
|
|
12551
|
+
|
|
10657
12552
|
let req = new $OpenApi.OpenApiRequest({
|
|
10658
12553
|
query: OpenApiUtil.query(query),
|
|
10659
12554
|
});
|
|
@@ -10679,9 +12574,18 @@ export default class Client extends OpenApi {
|
|
|
10679
12574
|
async listBandwidthackagesWithOptions(request: ListBandwidthackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthackagesResponse> {
|
|
10680
12575
|
Util.validateModel(request);
|
|
10681
12576
|
let query = { };
|
|
10682
|
-
|
|
10683
|
-
|
|
10684
|
-
|
|
12577
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12578
|
+
query["PageNumber"] = request.pageNumber;
|
|
12579
|
+
}
|
|
12580
|
+
|
|
12581
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12582
|
+
query["PageSize"] = request.pageSize;
|
|
12583
|
+
}
|
|
12584
|
+
|
|
12585
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12586
|
+
query["RegionId"] = request.regionId;
|
|
12587
|
+
}
|
|
12588
|
+
|
|
10685
12589
|
let req = new $OpenApi.OpenApiRequest({
|
|
10686
12590
|
query: OpenApiUtil.query(query),
|
|
10687
12591
|
});
|
|
@@ -10707,11 +12611,26 @@ export default class Client extends OpenApi {
|
|
|
10707
12611
|
async listBasicAcceleratorsWithOptions(request: ListBasicAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAcceleratorsResponse> {
|
|
10708
12612
|
Util.validateModel(request);
|
|
10709
12613
|
let query = { };
|
|
10710
|
-
|
|
10711
|
-
|
|
10712
|
-
|
|
10713
|
-
|
|
10714
|
-
|
|
12614
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12615
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12616
|
+
}
|
|
12617
|
+
|
|
12618
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12619
|
+
query["PageNumber"] = request.pageNumber;
|
|
12620
|
+
}
|
|
12621
|
+
|
|
12622
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12623
|
+
query["PageSize"] = request.pageSize;
|
|
12624
|
+
}
|
|
12625
|
+
|
|
12626
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12627
|
+
query["RegionId"] = request.regionId;
|
|
12628
|
+
}
|
|
12629
|
+
|
|
12630
|
+
if (!Util.isUnset(request.state)) {
|
|
12631
|
+
query["State"] = request.state;
|
|
12632
|
+
}
|
|
12633
|
+
|
|
10715
12634
|
let req = new $OpenApi.OpenApiRequest({
|
|
10716
12635
|
query: OpenApiUtil.query(query),
|
|
10717
12636
|
});
|
|
@@ -10737,7 +12656,10 @@ export default class Client extends OpenApi {
|
|
|
10737
12656
|
async listBusiRegionsWithOptions(request: ListBusiRegionsRequest, runtime: $Util.RuntimeOptions): Promise<ListBusiRegionsResponse> {
|
|
10738
12657
|
Util.validateModel(request);
|
|
10739
12658
|
let query = { };
|
|
10740
|
-
|
|
12659
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12660
|
+
query["RegionId"] = request.regionId;
|
|
12661
|
+
}
|
|
12662
|
+
|
|
10741
12663
|
let req = new $OpenApi.OpenApiRequest({
|
|
10742
12664
|
query: OpenApiUtil.query(query),
|
|
10743
12665
|
});
|
|
@@ -10763,14 +12685,38 @@ export default class Client extends OpenApi {
|
|
|
10763
12685
|
async listEndpointGroupsWithOptions(request: ListEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupsResponse> {
|
|
10764
12686
|
Util.validateModel(request);
|
|
10765
12687
|
let query = { };
|
|
10766
|
-
|
|
10767
|
-
|
|
10768
|
-
|
|
10769
|
-
|
|
10770
|
-
|
|
10771
|
-
|
|
10772
|
-
|
|
10773
|
-
|
|
12688
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12689
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12690
|
+
}
|
|
12691
|
+
|
|
12692
|
+
if (!Util.isUnset(request.accessLogSwitch)) {
|
|
12693
|
+
query["AccessLogSwitch"] = request.accessLogSwitch;
|
|
12694
|
+
}
|
|
12695
|
+
|
|
12696
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
12697
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
12698
|
+
}
|
|
12699
|
+
|
|
12700
|
+
if (!Util.isUnset(request.endpointGroupType)) {
|
|
12701
|
+
query["EndpointGroupType"] = request.endpointGroupType;
|
|
12702
|
+
}
|
|
12703
|
+
|
|
12704
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12705
|
+
query["ListenerId"] = request.listenerId;
|
|
12706
|
+
}
|
|
12707
|
+
|
|
12708
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12709
|
+
query["PageNumber"] = request.pageNumber;
|
|
12710
|
+
}
|
|
12711
|
+
|
|
12712
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12713
|
+
query["PageSize"] = request.pageSize;
|
|
12714
|
+
}
|
|
12715
|
+
|
|
12716
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12717
|
+
query["RegionId"] = request.regionId;
|
|
12718
|
+
}
|
|
12719
|
+
|
|
10774
12720
|
let req = new $OpenApi.OpenApiRequest({
|
|
10775
12721
|
query: OpenApiUtil.query(query),
|
|
10776
12722
|
});
|
|
@@ -10796,13 +12742,34 @@ export default class Client extends OpenApi {
|
|
|
10796
12742
|
async listForwardingRulesWithOptions(request: ListForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<ListForwardingRulesResponse> {
|
|
10797
12743
|
Util.validateModel(request);
|
|
10798
12744
|
let query = { };
|
|
10799
|
-
|
|
10800
|
-
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10804
|
-
|
|
10805
|
-
|
|
12745
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12746
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12747
|
+
}
|
|
12748
|
+
|
|
12749
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12750
|
+
query["ClientToken"] = request.clientToken;
|
|
12751
|
+
}
|
|
12752
|
+
|
|
12753
|
+
if (!Util.isUnset(request.forwardingRuleId)) {
|
|
12754
|
+
query["ForwardingRuleId"] = request.forwardingRuleId;
|
|
12755
|
+
}
|
|
12756
|
+
|
|
12757
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12758
|
+
query["ListenerId"] = request.listenerId;
|
|
12759
|
+
}
|
|
12760
|
+
|
|
12761
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
12762
|
+
query["MaxResults"] = request.maxResults;
|
|
12763
|
+
}
|
|
12764
|
+
|
|
12765
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
12766
|
+
query["NextToken"] = request.nextToken;
|
|
12767
|
+
}
|
|
12768
|
+
|
|
12769
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12770
|
+
query["RegionId"] = request.regionId;
|
|
12771
|
+
}
|
|
12772
|
+
|
|
10806
12773
|
let req = new $OpenApi.OpenApiRequest({
|
|
10807
12774
|
query: OpenApiUtil.query(query),
|
|
10808
12775
|
});
|
|
@@ -10828,10 +12795,22 @@ export default class Client extends OpenApi {
|
|
|
10828
12795
|
async listIpSetsWithOptions(request: ListIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<ListIpSetsResponse> {
|
|
10829
12796
|
Util.validateModel(request);
|
|
10830
12797
|
let query = { };
|
|
10831
|
-
|
|
10832
|
-
|
|
10833
|
-
|
|
10834
|
-
|
|
12798
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12799
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12800
|
+
}
|
|
12801
|
+
|
|
12802
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12803
|
+
query["PageNumber"] = request.pageNumber;
|
|
12804
|
+
}
|
|
12805
|
+
|
|
12806
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12807
|
+
query["PageSize"] = request.pageSize;
|
|
12808
|
+
}
|
|
12809
|
+
|
|
12810
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12811
|
+
query["RegionId"] = request.regionId;
|
|
12812
|
+
}
|
|
12813
|
+
|
|
10835
12814
|
let req = new $OpenApi.OpenApiRequest({
|
|
10836
12815
|
query: OpenApiUtil.query(query),
|
|
10837
12816
|
});
|
|
@@ -10857,12 +12836,30 @@ export default class Client extends OpenApi {
|
|
|
10857
12836
|
async listListenerCertificatesWithOptions(request: ListListenerCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<ListListenerCertificatesResponse> {
|
|
10858
12837
|
Util.validateModel(request);
|
|
10859
12838
|
let query = { };
|
|
10860
|
-
|
|
10861
|
-
|
|
10862
|
-
|
|
10863
|
-
|
|
10864
|
-
|
|
10865
|
-
|
|
12839
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12840
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12841
|
+
}
|
|
12842
|
+
|
|
12843
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
12844
|
+
query["ListenerId"] = request.listenerId;
|
|
12845
|
+
}
|
|
12846
|
+
|
|
12847
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
12848
|
+
query["MaxResults"] = request.maxResults;
|
|
12849
|
+
}
|
|
12850
|
+
|
|
12851
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
12852
|
+
query["NextToken"] = request.nextToken;
|
|
12853
|
+
}
|
|
12854
|
+
|
|
12855
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12856
|
+
query["RegionId"] = request.regionId;
|
|
12857
|
+
}
|
|
12858
|
+
|
|
12859
|
+
if (!Util.isUnset(request.role)) {
|
|
12860
|
+
query["Role"] = request.role;
|
|
12861
|
+
}
|
|
12862
|
+
|
|
10866
12863
|
let req = new $OpenApi.OpenApiRequest({
|
|
10867
12864
|
query: OpenApiUtil.query(query),
|
|
10868
12865
|
});
|
|
@@ -10888,10 +12885,22 @@ export default class Client extends OpenApi {
|
|
|
10888
12885
|
async listListenersWithOptions(request: ListListenersRequest, runtime: $Util.RuntimeOptions): Promise<ListListenersResponse> {
|
|
10889
12886
|
Util.validateModel(request);
|
|
10890
12887
|
let query = { };
|
|
10891
|
-
|
|
10892
|
-
|
|
10893
|
-
|
|
10894
|
-
|
|
12888
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12889
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12890
|
+
}
|
|
12891
|
+
|
|
12892
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12893
|
+
query["PageNumber"] = request.pageNumber;
|
|
12894
|
+
}
|
|
12895
|
+
|
|
12896
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12897
|
+
query["PageSize"] = request.pageSize;
|
|
12898
|
+
}
|
|
12899
|
+
|
|
12900
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12901
|
+
query["RegionId"] = request.regionId;
|
|
12902
|
+
}
|
|
12903
|
+
|
|
10895
12904
|
let req = new $OpenApi.OpenApiRequest({
|
|
10896
12905
|
query: OpenApiUtil.query(query),
|
|
10897
12906
|
});
|
|
@@ -10917,10 +12926,22 @@ export default class Client extends OpenApi {
|
|
|
10917
12926
|
async listSpareIpsWithOptions(request: ListSpareIpsRequest, runtime: $Util.RuntimeOptions): Promise<ListSpareIpsResponse> {
|
|
10918
12927
|
Util.validateModel(request);
|
|
10919
12928
|
let query = { };
|
|
10920
|
-
|
|
10921
|
-
|
|
10922
|
-
|
|
10923
|
-
|
|
12929
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
12930
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
12931
|
+
}
|
|
12932
|
+
|
|
12933
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
12934
|
+
query["ClientToken"] = request.clientToken;
|
|
12935
|
+
}
|
|
12936
|
+
|
|
12937
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
12938
|
+
query["DryRun"] = request.dryRun;
|
|
12939
|
+
}
|
|
12940
|
+
|
|
12941
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12942
|
+
query["RegionId"] = request.regionId;
|
|
12943
|
+
}
|
|
12944
|
+
|
|
10924
12945
|
let req = new $OpenApi.OpenApiRequest({
|
|
10925
12946
|
query: OpenApiUtil.query(query),
|
|
10926
12947
|
});
|
|
@@ -10946,9 +12967,18 @@ export default class Client extends OpenApi {
|
|
|
10946
12967
|
async listSystemSecurityPoliciesWithOptions(request: ListSystemSecurityPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<ListSystemSecurityPoliciesResponse> {
|
|
10947
12968
|
Util.validateModel(request);
|
|
10948
12969
|
let query = { };
|
|
10949
|
-
|
|
10950
|
-
|
|
10951
|
-
|
|
12970
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
12971
|
+
query["PageNumber"] = request.pageNumber;
|
|
12972
|
+
}
|
|
12973
|
+
|
|
12974
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
12975
|
+
query["PageSize"] = request.pageSize;
|
|
12976
|
+
}
|
|
12977
|
+
|
|
12978
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12979
|
+
query["RegionId"] = request.regionId;
|
|
12980
|
+
}
|
|
12981
|
+
|
|
10952
12982
|
let req = new $OpenApi.OpenApiRequest({
|
|
10953
12983
|
query: OpenApiUtil.query(query),
|
|
10954
12984
|
});
|
|
@@ -10974,11 +13004,26 @@ export default class Client extends OpenApi {
|
|
|
10974
13004
|
async removeEntriesFromAclWithOptions(request: RemoveEntriesFromAclRequest, runtime: $Util.RuntimeOptions): Promise<RemoveEntriesFromAclResponse> {
|
|
10975
13005
|
Util.validateModel(request);
|
|
10976
13006
|
let query = { };
|
|
10977
|
-
|
|
10978
|
-
|
|
10979
|
-
|
|
10980
|
-
|
|
10981
|
-
|
|
13007
|
+
if (!Util.isUnset(request.aclEntries)) {
|
|
13008
|
+
query["AclEntries"] = request.aclEntries;
|
|
13009
|
+
}
|
|
13010
|
+
|
|
13011
|
+
if (!Util.isUnset(request.aclId)) {
|
|
13012
|
+
query["AclId"] = request.aclId;
|
|
13013
|
+
}
|
|
13014
|
+
|
|
13015
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13016
|
+
query["ClientToken"] = request.clientToken;
|
|
13017
|
+
}
|
|
13018
|
+
|
|
13019
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
13020
|
+
query["DryRun"] = request.dryRun;
|
|
13021
|
+
}
|
|
13022
|
+
|
|
13023
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13024
|
+
query["RegionId"] = request.regionId;
|
|
13025
|
+
}
|
|
13026
|
+
|
|
10982
13027
|
let req = new $OpenApi.OpenApiRequest({
|
|
10983
13028
|
query: OpenApiUtil.query(query),
|
|
10984
13029
|
});
|
|
@@ -11004,9 +13049,18 @@ export default class Client extends OpenApi {
|
|
|
11004
13049
|
async replaceBandwidthPackageWithOptions(request: ReplaceBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<ReplaceBandwidthPackageResponse> {
|
|
11005
13050
|
Util.validateModel(request);
|
|
11006
13051
|
let query = { };
|
|
11007
|
-
|
|
11008
|
-
|
|
11009
|
-
|
|
13052
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
13053
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
13054
|
+
}
|
|
13055
|
+
|
|
13056
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13057
|
+
query["RegionId"] = request.regionId;
|
|
13058
|
+
}
|
|
13059
|
+
|
|
13060
|
+
if (!Util.isUnset(request.targetBandwidthPackageId)) {
|
|
13061
|
+
query["TargetBandwidthPackageId"] = request.targetBandwidthPackageId;
|
|
13062
|
+
}
|
|
13063
|
+
|
|
11010
13064
|
let req = new $OpenApi.OpenApiRequest({
|
|
11011
13065
|
query: OpenApiUtil.query(query),
|
|
11012
13066
|
});
|
|
@@ -11032,14 +13086,38 @@ export default class Client extends OpenApi {
|
|
|
11032
13086
|
async updateAcceleratorWithOptions(request: UpdateAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorResponse> {
|
|
11033
13087
|
Util.validateModel(request);
|
|
11034
13088
|
let query = { };
|
|
11035
|
-
|
|
11036
|
-
|
|
11037
|
-
|
|
11038
|
-
|
|
11039
|
-
|
|
11040
|
-
|
|
11041
|
-
|
|
11042
|
-
|
|
13089
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13090
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13091
|
+
}
|
|
13092
|
+
|
|
13093
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
13094
|
+
query["AutoPay"] = request.autoPay;
|
|
13095
|
+
}
|
|
13096
|
+
|
|
13097
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
13098
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
13099
|
+
}
|
|
13100
|
+
|
|
13101
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13102
|
+
query["ClientToken"] = request.clientToken;
|
|
13103
|
+
}
|
|
13104
|
+
|
|
13105
|
+
if (!Util.isUnset(request.description)) {
|
|
13106
|
+
query["Description"] = request.description;
|
|
13107
|
+
}
|
|
13108
|
+
|
|
13109
|
+
if (!Util.isUnset(request.name)) {
|
|
13110
|
+
query["Name"] = request.name;
|
|
13111
|
+
}
|
|
13112
|
+
|
|
13113
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13114
|
+
query["RegionId"] = request.regionId;
|
|
13115
|
+
}
|
|
13116
|
+
|
|
13117
|
+
if (!Util.isUnset(request.spec)) {
|
|
13118
|
+
query["Spec"] = request.spec;
|
|
13119
|
+
}
|
|
13120
|
+
|
|
11043
13121
|
let req = new $OpenApi.OpenApiRequest({
|
|
11044
13122
|
query: OpenApiUtil.query(query),
|
|
11045
13123
|
});
|
|
@@ -11065,13 +13143,34 @@ export default class Client extends OpenApi {
|
|
|
11065
13143
|
async updateAcceleratorAutoRenewAttributeWithOptions(request: UpdateAcceleratorAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorAutoRenewAttributeResponse> {
|
|
11066
13144
|
Util.validateModel(request);
|
|
11067
13145
|
let query = { };
|
|
11068
|
-
|
|
11069
|
-
|
|
11070
|
-
|
|
11071
|
-
|
|
11072
|
-
|
|
11073
|
-
|
|
11074
|
-
|
|
13146
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13147
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13148
|
+
}
|
|
13149
|
+
|
|
13150
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
13151
|
+
query["AutoRenew"] = request.autoRenew;
|
|
13152
|
+
}
|
|
13153
|
+
|
|
13154
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
13155
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
13156
|
+
}
|
|
13157
|
+
|
|
13158
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13159
|
+
query["ClientToken"] = request.clientToken;
|
|
13160
|
+
}
|
|
13161
|
+
|
|
13162
|
+
if (!Util.isUnset(request.name)) {
|
|
13163
|
+
query["Name"] = request.name;
|
|
13164
|
+
}
|
|
13165
|
+
|
|
13166
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13167
|
+
query["RegionId"] = request.regionId;
|
|
13168
|
+
}
|
|
13169
|
+
|
|
13170
|
+
if (!Util.isUnset(request.renewalStatus)) {
|
|
13171
|
+
query["RenewalStatus"] = request.renewalStatus;
|
|
13172
|
+
}
|
|
13173
|
+
|
|
11075
13174
|
let req = new $OpenApi.OpenApiRequest({
|
|
11076
13175
|
query: OpenApiUtil.query(query),
|
|
11077
13176
|
});
|
|
@@ -11097,8 +13196,14 @@ export default class Client extends OpenApi {
|
|
|
11097
13196
|
async updateAcceleratorConfirmWithOptions(request: UpdateAcceleratorConfirmRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorConfirmResponse> {
|
|
11098
13197
|
Util.validateModel(request);
|
|
11099
13198
|
let query = { };
|
|
11100
|
-
|
|
11101
|
-
|
|
13199
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13200
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13201
|
+
}
|
|
13202
|
+
|
|
13203
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13204
|
+
query["RegionId"] = request.regionId;
|
|
13205
|
+
}
|
|
13206
|
+
|
|
11102
13207
|
let req = new $OpenApi.OpenApiRequest({
|
|
11103
13208
|
query: OpenApiUtil.query(query),
|
|
11104
13209
|
});
|
|
@@ -11124,11 +13229,26 @@ export default class Client extends OpenApi {
|
|
|
11124
13229
|
async updateAclAttributeWithOptions(request: UpdateAclAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAclAttributeResponse> {
|
|
11125
13230
|
Util.validateModel(request);
|
|
11126
13231
|
let query = { };
|
|
11127
|
-
|
|
11128
|
-
|
|
11129
|
-
|
|
11130
|
-
|
|
11131
|
-
|
|
13232
|
+
if (!Util.isUnset(request.aclId)) {
|
|
13233
|
+
query["AclId"] = request.aclId;
|
|
13234
|
+
}
|
|
13235
|
+
|
|
13236
|
+
if (!Util.isUnset(request.aclName)) {
|
|
13237
|
+
query["AclName"] = request.aclName;
|
|
13238
|
+
}
|
|
13239
|
+
|
|
13240
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13241
|
+
query["ClientToken"] = request.clientToken;
|
|
13242
|
+
}
|
|
13243
|
+
|
|
13244
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
13245
|
+
query["DryRun"] = request.dryRun;
|
|
13246
|
+
}
|
|
13247
|
+
|
|
13248
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13249
|
+
query["RegionId"] = request.regionId;
|
|
13250
|
+
}
|
|
13251
|
+
|
|
11132
13252
|
let req = new $OpenApi.OpenApiRequest({
|
|
11133
13253
|
query: OpenApiUtil.query(query),
|
|
11134
13254
|
});
|
|
@@ -11151,17 +13271,98 @@ export default class Client extends OpenApi {
|
|
|
11151
13271
|
return await this.updateAclAttributeWithOptions(request, runtime);
|
|
11152
13272
|
}
|
|
11153
13273
|
|
|
13274
|
+
async updateApplicationMonitorWithOptions(request: UpdateApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationMonitorResponse> {
|
|
13275
|
+
Util.validateModel(request);
|
|
13276
|
+
let query = { };
|
|
13277
|
+
if (!Util.isUnset(request.address)) {
|
|
13278
|
+
query["Address"] = request.address;
|
|
13279
|
+
}
|
|
13280
|
+
|
|
13281
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13282
|
+
query["ClientToken"] = request.clientToken;
|
|
13283
|
+
}
|
|
13284
|
+
|
|
13285
|
+
if (!Util.isUnset(request.detectThreshold)) {
|
|
13286
|
+
query["DetectThreshold"] = request.detectThreshold;
|
|
13287
|
+
}
|
|
13288
|
+
|
|
13289
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13290
|
+
query["ListenerId"] = request.listenerId;
|
|
13291
|
+
}
|
|
13292
|
+
|
|
13293
|
+
if (!Util.isUnset(request.optionsJson)) {
|
|
13294
|
+
query["OptionsJson"] = request.optionsJson;
|
|
13295
|
+
}
|
|
13296
|
+
|
|
13297
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13298
|
+
query["RegionId"] = request.regionId;
|
|
13299
|
+
}
|
|
13300
|
+
|
|
13301
|
+
if (!Util.isUnset(request.taskId)) {
|
|
13302
|
+
query["TaskId"] = request.taskId;
|
|
13303
|
+
}
|
|
13304
|
+
|
|
13305
|
+
if (!Util.isUnset(request.taskName)) {
|
|
13306
|
+
query["TaskName"] = request.taskName;
|
|
13307
|
+
}
|
|
13308
|
+
|
|
13309
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
13310
|
+
query: OpenApiUtil.query(query),
|
|
13311
|
+
});
|
|
13312
|
+
let params = new $OpenApi.Params({
|
|
13313
|
+
action: "UpdateApplicationMonitor",
|
|
13314
|
+
version: "2019-11-20",
|
|
13315
|
+
protocol: "HTTPS",
|
|
13316
|
+
pathname: "/",
|
|
13317
|
+
method: "POST",
|
|
13318
|
+
authType: "AK",
|
|
13319
|
+
style: "RPC",
|
|
13320
|
+
reqBodyType: "formData",
|
|
13321
|
+
bodyType: "json",
|
|
13322
|
+
});
|
|
13323
|
+
return $tea.cast<UpdateApplicationMonitorResponse>(await this.callApi(params, req, runtime), new UpdateApplicationMonitorResponse({}));
|
|
13324
|
+
}
|
|
13325
|
+
|
|
13326
|
+
async updateApplicationMonitor(request: UpdateApplicationMonitorRequest): Promise<UpdateApplicationMonitorResponse> {
|
|
13327
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
13328
|
+
return await this.updateApplicationMonitorWithOptions(request, runtime);
|
|
13329
|
+
}
|
|
13330
|
+
|
|
11154
13331
|
async updateBandwidthPackageWithOptions(request: UpdateBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBandwidthPackageResponse> {
|
|
11155
13332
|
Util.validateModel(request);
|
|
11156
13333
|
let query = { };
|
|
11157
|
-
|
|
11158
|
-
|
|
11159
|
-
|
|
11160
|
-
|
|
11161
|
-
|
|
11162
|
-
|
|
11163
|
-
|
|
11164
|
-
|
|
13334
|
+
if (!Util.isUnset(request.autoPay)) {
|
|
13335
|
+
query["AutoPay"] = request.autoPay;
|
|
13336
|
+
}
|
|
13337
|
+
|
|
13338
|
+
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
13339
|
+
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
13340
|
+
}
|
|
13341
|
+
|
|
13342
|
+
if (!Util.isUnset(request.bandwidth)) {
|
|
13343
|
+
query["Bandwidth"] = request.bandwidth;
|
|
13344
|
+
}
|
|
13345
|
+
|
|
13346
|
+
if (!Util.isUnset(request.bandwidthPackageId)) {
|
|
13347
|
+
query["BandwidthPackageId"] = request.bandwidthPackageId;
|
|
13348
|
+
}
|
|
13349
|
+
|
|
13350
|
+
if (!Util.isUnset(request.bandwidthType)) {
|
|
13351
|
+
query["BandwidthType"] = request.bandwidthType;
|
|
13352
|
+
}
|
|
13353
|
+
|
|
13354
|
+
if (!Util.isUnset(request.description)) {
|
|
13355
|
+
query["Description"] = request.description;
|
|
13356
|
+
}
|
|
13357
|
+
|
|
13358
|
+
if (!Util.isUnset(request.name)) {
|
|
13359
|
+
query["Name"] = request.name;
|
|
13360
|
+
}
|
|
13361
|
+
|
|
13362
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13363
|
+
query["RegionId"] = request.regionId;
|
|
13364
|
+
}
|
|
13365
|
+
|
|
11165
13366
|
let req = new $OpenApi.OpenApiRequest({
|
|
11166
13367
|
query: OpenApiUtil.query(query),
|
|
11167
13368
|
});
|
|
@@ -11187,11 +13388,26 @@ export default class Client extends OpenApi {
|
|
|
11187
13388
|
async updateBasicAcceleratorWithOptions(request: UpdateBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicAcceleratorResponse> {
|
|
11188
13389
|
Util.validateModel(request);
|
|
11189
13390
|
let query = { };
|
|
11190
|
-
|
|
11191
|
-
|
|
11192
|
-
|
|
11193
|
-
|
|
11194
|
-
|
|
13391
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13392
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13393
|
+
}
|
|
13394
|
+
|
|
13395
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13396
|
+
query["ClientToken"] = request.clientToken;
|
|
13397
|
+
}
|
|
13398
|
+
|
|
13399
|
+
if (!Util.isUnset(request.description)) {
|
|
13400
|
+
query["Description"] = request.description;
|
|
13401
|
+
}
|
|
13402
|
+
|
|
13403
|
+
if (!Util.isUnset(request.name)) {
|
|
13404
|
+
query["Name"] = request.name;
|
|
13405
|
+
}
|
|
13406
|
+
|
|
13407
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13408
|
+
query["RegionId"] = request.regionId;
|
|
13409
|
+
}
|
|
13410
|
+
|
|
11195
13411
|
let req = new $OpenApi.OpenApiRequest({
|
|
11196
13412
|
query: OpenApiUtil.query(query),
|
|
11197
13413
|
});
|
|
@@ -11217,13 +13433,34 @@ export default class Client extends OpenApi {
|
|
|
11217
13433
|
async updateBasicEndpointGroupWithOptions(request: UpdateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointGroupResponse> {
|
|
11218
13434
|
Util.validateModel(request);
|
|
11219
13435
|
let query = { };
|
|
11220
|
-
|
|
11221
|
-
|
|
11222
|
-
|
|
11223
|
-
|
|
11224
|
-
|
|
11225
|
-
|
|
11226
|
-
|
|
13436
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13437
|
+
query["ClientToken"] = request.clientToken;
|
|
13438
|
+
}
|
|
13439
|
+
|
|
13440
|
+
if (!Util.isUnset(request.description)) {
|
|
13441
|
+
query["Description"] = request.description;
|
|
13442
|
+
}
|
|
13443
|
+
|
|
13444
|
+
if (!Util.isUnset(request.endpointAddress)) {
|
|
13445
|
+
query["EndpointAddress"] = request.endpointAddress;
|
|
13446
|
+
}
|
|
13447
|
+
|
|
13448
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
13449
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
13450
|
+
}
|
|
13451
|
+
|
|
13452
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
13453
|
+
query["EndpointType"] = request.endpointType;
|
|
13454
|
+
}
|
|
13455
|
+
|
|
13456
|
+
if (!Util.isUnset(request.name)) {
|
|
13457
|
+
query["Name"] = request.name;
|
|
13458
|
+
}
|
|
13459
|
+
|
|
13460
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13461
|
+
query["RegionId"] = request.regionId;
|
|
13462
|
+
}
|
|
13463
|
+
|
|
11227
13464
|
let req = new $OpenApi.OpenApiRequest({
|
|
11228
13465
|
query: OpenApiUtil.query(query),
|
|
11229
13466
|
});
|
|
@@ -11249,22 +13486,70 @@ export default class Client extends OpenApi {
|
|
|
11249
13486
|
async updateEndpointGroupWithOptions(request: UpdateEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateEndpointGroupResponse> {
|
|
11250
13487
|
Util.validateModel(request);
|
|
11251
13488
|
let query = { };
|
|
11252
|
-
|
|
11253
|
-
|
|
11254
|
-
|
|
11255
|
-
|
|
11256
|
-
|
|
11257
|
-
|
|
11258
|
-
|
|
11259
|
-
|
|
11260
|
-
|
|
11261
|
-
|
|
11262
|
-
|
|
11263
|
-
|
|
11264
|
-
|
|
11265
|
-
|
|
11266
|
-
|
|
11267
|
-
|
|
13489
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13490
|
+
query["ClientToken"] = request.clientToken;
|
|
13491
|
+
}
|
|
13492
|
+
|
|
13493
|
+
if (!Util.isUnset(request.description)) {
|
|
13494
|
+
query["Description"] = request.description;
|
|
13495
|
+
}
|
|
13496
|
+
|
|
13497
|
+
if (!Util.isUnset(request.endpointConfigurations)) {
|
|
13498
|
+
query["EndpointConfigurations"] = request.endpointConfigurations;
|
|
13499
|
+
}
|
|
13500
|
+
|
|
13501
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
13502
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
13503
|
+
}
|
|
13504
|
+
|
|
13505
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
13506
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
13507
|
+
}
|
|
13508
|
+
|
|
13509
|
+
if (!Util.isUnset(request.endpointRequestProtocol)) {
|
|
13510
|
+
query["EndpointRequestProtocol"] = request.endpointRequestProtocol;
|
|
13511
|
+
}
|
|
13512
|
+
|
|
13513
|
+
if (!Util.isUnset(request.healthCheckEnabled)) {
|
|
13514
|
+
query["HealthCheckEnabled"] = request.healthCheckEnabled;
|
|
13515
|
+
}
|
|
13516
|
+
|
|
13517
|
+
if (!Util.isUnset(request.healthCheckIntervalSeconds)) {
|
|
13518
|
+
query["HealthCheckIntervalSeconds"] = request.healthCheckIntervalSeconds;
|
|
13519
|
+
}
|
|
13520
|
+
|
|
13521
|
+
if (!Util.isUnset(request.healthCheckPath)) {
|
|
13522
|
+
query["HealthCheckPath"] = request.healthCheckPath;
|
|
13523
|
+
}
|
|
13524
|
+
|
|
13525
|
+
if (!Util.isUnset(request.healthCheckPort)) {
|
|
13526
|
+
query["HealthCheckPort"] = request.healthCheckPort;
|
|
13527
|
+
}
|
|
13528
|
+
|
|
13529
|
+
if (!Util.isUnset(request.healthCheckProtocol)) {
|
|
13530
|
+
query["HealthCheckProtocol"] = request.healthCheckProtocol;
|
|
13531
|
+
}
|
|
13532
|
+
|
|
13533
|
+
if (!Util.isUnset(request.name)) {
|
|
13534
|
+
query["Name"] = request.name;
|
|
13535
|
+
}
|
|
13536
|
+
|
|
13537
|
+
if (!Util.isUnset(request.portOverrides)) {
|
|
13538
|
+
query["PortOverrides"] = request.portOverrides;
|
|
13539
|
+
}
|
|
13540
|
+
|
|
13541
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13542
|
+
query["RegionId"] = request.regionId;
|
|
13543
|
+
}
|
|
13544
|
+
|
|
13545
|
+
if (!Util.isUnset(request.thresholdCount)) {
|
|
13546
|
+
query["ThresholdCount"] = request.thresholdCount;
|
|
13547
|
+
}
|
|
13548
|
+
|
|
13549
|
+
if (!Util.isUnset(request.trafficPercentage)) {
|
|
13550
|
+
query["TrafficPercentage"] = request.trafficPercentage;
|
|
13551
|
+
}
|
|
13552
|
+
|
|
11268
13553
|
let req = new $OpenApi.OpenApiRequest({
|
|
11269
13554
|
query: OpenApiUtil.query(query),
|
|
11270
13555
|
});
|
|
@@ -11290,11 +13575,26 @@ export default class Client extends OpenApi {
|
|
|
11290
13575
|
async updateEndpointGroupAttributeWithOptions(request: UpdateEndpointGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateEndpointGroupAttributeResponse> {
|
|
11291
13576
|
Util.validateModel(request);
|
|
11292
13577
|
let query = { };
|
|
11293
|
-
|
|
11294
|
-
|
|
11295
|
-
|
|
11296
|
-
|
|
11297
|
-
|
|
13578
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13579
|
+
query["ClientToken"] = request.clientToken;
|
|
13580
|
+
}
|
|
13581
|
+
|
|
13582
|
+
if (!Util.isUnset(request.description)) {
|
|
13583
|
+
query["Description"] = request.description;
|
|
13584
|
+
}
|
|
13585
|
+
|
|
13586
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
13587
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
13588
|
+
}
|
|
13589
|
+
|
|
13590
|
+
if (!Util.isUnset(request.name)) {
|
|
13591
|
+
query["Name"] = request.name;
|
|
13592
|
+
}
|
|
13593
|
+
|
|
13594
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13595
|
+
query["RegionId"] = request.regionId;
|
|
13596
|
+
}
|
|
13597
|
+
|
|
11298
13598
|
let req = new $OpenApi.OpenApiRequest({
|
|
11299
13599
|
query: OpenApiUtil.query(query),
|
|
11300
13600
|
});
|
|
@@ -11320,11 +13620,26 @@ export default class Client extends OpenApi {
|
|
|
11320
13620
|
async updateEndpointGroupsWithOptions(request: UpdateEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<UpdateEndpointGroupsResponse> {
|
|
11321
13621
|
Util.validateModel(request);
|
|
11322
13622
|
let query = { };
|
|
11323
|
-
|
|
11324
|
-
|
|
11325
|
-
|
|
11326
|
-
|
|
11327
|
-
|
|
13623
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13624
|
+
query["ClientToken"] = request.clientToken;
|
|
13625
|
+
}
|
|
13626
|
+
|
|
13627
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
13628
|
+
query["DryRun"] = request.dryRun;
|
|
13629
|
+
}
|
|
13630
|
+
|
|
13631
|
+
if (!Util.isUnset(request.endpointGroupConfigurations)) {
|
|
13632
|
+
query["EndpointGroupConfigurations"] = request.endpointGroupConfigurations;
|
|
13633
|
+
}
|
|
13634
|
+
|
|
13635
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13636
|
+
query["ListenerId"] = request.listenerId;
|
|
13637
|
+
}
|
|
13638
|
+
|
|
13639
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13640
|
+
query["RegionId"] = request.regionId;
|
|
13641
|
+
}
|
|
13642
|
+
|
|
11328
13643
|
let req = new $OpenApi.OpenApiRequest({
|
|
11329
13644
|
query: OpenApiUtil.query(query),
|
|
11330
13645
|
});
|
|
@@ -11350,11 +13665,26 @@ export default class Client extends OpenApi {
|
|
|
11350
13665
|
async updateForwardingRulesWithOptions(request: UpdateForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<UpdateForwardingRulesResponse> {
|
|
11351
13666
|
Util.validateModel(request);
|
|
11352
13667
|
let query = { };
|
|
11353
|
-
|
|
11354
|
-
|
|
11355
|
-
|
|
11356
|
-
|
|
11357
|
-
|
|
13668
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
13669
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
13670
|
+
}
|
|
13671
|
+
|
|
13672
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13673
|
+
query["ClientToken"] = request.clientToken;
|
|
13674
|
+
}
|
|
13675
|
+
|
|
13676
|
+
if (!Util.isUnset(request.forwardingRules)) {
|
|
13677
|
+
query["ForwardingRules"] = request.forwardingRules;
|
|
13678
|
+
}
|
|
13679
|
+
|
|
13680
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13681
|
+
query["ListenerId"] = request.listenerId;
|
|
13682
|
+
}
|
|
13683
|
+
|
|
13684
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13685
|
+
query["RegionId"] = request.regionId;
|
|
13686
|
+
}
|
|
13687
|
+
|
|
11358
13688
|
let req = new $OpenApi.OpenApiRequest({
|
|
11359
13689
|
query: OpenApiUtil.query(query),
|
|
11360
13690
|
});
|
|
@@ -11380,10 +13710,22 @@ export default class Client extends OpenApi {
|
|
|
11380
13710
|
async updateIpSetWithOptions(request: UpdateIpSetRequest, runtime: $Util.RuntimeOptions): Promise<UpdateIpSetResponse> {
|
|
11381
13711
|
Util.validateModel(request);
|
|
11382
13712
|
let query = { };
|
|
11383
|
-
|
|
11384
|
-
|
|
11385
|
-
|
|
11386
|
-
|
|
13713
|
+
if (!Util.isUnset(request.bandwidth)) {
|
|
13714
|
+
query["Bandwidth"] = request.bandwidth;
|
|
13715
|
+
}
|
|
13716
|
+
|
|
13717
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13718
|
+
query["ClientToken"] = request.clientToken;
|
|
13719
|
+
}
|
|
13720
|
+
|
|
13721
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
13722
|
+
query["IpSetId"] = request.ipSetId;
|
|
13723
|
+
}
|
|
13724
|
+
|
|
13725
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13726
|
+
query["RegionId"] = request.regionId;
|
|
13727
|
+
}
|
|
13728
|
+
|
|
11387
13729
|
let req = new $OpenApi.OpenApiRequest({
|
|
11388
13730
|
query: OpenApiUtil.query(query),
|
|
11389
13731
|
});
|
|
@@ -11409,8 +13751,14 @@ export default class Client extends OpenApi {
|
|
|
11409
13751
|
async updateIpSetsWithOptions(request: UpdateIpSetsRequest, runtime: $Util.RuntimeOptions): Promise<UpdateIpSetsResponse> {
|
|
11410
13752
|
Util.validateModel(request);
|
|
11411
13753
|
let query = { };
|
|
11412
|
-
|
|
11413
|
-
|
|
13754
|
+
if (!Util.isUnset(request.ipSets)) {
|
|
13755
|
+
query["IpSets"] = request.ipSets;
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13758
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13759
|
+
query["RegionId"] = request.regionId;
|
|
13760
|
+
}
|
|
13761
|
+
|
|
11414
13762
|
let req = new $OpenApi.OpenApiRequest({
|
|
11415
13763
|
query: OpenApiUtil.query(query),
|
|
11416
13764
|
});
|
|
@@ -11436,19 +13784,58 @@ export default class Client extends OpenApi {
|
|
|
11436
13784
|
async updateListenerWithOptions(request: UpdateListenerRequest, runtime: $Util.RuntimeOptions): Promise<UpdateListenerResponse> {
|
|
11437
13785
|
Util.validateModel(request);
|
|
11438
13786
|
let query = { };
|
|
11439
|
-
|
|
11440
|
-
|
|
11441
|
-
|
|
11442
|
-
|
|
11443
|
-
|
|
11444
|
-
|
|
11445
|
-
|
|
11446
|
-
|
|
11447
|
-
|
|
11448
|
-
|
|
11449
|
-
|
|
11450
|
-
|
|
11451
|
-
|
|
13787
|
+
if (!Util.isUnset(request.backendPorts)) {
|
|
13788
|
+
query["BackendPorts"] = request.backendPorts;
|
|
13789
|
+
}
|
|
13790
|
+
|
|
13791
|
+
if (!Util.isUnset(request.certificates)) {
|
|
13792
|
+
query["Certificates"] = request.certificates;
|
|
13793
|
+
}
|
|
13794
|
+
|
|
13795
|
+
if (!Util.isUnset(request.clientAffinity)) {
|
|
13796
|
+
query["ClientAffinity"] = request.clientAffinity;
|
|
13797
|
+
}
|
|
13798
|
+
|
|
13799
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13800
|
+
query["ClientToken"] = request.clientToken;
|
|
13801
|
+
}
|
|
13802
|
+
|
|
13803
|
+
if (!Util.isUnset(request.description)) {
|
|
13804
|
+
query["Description"] = request.description;
|
|
13805
|
+
}
|
|
13806
|
+
|
|
13807
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
13808
|
+
query["ListenerId"] = request.listenerId;
|
|
13809
|
+
}
|
|
13810
|
+
|
|
13811
|
+
if (!Util.isUnset(request.name)) {
|
|
13812
|
+
query["Name"] = request.name;
|
|
13813
|
+
}
|
|
13814
|
+
|
|
13815
|
+
if (!Util.isUnset(request.portRanges)) {
|
|
13816
|
+
query["PortRanges"] = request.portRanges;
|
|
13817
|
+
}
|
|
13818
|
+
|
|
13819
|
+
if (!Util.isUnset(request.protocol)) {
|
|
13820
|
+
query["Protocol"] = request.protocol;
|
|
13821
|
+
}
|
|
13822
|
+
|
|
13823
|
+
if (!Util.isUnset(request.proxyProtocol)) {
|
|
13824
|
+
query["ProxyProtocol"] = request.proxyProtocol;
|
|
13825
|
+
}
|
|
13826
|
+
|
|
13827
|
+
if (!Util.isUnset(request.regionId)) {
|
|
13828
|
+
query["RegionId"] = request.regionId;
|
|
13829
|
+
}
|
|
13830
|
+
|
|
13831
|
+
if (!Util.isUnset(request.securityPolicyId)) {
|
|
13832
|
+
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
13833
|
+
}
|
|
13834
|
+
|
|
13835
|
+
if (!Util.isUnset($tea.toMap(request.XForwardedForConfig))) {
|
|
13836
|
+
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
13837
|
+
}
|
|
13838
|
+
|
|
11452
13839
|
let req = new $OpenApi.OpenApiRequest({
|
|
11453
13840
|
query: OpenApiUtil.query(query),
|
|
11454
13841
|
});
|