tencentcloud-sdk-python-tdmysql 3.1.79__tar.gz → 3.1.100__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 (17) hide show
  1. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud/tdmysql/v20211122/models.py +61 -16
  5. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud_sdk_python_tdmysql.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_tdmysql-3.1.100/tencentcloud_sdk_python_tdmysql.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_tdmysql-3.1.79/tencentcloud_sdk_python_tdmysql.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/README.rst +0 -0
  9. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud/tdmysql/__init__.py +0 -0
  11. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud/tdmysql/v20211122/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud/tdmysql/v20211122/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud/tdmysql/v20211122/tdmysql_client.py +0 -0
  14. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud/tdmysql/v20211122/tdmysql_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud_sdk_python_tdmysql.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud_sdk_python_tdmysql.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_tdmysql-3.1.79 → tencentcloud_sdk_python_tdmysql-3.1.100}/tencentcloud_sdk_python_tdmysql.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tdmysql
3
- Version: 3.1.79
3
+ Version: 3.1.100
4
4
  Summary: Tencent Cloud Tdmysql 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.79
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.100
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-tdmysql',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.79,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.100,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Tdmysql SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.79'
17
+ __version__ = '3.1.100'
@@ -2132,17 +2132,26 @@ class DescribeDatabaseObjectsRequest(AbstractModel):
2132
2132
 
2133
2133
  def __init__(self):
2134
2134
  r"""
2135
- :param _InstanceId: 实例 ID,形如:tdsql3-42f40429.
2135
+ :param _InstanceId: <p>实例 ID,形如:tdsql3-42f40429.</p>
2136
2136
  :type InstanceId: str
2137
- :param _DbName: 数据库名称,通过 DescribeDatabases 接口获取。
2137
+ :param _DbName: <p>数据库名称,通过 DescribeDatabases 接口获取。</p>
2138
2138
  :type DbName: str
2139
+ :param _Offset: <p>分页索引</p>
2140
+ :type Offset: int
2141
+ :param _Limit: <p>每页数量</p>
2142
+ :type Limit: int
2143
+ :param _TableRegexp: <p>数据表名称匹配表达式</p>
2144
+ :type TableRegexp: str
2139
2145
  """
2140
2146
  self._InstanceId = None
2141
2147
  self._DbName = None
2148
+ self._Offset = None
2149
+ self._Limit = None
2150
+ self._TableRegexp = None
2142
2151
 
2143
2152
  @property
2144
2153
  def InstanceId(self):
2145
- r"""实例 ID,形如:tdsql3-42f40429.
2154
+ r"""<p>实例 ID,形如:tdsql3-42f40429.</p>
2146
2155
  :rtype: str
2147
2156
  """
2148
2157
  return self._InstanceId
@@ -2153,7 +2162,7 @@ class DescribeDatabaseObjectsRequest(AbstractModel):
2153
2162
 
2154
2163
  @property
2155
2164
  def DbName(self):
2156
- r"""数据库名称,通过 DescribeDatabases 接口获取。
2165
+ r"""<p>数据库名称,通过 DescribeDatabases 接口获取。</p>
2157
2166
  :rtype: str
2158
2167
  """
2159
2168
  return self._DbName
@@ -2162,10 +2171,46 @@ class DescribeDatabaseObjectsRequest(AbstractModel):
2162
2171
  def DbName(self, DbName):
2163
2172
  self._DbName = DbName
2164
2173
 
2174
+ @property
2175
+ def Offset(self):
2176
+ r"""<p>分页索引</p>
2177
+ :rtype: int
2178
+ """
2179
+ return self._Offset
2180
+
2181
+ @Offset.setter
2182
+ def Offset(self, Offset):
2183
+ self._Offset = Offset
2184
+
2185
+ @property
2186
+ def Limit(self):
2187
+ r"""<p>每页数量</p>
2188
+ :rtype: int
2189
+ """
2190
+ return self._Limit
2191
+
2192
+ @Limit.setter
2193
+ def Limit(self, Limit):
2194
+ self._Limit = Limit
2195
+
2196
+ @property
2197
+ def TableRegexp(self):
2198
+ r"""<p>数据表名称匹配表达式</p>
2199
+ :rtype: str
2200
+ """
2201
+ return self._TableRegexp
2202
+
2203
+ @TableRegexp.setter
2204
+ def TableRegexp(self, TableRegexp):
2205
+ self._TableRegexp = TableRegexp
2206
+
2165
2207
 
