tencentcloud-sdk-bi 3.0.1074 → 3.0.1092
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/v20220105/models.rb +71 -8
- 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: 6214b305bdb70e1b3a388d37f3746a459f2f54ce
|
4
|
+
data.tar.gz: 510de1d09fd443eb1420c2bd5a93a2f232ea2817
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 744b4c9045578c225498f30438226217d0d906a2994c284885a25b5bd790ae421b4c623190a0db4ea0cb8277addb241024708f1573f11f3be7c82ed80d5842ec
|
7
|
+
data.tar.gz: 477d7f8182be83178101fc34b45dc7719e7ed712ea7ebbe393ea538593c0f0e48d440bc5d033285c00a3b5d39b78623dd6976d7b4511947d92eb819683e86774
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1092
|
data/lib/v20220105/models.rb
CHANGED
@@ -727,8 +727,8 @@ module TencentCloud
|
|
727
727
|
|
728
728
|
attr_accessor :ProjectId, :RoleIdList, :UserList, :UserInfoList
|
729
729
|
extend Gem::Deprecate
|
730
|
-
deprecate :UserList, :none, 2025,
|
731
|
-
deprecate :UserList=, :none, 2025,
|
730
|
+
deprecate :UserList, :none, 2025, 7
|
731
|
+
deprecate :UserList=, :none, 2025, 7
|
732
732
|
|
733
733
|
def initialize(projectid=nil, roleidlist=nil, userlist=nil, userinfolist=nil)
|
734
734
|
@ProjectId = projectid
|
@@ -809,16 +809,19 @@ module TencentCloud
|
|
809
809
|
# @type UserList: Array
|
810
810
|
# @param UserInfoList: 用户列表(新)
|
811
811
|
# @type UserInfoList: Array
|
812
|
+
# @param UserGroups: 用户组id列表
|
813
|
+
# @type UserGroups: Array
|
812
814
|
|
813
|
-
attr_accessor :RoleIdList, :UserList, :UserInfoList
|
815
|
+
attr_accessor :RoleIdList, :UserList, :UserInfoList, :UserGroups
|
814
816
|
extend Gem::Deprecate
|
815
|
-
deprecate :UserList, :none, 2025,
|
816
|
-
deprecate :UserList=, :none, 2025,
|
817
|
+
deprecate :UserList, :none, 2025, 7
|
818
|
+
deprecate :UserList=, :none, 2025, 7
|
817
819
|
|
818
|
-
def initialize(roleidlist=nil, userlist=nil, userinfolist=nil)
|
820
|
+
def initialize(roleidlist=nil, userlist=nil, userinfolist=nil, usergroups=nil)
|
819
821
|
@RoleIdList = roleidlist
|
820
822
|
@UserList = userlist
|
821
823
|
@UserInfoList = userinfolist
|
824
|
+
@UserGroups = usergroups
|
822
825
|
end
|
823
826
|
|
824
827
|
def deserialize(params)
|
@@ -839,6 +842,7 @@ module TencentCloud
|
|
839
842
|
@UserInfoList << userinfo_tmp
|
840
843
|
end
|
841
844
|
end
|
845
|
+
@UserGroups = params['UserGroups']
|
842
846
|
end
|
843
847
|
end
|
844
848
|
|
@@ -3117,6 +3121,53 @@ module TencentCloud
|
|
3117
3121
|
end
|
3118
3122
|
end
|
3119
3123
|
|
3124
|
+
# 用户组
|
3125
|
+
class UserGroupDTO < TencentCloud::Common::AbstractModel
|
3126
|
+
# @param Id: id
|
3127
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3128
|
+
# @type Id: Integer
|
3129
|
+
# @param GroupName: 用户组名称
|
3130
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3131
|
+
# @type GroupName: String
|
3132
|
+
# @param ParentId: 父节点id
|
3133
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3134
|
+
# @type ParentId: Integer
|
3135
|
+
# @param IsDefault: 是否为默认
|
3136
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3137
|
+
# @type IsDefault: Integer
|
3138
|
+
# @param AdminUserId: 管理员用户id
|
3139
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3140
|
+
# @type AdminUserId: String
|
3141
|
+
# @param Description: 描述
|
3142
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3143
|
+
# @type Description: String
|
3144
|
+
# @param Location: 定位
|
3145
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3146
|
+
# @type Location: Integer
|
3147
|
+
|
3148
|
+
attr_accessor :Id, :GroupName, :ParentId, :IsDefault, :AdminUserId, :Description, :Location
|
3149
|
+
|
3150
|
+
def initialize(id=nil, groupname=nil, parentid=nil, isdefault=nil, adminuserid=nil, description=nil, location=nil)
|
3151
|
+
@Id = id
|
3152
|
+
@GroupName = groupname
|
3153
|
+
@ParentId = parentid
|
3154
|
+
@IsDefault = isdefault
|
3155
|
+
@AdminUserId = adminuserid
|
3156
|
+
@Description = description
|
3157
|
+
@Location = location
|
3158
|
+
end
|
3159
|
+
|
3160
|
+
def deserialize(params)
|
3161
|
+
@Id = params['Id']
|
3162
|
+
@GroupName = params['GroupName']
|
3163
|
+
@ParentId = params['ParentId']
|
3164
|
+
@IsDefault = params['IsDefault']
|
3165
|
+
@AdminUserId = params['AdminUserId']
|
3166
|
+
@Description = params['Description']
|
3167
|
+
@Location = params['Location']
|
3168
|
+
end
|
3169
|
+
end
|
3170
|
+
|
3120
3171
|
# 用户ID和用户名
|
3121
3172
|
class UserIdAndUserName < TencentCloud::Common::AbstractModel
|
3122
3173
|
# @param UserId: 用户ID
|
@@ -3430,10 +3481,13 @@ module TencentCloud
|
|
3430
3481
|
# @param EmailActivationStatus: 邮箱激活状态
|
3431
3482
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3432
3483
|
# @type EmailActivationStatus: Integer
|
3484
|
+
# @param UserGroupList: 用户组信息
|
3485
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3486
|
+
# @type UserGroupList: Array
|
3433
3487
|
|
3434
|
-
attr_accessor :Id, :RoleList, :RoleIdList, :UserId, :UserName, :CorpId, :Email, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :LastLogin, :Status, :PhoneNumber, :AreaCode, :RootAccount, :CorpAdmin, :AppUserId, :AppUserAliasName, :AppUserName, :InValidateAppRange, :AppOpenUserId, :EmailActivationStatus
|
3488
|
+
attr_accessor :Id, :RoleList, :RoleIdList, :UserId, :UserName, :CorpId, :Email, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :LastLogin, :Status, :PhoneNumber, :AreaCode, :RootAccount, :CorpAdmin, :AppUserId, :AppUserAliasName, :AppUserName, :InValidateAppRange, :AppOpenUserId, :EmailActivationStatus, :UserGroupList
|
3435
3489
|
|
3436
|
-
def initialize(id=nil, rolelist=nil, roleidlist=nil, userid=nil, username=nil, corpid=nil, email=nil, createduser=nil, createdat=nil, updateduser=nil, updatedat=nil, lastlogin=nil, status=nil, phonenumber=nil, areacode=nil, rootaccount=nil, corpadmin=nil, appuserid=nil, appuseraliasname=nil, appusername=nil, invalidateapprange=nil, appopenuserid=nil, emailactivationstatus=nil)
|
3490
|
+
def initialize(id=nil, rolelist=nil, roleidlist=nil, userid=nil, username=nil, corpid=nil, email=nil, createduser=nil, createdat=nil, updateduser=nil, updatedat=nil, lastlogin=nil, status=nil, phonenumber=nil, areacode=nil, rootaccount=nil, corpadmin=nil, appuserid=nil, appuseraliasname=nil, appusername=nil, invalidateapprange=nil, appopenuserid=nil, emailactivationstatus=nil, usergrouplist=nil)
|
3437
3491
|
@Id = id
|
3438
3492
|
@RoleList = rolelist
|
3439
3493
|
@RoleIdList = roleidlist
|
@@ -3457,6 +3511,7 @@ module TencentCloud
|
|
3457
3511
|
@InValidateAppRange = invalidateapprange
|
3458
3512
|
@AppOpenUserId = appopenuserid
|
3459
3513
|
@EmailActivationStatus = emailactivationstatus
|
3514
|
+
@UserGroupList = usergrouplist
|
3460
3515
|
end
|
3461
3516
|
|
3462
3517
|
def deserialize(params)
|
@@ -3490,6 +3545,14 @@ module TencentCloud
|
|
3490
3545
|
@InValidateAppRange = params['InValidateAppRange']
|
3491
3546
|
@AppOpenUserId = params['AppOpenUserId']
|
3492
3547
|
@EmailActivationStatus = params['EmailActivationStatus']
|
3548
|
+
unless params['UserGroupList'].nil?
|
3549
|
+
@UserGroupList = []
|
3550
|
+
params['UserGroupList'].each do |i|
|
3551
|
+
usergroupdto_tmp = UserGroupDTO.new
|
3552
|
+
usergroupdto_tmp.deserialize(i)
|
3553
|
+
@UserGroupList << usergroupdto_tmp
|
3554
|
+
end
|
3555
|
+
end
|
3493
3556
|
end
|
3494
3557
|
end
|
3495
3558
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-bi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1092
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|