tencentcloud-sdk-python 3.0.1124__py2.py3-none-any.whl → 3.0.1126__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 (28) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/models.py +1 -2
  3. tencentcloud/bri/v20190328/bri_client.py +3 -1
  4. tencentcloud/ccc/v20200210/models.py +18 -0
  5. tencentcloud/dts/v20211206/models.py +27 -2
  6. tencentcloud/ess/v20201111/models.py +33 -2
  7. tencentcloud/essbasic/v20210526/models.py +40 -3
  8. tencentcloud/faceid/v20180301/models.py +2 -0
  9. tencentcloud/gs/v20191118/gs_client.py +23 -0
  10. tencentcloud/gs/v20191118/models.py +70 -0
  11. tencentcloud/lcic/v20220817/models.py +5 -0
  12. tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
  13. tencentcloud/lighthouse/v20200324/models.py +7 -1
  14. tencentcloud/mongodb/v20190725/errorcodes.py +9 -0
  15. tencentcloud/mongodb/v20190725/models.py +281 -0
  16. tencentcloud/mongodb/v20190725/mongodb_client.py +24 -0
  17. tencentcloud/organization/v20210331/models.py +55 -55
  18. tencentcloud/sqlserver/v20180328/models.py +75 -0
  19. tencentcloud/ssl/v20191205/models.py +12 -0
  20. tencentcloud/tione/v20211111/errorcodes.py +3 -0
  21. tencentcloud/tione/v20211111/models.py +42 -2
  22. tencentcloud/trtc/v20190722/errorcodes.py +3 -0
  23. tencentcloud/trtc/v20190722/models.py +17 -0
  24. {tencentcloud_sdk_python-3.0.1124.dist-info → tencentcloud_sdk_python-3.0.1126.dist-info}/METADATA +1 -1
  25. {tencentcloud_sdk_python-3.0.1124.dist-info → tencentcloud_sdk_python-3.0.1126.dist-info}/RECORD +28 -28
  26. {tencentcloud_sdk_python-3.0.1124.dist-info → tencentcloud_sdk_python-3.0.1126.dist-info}/LICENSE +0 -0
  27. {tencentcloud_sdk_python-3.0.1124.dist-info → tencentcloud_sdk_python-3.0.1126.dist-info}/WHEEL +0 -0
  28. {tencentcloud_sdk_python-3.0.1124.dist-info → tencentcloud_sdk_python-3.0.1126.dist-info}/top_level.txt +0 -0
@@ -4010,6 +4010,287 @@ class DescribeSpecInfoResponse(AbstractModel):
4010
4010
  self._RequestId = params.get("RequestId")
4011
4011
 
4012
4012
 
