tencentcloud-sdk-organization 1.0.329 → 1.0.330

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/v20210331/models.rb +23 -6
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef561e036dbedce191871c711af8aa1ca312997d
4
- data.tar.gz: 11d321c67fd16feb940443f75218a3899b3d7b37
3
+ metadata.gz: aa7e0ee2b6569bbef462e5c1f0fad8b1132cdf2f
4
+ data.tar.gz: 86ab2622011d69a26c5c18b485566dc1e532fda3
5
5
  SHA512:
6
- metadata.gz: 68a84f73210b15b6c5542d0ac35270c6eb7d93500885bb600dd87312038a947344f011e5098ab9c9655d712ecdb978e02db26bafba9ee266c2e7b801f34b2be7
7
- data.tar.gz: 6db08a0709f410eb002113244664d9ad9cef76a29b0352d9f1817b7c8a6e70a6e86054a758ce9c79b291348d9022433561bcdf3fb6fa6422e51f58fb4a8cf45e
6
+ metadata.gz: d72750f61c853b01e80f07b288075bf37d5380bb3bec42ead2cd206aceec233f93cb78efc0d0d33c3940e39e7db480c80cd2248af3962e59a5a4dac4687628b5
7
+ data.tar.gz: 6358f29db69d0aa853b13c1949ead145af02e3c3be95a4678e4d32e37a83fcdcb6497cde8858b654445ec2bca8cc427b78588b0f314ab667191b7ca3ca2a3018
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.329
1
+ 1.0.330
@@ -185,14 +185,20 @@ module TencentCloud
185
185
  # @type Lang: String
186
186
  # @param SearchKey: 成员名或者成员ID搜索
187
187
  # @type SearchKey: String
188
+ # @param AuthName: 主体名称
189
+ # @type AuthName: String
190
+ # @param Product: 集团服务(服务管理员查询时,必须指定)
191
+ # @type Product: String
188
192
 
189
- attr_accessor :Offset, :Limit, :Lang, :SearchKey
193
+ attr_accessor :Offset, :Limit, :Lang, :SearchKey, :AuthName, :Product
190
194
 
191
- def initialize(offset=nil, limit=nil, lang=nil, searchkey=nil)
195
+ def initialize(offset=nil, limit=nil, lang=nil, searchkey=nil, authname=nil, product=nil)
192
196
  @Offset = offset
193
197
  @Limit = limit
194
198
  @Lang = lang
195
199
  @SearchKey = searchkey
200
+ @AuthName = authname
201
+ @Product = product
196
202
  end
197
203
 
198
204
  def deserialize(params)
@@ -200,6 +206,8 @@ module TencentCloud
200
206
  @Limit = params['Limit']
201
207
  @Lang = params['Lang']
202
208
  @SearchKey = params['SearchKey']
209
+ @AuthName = params['AuthName']
210
+ @Product = params['Product']
203
211
  end
204
212
  end
205
213
 
@@ -238,15 +246,19 @@ module TencentCloud
238
246
  class DescribeOrganizationRequest < TencentCloud::Common::AbstractModel
239
247
  # @param Lang: 国际站:en,国内站:zh
240
248
  # @type Lang: String
249
+ # @param Product: 产品简称(查询是否集团服务委派管理员必须)
250
+ # @type Product: String
241
251
 
242
- attr_accessor :Lang
252
+ attr_accessor :Lang, :Product
243
253
 
244
- def initialize(lang=nil)
254
+ def initialize(lang=nil, product=nil)
245
255
  @Lang = lang
256
+ @Product = product
246
257
  end
247
258
 
248
259
  def deserialize(params)
249
260
  @Lang = params['Lang']
261
+ @Product = params['Product']
250
262
  end
251
263
  end
252
264
 
@@ -294,12 +306,15 @@ module TencentCloud
294
306
  # @param PayName: 代付者名称
295
307
  # 注意:此字段可能返回 null,表示取不到有效值。
296
308
  # @type PayName: String
309
+ # @param IsAssignManager: 是否集团服务委派管理员 true-是、false-否
310
+ # 注意:此字段可能返回 null,表示取不到有效值。
311
+ # @type IsAssignManager: Boolean
297
312
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
298
313
  # @type RequestId: String
299
314
 
300
- attr_accessor :OrgId, :HostUin, :NickName, :OrgType, :IsManager, :OrgPolicyType, :OrgPolicyName, :OrgPermission, :RootNodeId, :CreateTime, :JoinTime, :IsAllowQuit, :PayUin, :PayName, :RequestId
315
+ attr_accessor :OrgId, :HostUin, :NickName, :OrgType, :IsManager, :OrgPolicyType, :OrgPolicyName, :OrgPermission, :RootNodeId, :CreateTime, :JoinTime, :IsAllowQuit, :PayUin, :PayName, :IsAssignManager, :RequestId
301
316
 
302
- def initialize(orgid=nil, hostuin=nil, nickname=nil, orgtype=nil, ismanager=nil, orgpolicytype=nil, orgpolicyname=nil, orgpermission=nil, rootnodeid=nil, createtime=nil, jointime=nil, isallowquit=nil, payuin=nil, payname=nil, requestid=nil)
317
+ def initialize(orgid=nil, hostuin=nil, nickname=nil, orgtype=nil, ismanager=nil, orgpolicytype=nil, orgpolicyname=nil, orgpermission=nil, rootnodeid=nil, createtime=nil, jointime=nil, isallowquit=nil, payuin=nil, payname=nil, isassignmanager=nil, requestid=nil)
303
318
  @OrgId = orgid
304
319
  @HostUin = hostuin
305
320
  @NickName = nickname
@@ -314,6 +329,7 @@ module TencentCloud
314
329
  @IsAllowQuit = isallowquit
315
330
  @PayUin = payuin
316
331
  @PayName = payname
332
+ @IsAssignManager = isassignmanager
317
333
  @RequestId = requestid
318
334
  end
319
335
 
@@ -339,6 +355,7 @@ module TencentCloud
339
355
  @IsAllowQuit = params['IsAllowQuit']
340
356
  @PayUin = params['PayUin']
341
357
  @PayName = params['PayName']
358
+ @IsAssignManager = params['IsAssignManager']
342
359
  @RequestId = params['RequestId']
343
360
  end
344
361
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-organization
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.329
4
+ version: 1.0.330
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud