tencentcloud-sdk-organization 1.0.329 → 1.0.332
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/v20210331/models.rb +23 -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: ab6c336e387d03597d1bc413933caf9bdd4b560b
|
4
|
+
data.tar.gz: 324afa6dbc8f19103b628ffada5d7110563dd353
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c531bf518bf0ee8314cf7d258fe274472c7e65458106757abf5474a2e1fe69a1deb8597b6510727b0027fada35a9634225d19480d08c8144875c1f2566ba9ca
|
7
|
+
data.tar.gz: f8592c7b610ec6c0b91d194f845287b04cae9dc82a80cee5f3ea9c811819f8bfc6bb9153bd4ea554c1a6a1e1b01991491db991014e2df475845c4e4aa112048a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.332
|
data/lib/v20210331/models.rb
CHANGED
@@ -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,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-organization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.332
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|