4013
+ class FBKeyValue(AbstractModel):
4014
+ """按key回档,用于筛选数据的键值对
4015
+
4016
+ """
4017
+
4018
+ def __init__(self):
4019
+ r"""
4020
+ :param _Key: 用于按key回档过滤的key
4021
+ :type Key: str
4022
+ :param _Value: 用于按key回档过滤的value
4023
+ :type Value: str
4024
+ """
4025
+ self._Key = None
4026
+ self._Value = None
4027
+
4028
+ @property
4029
+ def Key(self):
4030
+ return self._Key
4031
+
4032
+ @Key.setter
4033
+ def Key(self, Key):
4034
+ self._Key = Key
4035
+
4036
+ @property
4037
+ def Value(self):
4038
+ return self._Value
4039
+
4040
+ @Value.setter
4041
+ def Value(self, Value):
4042
+ self._Value = Value
4043
+
4044
+
4045
+ def _deserialize(self, params):
4046
+ self._Key = params.get("Key")
4047
+ self._Value = params.get("Value")
4048
+ memeber_set = set(params.keys())
4049
+ for name, value in vars(self).items():
4050
+ property_name = name[1:]
4051
+ if property_name in memeber_set:
4052
+ memeber_set.remove(property_name)
4053
+ if len(memeber_set) > 0:
4054
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4055
+
4056
+
4057
+
4058
+ class FlashBackDBInstanceRequest(AbstractModel):
4059
+ """FlashBackDBInstance请求参数结构体
4060
+
4061
+ """
4062
+
4063
+ def __init__(self):
4064
+ r"""
4065
+ :param _InstanceId: 开启按 Key 回档的实例 ID。
4066
+ :type InstanceId: str
4067
+ :param _TargetFlashbackTime: 源数据想恢复到的时间。
4068
+ :type TargetFlashbackTime: str
4069
+ :param _TargetDatabases: 源数据所在的库表信息。
4070
+ :type TargetDatabases: list of FlashbackDatabase
4071
+ :param _TargetInstanceId: 数据最终写入的实例 ID。
4072
+ :type TargetInstanceId: str
4073
+ """
4074
+ self._InstanceId = None
4075
+ self._TargetFlashbackTime = None
4076
+ self._TargetDatabases = None
4077
+ self._TargetInstanceId = None
4078
+
4079
+ @property
4080
+ def InstanceId(self):
4081
+ return self._InstanceId
4082
+
4083
+ @InstanceId.setter
4084
+ def InstanceId(self, InstanceId):
4085
+ self._InstanceId = InstanceId
4086
+
4087
+ @property
4088
+ def TargetFlashbackTime(self):
4089
+ return self._TargetFlashbackTime
4090
+
4091
+ @TargetFlashbackTime.setter
4092
+ def TargetFlashbackTime(self, TargetFlashbackTime):
4093
+ self._TargetFlashbackTime = TargetFlashbackTime
4094
+
4095
+ @property
4096
+ def TargetDatabases(self):
4097
+ return self._TargetDatabases
4098
+
4099
+ @TargetDatabases.setter
4100
+ def TargetDatabases(self, TargetDatabases):
4101
+ self._TargetDatabases = TargetDatabases
4102
+
4103
+ @property
4104
+ def TargetInstanceId(self):
4105
+ return self._TargetInstanceId
4106
+
4107
+ @TargetInstanceId.setter
4108
+ def TargetInstanceId(self, TargetInstanceId):
4109
+ self._TargetInstanceId = TargetInstanceId
4110
+
4111
+
4112
+ def _deserialize(self, params):
4113
+ self._InstanceId = params.get("InstanceId")
4114
+ self._TargetFlashbackTime = params.get("TargetFlashbackTime")
4115
+ if params.get("TargetDatabases") is not None:
4116
+ self._TargetDatabases = []
4117
+ for item in params.get("TargetDatabases"):
4118
+ obj = FlashbackDatabase()
4119
+ obj._deserialize(item)
4120
+ self._TargetDatabases.append(obj)
4121
+ self._TargetInstanceId = params.get("TargetInstanceId")
4122
+ memeber_set = set(params.keys())
4123
+ for name, value in vars(self).items():
4124
+ property_name = name[1:]
4125
+ if property_name in memeber_set:
4126
+ memeber_set.remove(property_name)
4127
+ if len(memeber_set) > 0:
4128
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4129
+
4130
+
4131
+
4132
+ class FlashBackDBInstanceResponse(AbstractModel):
4133
+ """FlashBackDBInstance返回参数结构体
4134
+
4135
+ """
4136
+
4137
+ def __init__(self):
4138
+ r"""
4139
+ :param _FlowId: 回档数据异步任务 ID。
4140
+ 注意:此字段可能返回 null,表示取不到有效值。
4141
+ :type FlowId: int
4142
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4143
+ :type RequestId: str
4144
+ """
4145
+ self._FlowId = None
4146
+ self._RequestId = None
4147
+
4148
+ @property
4149
+ def FlowId(self):
4150
+ return self._FlowId
4151
+
4152
+ @FlowId.setter
4153
+ def FlowId(self, FlowId):
4154
+ self._FlowId = FlowId
4155
+
4156
+ @property
4157
+ def RequestId(self):
4158
+ return self._RequestId
4159
+
4160
+ @RequestId.setter
4161
+ def RequestId(self, RequestId):
4162
+ self._RequestId = RequestId
4163
+
4164
+
4165
+ def _deserialize(self, params):
4166
+ self._FlowId = params.get("FlowId")
4167
+ self._RequestId = params.get("RequestId")
4168
+
4169
+
4170
+ class FlashbackCollection(AbstractModel):
4171
+ """按key回档,源数据所在的表
4172
+
4173
+ """
4174
+
4175
+ def __init__(self):
4176
+ r"""
4177
+ :param _CollectionName: 按key回档指定的集合名
4178
+ :type CollectionName: str
4179
+ :param _TargetResultCollectionName: 按key回档到的目标集合名
4180
+ :type TargetResultCollectionName: str
4181
+ :param _FilterKey: 上传到cos的文件的value所对应的key值
4182
+ :type FilterKey: str
4183
+ :param _KeyValues: 用于按key回档过滤的键值对
4184
+ :type KeyValues: list of FBKeyValue
4185
+ """
4186
+ self._CollectionName = None
4187
+ self._TargetResultCollectionName = None
4188
+ self._FilterKey = None
4189
+ self._KeyValues = None
4190
+
4191
+ @property
4192
+ def CollectionName(self):
4193
+ return self._CollectionName
4194
+
4195
+ @CollectionName.setter
4196
+ def CollectionName(self, CollectionName):
4197
+ self._CollectionName = CollectionName
4198
+
4199
+ @property
4200
+ def TargetResultCollectionName(self):
4201
+ return self._TargetResultCollectionName
4202
+
4203
+ @TargetResultCollectionName.setter
4204
+ def TargetResultCollectionName(self, TargetResultCollectionName):
4205
+ self._TargetResultCollectionName = TargetResultCollectionName
4206
+
4207
+ @property
4208
+ def FilterKey(self):
4209
+ return self._FilterKey
4210
+
4211
+ @FilterKey.setter
4212
+ def FilterKey(self, FilterKey):
4213
+ self._FilterKey = FilterKey
4214
+
4215
+ @property
4216
+ def KeyValues(self):
4217
+ return self._KeyValues
4218
+
4219
+ @KeyValues.setter
4220
+ def KeyValues(self, KeyValues):
4221
+ self._KeyValues = KeyValues
4222
+
4223
+
4224
+ def _deserialize(self, params):
4225
+ self._CollectionName = params.get("CollectionName")
4226
+ self._TargetResultCollectionName = params.get("TargetResultCollectionName")
4227
+ self._FilterKey = params.get("FilterKey")
4228
+ if params.get("KeyValues") is not None:
4229
+ self._KeyValues = []
4230
+ for item in params.get("KeyValues"):
4231
+ obj = FBKeyValue()
4232
+ obj._deserialize(item)
4233
+ self._KeyValues.append(obj)
4234
+ memeber_set = set(params.keys())
4235
+ for name, value in vars(self).items():
4236
+ property_name = name[1:]
4237
+ if property_name in memeber_set:
4238
+ memeber_set.remove(property_name)
4239
+ if len(memeber_set) > 0:
4240
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4241
+
4242
+
4243
+
4244
+ class FlashbackDatabase(AbstractModel):
4245
+ """按key回档,源数据所在的库表
4246
+
4247
+ """
4248
+
4249
+ def __init__(self):
4250
+ r"""
4251
+ :param _DBName: 按key回档源数据所在库
4252
+ :type DBName: str
4253
+ :param _Collections: 按key回档的集群数组
4254
+ :type Collections: list of FlashbackCollection
4255
+ """
4256
+ self._DBName = None
4257
+ self._Collections = None
4258
+
4259
+ @property
4260
+ def DBName(self):
4261
+ return self._DBName
4262
+
4263
+ @DBName.setter
4264
+ def DBName(self, DBName):
4265
+ self._DBName = DBName
4266
+
4267
+ @property
4268
+ def Collections(self):
4269
+ return self._Collections
4270
+
4271
+ @Collections.setter
4272
+ def Collections(self, Collections):
4273
+ self._Collections = Collections
4274
+
4275
+
4276
+ def _deserialize(self, params):
4277
+ self._DBName = params.get("DBName")
4278
+ if params.get("Collections") is not None:
4279
+ self._Collections = []
4280
+ for item in params.get("Collections"):
4281
+ obj = FlashbackCollection()
4282
+ obj._deserialize(item)
4283
+ self._Collections.append(obj)
4284
+ memeber_set = set(params.keys())
4285
+ for name, value in vars(self).items():
4286
+ property_name = name[1:]
4287
+ if property_name in memeber_set:
4288
+ memeber_set.remove(property_name)
4289
+ if len(memeber_set) > 0:
4290
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4291
+
4292
+
4293
+
4013
4294
  class FlushInstanceRouterConfigRequest(AbstractModel):