2166
2208
  def _deserialize(self, params):
2167
2209
  self._InstanceId = params.get("InstanceId")
2168
2210
  self._DbName = params.get("DbName")
2211
+ self._Offset = params.get("Offset")
2212
+ self._Limit = params.get("Limit")
2213
+ self._TableRegexp = params.get("TableRegexp")
2169
2214
  memeber_set = set(params.keys())
2170
2215
  for name, value in vars(self).items():
2171
2216
  property_name = name[1:]
@@ -2183,20 +2228,20 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
2183
2228
 
2184
2229
  def __init__(self):
2185
2230
  r"""
2186
- :param _InstanceId: 透传入参。
2231
+ :param _InstanceId: <p>透传入参。</p>
2187
2232
  :type InstanceId: str
2188
- :param _DbName: 数据库名称。
2233
+ :param _DbName: <p>数据库名称。</p>
2189
2234
  :type DbName: str
2190
- :param _Tables: 表列表。
2235
+ :param _Tables: <p>表列表。</p>
2191
2236
  注意:此字段可能返回 null,表示取不到有效值。
2192
2237
  :type Tables: list of DatabaseTable
2193
- :param _Views: 视图列表。
2238
+ :param _Views: <p>视图列表。</p>
2194
2239
  注意:此字段可能返回 null,表示取不到有效值。
2195
2240
  :type Views: list of DatabaseView
2196
- :param _Procs: 存储过程列表。
2241
+ :param _Procs: <p>存储过程列表。</p>
2197
2242
  注意:此字段可能返回 null,表示取不到有效值。
2198
2243
  :type Procs: list of DatabaseProcedure
2199
- :param _Funcs: 函数列表。
2244
+ :param _Funcs: <p>函数列表。</p>
2200
2245
  注意:此字段可能返回 null,表示取不到有效值。
2201
2246
  :type Funcs: list of DatabaseFunction
2202
2247
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -2212,7 +2257,7 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
2212
2257
 
2213
2258
  @property
2214
2259
  def InstanceId(self):
2215
- r"""透传入参。
2260
+ r"""<p>透传入参。</p>
2216
2261
  :rtype: str
2217
2262
  """
2218
2263
  return self._InstanceId
@@ -2223,7 +2268,7 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
2223
2268
 
2224
2269
  @property
2225
2270
  def DbName(self):
2226
- r"""数据库名称。
2271
+ r"""<p>数据库名称。</p>
2227
2272
  :rtype: str
2228
2273
  """
2229
2274
  return self._DbName
@@ -2234,7 +2279,7 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
2234
2279
 
2235
2280
  @property
2236
2281
  def Tables(self):
2237
- r"""表列表。
2282
+ r"""<p>表列表。</p>
2238
2283
  注意:此字段可能返回 null,表示取不到有效值。
2239
2284
  :rtype: list of DatabaseTable
2240
2285
  """
@@ -2246,7 +2291,7 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
2246
2291
 
2247
2292
  @property
2248
2293
  def Views(self):
2249
- r"""视图列表。
2294
+ r"""<p>视图列表。</p>
2250
2295
  注意:此字段可能返回 null,表示取不到有效值。
2251
2296
  :rtype: list of DatabaseView
2252
2297
  """
@@ -2258,7 +2303,7 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
2258
2303
 
2259
2304
  @property
2260
2305
  def Procs(self):
2261
- r"""存储过程列表。
2306
+ r"""<p>存储过程列表。</p>
2262
2307
  注意:此字段可能返回 null,表示取不到有效值。
2263
2308
  :rtype: list of DatabaseProcedure
2264
2309
  """
@@ -2270,7 +2315,7 @@ class DescribeDatabaseObjectsResponse(AbstractModel):
2270
2315
 
2271
2316
  @property
2272
2317
  def Funcs(self):
2273
- r"""函数列表。
2318
+ r"""<p>函数列表。</p>
2274
2319
  注意:此字段可能返回 null,表示取不到有效值。
2275
2320
  :rtype: list of DatabaseFunction
2276
2321
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tdmysql
3
- Version: 3.1.79
3
+ Version: 3.1.100
4
4
  Summary: Tencent Cloud Tdmysql 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.79
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.100
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.100
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.79