tencentcloud-sdk-bi 3.0.833 → 3.0.834
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/v20220105/models.rb +19 -4
- 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: 7c7d4b075fe0618bc224ea93be875f8627efff1e
|
4
|
+
data.tar.gz: 6f4f2177c0f752783dc3c70e854f2bb827633a9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2353d0c43debb0e0d8670625735bba896ef585b5b82cec193c0ffa546810c849d1182d1bbd0c8a811fa4df8e56b86cde9096db3391ecaab886c3cacd7b869735
|
7
|
+
data.tar.gz: 619e7a86babef2d75890f70628dd984075618b9f211265a9e7dbc027f06db228b3e45de71e67b1f8ed3c66c19ea2f27ba9cafd5a1fd1d7a0d57568d0bce33ffa
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.834
|
data/lib/v20220105/models.rb
CHANGED
@@ -2855,15 +2855,23 @@ module TencentCloud
|
|
2855
2855
|
# @param AreaCode: 手机号区号
|
2856
2856
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2857
2857
|
# @type AreaCode: String
|
2858
|
+
# @param AppUserId: 企微账号id
|
2859
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2860
|
+
# @type AppUserId: String
|
2861
|
+
# @param AppUserName: 企微账号名称
|
2862
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2863
|
+
# @type AppUserName: String
|
2858
2864
|
|
2859
|
-
attr_accessor :UserId, :UserName, :Email, :PhoneNumber, :AreaCode
|
2865
|
+
attr_accessor :UserId, :UserName, :Email, :PhoneNumber, :AreaCode, :AppUserId, :AppUserName
|
2860
2866
|
|
2861
|
-
def initialize(userid=nil, username=nil, email=nil, phonenumber=nil, areacode=nil)
|
2867
|
+
def initialize(userid=nil, username=nil, email=nil, phonenumber=nil, areacode=nil, appuserid=nil, appusername=nil)
|
2862
2868
|
@UserId = userid
|
2863
2869
|
@UserName = username
|
2864
2870
|
@Email = email
|
2865
2871
|
@PhoneNumber = phonenumber
|
2866
2872
|
@AreaCode = areacode
|
2873
|
+
@AppUserId = appuserid
|
2874
|
+
@AppUserName = appusername
|
2867
2875
|
end
|
2868
2876
|
|
2869
2877
|
def deserialize(params)
|
@@ -2872,6 +2880,8 @@ module TencentCloud
|
|
2872
2880
|
@Email = params['Email']
|
2873
2881
|
@PhoneNumber = params['PhoneNumber']
|
2874
2882
|
@AreaCode = params['AreaCode']
|
2883
|
+
@AppUserId = params['AppUserId']
|
2884
|
+
@AppUserName = params['AppUserName']
|
2875
2885
|
end
|
2876
2886
|
end
|
2877
2887
|
|
@@ -3012,10 +3022,13 @@ module TencentCloud
|
|
3012
3022
|
# @param InValidateAppRange: 是否在可见范围内
|
3013
3023
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3014
3024
|
# @type InValidateAppRange: Boolean
|
3025
|
+
# @param AppOpenUserId: 用户openid
|
3026
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3027
|
+
# @type AppOpenUserId: String
|
3015
3028
|
|
3016
|
-
attr_accessor :Id, :RoleList, :RoleIdList, :UserId, :UserName, :CorpId, :Email, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :LastLogin, :Status, :PhoneNumber, :AreaCode, :RootAccount, :CorpAdmin, :AppUserId, :AppUserAliasName, :AppUserName, :InValidateAppRange
|
3029
|
+
attr_accessor :Id, :RoleList, :RoleIdList, :UserId, :UserName, :CorpId, :Email, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :LastLogin, :Status, :PhoneNumber, :AreaCode, :RootAccount, :CorpAdmin, :AppUserId, :AppUserAliasName, :AppUserName, :InValidateAppRange, :AppOpenUserId
|
3017
3030
|
|
3018
|
-
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)
|
3031
|
+
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)
|
3019
3032
|
@Id = id
|
3020
3033
|
@RoleList = rolelist
|
3021
3034
|
@RoleIdList = roleidlist
|
@@ -3037,6 +3050,7 @@ module TencentCloud
|
|
3037
3050
|
@AppUserAliasName = appuseraliasname
|
3038
3051
|
@AppUserName = appusername
|
3039
3052
|
@InValidateAppRange = invalidateapprange
|
3053
|
+
@AppOpenUserId = appopenuserid
|
3040
3054
|
end
|
3041
3055
|
|
3042
3056
|
def deserialize(params)
|
@@ -3068,6 +3082,7 @@ module TencentCloud
|
|
3068
3082
|
@AppUserAliasName = params['AppUserAliasName']
|
3069
3083
|
@AppUserName = params['AppUserName']
|
3070
3084
|
@InValidateAppRange = params['InValidateAppRange']
|
3085
|
+
@AppOpenUserId = params['AppOpenUserId']
|
3071
3086
|
end
|
3072
3087
|
end
|
3073
3088
|
|
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.834
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|