tencentcloud-sdk-chdfs 1.0.317 → 1.0.320
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/v20201112/models.rb +13 -2
- 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: 71d8d96717f34025fa5f865cd2439c5eeca783af
|
4
|
+
data.tar.gz: 14ea252abe740ea9ddf4e7225b4d4cdbbc95f0a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cba4b5e9205773b36648eb899009c56d61e7f457a8c9a2715705608fa94cb68e250e4ce473546fde2c2ac240061ccc4be1312658f29e033fd43fa78a708802e4
|
7
|
+
data.tar.gz: d9c3ddd8d8b1cdb855ff7ea690b663763ac7799053eae95c9f54974fedb3d9b8a8c8e176ae0817ca312642f81aee8351210572067e77999cbf388b8e00d940cb
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.320
|
data/lib/v20201112/models.rb
CHANGED
@@ -235,10 +235,12 @@ module TencentCloud
|
|
235
235
|
# @type EnableRanger: Boolean
|
236
236
|
# @param RangerServiceAddresses: Ranger地址列表,默认为空数组
|
237
237
|
# @type RangerServiceAddresses: Array
|
238
|
+
# @param Tags: 多个资源标签,可以为空数组
|
239
|
+
# @type Tags: Array
|
238
240
|
|
239
|
-
attr_accessor :FileSystemName, :CapacityQuota, :PosixAcl, :Description, :SuperUsers, :RootInodeUser, :RootInodeGroup, :EnableRanger, :RangerServiceAddresses
|
241
|
+
attr_accessor :FileSystemName, :CapacityQuota, :PosixAcl, :Description, :SuperUsers, :RootInodeUser, :RootInodeGroup, :EnableRanger, :RangerServiceAddresses, :Tags
|
240
242
|
|
241
|
-
def initialize(filesystemname=nil, capacityquota=nil, posixacl=nil, description=nil, superusers=nil, rootinodeuser=nil, rootinodegroup=nil, enableranger=nil, rangerserviceaddresses=nil)
|
243
|
+
def initialize(filesystemname=nil, capacityquota=nil, posixacl=nil, description=nil, superusers=nil, rootinodeuser=nil, rootinodegroup=nil, enableranger=nil, rangerserviceaddresses=nil, tags=nil)
|
242
244
|
@FileSystemName = filesystemname
|
243
245
|
@CapacityQuota = capacityquota
|
244
246
|
@PosixAcl = posixacl
|
@@ -248,6 +250,7 @@ module TencentCloud
|
|
248
250
|
@RootInodeGroup = rootinodegroup
|
249
251
|
@EnableRanger = enableranger
|
250
252
|
@RangerServiceAddresses = rangerserviceaddresses
|
253
|
+
@Tags = tags
|
251
254
|
end
|
252
255
|
|
253
256
|
def deserialize(params)
|
@@ -260,6 +263,14 @@ module TencentCloud
|
|
260
263
|
@RootInodeGroup = params['RootInodeGroup']
|
261
264
|
@EnableRanger = params['EnableRanger']
|
262
265
|
@RangerServiceAddresses = params['RangerServiceAddresses']
|
266
|
+
unless params['Tags'].nil?
|
267
|
+
@Tags = []
|
268
|
+
params['Tags'].each do |i|
|
269
|
+
tag_tmp = Tag.new
|
270
|
+
tag_tmp.deserialize(i)
|
271
|
+
@Tags << tag_tmp
|
272
|
+
end
|
273
|
+
end
|
263
274
|
end
|
264
275
|
end
|
265
276
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-chdfs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.320
|
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-05-
|
11
|
+
date: 2022-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|