tencentcloud-sdk-python 3.0.1441__py2.py3-none-any.whl → 3.0.1443__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 might be problematic. Click here for more details.

Files changed (47) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +28 -48
  3. tencentcloud/ckafka/v20190819/models.py +23 -23
  4. tencentcloud/clb/v20180317/models.py +4 -4
  5. tencentcloud/cls/v20201016/cls_client.py +3 -3
  6. tencentcloud/cls/v20201016/errorcodes.py +3 -0
  7. tencentcloud/cls/v20201016/models.py +1063 -246
  8. tencentcloud/common/credential.py +20 -2
  9. tencentcloud/dlc/v20210125/models.py +6 -6
  10. tencentcloud/dnspod/v20210323/errorcodes.py +3 -0
  11. tencentcloud/dnspod/v20210323/models.py +17 -2
  12. tencentcloud/es/v20180416/models.py +30 -0
  13. tencentcloud/ess/v20201111/ess_client.py +3 -1
  14. tencentcloud/ess/v20201111/models.py +65 -4
  15. tencentcloud/essbasic/v20210526/essbasic_client.py +3 -1
  16. tencentcloud/essbasic/v20210526/models.py +63 -2
  17. tencentcloud/faceid/v20180301/models.py +96 -4
  18. tencentcloud/iai/v20200303/models.py +19 -0
  19. tencentcloud/lighthouse/v20200324/errorcodes.py +27 -0
  20. tencentcloud/lighthouse/v20200324/lighthouse_client.py +53 -0
  21. tencentcloud/lighthouse/v20200324/models.py +534 -0
  22. tencentcloud/live/v20180801/models.py +2 -10
  23. tencentcloud/lke/v20231130/lke_client.py +0 -23
  24. tencentcloud/lke/v20231130/models.py +40 -128
  25. tencentcloud/mariadb/v20170312/models.py +2 -2
  26. tencentcloud/ocr/v20181119/models.py +34 -0
  27. tencentcloud/organization/v20210331/models.py +24 -26
  28. tencentcloud/ssl/v20191205/models.py +2 -2
  29. tencentcloud/tbaas/v20180416/errorcodes.py +6 -0
  30. tencentcloud/teo/v20220901/models.py +18 -18
  31. tencentcloud/tms/v20201229/errorcodes.py +3 -0
  32. tencentcloud/trtc/v20190722/errorcodes.py +15 -0
  33. tencentcloud/trtc/v20190722/models.py +482 -0
  34. tencentcloud/trtc/v20190722/trtc_client.py +64 -0
  35. tencentcloud/tse/v20201207/models.py +30 -0
  36. tencentcloud/tsf/v20180326/errorcodes.py +38 -17
  37. tencentcloud/tsf/v20180326/models.py +976 -778
  38. tencentcloud/tsf/v20180326/tsf_client.py +18 -18
  39. tencentcloud/vod/v20180717/models.py +15 -0
  40. tencentcloud/vpc/v20170312/models.py +35 -0
  41. tencentcloud/vpc/v20170312/vpc_client.py +1 -1
  42. tencentcloud/wsa/v20250508/models.py +42 -6
  43. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/METADATA +1 -1
  44. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/RECORD +47 -47
  45. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/LICENSE +0 -0
  46. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/WHEEL +0 -0
  47. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/top_level.txt +0 -0
@@ -4316,7 +4316,7 @@ class GetDetectInfoEnhancedResponse(AbstractModel):
4316
4316
 
4317
4317
  def __init__(self):
