tencentcloud-sdk-organization 3.0.664 → 3.0.666
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210331/client.rb +1 -1
- data/lib/v20210331/models.rb +49 -15
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae76b945f1db14392528b1fdc995a266a38b5889
|
4
|
+
data.tar.gz: 89796b7968a12157e75b0f1117cc8437d4527213
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 252e085e876b7fa407a4c8a53ca198871c125bb88d683464a8c201822db884ee459020d7ab2d960a562900726649c1ea69043b751ed3d764f2622ef750affc21
|
7
|
+
data.tar.gz: 709d6179ad0eb70a207d2f58dacba3db446fe20f416b585abdb60582f8093256985c8014915cd857a61974e28e9e260ea2f427157b5b8d1c943d714c23ba9512
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.666
|
data/lib/v20210331/client.rb
CHANGED
@@ -485,7 +485,7 @@ module TencentCloud
|
|
485
485
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
486
486
|
end
|
487
487
|
|
488
|
-
#
|
488
|
+
# 获取组织成员访问授权列表
|
489
489
|
|
490
490
|
# @param request: Request instance for DescribeOrganizationMemberAuthIdentities.
|
491
491
|
# @type request: :class:`Tencentcloud::organization::V20210331::DescribeOrganizationMemberAuthIdentitiesRequest`
|
data/lib/v20210331/models.rb
CHANGED
@@ -47,16 +47,21 @@ module TencentCloud
|
|
47
47
|
|
48
48
|
# AddOrganizationMemberEmail返回参数结构体
|
49
49
|
class AddOrganizationMemberEmailResponse < TencentCloud::Common::AbstractModel
|
50
|
+
# @param BindId: 绑定Id
|
51
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
52
|
+
# @type BindId: Integer
|
50
53
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
51
54
|
# @type RequestId: String
|
52
55
|
|
53
|
-
attr_accessor :RequestId
|
56
|
+
attr_accessor :BindId, :RequestId
|
54
57
|
|
55
|
-
def initialize(requestid=nil)
|
58
|
+
def initialize(bindid=nil, requestid=nil)
|
59
|
+
@BindId = bindid
|
56
60
|
@RequestId = requestid
|
57
61
|
end
|
58
62
|
|
59
63
|
def deserialize(params)
|
64
|
+
@BindId = params['BindId']
|
60
65
|
@RequestId = params['RequestId']
|
61
66
|
end
|
62
67
|
end
|
@@ -895,21 +900,25 @@ module TencentCloud
|
|
895
900
|
# @type Offset: Integer
|
896
901
|
# @param Limit: 限制数目。取值范围:1~50,默认值:10
|
897
902
|
# @type Limit: Integer
|
898
|
-
# @param MemberUin: 组织成员Uin
|
903
|
+
# @param MemberUin: 组织成员Uin。入参MemberUin与IdentityId至少填写一个
|
899
904
|
# @type MemberUin: Integer
|
905
|
+
# @param IdentityId: 身份ID。入参MemberUin与IdentityId至少填写一个
|
906
|
+
# @type IdentityId: Integer
|
900
907
|
|
901
|
-
attr_accessor :Offset, :Limit, :MemberUin
|
908
|
+
attr_accessor :Offset, :Limit, :MemberUin, :IdentityId
|
902
909
|
|
903
|
-
def initialize(offset=nil, limit=nil, memberuin=nil)
|
910
|
+
def initialize(offset=nil, limit=nil, memberuin=nil, identityid=nil)
|
904
911
|
@Offset = offset
|
905
912
|
@Limit = limit
|
906
913
|
@MemberUin = memberuin
|
914
|
+
@IdentityId = identityid
|
907
915
|
end
|
908
916
|
|
909
917
|
def deserialize(params)
|
910
918
|
@Offset = params['Offset']
|
911
919
|
@Limit = params['Limit']
|
912
920
|
@MemberUin = params['MemberUin']
|
921
|
+
@IdentityId = params['IdentityId']
|
913
922
|
end
|
914
923
|
end
|
915
924
|
|
@@ -1329,21 +1338,31 @@ module TencentCloud
|
|
1329
1338
|
|
1330
1339
|
# 组织身份策略
|
1331
1340
|
class IdentityPolicy < TencentCloud::Common::AbstractModel
|
1332
|
-
# @param PolicyId:
|
1341
|
+
# @param PolicyId: CAM预设策略ID。PolicyType 为预设策略时有效且必选
|
1333
1342
|
# @type PolicyId: Integer
|
1334
|
-
# @param PolicyName:
|
1343
|
+
# @param PolicyName: CAM预设策略名称。PolicyType 为预设策略时有效且必选
|
1335
1344
|
# @type PolicyName: String
|
1345
|
+
# @param PolicyType: 策略类型。取值 1-自定义策略 2-预设策略;默认值2
|
1346
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1347
|
+
# @type PolicyType: Integer
|
1348
|
+
# @param PolicyDocument: 自定义策略内容,遵循CAM策略语法。PolicyType 为自定义策略时有效且必选
|
1349
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1350
|
+
# @type PolicyDocument: String
|
1336
1351
|
|
1337
|
-
attr_accessor :PolicyId, :PolicyName
|
1352
|
+
attr_accessor :PolicyId, :PolicyName, :PolicyType, :PolicyDocument
|
1338
1353
|
|
1339
|
-
def initialize(policyid=nil, policyname=nil)
|
1354
|
+
def initialize(policyid=nil, policyname=nil, policytype=nil, policydocument=nil)
|
1340
1355
|
@PolicyId = policyid
|
1341
1356
|
@PolicyName = policyname
|
1357
|
+
@PolicyType = policytype
|
1358
|
+
@PolicyDocument = policydocument
|
1342
1359
|
end
|
1343
1360
|
|
1344
1361
|
def deserialize(params)
|
1345
1362
|
@PolicyId = params['PolicyId']
|
1346
1363
|
@PolicyName = params['PolicyName']
|
1364
|
+
@PolicyType = params['PolicyType']
|
1365
|
+
@PolicyDocument = params['PolicyDocument']
|
1347
1366
|
end
|
1348
1367
|
end
|
1349
1368
|
|
@@ -1752,22 +1771,31 @@ module TencentCloud
|
|
1752
1771
|
# @param IdentityRoleAliasName: 身份的角色别名。
|
1753
1772
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1754
1773
|
# @type IdentityRoleAliasName: String
|
1755
|
-
# @param Description:
|
1774
|
+
# @param Description: 身份描述。
|
1756
1775
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1757
1776
|
# @type Description: String
|
1758
|
-
# @param CreateTime:
|
1777
|
+
# @param CreateTime: 首次配置成功的时间。
|
1759
1778
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1760
1779
|
# @type CreateTime: String
|
1761
|
-
# @param UpdateTime:
|
1780
|
+
# @param UpdateTime: 最后一次配置成功的时间。
|
1762
1781
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1763
1782
|
# @type UpdateTime: String
|
1764
|
-
# @param IdentityType: 身份类型。取值: 1
|
1783
|
+
# @param IdentityType: 身份类型。取值: 1-预设身份 2-自定义身份
|
1765
1784
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1766
1785
|
# @type IdentityType: Integer
|
1786
|
+
# @param Status: 配置状态。取值:1-配置完成 2-需重新配置
|
1787
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1788
|
+
# @type Status: Integer
|
1789
|
+
# @param MemberUin: 成员Uin。
|
1790
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1791
|
+
# @type MemberUin: Integer
|
1792
|
+
# @param MemberName: 成员名称。
|
1793
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1794
|
+
# @type MemberName: String
|
1767
1795
|
|
1768
|
-
attr_accessor :IdentityId, :IdentityRoleName, :IdentityRoleAliasName, :Description, :CreateTime, :UpdateTime, :IdentityType
|
1796
|
+
attr_accessor :IdentityId, :IdentityRoleName, :IdentityRoleAliasName, :Description, :CreateTime, :UpdateTime, :IdentityType, :Status, :MemberUin, :MemberName
|
1769
1797
|
|
1770
|
-
def initialize(identityid=nil, identityrolename=nil, identityrolealiasname=nil, description=nil, createtime=nil, updatetime=nil, identitytype=nil)
|
1798
|
+
def initialize(identityid=nil, identityrolename=nil, identityrolealiasname=nil, description=nil, createtime=nil, updatetime=nil, identitytype=nil, status=nil, memberuin=nil, membername=nil)
|
1771
1799
|
@IdentityId = identityid
|
1772
1800
|
@IdentityRoleName = identityrolename
|
1773
1801
|
@IdentityRoleAliasName = identityrolealiasname
|
@@ -1775,6 +1803,9 @@ module TencentCloud
|
|
1775
1803
|
@CreateTime = createtime
|
1776
1804
|
@UpdateTime = updatetime
|
1777
1805
|
@IdentityType = identitytype
|
1806
|
+
@Status = status
|
1807
|
+
@MemberUin = memberuin
|
1808
|
+
@MemberName = membername
|
1778
1809
|
end
|
1779
1810
|
|
1780
1811
|
def deserialize(params)
|
@@ -1785,6 +1816,9 @@ module TencentCloud
|
|
1785
1816
|
@CreateTime = params['CreateTime']
|
1786
1817
|
@UpdateTime = params['UpdateTime']
|
1787
1818
|
@IdentityType = params['IdentityType']
|
1819
|
+
@Status = params['Status']
|
1820
|
+
@MemberUin = params['MemberUin']
|
1821
|
+
@MemberName = params['MemberName']
|
1788
1822
|
end
|
1789
1823
|
end
|
1790
1824
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-organization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.666
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|