tencentcloud-sdk-bi 3.0.1074 → 3.0.1084
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 +65 -6
- 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: d9d48b8bfe37a84459d4d2f1e29236c8bf1cbd87
|
4
|
+
data.tar.gz: 16da9643727004ae3a368d66219d76fe9ce4a643
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2abb824bed85866a5f0c4f9ebb63ba841139875376caba7a2792b4532f3ea371238deb2c1be67243c26e511d3889605f0abc20945194e138759c5deeb4f18e7
|
7
|
+
data.tar.gz: 2e4ed0d700d9fb6ee7be892b7f11df9c4a88fb41212973ffb2831532e1f4e3525e03be91560b06ca742b71add3cc284caa917211ad12d674eab05b79d30b303d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1084
|
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, 6
|
731
|
+
deprecate :UserList=, :none, 2025, 6
|
732
732
|
|
733
733
|
def initialize(projectid=nil, roleidlist=nil, userlist=nil, userinfolist=nil)
|
734
734
|
@ProjectId = projectid
|
@@ -812,8 +812,8 @@ module TencentCloud
|
|
812
812
|
|
813
813
|
attr_accessor :RoleIdList, :UserList, :UserInfoList
|
814
814
|
extend Gem::Deprecate
|
815
|
-
deprecate :UserList, :none, 2025,
|
816
|
-
deprecate :UserList=, :none, 2025,
|
815
|
+
deprecate :UserList, :none, 2025, 6
|
816
|
+
deprecate :UserList=, :none, 2025, 6
|
817
817
|
|
818
818
|
def initialize(roleidlist=nil, userlist=nil, userinfolist=nil)
|
819
819
|
@RoleIdList = roleidlist
|
@@ -3117,6 +3117,53 @@ module TencentCloud
|
|
3117
3117
|
end
|
3118
3118
|
end
|
3119
3119
|
|
3120
|
+
# 用户组
|
3121
|
+
class UserGroupDTO < TencentCloud::Common::AbstractModel
|
3122
|
+
# @param Id: id
|
3123
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3124
|
+
# @type Id: Integer
|
3125
|
+
# @param GroupName: 用户组名称
|
3126
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3127
|
+
# @type GroupName: String
|
3128
|
+
# @param ParentId: 父节点id
|
3129
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3130
|
+
# @type ParentId: Integer
|
3131
|
+
# @param IsDefault: 是否为默认
|
3132
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3133
|
+
# @type IsDefault: Integer
|
3134
|
+
# @param AdminUserId: 管理员用户id
|
3135
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3136
|
+
# @type AdminUserId: String
|
3137
|
+
# @param Description: 描述
|
3138
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3139
|
+
# @type Description: String
|
3140
|
+
# @param Location: 定位
|
3141
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3142
|
+
# @type Location: Integer
|
3143
|
+
|
3144
|
+
attr_accessor :Id, :GroupName, :ParentId, :IsDefault, :AdminUserId, :Description, :Location
|
3145
|
+
|
3146
|
+
def initialize(id=nil, groupname=nil, parentid=nil, isdefault=nil, adminuserid=nil, description=nil, location=nil)
|
3147
|
+
@Id = id
|
3148
|
+
@GroupName = groupname
|
3149
|
+
@ParentId = parentid
|
3150
|
+
@IsDefault = isdefault
|
3151
|
+
@AdminUserId = adminuserid
|
3152
|
+
@Description = description
|
3153
|
+
@Location = location
|
3154
|
+
end
|
3155
|
+
|
3156
|
+
def deserialize(params)
|
3157
|
+
@Id = params['Id']
|
3158
|
+
@GroupName = params['GroupName']
|
3159
|
+
@ParentId = params['ParentId']
|
3160
|
+
@IsDefault = params['IsDefault']
|
3161
|
+
@AdminUserId = params['AdminUserId']
|
3162
|
+
@Description = params['Description']
|
3163
|
+
@Location = params['Location']
|
3164
|
+
end
|
3165
|
+
end
|
3166
|
+
|
3120
3167
|
# 用户ID和用户名
|
3121
3168
|
class UserIdAndUserName < TencentCloud::Common::AbstractModel
|
3122
3169
|
# @param UserId: 用户ID
|
@@ -3430,10 +3477,13 @@ module TencentCloud
|
|
3430
3477
|
# @param EmailActivationStatus: 邮箱激活状态
|
3431
3478
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3432
3479
|
# @type EmailActivationStatus: Integer
|
3480
|
+
# @param UserGroupList: 用户组信息
|
3481
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3482
|
+
# @type UserGroupList: Array
|
3433
3483
|
|
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
|
3484
|
+
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
3485
|
|
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)
|
3486
|
+
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
3487
|
@Id = id
|
3438
3488
|
@RoleList = rolelist
|
3439
3489
|
@RoleIdList = roleidlist
|
@@ -3457,6 +3507,7 @@ module TencentCloud
|
|
3457
3507
|
@InValidateAppRange = invalidateapprange
|
3458
3508
|
@AppOpenUserId = appopenuserid
|
3459
3509
|
@EmailActivationStatus = emailactivationstatus
|
3510
|
+
@UserGroupList = usergrouplist
|
3460
3511
|
end
|
3461
3512
|
|
3462
3513
|
def deserialize(params)
|
@@ -3490,6 +3541,14 @@ module TencentCloud
|
|
3490
3541
|
@InValidateAppRange = params['InValidateAppRange']
|
3491
3542
|
@AppOpenUserId = params['AppOpenUserId']
|
3492
3543
|
@EmailActivationStatus = params['EmailActivationStatus']
|
3544
|
+
unless params['UserGroupList'].nil?
|
3545
|
+
@UserGroupList = []
|
3546
|
+
params['UserGroupList'].each do |i|
|
3547
|
+
usergroupdto_tmp = UserGroupDTO.new
|
3548
|
+
usergroupdto_tmp.deserialize(i)
|
3549
|
+
@UserGroupList << usergroupdto_tmp
|
3550
|
+
end
|
3551
|
+
end
|
3493
3552
|
end
|
3494
3553
|
end
|
3495
3554
|
|
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.1084
|
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-06-
|
11
|
+
date: 2025-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|