4014
4295
  """FlushInstanceRouterConfig请求参数结构体
4015
4296
 
@@ -509,6 +509,30 @@ class MongodbClient(AbstractClient):
509
509
  raise TencentCloudSDKException(type(e).__name__, str(e))
510
510
 
511
511
 
512
+ def FlashBackDBInstance(self, request):
513
+ """该接口用于发起按 Key 闪回任务,依据数据的闪回 Key(默认为 id)对数据进行极速回档,快速恢复业务。
514
+ **说明:按 Key 闪回于2023年09月11日正式进行公测,在此期间,该接口仅对公测用户开放。**
515
+
516
+ :param request: Request instance for FlashBackDBInstance.
517
+ :type request: :class:`tencentcloud.mongodb.v20190725.models.FlashBackDBInstanceRequest`
518
+ :rtype: :class:`tencentcloud.mongodb.v20190725.models.FlashBackDBInstanceResponse`
519
+
520
+ """
521
+ try:
522
+ params = request._serialize()
523
+ headers = request.headers
524
+ body = self.call("FlashBackDBInstance", params, headers=headers)
525
+ response = json.loads(body)
526
+ model = models.FlashBackDBInstanceResponse()
527
+ model._deserialize(response["Response"])
528
+ return model
529
+ except Exception as e:
530
+ if isinstance(e, TencentCloudSDKException):
531
+ raise
532
+ else:
533
+ raise TencentCloudSDKException(type(e).__name__, str(e))
534
+
535
+
512
536
  def FlushInstanceRouterConfig(self, request):
513
537
  """在所有mongos上执行FlushRouterConfig命令
