tencentcloud-sdk-eiam 1.0.241 → 1.0.245
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210420/models.rb +8 -3
- 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: 6a08d92610466ce35c76a5d5501ba84ad6a67059
|
|
4
|
+
data.tar.gz: 41173ede2a6a452cef6554da26d3c4e43894fc90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07c33f6d49e45d8fb35f6368e99602cc6df5e41442ff32feba255e8f8ef55ec9fdb2d5a6c7ac86959ade834bebbd794f10a7c19c9d1bd96b17f7f78faac63bfd
|
|
7
|
+
data.tar.gz: fb627625b6d864d7c63dc906be2a3a06bb4f096d91b9a75333108f1619790890923ed3ab382b21dba5ba1007cbc241006145682d81c6455a51dae173d5ac80fa
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.245
|
data/lib/v20210420/models.rb
CHANGED
|
@@ -1075,7 +1075,7 @@ module TencentCloud
|
|
|
1075
1075
|
# @param ClientId: 客户端id。
|
|
1076
1076
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1077
1077
|
# @type ClientId: String
|
|
1078
|
-
# @param ApplicationType:
|
|
1078
|
+
# @param ApplicationType: 应用类型,即创建应用时所选择的应用模板类型。
|
|
1079
1079
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1080
1080
|
# @type ApplicationType: String
|
|
1081
1081
|
# @param CreatedDate: 应用创建时间,符合 ISO8601 标准。
|
|
@@ -1533,12 +1533,15 @@ module TencentCloud
|
|
|
1533
1533
|
# @param SecondaryOrgNodeIdList: 用户所属的次要组织机构ID列表。
|
|
1534
1534
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1535
1535
|
# @type SecondaryOrgNodeIdList: Array
|
|
1536
|
+
# @param AdminFlag: 是否管理员标志,0为否、1为是。
|
|
1537
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1538
|
+
# @type AdminFlag: Integer
|
|
1536
1539
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1537
1540
|
# @type RequestId: String
|
|
1538
1541
|
|
|
1539
|
-
attr_accessor :UserName, :Status, :DisplayName, :Description, :UserGroupIds, :UserId, :Email, :Phone, :OrgNodeId, :DataSource, :ExpirationTime, :ActivationTime, :PwdNeedReset, :SecondaryOrgNodeIdList, :RequestId
|
|
1542
|
+
attr_accessor :UserName, :Status, :DisplayName, :Description, :UserGroupIds, :UserId, :Email, :Phone, :OrgNodeId, :DataSource, :ExpirationTime, :ActivationTime, :PwdNeedReset, :SecondaryOrgNodeIdList, :AdminFlag, :RequestId
|
|
1540
1543
|
|
|
1541
|
-
def initialize(username=nil, status=nil, displayname=nil, description=nil, usergroupids=nil, userid=nil, email=nil, phone=nil, orgnodeid=nil, datasource=nil, expirationtime=nil, activationtime=nil, pwdneedreset=nil, secondaryorgnodeidlist=nil, requestid=nil)
|
|
1544
|
+
def initialize(username=nil, status=nil, displayname=nil, description=nil, usergroupids=nil, userid=nil, email=nil, phone=nil, orgnodeid=nil, datasource=nil, expirationtime=nil, activationtime=nil, pwdneedreset=nil, secondaryorgnodeidlist=nil, adminflag=nil, requestid=nil)
|
|
1542
1545
|
@UserName = username
|
|
1543
1546
|
@Status = status
|
|
1544
1547
|
@DisplayName = displayname
|
|
@@ -1553,6 +1556,7 @@ module TencentCloud
|
|
|
1553
1556
|
@ActivationTime = activationtime
|
|
1554
1557
|
@PwdNeedReset = pwdneedreset
|
|
1555
1558
|
@SecondaryOrgNodeIdList = secondaryorgnodeidlist
|
|
1559
|
+
@AdminFlag = adminflag
|
|
1556
1560
|
@RequestId = requestid
|
|
1557
1561
|
end
|
|
1558
1562
|
|
|
@@ -1571,6 +1575,7 @@ module TencentCloud
|
|
|
1571
1575
|
@ActivationTime = params['ActivationTime']
|
|
1572
1576
|
@PwdNeedReset = params['PwdNeedReset']
|
|
1573
1577
|
@SecondaryOrgNodeIdList = params['SecondaryOrgNodeIdList']
|
|
1578
|
+
@AdminFlag = params['AdminFlag']
|
|
1574
1579
|
@RequestId = params['RequestId']
|
|
1575
1580
|
end
|
|
1576
1581
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-eiam
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.245
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-01-
|
|
11
|
+
date: 2022-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|