tencentcloud-sdk-python-intl-en 3.0.1086__py2.py3-none-any.whl → 3.0.1088__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.
Files changed (52) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/errorcodes.py +3 -0
  3. tencentcloud/batch/v20170312/models.py +119 -45
  4. tencentcloud/car/v20220110/models.py +2 -2
  5. tencentcloud/cbs/v20170312/models.py +2 -2
  6. tencentcloud/cdc/__init__.py +0 -0
  7. tencentcloud/cdc/v20201214/__init__.py +0 -0
  8. tencentcloud/cdc/v20201214/cdc_client.py +486 -0
  9. tencentcloud/cdc/v20201214/errorcodes.py +78 -0
  10. tencentcloud/cdc/v20201214/models.py +6084 -0
  11. tencentcloud/ckafka/v20190819/models.py +2 -2
  12. tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
  13. tencentcloud/cloudaudit/v20190319/models.py +2 -2
  14. tencentcloud/cls/v20201016/models.py +177 -0
  15. tencentcloud/cmq/v20190304/models.py +74 -74
  16. tencentcloud/cvm/v20170312/errorcodes.py +6 -0
  17. tencentcloud/eb/v20210416/models.py +47 -2
  18. tencentcloud/ecm/v20190719/models.py +2 -2
  19. tencentcloud/gme/v20180711/errorcodes.py +1 -1
  20. tencentcloud/gme/v20180711/models.py +2 -2
  21. tencentcloud/lighthouse/v20200324/lighthouse_client.py +2 -2
  22. tencentcloud/lighthouse/v20200324/models.py +2 -2
  23. tencentcloud/live/v20180801/errorcodes.py +1 -1
  24. tencentcloud/live/v20180801/models.py +2 -2
  25. tencentcloud/organization/v20181225/errorcodes.py +16 -4
  26. tencentcloud/organization/v20181225/models.py +40 -40
  27. tencentcloud/organization/v20210331/errorcodes.py +96 -0
  28. tencentcloud/organization/v20210331/models.py +2110 -269
  29. tencentcloud/organization/v20210331/organization_client.py +417 -3
  30. tencentcloud/scf/v20180416/errorcodes.py +3 -0
  31. tencentcloud/scf/v20180416/models.py +2 -2
  32. tencentcloud/sms/v20210111/errorcodes.py +4 -1
  33. tencentcloud/tat/v20201028/errorcodes.py +12 -0
  34. tencentcloud/tat/v20201028/models.py +38 -38
  35. tencentcloud/tdmq/v20200217/models.py +2 -2
  36. tencentcloud/tem/v20210701/models.py +2 -2
  37. tencentcloud/teo/v20220901/errorcodes.py +19 -19
  38. tencentcloud/teo/v20220901/models.py +92 -20
  39. tencentcloud/vclm/__init__.py +0 -0
  40. tencentcloud/vclm/v20240523/__init__.py +0 -0
  41. tencentcloud/vclm/v20240523/errorcodes.py +126 -0
  42. tencentcloud/vclm/v20240523/models.py +538 -0
  43. tencentcloud/vclm/v20240523/vclm_client.py +72 -0
  44. tencentcloud/vod/v20180717/models.py +128 -11
  45. tencentcloud/waf/v20180125/errorcodes.py +3 -0
  46. tencentcloud/waf/v20180125/models.py +1680 -720
  47. tencentcloud/waf/v20180125/waf_client.py +83 -45
  48. tencentcloud/wedata/v20210820/models.py +6 -6
  49. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/METADATA +1 -1
  50. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/RECORD +52 -42
  51. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/WHEEL +0 -0
  52. {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/top_level.txt +0 -0
@@ -74,6 +74,51 @@ class CheckRuleRequest(AbstractModel):
74
74
 
75
75
  """
76
76
 
77
+ def __init__(self):
78
+ r"""
79
+ :param _Event:
80
+ :type Event: str
81
+ :param _EventPattern:
82
+ :type EventPattern: str
83
+ """
84
+ self._Event = None
85
+ self._EventPattern = None
86
+
87
+ @property
88
+ def Event(self):
89
+ """
90
+ :rtype: str
91
+ """
92
+ return self._Event
93
+
94
+ @Event.setter
95
+ def Event(self, Event):
96
+ self._Event = Event
97
+
98
+ @property
99
+ def EventPattern(self):
100
+ """
101
+ :rtype: str
102
+ """
103
+ return self._EventPattern
104
+
105
+ @EventPattern.setter
106
+ def EventPattern(self, EventPattern):
107
+ self._EventPattern = EventPattern
108
+
109
+
110
+ def _deserialize(self, params):
111
+ self._Event = params.get("Event")
112
+ self._EventPattern = params.get("EventPattern")
113
+ memeber_set = set(params.keys())
114
+ for name, value in vars(self).items():
115
+ property_name = name[1:]
116
+ if property_name in memeber_set:
117
+ memeber_set.remove(property_name)
118
+ if len(memeber_set) > 0:
119
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
120
+
121
+
77
122
 
78
123
  class CheckRuleResponse(AbstractModel):
79
124
  """CheckRule response structure.
@@ -82,14 +127,14 @@ class CheckRuleResponse(AbstractModel):
82
127
 
83
128
  def __init__(self):
84
129
  r"""
85
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
130
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
86
131
  :type RequestId: str
87
132
  """
88
133
  self._RequestId = None
89
134
 
90
135
  @property
91
136
  def RequestId(self):
92
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
137
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
93
138
  :rtype: str
94
139
  """
95
140
  return self._RequestId
@@ -6737,7 +6737,7 @@ class DescribeInstancesResponse(AbstractModel):
6737
6737
  :param _InstanceSet: List of the returned instance information.
6738
6738
  Note: this field may return null, indicating that no valid values can be obtained.
6739
6739
  :type InstanceSet: list of Instance
6740
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
6740
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6741
6741
  :type RequestId: str
6742
6742
  """
6743
6743
  self._TotalCount = None
@@ -6769,7 +6769,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
6769
6769
 
6770
6770
  @property
6771
6771
  def RequestId(self):
6772
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
6772
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6773
6773
  :rtype: str
6774
6774
  """
6775
6775
  return self._RequestId
@@ -38,7 +38,7 @@ INVALIDPARAMETER_TAGKEY = 'InvalidParameter.TagKey'
38
38
  # Incorrect query time range.
39
39
  INVALIDPARAMETER_TIMERANGEERROR = 'InvalidParameter.TimeRangeError'
40
40
 
41
- # Invalid BizId.
41
+ # Invalid BizId.(SDKAppid)
42
42
  INVALIDPARAMETERVALUE_INVALIDBIZID = 'InvalidParameterValue.InvalidBizId'
43
43
 
44
44
  # Invalid RecordMode.
@@ -2301,7 +2301,7 @@ class StartRecordResponse(AbstractModel):
2301
2301
  r"""
2302
2302
  :param _TaskId: Task ID.
2303
2303
  :type TaskId: int
2304
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2304
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2305
2305
  :type RequestId: str
2306
2306
  """
2307
2307
  self._TaskId = None
@@ -2320,7 +2320,7 @@ class StartRecordResponse(AbstractModel):
2320
2320
 
2321
2321
  @property
2322
2322
  def RequestId(self):
2323
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2323
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2324
2324
  :rtype: str
2325
2325
  """
2326
2326
  return self._RequestId
@@ -28,9 +28,9 @@ class LighthouseClient(AbstractClient):
28
28
 
29
29
  def ApplyInstanceSnapshot(self, request):
30
30
  """This API is used to roll back the system disk snapshot of the specified instance.
31
- <li>Only rollback to the original system disk is supported.</li>
31
+ <li>Only rollback to the original system disk is supported. </li>
32
32
  <li>Only snapshots in `NORMAL` status can be used for rollback. To query the status of a snapshot, you can call the `DescribeSnapshots` API and see the `SnapshotState` field in the response.</li>
33
- <li>When a snapshot is rolled back, the status of the instance must be `STOPPED` or `RUNNING`. You can call the `DescribeInstances` API to query the instance status. Instances in `RUNNING` status will be forcibly shut down before snapshot rollback.</li>
33
+ <li>When a snapshot is rolled back, the status of the instance must be `STOPPED` or `RUNNING`. You can call the `DescribeInstances` API to query the instance status. Instances in `RUNNING` status will be forcibly shut down before snapshot rollback. </li>
34
34
 
35
35
  :param request: Request instance for ApplyInstanceSnapshot.
36
36
  :type request: :class:`tencentcloud.lighthouse.v20200324.models.ApplyInstanceSnapshotRequest`
@@ -76,14 +76,14 @@ class ApplyInstanceSnapshotResponse(AbstractModel):
76
76
 
77
77
  def __init__(self):
78
78
  r"""
79
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
79
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
80
80
  :type RequestId: str
81
81
  """
82
82
  self._RequestId = None
83
83
 
84
84
  @property
85
85
  def RequestId(self):
86
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
86
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
87
87
  :rtype: str
88
88
  """
89
89
  return self._RequestId
@@ -527,7 +527,7 @@ RESOURCENOTFOUND_TASKID = 'ResourceNotFound.TaskId'
527
527
  # You disabled the service.
528
528
  RESOURCENOTFOUND_USERDISABLESERVICE = 'ResourceNotFound.UserDisableService'
529
529
 
530
- # The LVB service has not been activated.
530
+ # The CSS service has not been activated.
531
531
  RESOURCENOTFOUND_USERNOTEXIST = 'ResourceNotFound.UserNotExist'
532
532
 
533
533
  # The user does not exist.
@@ -127,14 +127,14 @@ class AddDelayLiveStreamResponse(AbstractModel):
127
127
 
128
128
  def __init__(self):
129
129
  r"""
130
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
130
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
131
131
  :type RequestId: str
132
132
  """
133
133
  self._RequestId = None
134
134
 
135
135
  @property
136
136
  def RequestId(self):
137
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
137
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
138
138
  :rtype: str
139
139
  """
140
140
  return self._RequestId
@@ -14,6 +14,9 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
+ #
18
+ FAILEDOPERATION = 'FailedOperation'
19
+
17
20
  # Members cannot be deleted from the root unit.
18
21
  FAILEDOPERATION_DISABLEDELETEMEMBERFROMROOTNODE = 'FailedOperation.DisableDeleteMemberFromRootNode'
19
22
 
@@ -26,19 +29,28 @@ FAILEDOPERATION_INORGANIZATIONALREADY = 'FailedOperation.InOrganizationAlready'
26
29
  # The name is already in use.
27
30
  FAILEDOPERATION_MEMBERNAMEUSED = 'FailedOperation.MemberNameUsed'
28
31
 
29
- # There are members in this organizational unit.
32
+ # There are members in this department
30
33
  FAILEDOPERATION_NODENOTEMPTY = 'FailedOperation.NodeNotEmpty'
31
34
 
35
+ # You can only invite accounts within the same site.
36
+ FAILEDOPERATION_NOTSAMEREGION = 'FailedOperation.NotSameRegion'
37
+
32
38
  # The organization already exists.
33
39
  FAILEDOPERATION_ORGANIZATIONEXISTALREADY = 'FailedOperation.OrganizationExistAlready'
34
40
 
35
41
  # There are members in this organization.
36
42
  FAILEDOPERATION_ORGANIZATIONNOTEMPTY = 'FailedOperation.OrganizationNotEmpty'
37
43
 
44
+ # Failed to leave the shared unit.
45
+ FAILEDOPERATION_QUITSHAREUINTERROR = 'FailedOperation.QuitShareUintError'
46
+
38
47
  # The invitation has already been sent before.
39
48
  FAILEDOPERATION_RESENTINVITATION = 'FailedOperation.ReSentInvitation'
40
49
 
41
- # A UIN does not belong to this organization.
50
+ # Shared unit is not empty.
51
+ FAILEDOPERATION_SHAREUNITNOTEMPTY = 'FailedOperation.ShareUnitNotEmpty'
52
+
53
+ # The UIN does not belong to the organization.
42
54
  FAILEDOPERATION_SOMEUINSNOTINORGANIZATION = 'FailedOperation.SomeUinsNotInOrganization'
43
55
 
44
56
  # The user has already joined the organization.
@@ -50,10 +62,10 @@ FAILEDOPERATION_USERNOTREGISTER = 'FailedOperation.UserNotRegister'
50
62
  # The number of organization members has reached the maximum.
51
63
  LIMITEXCEEDED_MEMBERS = 'LimitExceeded.Members'
52
64
 
53
- # Too many organizational unit levels.
65
+ # The department has too many levels.
54
66
  LIMITEXCEEDED_NODEDEPTHEXCEEDLIMIT = 'LimitExceeded.NodeDepthExceedLimit'
55
67
 
56
- # The number of organizational units has reached the upper limit.
68
+ # The number of departments exceeds the upper limit.
57
69
  LIMITEXCEEDED_NODEEXCEEDLIMIT = 'LimitExceeded.NodeExceedLimit'
58
70
 
59
71
  # The organizational unit name is already in use.
@@ -61,14 +61,14 @@ class AcceptOrganizationInvitationResponse(AbstractModel):
61
61
 
62
62
  def __init__(self):
63
63
  r"""
64
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
64
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
65
65
  :type RequestId: str
66
66
  """
67
67
  self._RequestId = None
68
68
 
69
69
  @property
70
70
  def RequestId(self):
71
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
71
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
72
72
  :rtype: str
73
73
  """
74
74
  return self._RequestId
@@ -142,7 +142,7 @@ class AddOrganizationNodeResponse(AbstractModel):
142
142
  r"""
143
143
  :param _NodeId: Organizational unit ID
144
144
  :type NodeId: int
145
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
145
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
146
146
  :type RequestId: str
147
147
  """
148
148
  self._NodeId = None
@@ -161,7 +161,7 @@ class AddOrganizationNodeResponse(AbstractModel):
161
161
 
162
162
  @property
163
163
  def RequestId(self):
164
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
164
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
165
165
  :rtype: str
166
166
  """
167
167
  return self._RequestId
@@ -219,14 +219,14 @@ class CancelOrganizationInvitationResponse(AbstractModel):
219
219
 
220
220
  def __init__(self):
221
221
  r"""
222
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
222
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
223
223
  :type RequestId: str
224
224
  """
225
225
  self._RequestId = None
226
226
 
227
227
  @property
228
228
  def RequestId(self):
229
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
229
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
230
230
  :rtype: str
231
231
  """
232
232
  return self._RequestId
@@ -291,7 +291,7 @@ class CreateOrganizationResponse(AbstractModel):
291
291
  :type Mail: str
292
292
  :param _OrgType: Organization type
293
293
  :type OrgType: int
294
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
294
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
295
295
  :type RequestId: str
296
296
  """
297
297
  self._OrgId = None
@@ -346,7 +346,7 @@ class CreateOrganizationResponse(AbstractModel):
346
346
 
347
347
  @property
348
348
  def RequestId(self):
349
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
349
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
350
350
  :rtype: str
351
351
  """
352
352
  return self._RequestId
@@ -422,14 +422,14 @@ class DeleteOrganizationMemberFromNodeResponse(AbstractModel):
422
422
 
423
423
  def __init__(self):
424
424
  r"""
425
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
425
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
426
426
  :type RequestId: str
427
427
  """
428
428
  self._RequestId = None
429
429
 
430
430
  @property
431
431
  def RequestId(self):
432
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
432
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
433
433
  :rtype: str
434
434
  """
435
435
  return self._RequestId
@@ -486,14 +486,14 @@ class DeleteOrganizationMembersResponse(AbstractModel):
486
486
 
487
487
  def __init__(self):
488
488
  r"""
489
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
489
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
490
490
  :type RequestId: str
491
491
  """
492
492
  self._RequestId = None
493
493
 
494
494
  @property
495
495
  def RequestId(self):
496
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
496
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
497
497
  :rtype: str
498
498
  """
499
499
  return self._RequestId
@@ -550,14 +550,14 @@ class DeleteOrganizationNodesResponse(AbstractModel):
550
550
 
551
551
  def __init__(self):
552
552
  r"""
553
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
553
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
554
554
  :type RequestId: str
555
555
  """
556
556
  self._RequestId = None
557
557
 
558
558
  @property
559
559
  def RequestId(self):
560
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
560
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
561
561
  :rtype: str
562
562
  """
563
563
  return self._RequestId
@@ -584,14 +584,14 @@ class DeleteOrganizationResponse(AbstractModel):
584
584
 
585
585
  def __init__(self):
586
586
  r"""
587
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
587
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
588
588
  :type RequestId: str
589
589
  """
590
590
  self._RequestId = None
591
591
 
592
592
  @property
593
593
  def RequestId(self):
594
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
594
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
595
595
  :rtype: str
596
596
  """
597
597
  return self._RequestId
@@ -648,14 +648,14 @@ class DenyOrganizationInvitationResponse(AbstractModel):
648
648
 
649
649
  def __init__(self):
650
650
  r"""
651
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
651
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
652
652
  :type RequestId: str
653
653
  """
654
654
  self._RequestId = None
655
655
 
656
656
  @property
657
657
  def RequestId(self):
658
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
658
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
659
659
  :rtype: str
660
660
  """
661
661
  return self._RequestId
@@ -726,7 +726,7 @@ class GetOrganizationMemberResponse(AbstractModel):
726
726
  :type NodeName: str
727
727
  :param _ParentNodeId: Parent organizational unit ID
728
728
  :type ParentNodeId: int
729
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
729
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
730
730
  :type RequestId: str
731
731
  """
732
732
  self._Uin = None
@@ -817,7 +817,7 @@ class GetOrganizationMemberResponse(AbstractModel):
817
817
 
818
818
  @property
819
819
  def RequestId(self):
820
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
820
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
821
821
  :rtype: str
822
822
  """
823
823
  return self._RequestId
@@ -863,7 +863,7 @@ class GetOrganizationResponse(AbstractModel):
863
863
  :type OrgType: int
864
864
  :param _IsEmpty: Whether the organization is empty or not
865
865
  :type IsEmpty: int
866
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
866
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
867
867
  :type RequestId: str
868
868
  """
869
869
  self._OrgId = None
@@ -942,7 +942,7 @@ class GetOrganizationResponse(AbstractModel):
942
942
 
943
943
  @property
944
944
  def RequestId(self):
945
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
945
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
946
946
  :rtype: str
947
947
  """
948
948
  return self._RequestId
@@ -1039,7 +1039,7 @@ class ListOrganizationInvitationsResponse(AbstractModel):
1039
1039
  :type Invitations: list of OrgInvitation
1040
1040
  :param _TotalCount: Total number of results
1041
1041
  :type TotalCount: int
1042
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1042
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1043
1043
  :type RequestId: str
1044
1044
  """
1045
1045
  self._Invitations = None
@@ -1070,7 +1070,7 @@ class ListOrganizationInvitationsResponse(AbstractModel):
1070
1070
 
1071
1071
  @property
1072
1072
  def RequestId(self):
1073
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1073
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1074
1074
  :rtype: str
1075
1075
  """
1076
1076
  return self._RequestId
@@ -1153,7 +1153,7 @@ class ListOrganizationMembersResponse(AbstractModel):
1153
1153
  :type Members: list of OrgMember
1154
1154
  :param _TotalCount: Total number of results
1155
1155
  :type TotalCount: int
1156
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1156
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1157
1157
  :type RequestId: str
1158
1158
  """
1159
1159
  self._Members = None
@@ -1184,7 +1184,7 @@ class ListOrganizationMembersResponse(AbstractModel):
1184
1184
 
1185
1185
  @property
1186
1186
  def RequestId(self):
1187
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1187
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1188
1188
  :rtype: str
1189
1189
  """
1190
1190
  return self._RequestId
@@ -1282,7 +1282,7 @@ class ListOrganizationNodeMembersResponse(AbstractModel):
1282
1282
  :type TotalCount: int
1283
1283
  :param _Members: Member list
1284
1284
  :type Members: list of OrgMember
1285
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1285
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1286
1286
  :type RequestId: str
1287
1287
  """
1288
1288
  self._TotalCount = None
@@ -1313,7 +1313,7 @@ class ListOrganizationNodeMembersResponse(AbstractModel):
1313
1313
 
1314
1314
  @property
1315
1315
  def RequestId(self):
1316
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1316
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1317
1317
  :rtype: str
1318
1318
  """
1319
1319
  return self._RequestId
@@ -1349,7 +1349,7 @@ class ListOrganizationNodesResponse(AbstractModel):
1349
1349
  r"""
1350
1350
  :param _Nodes: Organizational unit list
1351
1351
  :type Nodes: list of OrgNode
1352
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1352
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1353
1353
  :type RequestId: str
1354
1354
  """
1355
1355
  self._Nodes = None
@@ -1368,7 +1368,7 @@ class ListOrganizationNodesResponse(AbstractModel):
1368
1368
 
1369
1369
  @property
1370
1370
  def RequestId(self):
1371
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1371
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1372
1372
  :rtype: str
1373
1373
  """
1374
1374
  return self._RequestId
@@ -1446,14 +1446,14 @@ class MoveOrganizationMembersToNodeResponse(AbstractModel):
1446
1446
 
1447
1447
  def __init__(self):
1448
1448
  r"""
1449
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1449
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1450
1450
  :type RequestId: str
1451
1451
  """
1452
1452
  self._RequestId = None
1453
1453
 
1454
1454
  @property
1455
1455
  def RequestId(self):
1456
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1456
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1457
1457
  :rtype: str
1458
1458
  """
1459
1459
  return self._RequestId
@@ -1858,14 +1858,14 @@ class QuitOrganizationResponse(AbstractModel):
1858
1858
 
1859
1859
  def __init__(self):
1860
1860
  r"""
1861
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1861
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1862
1862
  :type RequestId: str
1863
1863
  """
1864
1864
  self._RequestId = None
1865
1865
 
1866
1866
  @property
1867
1867
  def RequestId(self):
1868
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1868
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1869
1869
  :rtype: str
1870
1870
  """
1871
1871
  return self._RequestId
@@ -1952,14 +1952,14 @@ class SendOrganizationInvitationResponse(AbstractModel):
1952
1952
 
1953
1953
  def __init__(self):
1954
1954
  r"""
1955
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1955
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1956
1956
  :type RequestId: str
1957
1957
  """
1958
1958
  self._RequestId = None
1959
1959
 
1960
1960
  @property
1961
1961
  def RequestId(self):
1962
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1962
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1963
1963
  :rtype: str
1964
1964
  """
1965
1965
  return self._RequestId
@@ -2046,14 +2046,14 @@ class UpdateOrganizationMemberResponse(AbstractModel):
2046
2046
 
2047
2047
  def __init__(self):
2048
2048
  r"""
2049
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2049
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2050
2050
  :type RequestId: str
2051
2051
  """
2052
2052
  self._RequestId = None
2053
2053
 
2054
2054
  @property
2055
2055
  def RequestId(self):
2056
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2056
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2057
2057
  :rtype: str
2058
2058
  """
2059
2059
  return self._RequestId
@@ -2140,14 +2140,14 @@ class UpdateOrganizationNodeResponse(AbstractModel):
2140
2140
 
2141
2141
  def __init__(self):
2142
2142
  r"""
2143
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2143
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2144
2144
  :type RequestId: str
2145
2145
  """
2146
2146
  self._RequestId = None
2147
2147
 
2148
2148
  @property
2149
2149
  def RequestId(self):
2150
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2150
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2151
2151
  :rtype: str
2152
2152
  """
2153
2153
  return self._RequestId