tencentcloud-sdk-python-intl-en 3.0.1227__py2.py3-none-any.whl → 3.0.1229__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +121 -2
- tencentcloud/ccc/v20200210/errorcodes.py +12 -3
- tencentcloud/ccc/v20200210/models.py +1155 -163
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +1 -1
- tencentcloud/iotcloud/v20210408/models.py +20 -12
- tencentcloud/live/v20180801/live_client.py +23 -0
- tencentcloud/live/v20180801/models.py +109 -0
- tencentcloud/mdl/v20200326/models.py +417 -2
- tencentcloud/teo/v20220901/models.py +68 -68
- tencentcloud/vod/v20240718/__init__.py +0 -0
- tencentcloud/vod/v20240718/errorcodes.py +48 -0
- tencentcloud/vod/v20240718/models.py +2101 -0
- tencentcloud/vod/v20240718/vod_client.py +194 -0
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/RECORD +18 -14
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/top_level.txt +0 -0
|
@@ -14950,9 +14950,9 @@ class DescribeDDoSAttackDataRequest(AbstractModel):
|
|
|
14950
14950
|
|
|
14951
14951
|
def __init__(self):
|
|
14952
14952
|
r"""
|
|
14953
|
-
:param _StartTime:
|
|
14953
|
+
:param _StartTime: The start time.
|
|
14954
14954
|
:type StartTime: str
|
|
14955
|
-
:param _EndTime:
|
|
14955
|
+
:param _EndTime: The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
14956
14956
|
:type EndTime: str
|
|
14957
14957
|
:param _MetricNames: Statistical metrics.
|
|
14958
14958
|
<li>`ddos_attackMaxBandwidth`: Peak attack bandwidth;</li>
|
|
@@ -14960,15 +14960,15 @@ class DescribeDDoSAttackDataRequest(AbstractModel):
|
|
|
14960
14960
|
<li>`ddos_attackBandwidth`: Time-series data of attack bandwidth;</li>
|
|
14961
14961
|
<li>`ddos_attackPackageRate`: Time-series data of attack packet rate.</li>
|
|
14962
14962
|
:type MetricNames: list of str
|
|
14963
|
-
:param _ZoneIds:
|
|
14963
|
+
:param _ZoneIds: Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
14964
14964
|
:type ZoneIds: list of str
|
|
14965
14965
|
:param _PolicyIds: IDs of DDoS policies to be queried. All policies will be selected if this field is not specified.
|
|
14966
14966
|
:type PolicyIds: list of int
|
|
14967
|
-
:param _Interval:
|
|
14968
|
-
<li
|
|
14969
|
-
<li
|
|
14970
|
-
<li
|
|
14971
|
-
<li
|
|
14967
|
+
:param _Interval: Query period granularity. Valid values:
|
|
14968
|
+
<li>min: 1 minute;</li>
|
|
14969
|
+
<li>5min: 5 minutes;</li>
|
|
14970
|
+
<li>hour: 1 hour;</li>
|
|
14971
|
+
<li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than 2 hours, no more than 2 days, no more than 7 days, and over 7 days.
|
|
14972
14972
|
:type Interval: str
|
|
14973
14973
|
:param _Area: Geolocation scope. Values:
|
|
14974
14974
|
<li>`overseas`: Regions outside the Chinese mainland</li>
|
|
@@ -14986,7 +14986,7 @@ class DescribeDDoSAttackDataRequest(AbstractModel):
|
|
|
14986
14986
|
|
|
14987
14987
|
@property
|
|
14988
14988
|
def StartTime(self):
|
|
14989
|
-
"""
|
|
14989
|
+
"""The start time.
|
|
14990
14990
|
:rtype: str
|
|
14991
14991
|
"""
|
|
14992
14992
|
return self._StartTime
|
|
@@ -14997,7 +14997,7 @@ class DescribeDDoSAttackDataRequest(AbstractModel):
|
|
|
14997
14997
|
|
|
14998
14998
|
@property
|
|
14999
14999
|
def EndTime(self):
|
|
15000
|
-
"""
|
|
15000
|
+
"""The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
15001
15001
|
:rtype: str
|
|
15002
15002
|
"""
|
|
15003
15003
|
return self._EndTime
|
|
@@ -15023,7 +15023,7 @@ class DescribeDDoSAttackDataRequest(AbstractModel):
|
|
|
15023
15023
|
|
|
15024
15024
|
@property
|
|
15025
15025
|
def ZoneIds(self):
|
|
15026
|
-
"""
|
|
15026
|
+
"""Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
15027
15027
|
:rtype: list of str
|
|
15028
15028
|
"""
|
|
15029
15029
|
return self._ZoneIds
|
|
@@ -15045,11 +15045,11 @@ class DescribeDDoSAttackDataRequest(AbstractModel):
|
|
|
15045
15045
|
|
|
15046
15046
|
@property
|
|
15047
15047
|
def Interval(self):
|
|
15048
|
-
"""
|
|
15049
|
-
<li
|
|
15050
|
-
<li
|
|
15051
|
-
<li
|
|
15052
|
-
<li
|
|
15048
|
+
"""Query period granularity. Valid values:
|
|
15049
|
+
<li>min: 1 minute;</li>
|
|
15050
|
+
<li>5min: 5 minutes;</li>
|
|
15051
|
+
<li>hour: 1 hour;</li>
|
|
15052
|
+
<li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than 2 hours, no more than 2 days, no more than 7 days, and over 7 days.
|
|
15053
15053
|
:rtype: str
|
|
15054
15054
|
"""
|
|
15055
15055
|
return self._Interval
|
|
@@ -15163,13 +15163,13 @@ class DescribeDDoSAttackEventRequest(AbstractModel):
|
|
|
15163
15163
|
|
|
15164
15164
|
def __init__(self):
|
|
15165
15165
|
r"""
|
|
15166
|
-
:param _StartTime:
|
|
15166
|
+
:param _StartTime: The start time.
|
|
15167
15167
|
:type StartTime: str
|
|
15168
|
-
:param _EndTime:
|
|
15168
|
+
:param _EndTime: The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
15169
15169
|
:type EndTime: str
|
|
15170
15170
|
:param _PolicyIds: List of DDoS policy IDs. All policies are selected if this field is not specified.
|
|
15171
15171
|
:type PolicyIds: list of int
|
|
15172
|
-
:param _ZoneIds:
|
|
15172
|
+
:param _ZoneIds: Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
15173
15173
|
:type ZoneIds: list of str
|
|
15174
15174
|
:param _Limit: Limit on paginated queries. Default value: 20. Maximum value: 1000.
|
|
15175
15175
|
:type Limit: int
|
|
@@ -15204,7 +15204,7 @@ class DescribeDDoSAttackEventRequest(AbstractModel):
|
|
|
15204
15204
|
|
|
15205
15205
|
@property
|
|
15206
15206
|
def StartTime(self):
|
|
15207
|
-
"""
|
|
15207
|
+
"""The start time.
|
|
15208
15208
|
:rtype: str
|
|
15209
15209
|
"""
|
|
15210
15210
|
return self._StartTime
|
|
@@ -15215,7 +15215,7 @@ class DescribeDDoSAttackEventRequest(AbstractModel):
|
|
|
15215
15215
|
|
|
15216
15216
|
@property
|
|
15217
15217
|
def EndTime(self):
|
|
15218
|
-
"""
|
|
15218
|
+
"""The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
15219
15219
|
:rtype: str
|
|
15220
15220
|
"""
|
|
15221
15221
|
return self._EndTime
|
|
@@ -15237,7 +15237,7 @@ class DescribeDDoSAttackEventRequest(AbstractModel):
|
|
|
15237
15237
|
|
|
15238
15238
|
@property
|
|
15239
15239
|
def ZoneIds(self):
|
|
15240
|
-
"""
|
|
15240
|
+
"""Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
15241
15241
|
:rtype: list of str
|
|
15242
15242
|
"""
|
|
15243
15243
|
return self._ZoneIds
|
|
@@ -15415,7 +15415,7 @@ class DescribeDDoSAttackTopDataRequest(AbstractModel):
|
|
|
15415
15415
|
r"""
|
|
15416
15416
|
:param _StartTime: The start time.
|
|
15417
15417
|
:type StartTime: str
|
|
15418
|
-
:param _EndTime: The end time.
|
|
15418
|
+
:param _EndTime: The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
15419
15419
|
:type EndTime: str
|
|
15420
15420
|
:param _MetricName: The statistical metric. Values:
|
|
15421
15421
|
<li>`ddos_attackFlux_protocol`: Rank protocols by the attack traffic.</li>
|
|
@@ -15425,7 +15425,7 @@ class DescribeDDoSAttackTopDataRequest(AbstractModel):
|
|
|
15425
15425
|
<li>`ddos_attackFlux_sip`: Rank attacker IPs by the number of attacks.</li>
|
|
15426
15426
|
<li>`ddos_attackFlux_sregion`: Rank attacker regions by the number of attacks.</li>
|
|
15427
15427
|
:type MetricName: str
|
|
15428
|
-
:param _ZoneIds:
|
|
15428
|
+
:param _ZoneIds: Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
15429
15429
|
:type ZoneIds: list of str
|
|
15430
15430
|
:param _PolicyIds: The list of DDoS policy IDs to be specified. All policies will be selected if this field is not specified.
|
|
15431
15431
|
:type PolicyIds: list of int
|
|
@@ -15445,7 +15445,7 @@ class DescribeDDoSAttackTopDataRequest(AbstractModel):
|
|
|
15445
15445
|
:type Limit: int
|
|
15446
15446
|
:param _Area: Data storage region. Values:
|
|
15447
15447
|
<li>`overseas`: Global (outside the Chinese mainland);</li>
|
|
15448
|
-
<li>`mainland`: Chinese mainland.</li>If this field is not specified, the data storage region will be determined based on the user
|
|
15448
|
+
<li>`mainland`: Chinese mainland.</li>If this field is not specified, the data storage region will be determined based on the user's location.
|
|
15449
15449
|
:type Area: str
|
|
15450
15450
|
"""
|
|
15451
15451
|
self._StartTime = None
|
|
@@ -15472,7 +15472,7 @@ class DescribeDDoSAttackTopDataRequest(AbstractModel):
|
|
|
15472
15472
|
|
|
15473
15473
|
@property
|
|
15474
15474
|
def EndTime(self):
|
|
15475
|
-
"""The end time.
|
|
15475
|
+
"""The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
15476
15476
|
:rtype: str
|
|
15477
15477
|
"""
|
|
15478
15478
|
return self._EndTime
|
|
@@ -15500,7 +15500,7 @@ class DescribeDDoSAttackTopDataRequest(AbstractModel):
|
|
|
15500
15500
|
|
|
15501
15501
|
@property
|
|
15502
15502
|
def ZoneIds(self):
|
|
15503
|
-
"""
|
|
15503
|
+
"""Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
15504
15504
|
:rtype: list of str
|
|
15505
15505
|
"""
|
|
15506
15506
|
return self._ZoneIds
|
|
@@ -15574,7 +15574,7 @@ class DescribeDDoSAttackTopDataRequest(AbstractModel):
|
|
|
15574
15574
|
def Area(self):
|
|
15575
15575
|
"""Data storage region. Values:
|
|
15576
15576
|
<li>`overseas`: Global (outside the Chinese mainland);</li>
|
|
15577
|
-
<li>`mainland`: Chinese mainland.</li>If this field is not specified, the data storage region will be determined based on the user
|
|
15577
|
+
<li>`mainland`: Chinese mainland.</li>If this field is not specified, the data storage region will be determined based on the user's location.
|
|
15578
15578
|
:rtype: str
|
|
15579
15579
|
"""
|
|
15580
15580
|
return self._Area
|
|
@@ -19557,15 +19557,17 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19557
19557
|
r"""
|
|
19558
19558
|
:param _StartTime: The start time.
|
|
19559
19559
|
:type StartTime: str
|
|
19560
|
-
:param _EndTime: The end time.
|
|
19560
|
+
:param _EndTime: The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
19561
19561
|
:type EndTime: str
|
|
19562
|
-
:param _MetricNames:
|
|
19563
|
-
<
|
|
19564
|
-
<
|
|
19565
|
-
<
|
|
19566
|
-
<
|
|
19562
|
+
:param _MetricNames: Metric list. Valid values:
|
|
19563
|
+
<Li>l4Flow_connections: number of concurrent connections;</li>
|
|
19564
|
+
<Li>l4Flow_flux: total traffic;</li>
|
|
19565
|
+
<Li>l4Flow_inFlux: inbound traffic;</li>
|
|
19566
|
+
<Li>l4Flow_outFlux: outbound traffic.</li>
|
|
19567
|
+
<Li>l4Flow_inBandwidth: inbound peak bandwidth.</li>
|
|
19568
|
+
<Li>l4Flow_outBandwidth: outbound peak bandwidth.</li>
|
|
19567
19569
|
:type MetricNames: list of str
|
|
19568
|
-
:param _ZoneIds:
|
|
19570
|
+
:param _ZoneIds: Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
19569
19571
|
:type ZoneIds: list of str
|
|
19570
19572
|
:param _ProxyIds: List of L4 proxy IDs. All L4 proxies will be selected if this field is not specified.
|
|
19571
19573
|
:type ProxyIds: list of str
|
|
@@ -19573,16 +19575,14 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19573
19575
|
<li>`min`: 1 minute;</li>
|
|
19574
19576
|
<li>`5min`: 5 minutes;</li>
|
|
19575
19577
|
<li>`hour`: 1 hour;</li>
|
|
19576
|
-
<li>`day`: 1 day.</li>If this field is not specified, the granularity will be determined based on the query period. <br>Period
|
|
19578
|
+
<li>`day`: 1 day.</li>If this field is not specified, the granularity will be determined based on the query period. <br>Period <= 1 hour: `min`; <br>1 hour < period <= 2 days: `5min`; <br>2 days < period <= 7 days: `hour`; <br>Period > 7 days: `day`.
|
|
19579
|
+
|
|
19577
19580
|
:type Interval: str
|
|
19578
|
-
:param _Filters: Filter criteria. The detailed
|
|
19579
|
-
<li>ruleId:
|
|
19580
|
-
<li>proxyId:
|
|
19581
|
+
:param _Filters: Filter criteria. The detailed key values of filter criteria are as follows:
|
|
19582
|
+
<li>ruleId: filter by forwarding rule ID.</li>
|
|
19583
|
+
<li>proxyId: filter by L4 proxy instance ID.</li>
|
|
19581
19584
|
:type Filters: list of QueryCondition
|
|
19582
|
-
:param _Area:
|
|
19583
|
-
<li>`overseas`: Regions outside the Chinese mainland</li>
|
|
19584
|
-
<li>`mainland`: Chinese mainland</li>
|
|
19585
|
-
<li>`global`: Global</li>If this field is not specified, the default value `global` is used.
|
|
19585
|
+
:param _Area: Data ownership region. This parameter is deprecated. Please filter data by client region in Filters.country.
|
|
19586
19586
|
:type Area: str
|
|
19587
19587
|
"""
|
|
19588
19588
|
self._StartTime = None
|
|
@@ -19607,7 +19607,7 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19607
19607
|
|
|
19608
19608
|
@property
|
|
19609
19609
|
def EndTime(self):
|
|
19610
|
-
"""The end time.
|
|
19610
|
+
"""The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
19611
19611
|
:rtype: str
|
|
19612
19612
|
"""
|
|
19613
19613
|
return self._EndTime
|
|
@@ -19618,11 +19618,13 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19618
19618
|
|
|
19619
19619
|
@property
|
|
19620
19620
|
def MetricNames(self):
|
|
19621
|
-
"""
|
|
19622
|
-
<
|
|
19623
|
-
<
|
|
19624
|
-
<
|
|
19625
|
-
<
|
|
19621
|
+
"""Metric list. Valid values:
|
|
19622
|
+
<Li>l4Flow_connections: number of concurrent connections;</li>
|
|
19623
|
+
<Li>l4Flow_flux: total traffic;</li>
|
|
19624
|
+
<Li>l4Flow_inFlux: inbound traffic;</li>
|
|
19625
|
+
<Li>l4Flow_outFlux: outbound traffic.</li>
|
|
19626
|
+
<Li>l4Flow_inBandwidth: inbound peak bandwidth.</li>
|
|
19627
|
+
<Li>l4Flow_outBandwidth: outbound peak bandwidth.</li>
|
|
19626
19628
|
:rtype: list of str
|
|
19627
19629
|
"""
|
|
19628
19630
|
return self._MetricNames
|
|
@@ -19633,7 +19635,7 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19633
19635
|
|
|
19634
19636
|
@property
|
|
19635
19637
|
def ZoneIds(self):
|
|
19636
|
-
"""
|
|
19638
|
+
"""Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
19637
19639
|
:rtype: list of str
|
|
19638
19640
|
"""
|
|
19639
19641
|
return self._ZoneIds
|
|
@@ -19659,7 +19661,8 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19659
19661
|
<li>`min`: 1 minute;</li>
|
|
19660
19662
|
<li>`5min`: 5 minutes;</li>
|
|
19661
19663
|
<li>`hour`: 1 hour;</li>
|
|
19662
|
-
<li>`day`: 1 day.</li>If this field is not specified, the granularity will be determined based on the query period. <br>Period
|
|
19664
|
+
<li>`day`: 1 day.</li>If this field is not specified, the granularity will be determined based on the query period. <br>Period <= 1 hour: `min`; <br>1 hour < period <= 2 days: `5min`; <br>2 days < period <= 7 days: `hour`; <br>Period > 7 days: `day`.
|
|
19665
|
+
|
|
19663
19666
|
:rtype: str
|
|
19664
19667
|
"""
|
|
19665
19668
|
return self._Interval
|
|
@@ -19670,9 +19673,9 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19670
19673
|
|
|
19671
19674
|
@property
|
|
19672
19675
|
def Filters(self):
|
|
19673
|
-
"""Filter criteria. The detailed
|
|
19674
|
-
<li>ruleId:
|
|
19675
|
-
<li>proxyId:
|
|
19676
|
+
"""Filter criteria. The detailed key values of filter criteria are as follows:
|
|
19677
|
+
<li>ruleId: filter by forwarding rule ID.</li>
|
|
19678
|
+
<li>proxyId: filter by L4 proxy instance ID.</li>
|
|
19676
19679
|
:rtype: list of QueryCondition
|
|
19677
19680
|
"""
|
|
19678
19681
|
return self._Filters
|
|
@@ -19683,10 +19686,7 @@ class DescribeTimingL4DataRequest(AbstractModel):
|
|
|
19683
19686
|
|
|
19684
19687
|
@property
|
|
19685
19688
|
def Area(self):
|
|
19686
|
-
"""
|
|
19687
|
-
<li>`overseas`: Regions outside the Chinese mainland</li>
|
|
19688
|
-
<li>`mainland`: Chinese mainland</li>
|
|
19689
|
-
<li>`global`: Global</li>If this field is not specified, the default value `global` is used.
|
|
19689
|
+
"""Data ownership region. This parameter is deprecated. Please filter data by client region in Filters.country.
|
|
19690
19690
|
:rtype: str
|
|
19691
19691
|
"""
|
|
19692
19692
|
return self._Area
|
|
@@ -19794,7 +19794,7 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
|
|
|
19794
19794
|
r"""
|
|
19795
19795
|
:param _StartTime: The start time.
|
|
19796
19796
|
:type StartTime: str
|
|
19797
|
-
:param _EndTime: The end time.
|
|
19797
|
+
:param _EndTime: The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
19798
19798
|
:type EndTime: str
|
|
19799
19799
|
:param _MetricNames: Metric list. Valid values:.
|
|
19800
19800
|
<Li>l7Flow_outFlux: L7 EdgeOne response traffic. Unit: byte;</li>
|
|
@@ -19807,13 +19807,13 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
|
|
|
19807
19807
|
<Li>l7Flow_avgResponseTime: Average L7 edge response time. Unit: ms (milliseconds);</li>
|
|
19808
19808
|
<Li>l7Flow_avgFirstByteResponseTime: Average L7 edge first byte response time. Unit: ms.</li>
|
|
19809
19809
|
:type MetricNames: list of str
|
|
19810
|
-
:param _ZoneIds: Zone ID set. This parameter is required.
|
|
19810
|
+
:param _ZoneIds: Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
19811
19811
|
:type ZoneIds: list of str
|
|
19812
19812
|
:param _Interval: Query period granularity. Valid values:
|
|
19813
19813
|
<li>min: 1 minute;</li>
|
|
19814
19814
|
<li>5min: 5 minutes;</li>
|
|
19815
19815
|
<li>hour: 1 hour;</li>
|
|
19816
|
-
<li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than
|
|
19816
|
+
<li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than 1 hour, no more than 2 days, no more than 7 days, and over 7 days.
|
|
19817
19817
|
:type Interval: str
|
|
19818
19818
|
:param _Filters: Filter criteria. The detailed key values of filter criteria are as follows:
|
|
19819
19819
|
<li>country: filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
|
|
@@ -19860,7 +19860,7 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
|
|
|
19860
19860
|
|
|
19861
19861
|
@property
|
|
19862
19862
|
def EndTime(self):
|
|
19863
|
-
"""The end time.
|
|
19863
|
+
"""The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
19864
19864
|
:rtype: str
|
|
19865
19865
|
"""
|
|
19866
19866
|
return self._EndTime
|
|
@@ -19891,7 +19891,7 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
|
|
|
19891
19891
|
|
|
19892
19892
|
@property
|
|
19893
19893
|
def ZoneIds(self):
|
|
19894
|
-
"""Zone ID set. This parameter is required.
|
|
19894
|
+
"""Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
19895
19895
|
:rtype: list of str
|
|
19896
19896
|
"""
|
|
19897
19897
|
return self._ZoneIds
|
|
@@ -19906,7 +19906,7 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
|
|
|
19906
19906
|
<li>min: 1 minute;</li>
|
|
19907
19907
|
<li>5min: 5 minutes;</li>
|
|
19908
19908
|
<li>hour: 1 hour;</li>
|
|
19909
|
-
<li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than
|
|
19909
|
+
<li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than 1 hour, no more than 2 days, no more than 7 days, and over 7 days.
|
|
19910
19910
|
:rtype: str
|
|
19911
19911
|
"""
|
|
19912
19912
|
return self._Interval
|
|
@@ -20284,7 +20284,7 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
|
|
|
20284
20284
|
r"""
|
|
20285
20285
|
:param _StartTime: The start time.
|
|
20286
20286
|
:type StartTime: str
|
|
20287
|
-
:param _EndTime: The end time.
|
|
20287
|
+
:param _EndTime: The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
20288
20288
|
:type EndTime: str
|
|
20289
20289
|
:param _MetricName: Queried metric. Valid values:
|
|
20290
20290
|
<li> l7Flow_outFlux_country: L7 EdgeOne response traffic aggregated by the country/region dimension;</li>
|
|
@@ -20312,7 +20312,7 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
|
|
|
20312
20312
|
<li> l7Flow_request_ua_os: L7 request count aggregated by the operating system type dimension.</li>
|
|
20313
20313
|
<li> l7Flow_request_ua: L7 request count aggregated by the User-Agent dimension.</li>
|
|
20314
20314
|
:type MetricName: str
|
|
20315
|
-
:param _ZoneIds:
|
|
20315
|
+
:param _ZoneIds: Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
20316
20316
|
:type ZoneIds: list of str
|
|
20317
20317
|
:param _Limit: Indicates the top N data to be queried. The maximum value is 1000. If this parameter is not input, the default value is 10, indicating querying the top 10 data.
|
|
20318
20318
|
:type Limit: int
|
|
@@ -20368,7 +20368,7 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
|
|
|
20368
20368
|
|
|
20369
20369
|
@property
|
|
20370
20370
|
def EndTime(self):
|
|
20371
|
-
"""The end time.
|
|
20371
|
+
"""The end time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.
|
|
20372
20372
|
:rtype: str
|
|
20373
20373
|
"""
|
|
20374
20374
|
return self._EndTime
|
|
@@ -20414,7 +20414,7 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
|
|
|
20414
20414
|
|
|
20415
20415
|
@property
|
|
20416
20416
|
def ZoneIds(self):
|
|
20417
|
-
"""
|
|
20417
|
+
"""Zone ID set. This parameter is required. A maximum of 100 zone IDs can be passed in. If you need to query data for all zones under the Tencent Cloud main account, please use "*" instead. To query account-level data, you need to have full resource permissions for all zones of this interface.
|
|
20418
20418
|
:rtype: list of str
|
|
20419
20419
|
"""
|
|
20420
20420
|
return self._ZoneIds
|
|
File without changes
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# -*- coding: utf8 -*-
|
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# The application ID does not match the bucket ID.
|
|
18
|
+
FAILEDOPERATION_BUCKETIDNOTMATCH = 'FailedOperation.BucketIdNotMatch'
|
|
19
|
+
|
|
20
|
+
# The incremental migration strategy for the bucket is currently being deployed.
|
|
21
|
+
FAILEDOPERATION_BUCKETINCREMENTALMIGRATIONSTRATEGYDEPLOYING = 'FailedOperation.BucketIncrementalMigrationStrategyDeploying'
|
|
22
|
+
|
|
23
|
+
# The number of incremental migration strategies for the bucket is over the limit.
|
|
24
|
+
FAILEDOPERATION_INCREMENTALMIGRATIONSTRATEGYOVERLIMIT = 'FailedOperation.IncrementalMigrationStrategyOverLimit'
|
|
25
|
+
|
|
26
|
+
# The storage capacity in this region has exceeded the limit.
|
|
27
|
+
FAILEDOPERATION_STORAGEREGIONBUCKETOVERLIMIT = 'FailedOperation.StorageRegionBucketOverLimit'
|
|
28
|
+
|
|
29
|
+
# Internal error.
|
|
30
|
+
INTERNALERROR = 'InternalError'
|
|
31
|
+
|
|
32
|
+
# Invalid filter.
|
|
33
|
+
INVALIDFILTER = 'InvalidFilter'
|
|
34
|
+
|
|
35
|
+
# Invalid parameter.
|
|
36
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
|
37
|
+
|
|
38
|
+
# Incorrect parameter value.
|
|
39
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
40
|
+
|
|
41
|
+
# Unsupported storage region.
|
|
42
|
+
INVALIDPARAMETERVALUE_UNSUPPORTEDSTORAGEREGION = 'InvalidParameterValue.UnsupportedStorageRegion'
|
|
43
|
+
|
|
44
|
+
# The incremental migration strategy was not found.
|
|
45
|
+
RESOURCENOTFOUND_INCREMENTALMIGRATIONSTRATEGYNOTFOUND = 'ResourceNotFound.IncrementalMigrationStrategyNotFound'
|
|
46
|
+
|
|
47
|
+
# Application is unauthorized.
|
|
48
|
+
UNAUTHORIZEDOPERATION_SUBAPP = 'UnauthorizedOperation.SubApp'
|