tencentcloud-sdk-python-ga2 3.1.129__tar.gz → 3.1.130__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.
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/setup.py +1 -1
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud/ga2/v20250115/models.py +30 -10
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud_sdk_python_ga2.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ga2-3.1.130/tencentcloud_sdk_python_ga2.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ga2-3.1.129/tencentcloud_sdk_python_ga2.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/README.rst +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud/ga2/__init__.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud/ga2/v20250115/__init__.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud/ga2/v20250115/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud/ga2/v20250115/ga2_client.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud/ga2/v20250115/ga2_client_async.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud_sdk_python_ga2.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud_sdk_python_ga2.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ga2-3.1.129 → tencentcloud_sdk_python_ga2-3.1.130}/tencentcloud_sdk_python_ga2.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ga2
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.130
|
|
4
4
|
Summary: Tencent Cloud Ga2 SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.130
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ga2',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.130,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ga2 SDK for Python',
|
|
@@ -2021,20 +2021,23 @@ class DescribeAccelerateAreasRequest(AbstractModel):
|
|
|
2021
2021
|
|
|
2022
2022
|
def __init__(self):
|
|
2023
2023
|
r"""
|
|
2024
|
-
:param _GlobalAcceleratorId:
|
|
2024
|
+
:param _GlobalAcceleratorId: <p>全球加速实例ID。</p>
|
|
2025
2025
|
:type GlobalAcceleratorId: str
|
|
2026
|
-
:param _Offset:
|
|
2026
|
+
:param _Offset: <p>偏移量。默认为0。</p>
|
|
2027
2027
|
:type Offset: int
|
|
2028
|
-
:param _Limit:
|
|
2028
|
+
:param _Limit: <p>符合条件实例数量。默认为20,最大200。</p>
|
|
2029
2029
|
:type Limit: int
|
|
2030
|
+
:param _Filters: <p>过滤条件。 accelerate-region- String -(过滤条件)终端节点组地域。</p>
|
|
2031
|
+
:type Filters: list of Filter
|
|
2030
2032
|
"""
|
|
2031
2033
|
self._GlobalAcceleratorId = None
|
|
2032
2034
|
self._Offset = None
|
|
2033
2035
|
self._Limit = None
|
|
2036
|
+
self._Filters = None
|
|
2034
2037
|
|
|
2035
2038
|
@property
|
|
2036
2039
|
def GlobalAcceleratorId(self):
|
|
2037
|
-
r"""
|
|
2040
|
+
r"""<p>全球加速实例ID。</p>
|
|
2038
2041
|
:rtype: str
|
|
2039
2042
|
"""
|
|
2040
2043
|
return self._GlobalAcceleratorId
|
|
@@ -2045,7 +2048,7 @@ class DescribeAccelerateAreasRequest(AbstractModel):
|
|
|
2045
2048
|
|
|
2046
2049
|
@property
|
|
2047
2050
|
def Offset(self):
|
|
2048
|
-
r"""
|
|
2051
|
+
r"""<p>偏移量。默认为0。</p>
|
|
2049
2052
|
:rtype: int
|
|
2050
2053
|
"""
|
|
2051
2054
|
return self._Offset
|
|
@@ -2056,7 +2059,7 @@ class DescribeAccelerateAreasRequest(AbstractModel):
|
|
|
2056
2059
|
|
|
2057
2060
|
@property
|
|
2058
2061
|
def Limit(self):
|
|
2059
|
-
r"""
|
|
2062
|
+
r"""<p>符合条件实例数量。默认为20,最大200。</p>
|
|
2060
2063
|
:rtype: int
|
|
2061
2064
|
"""
|
|
2062
2065
|
return self._Limit
|
|
@@ -2065,11 +2068,28 @@ class DescribeAccelerateAreasRequest(AbstractModel):
|
|
|
2065
2068
|
def Limit(self, Limit):
|
|
2066
2069
|
self._Limit = Limit
|
|
2067
2070
|
|
|
2071
|
+
@property
|
|
2072
|
+
def Filters(self):
|
|
2073
|
+
r"""<p>过滤条件。 accelerate-region- String -(过滤条件)终端节点组地域。</p>
|
|
2074
|
+
:rtype: list of Filter
|
|
2075
|
+
"""
|
|
2076
|
+
return self._Filters
|
|
2077
|
+
|
|
2078
|
+
@Filters.setter
|
|
2079
|
+
def Filters(self, Filters):
|
|
2080
|
+
self._Filters = Filters
|
|
2081
|
+
|
|
2068
2082
|
|
|
2069
2083
|
def _deserialize(self, params):
|
|
2070
2084
|
self._GlobalAcceleratorId = params.get("GlobalAcceleratorId")
|
|
2071
2085
|
self._Offset = params.get("Offset")
|
|
2072
2086
|
self._Limit = params.get("Limit")
|
|
2087
|
+
if params.get("Filters") is not None:
|
|
2088
|
+
self._Filters = []
|
|
2089
|
+
for item in params.get("Filters"):
|
|
2090
|
+
obj = Filter()
|
|
2091
|
+
obj._deserialize(item)
|
|
2092
|
+
self._Filters.append(obj)
|
|
2073
2093
|
memeber_set = set(params.keys())
|
|
2074
2094
|
for name, value in vars(self).items():
|
|
2075
2095
|
property_name = name[1:]
|
|
@@ -2087,9 +2107,9 @@ class DescribeAccelerateAreasResponse(AbstractModel):
|
|
|
2087
2107
|
|
|
2088
2108
|
def __init__(self):
|
|
2089
2109
|
r"""
|
|
2090
|
-
:param _AccelerateAreaSet:
|
|
2110
|
+
:param _AccelerateAreaSet: <p>加速地域信息。</p>
|
|
2091
2111
|
:type AccelerateAreaSet: list of AcceleratorAreas
|
|
2092
|
-
:param _TotalCount:
|
|
2112
|
+
:param _TotalCount: <p>实例个数。</p>
|
|
2093
2113
|
:type TotalCount: int
|
|
2094
2114
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2095
2115
|
:type RequestId: str
|
|
@@ -2100,7 +2120,7 @@ class DescribeAccelerateAreasResponse(AbstractModel):
|
|
|
2100
2120
|
|
|
2101
2121
|
@property
|
|
2102
2122
|
def AccelerateAreaSet(self):
|
|
2103
|
-
r"""
|
|
2123
|
+
r"""<p>加速地域信息。</p>
|
|
2104
2124
|
:rtype: list of AcceleratorAreas
|
|
2105
2125
|
"""
|
|
2106
2126
|
return self._AccelerateAreaSet
|
|
@@ -2111,7 +2131,7 @@ class DescribeAccelerateAreasResponse(AbstractModel):
|
|
|
2111
2131
|
|
|
2112
2132
|
@property
|
|
2113
2133
|
def TotalCount(self):
|
|
2114
|
-
r"""
|
|
2134
|
+
r"""<p>实例个数。</p>
|
|
2115
2135
|
:rtype: int
|
|
2116
2136
|
"""
|
|
2117
2137
|
return self._TotalCount
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ga2
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.130
|
|
4
4
|
Summary: Tencent Cloud Ga2 SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.130
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.130
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.129
|
|
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
|