tencentcloud-sdk-python-sqlserver 3.0.1157__tar.gz → 3.0.1167__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-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/setup.py +1 -1
  3. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud/sqlserver/v20180328/models.py +26 -2
  5. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud_sdk_python_sqlserver.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-sqlserver-3.0.1167/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-sqlserver-3.0.1157/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/README.rst +0 -0
  9. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud/sqlserver/__init__.py +0 -0
  11. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud/sqlserver/v20180328/__init__.py +0 -0
  12. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud/sqlserver/v20180328/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud/sqlserver/v20180328/sqlserver_client.py +0 -0
  14. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud_sdk_python_sqlserver.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud_sdk_python_sqlserver.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-sqlserver-3.0.1157 → tencentcloud-sdk-python-sqlserver-3.0.1167}/tencentcloud_sdk_python_sqlserver.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-sqlserver
3
- Version: 3.0.1157
3
+ Version: 3.0.1167
4
4
  Summary: Tencent Cloud Sqlserver 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-sqlserver',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1157"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1167"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Sqlserver 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.1157'
17
+ __version__ = '3.0.1167'
@@ -33,12 +33,14 @@ class AccountCreateInfo(AbstractModel):
33
33
  :type DBPrivileges: list of DBPrivilege
34
34
  :param _Remark: 账号备注信息
35
35
  :type Remark: str
36
- :param _IsAdmin: 是否为管理员账户,当值为true 等价于基础版AccountType=L0,高可用AccountType=L1,当值为false,等价于AccountType=L3
36
+ :param _IsAdmin: 是否为管理员账户,当值为true 等价于单节点AccountType=L0,双节点AccountType=L1,当值为false,等价于AccountType=L3
37
37
  :type IsAdmin: bool
38
38
  :param _Authentication: win-windows鉴权,sql-sqlserver鉴权,不填默认值为sql-sqlserver鉴权
39
39
  :type Authentication: str
40
40
  :param _AccountType: 账号类型,IsAdmin的扩展字段。 L0-超级权限(基础版独有),L1-高级权限,L2-特殊权限,L3-普通权限,默认L3
41
41
  :type AccountType: str
42
+ :param _IsCam: 是否开启CAM验证
43
+ :type IsCam: bool
42
44
  """
43
45
  self._UserName = None
44
46
  self._Password = None
@@ -47,6 +49,7 @@ class AccountCreateInfo(AbstractModel):
47
49
  self._IsAdmin = None
48
50
  self._Authentication = None
49
51
  self._AccountType = None
52
+ self._IsCam = None
50
53
 
51
54
  @property
52
55
  def UserName(self):
@@ -104,6 +107,14 @@ class AccountCreateInfo(AbstractModel):
104
107
  def AccountType(self, AccountType):
105
108
  self._AccountType = AccountType
106
109
 
110
+ @property
111
+ def IsCam(self):
112
+ return self._IsCam
113
+
114
+ @IsCam.setter
115
+ def IsCam(self, IsCam):
116
+ self._IsCam = IsCam
117
+
107
118
 
108
119
  def _deserialize(self, params):
109
120
  self._UserName = params.get("UserName")
@@ -118,6 +129,7 @@ class AccountCreateInfo(AbstractModel):
118
129
  self._IsAdmin = params.get("IsAdmin")
119
130
  self._Authentication = params.get("Authentication")
120
131
  self._AccountType = params.get("AccountType")
132
+ self._IsCam = params.get("IsCam")
121
133
  memeber_set = set(params.keys())
122
134
  for name, value in vars(self).items():
123
135
  property_name = name[1:]
@@ -129,7 +141,7 @@ class AccountCreateInfo(AbstractModel):
129
141
 
130
142
 
131
143
  class AccountDetail(AbstractModel):
132
- """账户信息详情
144
+ """账号信息详情
133
145
 
134
146
  """
135
147
 
@@ -153,6 +165,8 @@ class AccountDetail(AbstractModel):
153
165
  :type Dbs: list of DBPrivilege
154
166
  :param _IsAdmin: 是否为管理员账户
155
167
  :type IsAdmin: bool
168
+ :param _IsCam: 是否为cam托管账户
169
+ :type IsCam: bool
156
170
  :param _Authentication: win-windows鉴权,sql-sqlserver鉴权
157
171
  :type Authentication: str
158
172
  :param _Host: win-windows鉴权账户需要host
@@ -169,6 +183,7 @@ class AccountDetail(AbstractModel):
169
183
  self._InternalStatus = None
170
184
  self._Dbs = None
171
185
  self._IsAdmin = None
186
+ self._IsCam = None
172
187
  self._Authentication = None
173
188
  self._Host = None
174
189
  self._AccountType = None
@@ -245,6 +260,14 @@ class AccountDetail(AbstractModel):
245
260
  def IsAdmin(self, IsAdmin):
246
261
  self._IsAdmin = IsAdmin
247
262
 
263
+ @property
264
+ def IsCam(self):
265
+ return self._IsCam
266
+
267
+ @IsCam.setter
268
+ def IsCam(self, IsCam):
269
+ self._IsCam = IsCam
270
+
248
271
  @property
249
272
  def Authentication(self):
250
273
  return self._Authentication
@@ -285,6 +308,7 @@ class AccountDetail(AbstractModel):
285
308
  obj._deserialize(item)
286
309
  self._Dbs.append(obj)
287
310
  self._IsAdmin = params.get("IsAdmin")
311
+ self._IsCam = params.get("IsCam")
288
312
  self._Authentication = params.get("Authentication")
289
313
  self._Host = params.get("Host")
290
314
  self._AccountType = params.get("AccountType")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-sqlserver
3
- Version: 3.0.1157
3
+ Version: 3.0.1167
4
4
  Summary: Tencent Cloud Sqlserver 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.1167
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1157