@alicloud/esa20240910 2.20.0 → 2.22.0
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 +826 -104
- package/dist/client.js +947 -27
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1465 -105
package/src/client.ts
CHANGED
|
@@ -4200,7 +4200,7 @@ export class CreateSiteDeliveryTaskRequestS3Delivery extends $dara.Model {
|
|
|
4200
4200
|
* The access key ID of your Amazon S3 account.
|
|
4201
4201
|
*
|
|
4202
4202
|
* @example
|
|
4203
|
-
*
|
|
4203
|
+
* yourAccessKeyID
|
|
4204
4204
|
*/
|
|
4205
4205
|
accessKey?: string;
|
|
4206
4206
|
/**
|
|
@@ -5612,6 +5612,282 @@ export class DescribePurgeTasksResponseBodyTasks extends $dara.Model {
|
|
|
5612
5612
|
}
|
|
5613
5613
|
}
|
|
5614
5614
|
|
|
5615
|
+
export class DescribeSiteTimeSeriesDataRequestFields extends $dara.Model {
|
|
5616
|
+
dimension?: string[];
|
|
5617
|
+
/**
|
|
5618
|
+
* @example
|
|
5619
|
+
* Traffic
|
|
5620
|
+
*/
|
|
5621
|
+
fieldName?: string;
|
|
5622
|
+
static names(): { [key: string]: string } {
|
|
5623
|
+
return {
|
|
5624
|
+
dimension: 'Dimension',
|
|
5625
|
+
fieldName: 'FieldName',
|
|
5626
|
+
};
|
|
5627
|
+
}
|
|
5628
|
+
|
|
5629
|
+
static types(): { [key: string]: any } {
|
|
5630
|
+
return {
|
|
5631
|
+
dimension: { 'type': 'array', 'itemType': 'string' },
|
|
5632
|
+
fieldName: 'string',
|
|
5633
|
+
};
|
|
5634
|
+
}
|
|
5635
|
+
|
|
5636
|
+
validate() {
|
|
5637
|
+
if(Array.isArray(this.dimension)) {
|
|
5638
|
+
$dara.Model.validateArray(this.dimension);
|
|
5639
|
+
}
|
|
5640
|
+
super.validate();
|
|
5641
|
+
}
|
|
5642
|
+
|
|
5643
|
+
constructor(map?: { [key: string]: any }) {
|
|
5644
|
+
super(map);
|
|
5645
|
+
}
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
export class DescribeSiteTimeSeriesDataResponseBodyDataDetailData extends $dara.Model {
|
|
5649
|
+
/**
|
|
5650
|
+
* @example
|
|
5651
|
+
* 2023-04-08T16:00:00Z
|
|
5652
|
+
*/
|
|
5653
|
+
timeStamp?: string;
|
|
5654
|
+
/**
|
|
5655
|
+
* @example
|
|
5656
|
+
* 123
|
|
5657
|
+
*/
|
|
5658
|
+
value?: any;
|
|
5659
|
+
static names(): { [key: string]: string } {
|
|
5660
|
+
return {
|
|
5661
|
+
timeStamp: 'TimeStamp',
|
|
5662
|
+
value: 'Value',
|
|
5663
|
+
};
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
static types(): { [key: string]: any } {
|
|
5667
|
+
return {
|
|
5668
|
+
timeStamp: 'string',
|
|
5669
|
+
value: 'any',
|
|
5670
|
+
};
|
|
5671
|
+
}
|
|
5672
|
+
|
|
5673
|
+
validate() {
|
|
5674
|
+
super.validate();
|
|
5675
|
+
}
|
|
5676
|
+
|
|
5677
|
+
constructor(map?: { [key: string]: any }) {
|
|
5678
|
+
super(map);
|
|
5679
|
+
}
|
|
5680
|
+
}
|
|
5681
|
+
|
|
5682
|
+
export class DescribeSiteTimeSeriesDataResponseBodyData extends $dara.Model {
|
|
5683
|
+
detailData?: DescribeSiteTimeSeriesDataResponseBodyDataDetailData[];
|
|
5684
|
+
/**
|
|
5685
|
+
* @example
|
|
5686
|
+
* ALL
|
|
5687
|
+
*/
|
|
5688
|
+
dimensionName?: string;
|
|
5689
|
+
/**
|
|
5690
|
+
* @example
|
|
5691
|
+
* ALL
|
|
5692
|
+
*/
|
|
5693
|
+
dimensionValue?: string;
|
|
5694
|
+
/**
|
|
5695
|
+
* @example
|
|
5696
|
+
* Traffic
|
|
5697
|
+
*/
|
|
5698
|
+
fieldName?: string;
|
|
5699
|
+
static names(): { [key: string]: string } {
|
|
5700
|
+
return {
|
|
5701
|
+
detailData: 'DetailData',
|
|
5702
|
+
dimensionName: 'DimensionName',
|
|
5703
|
+
dimensionValue: 'DimensionValue',
|
|
5704
|
+
fieldName: 'FieldName',
|
|
5705
|
+
};
|
|
5706
|
+
}
|
|
5707
|
+
|
|
5708
|
+
static types(): { [key: string]: any } {
|
|
5709
|
+
return {
|
|
5710
|
+
detailData: { 'type': 'array', 'itemType': DescribeSiteTimeSeriesDataResponseBodyDataDetailData },
|
|
5711
|
+
dimensionName: 'string',
|
|
5712
|
+
dimensionValue: 'string',
|
|
5713
|
+
fieldName: 'string',
|
|
5714
|
+
};
|
|
5715
|
+
}
|
|
5716
|
+
|
|
5717
|
+
validate() {
|
|
5718
|
+
if(Array.isArray(this.detailData)) {
|
|
5719
|
+
$dara.Model.validateArray(this.detailData);
|
|
5720
|
+
}
|
|
5721
|
+
super.validate();
|
|
5722
|
+
}
|
|
5723
|
+
|
|
5724
|
+
constructor(map?: { [key: string]: any }) {
|
|
5725
|
+
super(map);
|
|
5726
|
+
}
|
|
5727
|
+
}
|
|
5728
|
+
|
|
5729
|
+
export class DescribeSiteTimeSeriesDataResponseBodySummarizedData extends $dara.Model {
|
|
5730
|
+
/**
|
|
5731
|
+
* @example
|
|
5732
|
+
* sum
|
|
5733
|
+
*/
|
|
5734
|
+
aggMethod?: string;
|
|
5735
|
+
/**
|
|
5736
|
+
* @example
|
|
5737
|
+
* ALL
|
|
5738
|
+
*/
|
|
5739
|
+
dimensionName?: string;
|
|
5740
|
+
/**
|
|
5741
|
+
* @example
|
|
5742
|
+
* ALL
|
|
5743
|
+
*/
|
|
5744
|
+
dimensionValue?: string;
|
|
5745
|
+
/**
|
|
5746
|
+
* @example
|
|
5747
|
+
* Traffic
|
|
5748
|
+
*/
|
|
5749
|
+
fieldName?: string;
|
|
5750
|
+
/**
|
|
5751
|
+
* @example
|
|
5752
|
+
* 12345
|
|
5753
|
+
*/
|
|
5754
|
+
value?: any;
|
|
5755
|
+
static names(): { [key: string]: string } {
|
|
5756
|
+
return {
|
|
5757
|
+
aggMethod: 'AggMethod',
|
|
5758
|
+
dimensionName: 'DimensionName',
|
|
5759
|
+
dimensionValue: 'DimensionValue',
|
|
5760
|
+
fieldName: 'FieldName',
|
|
5761
|
+
value: 'Value',
|
|
5762
|
+
};
|
|
5763
|
+
}
|
|
5764
|
+
|
|
5765
|
+
static types(): { [key: string]: any } {
|
|
5766
|
+
return {
|
|
5767
|
+
aggMethod: 'string',
|
|
5768
|
+
dimensionName: 'string',
|
|
5769
|
+
dimensionValue: 'string',
|
|
5770
|
+
fieldName: 'string',
|
|
5771
|
+
value: 'any',
|
|
5772
|
+
};
|
|
5773
|
+
}
|
|
5774
|
+
|
|
5775
|
+
validate() {
|
|
5776
|
+
super.validate();
|
|
5777
|
+
}
|
|
5778
|
+
|
|
5779
|
+
constructor(map?: { [key: string]: any }) {
|
|
5780
|
+
super(map);
|
|
5781
|
+
}
|
|
5782
|
+
}
|
|
5783
|
+
|
|
5784
|
+
export class DescribeSiteTopDataRequestFields extends $dara.Model {
|
|
5785
|
+
dimension?: string[];
|
|
5786
|
+
/**
|
|
5787
|
+
* @example
|
|
5788
|
+
* Traffic
|
|
5789
|
+
*/
|
|
5790
|
+
fieldName?: string;
|
|
5791
|
+
static names(): { [key: string]: string } {
|
|
5792
|
+
return {
|
|
5793
|
+
dimension: 'Dimension',
|
|
5794
|
+
fieldName: 'FieldName',
|
|
5795
|
+
};
|
|
5796
|
+
}
|
|
5797
|
+
|
|
5798
|
+
static types(): { [key: string]: any } {
|
|
5799
|
+
return {
|
|
5800
|
+
dimension: { 'type': 'array', 'itemType': 'string' },
|
|
5801
|
+
fieldName: 'string',
|
|
5802
|
+
};
|
|
5803
|
+
}
|
|
5804
|
+
|
|
5805
|
+
validate() {
|
|
5806
|
+
if(Array.isArray(this.dimension)) {
|
|
5807
|
+
$dara.Model.validateArray(this.dimension);
|
|
5808
|
+
}
|
|
5809
|
+
super.validate();
|
|
5810
|
+
}
|
|
5811
|
+
|
|
5812
|
+
constructor(map?: { [key: string]: any }) {
|
|
5813
|
+
super(map);
|
|
5814
|
+
}
|
|
5815
|
+
}
|
|
5816
|
+
|
|
5817
|
+
export class DescribeSiteTopDataResponseBodyDataDetailData extends $dara.Model {
|
|
5818
|
+
/**
|
|
5819
|
+
* @example
|
|
5820
|
+
* ALL
|
|
5821
|
+
*/
|
|
5822
|
+
dimensionValue?: string;
|
|
5823
|
+
/**
|
|
5824
|
+
* @example
|
|
5825
|
+
* 123
|
|
5826
|
+
*/
|
|
5827
|
+
value?: any;
|
|
5828
|
+
static names(): { [key: string]: string } {
|
|
5829
|
+
return {
|
|
5830
|
+
dimensionValue: 'DimensionValue',
|
|
5831
|
+
value: 'Value',
|
|
5832
|
+
};
|
|
5833
|
+
}
|
|
5834
|
+
|
|
5835
|
+
static types(): { [key: string]: any } {
|
|
5836
|
+
return {
|
|
5837
|
+
dimensionValue: 'string',
|
|
5838
|
+
value: 'any',
|
|
5839
|
+
};
|
|
5840
|
+
}
|
|
5841
|
+
|
|
5842
|
+
validate() {
|
|
5843
|
+
super.validate();
|
|
5844
|
+
}
|
|
5845
|
+
|
|
5846
|
+
constructor(map?: { [key: string]: any }) {
|
|
5847
|
+
super(map);
|
|
5848
|
+
}
|
|
5849
|
+
}
|
|
5850
|
+
|
|
5851
|
+
export class DescribeSiteTopDataResponseBodyData extends $dara.Model {
|
|
5852
|
+
detailData?: DescribeSiteTopDataResponseBodyDataDetailData[];
|
|
5853
|
+
/**
|
|
5854
|
+
* @example
|
|
5855
|
+
* ALL
|
|
5856
|
+
*/
|
|
5857
|
+
dimensionName?: string;
|
|
5858
|
+
/**
|
|
5859
|
+
* @example
|
|
5860
|
+
* Traffic
|
|
5861
|
+
*/
|
|
5862
|
+
fieldName?: string;
|
|
5863
|
+
static names(): { [key: string]: string } {
|
|
5864
|
+
return {
|
|
5865
|
+
detailData: 'DetailData',
|
|
5866
|
+
dimensionName: 'DimensionName',
|
|
5867
|
+
fieldName: 'FieldName',
|
|
5868
|
+
};
|
|
5869
|
+
}
|
|
5870
|
+
|
|
5871
|
+
static types(): { [key: string]: any } {
|
|
5872
|
+
return {
|
|
5873
|
+
detailData: { 'type': 'array', 'itemType': DescribeSiteTopDataResponseBodyDataDetailData },
|
|
5874
|
+
dimensionName: 'string',
|
|
5875
|
+
fieldName: 'string',
|
|
5876
|
+
};
|
|
5877
|
+
}
|
|
5878
|
+
|
|
5879
|
+
validate() {
|
|
5880
|
+
if(Array.isArray(this.detailData)) {
|
|
5881
|
+
$dara.Model.validateArray(this.detailData);
|
|
5882
|
+
}
|
|
5883
|
+
super.validate();
|
|
5884
|
+
}
|
|
5885
|
+
|
|
5886
|
+
constructor(map?: { [key: string]: any }) {
|
|
5887
|
+
super(map);
|
|
5888
|
+
}
|
|
5889
|
+
}
|
|
5890
|
+
|
|
5615
5891
|
export class GetCertificateResponseBodyResultDCV extends $dara.Model {
|
|
5616
5892
|
/**
|
|
5617
5893
|
* @remarks
|
|
@@ -6605,6 +6881,54 @@ export class GetEdgeContainerAppResourceReserveResponseBodyReserveSet extends $d
|
|
|
6605
6881
|
}
|
|
6606
6882
|
}
|
|
6607
6883
|
|
|
6884
|
+
export class GetEdgeContainerAppResourceStatusResponseBodyRegions extends $dara.Model {
|
|
6885
|
+
/**
|
|
6886
|
+
* @example
|
|
6887
|
+
* unicom
|
|
6888
|
+
*/
|
|
6889
|
+
isp?: string;
|
|
6890
|
+
/**
|
|
6891
|
+
* @example
|
|
6892
|
+
* 1
|
|
6893
|
+
*/
|
|
6894
|
+
ready?: number;
|
|
6895
|
+
/**
|
|
6896
|
+
* @example
|
|
6897
|
+
* huadong
|
|
6898
|
+
*/
|
|
6899
|
+
region?: string;
|
|
6900
|
+
/**
|
|
6901
|
+
* @example
|
|
6902
|
+
* 1
|
|
6903
|
+
*/
|
|
6904
|
+
total?: number;
|
|
6905
|
+
static names(): { [key: string]: string } {
|
|
6906
|
+
return {
|
|
6907
|
+
isp: 'Isp',
|
|
6908
|
+
ready: 'Ready',
|
|
6909
|
+
region: 'Region',
|
|
6910
|
+
total: 'Total',
|
|
6911
|
+
};
|
|
6912
|
+
}
|
|
6913
|
+
|
|
6914
|
+
static types(): { [key: string]: any } {
|
|
6915
|
+
return {
|
|
6916
|
+
isp: 'string',
|
|
6917
|
+
ready: 'number',
|
|
6918
|
+
region: 'string',
|
|
6919
|
+
total: 'number',
|
|
6920
|
+
};
|
|
6921
|
+
}
|
|
6922
|
+
|
|
6923
|
+
validate() {
|
|
6924
|
+
super.validate();
|
|
6925
|
+
}
|
|
6926
|
+
|
|
6927
|
+
constructor(map?: { [key: string]: any }) {
|
|
6928
|
+
super(map);
|
|
6929
|
+
}
|
|
6930
|
+
}
|
|
6931
|
+
|
|
6608
6932
|
export class GetEdgeContainerAppStatusResponseBodyAppStatusRegions extends $dara.Model {
|
|
6609
6933
|
region?: string[];
|
|
6610
6934
|
static names(): { [key: string]: string } {
|
|
@@ -15923,6 +16247,7 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15923
16247
|
* on
|
|
15924
16248
|
*/
|
|
15925
16249
|
originMtls?: string;
|
|
16250
|
+
originReadTimeout?: string;
|
|
15926
16251
|
/**
|
|
15927
16252
|
* @remarks
|
|
15928
16253
|
* Protocol used for the origin request. Value range:
|
|
@@ -16017,6 +16342,7 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
16017
16342
|
originHttpPort: 'OriginHttpPort',
|
|
16018
16343
|
originHttpsPort: 'OriginHttpsPort',
|
|
16019
16344
|
originMtls: 'OriginMtls',
|
|
16345
|
+
originReadTimeout: 'OriginReadTimeout',
|
|
16020
16346
|
originScheme: 'OriginScheme',
|
|
16021
16347
|
originSni: 'OriginSni',
|
|
16022
16348
|
originVerify: 'OriginVerify',
|
|
@@ -16039,6 +16365,7 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
16039
16365
|
originHttpPort: 'string',
|
|
16040
16366
|
originHttpsPort: 'string',
|
|
16041
16367
|
originMtls: 'string',
|
|
16368
|
+
originReadTimeout: 'string',
|
|
16042
16369
|
originScheme: 'string',
|
|
16043
16370
|
originSni: 'string',
|
|
16044
16371
|
originVerify: 'string',
|
|
@@ -17316,7 +17643,7 @@ export class ListSiteDeliveryTasksResponseBodyTasks extends $dara.Model {
|
|
|
17316
17643
|
export class ListSitesRequestTagFilter extends $dara.Model {
|
|
17317
17644
|
/**
|
|
17318
17645
|
* @remarks
|
|
17319
|
-
*
|
|
17646
|
+
* The tag key. This parameter specifies a filter condition for the query.
|
|
17320
17647
|
*
|
|
17321
17648
|
* @example
|
|
17322
17649
|
* tag1
|
|
@@ -17324,7 +17651,7 @@ export class ListSitesRequestTagFilter extends $dara.Model {
|
|
|
17324
17651
|
key?: string;
|
|
17325
17652
|
/**
|
|
17326
17653
|
* @remarks
|
|
17327
|
-
*
|
|
17654
|
+
* The tag value. This parameter specifies a filter condition for the query.
|
|
17328
17655
|
*
|
|
17329
17656
|
* @example
|
|
17330
17657
|
* aaa
|
|
@@ -17356,10 +17683,10 @@ export class ListSitesRequestTagFilter extends $dara.Model {
|
|
|
17356
17683
|
export class ListSitesResponseBodySites extends $dara.Model {
|
|
17357
17684
|
/**
|
|
17358
17685
|
* @remarks
|
|
17359
|
-
*
|
|
17686
|
+
* The DNS setup for the website. Valid values:
|
|
17360
17687
|
*
|
|
17361
|
-
*
|
|
17362
|
-
*
|
|
17688
|
+
* * **NS**
|
|
17689
|
+
* * **CNAME**
|
|
17363
17690
|
*
|
|
17364
17691
|
* @example
|
|
17365
17692
|
* NS
|
|
@@ -17367,7 +17694,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17367
17694
|
accessType?: string;
|
|
17368
17695
|
/**
|
|
17369
17696
|
* @remarks
|
|
17370
|
-
* CNAME
|
|
17697
|
+
* The CNAME of the website domain. If you use CNAME setup when you add your website to ESA, the value is the CNAME that you configured then.
|
|
17371
17698
|
*
|
|
17372
17699
|
* @example
|
|
17373
17700
|
* example.cname.com
|
|
@@ -17375,11 +17702,11 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17375
17702
|
cnameZone?: string;
|
|
17376
17703
|
/**
|
|
17377
17704
|
* @remarks
|
|
17378
|
-
*
|
|
17705
|
+
* The service location for the website. Valid values:
|
|
17379
17706
|
*
|
|
17380
|
-
*
|
|
17381
|
-
*
|
|
17382
|
-
*
|
|
17707
|
+
* * **domestic**: the Chinese mainland
|
|
17708
|
+
* * **global**: global
|
|
17709
|
+
* * **overseas**: outside the Chinese mainland
|
|
17383
17710
|
*
|
|
17384
17711
|
* @example
|
|
17385
17712
|
* domestic
|
|
@@ -17387,7 +17714,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17387
17714
|
coverage?: string;
|
|
17388
17715
|
/**
|
|
17389
17716
|
* @remarks
|
|
17390
|
-
*
|
|
17717
|
+
* The time when the website was added. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
17391
17718
|
*
|
|
17392
17719
|
* @example
|
|
17393
17720
|
* 2023-12-24T02:01:11Z
|
|
@@ -17395,7 +17722,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17395
17722
|
createTime?: string;
|
|
17396
17723
|
/**
|
|
17397
17724
|
* @remarks
|
|
17398
|
-
* The ID of the plan
|
|
17725
|
+
* The ID of the plan associated with the website.
|
|
17399
17726
|
*
|
|
17400
17727
|
* @example
|
|
17401
17728
|
* onBvtlmIyeXLbiDw81F9
|
|
@@ -17403,7 +17730,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17403
17730
|
instanceId?: string;
|
|
17404
17731
|
/**
|
|
17405
17732
|
* @remarks
|
|
17406
|
-
* The
|
|
17733
|
+
* The nameservers assigned to the website domain, which are separated by commas (,).
|
|
17407
17734
|
*
|
|
17408
17735
|
* @example
|
|
17409
17736
|
* male1-1.ialicdn.com,female1-1.ialicdn.com
|
|
@@ -17412,7 +17739,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17412
17739
|
offlineReason?: string;
|
|
17413
17740
|
/**
|
|
17414
17741
|
* @remarks
|
|
17415
|
-
* The name
|
|
17742
|
+
* The plan name.
|
|
17416
17743
|
*
|
|
17417
17744
|
* @example
|
|
17418
17745
|
* plan-168656498****
|
|
@@ -17420,7 +17747,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17420
17747
|
planName?: string;
|
|
17421
17748
|
/**
|
|
17422
17749
|
* @remarks
|
|
17423
|
-
* The
|
|
17750
|
+
* The plan associated with the website.
|
|
17424
17751
|
*
|
|
17425
17752
|
* @example
|
|
17426
17753
|
* normal
|
|
@@ -17428,7 +17755,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17428
17755
|
planSpecName?: string;
|
|
17429
17756
|
/**
|
|
17430
17757
|
* @remarks
|
|
17431
|
-
* The resource group
|
|
17758
|
+
* The ID of the resource group.
|
|
17432
17759
|
*
|
|
17433
17760
|
* @example
|
|
17434
17761
|
* rg-aek26g6i6se6pna
|
|
@@ -17436,7 +17763,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17436
17763
|
resourceGroupId?: string;
|
|
17437
17764
|
/**
|
|
17438
17765
|
* @remarks
|
|
17439
|
-
* The
|
|
17766
|
+
* The website ID.
|
|
17440
17767
|
*
|
|
17441
17768
|
* @example
|
|
17442
17769
|
* 123456789****
|
|
@@ -17444,7 +17771,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17444
17771
|
siteId?: number;
|
|
17445
17772
|
/**
|
|
17446
17773
|
* @remarks
|
|
17447
|
-
* The name
|
|
17774
|
+
* The website name.
|
|
17448
17775
|
*
|
|
17449
17776
|
* @example
|
|
17450
17777
|
* example.com
|
|
@@ -17452,11 +17779,12 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17452
17779
|
siteName?: string;
|
|
17453
17780
|
/**
|
|
17454
17781
|
* @remarks
|
|
17455
|
-
* The status
|
|
17456
|
-
*
|
|
17457
|
-
*
|
|
17458
|
-
*
|
|
17459
|
-
*
|
|
17782
|
+
* The website status. Valid values:
|
|
17783
|
+
*
|
|
17784
|
+
* * **pending**: The website is to be configured.
|
|
17785
|
+
* * **active**: The website is active.
|
|
17786
|
+
* * **offline**: The website is suspended.
|
|
17787
|
+
* * **moved**: The website has been added and verified by another Alibaba Cloud account.
|
|
17460
17788
|
*
|
|
17461
17789
|
* @example
|
|
17462
17790
|
* pending
|
|
@@ -17464,7 +17792,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17464
17792
|
status?: string;
|
|
17465
17793
|
/**
|
|
17466
17794
|
* @remarks
|
|
17467
|
-
* The tags of the
|
|
17795
|
+
* The tags of the website.
|
|
17468
17796
|
*
|
|
17469
17797
|
* @example
|
|
17470
17798
|
* {"tag1":"value1"}
|
|
@@ -17472,7 +17800,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17472
17800
|
tags?: { [key: string]: any };
|
|
17473
17801
|
/**
|
|
17474
17802
|
* @remarks
|
|
17475
|
-
* The
|
|
17803
|
+
* The time when the website was updated. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
17476
17804
|
*
|
|
17477
17805
|
* @example
|
|
17478
17806
|
* 2023-12-24T02:01:11Z
|
|
@@ -17480,7 +17808,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17480
17808
|
updateTime?: string;
|
|
17481
17809
|
/**
|
|
17482
17810
|
* @remarks
|
|
17483
|
-
* The
|
|
17811
|
+
* The code that is used to verify the website domain ownership. As part of the verification TXT record, this parameter is returned for websites that use CNAME setup.
|
|
17484
17812
|
*
|
|
17485
17813
|
* @example
|
|
17486
17814
|
* verify_d516cb3740f81f0cef77d162edd1****
|
|
@@ -17488,7 +17816,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
17488
17816
|
verifyCode?: string;
|
|
17489
17817
|
/**
|
|
17490
17818
|
* @remarks
|
|
17491
|
-
* The visit time
|
|
17819
|
+
* The website visit time is represented in the ISO 8601 date format using UTC time, formatted as yyyy-MM-ddTHH:mm:ssZ.
|
|
17492
17820
|
*
|
|
17493
17821
|
* @example
|
|
17494
17822
|
* 2023-12-24T02:01:11Z
|
|
@@ -21920,7 +22248,7 @@ export class BatchCreateWafRulesShrinkRequest extends $dara.Model {
|
|
|
21920
22248
|
export class BatchCreateWafRulesResponseBody extends $dara.Model {
|
|
21921
22249
|
/**
|
|
21922
22250
|
* @remarks
|
|
21923
|
-
* ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
22251
|
+
* ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
|
|
21924
22252
|
*/
|
|
21925
22253
|
ids?: number[];
|
|
21926
22254
|
/**
|
|
@@ -21933,7 +22261,7 @@ export class BatchCreateWafRulesResponseBody extends $dara.Model {
|
|
|
21933
22261
|
requestId?: string;
|
|
21934
22262
|
/**
|
|
21935
22263
|
* @remarks
|
|
21936
|
-
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/
|
|
22264
|
+
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
|
|
21937
22265
|
*
|
|
21938
22266
|
* @example
|
|
21939
22267
|
* 10000001
|
|
@@ -22882,7 +23210,7 @@ export class BatchUpdateWafRulesRequest extends $dara.Model {
|
|
|
22882
23210
|
phase?: string;
|
|
22883
23211
|
/**
|
|
22884
23212
|
* @remarks
|
|
22885
|
-
* The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/
|
|
23213
|
+
* The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) operation.
|
|
22886
23214
|
*
|
|
22887
23215
|
* @example
|
|
22888
23216
|
* 10000001
|
|
@@ -22891,6 +23219,9 @@ export class BatchUpdateWafRulesRequest extends $dara.Model {
|
|
|
22891
23219
|
/**
|
|
22892
23220
|
* @remarks
|
|
22893
23221
|
* The configurations shared by multiple rules.
|
|
23222
|
+
*
|
|
23223
|
+
* @example
|
|
23224
|
+
* 10000001
|
|
22894
23225
|
*/
|
|
22895
23226
|
shared?: WafBatchRuleShared;
|
|
22896
23227
|
/**
|
|
@@ -22962,7 +23293,7 @@ export class BatchUpdateWafRulesShrinkRequest extends $dara.Model {
|
|
|
22962
23293
|
phase?: string;
|
|
22963
23294
|
/**
|
|
22964
23295
|
* @remarks
|
|
22965
|
-
* The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/
|
|
23296
|
+
* The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) operation.
|
|
22966
23297
|
*
|
|
22967
23298
|
* @example
|
|
22968
23299
|
* 10000001
|
|
@@ -22971,6 +23302,9 @@ export class BatchUpdateWafRulesShrinkRequest extends $dara.Model {
|
|
|
22971
23302
|
/**
|
|
22972
23303
|
* @remarks
|
|
22973
23304
|
* The configurations shared by multiple rules.
|
|
23305
|
+
*
|
|
23306
|
+
* @example
|
|
23307
|
+
* 10000001
|
|
22974
23308
|
*/
|
|
22975
23309
|
sharedShrink?: string;
|
|
22976
23310
|
/**
|
|
@@ -28219,6 +28553,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
28219
28553
|
* on
|
|
28220
28554
|
*/
|
|
28221
28555
|
originMtls?: string;
|
|
28556
|
+
originReadTimeout?: string;
|
|
28222
28557
|
/**
|
|
28223
28558
|
* @remarks
|
|
28224
28559
|
* Protocol used for the origin request. Possible values:
|
|
@@ -28314,6 +28649,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
28314
28649
|
originHttpPort: 'OriginHttpPort',
|
|
28315
28650
|
originHttpsPort: 'OriginHttpsPort',
|
|
28316
28651
|
originMtls: 'OriginMtls',
|
|
28652
|
+
originReadTimeout: 'OriginReadTimeout',
|
|
28317
28653
|
originScheme: 'OriginScheme',
|
|
28318
28654
|
originSni: 'OriginSni',
|
|
28319
28655
|
originVerify: 'OriginVerify',
|
|
@@ -28335,6 +28671,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
28335
28671
|
originHttpPort: 'string',
|
|
28336
28672
|
originHttpsPort: 'string',
|
|
28337
28673
|
originMtls: 'string',
|
|
28674
|
+
originReadTimeout: 'string',
|
|
28338
28675
|
originScheme: 'string',
|
|
28339
28676
|
originSni: 'string',
|
|
28340
28677
|
originVerify: 'string',
|
|
@@ -31651,7 +31988,7 @@ export class CreateWafRuleShrinkRequest extends $dara.Model {
|
|
|
31651
31988
|
export class CreateWafRuleResponseBody extends $dara.Model {
|
|
31652
31989
|
/**
|
|
31653
31990
|
* @remarks
|
|
31654
|
-
* The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
31991
|
+
* The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) API.
|
|
31655
31992
|
*
|
|
31656
31993
|
* @example
|
|
31657
31994
|
* 20000001
|
|
@@ -31667,7 +32004,7 @@ export class CreateWafRuleResponseBody extends $dara.Model {
|
|
|
31667
32004
|
requestId?: string;
|
|
31668
32005
|
/**
|
|
31669
32006
|
* @remarks
|
|
31670
|
-
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/
|
|
32007
|
+
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
|
|
31671
32008
|
*
|
|
31672
32009
|
* @example
|
|
31673
32010
|
* 10000001
|
|
@@ -37319,7 +37656,7 @@ export class DeleteUserDeliveryTaskResponse extends $dara.Model {
|
|
|
37319
37656
|
export class DeleteWafRuleRequest extends $dara.Model {
|
|
37320
37657
|
/**
|
|
37321
37658
|
* @remarks
|
|
37322
|
-
* ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
37659
|
+
* ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
|
|
37323
37660
|
*
|
|
37324
37661
|
* This parameter is required.
|
|
37325
37662
|
*
|
|
@@ -37438,7 +37775,7 @@ export class DeleteWafRuleResponse extends $dara.Model {
|
|
|
37438
37775
|
export class DeleteWafRulesetRequest extends $dara.Model {
|
|
37439
37776
|
/**
|
|
37440
37777
|
* @remarks
|
|
37441
|
-
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/
|
|
37778
|
+
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
|
|
37442
37779
|
*
|
|
37443
37780
|
* This parameter is required.
|
|
37444
37781
|
*
|
|
@@ -39695,6 +40032,429 @@ export class DescribeRatePlanInstanceStatusResponse extends $dara.Model {
|
|
|
39695
40032
|
}
|
|
39696
40033
|
}
|
|
39697
40034
|
|
|
40035
|
+
export class DescribeSiteTimeSeriesDataRequest extends $dara.Model {
|
|
40036
|
+
/**
|
|
40037
|
+
* @example
|
|
40038
|
+
* 2023-04-09T16:00:00Z
|
|
40039
|
+
*/
|
|
40040
|
+
endTime?: string;
|
|
40041
|
+
/**
|
|
40042
|
+
* @remarks
|
|
40043
|
+
* This parameter is required.
|
|
40044
|
+
*/
|
|
40045
|
+
fields?: DescribeSiteTimeSeriesDataRequestFields[];
|
|
40046
|
+
/**
|
|
40047
|
+
* @example
|
|
40048
|
+
* 300
|
|
40049
|
+
*/
|
|
40050
|
+
interval?: string;
|
|
40051
|
+
/**
|
|
40052
|
+
* @example
|
|
40053
|
+
* 1150376036*****
|
|
40054
|
+
*/
|
|
40055
|
+
siteId?: string;
|
|
40056
|
+
/**
|
|
40057
|
+
* @example
|
|
40058
|
+
* 2023-04-08T16:00:00Z
|
|
40059
|
+
*/
|
|
40060
|
+
startTime?: string;
|
|
40061
|
+
static names(): { [key: string]: string } {
|
|
40062
|
+
return {
|
|
40063
|
+
endTime: 'EndTime',
|
|
40064
|
+
fields: 'Fields',
|
|
40065
|
+
interval: 'Interval',
|
|
40066
|
+
siteId: 'SiteId',
|
|
40067
|
+
startTime: 'StartTime',
|
|
40068
|
+
};
|
|
40069
|
+
}
|
|
40070
|
+
|
|
40071
|
+
static types(): { [key: string]: any } {
|
|
40072
|
+
return {
|
|
40073
|
+
endTime: 'string',
|
|
40074
|
+
fields: { 'type': 'array', 'itemType': DescribeSiteTimeSeriesDataRequestFields },
|
|
40075
|
+
interval: 'string',
|
|
40076
|
+
siteId: 'string',
|
|
40077
|
+
startTime: 'string',
|
|
40078
|
+
};
|
|
40079
|
+
}
|
|
40080
|
+
|
|
40081
|
+
validate() {
|
|
40082
|
+
if(Array.isArray(this.fields)) {
|
|
40083
|
+
$dara.Model.validateArray(this.fields);
|
|
40084
|
+
}
|
|
40085
|
+
super.validate();
|
|
40086
|
+
}
|
|
40087
|
+
|
|
40088
|
+
constructor(map?: { [key: string]: any }) {
|
|
40089
|
+
super(map);
|
|
40090
|
+
}
|
|
40091
|
+
}
|
|
40092
|
+
|
|
40093
|
+
export class DescribeSiteTimeSeriesDataShrinkRequest extends $dara.Model {
|
|
40094
|
+
/**
|
|
40095
|
+
* @example
|
|
40096
|
+
* 2023-04-09T16:00:00Z
|
|
40097
|
+
*/
|
|
40098
|
+
endTime?: string;
|
|
40099
|
+
/**
|
|
40100
|
+
* @remarks
|
|
40101
|
+
* This parameter is required.
|
|
40102
|
+
*/
|
|
40103
|
+
fieldsShrink?: string;
|
|
40104
|
+
/**
|
|
40105
|
+
* @example
|
|
40106
|
+
* 300
|
|
40107
|
+
*/
|
|
40108
|
+
interval?: string;
|
|
40109
|
+
/**
|
|
40110
|
+
* @example
|
|
40111
|
+
* 1150376036*****
|
|
40112
|
+
*/
|
|
40113
|
+
siteId?: string;
|
|
40114
|
+
/**
|
|
40115
|
+
* @example
|
|
40116
|
+
* 2023-04-08T16:00:00Z
|
|
40117
|
+
*/
|
|
40118
|
+
startTime?: string;
|
|
40119
|
+
static names(): { [key: string]: string } {
|
|
40120
|
+
return {
|
|
40121
|
+
endTime: 'EndTime',
|
|
40122
|
+
fieldsShrink: 'Fields',
|
|
40123
|
+
interval: 'Interval',
|
|
40124
|
+
siteId: 'SiteId',
|
|
40125
|
+
startTime: 'StartTime',
|
|
40126
|
+
};
|
|
40127
|
+
}
|
|
40128
|
+
|
|
40129
|
+
static types(): { [key: string]: any } {
|
|
40130
|
+
return {
|
|
40131
|
+
endTime: 'string',
|
|
40132
|
+
fieldsShrink: 'string',
|
|
40133
|
+
interval: 'string',
|
|
40134
|
+
siteId: 'string',
|
|
40135
|
+
startTime: 'string',
|
|
40136
|
+
};
|
|
40137
|
+
}
|
|
40138
|
+
|
|
40139
|
+
validate() {
|
|
40140
|
+
super.validate();
|
|
40141
|
+
}
|
|
40142
|
+
|
|
40143
|
+
constructor(map?: { [key: string]: any }) {
|
|
40144
|
+
super(map);
|
|
40145
|
+
}
|
|
40146
|
+
}
|
|
40147
|
+
|
|
40148
|
+
export class DescribeSiteTimeSeriesDataResponseBody extends $dara.Model {
|
|
40149
|
+
data?: DescribeSiteTimeSeriesDataResponseBodyData[];
|
|
40150
|
+
/**
|
|
40151
|
+
* @example
|
|
40152
|
+
* 2023-04-09T16:00:00Z
|
|
40153
|
+
*/
|
|
40154
|
+
endTime?: string;
|
|
40155
|
+
/**
|
|
40156
|
+
* @example
|
|
40157
|
+
* 300
|
|
40158
|
+
*/
|
|
40159
|
+
interval?: number;
|
|
40160
|
+
/**
|
|
40161
|
+
* @example
|
|
40162
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
40163
|
+
*/
|
|
40164
|
+
requestId?: string;
|
|
40165
|
+
/**
|
|
40166
|
+
* @example
|
|
40167
|
+
* 100
|
|
40168
|
+
*/
|
|
40169
|
+
samplingRate?: number;
|
|
40170
|
+
/**
|
|
40171
|
+
* @example
|
|
40172
|
+
* 2023-04-08T16:00:00Z
|
|
40173
|
+
*/
|
|
40174
|
+
startTime?: string;
|
|
40175
|
+
summarizedData?: DescribeSiteTimeSeriesDataResponseBodySummarizedData[];
|
|
40176
|
+
static names(): { [key: string]: string } {
|
|
40177
|
+
return {
|
|
40178
|
+
data: 'Data',
|
|
40179
|
+
endTime: 'EndTime',
|
|
40180
|
+
interval: 'Interval',
|
|
40181
|
+
requestId: 'RequestId',
|
|
40182
|
+
samplingRate: 'SamplingRate',
|
|
40183
|
+
startTime: 'StartTime',
|
|
40184
|
+
summarizedData: 'SummarizedData',
|
|
40185
|
+
};
|
|
40186
|
+
}
|
|
40187
|
+
|
|
40188
|
+
static types(): { [key: string]: any } {
|
|
40189
|
+
return {
|
|
40190
|
+
data: { 'type': 'array', 'itemType': DescribeSiteTimeSeriesDataResponseBodyData },
|
|
40191
|
+
endTime: 'string',
|
|
40192
|
+
interval: 'number',
|
|
40193
|
+
requestId: 'string',
|
|
40194
|
+
samplingRate: 'number',
|
|
40195
|
+
startTime: 'string',
|
|
40196
|
+
summarizedData: { 'type': 'array', 'itemType': DescribeSiteTimeSeriesDataResponseBodySummarizedData },
|
|
40197
|
+
};
|
|
40198
|
+
}
|
|
40199
|
+
|
|
40200
|
+
validate() {
|
|
40201
|
+
if(Array.isArray(this.data)) {
|
|
40202
|
+
$dara.Model.validateArray(this.data);
|
|
40203
|
+
}
|
|
40204
|
+
if(Array.isArray(this.summarizedData)) {
|
|
40205
|
+
$dara.Model.validateArray(this.summarizedData);
|
|
40206
|
+
}
|
|
40207
|
+
super.validate();
|
|
40208
|
+
}
|
|
40209
|
+
|
|
40210
|
+
constructor(map?: { [key: string]: any }) {
|
|
40211
|
+
super(map);
|
|
40212
|
+
}
|
|
40213
|
+
}
|
|
40214
|
+
|
|
40215
|
+
export class DescribeSiteTimeSeriesDataResponse extends $dara.Model {
|
|
40216
|
+
headers?: { [key: string]: string };
|
|
40217
|
+
statusCode?: number;
|
|
40218
|
+
body?: DescribeSiteTimeSeriesDataResponseBody;
|
|
40219
|
+
static names(): { [key: string]: string } {
|
|
40220
|
+
return {
|
|
40221
|
+
headers: 'headers',
|
|
40222
|
+
statusCode: 'statusCode',
|
|
40223
|
+
body: 'body',
|
|
40224
|
+
};
|
|
40225
|
+
}
|
|
40226
|
+
|
|
40227
|
+
static types(): { [key: string]: any } {
|
|
40228
|
+
return {
|
|
40229
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
40230
|
+
statusCode: 'number',
|
|
40231
|
+
body: DescribeSiteTimeSeriesDataResponseBody,
|
|
40232
|
+
};
|
|
40233
|
+
}
|
|
40234
|
+
|
|
40235
|
+
validate() {
|
|
40236
|
+
if(this.headers) {
|
|
40237
|
+
$dara.Model.validateMap(this.headers);
|
|
40238
|
+
}
|
|
40239
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
40240
|
+
(this.body as any).validate();
|
|
40241
|
+
}
|
|
40242
|
+
super.validate();
|
|
40243
|
+
}
|
|
40244
|
+
|
|
40245
|
+
constructor(map?: { [key: string]: any }) {
|
|
40246
|
+
super(map);
|
|
40247
|
+
}
|
|
40248
|
+
}
|
|
40249
|
+
|
|
40250
|
+
export class DescribeSiteTopDataRequest extends $dara.Model {
|
|
40251
|
+
/**
|
|
40252
|
+
* @example
|
|
40253
|
+
* 2023-04-09T16:00:00Z
|
|
40254
|
+
*/
|
|
40255
|
+
endTime?: string;
|
|
40256
|
+
/**
|
|
40257
|
+
* @remarks
|
|
40258
|
+
* This parameter is required.
|
|
40259
|
+
*/
|
|
40260
|
+
fields?: DescribeSiteTopDataRequestFields[];
|
|
40261
|
+
/**
|
|
40262
|
+
* @example
|
|
40263
|
+
* 300
|
|
40264
|
+
*/
|
|
40265
|
+
interval?: string;
|
|
40266
|
+
limit?: string;
|
|
40267
|
+
/**
|
|
40268
|
+
* @example
|
|
40269
|
+
* 1150376036*****
|
|
40270
|
+
*/
|
|
40271
|
+
siteId?: string;
|
|
40272
|
+
/**
|
|
40273
|
+
* @example
|
|
40274
|
+
* 2023-04-08T16:00:00Z
|
|
40275
|
+
*/
|
|
40276
|
+
startTime?: string;
|
|
40277
|
+
static names(): { [key: string]: string } {
|
|
40278
|
+
return {
|
|
40279
|
+
endTime: 'EndTime',
|
|
40280
|
+
fields: 'Fields',
|
|
40281
|
+
interval: 'Interval',
|
|
40282
|
+
limit: 'Limit',
|
|
40283
|
+
siteId: 'SiteId',
|
|
40284
|
+
startTime: 'StartTime',
|
|
40285
|
+
};
|
|
40286
|
+
}
|
|
40287
|
+
|
|
40288
|
+
static types(): { [key: string]: any } {
|
|
40289
|
+
return {
|
|
40290
|
+
endTime: 'string',
|
|
40291
|
+
fields: { 'type': 'array', 'itemType': DescribeSiteTopDataRequestFields },
|
|
40292
|
+
interval: 'string',
|
|
40293
|
+
limit: 'string',
|
|
40294
|
+
siteId: 'string',
|
|
40295
|
+
startTime: 'string',
|
|
40296
|
+
};
|
|
40297
|
+
}
|
|
40298
|
+
|
|
40299
|
+
validate() {
|
|
40300
|
+
if(Array.isArray(this.fields)) {
|
|
40301
|
+
$dara.Model.validateArray(this.fields);
|
|
40302
|
+
}
|
|
40303
|
+
super.validate();
|
|
40304
|
+
}
|
|
40305
|
+
|
|
40306
|
+
constructor(map?: { [key: string]: any }) {
|
|
40307
|
+
super(map);
|
|
40308
|
+
}
|
|
40309
|
+
}
|
|
40310
|
+
|
|
40311
|
+
export class DescribeSiteTopDataShrinkRequest extends $dara.Model {
|
|
40312
|
+
/**
|
|
40313
|
+
* @example
|
|
40314
|
+
* 2023-04-09T16:00:00Z
|
|
40315
|
+
*/
|
|
40316
|
+
endTime?: string;
|
|
40317
|
+
/**
|
|
40318
|
+
* @remarks
|
|
40319
|
+
* This parameter is required.
|
|
40320
|
+
*/
|
|
40321
|
+
fieldsShrink?: string;
|
|
40322
|
+
/**
|
|
40323
|
+
* @example
|
|
40324
|
+
* 300
|
|
40325
|
+
*/
|
|
40326
|
+
interval?: string;
|
|
40327
|
+
limit?: string;
|
|
40328
|
+
/**
|
|
40329
|
+
* @example
|
|
40330
|
+
* 1150376036*****
|
|
40331
|
+
*/
|
|
40332
|
+
siteId?: string;
|
|
40333
|
+
/**
|
|
40334
|
+
* @example
|
|
40335
|
+
* 2023-04-08T16:00:00Z
|
|
40336
|
+
*/
|
|
40337
|
+
startTime?: string;
|
|
40338
|
+
static names(): { [key: string]: string } {
|
|
40339
|
+
return {
|
|
40340
|
+
endTime: 'EndTime',
|
|
40341
|
+
fieldsShrink: 'Fields',
|
|
40342
|
+
interval: 'Interval',
|
|
40343
|
+
limit: 'Limit',
|
|
40344
|
+
siteId: 'SiteId',
|
|
40345
|
+
startTime: 'StartTime',
|
|
40346
|
+
};
|
|
40347
|
+
}
|
|
40348
|
+
|
|
40349
|
+
static types(): { [key: string]: any } {
|
|
40350
|
+
return {
|
|
40351
|
+
endTime: 'string',
|
|
40352
|
+
fieldsShrink: 'string',
|
|
40353
|
+
interval: 'string',
|
|
40354
|
+
limit: 'string',
|
|
40355
|
+
siteId: 'string',
|
|
40356
|
+
startTime: 'string',
|
|
40357
|
+
};
|
|
40358
|
+
}
|
|
40359
|
+
|
|
40360
|
+
validate() {
|
|
40361
|
+
super.validate();
|
|
40362
|
+
}
|
|
40363
|
+
|
|
40364
|
+
constructor(map?: { [key: string]: any }) {
|
|
40365
|
+
super(map);
|
|
40366
|
+
}
|
|
40367
|
+
}
|
|
40368
|
+
|
|
40369
|
+
export class DescribeSiteTopDataResponseBody extends $dara.Model {
|
|
40370
|
+
data?: DescribeSiteTopDataResponseBodyData[];
|
|
40371
|
+
/**
|
|
40372
|
+
* @example
|
|
40373
|
+
* 2023-04-09T16:00:00Z
|
|
40374
|
+
*/
|
|
40375
|
+
endTime?: string;
|
|
40376
|
+
/**
|
|
40377
|
+
* @example
|
|
40378
|
+
* 35C66C7B-671H-4297-9187-2C447724****
|
|
40379
|
+
*/
|
|
40380
|
+
requestId?: string;
|
|
40381
|
+
/**
|
|
40382
|
+
* @example
|
|
40383
|
+
* 100
|
|
40384
|
+
*/
|
|
40385
|
+
samplingRate?: number;
|
|
40386
|
+
/**
|
|
40387
|
+
* @example
|
|
40388
|
+
* 2023-04-08T16:00:00Z
|
|
40389
|
+
*/
|
|
40390
|
+
startTime?: string;
|
|
40391
|
+
static names(): { [key: string]: string } {
|
|
40392
|
+
return {
|
|
40393
|
+
data: 'Data',
|
|
40394
|
+
endTime: 'EndTime',
|
|
40395
|
+
requestId: 'RequestId',
|
|
40396
|
+
samplingRate: 'SamplingRate',
|
|
40397
|
+
startTime: 'StartTime',
|
|
40398
|
+
};
|
|
40399
|
+
}
|
|
40400
|
+
|
|
40401
|
+
static types(): { [key: string]: any } {
|
|
40402
|
+
return {
|
|
40403
|
+
data: { 'type': 'array', 'itemType': DescribeSiteTopDataResponseBodyData },
|
|
40404
|
+
endTime: 'string',
|
|
40405
|
+
requestId: 'string',
|
|
40406
|
+
samplingRate: 'number',
|
|
40407
|
+
startTime: 'string',
|
|
40408
|
+
};
|
|
40409
|
+
}
|
|
40410
|
+
|
|
40411
|
+
validate() {
|
|
40412
|
+
if(Array.isArray(this.data)) {
|
|
40413
|
+
$dara.Model.validateArray(this.data);
|
|
40414
|
+
}
|
|
40415
|
+
super.validate();
|
|
40416
|
+
}
|
|
40417
|
+
|
|
40418
|
+
constructor(map?: { [key: string]: any }) {
|
|
40419
|
+
super(map);
|
|
40420
|
+
}
|
|
40421
|
+
}
|
|
40422
|
+
|
|
40423
|
+
export class DescribeSiteTopDataResponse extends $dara.Model {
|
|
40424
|
+
headers?: { [key: string]: string };
|
|
40425
|
+
statusCode?: number;
|
|
40426
|
+
body?: DescribeSiteTopDataResponseBody;
|
|
40427
|
+
static names(): { [key: string]: string } {
|
|
40428
|
+
return {
|
|
40429
|
+
headers: 'headers',
|
|
40430
|
+
statusCode: 'statusCode',
|
|
40431
|
+
body: 'body',
|
|
40432
|
+
};
|
|
40433
|
+
}
|
|
40434
|
+
|
|
40435
|
+
static types(): { [key: string]: any } {
|
|
40436
|
+
return {
|
|
40437
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
40438
|
+
statusCode: 'number',
|
|
40439
|
+
body: DescribeSiteTopDataResponseBody,
|
|
40440
|
+
};
|
|
40441
|
+
}
|
|
40442
|
+
|
|
40443
|
+
validate() {
|
|
40444
|
+
if(this.headers) {
|
|
40445
|
+
$dara.Model.validateMap(this.headers);
|
|
40446
|
+
}
|
|
40447
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
40448
|
+
(this.body as any).validate();
|
|
40449
|
+
}
|
|
40450
|
+
super.validate();
|
|
40451
|
+
}
|
|
40452
|
+
|
|
40453
|
+
constructor(map?: { [key: string]: any }) {
|
|
40454
|
+
super(map);
|
|
40455
|
+
}
|
|
40456
|
+
}
|
|
40457
|
+
|
|
39698
40458
|
export class DisableCustomScenePolicyRequest extends $dara.Model {
|
|
39699
40459
|
/**
|
|
39700
40460
|
* @remarks
|
|
@@ -41934,6 +42694,105 @@ export class GetCompressionRuleResponse extends $dara.Model {
|
|
|
41934
42694
|
}
|
|
41935
42695
|
}
|
|
41936
42696
|
|
|
42697
|
+
export class GetCrossBorderOptimizationRequest extends $dara.Model {
|
|
42698
|
+
/**
|
|
42699
|
+
* @remarks
|
|
42700
|
+
* This parameter is required.
|
|
42701
|
+
*
|
|
42702
|
+
* @example
|
|
42703
|
+
* 340035003106221
|
|
42704
|
+
*/
|
|
42705
|
+
siteId?: number;
|
|
42706
|
+
static names(): { [key: string]: string } {
|
|
42707
|
+
return {
|
|
42708
|
+
siteId: 'SiteId',
|
|
42709
|
+
};
|
|
42710
|
+
}
|
|
42711
|
+
|
|
42712
|
+
static types(): { [key: string]: any } {
|
|
42713
|
+
return {
|
|
42714
|
+
siteId: 'number',
|
|
42715
|
+
};
|
|
42716
|
+
}
|
|
42717
|
+
|
|
42718
|
+
validate() {
|
|
42719
|
+
super.validate();
|
|
42720
|
+
}
|
|
42721
|
+
|
|
42722
|
+
constructor(map?: { [key: string]: any }) {
|
|
42723
|
+
super(map);
|
|
42724
|
+
}
|
|
42725
|
+
}
|
|
42726
|
+
|
|
42727
|
+
export class GetCrossBorderOptimizationResponseBody extends $dara.Model {
|
|
42728
|
+
/**
|
|
42729
|
+
* @example
|
|
42730
|
+
* on
|
|
42731
|
+
*/
|
|
42732
|
+
enable?: string;
|
|
42733
|
+
/**
|
|
42734
|
+
* @example
|
|
42735
|
+
* CF521A24-633F-5350-A6A5-42AD503D0D20
|
|
42736
|
+
*/
|
|
42737
|
+
requestId?: string;
|
|
42738
|
+
static names(): { [key: string]: string } {
|
|
42739
|
+
return {
|
|
42740
|
+
enable: 'Enable',
|
|
42741
|
+
requestId: 'RequestId',
|
|
42742
|
+
};
|
|
42743
|
+
}
|
|
42744
|
+
|
|
42745
|
+
static types(): { [key: string]: any } {
|
|
42746
|
+
return {
|
|
42747
|
+
enable: 'string',
|
|
42748
|
+
requestId: 'string',
|
|
42749
|
+
};
|
|
42750
|
+
}
|
|
42751
|
+
|
|
42752
|
+
validate() {
|
|
42753
|
+
super.validate();
|
|
42754
|
+
}
|
|
42755
|
+
|
|
42756
|
+
constructor(map?: { [key: string]: any }) {
|
|
42757
|
+
super(map);
|
|
42758
|
+
}
|
|
42759
|
+
}
|
|
42760
|
+
|
|
42761
|
+
export class GetCrossBorderOptimizationResponse extends $dara.Model {
|
|
42762
|
+
headers?: { [key: string]: string };
|
|
42763
|
+
statusCode?: number;
|
|
42764
|
+
body?: GetCrossBorderOptimizationResponseBody;
|
|
42765
|
+
static names(): { [key: string]: string } {
|
|
42766
|
+
return {
|
|
42767
|
+
headers: 'headers',
|
|
42768
|
+
statusCode: 'statusCode',
|
|
42769
|
+
body: 'body',
|
|
42770
|
+
};
|
|
42771
|
+
}
|
|
42772
|
+
|
|
42773
|
+
static types(): { [key: string]: any } {
|
|
42774
|
+
return {
|
|
42775
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
42776
|
+
statusCode: 'number',
|
|
42777
|
+
body: GetCrossBorderOptimizationResponseBody,
|
|
42778
|
+
};
|
|
42779
|
+
}
|
|
42780
|
+
|
|
42781
|
+
validate() {
|
|
42782
|
+
if(this.headers) {
|
|
42783
|
+
$dara.Model.validateMap(this.headers);
|
|
42784
|
+
}
|
|
42785
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
42786
|
+
(this.body as any).validate();
|
|
42787
|
+
}
|
|
42788
|
+
super.validate();
|
|
42789
|
+
}
|
|
42790
|
+
|
|
42791
|
+
constructor(map?: { [key: string]: any }) {
|
|
42792
|
+
super(map);
|
|
42793
|
+
}
|
|
42794
|
+
}
|
|
42795
|
+
|
|
41937
42796
|
export class GetDevelopmentModeRequest extends $dara.Model {
|
|
41938
42797
|
/**
|
|
41939
42798
|
* @remarks
|
|
@@ -42379,6 +43238,104 @@ export class GetEdgeContainerAppResourceReserveResponse extends $dara.Model {
|
|
|
42379
43238
|
}
|
|
42380
43239
|
}
|
|
42381
43240
|
|
|
43241
|
+
export class GetEdgeContainerAppResourceStatusRequest extends $dara.Model {
|
|
43242
|
+
/**
|
|
43243
|
+
* @remarks
|
|
43244
|
+
* This parameter is required.
|
|
43245
|
+
*
|
|
43246
|
+
* @example
|
|
43247
|
+
* app-96253477062511****
|
|
43248
|
+
*/
|
|
43249
|
+
appId?: string;
|
|
43250
|
+
static names(): { [key: string]: string } {
|
|
43251
|
+
return {
|
|
43252
|
+
appId: 'AppId',
|
|
43253
|
+
};
|
|
43254
|
+
}
|
|
43255
|
+
|
|
43256
|
+
static types(): { [key: string]: any } {
|
|
43257
|
+
return {
|
|
43258
|
+
appId: 'string',
|
|
43259
|
+
};
|
|
43260
|
+
}
|
|
43261
|
+
|
|
43262
|
+
validate() {
|
|
43263
|
+
super.validate();
|
|
43264
|
+
}
|
|
43265
|
+
|
|
43266
|
+
constructor(map?: { [key: string]: any }) {
|
|
43267
|
+
super(map);
|
|
43268
|
+
}
|
|
43269
|
+
}
|
|
43270
|
+
|
|
43271
|
+
export class GetEdgeContainerAppResourceStatusResponseBody extends $dara.Model {
|
|
43272
|
+
regions?: GetEdgeContainerAppResourceStatusResponseBodyRegions[];
|
|
43273
|
+
/**
|
|
43274
|
+
* @example
|
|
43275
|
+
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
43276
|
+
*/
|
|
43277
|
+
requestId?: string;
|
|
43278
|
+
static names(): { [key: string]: string } {
|
|
43279
|
+
return {
|
|
43280
|
+
regions: 'Regions',
|
|
43281
|
+
requestId: 'RequestId',
|
|
43282
|
+
};
|
|
43283
|
+
}
|
|
43284
|
+
|
|
43285
|
+
static types(): { [key: string]: any } {
|
|
43286
|
+
return {
|
|
43287
|
+
regions: { 'type': 'array', 'itemType': GetEdgeContainerAppResourceStatusResponseBodyRegions },
|
|
43288
|
+
requestId: 'string',
|
|
43289
|
+
};
|
|
43290
|
+
}
|
|
43291
|
+
|
|
43292
|
+
validate() {
|
|
43293
|
+
if(Array.isArray(this.regions)) {
|
|
43294
|
+
$dara.Model.validateArray(this.regions);
|
|
43295
|
+
}
|
|
43296
|
+
super.validate();
|
|
43297
|
+
}
|
|
43298
|
+
|
|
43299
|
+
constructor(map?: { [key: string]: any }) {
|
|
43300
|
+
super(map);
|
|
43301
|
+
}
|
|
43302
|
+
}
|
|
43303
|
+
|
|
43304
|
+
export class GetEdgeContainerAppResourceStatusResponse extends $dara.Model {
|
|
43305
|
+
headers?: { [key: string]: string };
|
|
43306
|
+
statusCode?: number;
|
|
43307
|
+
body?: GetEdgeContainerAppResourceStatusResponseBody;
|
|
43308
|
+
static names(): { [key: string]: string } {
|
|
43309
|
+
return {
|
|
43310
|
+
headers: 'headers',
|
|
43311
|
+
statusCode: 'statusCode',
|
|
43312
|
+
body: 'body',
|
|
43313
|
+
};
|
|
43314
|
+
}
|
|
43315
|
+
|
|
43316
|
+
static types(): { [key: string]: any } {
|
|
43317
|
+
return {
|
|
43318
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
43319
|
+
statusCode: 'number',
|
|
43320
|
+
body: GetEdgeContainerAppResourceStatusResponseBody,
|
|
43321
|
+
};
|
|
43322
|
+
}
|
|
43323
|
+
|
|
43324
|
+
validate() {
|
|
43325
|
+
if(this.headers) {
|
|
43326
|
+
$dara.Model.validateMap(this.headers);
|
|
43327
|
+
}
|
|
43328
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
43329
|
+
(this.body as any).validate();
|
|
43330
|
+
}
|
|
43331
|
+
super.validate();
|
|
43332
|
+
}
|
|
43333
|
+
|
|
43334
|
+
constructor(map?: { [key: string]: any }) {
|
|
43335
|
+
super(map);
|
|
43336
|
+
}
|
|
43337
|
+
}
|
|
43338
|
+
|
|
42382
43339
|
export class GetEdgeContainerAppStatusRequest extends $dara.Model {
|
|
42383
43340
|
/**
|
|
42384
43341
|
* @remarks
|
|
@@ -46729,6 +47686,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
46729
47686
|
* on
|
|
46730
47687
|
*/
|
|
46731
47688
|
originMtls?: string;
|
|
47689
|
+
originReadTimeout?: string;
|
|
46732
47690
|
/**
|
|
46733
47691
|
* @remarks
|
|
46734
47692
|
* Protocol used for the origin request. Value range:
|
|
@@ -46833,6 +47791,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
46833
47791
|
originHttpPort: 'OriginHttpPort',
|
|
46834
47792
|
originHttpsPort: 'OriginHttpsPort',
|
|
46835
47793
|
originMtls: 'OriginMtls',
|
|
47794
|
+
originReadTimeout: 'OriginReadTimeout',
|
|
46836
47795
|
originScheme: 'OriginScheme',
|
|
46837
47796
|
originSni: 'OriginSni',
|
|
46838
47797
|
originVerify: 'OriginVerify',
|
|
@@ -46856,6 +47815,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
46856
47815
|
originHttpPort: 'string',
|
|
46857
47816
|
originHttpsPort: 'string',
|
|
46858
47817
|
originMtls: 'string',
|
|
47818
|
+
originReadTimeout: 'string',
|
|
46859
47819
|
originScheme: 'string',
|
|
46860
47820
|
originSni: 'string',
|
|
46861
47821
|
originVerify: 'string',
|
|
@@ -50819,7 +51779,7 @@ export class GetWafQuotaResponse extends $dara.Model {
|
|
|
50819
51779
|
export class GetWafRuleRequest extends $dara.Model {
|
|
50820
51780
|
/**
|
|
50821
51781
|
* @remarks
|
|
50822
|
-
* The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
51782
|
+
* The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
|
|
50823
51783
|
*
|
|
50824
51784
|
* This parameter is required.
|
|
50825
51785
|
*
|
|
@@ -50868,7 +51828,7 @@ export class GetWafRuleResponseBody extends $dara.Model {
|
|
|
50868
51828
|
config?: WafRuleConfig;
|
|
50869
51829
|
/**
|
|
50870
51830
|
* @remarks
|
|
50871
|
-
* The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
51831
|
+
* The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
|
|
50872
51832
|
*
|
|
50873
51833
|
* @example
|
|
50874
51834
|
* 2000001
|
|
@@ -51002,7 +51962,7 @@ export class GetWafRuleResponse extends $dara.Model {
|
|
|
51002
51962
|
export class GetWafRulesetRequest extends $dara.Model {
|
|
51003
51963
|
/**
|
|
51004
51964
|
* @remarks
|
|
51005
|
-
* The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/
|
|
51965
|
+
* The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
|
|
51006
51966
|
*
|
|
51007
51967
|
* @example
|
|
51008
51968
|
* 10000001
|
|
@@ -58468,10 +59428,10 @@ export class ListSiteDeliveryTasksResponse extends $dara.Model {
|
|
|
58468
59428
|
export class ListSitesRequest extends $dara.Model {
|
|
58469
59429
|
/**
|
|
58470
59430
|
* @remarks
|
|
58471
|
-
*
|
|
59431
|
+
* The DNS setup. Valid values:
|
|
58472
59432
|
*
|
|
58473
|
-
*
|
|
58474
|
-
*
|
|
59433
|
+
* * **NS**
|
|
59434
|
+
* * **CNAME**
|
|
58475
59435
|
*
|
|
58476
59436
|
* @example
|
|
58477
59437
|
* NS
|
|
@@ -58479,10 +59439,11 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58479
59439
|
accessType?: string;
|
|
58480
59440
|
/**
|
|
58481
59441
|
* @remarks
|
|
58482
|
-
*
|
|
58483
|
-
*
|
|
58484
|
-
*
|
|
58485
|
-
*
|
|
59442
|
+
* The service location. Valid values:
|
|
59443
|
+
*
|
|
59444
|
+
* * **domestic**: the Chinese mainland
|
|
59445
|
+
* * **global**: global
|
|
59446
|
+
* * **overseas**: outside the Chinese mainland
|
|
58486
59447
|
*
|
|
58487
59448
|
* @example
|
|
58488
59449
|
* global
|
|
@@ -58490,7 +59451,7 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58490
59451
|
coverage?: string;
|
|
58491
59452
|
/**
|
|
58492
59453
|
* @remarks
|
|
58493
|
-
*
|
|
59454
|
+
* Specifies whether to query only websites on Enterprise plans. Valid values: **true and false**.
|
|
58494
59455
|
*
|
|
58495
59456
|
* @example
|
|
58496
59457
|
* false
|
|
@@ -58498,9 +59459,9 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58498
59459
|
onlyEnterprise?: boolean;
|
|
58499
59460
|
/**
|
|
58500
59461
|
* @remarks
|
|
58501
|
-
* Sorting field
|
|
58502
|
-
* - gmtCreate:
|
|
58503
|
-
* - visitTime:
|
|
59462
|
+
* Sorting field. By default, it sorts by creation time, supporting the following options:
|
|
59463
|
+
* - gmtCreate: website creation time
|
|
59464
|
+
* - visitTime: website visit time
|
|
58504
59465
|
*
|
|
58505
59466
|
* @example
|
|
58506
59467
|
* visitTime
|
|
@@ -58508,7 +59469,7 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58508
59469
|
orderBy?: string;
|
|
58509
59470
|
/**
|
|
58510
59471
|
* @remarks
|
|
58511
|
-
*
|
|
59472
|
+
* The page number. Default value: **1**.
|
|
58512
59473
|
*
|
|
58513
59474
|
* @example
|
|
58514
59475
|
* 1
|
|
@@ -58516,7 +59477,7 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58516
59477
|
pageNumber?: number;
|
|
58517
59478
|
/**
|
|
58518
59479
|
* @remarks
|
|
58519
|
-
*
|
|
59480
|
+
* The number of entries per page. Default value: **500**.
|
|
58520
59481
|
*
|
|
58521
59482
|
* @example
|
|
58522
59483
|
* 20
|
|
@@ -58524,11 +59485,12 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58524
59485
|
pageSize?: number;
|
|
58525
59486
|
/**
|
|
58526
59487
|
* @remarks
|
|
58527
|
-
*
|
|
58528
|
-
*
|
|
58529
|
-
*
|
|
58530
|
-
*
|
|
58531
|
-
*
|
|
59488
|
+
* The plan type. Valid values:
|
|
59489
|
+
*
|
|
59490
|
+
* * **basicplan**: Entrance
|
|
59491
|
+
* * **standardplan**: Pro
|
|
59492
|
+
* * **advancedplan**: Premium
|
|
59493
|
+
* * **enterpriseplan**: Enterprise
|
|
58532
59494
|
*
|
|
58533
59495
|
* @example
|
|
58534
59496
|
* basicplan
|
|
@@ -58536,7 +59498,7 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58536
59498
|
planSubscribeType?: string;
|
|
58537
59499
|
/**
|
|
58538
59500
|
* @remarks
|
|
58539
|
-
*
|
|
59501
|
+
* The ID of the resource group. This parameter specifies a filter condition for the query.
|
|
58540
59502
|
*
|
|
58541
59503
|
* @example
|
|
58542
59504
|
* rg-aekzd3styujvyei
|
|
@@ -58544,7 +59506,7 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58544
59506
|
resourceGroupId?: string;
|
|
58545
59507
|
/**
|
|
58546
59508
|
* @remarks
|
|
58547
|
-
*
|
|
59509
|
+
* The website name. This parameter specifies a filter condition for the query.
|
|
58548
59510
|
*
|
|
58549
59511
|
* @example
|
|
58550
59512
|
* example.com
|
|
@@ -58552,12 +59514,12 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58552
59514
|
siteName?: string;
|
|
58553
59515
|
/**
|
|
58554
59516
|
* @remarks
|
|
58555
|
-
*
|
|
59517
|
+
* The match mode to search for the website name. Default value: exact. Valid values:
|
|
58556
59518
|
*
|
|
58557
|
-
*
|
|
58558
|
-
*
|
|
58559
|
-
*
|
|
58560
|
-
*
|
|
59519
|
+
* * **prefix**: match by prefix.
|
|
59520
|
+
* * **suffix**: match by suffix.
|
|
59521
|
+
* * **exact**: exact match.
|
|
59522
|
+
* * **fuzzy**: fuzzy match.
|
|
58561
59523
|
*
|
|
58562
59524
|
* @example
|
|
58563
59525
|
* fuzzy
|
|
@@ -58565,7 +59527,7 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58565
59527
|
siteSearchType?: string;
|
|
58566
59528
|
/**
|
|
58567
59529
|
* @remarks
|
|
58568
|
-
*
|
|
59530
|
+
* The website status. This parameter specifies a filter condition for the query.
|
|
58569
59531
|
*
|
|
58570
59532
|
* @example
|
|
58571
59533
|
* pending
|
|
@@ -58573,7 +59535,7 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58573
59535
|
status?: string;
|
|
58574
59536
|
/**
|
|
58575
59537
|
* @remarks
|
|
58576
|
-
*
|
|
59538
|
+
* The tag filtering rule.
|
|
58577
59539
|
*/
|
|
58578
59540
|
tagFilter?: ListSitesRequestTagFilter[];
|
|
58579
59541
|
static names(): { [key: string]: string } {
|
|
@@ -58625,10 +59587,10 @@ export class ListSitesRequest extends $dara.Model {
|
|
|
58625
59587
|
export class ListSitesShrinkRequest extends $dara.Model {
|
|
58626
59588
|
/**
|
|
58627
59589
|
* @remarks
|
|
58628
|
-
*
|
|
59590
|
+
* The DNS setup. Valid values:
|
|
58629
59591
|
*
|
|
58630
|
-
*
|
|
58631
|
-
*
|
|
59592
|
+
* * **NS**
|
|
59593
|
+
* * **CNAME**
|
|
58632
59594
|
*
|
|
58633
59595
|
* @example
|
|
58634
59596
|
* NS
|
|
@@ -58636,10 +59598,11 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58636
59598
|
accessType?: string;
|
|
58637
59599
|
/**
|
|
58638
59600
|
* @remarks
|
|
58639
|
-
*
|
|
58640
|
-
*
|
|
58641
|
-
*
|
|
58642
|
-
*
|
|
59601
|
+
* The service location. Valid values:
|
|
59602
|
+
*
|
|
59603
|
+
* * **domestic**: the Chinese mainland
|
|
59604
|
+
* * **global**: global
|
|
59605
|
+
* * **overseas**: outside the Chinese mainland
|
|
58643
59606
|
*
|
|
58644
59607
|
* @example
|
|
58645
59608
|
* global
|
|
@@ -58647,7 +59610,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58647
59610
|
coverage?: string;
|
|
58648
59611
|
/**
|
|
58649
59612
|
* @remarks
|
|
58650
|
-
*
|
|
59613
|
+
* Specifies whether to query only websites on Enterprise plans. Valid values: **true and false**.
|
|
58651
59614
|
*
|
|
58652
59615
|
* @example
|
|
58653
59616
|
* false
|
|
@@ -58655,9 +59618,9 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58655
59618
|
onlyEnterprise?: boolean;
|
|
58656
59619
|
/**
|
|
58657
59620
|
* @remarks
|
|
58658
|
-
* Sorting field
|
|
58659
|
-
* - gmtCreate:
|
|
58660
|
-
* - visitTime:
|
|
59621
|
+
* Sorting field. By default, it sorts by creation time, supporting the following options:
|
|
59622
|
+
* - gmtCreate: website creation time
|
|
59623
|
+
* - visitTime: website visit time
|
|
58661
59624
|
*
|
|
58662
59625
|
* @example
|
|
58663
59626
|
* visitTime
|
|
@@ -58665,7 +59628,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58665
59628
|
orderBy?: string;
|
|
58666
59629
|
/**
|
|
58667
59630
|
* @remarks
|
|
58668
|
-
*
|
|
59631
|
+
* The page number. Default value: **1**.
|
|
58669
59632
|
*
|
|
58670
59633
|
* @example
|
|
58671
59634
|
* 1
|
|
@@ -58673,7 +59636,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58673
59636
|
pageNumber?: number;
|
|
58674
59637
|
/**
|
|
58675
59638
|
* @remarks
|
|
58676
|
-
*
|
|
59639
|
+
* The number of entries per page. Default value: **500**.
|
|
58677
59640
|
*
|
|
58678
59641
|
* @example
|
|
58679
59642
|
* 20
|
|
@@ -58681,11 +59644,12 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58681
59644
|
pageSize?: number;
|
|
58682
59645
|
/**
|
|
58683
59646
|
* @remarks
|
|
58684
|
-
*
|
|
58685
|
-
*
|
|
58686
|
-
*
|
|
58687
|
-
*
|
|
58688
|
-
*
|
|
59647
|
+
* The plan type. Valid values:
|
|
59648
|
+
*
|
|
59649
|
+
* * **basicplan**: Entrance
|
|
59650
|
+
* * **standardplan**: Pro
|
|
59651
|
+
* * **advancedplan**: Premium
|
|
59652
|
+
* * **enterpriseplan**: Enterprise
|
|
58689
59653
|
*
|
|
58690
59654
|
* @example
|
|
58691
59655
|
* basicplan
|
|
@@ -58693,7 +59657,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58693
59657
|
planSubscribeType?: string;
|
|
58694
59658
|
/**
|
|
58695
59659
|
* @remarks
|
|
58696
|
-
*
|
|
59660
|
+
* The ID of the resource group. This parameter specifies a filter condition for the query.
|
|
58697
59661
|
*
|
|
58698
59662
|
* @example
|
|
58699
59663
|
* rg-aekzd3styujvyei
|
|
@@ -58701,7 +59665,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58701
59665
|
resourceGroupId?: string;
|
|
58702
59666
|
/**
|
|
58703
59667
|
* @remarks
|
|
58704
|
-
*
|
|
59668
|
+
* The website name. This parameter specifies a filter condition for the query.
|
|
58705
59669
|
*
|
|
58706
59670
|
* @example
|
|
58707
59671
|
* example.com
|
|
@@ -58709,12 +59673,12 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58709
59673
|
siteName?: string;
|
|
58710
59674
|
/**
|
|
58711
59675
|
* @remarks
|
|
58712
|
-
*
|
|
59676
|
+
* The match mode to search for the website name. Default value: exact. Valid values:
|
|
58713
59677
|
*
|
|
58714
|
-
*
|
|
58715
|
-
*
|
|
58716
|
-
*
|
|
58717
|
-
*
|
|
59678
|
+
* * **prefix**: match by prefix.
|
|
59679
|
+
* * **suffix**: match by suffix.
|
|
59680
|
+
* * **exact**: exact match.
|
|
59681
|
+
* * **fuzzy**: fuzzy match.
|
|
58718
59682
|
*
|
|
58719
59683
|
* @example
|
|
58720
59684
|
* fuzzy
|
|
@@ -58722,7 +59686,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58722
59686
|
siteSearchType?: string;
|
|
58723
59687
|
/**
|
|
58724
59688
|
* @remarks
|
|
58725
|
-
*
|
|
59689
|
+
* The website status. This parameter specifies a filter condition for the query.
|
|
58726
59690
|
*
|
|
58727
59691
|
* @example
|
|
58728
59692
|
* pending
|
|
@@ -58730,7 +59694,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58730
59694
|
status?: string;
|
|
58731
59695
|
/**
|
|
58732
59696
|
* @remarks
|
|
58733
|
-
*
|
|
59697
|
+
* The tag filtering rule.
|
|
58734
59698
|
*/
|
|
58735
59699
|
tagFilterShrink?: string;
|
|
58736
59700
|
static names(): { [key: string]: string } {
|
|
@@ -58779,7 +59743,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
|
|
|
58779
59743
|
export class ListSitesResponseBody extends $dara.Model {
|
|
58780
59744
|
/**
|
|
58781
59745
|
* @remarks
|
|
58782
|
-
*
|
|
59746
|
+
* The page number.
|
|
58783
59747
|
*
|
|
58784
59748
|
* @example
|
|
58785
59749
|
* 1
|
|
@@ -58787,7 +59751,7 @@ export class ListSitesResponseBody extends $dara.Model {
|
|
|
58787
59751
|
pageNumber?: number;
|
|
58788
59752
|
/**
|
|
58789
59753
|
* @remarks
|
|
58790
|
-
*
|
|
59754
|
+
* The number of websites per page.
|
|
58791
59755
|
*
|
|
58792
59756
|
* @example
|
|
58793
59757
|
* 20
|
|
@@ -58795,7 +59759,7 @@ export class ListSitesResponseBody extends $dara.Model {
|
|
|
58795
59759
|
pageSize?: number;
|
|
58796
59760
|
/**
|
|
58797
59761
|
* @remarks
|
|
58798
|
-
*
|
|
59762
|
+
* The request ID.
|
|
58799
59763
|
*
|
|
58800
59764
|
* @example
|
|
58801
59765
|
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
@@ -58803,12 +59767,12 @@ export class ListSitesResponseBody extends $dara.Model {
|
|
|
58803
59767
|
requestId?: string;
|
|
58804
59768
|
/**
|
|
58805
59769
|
* @remarks
|
|
58806
|
-
*
|
|
59770
|
+
* The queried websites.
|
|
58807
59771
|
*/
|
|
58808
59772
|
sites?: ListSitesResponseBodySites[];
|
|
58809
59773
|
/**
|
|
58810
59774
|
* @remarks
|
|
58811
|
-
*
|
|
59775
|
+
* The total number of websites.
|
|
58812
59776
|
*
|
|
58813
59777
|
* @example
|
|
58814
59778
|
* 40
|
|
@@ -64428,7 +65392,7 @@ export class SetOriginClientCertificateHostnamesResponseBody extends $dara.Model
|
|
|
64428
65392
|
* @example
|
|
64429
65393
|
* 123456789****
|
|
64430
65394
|
*/
|
|
64431
|
-
siteId?:
|
|
65395
|
+
siteId?: number;
|
|
64432
65396
|
/**
|
|
64433
65397
|
* @remarks
|
|
64434
65398
|
* The website name.
|
|
@@ -64452,7 +65416,7 @@ export class SetOriginClientCertificateHostnamesResponseBody extends $dara.Model
|
|
|
64452
65416
|
hostnames: { 'type': 'array', 'itemType': 'string' },
|
|
64453
65417
|
id: 'string',
|
|
64454
65418
|
requestId: 'string',
|
|
64455
|
-
siteId: '
|
|
65419
|
+
siteId: 'number',
|
|
64456
65420
|
siteName: 'string',
|
|
64457
65421
|
};
|
|
64458
65422
|
}
|
|
@@ -65945,6 +66909,108 @@ export class UpdateCompressionRuleResponse extends $dara.Model {
|
|
|
65945
66909
|
}
|
|
65946
66910
|
}
|
|
65947
66911
|
|
|
66912
|
+
export class UpdateCrossBorderOptimizationRequest extends $dara.Model {
|
|
66913
|
+
/**
|
|
66914
|
+
* @remarks
|
|
66915
|
+
* This parameter is required.
|
|
66916
|
+
*
|
|
66917
|
+
* @example
|
|
66918
|
+
* on
|
|
66919
|
+
*/
|
|
66920
|
+
enable?: string;
|
|
66921
|
+
/**
|
|
66922
|
+
* @remarks
|
|
66923
|
+
* This parameter is required.
|
|
66924
|
+
*
|
|
66925
|
+
* @example
|
|
66926
|
+
* 1234567890123
|
|
66927
|
+
*/
|
|
66928
|
+
siteId?: number;
|
|
66929
|
+
static names(): { [key: string]: string } {
|
|
66930
|
+
return {
|
|
66931
|
+
enable: 'Enable',
|
|
66932
|
+
siteId: 'SiteId',
|
|
66933
|
+
};
|
|
66934
|
+
}
|
|
66935
|
+
|
|
66936
|
+
static types(): { [key: string]: any } {
|
|
66937
|
+
return {
|
|
66938
|
+
enable: 'string',
|
|
66939
|
+
siteId: 'number',
|
|
66940
|
+
};
|
|
66941
|
+
}
|
|
66942
|
+
|
|
66943
|
+
validate() {
|
|
66944
|
+
super.validate();
|
|
66945
|
+
}
|
|
66946
|
+
|
|
66947
|
+
constructor(map?: { [key: string]: any }) {
|
|
66948
|
+
super(map);
|
|
66949
|
+
}
|
|
66950
|
+
}
|
|
66951
|
+
|
|
66952
|
+
export class UpdateCrossBorderOptimizationResponseBody extends $dara.Model {
|
|
66953
|
+
/**
|
|
66954
|
+
* @example
|
|
66955
|
+
* CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
|
|
66956
|
+
*/
|
|
66957
|
+
requestId?: string;
|
|
66958
|
+
static names(): { [key: string]: string } {
|
|
66959
|
+
return {
|
|
66960
|
+
requestId: 'RequestId',
|
|
66961
|
+
};
|
|
66962
|
+
}
|
|
66963
|
+
|
|
66964
|
+
static types(): { [key: string]: any } {
|
|
66965
|
+
return {
|
|
66966
|
+
requestId: 'string',
|
|
66967
|
+
};
|
|
66968
|
+
}
|
|
66969
|
+
|
|
66970
|
+
validate() {
|
|
66971
|
+
super.validate();
|
|
66972
|
+
}
|
|
66973
|
+
|
|
66974
|
+
constructor(map?: { [key: string]: any }) {
|
|
66975
|
+
super(map);
|
|
66976
|
+
}
|
|
66977
|
+
}
|
|
66978
|
+
|
|
66979
|
+
export class UpdateCrossBorderOptimizationResponse extends $dara.Model {
|
|
66980
|
+
headers?: { [key: string]: string };
|
|
66981
|
+
statusCode?: number;
|
|
66982
|
+
body?: UpdateCrossBorderOptimizationResponseBody;
|
|
66983
|
+
static names(): { [key: string]: string } {
|
|
66984
|
+
return {
|
|
66985
|
+
headers: 'headers',
|
|
66986
|
+
statusCode: 'statusCode',
|
|
66987
|
+
body: 'body',
|
|
66988
|
+
};
|
|
66989
|
+
}
|
|
66990
|
+
|
|
66991
|
+
static types(): { [key: string]: any } {
|
|
66992
|
+
return {
|
|
66993
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
66994
|
+
statusCode: 'number',
|
|
66995
|
+
body: UpdateCrossBorderOptimizationResponseBody,
|
|
66996
|
+
};
|
|
66997
|
+
}
|
|
66998
|
+
|
|
66999
|
+
validate() {
|
|
67000
|
+
if(this.headers) {
|
|
67001
|
+
$dara.Model.validateMap(this.headers);
|
|
67002
|
+
}
|
|
67003
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
67004
|
+
(this.body as any).validate();
|
|
67005
|
+
}
|
|
67006
|
+
super.validate();
|
|
67007
|
+
}
|
|
67008
|
+
|
|
67009
|
+
constructor(map?: { [key: string]: any }) {
|
|
67010
|
+
super(map);
|
|
67011
|
+
}
|
|
67012
|
+
}
|
|
67013
|
+
|
|
65948
67014
|
export class UpdateCustomScenePolicyRequest extends $dara.Model {
|
|
65949
67015
|
/**
|
|
65950
67016
|
* @remarks
|
|
@@ -69347,6 +70413,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
69347
70413
|
* on
|
|
69348
70414
|
*/
|
|
69349
70415
|
originMtls?: string;
|
|
70416
|
+
originReadTimeout?: string;
|
|
69350
70417
|
/**
|
|
69351
70418
|
* @remarks
|
|
69352
70419
|
* Protocol used for the origin request. Valid values:
|
|
@@ -69435,6 +70502,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
69435
70502
|
originHttpPort: 'OriginHttpPort',
|
|
69436
70503
|
originHttpsPort: 'OriginHttpsPort',
|
|
69437
70504
|
originMtls: 'OriginMtls',
|
|
70505
|
+
originReadTimeout: 'OriginReadTimeout',
|
|
69438
70506
|
originScheme: 'OriginScheme',
|
|
69439
70507
|
originSni: 'OriginSni',
|
|
69440
70508
|
originVerify: 'OriginVerify',
|
|
@@ -69456,6 +70524,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
69456
70524
|
originHttpPort: 'string',
|
|
69457
70525
|
originHttpsPort: 'string',
|
|
69458
70526
|
originMtls: 'string',
|
|
70527
|
+
originReadTimeout: 'string',
|
|
69459
70528
|
originScheme: 'string',
|
|
69460
70529
|
originSni: 'string',
|
|
69461
70530
|
originVerify: 'string',
|
|
@@ -72295,7 +73364,7 @@ export class UpdateWafRuleRequest extends $dara.Model {
|
|
|
72295
73364
|
config?: WafRuleConfig;
|
|
72296
73365
|
/**
|
|
72297
73366
|
* @remarks
|
|
72298
|
-
* WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
73367
|
+
* WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
|
|
72299
73368
|
*
|
|
72300
73369
|
* This parameter is required.
|
|
72301
73370
|
*
|
|
@@ -72379,7 +73448,7 @@ export class UpdateWafRuleShrinkRequest extends $dara.Model {
|
|
|
72379
73448
|
configShrink?: string;
|
|
72380
73449
|
/**
|
|
72381
73450
|
* @remarks
|
|
72382
|
-
* WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
73451
|
+
* WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
|
|
72383
73452
|
*
|
|
72384
73453
|
* This parameter is required.
|
|
72385
73454
|
*
|
|
@@ -72455,7 +73524,7 @@ export class UpdateWafRuleShrinkRequest extends $dara.Model {
|
|
|
72455
73524
|
export class UpdateWafRuleResponseBody extends $dara.Model {
|
|
72456
73525
|
/**
|
|
72457
73526
|
* @remarks
|
|
72458
|
-
* WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/
|
|
73527
|
+
* WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
|
|
72459
73528
|
*
|
|
72460
73529
|
* @example
|
|
72461
73530
|
* 20000001
|
|
@@ -77620,6 +78689,10 @@ export default class Client extends OpenApi {
|
|
|
77620
78689
|
query["OriginMtls"] = request.originMtls;
|
|
77621
78690
|
}
|
|
77622
78691
|
|
|
78692
|
+
if (!$dara.isNull(request.originReadTimeout)) {
|
|
78693
|
+
query["OriginReadTimeout"] = request.originReadTimeout;
|
|
78694
|
+
}
|
|
78695
|
+
|
|
77623
78696
|
if (!$dara.isNull(request.originScheme)) {
|
|
77624
78697
|
query["OriginScheme"] = request.originScheme;
|
|
77625
78698
|
}
|
|
@@ -81927,6 +83000,148 @@ export default class Client extends OpenApi {
|
|
|
81927
83000
|
return await this.describeRatePlanInstanceStatusWithOptions(request, runtime);
|
|
81928
83001
|
}
|
|
81929
83002
|
|
|
83003
|
+
/**
|
|
83004
|
+
* 获取时序数据
|
|
83005
|
+
*
|
|
83006
|
+
* @param tmpReq - DescribeSiteTimeSeriesDataRequest
|
|
83007
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
83008
|
+
* @returns DescribeSiteTimeSeriesDataResponse
|
|
83009
|
+
*/
|
|
83010
|
+
async describeSiteTimeSeriesDataWithOptions(tmpReq: DescribeSiteTimeSeriesDataRequest, runtime: $dara.RuntimeOptions): Promise<DescribeSiteTimeSeriesDataResponse> {
|
|
83011
|
+
tmpReq.validate();
|
|
83012
|
+
let request = new DescribeSiteTimeSeriesDataShrinkRequest({ });
|
|
83013
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
83014
|
+
if (!$dara.isNull(tmpReq.fields)) {
|
|
83015
|
+
request.fieldsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.fields, "Fields", "json");
|
|
83016
|
+
}
|
|
83017
|
+
|
|
83018
|
+
let query = { };
|
|
83019
|
+
if (!$dara.isNull(request.endTime)) {
|
|
83020
|
+
query["EndTime"] = request.endTime;
|
|
83021
|
+
}
|
|
83022
|
+
|
|
83023
|
+
if (!$dara.isNull(request.fieldsShrink)) {
|
|
83024
|
+
query["Fields"] = request.fieldsShrink;
|
|
83025
|
+
}
|
|
83026
|
+
|
|
83027
|
+
if (!$dara.isNull(request.interval)) {
|
|
83028
|
+
query["Interval"] = request.interval;
|
|
83029
|
+
}
|
|
83030
|
+
|
|
83031
|
+
if (!$dara.isNull(request.siteId)) {
|
|
83032
|
+
query["SiteId"] = request.siteId;
|
|
83033
|
+
}
|
|
83034
|
+
|
|
83035
|
+
if (!$dara.isNull(request.startTime)) {
|
|
83036
|
+
query["StartTime"] = request.startTime;
|
|
83037
|
+
}
|
|
83038
|
+
|
|
83039
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
83040
|
+
query: OpenApiUtil.query(query),
|
|
83041
|
+
});
|
|
83042
|
+
let params = new $OpenApiUtil.Params({
|
|
83043
|
+
action: "DescribeSiteTimeSeriesData",
|
|
83044
|
+
version: "2024-09-10",
|
|
83045
|
+
protocol: "HTTPS",
|
|
83046
|
+
pathname: "/",
|
|
83047
|
+
method: "POST",
|
|
83048
|
+
authType: "AK",
|
|
83049
|
+
style: "RPC",
|
|
83050
|
+
reqBodyType: "formData",
|
|
83051
|
+
bodyType: "json",
|
|
83052
|
+
});
|
|
83053
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
83054
|
+
return $dara.cast<DescribeSiteTimeSeriesDataResponse>(await this.callApi(params, req, runtime), new DescribeSiteTimeSeriesDataResponse({}));
|
|
83055
|
+
} else {
|
|
83056
|
+
return $dara.cast<DescribeSiteTimeSeriesDataResponse>(await this.execute(params, req, runtime), new DescribeSiteTimeSeriesDataResponse({}));
|
|
83057
|
+
}
|
|
83058
|
+
|
|
83059
|
+
}
|
|
83060
|
+
|
|
83061
|
+
/**
|
|
83062
|
+
* 获取时序数据
|
|
83063
|
+
*
|
|
83064
|
+
* @param request - DescribeSiteTimeSeriesDataRequest
|
|
83065
|
+
* @returns DescribeSiteTimeSeriesDataResponse
|
|
83066
|
+
*/
|
|
83067
|
+
async describeSiteTimeSeriesData(request: DescribeSiteTimeSeriesDataRequest): Promise<DescribeSiteTimeSeriesDataResponse> {
|
|
83068
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
83069
|
+
return await this.describeSiteTimeSeriesDataWithOptions(request, runtime);
|
|
83070
|
+
}
|
|
83071
|
+
|
|
83072
|
+
/**
|
|
83073
|
+
* 获取Top数据
|
|
83074
|
+
*
|
|
83075
|
+
* @param tmpReq - DescribeSiteTopDataRequest
|
|
83076
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
83077
|
+
* @returns DescribeSiteTopDataResponse
|
|
83078
|
+
*/
|
|
83079
|
+
async describeSiteTopDataWithOptions(tmpReq: DescribeSiteTopDataRequest, runtime: $dara.RuntimeOptions): Promise<DescribeSiteTopDataResponse> {
|
|
83080
|
+
tmpReq.validate();
|
|
83081
|
+
let request = new DescribeSiteTopDataShrinkRequest({ });
|
|
83082
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
83083
|
+
if (!$dara.isNull(tmpReq.fields)) {
|
|
83084
|
+
request.fieldsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.fields, "Fields", "json");
|
|
83085
|
+
}
|
|
83086
|
+
|
|
83087
|
+
let query = { };
|
|
83088
|
+
if (!$dara.isNull(request.endTime)) {
|
|
83089
|
+
query["EndTime"] = request.endTime;
|
|
83090
|
+
}
|
|
83091
|
+
|
|
83092
|
+
if (!$dara.isNull(request.fieldsShrink)) {
|
|
83093
|
+
query["Fields"] = request.fieldsShrink;
|
|
83094
|
+
}
|
|
83095
|
+
|
|
83096
|
+
if (!$dara.isNull(request.interval)) {
|
|
83097
|
+
query["Interval"] = request.interval;
|
|
83098
|
+
}
|
|
83099
|
+
|
|
83100
|
+
if (!$dara.isNull(request.limit)) {
|
|
83101
|
+
query["Limit"] = request.limit;
|
|
83102
|
+
}
|
|
83103
|
+
|
|
83104
|
+
if (!$dara.isNull(request.siteId)) {
|
|
83105
|
+
query["SiteId"] = request.siteId;
|
|
83106
|
+
}
|
|
83107
|
+
|
|
83108
|
+
if (!$dara.isNull(request.startTime)) {
|
|
83109
|
+
query["StartTime"] = request.startTime;
|
|
83110
|
+
}
|
|
83111
|
+
|
|
83112
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
83113
|
+
query: OpenApiUtil.query(query),
|
|
83114
|
+
});
|
|
83115
|
+
let params = new $OpenApiUtil.Params({
|
|
83116
|
+
action: "DescribeSiteTopData",
|
|
83117
|
+
version: "2024-09-10",
|
|
83118
|
+
protocol: "HTTPS",
|
|
83119
|
+
pathname: "/",
|
|
83120
|
+
method: "POST",
|
|
83121
|
+
authType: "AK",
|
|
83122
|
+
style: "RPC",
|
|
83123
|
+
reqBodyType: "formData",
|
|
83124
|
+
bodyType: "json",
|
|
83125
|
+
});
|
|
83126
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
83127
|
+
return $dara.cast<DescribeSiteTopDataResponse>(await this.callApi(params, req, runtime), new DescribeSiteTopDataResponse({}));
|
|
83128
|
+
} else {
|
|
83129
|
+
return $dara.cast<DescribeSiteTopDataResponse>(await this.execute(params, req, runtime), new DescribeSiteTopDataResponse({}));
|
|
83130
|
+
}
|
|
83131
|
+
|
|
83132
|
+
}
|
|
83133
|
+
|
|
83134
|
+
/**
|
|
83135
|
+
* 获取Top数据
|
|
83136
|
+
*
|
|
83137
|
+
* @param request - DescribeSiteTopDataRequest
|
|
83138
|
+
* @returns DescribeSiteTopDataResponse
|
|
83139
|
+
*/
|
|
83140
|
+
async describeSiteTopData(request: DescribeSiteTopDataRequest): Promise<DescribeSiteTopDataResponse> {
|
|
83141
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
83142
|
+
return await this.describeSiteTopDataWithOptions(request, runtime);
|
|
83143
|
+
}
|
|
83144
|
+
|
|
81930
83145
|
/**
|
|
81931
83146
|
* Disables a scenario-specific policy.
|
|
81932
83147
|
*
|
|
@@ -82551,6 +83766,49 @@ export default class Client extends OpenApi {
|
|
|
82551
83766
|
return await this.getCompressionRuleWithOptions(request, runtime);
|
|
82552
83767
|
}
|
|
82553
83768
|
|
|
83769
|
+
/**
|
|
83770
|
+
* 查询站点中国大陆网络接入优化配置
|
|
83771
|
+
*
|
|
83772
|
+
* @param request - GetCrossBorderOptimizationRequest
|
|
83773
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
83774
|
+
* @returns GetCrossBorderOptimizationResponse
|
|
83775
|
+
*/
|
|
83776
|
+
async getCrossBorderOptimizationWithOptions(request: GetCrossBorderOptimizationRequest, runtime: $dara.RuntimeOptions): Promise<GetCrossBorderOptimizationResponse> {
|
|
83777
|
+
request.validate();
|
|
83778
|
+
let query = OpenApiUtil.query(request.toMap());
|
|
83779
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
83780
|
+
query: OpenApiUtil.query(query),
|
|
83781
|
+
});
|
|
83782
|
+
let params = new $OpenApiUtil.Params({
|
|
83783
|
+
action: "GetCrossBorderOptimization",
|
|
83784
|
+
version: "2024-09-10",
|
|
83785
|
+
protocol: "HTTPS",
|
|
83786
|
+
pathname: "/",
|
|
83787
|
+
method: "GET",
|
|
83788
|
+
authType: "AK",
|
|
83789
|
+
style: "RPC",
|
|
83790
|
+
reqBodyType: "formData",
|
|
83791
|
+
bodyType: "json",
|
|
83792
|
+
});
|
|
83793
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
83794
|
+
return $dara.cast<GetCrossBorderOptimizationResponse>(await this.callApi(params, req, runtime), new GetCrossBorderOptimizationResponse({}));
|
|
83795
|
+
} else {
|
|
83796
|
+
return $dara.cast<GetCrossBorderOptimizationResponse>(await this.execute(params, req, runtime), new GetCrossBorderOptimizationResponse({}));
|
|
83797
|
+
}
|
|
83798
|
+
|
|
83799
|
+
}
|
|
83800
|
+
|
|
83801
|
+
/**
|
|
83802
|
+
* 查询站点中国大陆网络接入优化配置
|
|
83803
|
+
*
|
|
83804
|
+
* @param request - GetCrossBorderOptimizationRequest
|
|
83805
|
+
* @returns GetCrossBorderOptimizationResponse
|
|
83806
|
+
*/
|
|
83807
|
+
async getCrossBorderOptimization(request: GetCrossBorderOptimizationRequest): Promise<GetCrossBorderOptimizationResponse> {
|
|
83808
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
83809
|
+
return await this.getCrossBorderOptimizationWithOptions(request, runtime);
|
|
83810
|
+
}
|
|
83811
|
+
|
|
82554
83812
|
/**
|
|
82555
83813
|
* Query Site Developer Mode Configuration
|
|
82556
83814
|
*
|
|
@@ -82731,6 +83989,53 @@ export default class Client extends OpenApi {
|
|
|
82731
83989
|
return await this.getEdgeContainerAppResourceReserveWithOptions(request, runtime);
|
|
82732
83990
|
}
|
|
82733
83991
|
|
|
83992
|
+
/**
|
|
83993
|
+
* 获取边缘容器应用资源分布
|
|
83994
|
+
*
|
|
83995
|
+
* @param request - GetEdgeContainerAppResourceStatusRequest
|
|
83996
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
83997
|
+
* @returns GetEdgeContainerAppResourceStatusResponse
|
|
83998
|
+
*/
|
|
83999
|
+
async getEdgeContainerAppResourceStatusWithOptions(request: GetEdgeContainerAppResourceStatusRequest, runtime: $dara.RuntimeOptions): Promise<GetEdgeContainerAppResourceStatusResponse> {
|
|
84000
|
+
request.validate();
|
|
84001
|
+
let query = { };
|
|
84002
|
+
if (!$dara.isNull(request.appId)) {
|
|
84003
|
+
query["AppId"] = request.appId;
|
|
84004
|
+
}
|
|
84005
|
+
|
|
84006
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
84007
|
+
query: OpenApiUtil.query(query),
|
|
84008
|
+
});
|
|
84009
|
+
let params = new $OpenApiUtil.Params({
|
|
84010
|
+
action: "GetEdgeContainerAppResourceStatus",
|
|
84011
|
+
version: "2024-09-10",
|
|
84012
|
+
protocol: "HTTPS",
|
|
84013
|
+
pathname: "/",
|
|
84014
|
+
method: "POST",
|
|
84015
|
+
authType: "AK",
|
|
84016
|
+
style: "RPC",
|
|
84017
|
+
reqBodyType: "formData",
|
|
84018
|
+
bodyType: "json",
|
|
84019
|
+
});
|
|
84020
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
84021
|
+
return $dara.cast<GetEdgeContainerAppResourceStatusResponse>(await this.callApi(params, req, runtime), new GetEdgeContainerAppResourceStatusResponse({}));
|
|
84022
|
+
} else {
|
|
84023
|
+
return $dara.cast<GetEdgeContainerAppResourceStatusResponse>(await this.execute(params, req, runtime), new GetEdgeContainerAppResourceStatusResponse({}));
|
|
84024
|
+
}
|
|
84025
|
+
|
|
84026
|
+
}
|
|
84027
|
+
|
|
84028
|
+
/**
|
|
84029
|
+
* 获取边缘容器应用资源分布
|
|
84030
|
+
*
|
|
84031
|
+
* @param request - GetEdgeContainerAppResourceStatusRequest
|
|
84032
|
+
* @returns GetEdgeContainerAppResourceStatusResponse
|
|
84033
|
+
*/
|
|
84034
|
+
async getEdgeContainerAppResourceStatus(request: GetEdgeContainerAppResourceStatusRequest): Promise<GetEdgeContainerAppResourceStatusResponse> {
|
|
84035
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
84036
|
+
return await this.getEdgeContainerAppResourceStatusWithOptions(request, runtime);
|
|
84037
|
+
}
|
|
84038
|
+
|
|
82734
84039
|
/**
|
|
82735
84040
|
* Queries the status information about a containerized application, including the deployment, release, and rollback of the application.
|
|
82736
84041
|
*
|
|
@@ -87023,7 +88328,7 @@ export default class Client extends OpenApi {
|
|
|
87023
88328
|
}
|
|
87024
88329
|
|
|
87025
88330
|
/**
|
|
87026
|
-
*
|
|
88331
|
+
* Queries the information about websites in your account, such as the name, status, and configuration of each website.
|
|
87027
88332
|
*
|
|
87028
88333
|
* @param tmpReq - ListSitesRequest
|
|
87029
88334
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -87061,7 +88366,7 @@ export default class Client extends OpenApi {
|
|
|
87061
88366
|
}
|
|
87062
88367
|
|
|
87063
88368
|
/**
|
|
87064
|
-
*
|
|
88369
|
+
* Queries the information about websites in your account, such as the name, status, and configuration of each website.
|
|
87065
88370
|
*
|
|
87066
88371
|
* @param request - ListSitesRequest
|
|
87067
88372
|
* @returns ListSitesResponse
|
|
@@ -89608,6 +90913,57 @@ export default class Client extends OpenApi {
|
|
|
89608
90913
|
return await this.updateCompressionRuleWithOptions(request, runtime);
|
|
89609
90914
|
}
|
|
89610
90915
|
|
|
90916
|
+
/**
|
|
90917
|
+
* 修改站点中国大陆网络接入优化配置
|
|
90918
|
+
*
|
|
90919
|
+
* @param request - UpdateCrossBorderOptimizationRequest
|
|
90920
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
90921
|
+
* @returns UpdateCrossBorderOptimizationResponse
|
|
90922
|
+
*/
|
|
90923
|
+
async updateCrossBorderOptimizationWithOptions(request: UpdateCrossBorderOptimizationRequest, runtime: $dara.RuntimeOptions): Promise<UpdateCrossBorderOptimizationResponse> {
|
|
90924
|
+
request.validate();
|
|
90925
|
+
let query = { };
|
|
90926
|
+
if (!$dara.isNull(request.enable)) {
|
|
90927
|
+
query["Enable"] = request.enable;
|
|
90928
|
+
}
|
|
90929
|
+
|
|
90930
|
+
if (!$dara.isNull(request.siteId)) {
|
|
90931
|
+
query["SiteId"] = request.siteId;
|
|
90932
|
+
}
|
|
90933
|
+
|
|
90934
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
90935
|
+
query: OpenApiUtil.query(query),
|
|
90936
|
+
});
|
|
90937
|
+
let params = new $OpenApiUtil.Params({
|
|
90938
|
+
action: "UpdateCrossBorderOptimization",
|
|
90939
|
+
version: "2024-09-10",
|
|
90940
|
+
protocol: "HTTPS",
|
|
90941
|
+
pathname: "/",
|
|
90942
|
+
method: "POST",
|
|
90943
|
+
authType: "AK",
|
|
90944
|
+
style: "RPC",
|
|
90945
|
+
reqBodyType: "formData",
|
|
90946
|
+
bodyType: "json",
|
|
90947
|
+
});
|
|
90948
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
90949
|
+
return $dara.cast<UpdateCrossBorderOptimizationResponse>(await this.callApi(params, req, runtime), new UpdateCrossBorderOptimizationResponse({}));
|
|
90950
|
+
} else {
|
|
90951
|
+
return $dara.cast<UpdateCrossBorderOptimizationResponse>(await this.execute(params, req, runtime), new UpdateCrossBorderOptimizationResponse({}));
|
|
90952
|
+
}
|
|
90953
|
+
|
|
90954
|
+
}
|
|
90955
|
+
|
|
90956
|
+
/**
|
|
90957
|
+
* 修改站点中国大陆网络接入优化配置
|
|
90958
|
+
*
|
|
90959
|
+
* @param request - UpdateCrossBorderOptimizationRequest
|
|
90960
|
+
* @returns UpdateCrossBorderOptimizationResponse
|
|
90961
|
+
*/
|
|
90962
|
+
async updateCrossBorderOptimization(request: UpdateCrossBorderOptimizationRequest): Promise<UpdateCrossBorderOptimizationResponse> {
|
|
90963
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
90964
|
+
return await this.updateCrossBorderOptimizationWithOptions(request, runtime);
|
|
90965
|
+
}
|
|
90966
|
+
|
|
89611
90967
|
/**
|
|
89612
90968
|
* Modifies the configurations of a custom scenario-specific policy.
|
|
89613
90969
|
*
|
|
@@ -90883,6 +92239,10 @@ export default class Client extends OpenApi {
|
|
|
90883
92239
|
query["OriginMtls"] = request.originMtls;
|
|
90884
92240
|
}
|
|
90885
92241
|
|
|
92242
|
+
if (!$dara.isNull(request.originReadTimeout)) {
|
|
92243
|
+
query["OriginReadTimeout"] = request.originReadTimeout;
|
|
92244
|
+
}
|
|
92245
|
+
|
|
90886
92246
|
if (!$dara.isNull(request.originScheme)) {
|
|
90887
92247
|
query["OriginScheme"] = request.originScheme;
|
|
90888
92248
|
}
|