4318
4318
  r"""
4319
- :param _Text: 文本类信息。
4319
+ :param _Text: 人脸核身识别结果及文本类信息。
4320
4320
  注意:此字段可能返回 null,表示取不到有效值。
4321
4321
  :type Text: :class:`tencentcloud.faceid.v20180301.models.DetectInfoText`
4322
4322
  :param _IdCardData: 身份证照片信息。
@@ -4347,6 +4347,18 @@ class GetDetectInfoEnhancedResponse(AbstractModel):
4347
4347
  :param _EncryptedBody: 加密后的数据。
4348
4348
  注意:此字段可能返回 null,表示取不到有效值。
4349
4349
  :type EncryptedBody: str
4350
+ :param _IsVerifyIntention: 本次请求是否配置开启意愿校验。
4351
+ false:未开启意愿校验
4352
+ true:已开启意愿校验
4353
+ 说明:若请求开启了意愿校验,可结合IntentionVerifyType中具体使用的校验模式从对应的出参Result中获取最终的核验结果;若请求没有开启意愿校验,则可在出参Text中获取最终的核验结果。
4354
+ :type IsVerifyIntention: bool
4355
+ :param _IntentionVerifyType: 本次请求意愿校验使用的具体模式。
4356
+ 0:问答模式
4357
+ 1:点头确认模式
4358
+ 2:朗读模式
4359
+ 若未使用意愿核身功能,该字段返回值可以不处理。
4360
+ 注意:此字段可能返回 null,表示取不到有效值
4361
+ :type IntentionVerifyType: str
4350
4362
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4351
4363
  :type RequestId: str
4352
4364
  """
@@ -4359,11 +4371,13 @@ class GetDetectInfoEnhancedResponse(AbstractModel):
4359
4371
  self._IntentionQuestionResult = None
4360
4372
  self._IntentionActionResult = None
4361
4373
  self._EncryptedBody = None
4374
+ self._IsVerifyIntention = None
4375
+ self._IntentionVerifyType = None
4362
4376
  self._RequestId = None
4363
4377
 
4364
4378
  @property
4365
4379
  def Text(self):
4366
- """文本类信息。
4380
+ """人脸核身识别结果及文本类信息。
4367
4381
  注意:此字段可能返回 null,表示取不到有效值。
4368
4382
  :rtype: :class:`tencentcloud.faceid.v20180301.models.DetectInfoText`
4369
4383
  """
@@ -4473,6 +4487,36 @@ class GetDetectInfoEnhancedResponse(AbstractModel):
4473
4487
  def EncryptedBody(self, EncryptedBody):
4474
4488
  self._EncryptedBody = EncryptedBody
4475
4489
 
4490
+ @property
4491
+ def IsVerifyIntention(self):
4492
+ """本次请求是否配置开启意愿校验。
4493
+ false:未开启意愿校验
4494
+ true:已开启意愿校验
4495
+ 说明:若请求开启了意愿校验,可结合IntentionVerifyType中具体使用的校验模式从对应的出参Result中获取最终的核验结果;若请求没有开启意愿校验,则可在出参Text中获取最终的核验结果。
4496
+ :rtype: bool
4497
+ """
4498
+ return self._IsVerifyIntention
4499
+
4500
+ @IsVerifyIntention.setter
4501
+ def IsVerifyIntention(self, IsVerifyIntention):
4502
+ self._IsVerifyIntention = IsVerifyIntention
4503
+
4504
+ @property
4505
+ def IntentionVerifyType(self):
4506
+ """本次请求意愿校验使用的具体模式。
4507
+ 0:问答模式
4508
+ 1:点头确认模式
4509
+ 2:朗读模式
4510
+ 若未使用意愿核身功能,该字段返回值可以不处理。
4511
+ 注意:此字段可能返回 null,表示取不到有效值
4512
+ :rtype: str
4513
+ """
4514
+ return self._IntentionVerifyType
4515
+
4516
+ @IntentionVerifyType.setter
4517
+ def IntentionVerifyType(self, IntentionVerifyType):
4518
+ self._IntentionVerifyType = IntentionVerifyType
4519
+
4476
4520
  @property
4477
4521
  def RequestId(self):
4478
4522
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -4511,6 +4555,8 @@ class GetDetectInfoEnhancedResponse(AbstractModel):
4511
4555
  self._IntentionActionResult = IntentionActionResult()
4512
4556
  self._IntentionActionResult._deserialize(params.get("IntentionActionResult"))
4513
4557
  self._EncryptedBody = params.get("EncryptedBody")
4558
+ self._IsVerifyIntention = params.get("IsVerifyIntention")
4559
+ self._IntentionVerifyType = params.get("IntentionVerifyType")
4514
4560
  self._RequestId = params.get("RequestId")
4515
4561
 
4516
4562
 
@@ -4856,7 +4902,7 @@ class GetEidResultResponse(AbstractModel):
4856
4902
 
4857
4903
  def __init__(self):
4858
4904
  r"""
