tencentcloud-sdk-python-intl-en 3.0.1226__py2.py3-none-any.whl → 3.0.1227__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.

Potentially problematic release.


This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.

tencentcloud/__init__.py CHANGED
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = '3.0.1226'
16
+ __version__ = '3.0.1227'
@@ -302,6 +302,52 @@ class CsipClient(AbstractClient):
302
302
  raise TencentCloudSDKException(type(e).__name__, str(e))
303
303
 
304
304
 
305
+ def DescribeOrganizationInfo(self, request):
306
+ """Check group account details
307
+
308
+ :param request: Request instance for DescribeOrganizationInfo.
309
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeOrganizationInfoRequest`
310
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeOrganizationInfoResponse`
311
+
312
+ """
313
+ try:
314
+ params = request._serialize()
315
+ headers = request.headers
316
+ body = self.call("DescribeOrganizationInfo", params, headers=headers)
317
+ response = json.loads(body)
318
+ model = models.DescribeOrganizationInfoResponse()
319
+ model._deserialize(response["Response"])
320
+ return model
321
+ except Exception as e:
322
+ if isinstance(e, TencentCloudSDKException):
323
+ raise
324
+ else:
325
+ raise TencentCloudSDKException(type(e).__name__, str(e))
326
+
327
+
328
+ def DescribeOrganizationUserInfo(self, request):
329
+ """Query group account user list
330
+
331
+ :param request: Request instance for DescribeOrganizationUserInfo.
332
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeOrganizationUserInfoRequest`
333
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeOrganizationUserInfoResponse`
334
+
335
+ """
336
+ try:
337
+ params = request._serialize()
338
+ headers = request.headers
339
+ body = self.call("DescribeOrganizationUserInfo", params, headers=headers)
340
+ response = json.loads(body)
341
+ model = models.DescribeOrganizationUserInfoResponse()
342
+ model._deserialize(response["Response"])
343
+ return model
344
+ except Exception as e:
345
+ if isinstance(e, TencentCloudSDKException):
346
+ raise
347
+ else:
348
+ raise TencentCloudSDKException(type(e).__name__, str(e))
349
+
350
+
305
351
  def DescribePublicIpAssets(self, request):
306
352
  """This API is used to query the list of public IP assets.
307
353
 
@@ -578,6 +624,29 @@ class CsipClient(AbstractClient):
578
624
  raise TencentCloudSDKException(type(e).__name__, str(e))
579
625
 
580
626
 
627
+ def DescribeSubUserInfo(self, request):
628
+ """Query the group's sub-account list
629
+
630
+ :param request: Request instance for DescribeSubUserInfo.
631
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeSubUserInfoRequest`
632
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeSubUserInfoResponse`
633
+
634
+ """
635
+ try:
636
+ params = request._serialize()
637
+ headers = request.headers
638
+ body = self.call("DescribeSubUserInfo", params, headers=headers)
639
+ response = json.loads(body)
640
+ model = models.DescribeSubUserInfoResponse()
641
+ model._deserialize(response["Response"])
642
+ return model
643
+ except Exception as e:
644
+ if isinstance(e, TencentCloudSDKException):
645
+ raise
646
+ else:
647
+ raise TencentCloudSDKException(type(e).__name__, str(e))
648
+
649
+
581
650
  def DescribeSubnetAssets(self, request):
582
651
  """This API is used to get the list of subnets.
583
652