tencentcloud-sdk-python-cdn 3.0.1363__tar.gz → 3.0.1365__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 tencentcloud-sdk-python-cdn might be problematic. Click here for more details.
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/setup.py +1 -1
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud/cdn/v20180606/models.py +15 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud_sdk_python_cdn.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cdn-3.0.1365/tencentcloud_sdk_python_cdn.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cdn-3.0.1363/tencentcloud_sdk_python_cdn.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/README.rst +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud/cdn/__init__.py +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud/cdn/v20180606/__init__.py +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud/cdn/v20180606/cdn_client.py +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud/cdn/v20180606/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud_sdk_python_cdn.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud_sdk_python_cdn.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cdn-3.0.1363 → tencentcloud-sdk-python-cdn-3.0.1365}/tencentcloud_sdk_python_cdn.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cdn',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1365"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cdn SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -20698,11 +20698,14 @@ directory 时填充路径,如 /xxx/test/
|
|
|
20698
20698
|
path 时填充绝对路径,如 /xxx/test.html
|
|
20699
20699
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
20700
20700
|
:type RulePaths: list of str
|
|
20701
|
+
:param _Remark: 备注信息, 最多支持50个字符
|
|
20702
|
+
:type Remark: str
|
|
20701
20703
|
"""
|
|
20702
20704
|
self._FilterType = None
|
|
20703
20705
|
self._Filters = None
|
|
20704
20706
|
self._RuleType = None
|
|
20705
20707
|
self._RulePaths = None
|
|
20708
|
+
self._Remark = None
|
|
20706
20709
|
|
|
20707
20710
|
@property
|
|
20708
20711
|
def FilterType(self):
|
|
@@ -20764,12 +20767,24 @@ path 时填充绝对路径,如 /xxx/test.html
|
|
|
20764
20767
|
def RulePaths(self, RulePaths):
|
|
20765
20768
|
self._RulePaths = RulePaths
|
|
20766
20769
|
|
|
20770
|
+
@property
|
|
20771
|
+
def Remark(self):
|
|
20772
|
+
"""备注信息, 最多支持50个字符
|
|
20773
|
+
:rtype: str
|
|
20774
|
+
"""
|
|
20775
|
+
return self._Remark
|
|
20776
|
+
|
|
20777
|
+
@Remark.setter
|
|
20778
|
+
def Remark(self, Remark):
|
|
20779
|
+
self._Remark = Remark
|
|
20780
|
+
|
|
20767
20781
|
|
|
20768
20782
|
def _deserialize(self, params):
|
|
20769
20783
|
self._FilterType = params.get("FilterType")
|
|
20770
20784
|
self._Filters = params.get("Filters")
|
|
20771
20785
|
self._RuleType = params.get("RuleType")
|
|
20772
20786
|
self._RulePaths = params.get("RulePaths")
|
|
20787
|
+
self._Remark = params.get("Remark")
|
|
20773
20788
|
memeber_set = set(params.keys())
|
|
20774
20789
|
for name, value in vars(self).items():
|
|
20775
20790
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1365
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1363
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|