tencentcloud-sdk-organization 3.0.841 → 3.0.843
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/v20210331/models.rb +23 -10
- 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: b9e46514761740bc050f6891638f99c8bbcb42dc
|
4
|
+
data.tar.gz: ba5b1704e0523073f605897b6be0e2cf49c21579
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b8f1f041b43d39a4f15b57d20f8dfd44ed6233f420690c1613dac32544c6b7990904c212adebf1a8cc360a5644012b48c03678fd5041e08edc5f3465d089ba0
|
7
|
+
data.tar.gz: a8b0bd2da6603738db4a3b232e06c75c49f50a572dad0610b57b187eda0c4ba30c6df9c99324b57ec0fa9e2add80ae81e7cfc68ce3c9e62796efaf78c14b5320
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.843
|
data/lib/v20210331/models.rb
CHANGED
@@ -165,19 +165,23 @@ module TencentCloud
|
|
165
165
|
# @type Area: String
|
166
166
|
# @param Description: 共享单元描述。最大128个字符。
|
167
167
|
# @type Description: String
|
168
|
+
# @param ShareScope: 共享范围。取值:1-仅允许集团组织内共享 2-允许共享给任意账号,默认值:1
|
169
|
+
# @type ShareScope: Integer
|
168
170
|
|
169
|
-
attr_accessor :Name, :Area, :Description
|
171
|
+
attr_accessor :Name, :Area, :Description, :ShareScope
|
170
172
|
|
171
|
-
def initialize(name=nil, area=nil, description=nil)
|
173
|
+
def initialize(name=nil, area=nil, description=nil, sharescope=nil)
|
172
174
|
@Name = name
|
173
175
|
@Area = area
|
174
176
|
@Description = description
|
177
|
+
@ShareScope = sharescope
|
175
178
|
end
|
176
179
|
|
177
180
|
def deserialize(params)
|
178
181
|
@Name = params['Name']
|
179
182
|
@Area = params['Area']
|
180
183
|
@Description = params['Description']
|
184
|
+
@ShareScope = params['ShareScope']
|
181
185
|
end
|
182
186
|
end
|
183
187
|
|
@@ -2980,10 +2984,13 @@ module TencentCloud
|
|
2980
2984
|
# @param ShareMemberNum: 共享单元成员数。
|
2981
2985
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2982
2986
|
# @type ShareMemberNum: Integer
|
2987
|
+
# @param ShareScope: 共享范围。取值:1-仅允许集团组织内共享 2-允许共享给任意账号
|
2988
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2989
|
+
# @type ShareScope: Integer
|
2983
2990
|
|
2984
|
-
attr_accessor :UnitId, :Name, :Uin, :OwnerUin, :Area, :Description, :CreateTime, :ShareResourceNum, :ShareMemberNum
|
2991
|
+
attr_accessor :UnitId, :Name, :Uin, :OwnerUin, :Area, :Description, :CreateTime, :ShareResourceNum, :ShareMemberNum, :ShareScope
|
2985
2992
|
|
2986
|
-
def initialize(unitid=nil, name=nil, uin=nil, owneruin=nil, area=nil, description=nil, createtime=nil, shareresourcenum=nil, sharemembernum=nil)
|
2993
|
+
def initialize(unitid=nil, name=nil, uin=nil, owneruin=nil, area=nil, description=nil, createtime=nil, shareresourcenum=nil, sharemembernum=nil, sharescope=nil)
|
2987
2994
|
@UnitId = unitid
|
2988
2995
|
@Name = name
|
2989
2996
|
@Uin = uin
|
@@ -2993,6 +3000,7 @@ module TencentCloud
|
|
2993
3000
|
@CreateTime = createtime
|
2994
3001
|
@ShareResourceNum = shareresourcenum
|
2995
3002
|
@ShareMemberNum = sharemembernum
|
3003
|
+
@ShareScope = sharescope
|
2996
3004
|
end
|
2997
3005
|
|
2998
3006
|
def deserialize(params)
|
@@ -3005,6 +3013,7 @@ module TencentCloud
|
|
3005
3013
|
@CreateTime = params['CreateTime']
|
3006
3014
|
@ShareResourceNum = params['ShareResourceNum']
|
3007
3015
|
@ShareMemberNum = params['ShareMemberNum']
|
3016
|
+
@ShareScope = params['ShareScope']
|
3008
3017
|
end
|
3009
3018
|
end
|
3010
3019
|
|
@@ -3643,8 +3652,8 @@ module TencentCloud
|
|
3643
3652
|
|
3644
3653
|
attr_accessor :ProductResourceId, :ResourceGrantLast
|
3645
3654
|
extend Gem::Deprecate
|
3646
|
-
deprecate :ResourceGrantLast, :none, 2024,
|
3647
|
-
deprecate :ResourceGrantLast=, :none, 2024,
|
3655
|
+
deprecate :ResourceGrantLast, :none, 2024, 6
|
3656
|
+
deprecate :ResourceGrantLast=, :none, 2024, 6
|
3648
3657
|
|
3649
3658
|
def initialize(productresourceid=nil, resourcegrantlast=nil)
|
3650
3659
|
@ProductResourceId = productresourceid
|
@@ -3777,8 +3786,8 @@ module TencentCloud
|
|
3777
3786
|
|
3778
3787
|
attr_accessor :ResourceId, :ProductResourceId
|
3779
3788
|
extend Gem::Deprecate
|
3780
|
-
deprecate :ResourceId, :none, 2024,
|
3781
|
-
deprecate :ResourceId=, :none, 2024,
|
3789
|
+
deprecate :ResourceId, :none, 2024, 6
|
3790
|
+
deprecate :ResourceId=, :none, 2024, 6
|
3782
3791
|
|
3783
3792
|
def initialize(resourceid=nil, productresourceid=nil)
|
3784
3793
|
@ResourceId = resourceid
|
@@ -4153,19 +4162,23 @@ module TencentCloud
|
|
4153
4162
|
# @type Name: String
|
4154
4163
|
# @param Description: 共享单元描述。最大128个字符。
|
4155
4164
|
# @type Description: String
|
4165
|
+
# @param ShareScope: 共享范围。取值:1-仅允许集团组织内共享 2-允许共享给任意账号,默认值:1
|
4166
|
+
# @type ShareScope: Integer
|
4156
4167
|
|
4157
|
-
attr_accessor :UnitId, :Name, :Description
|
4168
|
+
attr_accessor :UnitId, :Name, :Description, :ShareScope
|
4158
4169
|
|
4159
|
-
def initialize(unitid=nil, name=nil, description=nil)
|
4170
|
+
def initialize(unitid=nil, name=nil, description=nil, sharescope=nil)
|
4160
4171
|
@UnitId = unitid
|
4161
4172
|
@Name = name
|
4162
4173
|
@Description = description
|
4174
|
+
@ShareScope = sharescope
|
4163
4175
|
end
|
4164
4176
|
|
4165
4177
|
def deserialize(params)
|
4166
4178
|
@UnitId = params['UnitId']
|
4167
4179
|
@Name = params['Name']
|
4168
4180
|
@Description = params['Description']
|
4181
|
+
@ShareScope = params['ShareScope']
|
4169
4182
|
end
|
4170
4183
|
end
|
4171
4184
|
|
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: 3.0.
|
4
|
+
version: 3.0.843
|
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-06-
|
11
|
+
date: 2024-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|