@alicloud/esa20240910 2.21.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/src/client.ts CHANGED
@@ -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',
@@ -21921,7 +22248,7 @@ export class BatchCreateWafRulesShrinkRequest extends $dara.Model {
21921
22248
  export class BatchCreateWafRulesResponseBody extends $dara.Model {
21922
22249
  /**
21923
22250
  * @remarks
21924
- * ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) interface.
22251
+ * ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
21925
22252
  */
21926
22253
  ids?: number[];
21927
22254
  /**
@@ -21934,7 +22261,7 @@ export class BatchCreateWafRulesResponseBody extends $dara.Model {
21934
22261
  requestId?: string;
21935
22262
  /**
21936
22263
  * @remarks
21937
- * ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2850233.html) interface.
22264
+ * ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
21938
22265
  *
21939
22266
  * @example
21940
22267
  * 10000001
@@ -22883,7 +23210,7 @@ export class BatchUpdateWafRulesRequest extends $dara.Model {
22883
23210
  phase?: string;
22884
23211
  /**
22885
23212
  * @remarks
22886
- * The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2850233.html) operation.
23213
+ * The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) operation.
22887
23214
  *
22888
23215
  * @example
22889
23216
  * 10000001
@@ -22892,6 +23219,9 @@ export class BatchUpdateWafRulesRequest extends $dara.Model {
22892
23219
  /**
22893
23220
  * @remarks
22894
23221
  * The configurations shared by multiple rules.
23222
+ *
23223
+ * @example
23224
+ * 10000001
22895
23225
  */
22896
23226
  shared?: WafBatchRuleShared;
22897
23227
  /**
@@ -22963,7 +23293,7 @@ export class BatchUpdateWafRulesShrinkRequest extends $dara.Model {
22963
23293
  phase?: string;
22964
23294
  /**
22965
23295
  * @remarks
22966
- * The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2850233.html) operation.
23296
+ * The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) operation.
22967
23297
  *
22968
23298
  * @example
22969
23299
  * 10000001
@@ -22972,6 +23302,9 @@ export class BatchUpdateWafRulesShrinkRequest extends $dara.Model {
22972
23302
  /**
22973
23303
  * @remarks
22974
23304
  * The configurations shared by multiple rules.
23305
+ *
23306
+ * @example
23307
+ * 10000001
22975
23308
  */
22976
23309
  sharedShrink?: string;
22977
23310
  /**
@@ -28220,6 +28553,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
28220
28553
  * on
28221
28554
  */
28222
28555
  originMtls?: string;
28556
+ originReadTimeout?: string;
28223
28557
  /**
28224
28558
  * @remarks
28225
28559
  * Protocol used for the origin request. Possible values:
@@ -28315,6 +28649,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
28315
28649
  originHttpPort: 'OriginHttpPort',
28316
28650
  originHttpsPort: 'OriginHttpsPort',
28317
28651
  originMtls: 'OriginMtls',
28652
+ originReadTimeout: 'OriginReadTimeout',
28318
28653
  originScheme: 'OriginScheme',
28319
28654
  originSni: 'OriginSni',
28320
28655
  originVerify: 'OriginVerify',
@@ -28336,6 +28671,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
28336
28671
  originHttpPort: 'string',
28337
28672
  originHttpsPort: 'string',
28338
28673
  originMtls: 'string',
28674
+ originReadTimeout: 'string',
28339
28675
  originScheme: 'string',
28340
28676
  originSni: 'string',
28341
28677
  originVerify: 'string',
@@ -31652,7 +31988,7 @@ export class CreateWafRuleShrinkRequest extends $dara.Model {
31652
31988
  export class CreateWafRuleResponseBody extends $dara.Model {
31653
31989
  /**
31654
31990
  * @remarks
31655
- * The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) API.
31991
+ * The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) API.
31656
31992
  *
31657
31993
  * @example
31658
31994
  * 20000001
@@ -31668,7 +32004,7 @@ export class CreateWafRuleResponseBody extends $dara.Model {
31668
32004
  requestId?: string;
31669
32005
  /**
31670
32006
  * @remarks
31671
- * ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2850233.html) interface.
32007
+ * ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
31672
32008
  *
31673
32009
  * @example
31674
32010
  * 10000001
@@ -37320,7 +37656,7 @@ export class DeleteUserDeliveryTaskResponse extends $dara.Model {
37320
37656
  export class DeleteWafRuleRequest extends $dara.Model {
37321
37657
  /**
37322
37658
  * @remarks
37323
- * ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) interface.
37659
+ * ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
37324
37660
  *
37325
37661
  * This parameter is required.
37326
37662
  *
@@ -39696,6 +40032,429 @@ export class DescribeRatePlanInstanceStatusResponse extends $dara.Model {
39696
40032
  }
39697
40033
  }
39698
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
+
39699
40458
  export class DisableCustomScenePolicyRequest extends $dara.Model {
39700
40459
  /**
39701
40460
  * @remarks
@@ -42176,38 +42935,150 @@ export class GetEdgeContainerAppRequest extends $dara.Model {
42176
42935
  }
42177
42936
  }
42178
42937
 
42179
- export class GetEdgeContainerAppResponseBody extends $dara.Model {
42938
+ export class GetEdgeContainerAppResponseBody extends $dara.Model {
42939
+ /**
42940
+ * @remarks
42941
+ * The basic information about the application.
42942
+ */
42943
+ app?: GetEdgeContainerAppResponseBodyApp;
42944
+ /**
42945
+ * @remarks
42946
+ * The request ID.
42947
+ *
42948
+ * @example
42949
+ * 156A6B-677B1A-4297B7-9187B7-2B44792
42950
+ */
42951
+ requestId?: string;
42952
+ static names(): { [key: string]: string } {
42953
+ return {
42954
+ app: 'App',
42955
+ requestId: 'RequestId',
42956
+ };
42957
+ }
42958
+
42959
+ static types(): { [key: string]: any } {
42960
+ return {
42961
+ app: GetEdgeContainerAppResponseBodyApp,
42962
+ requestId: 'string',
42963
+ };
42964
+ }
42965
+
42966
+ validate() {
42967
+ if(this.app && typeof (this.app as any).validate === 'function') {
42968
+ (this.app as any).validate();
42969
+ }
42970
+ super.validate();
42971
+ }
42972
+
42973
+ constructor(map?: { [key: string]: any }) {
42974
+ super(map);
42975
+ }
42976
+ }
42977
+
42978
+ export class GetEdgeContainerAppResponse extends $dara.Model {
42979
+ headers?: { [key: string]: string };
42980
+ statusCode?: number;
42981
+ body?: GetEdgeContainerAppResponseBody;
42982
+ static names(): { [key: string]: string } {
42983
+ return {
42984
+ headers: 'headers',
42985
+ statusCode: 'statusCode',
42986
+ body: 'body',
42987
+ };
42988
+ }
42989
+
42990
+ static types(): { [key: string]: any } {
42991
+ return {
42992
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
42993
+ statusCode: 'number',
42994
+ body: GetEdgeContainerAppResponseBody,
42995
+ };
42996
+ }
42997
+
42998
+ validate() {
42999
+ if(this.headers) {
43000
+ $dara.Model.validateMap(this.headers);
43001
+ }
43002
+ if(this.body && typeof (this.body as any).validate === 'function') {
43003
+ (this.body as any).validate();
43004
+ }
43005
+ super.validate();
43006
+ }
43007
+
43008
+ constructor(map?: { [key: string]: any }) {
43009
+ super(map);
43010
+ }
43011
+ }
43012
+
43013
+ export class GetEdgeContainerAppLogRiverRequest extends $dara.Model {
43014
+ /**
43015
+ * @remarks
43016
+ * The application ID, which can be obtained by calling the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) operation.
43017
+ *
43018
+ * @example
43019
+ * app-880688675****88
43020
+ */
43021
+ appId?: string;
43022
+ static names(): { [key: string]: string } {
43023
+ return {
43024
+ appId: 'AppId',
43025
+ };
43026
+ }
43027
+
43028
+ static types(): { [key: string]: any } {
43029
+ return {
43030
+ appId: 'string',
43031
+ };
43032
+ }
43033
+
43034
+ validate() {
43035
+ super.validate();
43036
+ }
43037
+
43038
+ constructor(map?: { [key: string]: any }) {
43039
+ super(map);
43040
+ }
43041
+ }
43042
+
43043
+ export class GetEdgeContainerAppLogRiverResponseBody extends $dara.Model {
42180
43044
  /**
42181
43045
  * @remarks
42182
- * The basic information about the application.
43046
+ * The log path of the container. It must be an absolute path that starts with a forward slash (/). You can use asterisks (\\*) and question marks (?) as wildcards.
43047
+ *
43048
+ * @example
43049
+ * /root/hello.log
42183
43050
  */
42184
- app?: GetEdgeContainerAppResponseBodyApp;
43051
+ path?: string;
42185
43052
  /**
42186
43053
  * @remarks
42187
43054
  * The request ID.
42188
43055
  *
42189
43056
  * @example
42190
- * 156A6B-677B1A-4297B7-9187B7-2B44792
43057
+ * 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
42191
43058
  */
42192
43059
  requestId?: string;
43060
+ /**
43061
+ * @remarks
43062
+ * Indicates whether the standard output of the container is collected.
43063
+ */
43064
+ stdout?: boolean;
42193
43065
  static names(): { [key: string]: string } {
42194
43066
  return {
42195
- app: 'App',
43067
+ path: 'Path',
42196
43068
  requestId: 'RequestId',
43069
+ stdout: 'Stdout',
42197
43070
  };
42198
43071
  }
42199
43072
 
42200
43073
  static types(): { [key: string]: any } {
42201
43074
  return {
42202
- app: GetEdgeContainerAppResponseBodyApp,
43075
+ path: 'string',
42203
43076
  requestId: 'string',
43077
+ stdout: 'boolean',
42204
43078
  };
42205
43079
  }
42206
43080
 
42207
43081
  validate() {
42208
- if(this.app && typeof (this.app as any).validate === 'function') {
42209
- (this.app as any).validate();
42210
- }
42211
43082
  super.validate();
42212
43083
  }
42213
43084
 
@@ -42216,10 +43087,10 @@ export class GetEdgeContainerAppResponseBody extends $dara.Model {
42216
43087
  }
42217
43088
  }
42218
43089
 
42219
- export class GetEdgeContainerAppResponse extends $dara.Model {
43090
+ export class GetEdgeContainerAppLogRiverResponse extends $dara.Model {
42220
43091
  headers?: { [key: string]: string };
42221
43092
  statusCode?: number;
42222
- body?: GetEdgeContainerAppResponseBody;
43093
+ body?: GetEdgeContainerAppLogRiverResponseBody;
42223
43094
  static names(): { [key: string]: string } {
42224
43095
  return {
42225
43096
  headers: 'headers',
@@ -42232,7 +43103,7 @@ export class GetEdgeContainerAppResponse extends $dara.Model {
42232
43103
  return {
42233
43104
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
42234
43105
  statusCode: 'number',
42235
- body: GetEdgeContainerAppResponseBody,
43106
+ body: GetEdgeContainerAppLogRiverResponseBody,
42236
43107
  };
42237
43108
  }
42238
43109
 
@@ -42251,13 +43122,10 @@ export class GetEdgeContainerAppResponse extends $dara.Model {
42251
43122
  }
42252
43123
  }
42253
43124
 
42254
- export class GetEdgeContainerAppLogRiverRequest extends $dara.Model {
43125
+ export class GetEdgeContainerAppResourceReserveRequest extends $dara.Model {
42255
43126
  /**
42256
- * @remarks
42257
- * The application ID, which can be obtained by calling the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) operation.
42258
- *
42259
43127
  * @example
42260
- * app-880688675****88
43128
+ * app-88068867578379****
42261
43129
  */
42262
43130
  appId?: string;
42263
43131
  static names(): { [key: string]: string } {
@@ -42281,45 +43149,52 @@ export class GetEdgeContainerAppLogRiverRequest extends $dara.Model {
42281
43149
  }
42282
43150
  }
42283
43151
 
42284
- export class GetEdgeContainerAppLogRiverResponseBody extends $dara.Model {
43152
+ export class GetEdgeContainerAppResourceReserveResponseBody extends $dara.Model {
42285
43153
  /**
42286
- * @remarks
42287
- * The log path of the container. It must be an absolute path that starts with a forward slash (/). You can use asterisks (\\*) and question marks (?) as wildcards.
42288
- *
42289
43154
  * @example
42290
- * /root/hello.log
43155
+ * 2006-01-02T15:04:05Z
42291
43156
  */
42292
- path?: string;
43157
+ durationTime?: string;
42293
43158
  /**
42294
- * @remarks
42295
- * The request ID.
42296
- *
42297
43159
  * @example
42298
- * 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
43160
+ * true
42299
43161
  */
42300
- requestId?: string;
43162
+ enable?: boolean;
42301
43163
  /**
42302
- * @remarks
42303
- * Indicates whether the standard output of the container is collected.
43164
+ * @example
43165
+ * true
42304
43166
  */
42305
- stdout?: boolean;
43167
+ forever?: boolean;
43168
+ /**
43169
+ * @example
43170
+ * 04F0F334-1335-436C-A1D7-6C044FE73368
43171
+ */
43172
+ requestId?: string;
43173
+ reserveSet?: GetEdgeContainerAppResourceReserveResponseBodyReserveSet[];
42306
43174
  static names(): { [key: string]: string } {
42307
43175
  return {
42308
- path: 'Path',
43176
+ durationTime: 'DurationTime',
43177
+ enable: 'Enable',
43178
+ forever: 'Forever',
42309
43179
  requestId: 'RequestId',
42310
- stdout: 'Stdout',
43180
+ reserveSet: 'ReserveSet',
42311
43181
  };
42312
43182
  }
42313
43183
 
42314
43184
  static types(): { [key: string]: any } {
42315
43185
  return {
42316
- path: 'string',
43186
+ durationTime: 'string',
43187
+ enable: 'boolean',
43188
+ forever: 'boolean',
42317
43189
  requestId: 'string',
42318
- stdout: 'boolean',
43190
+ reserveSet: { 'type': 'array', 'itemType': GetEdgeContainerAppResourceReserveResponseBodyReserveSet },
42319
43191
  };
42320
43192
  }
42321
43193
 
42322
43194
  validate() {
43195
+ if(Array.isArray(this.reserveSet)) {
43196
+ $dara.Model.validateArray(this.reserveSet);
43197
+ }
42323
43198
  super.validate();
42324
43199
  }
42325
43200
 
@@ -42328,10 +43203,10 @@ export class GetEdgeContainerAppLogRiverResponseBody extends $dara.Model {
42328
43203
  }
42329
43204
  }
42330
43205
 
42331
- export class GetEdgeContainerAppLogRiverResponse extends $dara.Model {
43206
+ export class GetEdgeContainerAppResourceReserveResponse extends $dara.Model {
42332
43207
  headers?: { [key: string]: string };
42333
43208
  statusCode?: number;
42334
- body?: GetEdgeContainerAppLogRiverResponseBody;
43209
+ body?: GetEdgeContainerAppResourceReserveResponseBody;
42335
43210
  static names(): { [key: string]: string } {
42336
43211
  return {
42337
43212
  headers: 'headers',
@@ -42344,7 +43219,7 @@ export class GetEdgeContainerAppLogRiverResponse extends $dara.Model {
42344
43219
  return {
42345
43220
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
42346
43221
  statusCode: 'number',
42347
- body: GetEdgeContainerAppLogRiverResponseBody,
43222
+ body: GetEdgeContainerAppResourceReserveResponseBody,
42348
43223
  };
42349
43224
  }
42350
43225
 
@@ -42363,10 +43238,13 @@ export class GetEdgeContainerAppLogRiverResponse extends $dara.Model {
42363
43238
  }
42364
43239
  }
42365
43240
 
42366
- export class GetEdgeContainerAppResourceReserveRequest extends $dara.Model {
43241
+ export class GetEdgeContainerAppResourceStatusRequest extends $dara.Model {
42367
43242
  /**
43243
+ * @remarks
43244
+ * This parameter is required.
43245
+ *
42368
43246
  * @example
42369
- * app-88068867578379****
43247
+ * app-96253477062511****
42370
43248
  */
42371
43249
  appId?: string;
42372
43250
  static names(): { [key: string]: string } {
@@ -42390,51 +43268,30 @@ export class GetEdgeContainerAppResourceReserveRequest extends $dara.Model {
42390
43268
  }
42391
43269
  }
42392
43270
 
42393
- export class GetEdgeContainerAppResourceReserveResponseBody extends $dara.Model {
42394
- /**
42395
- * @example
42396
- * 2006-01-02T15:04:05Z
42397
- */
42398
- durationTime?: string;
42399
- /**
42400
- * @example
42401
- * true
42402
- */
42403
- enable?: boolean;
43271
+ export class GetEdgeContainerAppResourceStatusResponseBody extends $dara.Model {
43272
+ regions?: GetEdgeContainerAppResourceStatusResponseBodyRegions[];
42404
43273
  /**
42405
43274
  * @example
42406
- * true
42407
- */
42408
- forever?: boolean;
42409
- /**
42410
- * @example
42411
- * 04F0F334-1335-436C-A1D7-6C044FE73368
43275
+ * 15C66C7B-671A-4297-9187-2C4477247A74
42412
43276
  */
42413
43277
  requestId?: string;
42414
- reserveSet?: GetEdgeContainerAppResourceReserveResponseBodyReserveSet[];
42415
43278
  static names(): { [key: string]: string } {
42416
43279
  return {
42417
- durationTime: 'DurationTime',
42418
- enable: 'Enable',
42419
- forever: 'Forever',
43280
+ regions: 'Regions',
42420
43281
  requestId: 'RequestId',
42421
- reserveSet: 'ReserveSet',
42422
43282
  };
42423
43283
  }
42424
43284
 
42425
43285
  static types(): { [key: string]: any } {
42426
43286
  return {
42427
- durationTime: 'string',
42428
- enable: 'boolean',
42429
- forever: 'boolean',
43287
+ regions: { 'type': 'array', 'itemType': GetEdgeContainerAppResourceStatusResponseBodyRegions },
42430
43288
  requestId: 'string',
42431
- reserveSet: { 'type': 'array', 'itemType': GetEdgeContainerAppResourceReserveResponseBodyReserveSet },
42432
43289
  };
42433
43290
  }
42434
43291
 
42435
43292
  validate() {
42436
- if(Array.isArray(this.reserveSet)) {
42437
- $dara.Model.validateArray(this.reserveSet);
43293
+ if(Array.isArray(this.regions)) {
43294
+ $dara.Model.validateArray(this.regions);
42438
43295
  }
42439
43296
  super.validate();
42440
43297
  }
@@ -42444,10 +43301,10 @@ export class GetEdgeContainerAppResourceReserveResponseBody extends $dara.Model
42444
43301
  }
42445
43302
  }
42446
43303
 
42447
- export class GetEdgeContainerAppResourceReserveResponse extends $dara.Model {
43304
+ export class GetEdgeContainerAppResourceStatusResponse extends $dara.Model {
42448
43305
  headers?: { [key: string]: string };
42449
43306
  statusCode?: number;
42450
- body?: GetEdgeContainerAppResourceReserveResponseBody;
43307
+ body?: GetEdgeContainerAppResourceStatusResponseBody;
42451
43308
  static names(): { [key: string]: string } {
42452
43309
  return {
42453
43310
  headers: 'headers',
@@ -42460,7 +43317,7 @@ export class GetEdgeContainerAppResourceReserveResponse extends $dara.Model {
42460
43317
  return {
42461
43318
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
42462
43319
  statusCode: 'number',
42463
- body: GetEdgeContainerAppResourceReserveResponseBody,
43320
+ body: GetEdgeContainerAppResourceStatusResponseBody,
42464
43321
  };
42465
43322
  }
42466
43323
 
@@ -46829,6 +47686,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
46829
47686
  * on
46830
47687
  */
46831
47688
  originMtls?: string;
47689
+ originReadTimeout?: string;
46832
47690
  /**
46833
47691
  * @remarks
46834
47692
  * Protocol used for the origin request. Value range:
@@ -46933,6 +47791,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
46933
47791
  originHttpPort: 'OriginHttpPort',
46934
47792
  originHttpsPort: 'OriginHttpsPort',
46935
47793
  originMtls: 'OriginMtls',
47794
+ originReadTimeout: 'OriginReadTimeout',
46936
47795
  originScheme: 'OriginScheme',
46937
47796
  originSni: 'OriginSni',
46938
47797
  originVerify: 'OriginVerify',
@@ -46956,6 +47815,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
46956
47815
  originHttpPort: 'string',
46957
47816
  originHttpsPort: 'string',
46958
47817
  originMtls: 'string',
47818
+ originReadTimeout: 'string',
46959
47819
  originScheme: 'string',
46960
47820
  originSni: 'string',
46961
47821
  originVerify: 'string',
@@ -50919,7 +51779,7 @@ export class GetWafQuotaResponse extends $dara.Model {
50919
51779
  export class GetWafRuleRequest extends $dara.Model {
50920
51780
  /**
50921
51781
  * @remarks
50922
- * The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) interface.
51782
+ * The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
50923
51783
  *
50924
51784
  * This parameter is required.
50925
51785
  *
@@ -50968,7 +51828,7 @@ export class GetWafRuleResponseBody extends $dara.Model {
50968
51828
  config?: WafRuleConfig;
50969
51829
  /**
50970
51830
  * @remarks
50971
- * The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) interface.
51831
+ * The ID of the WAF rule, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
50972
51832
  *
50973
51833
  * @example
50974
51834
  * 2000001
@@ -51102,7 +51962,7 @@ export class GetWafRuleResponse extends $dara.Model {
51102
51962
  export class GetWafRulesetRequest extends $dara.Model {
51103
51963
  /**
51104
51964
  * @remarks
51105
- * The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2850233.html) interface.
51965
+ * The ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
51106
51966
  *
51107
51967
  * @example
51108
51968
  * 10000001
@@ -58601,7 +59461,7 @@ export class ListSitesRequest extends $dara.Model {
58601
59461
  * @remarks
58602
59462
  * Sorting field. By default, it sorts by creation time, supporting the following options:
58603
59463
  * - gmtCreate: website creation time
58604
- * - visitTimewebsite visit time
59464
+ * - visitTime: website visit time
58605
59465
  *
58606
59466
  * @example
58607
59467
  * visitTime
@@ -58760,7 +59620,7 @@ export class ListSitesShrinkRequest extends $dara.Model {
58760
59620
  * @remarks
58761
59621
  * Sorting field. By default, it sorts by creation time, supporting the following options:
58762
59622
  * - gmtCreate: website creation time
58763
- * - visitTimewebsite visit time
59623
+ * - visitTime: website visit time
58764
59624
  *
58765
59625
  * @example
58766
59626
  * visitTime
@@ -69553,6 +70413,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
69553
70413
  * on
69554
70414
  */
69555
70415
  originMtls?: string;
70416
+ originReadTimeout?: string;
69556
70417
  /**
69557
70418
  * @remarks
69558
70419
  * Protocol used for the origin request. Valid values:
@@ -69641,6 +70502,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
69641
70502
  originHttpPort: 'OriginHttpPort',
69642
70503
  originHttpsPort: 'OriginHttpsPort',
69643
70504
  originMtls: 'OriginMtls',
70505
+ originReadTimeout: 'OriginReadTimeout',
69644
70506
  originScheme: 'OriginScheme',
69645
70507
  originSni: 'OriginSni',
69646
70508
  originVerify: 'OriginVerify',
@@ -69662,6 +70524,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
69662
70524
  originHttpPort: 'string',
69663
70525
  originHttpsPort: 'string',
69664
70526
  originMtls: 'string',
70527
+ originReadTimeout: 'string',
69665
70528
  originScheme: 'string',
69666
70529
  originSni: 'string',
69667
70530
  originVerify: 'string',
@@ -72501,7 +73364,7 @@ export class UpdateWafRuleRequest extends $dara.Model {
72501
73364
  config?: WafRuleConfig;
72502
73365
  /**
72503
73366
  * @remarks
72504
- * WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) interface.
73367
+ * WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
72505
73368
  *
72506
73369
  * This parameter is required.
72507
73370
  *
@@ -72585,7 +73448,7 @@ export class UpdateWafRuleShrinkRequest extends $dara.Model {
72585
73448
  configShrink?: string;
72586
73449
  /**
72587
73450
  * @remarks
72588
- * WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) interface.
73451
+ * WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
72589
73452
  *
72590
73453
  * This parameter is required.
72591
73454
  *
@@ -72661,7 +73524,7 @@ export class UpdateWafRuleShrinkRequest extends $dara.Model {
72661
73524
  export class UpdateWafRuleResponseBody extends $dara.Model {
72662
73525
  /**
72663
73526
  * @remarks
72664
- * WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2850237.html) interface.
73527
+ * WAF rule ID, which can be obtained by calling the [ListWafRules](https://help.aliyun.com/document_detail/2878257.html) interface.
72665
73528
  *
72666
73529
  * @example
72667
73530
  * 20000001
@@ -77826,6 +78689,10 @@ export default class Client extends OpenApi {
77826
78689
  query["OriginMtls"] = request.originMtls;
77827
78690
  }
77828
78691
 
78692
+ if (!$dara.isNull(request.originReadTimeout)) {
78693
+ query["OriginReadTimeout"] = request.originReadTimeout;
78694
+ }
78695
+
77829
78696
  if (!$dara.isNull(request.originScheme)) {
77830
78697
  query["OriginScheme"] = request.originScheme;
77831
78698
  }
@@ -82133,6 +83000,148 @@ export default class Client extends OpenApi {
82133
83000
  return await this.describeRatePlanInstanceStatusWithOptions(request, runtime);
82134
83001
  }
82135
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
+
82136
83145
  /**
82137
83146
  * Disables a scenario-specific policy.
82138
83147
  *
@@ -82980,6 +83989,53 @@ export default class Client extends OpenApi {
82980
83989
  return await this.getEdgeContainerAppResourceReserveWithOptions(request, runtime);
82981
83990
  }
82982
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
+
82983
84039
  /**
82984
84040
  * Queries the status information about a containerized application, including the deployment, release, and rollback of the application.
82985
84041
  *
@@ -91183,6 +92239,10 @@ export default class Client extends OpenApi {
91183
92239
  query["OriginMtls"] = request.originMtls;
91184
92240
  }
91185
92241
 
92242
+ if (!$dara.isNull(request.originReadTimeout)) {
92243
+ query["OriginReadTimeout"] = request.originReadTimeout;
92244
+ }
92245
+
91186
92246
  if (!$dara.isNull(request.originScheme)) {
91187
92247
  query["OriginScheme"] = request.originScheme;
91188
92248
  }