alibabacloud-cloudfw20171207 3.6.0__tar.gz → 3.6.1__tar.gz
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 alibabacloud-cloudfw20171207 might be problematic. Click here for more details.
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/ChangeLog.md +6 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/PKG-INFO +1 -1
- alibabacloud_cloudfw20171207-3.6.1/alibabacloud_cloudfw20171207/__init__.py +1 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/alibabacloud_cloudfw20171207/models.py +12 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/alibabacloud_cloudfw20171207.egg-info/PKG-INFO +1 -1
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/setup.py +1 -1
- alibabacloud_cloudfw20171207-3.6.0/alibabacloud_cloudfw20171207/__init__.py +0 -1
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/LICENSE +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/MANIFEST.in +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/README-CN.md +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/README.md +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/alibabacloud_cloudfw20171207/client.py +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/alibabacloud_cloudfw20171207.egg-info/SOURCES.txt +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/alibabacloud_cloudfw20171207.egg-info/dependency_links.txt +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/alibabacloud_cloudfw20171207.egg-info/requires.txt +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/alibabacloud_cloudfw20171207.egg-info/top_level.txt +0 -0
- {alibabacloud_cloudfw20171207-3.6.0 → alibabacloud_cloudfw20171207-3.6.1}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '3.6.1'
|
|
@@ -8426,12 +8426,14 @@ class DescribeInternetTrafficTrendResponseBody(TeaModel):
|
|
|
8426
8426
|
avg_total_bps: int = None,
|
|
8427
8427
|
data_list: List[DescribeInternetTrafficTrendResponseBodyDataList] = None,
|
|
8428
8428
|
max_bandwidth_time: int = None,
|
|
8429
|
+
max_day_exceed_bytes: int = None,
|
|
8429
8430
|
max_in_bps: int = None,
|
|
8430
8431
|
max_out_bps: int = None,
|
|
8431
8432
|
max_session: int = None,
|
|
8432
8433
|
max_total_bps: int = None,
|
|
8433
8434
|
request_id: str = None,
|
|
8434
8435
|
total_bytes: int = None,
|
|
8436
|
+
total_exceed_bytes: int = None,
|
|
8435
8437
|
total_in_bytes: int = None,
|
|
8436
8438
|
total_out_bytes: int = None,
|
|
8437
8439
|
total_session: int = None,
|
|
@@ -8448,6 +8450,7 @@ class DescribeInternetTrafficTrendResponseBody(TeaModel):
|
|
|
8448
8450
|
self.data_list = data_list
|
|
8449
8451
|
# The timestamp generated when the bandwidth reaches the peak value. The value is a UNIX timestamp. Unit: seconds.
|
|
8450
8452
|
self.max_bandwidth_time = max_bandwidth_time
|
|
8453
|
+
self.max_day_exceed_bytes = max_day_exceed_bytes
|
|
8451
8454
|
# The maximum inbound network throughput, which indicates the maximum number of bits that are sent inbound per second. Unit: bit/s.
|
|
8452
8455
|
self.max_in_bps = max_in_bps
|
|
8453
8456
|
# The maximum outbound network throughput, which indicates the maximum number of bits that are sent outbound per second. Unit: bit/s.
|
|
@@ -8460,6 +8463,7 @@ class DescribeInternetTrafficTrendResponseBody(TeaModel):
|
|
|
8460
8463
|
self.request_id = request_id
|
|
8461
8464
|
# The total inbound and outbound network throughput, which indicates the total number of bytes that are sent inbound and outbound. Unit: bytes.
|
|
8462
8465
|
self.total_bytes = total_bytes
|
|
8466
|
+
self.total_exceed_bytes = total_exceed_bytes
|
|
8463
8467
|
# The inbound network throughput, which indicates the total number of bytes that are sent inbound. Unit: bytes.
|
|
8464
8468
|
self.total_in_bytes = total_in_bytes
|
|
8465
8469
|
# The outbound network throughput, which indicates the total number of bytes that are sent outbound. Unit: bytes.
|
|
@@ -8493,6 +8497,8 @@ class DescribeInternetTrafficTrendResponseBody(TeaModel):
|
|
|
8493
8497
|
result['DataList'].append(k.to_map() if k else None)
|
|
8494
8498
|
if self.max_bandwidth_time is not None:
|
|
8495
8499
|
result['MaxBandwidthTime'] = self.max_bandwidth_time
|
|
8500
|
+
if self.max_day_exceed_bytes is not None:
|
|
8501
|
+
result['MaxDayExceedBytes'] = self.max_day_exceed_bytes
|
|
8496
8502
|
if self.max_in_bps is not None:
|
|
8497
8503
|
result['MaxInBps'] = self.max_in_bps
|
|
8498
8504
|
if self.max_out_bps is not None:
|
|
@@ -8505,6 +8511,8 @@ class DescribeInternetTrafficTrendResponseBody(TeaModel):
|
|
|
8505
8511
|
result['RequestId'] = self.request_id
|
|
8506
8512
|
if self.total_bytes is not None:
|
|
8507
8513
|
result['TotalBytes'] = self.total_bytes
|
|
8514
|
+
if self.total_exceed_bytes is not None:
|
|
8515
|
+
result['TotalExceedBytes'] = self.total_exceed_bytes
|
|
8508
8516
|
if self.total_in_bytes is not None:
|
|
8509
8517
|
result['TotalInBytes'] = self.total_in_bytes
|
|
8510
8518
|
if self.total_out_bytes is not None:
|
|
@@ -8530,6 +8538,8 @@ class DescribeInternetTrafficTrendResponseBody(TeaModel):
|
|
|
8530
8538
|
self.data_list.append(temp_model.from_map(k))
|
|
8531
8539
|
if m.get('MaxBandwidthTime') is not None:
|
|
8532
8540
|
self.max_bandwidth_time = m.get('MaxBandwidthTime')
|
|
8541
|
+
if m.get('MaxDayExceedBytes') is not None:
|
|
8542
|
+
self.max_day_exceed_bytes = m.get('MaxDayExceedBytes')
|
|
8533
8543
|
if m.get('MaxInBps') is not None:
|
|
8534
8544
|
self.max_in_bps = m.get('MaxInBps')
|
|
8535
8545
|
if m.get('MaxOutBps') is not None:
|
|
@@ -8542,6 +8552,8 @@ class DescribeInternetTrafficTrendResponseBody(TeaModel):
|
|
|
8542
8552
|
self.request_id = m.get('RequestId')
|
|
8543
8553
|
if m.get('TotalBytes') is not None:
|
|
8544
8554
|
self.total_bytes = m.get('TotalBytes')
|
|
8555
|
+
if m.get('TotalExceedBytes') is not None:
|
|
8556
|
+
self.total_exceed_bytes = m.get('TotalExceedBytes')
|
|
8545
8557
|
if m.get('TotalInBytes') is not None:
|
|
8546
8558
|
self.total_in_bytes = m.get('TotalInBytes')
|
|
8547
8559
|
if m.get('TotalOutBytes') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '3.6.0'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|