tencentcloud-sdk-python-dnspod 3.0.1069__tar.gz → 3.0.1071__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud/dnspod/v20210323/models.py +12 -0
  5. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud_sdk_python_dnspod.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-dnspod-3.0.1071/tencentcloud_sdk_python_dnspod.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-dnspod-3.0.1069/tencentcloud_sdk_python_dnspod.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/README.rst +0 -0
  9. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud/dnspod/__init__.py +0 -0
  11. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud/dnspod/v20210323/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud/dnspod/v20210323/dnspod_client.py +0 -0
  13. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud/dnspod/v20210323/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud_sdk_python_dnspod.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud_sdk_python_dnspod.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dnspod-3.0.1069 → tencentcloud-sdk-python-dnspod-3.0.1071}/tencentcloud_sdk_python_dnspod.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-dnspod
3
- Version: 3.0.1069
3
+ Version: 3.0.1071
4
4
  Summary: Tencent Cloud Dnspod SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-dnspod',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1069"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1071"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Dnspod SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1069'
17
+ __version__ = '3.0.1071'
@@ -10217,6 +10217,8 @@ class ModifyRecordRequest(AbstractModel):
10217
10217
  :type Weight: int
10218
10218
  :param _Status: 记录初始状态,取值范围为 ENABLE 和 DISABLE 。默认为 ENABLE ,如果传入 DISABLE,解析不会生效,也不会验证负载均衡的限制。
10219
10219
  :type Status: str
10220
+ :param _Remark: 记录的备注信息。传空删除备注。
10221
+ :type Remark: str
10220
10222
  """
10221
10223
  self._Domain = None
10222
10224
  self._RecordType = None
@@ -10230,6 +10232,7 @@ class ModifyRecordRequest(AbstractModel):
10230
10232
  self._TTL = None
10231
10233
  self._Weight = None
10232
10234
  self._Status = None
10235
+ self._Remark = None
10233
10236
 
10234
10237
  @property
10235
10238
  def Domain(self):
@@ -10327,6 +10330,14 @@ class ModifyRecordRequest(AbstractModel):
10327
10330
  def Status(self, Status):
10328
10331
  self._Status = Status
10329
10332
 
10333
+ @property
10334
+ def Remark(self):
10335
+ return self._Remark
10336
+
10337
+ @Remark.setter
10338
+ def Remark(self, Remark):
10339
+ self._Remark = Remark
10340
+
10330
10341
 
10331
10342
  def _deserialize(self, params):
10332
10343
  self._Domain = params.get("Domain")
@@ -10341,6 +10352,7 @@ class ModifyRecordRequest(AbstractModel):
10341
10352
  self._TTL = params.get("TTL")
10342
10353
  self._Weight = params.get("Weight")
10343
10354
  self._Status = params.get("Status")
10355
+ self._Remark = params.get("Remark")
10344
10356
  memeber_set = set(params.keys())
10345
10357
  for name, value in vars(self).items():
10346
10358
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-dnspod
3
- Version: 3.0.1069
3
+ Version: 3.0.1071
4
4
  Summary: Tencent Cloud Dnspod SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1071
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1069