514
538
 
@@ -25,13 +25,13 @@ class AddOrganizationMemberEmailRequest(AbstractModel):
25
25
 
26
26
  def __init__(self):
27
27
  r"""
28
- :param _MemberUin: 成员Uin
28
+ :param _MemberUin: 成员Uin
29
29
  :type MemberUin: int
30
- :param _Email: 邮箱地址
30
+ :param _Email: 邮箱地址。
31
31
  :type Email: str
32
- :param _CountryCode: 国际区号
32
+ :param _CountryCode: 国际区号。
33
33
  :type CountryCode: str
34
- :param _Phone: 手机号
34
+ :param _Phone: 手机号。
35
35
  :type Phone: str
36
36
  """
37
37
  self._MemberUin = None
@@ -132,7 +132,7 @@ class AddOrganizationNodeRequest(AbstractModel):
132
132
 
133
133
  def __init__(self):
134
134
  r"""
135
- :param _ParentNodeId: 父节点ID。可以调用DescribeOrganizationNodes获取
135
+ :param _ParentNodeId: 父节点ID。可以通过[DescribeOrganizationNodes](https://cloud.tencent.com/document/product/850/82926)获取
136
136
  :type ParentNodeId: int
137
137
  :param _Name: 节点名称。最大长度为40个字符,支持英文字母、数字、汉字、符号+@、&._[]-
138
138
  :type Name: str
@@ -315,7 +315,7 @@ class AddShareUnitRequest(AbstractModel):
315
315
  r"""
316
316
  :param _Name: 共享单元名称。仅支持大小写字母、数字、-、以及_的组合,3-128个字符。
317
317
  :type Name: str
