tencentcloud-sdk-python 3.0.1347__py2.py3-none-any.whl → 3.0.1348__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bh/v20230418/models.py +61 -23
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/cdwdoris/v20211228/models.py +300 -0
- tencentcloud/cdwpg/v20201230/models.py +96 -84
- tencentcloud/chc/v20230418/models.py +0 -30
- tencentcloud/clb/v20180317/models.py +46 -16
- tencentcloud/dbbrain/v20210527/models.py +0 -8
- tencentcloud/dcdb/v20180411/errorcodes.py +3 -0
- tencentcloud/dcdb/v20180411/models.py +0 -64
- tencentcloud/emr/v20190103/models.py +15 -54
- tencentcloud/ess/v20201111/models.py +4 -4
- tencentcloud/essbasic/v20210526/models.py +4 -4
- tencentcloud/gs/v20191118/models.py +4 -58
- tencentcloud/hai/v20230812/models.py +0 -44
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +1 -1
- tencentcloud/iotvideoindustry/v20201201/models.py +0 -30
- tencentcloud/lcic/v20220817/lcic_client.py +1 -1
- tencentcloud/lcic/v20220817/models.py +56 -68
- tencentcloud/lkeap/v20240522/lkeap_client.py +5 -0
- tencentcloud/mariadb/v20170312/models.py +2 -70
- tencentcloud/mqtt/v20240516/models.py +296 -188
- tencentcloud/organization/v20210331/models.py +30 -0
- tencentcloud/tbaas/v20180416/models.py +0 -46
- tencentcloud/tcb/v20180608/errorcodes.py +3 -0
- tencentcloud/tcr/v20190924/models.py +0 -134
- tencentcloud/tdmq/v20200217/models.py +0 -14
- tencentcloud/thpc/v20230321/models.py +34 -0
- tencentcloud/tke/v20180525/models.py +0 -66
- tencentcloud/trocket/v20230308/models.py +0 -24
- tencentcloud/tsf/v20180326/models.py +196 -182
- tencentcloud/vcube/v20220410/models.py +51 -158
- tencentcloud/vcube/v20220410/vcube_client.py +2 -2
- tencentcloud/vod/v20180717/models.py +8 -46
- tencentcloud/wedata/v20210820/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -91,19 +91,21 @@ class AccessDevicesRequest(AbstractModel):
|
|
91
91
|
|
92
92
|
def __init__(self):
|
93
93
|
r"""
|
94
|
-
:param
|
95
|
-
:type InstanceId: str
|
96
|
-
:param _Account: 账号
|
94
|
+
:param _Account: 资产的登录账号
|
97
95
|
:type Account: str
|
98
96
|
:param _LoginAccount: 运维端登录账号
|
99
97
|
:type LoginAccount: str
|
100
98
|
:param _LoginPassword: 运维端登录密码
|
101
99
|
:type LoginPassword: str
|
102
|
-
:param
|
100
|
+
:param _DeviceId: 资产ID
|
101
|
+
:type DeviceId: int
|
102
|
+
:param _InstanceId: 资源id(优先使用DeviceId)
|
103
|
+
:type InstanceId: str
|
104
|
+
:param _Password: 未托管密码私钥时,填入
|
103
105
|
:type Password: str
|
104
|
-
:param _PrivateKey:
|
106
|
+
:param _PrivateKey: 未托管密码私钥时,填入
|
105
107
|
:type PrivateKey: str
|
106
|
-
:param _PrivateKeyPassword:
|
108
|
+
:param _PrivateKeyPassword: 未托管密码私钥时,填入
|
107
109
|
:type PrivateKeyPassword: str
|
108
110
|
:param _Exe: 客户端工具
|
109
111
|
:type Exe: str
|
@@ -115,11 +117,14 @@ class AccessDevicesRequest(AbstractModel):
|
|
115
117
|
:type Height: int
|
116
118
|
:param _IntranetAccess: 是否内网访问(默认不是)
|
117
119
|
:type IntranetAccess: bool
|
120
|
+
:param _AutoManageAccessCredential: 是否自动管理访问串,删掉过期的,新建可用的(默认false)
|
121
|
+
:type AutoManageAccessCredential: bool
|
118
122
|
"""
|
119
|
-
self._InstanceId = None
|
120
123
|
self._Account = None
|
121
124
|
self._LoginAccount = None
|
122
125
|
self._LoginPassword = None
|
126
|
+
self._DeviceId = None
|
127
|
+
self._InstanceId = None
|
123
128
|
self._Password = None
|
124
129
|
self._PrivateKey = None
|
125
130
|
self._PrivateKeyPassword = None
|
@@ -128,21 +133,11 @@ class AccessDevicesRequest(AbstractModel):
|
|
128
133
|
self._Width = None
|
129
134
|
self._Height = None
|
130
135
|
self._IntranetAccess = None
|
131
|
-
|
132
|
-
@property
|
133
|
-
def InstanceId(self):
|
134
|
-
"""资源id
|
135
|
-
:rtype: str
|
136
|
-
"""
|
137
|
-
return self._InstanceId
|
138
|
-
|
139
|
-
@InstanceId.setter
|
140
|
-
def InstanceId(self, InstanceId):
|
141
|
-
self._InstanceId = InstanceId
|
136
|
+
self._AutoManageAccessCredential = None
|
142
137
|
|
143
138
|
@property
|
144
139
|
def Account(self):
|
145
|
-
"""
|
140
|
+
"""资产的登录账号
|
146
141
|
:rtype: str
|
147
142
|
"""
|
148
143
|
return self._Account
|
@@ -153,6 +148,8 @@ class AccessDevicesRequest(AbstractModel):
|
|
153
148
|
|
154
149
|
@property
|
155
150
|
def LoginAccount(self):
|
151
|
+
warnings.warn("parameter `LoginAccount` is deprecated", DeprecationWarning)
|
152
|
+
|
156
153
|
"""运维端登录账号
|
157
154
|
:rtype: str
|
158
155
|
"""
|
@@ -160,10 +157,14 @@ class AccessDevicesRequest(AbstractModel):
|
|
160
157
|
|
161
158
|
@LoginAccount.setter
|
162
159
|
def LoginAccount(self, LoginAccount):
|
160
|
+
warnings.warn("parameter `LoginAccount` is deprecated", DeprecationWarning)
|
161
|
+
|
163
162
|
self._LoginAccount = LoginAccount
|
164
163
|
|
165
164
|
@property
|
166
165
|
def LoginPassword(self):
|
166
|
+
warnings.warn("parameter `LoginPassword` is deprecated", DeprecationWarning)
|
167
|
+
|
167
168
|
"""运维端登录密码
|
168
169
|
:rtype: str
|
169
170
|
"""
|
@@ -171,11 +172,35 @@ class AccessDevicesRequest(AbstractModel):
|
|
171
172
|
|
172
173
|
@LoginPassword.setter
|
173
174
|
def LoginPassword(self, LoginPassword):
|
175
|
+
warnings.warn("parameter `LoginPassword` is deprecated", DeprecationWarning)
|
176
|
+
|
174
177
|
self._LoginPassword = LoginPassword
|
175
178
|
|
179
|
+
@property
|
180
|
+
def DeviceId(self):
|
181
|
+
"""资产ID
|
182
|
+
:rtype: int
|
183
|
+
"""
|
184
|
+
return self._DeviceId
|
185
|
+
|
186
|
+
@DeviceId.setter
|
187
|
+
def DeviceId(self, DeviceId):
|
188
|
+
self._DeviceId = DeviceId
|
189
|
+
|
190
|
+
@property
|
191
|
+
def InstanceId(self):
|
192
|
+
"""资源id(优先使用DeviceId)
|
193
|
+
:rtype: str
|
194
|
+
"""
|
195
|
+
return self._InstanceId
|
196
|
+
|
197
|
+
@InstanceId.setter
|
198
|
+
def InstanceId(self, InstanceId):
|
199
|
+
self._InstanceId = InstanceId
|
200
|
+
|
176
201
|
@property
|
177
202
|
def Password(self):
|
178
|
-
"""
|
203
|
+
"""未托管密码私钥时,填入
|
179
204
|
:rtype: str
|
180
205
|
"""
|
181
206
|
return self._Password
|
@@ -186,7 +211,7 @@ class AccessDevicesRequest(AbstractModel):
|
|
186
211
|
|
187
212
|
@property
|
188
213
|
def PrivateKey(self):
|
189
|
-
"""
|
214
|
+
"""未托管密码私钥时,填入
|
190
215
|
:rtype: str
|
191
216
|
"""
|
192
217
|
return self._PrivateKey
|
@@ -197,7 +222,7 @@ class AccessDevicesRequest(AbstractModel):
|
|
197
222
|
|
198
223
|
@property
|
199
224
|
def PrivateKeyPassword(self):
|
200
|
-
"""
|
225
|
+
"""未托管密码私钥时,填入
|
201
226
|
:rtype: str
|
202
227
|
"""
|
203
228
|
return self._PrivateKeyPassword
|
@@ -261,12 +286,24 @@ class AccessDevicesRequest(AbstractModel):
|
|
261
286
|
def IntranetAccess(self, IntranetAccess):
|
262
287
|
self._IntranetAccess = IntranetAccess
|
263
288
|
|
289
|
+
@property
|
290
|
+
def AutoManageAccessCredential(self):
|
291
|
+
"""是否自动管理访问串,删掉过期的,新建可用的(默认false)
|
292
|
+
:rtype: bool
|
293
|
+
"""
|
294
|
+
return self._AutoManageAccessCredential
|
295
|
+
|
296
|
+
@AutoManageAccessCredential.setter
|
297
|
+
def AutoManageAccessCredential(self, AutoManageAccessCredential):
|
298
|
+
self._AutoManageAccessCredential = AutoManageAccessCredential
|
299
|
+
|
264
300
|
|
265
301
|
def _deserialize(self, params):
|
266
|
-
self._InstanceId = params.get("InstanceId")
|
267
302
|
self._Account = params.get("Account")
|
268
303
|
self._LoginAccount = params.get("LoginAccount")
|
269
304
|
self._LoginPassword = params.get("LoginPassword")
|
305
|
+
self._DeviceId = params.get("DeviceId")
|
306
|
+
self._InstanceId = params.get("InstanceId")
|
270
307
|
self._Password = params.get("Password")
|
271
308
|
self._PrivateKey = params.get("PrivateKey")
|
272
309
|
self._PrivateKeyPassword = params.get("PrivateKeyPassword")
|
@@ -275,6 +312,7 @@ class AccessDevicesRequest(AbstractModel):
|
|
275
312
|
self._Width = params.get("Width")
|
276
313
|
self._Height = params.get("Height")
|
277
314
|
self._IntranetAccess = params.get("IntranetAccess")
|
315
|
+
self._AutoManageAccessCredential = params.get("AutoManageAccessCredential")
|
278
316
|
memeber_set = set(params.keys())
|
279
317
|
for name, value in vars(self).items():
|
280
318
|
property_name = name[1:]
|
@@ -2871,7 +2871,7 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
2871
2871
|
:type IdentityKey: str
|
2872
2872
|
:param _Scope: 授权请求Scope。openid; email;profile。授权请求信息范围。默认必选openid。
|
2873
2873
|
:type Scope: list of str
|
2874
|
-
:param _Description:
|
2874
|
+
:param _Description: 描述信息。由用户自行定义。
|
2875
2875
|
:type Description: str
|
2876
2876
|
"""
|
2877
2877
|
self._IdentityUrl = None
|
@@ -2975,7 +2975,7 @@ class CreateUserOIDCConfigRequest(AbstractModel):
|
|
2975
2975
|
|
2976
2976
|
@property
|
2977
2977
|
def Description(self):
|
2978
|
-
"""
|
2978
|
+
"""描述信息。由用户自行定义。
|
2979
2979
|
:rtype: str
|
2980
2980
|
"""
|
2981
2981
|
return self._Description
|