tencentcloud-sdk-bi 3.0.660 → 3.0.661

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220105/models.rb +22 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04210dbf62d6822a306e4fc62e87839e176da4fb
4
- data.tar.gz: d403612d042b9f5decbabbed65d47f28be8723c0
3
+ metadata.gz: b2b037ac92949205b0cd074726f478988d14ea85
4
+ data.tar.gz: 8ae7a48508f562f2e1a34d20bc96876aabea17b1
5
5
  SHA512:
6
- metadata.gz: 6ad38bf928193ecf1c5c18b9826e1983e273e20d856c5bcd75925dfe8308582d41c8acfbcbb368c92a11248075285540159863c3f553cc61b9c20a1460e8aa7c
7
- data.tar.gz: 4ad619d6acc1b94a1b47ab0f2d446358fb1207666069f7245993a60a79e3a21582cbd4acef2554cad652732229ff620da663620a7fa01267e50a4aaf41391fb9
6
+ metadata.gz: 8284155598e068f91e01f18db5af8cebd6dc4a3cd7b2a55e019b872af559e7281492c6027b882a1c1382c2b866e43bdcb7840629030adac5b4fa6d45e32ee237
7
+ data.tar.gz: 03873861b661744b0980dd59e61d71fa51627e13aaed5165a26b4a9d6ca193e7048ad83716cdbdba53ec32ab4bb51001d4841bcf2dd4fb3e7a593d22a187351e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.660
1
+ 3.0.661
@@ -112,15 +112,21 @@ module TencentCloud
112
112
  # @type ExpireTime: String
113
113
  # @param ExtraParam: 备用字段
114
114
  # @type ExtraParam: String
115
+ # @param UserCorpId: 使用者企业Id(仅用于多用户)
116
+ # @type UserCorpId: String
117
+ # @param UserId: 使用者Id(仅用于多用户)
118
+ # @type UserId: String
115
119
 
116
- attr_accessor :ProjectId, :PageId, :Scope, :ExpireTime, :ExtraParam
120
+ attr_accessor :ProjectId, :PageId, :Scope, :ExpireTime, :ExtraParam, :UserCorpId, :UserId
117
121
 
118
- def initialize(projectid=nil, pageid=nil, scope=nil, expiretime=nil, extraparam=nil)
122
+ def initialize(projectid=nil, pageid=nil, scope=nil, expiretime=nil, extraparam=nil, usercorpid=nil, userid=nil)
119
123
  @ProjectId = projectid
120
124
  @PageId = pageid
121
125
  @Scope = scope
122
126
  @ExpireTime = expiretime
123
127
  @ExtraParam = extraparam
128
+ @UserCorpId = usercorpid
129
+ @UserId = userid
124
130
  end
125
131
 
126
132
  def deserialize(params)
@@ -129,6 +135,8 @@ module TencentCloud
129
135
  @Scope = params['Scope']
130
136
  @ExpireTime = params['ExpireTime']
131
137
  @ExtraParam = params['ExtraParam']
138
+ @UserCorpId = params['UserCorpId']
139
+ @UserId = params['UserId']
132
140
  end
133
141
  end
134
142
 
@@ -201,10 +209,16 @@ module TencentCloud
201
209
  # @param ExpireTime: 过期时间,分钟为单位,最大240
202
210
  # 注意:此字段可能返回 null,表示取不到有效值。
203
211
  # @type ExpireTime: Integer
212
+ # @param UserCorpId: 使用者企业Id(仅用于多用户)
213
+ # 注意:此字段可能返回 null,表示取不到有效值。
214
+ # @type UserCorpId: String
215
+ # @param UserId: 使用者Id(仅用于多用户)
216
+ # 注意:此字段可能返回 null,表示取不到有效值。
217
+ # @type UserId: String
204
218
 
205
- attr_accessor :Id, :BIToken, :ProjectId, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :PageId, :ExtraParam, :Scope, :ExpireTime
219
+ attr_accessor :Id, :BIToken, :ProjectId, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :PageId, :ExtraParam, :Scope, :ExpireTime, :UserCorpId, :UserId
206
220
 
207
- def initialize(id=nil, bitoken=nil, projectid=nil, createduser=nil, createdat=nil, updateduser=nil, updatedat=nil, pageid=nil, extraparam=nil, scope=nil, expiretime=nil)
221
+ def initialize(id=nil, bitoken=nil, projectid=nil, createduser=nil, createdat=nil, updateduser=nil, updatedat=nil, pageid=nil, extraparam=nil, scope=nil, expiretime=nil, usercorpid=nil, userid=nil)
208
222
  @Id = id
209
223
  @BIToken = bitoken
210
224
  @ProjectId = projectid
@@ -216,6 +230,8 @@ module TencentCloud
216
230
  @ExtraParam = extraparam
217
231
  @Scope = scope
218
232
  @ExpireTime = expiretime
233
+ @UserCorpId = usercorpid
234
+ @UserId = userid
219
235
  end
220
236
 
221
237
  def deserialize(params)
@@ -230,6 +246,8 @@ module TencentCloud
230
246
  @ExtraParam = params['ExtraParam']
231
247
  @Scope = params['Scope']
232
248
  @ExpireTime = params['ExpireTime']
249
+ @UserCorpId = params['UserCorpId']
250
+ @UserId = params['UserId']
233
251
  end
234
252
  end
235
253
 
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.660
4
+ version: 3.0.661
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-15 00:00:00.000000000 Z
11
+ date: 2023-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common