4859
- :param _Text: 文本类信息。
4905
+ :param _Text: 人脸核身识别结果及文本类信息。
4860
4906
  - 基于对敏感信息的保护,验证使用的姓名和身份证号统一通过加密后从EidInfo参数中返回。
4861
4907
  - 如需获取请在控制台申请返回身份信息,详见[E证通获取实名信息指引](https://cloud.tencent.com/document/product/1007/63370)。
4862
4908
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4886,6 +4932,18 @@ class GetEidResultResponse(AbstractModel):
4886
4932
  - 若未使用该意愿核身功能,该字段返回值可以不处理。
4887
4933
  注意:此字段可能返回 null,表示取不到有效值。
4888
4934
  :type IntentionActionResult: :class:`tencentcloud.faceid.v20180301.models.IntentionActionResult`
4935
+ :param _IsVerifyIntention: 本次请求是否配置开启意愿校验。
4936
+ false:未开启意愿校验
4937
+ true:已开启意愿校验
4938
+ 说明:若请求开启了意愿校验,可结合IntentionVerifyType中具体使用的校验模式从对应的出参Result中获取最终的核验结果;若请求没有开启意愿校验,则可在出参Text中获取最终的核验结果。
4939
+ :type IsVerifyIntention: bool
4940
+ :param _IntentionVerifyType: 本次请求意愿校验使用的具体模式。
4941
+ 0:问答模式
4942
+ 1:点头确认模式
4943
+ 2:朗读模式
4944
+ 若未使用意愿核身功能,该字段返回值可以不处理。
4945
+ 注意:此字段可能返回 null,表示取不到有效值
4946
+ :type IntentionVerifyType: str
4889
4947
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4890
4948
  :type RequestId: str
4891
4949
  """
@@ -4896,11 +4954,13 @@ class GetEidResultResponse(AbstractModel):
4896
4954
  self._IntentionVerifyData = None
4897
4955
  self._IntentionQuestionResult = None
4898
4956
  self._IntentionActionResult = None
4957
+ self._IsVerifyIntention = None
4958
+ self._IntentionVerifyType = None
4899
4959
  self._RequestId = None
4900
4960
 
4901
4961
  @property
4902
4962
  def Text(self):
4903
- """文本类信息。
4963
+ """人脸核身识别结果及文本类信息。
4904
4964
  - 基于对敏感信息的保护,验证使用的姓名和身份证号统一通过加密后从EidInfo参数中返回。
4905
4965
  - 如需获取请在控制台申请返回身份信息,详见[E证通获取实名信息指引](https://cloud.tencent.com/document/product/1007/63370)。
4906
4966
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4991,6 +5051,36 @@ class GetEidResultResponse(AbstractModel):
4991
5051
  def IntentionActionResult(self, IntentionActionResult):
4992
5052
  self._IntentionActionResult = IntentionActionResult
4993
5053
 
5054
+ @property
5055
+ def IsVerifyIntention(self):
5056
+ """本次请求是否配置开启意愿校验。
5057
+ false:未开启意愿校验
5058
+ true:已开启意愿校验
5059
+ 说明:若请求开启了意愿校验,可结合IntentionVerifyType中具体使用的校验模式从对应的出参Result中获取最终的核验结果;若请求没有开启意愿校验,则可在出参Text中获取最终的核验结果。
5060
+ :rtype: bool
5061
+ """
5062
+ return self._IsVerifyIntention
5063
+
5064
+ @IsVerifyIntention.setter
5065
+ def IsVerifyIntention(self, IsVerifyIntention):
5066
+ self._IsVerifyIntention = IsVerifyIntention
5067
+
5068
+ @property
5069
+ def IntentionVerifyType(self):
5070
+ """本次请求意愿校验使用的具体模式。
5071
+ 0:问答模式
5072
+ 1:点头确认模式
5073
+ 2:朗读模式
5074
+ 若未使用意愿核身功能,该字段返回值可以不处理。
5075
+ 注意:此字段可能返回 null,表示取不到有效值
5076
+ :rtype: str
5077
+ """
5078
+ return self._IntentionVerifyType
5079
+
5080
+ @IntentionVerifyType.setter
5081
+ def IntentionVerifyType(self, IntentionVerifyType):
5082
+ self._IntentionVerifyType = IntentionVerifyType
5083
+
4994
5084
  @property
4995
5085
  def RequestId(self):
4996
5086
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -5025,6 +5115,8 @@ class GetEidResultResponse(AbstractModel):
5025
5115
  if params.get("IntentionActionResult") is not None:
5026
5116
  self._IntentionActionResult = IntentionActionResult()
5027
5117
  self._IntentionActionResult._deserialize(params.get("IntentionActionResult"))
5118
+ self._IsVerifyIntention = params.get("IsVerifyIntention")
5119
+ self._IntentionVerifyType = params.get("IntentionVerifyType")
5028
5120
  self._RequestId = params.get("RequestId")
5029
5121
 
5030
5122
 
@@ -719,6 +719,10 @@ class CompareFaceRequest(AbstractModel):
719
719
  - 本参数的作用为,当图片中的人脸被旋转且图片没有exif信息时,如果不开启图片旋转识别支持则无法正确检测、识别图片中的人脸。
720
720
  - 若您确认图片包含exif信息或者您确认输入图中人脸不会出现被旋转情况,请不要开启本参数。开启后,整体耗时将可能增加数百毫秒。
721
721
  :type NeedRotateDetection: int
722
+ :param _FaceMatchingStrategy: 若图片中包含多张人脸,指定选取策略,默认为0。
723
+ - 0:选取其中置信度最高的人脸
724
+ - 1:选取其中面积最大的人脸。
725
+ :type FaceMatchingStrategy: int
722
726
  """
723
727
  self._ImageA = None
724
728
  self._ImageB = None
@@ -727,6 +731,7 @@ class CompareFaceRequest(AbstractModel):
727
731
  self._FaceModelVersion = None
728
732
  self._QualityControl = None
729
733
  self._NeedRotateDetection = None
734
+ self._FaceMatchingStrategy = None
730
735
 
731
736
  @property
732
737
  def ImageA(self):
@@ -844,6 +849,19 @@ class CompareFaceRequest(AbstractModel):
844
849
  def NeedRotateDetection(self, NeedRotateDetection):
845
850
  self._NeedRotateDetection = NeedRotateDetection
846
851
 
852
+ @property
853
+ def FaceMatchingStrategy(self):
854
+ """若图片中包含多张人脸,指定选取策略,默认为0。
855
+ - 0:选取其中置信度最高的人脸
856
+ - 1:选取其中面积最大的人脸。
857
+ :rtype: int
858
+ """
859
+ return self._FaceMatchingStrategy
860
+
861
+ @FaceMatchingStrategy.setter
862
+ def FaceMatchingStrategy(self, FaceMatchingStrategy):
863
+ self._FaceMatchingStrategy = FaceMatchingStrategy
864
+
847
865
 
848
866
  def _deserialize(self, params):
849
867
  self._ImageA = params.get("ImageA")
@@ -853,6 +871,7 @@ class CompareFaceRequest(AbstractModel):
853
871
  self._FaceModelVersion = params.get("FaceModelVersion")
854
872
  self._QualityControl = params.get("QualityControl")
855
873
  self._NeedRotateDetection = params.get("NeedRotateDetection")
874
+ self._FaceMatchingStrategy = params.get("FaceMatchingStrategy")
856
875
  memeber_set = set(params.keys())
857
876
  for name, value in vars(self).items():
858
877
  property_name = name[1:]
@@ -62,6 +62,9 @@ FAILEDOPERATION_DESCRIBEDISKCONFIGQUOTAFAILED = 'FailedOperation.DescribeDiskCon
62
62
  # 查询云硬盘是否可以退还操作失败。
63
63
  FAILEDOPERATION_DESCRIBEDISKSRETURNABLEERROR = 'FailedOperation.DescribeDisksReturnableError'
64
64
 
65
+ # 查询CVM镜像列表失败。
66
+ FAILEDOPERATION_DESCRIBEIMAGESFAILED = 'FailedOperation.DescribeImagesFailed'
67
+
65
68
  # 查询实例状态错误。
66
69
  FAILEDOPERATION_DESCRIBEINSTANCESTATUS = 'FailedOperation.DescribeInstanceStatus'
67
70
 
@@ -89,6 +92,9 @@ FAILEDOPERATION_DOCKEROPERATIONFAILED = 'FailedOperation.DockerOperationFailed'
89
92
  # 对防火墙规则的操作失败。
90
93
  FAILEDOPERATION_FIREWALLRULESOPERATIONFAILED = 'FailedOperation.FirewallRulesOperationFailed'
91
94
 
95
+ # 操作镜像失败。
96
+ FAILEDOPERATION_IMAGEOPERATIONFAILED = 'FailedOperation.ImageOperationFailed'
97
+
92
98
  # 对密钥对的导入操作失败。
93
99
  FAILEDOPERATION_IMPORTKEYPAIRFAILED = 'FailedOperation.ImportKeyPairFailed'
94
100
 
@@ -377,6 +383,9 @@ INVALIDPARAMETERVALUE_INVALIDDISKSIZE = 'InvalidParameterValue.InvalidDiskSize'
377
383
  # 云硬盘类型非法。
378
384
  INVALIDPARAMETERVALUE_INVALIDDISKTYPE = 'InvalidParameterValue.InvalidDiskType'
379
385
 
386
+ # 镜像ID格式非法。
387
+ INVALIDPARAMETERVALUE_INVALIDIMAGEIDMALFORMED = 'InvalidParameterValue.InvalidImageIdMalformed'
388
+
380
389
  # 参数值非法,IP 地址格式非法。
381
390
  INVALIDPARAMETERVALUE_INVALIDIPFORMAT = 'InvalidParameterValue.InvalidIpFormat'
382
391
 
@@ -566,6 +575,9 @@ RESOURCEINUSE_BLUEPRINTMODIFYINGSHAREPERMISSION = 'ResourceInUse.BlueprintModify
566
575
  # 磁盘备份点正在使用中,不支持此操作。
567
576
  RESOURCEINUSE_DISKBACKUPINUSE = 'ResourceInUse.DiskBackupInUse'
568
577
 
578
+ # 镜像在使用中,不支持此操作。
579
+ RESOURCEINUSE_IMAGEINUSE = 'ResourceInUse.ImageInUse'
580
+
569
581
  # 密钥对正在使用中。
570
582
  RESOURCEINUSE_KEYPAIRINUSE = 'ResourceInUse.KeyPairInUse'
571
583
 
@@ -611,6 +623,9 @@ RESOURCENOTFOUND_FIREWALLTEMPLATENOTFOUND = 'ResourceNotFound.FirewallTemplateNo
611
623
  # 防火墙模板规则不存在。
612
624
  RESOURCENOTFOUND_FIREWALLTEMPLATERULENOTFOUND = 'ResourceNotFound.FirewallTemplateRuleNotFound'
613
625
 
626
+ # 镜像ID不存在。
627
+ RESOURCENOTFOUND_IMAGEIDNOTFOUND = 'ResourceNotFound.ImageIdNotFound'
628
+
614
629
  # 实例镜像不存在。
615
630
  RESOURCENOTFOUND_INSTANCEBLUEPRINTNOTFOUND = 'ResourceNotFound.InstanceBlueprintNotFound'
616
631
 
@@ -716,6 +731,9 @@ UNSUPPORTEDOPERATION = 'UnsupportedOperation'
716
731
  # 将磁盘备份点回滚到其他盘,不支持该操作。
717
732
  UNSUPPORTEDOPERATION_APPLYDISKBACKUPTOANOTHERDISK = 'UnsupportedOperation.ApplyDiskBackupToAnotherDisk'
718
733
 
734
+ # 获取角色授权失败,请授予 Lighthouse 相关角色后进行重试。
735
+ UNSUPPORTEDOPERATION_ASSUMEROLEFAILED = 'UnsupportedOperation.AssumeRoleFailed'
736
+
719
737
  # 没有实例不支持关联到云联网。
720
738
  UNSUPPORTEDOPERATION_ATTACHCCNCONDITIONUNSATISFIED = 'UnsupportedOperation.AttachCcnConditionUnsatisfied'
721
739
 
@@ -767,6 +785,15 @@ UNSUPPORTEDOPERATION_FIREWALLBUSY = 'UnsupportedOperation.FirewallBusy'
767
785
  # 指定的防火墙版本号和当前版本不一致。
768
786
  UNSUPPORTEDOPERATION_FIREWALLVERSIONMISMATCH = 'UnsupportedOperation.FirewallVersionMismatch'
769
787
 
788
+ # 镜像已经被共享。不支持此操作。
789
+ UNSUPPORTEDOPERATION_IMAGEALREADYSHARED = 'UnsupportedOperation.ImageAlreadyShared'
790
+
791
+ # 镜像整在被资源进行操作,镜像被占用,不支持此操作。请稍后再试。
792
+ UNSUPPORTEDOPERATION_IMAGEOCCUPIED = 'UnsupportedOperation.ImageOccupied'
793
+
794
+ # 镜像不支持共享。
795
+ UNSUPPORTEDOPERATION_IMAGEUNABLETOSHARE = 'UnsupportedOperation.ImageUnableToShare'
796
+
770
797
  # 实例展示区域不支持该操作。
771
798
  UNSUPPORTEDOPERATION_INSTANCEDISPLAYAREANOTSUPPORTOPERATION = 'UnsupportedOperation.InstanceDisplayAreaNotSupportOperation'
772
799
 
@@ -1172,6 +1172,29 @@ class LighthouseClient(AbstractClient):
1172
1172
  raise TencentCloudSDKException(type(e).__name__, str(e))
1173
1173
 
1174
1174
 
1175
+ def DescribeImagesToShare(self, request):
1176
+ """本接口 (DescribeImagesToShare) 用于查询CVM的自定义镜像列表共享到轻量应用服务器。
1177
+
1178
+ :param request: Request instance for DescribeImagesToShare.
1179
+ :type request: :class:`tencentcloud.lighthouse.v20200324.models.DescribeImagesToShareRequest`
1180
+ :rtype: :class:`tencentcloud.lighthouse.v20200324.models.DescribeImagesToShareResponse`
1181
+
1182
+ """
1183
+ try:
1184
+ params = request._serialize()
1185
+ headers = request.headers
1186
+ body = self.call("DescribeImagesToShare", params, headers=headers)
1187
+ response = json.loads(body)
1188
+ model = models.DescribeImagesToShareResponse()
1189
+ model._deserialize(response["Response"])
1190
+ return model
1191
+ except Exception as e:
1192
+ if isinstance(e, TencentCloudSDKException):
1193
+ raise
1194
+ else:
1195
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1196
+
1197
+
1175
1198
  def DescribeInstanceVncUrl(self, request):
1176
1199
  """本接口 ( DescribeInstanceVncUrl ) 用于查询实例管理终端地址,获取的地址可用于实例的 VNC 登录。
1177
1200
 
@@ -2021,6 +2044,36 @@ class LighthouseClient(AbstractClient):
2021
2044
  raise TencentCloudSDKException(type(e).__name__, str(e))
2022
2045
 
2023
2046
 
2047
+ def ModifyImageSharePermission(self, request):
2048
+ """本接口 (ModifyImageSharePermission) 用于共享和取消共享CVM自定义镜像到轻量应用服务器服务。
2049
+ CVM镜像共享到轻量应用服务器镜像需要满足如下条件:
2050
+ 1.已共享过的镜像不支持再次共享。
2051
+ 2.外部导入的镜像不支持共享。
2052
+ 3.整机镜像不支持共享。
2053
+ 4.镜像要支持Cloudinit才支持共享。
2054
+ 5.镜像的Platform和OsName要满足。
2055
+ 6.NORMAL状态的镜像才支持共享。
2056
+
2057
+ :param request: Request instance for ModifyImageSharePermission.
2058
+ :type request: :class:`tencentcloud.lighthouse.v20200324.models.ModifyImageSharePermissionRequest`
2059
+ :rtype: :class:`tencentcloud.lighthouse.v20200324.models.ModifyImageSharePermissionResponse`
2060
+
2061
+ """
2062
+ try:
2063
+ params = request._serialize()
2064
+ headers = request.headers
2065
+ body = self.call("ModifyImageSharePermission", params, headers=headers)
2066
+ response = json.loads(body)
2067
+ model = models.ModifyImageSharePermissionResponse()
2068
+ model._deserialize(response["Response"])
2069
+ return model
2070
+ except Exception as e:
2071
+ if isinstance(e, TencentCloudSDKException):
2072
+ raise
2073
+ else:
2074
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2075
+
2076
+
2024
2077
  def ModifyInstancesAttribute(self, request):
2025
2078
  """本接口(ModifyInstancesAttribute)用于修改实例的属性。
2026
2079
  * “实例名称”仅为方便用户自己管理之用。