318
- :param _Area: 共享单元地域。可通过接口DescribeShareAreas获取支持共享的地域。
318
+ :param _Area: 共享单元地域。可通过接口[DescribeShareAreas](https://cloud.tencent.com/document/product/850/103050)获取支持共享的地域。
319
319
  :type Area: str
320
320
  :param _Description: 共享单元描述。最大128个字符。
321
321
  :type Description: str
@@ -570,7 +570,7 @@ class BindOrganizationMemberAuthAccountRequest(AbstractModel):
570
570
  r"""
571
571
  :param _MemberUin: 成员Uin。
572
572
  :type MemberUin: int
573
- :param _PolicyId: 策略ID。可以调用DescribeOrganizationMemberPolicies获取
573
+ :param _PolicyId: 策略ID。可以调用[DescribeOrganizationMemberPolicies](https://cloud.tencent.com/document/product/850/82935)获取
574
574
  :type PolicyId: int
575
575
  :param _OrgSubAccountUins: 组织管理员子账号Uin列表。最大5个
576
576
  :type OrgSubAccountUins: list of int
@@ -652,7 +652,7 @@ class CancelOrganizationMemberAuthAccountRequest(AbstractModel):
652
652
  r"""
653
653
  :param _MemberUin: 成员Uin。
654
654
  :type MemberUin: int
655
- :param _PolicyId: 策略ID
655
+ :param _PolicyId: 策略ID。可以通过[DescribeOrganizationMemberPolicies](https://cloud.tencent.com/document/product/850/82935)获取
656
656
  :type PolicyId: int
657
657
  :param _OrgSubAccountUin: 组织子账号Uin。
658
658
  :type OrgSubAccountUin: int
@@ -732,7 +732,7 @@ class CheckAccountDeleteRequest(AbstractModel):
732
732
 
733
733
  def __init__(self):
734
734
  r"""
735
- :param _MemberUin: 成员uin
735
+ :param _MemberUin: 成员Uin
736
736
  :type MemberUin: int
737
737
  """
738
738
  self._MemberUin = None
@@ -916,9 +916,9 @@ class CreateOrganizationMemberAuthIdentityRequest(AbstractModel):
916
916
 
917
917
  def __init__(self):
918
918
  r"""
919
- :param _MemberUins: 成员uin列表。最多10个
919
+ :param _MemberUins: 成员Uin列表。最多10个
920
920
  :type MemberUins: list of int non-negative
921
- :param _IdentityIds: 身份Id列表。最多5
921
+ :param _IdentityIds: 身份Id列表。最多5个,可以通过[ListOrganizationIdentity](https://cloud.tencent.com/document/product/850/82934)获取
922
922
  :type IdentityIds: list of int non-negative
923
923
  """
924
924
  self._MemberUins = None
@@ -990,7 +990,7 @@ class CreateOrganizationMemberPolicyRequest(AbstractModel):
990
990
  :type MemberUin: int
991
991
  :param _PolicyName: 策略名。最大长度为128个字符,支持英文字母、数字、符号+=,.@_-
992
992
  :type PolicyName: str
993
- :param _IdentityId: 成员访问身份ID。可以调用DescribeOrganizationMemberAuthIdentities获取
993
+ :param _IdentityId: 成员访问身份ID。可以调用[DescribeOrganizationMemberAuthIdentities](https://cloud.tencent.com/document/product/850/82936)获取
994
994
  :type IdentityId: int
995
995
  :param _Description: 描述。
996
996
  :type Description: str
@@ -1099,7 +1099,7 @@ class CreateOrganizationMemberRequest(AbstractModel):
1099
1099
  :type PolicyType: str
1100
1100
  :param _PermissionIds: 成员财务权限ID列表。取值:1-查看账单、2-查看余额、3-资金划拨、4-合并出账、5-开票、6-优惠继承、7-代付费,1、2 默认必须
1101
1101
  :type PermissionIds: list of int non-negative
1102
- :param _NodeId: 成员所属部门的节点ID。可以调用DescribeOrganizationNodes获取
1102
+ :param _NodeId: 成员所属部门的节点ID。可以通过[DescribeOrganizationNodes](https://cloud.tencent.com/document/product/850/82926)获取
1103
1103
  :type NodeId: int
1104
1104
  :param _AccountName: 账号名称。最大长度为25个字符,支持英文字母、数字、汉字、符号+@、&._[]-:,
1105
1105
  :type AccountName: str
@@ -1276,7 +1276,7 @@ class CreateOrganizationMembersPolicyRequest(AbstractModel):
1276
1276
  :type MemberUins: list of int
1277
1277
  :param _PolicyName: 策略名。长度1~128个字符,支持英文字母、数字、符号+=,.@_-
1278
1278
  :type PolicyName: str
1279
- :param _IdentityId: 成员访问身份ID
1279
+ :param _IdentityId: 成员访问身份ID。可以通过[ListOrganizationIdentity](https://cloud.tencent.com/document/product/850/82934)获取
1280
1280
  :type IdentityId: int
1281
1281
  :param _Description: 策略描述。最大长度为128个字符
1282
1282
  :type Description: str
@@ -1434,7 +1434,7 @@ class DeleteAccountRequest(AbstractModel):
1434
1434
 
1435
1435
  def __init__(self):
1436
1436
  r"""
1437
- :param _MemberUin: 成员uin
1437
+ :param _MemberUin: 成员Uin
1438
1438
  :type MemberUin: int
1439
1439
  """
1440
1440
  self._MemberUin = None
@@ -1492,7 +1492,7 @@ class DeleteOrganizationIdentityRequest(AbstractModel):
1492
1492
 
1493
1493
  def __init__(self):
1494
1494
  r"""
1495
- :param _IdentityId: 身份ID
1495
+ :param _IdentityId: 身份ID。可以通过[ListOrganizationIdentity](https://cloud.tencent.com/document/product/850/82934)获取
1496
1496
  :type IdentityId: int
1497
1497
  """
1498
1498
  self._IdentityId = None
@@ -1550,9 +1550,9 @@ class DeleteOrganizationMemberAuthIdentityRequest(AbstractModel):
1550
1550
 
1551
1551
  def __init__(self):
1552
1552
  r"""
1553
- :param _MemberUin: 成员uin
1553
+ :param _MemberUin: 成员Uin
1554
1554
  :type MemberUin: int
1555
- :param _IdentityId: 身份Id。
1555
+ :param _IdentityId: 身份ID。可以通过[ListOrganizationIdentity](https://cloud.tencent.com/document/product/850/82934)获取
1556
1556
  :type IdentityId: int
1557
1557
  """
1558
1558
  self._MemberUin = None
@@ -1620,7 +1620,7 @@ class DeleteOrganizationMembersPolicyRequest(AbstractModel):
1620
1620
 
1621
1621
  def __init__(self):
1622
1622
  r"""
1623
- :param _PolicyId: 访问策略ID
1623
+ :param _PolicyId: 访问策略ID。可以通过[DescribeOrganizationMemberPolicies](https://cloud.tencent.com/document/product/850/82935)获取
1624
1624
  :type PolicyId: int
1625
1625
  """
1626
1626
  self._PolicyId = None
@@ -1678,7 +1678,7 @@ class DeleteOrganizationMembersRequest(AbstractModel):
1678
1678
 
1679
1679
  def __init__(self):
1680
1680
  r"""
1681
- :param _MemberUin: 被删除成员的UIN列表。
1681
+ :param _MemberUin: 被删除成员的Uin列表。
1682
1682
  :type MemberUin: list of int
1683
1683
  """
1684
1684
  self._MemberUin = None
@@ -1736,7 +1736,7 @@ class DeleteOrganizationNodesRequest(AbstractModel):
1736
1736
 
1737
1737
  def __init__(self):
1738
1738
  r"""
1739
- :param _NodeId: 节点ID列表。
1739
+ :param _NodeId: 节点ID列表。可以通过[DescribeOrganizationNodes](https://cloud.tencent.com/document/product/850/82926)获取
1740
1740
  :type NodeId: list of int
1741
1741
  """
1742
1742
  self._NodeId = None
@@ -1949,7 +1949,7 @@ class DeleteShareUnitResourcesRequest(AbstractModel):
1949
1949
  :type UnitId: str
1950
1950
  :param _Area: 共享单元地域。
1951
1951
  :type Area: str
1952
- :param _Type: 资源类型。支持共享的资源类型。
1952
+ :param _Type: 共享资源类型。支持共享的资源类型,请参见[资源共享概述](https://cloud.tencent.com/document/product/850/59489)
1953
1953
  :type Type: str
1954
1954
  :param _Resources: 共享资源列表。最大10个。
1955
1955
  :type Resources: list of ShareResource
@@ -2069,9 +2069,9 @@ class DescribeOrganizationAuthNodeRequest(AbstractModel):
2069
2069
 
2070
2070
  def __init__(self):
2071
2071
  r"""
2072
- :param _Offset: 偏移量。
2072
+ :param _Offset: 偏移量。取值是limit的整数倍。默认值 : 0。
2073
2073
  :type Offset: int
2074
- :param _Limit: 限制数目。最大50
2074
+ :param _Limit: 限制数目。取值范围:1~50。默认值:10。
2075
2075
  :type Limit: int
2076
2076
  :param _AuthName: 互信主体名称。
2077
2077
  :type AuthName: str
@@ -2618,13 +2618,13 @@ class DescribeOrganizationMemberAuthAccountsRequest(AbstractModel):
2618
2618
 
2619
2619
  def __init__(self):
2620
2620
  r"""
2621
- :param _Offset: 偏移量。
2621
+ :param _Offset: 偏移量。取值是limit的整数倍。默认值 : 0。
2622
2622
  :type Offset: int
2623
- :param _Limit: 限制数目。
2623
+ :param _Limit: 限制数目。取值范围:1~50。默认值:10。
2624
2624
  :type Limit: int
2625
2625
  :param _MemberUin: 成员Uin。
2626
2626
  :type MemberUin: int
2627
- :param _PolicyId: 策略ID
2627
+ :param _PolicyId: 策略ID。可以通过[DescribeOrganizationMemberPolicies](https://cloud.tencent.com/document/product/850/82935)
2628
2628
  :type PolicyId: int
2629
2629
  """
2630
2630
  self._Offset = None
@@ -2749,7 +2749,7 @@ class DescribeOrganizationMemberAuthIdentitiesRequest(AbstractModel):
2749
2749
  :type Limit: int
2750
2750
  :param _MemberUin: 组织成员Uin。入参MemberUin与IdentityId至少填写一个
2751
2751
  :type MemberUin: int
2752
- :param _IdentityId: 身份ID。入参MemberUin与IdentityId至少填写一个
2752
+ :param _IdentityId: 身份ID。入参MemberUin与IdentityId至少填写一个, 可以通过[ListOrganizationIdentity](https://cloud.tencent.com/document/product/850/82934)获取
2753
2753
  :type IdentityId: int
2754
2754
  """
2755
2755
  self._Offset = None
@@ -2868,7 +2868,7 @@ class DescribeOrganizationMemberEmailBindRequest(AbstractModel):
2868
2868
 
2869
2869
  def __init__(self):
2870
2870
  r"""
2871
- :param _MemberUin: 成员Uin
2871
+ :param _MemberUin: 成员Uin
2872
2872
  :type MemberUin: int
2873
2873
  """
2874
2874
  self._MemberUin = None
@@ -2901,31 +2901,31 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel):
2901
2901
 
2902
2902
  def __init__(self):
2903
2903
  r"""
2904
- :param _BindId: 绑定ID
2904
+ :param _BindId: 绑定ID
2905
2905
  注意:此字段可能返回 null,表示取不到有效值。
2906
2906
  :type BindId: int
2907
- :param _ApplyTime: 申请时间
2907
+ :param _ApplyTime: 申请时间。
2908
2908
  注意:此字段可能返回 null,表示取不到有效值。
2909
2909
  :type ApplyTime: str
2910
- :param _Email: 邮箱地址
2910
+ :param _Email: 邮箱地址。
2911
2911
  注意:此字段可能返回 null,表示取不到有效值。
2912
2912
  :type Email: str
2913
- :param _Phone: 手机号
2913
+ :param _Phone: 安全手机号。
2914
2914
  注意:此字段可能返回 null,表示取不到有效值。
2915
2915
  :type Phone: str
2916
- :param _BindStatus: 绑定状态 未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
2916
+ :param _BindStatus: 绑定状态。 未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
2917
2917
  注意:此字段可能返回 null,表示取不到有效值。
2918
2918
  :type BindStatus: str
2919
- :param _BindTime: 绑定时间
2919
+ :param _BindTime: 绑定时间。
2920
2920
  注意:此字段可能返回 null,表示取不到有效值。
2921
2921
  :type BindTime: str
2922
- :param _Description: 失败说明
2922
+ :param _Description: 失败说明。
2923
2923
  注意:此字段可能返回 null,表示取不到有效值。
2924
2924
  :type Description: str
2925
- :param _PhoneBind: 安全手机绑定状态 未绑定:0,已绑定:1
2925
+ :param _PhoneBind: 安全手机绑定状态未绑定:0,已绑定:1
2926
2926
  注意:此字段可能返回 null,表示取不到有效值。
2927
2927
  :type PhoneBind: int
2928
- :param _CountryCode: 国际区号
2928
+ :param _CountryCode: 国际区号。
2929
2929
  注意:此字段可能返回 null,表示取不到有效值。
2930
2930
  :type CountryCode: str
2931
2931
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -3043,9 +3043,9 @@ class DescribeOrganizationMemberPoliciesRequest(AbstractModel):
3043
3043
 
3044
3044
  def __init__(self):
3045
3045
  r"""
3046
- :param _Offset: 偏移量。
3046
+ :param _Offset: 偏移量。取值是limit的整数倍。默认值 : 0。
3047
3047
  :type Offset: int
3048
- :param _Limit: 限制数目。最大50
3048
+ :param _Limit: 限制数目。取值范围:1~50。默认值:10。
3049
3049
  :type Limit: int
3050
3050
  :param _MemberUin: 成员Uin。
3051
3051
  :type MemberUin: int
@@ -3317,7 +3317,7 @@ class DescribeOrganizationNodesRequest(AbstractModel):
3317
3317
  r"""
3318
3318
  :param _Limit: 限制数目。最大50
3319
3319
  :type Limit: int
3320
- :param _Offset: 偏移量。
3320
+ :param _Offset: 偏移量。取值是limit的整数倍。默认值 : 0。
3321
3321
  :type Offset: int
3322
3322
  """
3323
3323
  self._Limit = None
@@ -3922,7 +3922,7 @@ class DescribeShareUnitResourcesRequest(AbstractModel):
3922
3922
  :type Limit: int
3923
3923
  :param _SearchKey: 搜索关键字。支持产品资源ID搜索。
3924
3924
  :type SearchKey: str
3925
- :param _Type: 共享资源类型。
3925
+ :param _Type: 共享资源类型。支持共享的资源类型,请参见[资源共享概述](https://cloud.tencent.com/document/product/850/59489)
3926
3926
  :type Type: str
3927
3927
  """
3928
3928
  self._UnitId = None
@@ -4061,7 +4061,7 @@ class DescribeShareUnitsRequest(AbstractModel):
4061
4061
 
4062
4062
  def __init__(self):
4063
4063
  r"""
4064
- :param _Area: 共享单元地域。可通过接口DescribeShareAreas获取支持共享的地域。
4064
+ :param _Area: 共享单元地域。可通过接口[DescribeShareAreas](https://cloud.tencent.com/document/product/850/103050)获取支持共享的地域。
4065
4065
  :type Area: str
4066
4066
  :param _Offset: 偏移量。取值是limit的整数倍。默认值 : 0。
4067
4067
  :type Offset: int
@@ -4263,7 +4263,7 @@ class ListOrganizationIdentityRequest(AbstractModel):
4263
4263
  :type Limit: int
4264
4264
  :param _SearchKey: 名称搜索关键字。
4265
4265
  :type SearchKey: str
4266
- :param _IdentityId: 身份ID搜索。
4266
+ :param _IdentityId: 身份ID。可以通过身份ID搜索
4267
4267
  :type IdentityId: int
4268
4268
  :param _IdentityType: 身份类型。取值范围 1-预设, 2-自定义
4269
4269
  :type IdentityType: int
@@ -4621,9 +4621,9 @@ class MoveOrganizationNodeMembersRequest(AbstractModel):
4621
4621
 
4622
4622
  def __init__(self):
4623
4623
  r"""
4624
- :param _NodeId: 组织节点ID
4624
+ :param _NodeId: 组织节点ID。可以通过[DescribeOrganizationNodes](https://cloud.tencent.com/document/product/850/82926)获取
4625
4625
  :type NodeId: int
4626
- :param _MemberUin: 成员UIN列表。
4626
+ :param _MemberUin: 成员Uin列表。
4627
4627
  :type MemberUin: list of int
4628
4628
  """
4629
4629
  self._NodeId = None
@@ -6364,11 +6364,11 @@ class UpdateOrganizationIdentityRequest(AbstractModel):
6364
6364
 
6365
6365
  def __init__(self):
6366
6366
  r"""
6367
- :param _IdentityId: 身份ID
6367
+ :param _IdentityId: 身份ID。可以通过[ListOrganizationIdentity](https://cloud.tencent.com/document/product/850/82934)获取
6368
6368
  :type IdentityId: int
6369
- :param _Description: 身份描述
6369
+ :param _Description: 身份描述。
6370
6370
  :type Description: str
6371
- :param _IdentityPolicy: 身份策略
6371
+ :param _IdentityPolicy: 身份策略。
6372
6372
  :type IdentityPolicy: list of IdentityPolicy
6373
6373
  """
6374
6374
  self._IdentityId = None
@@ -6451,15 +6451,15 @@ class UpdateOrganizationMemberEmailBindRequest(AbstractModel):
6451
6451
 
6452
6452
  def __init__(self):
6453
6453
  r"""
6454
- :param _MemberUin: 成员Uin
6454
+ :param _MemberUin: 成员Uin
6455
6455
  :type MemberUin: int
6456
- :param _BindId: 绑定ID
6456
+ :param _BindId: 绑定ID。可以通过[DescribeOrganizationMemberEmailBind](https://cloud.tencent.com/document/product/850/93332)获取
6457
6457
  :type BindId: int
6458
- :param _Email: 邮箱
6458
+ :param _Email: 邮箱地址。
6459
6459
  :type Email: str
6460
- :param _CountryCode: 国际区号
6460
+ :param _CountryCode: 国际区号。
6461
6461
  :type CountryCode: str
6462
- :param _Phone: 手机号
6462
+ :param _Phone: 手机号。
6463
6463
  :type Phone: str
6464
6464
  """
6465
6465
  self._MemberUin = None
@@ -6688,7 +6688,7 @@ class UpdateOrganizationNodeRequest(AbstractModel):
6688
6688
 
6689
6689
  def __init__(self):
6690
6690
  r"""
6691
- :param _NodeId: 节点ID
6691
+ :param _NodeId: 节点ID。可以通过[DescribeOrganizationNodes](https://cloud.tencent.com/document/product/850/82926)获取
6692
6692
  :type NodeId: int
6693
6693
  :param _Name: 节点名称。最大长度为40个字符,支持英文字母、数字、汉字、符号+@、&._[]-
6694
6694
  :type Name: str