tencentcloud-sdk-python-dnspod 3.0.1385__tar.gz → 3.0.1387__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.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud/dnspod/v20210323/models.py +0 -45
  5. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud_sdk_python_dnspod.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-dnspod-3.0.1387/tencentcloud_sdk_python_dnspod.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-dnspod-3.0.1385/tencentcloud_sdk_python_dnspod.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/README.rst +0 -0
  9. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud/dnspod/__init__.py +0 -0
  11. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud/dnspod/v20210323/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud/dnspod/v20210323/dnspod_client.py +0 -0
  13. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud/dnspod/v20210323/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud_sdk_python_dnspod.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud_sdk_python_dnspod.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dnspod-3.0.1385 → tencentcloud-sdk-python-dnspod-3.0.1387}/tencentcloud_sdk_python_dnspod.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dnspod
3
- Version: 3.0.1385
3
+ Version: 3.0.1387
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.1385"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1387"],
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.1385'
17
+ __version__ = '3.0.1387'
@@ -35,27 +35,18 @@ class AddRecordBatch(AbstractModel):
35
35
  :type RecordLine: str
36
36
  :param _RecordLineId: 解析记录的线路 ID,RecordLine和RecordLineId都有时,系统优先取 RecordLineId。
37
37
  :type RecordLineId: str
38
- :param _Weight: 记录权重值(暂未支持)。
39
- :type Weight: int
40
38
  :param _MX: 记录的 MX 记录值,非 MX 记录类型,默认为 0,MX记录则必选。
41
39
  :type MX: int
42
40
  :param _TTL: 记录的 TTL 值,默认600。
43
41
  :type TTL: int
44
- :param _Enabled: 记录状态(暂未支持)。0表示禁用,1表示启用。默认启用。
45
- :type Enabled: int
46
- :param _Remark: 记录备注(暂未支持)。
47
- :type Remark: str
48
42
  """
49
43
  self._RecordType = None
50
44
  self._Value = None
51
45
  self._SubDomain = None
52
46
  self._RecordLine = None
53
47
  self._RecordLineId = None
54
- self._Weight = None
55
48
  self._MX = None
56
49
  self._TTL = None
57
- self._Enabled = None
58
- self._Remark = None
59
50
 
60
51
  @property
61
52
  def RecordType(self):
@@ -112,17 +103,6 @@ class AddRecordBatch(AbstractModel):
112
103
  def RecordLineId(self, RecordLineId):
113
104
  self._RecordLineId = RecordLineId
114
105
 
115
- @property
116
- def Weight(self):
117
- """记录权重值(暂未支持)。
118
- :rtype: int
119
- """
120
- return self._Weight
121
-
122
- @Weight.setter
123
- def Weight(self, Weight):
124
- self._Weight = Weight
125
-
126
106
  @property
127
107
  def MX(self):
128
108
  """记录的 MX 记录值,非 MX 记录类型,默认为 0,MX记录则必选。
@@ -145,28 +125,6 @@ class AddRecordBatch(AbstractModel):
145
125
  def TTL(self, TTL):
146
126
  self._TTL = TTL
147
127
 
148
- @property
149
- def Enabled(self):
150
- """记录状态(暂未支持)。0表示禁用,1表示启用。默认启用。
151
- :rtype: int
152
- """
153
- return self._Enabled
154
-
155
- @Enabled.setter
156
- def Enabled(self, Enabled):
157
- self._Enabled = Enabled
158
-
159
- @property
160
- def Remark(self):
161
- """记录备注(暂未支持)。
162
- :rtype: str
163
- """
164
- return self._Remark
165
-
166
- @Remark.setter
167
- def Remark(self, Remark):
168
- self._Remark = Remark
169
-
170
128
 
171
129
  def _deserialize(self, params):
172
130
  self._RecordType = params.get("RecordType")
@@ -174,11 +132,8 @@ class AddRecordBatch(AbstractModel):
174
132
  self._SubDomain = params.get("SubDomain")
175
133
  self._RecordLine = params.get("RecordLine")
176
134
  self._RecordLineId = params.get("RecordLineId")
177
- self._Weight = params.get("Weight")
178
135
  self._MX = params.get("MX")
179
136
  self._TTL = params.get("TTL")
180
- self._Enabled = params.get("Enabled")
181
- self._Remark = params.get("Remark")
182
137
  memeber_set = set(params.keys())
183
138
  for name, value in vars(self).items():
184
139
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dnspod
3
- Version: 3.0.1385
3
+ Version: 3.0.1387
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.1387
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1385