tencentcloud-sdk-cfs 1.0.253 → 1.0.257
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/v20190719/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: a42df0d7429b00e7e685de64750dd2f6d49588da
|
4
|
+
data.tar.gz: eb9b4b64821764a714a51c7a35a3ccd1572fb2d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aafbf6026bdadd3908dbba208645c8b434228669b75371c77625929d546d1e5ace3a9cce64ac8bf0c89f2c0919126934201898afde169bca9fcdfbf8ad3d50e
|
7
|
+
data.tar.gz: 1a654c30eaedf75ca05ee1ec535f65e57593be25fe25a55d30e382cb63156166915ea1880bb664d26e345fecb33fb0c6734ab866cda815b0251017ca72102fcf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.257
|
data/lib/v20190719/models.rb
CHANGED
@@ -920,10 +920,12 @@ module TencentCloud
|
|
920
920
|
# @type BandwidthLimit: Float
|
921
921
|
# @param Capacity: 文件系统总容量
|
922
922
|
# @type Capacity: Integer
|
923
|
+
# @param Tags: 文件系统标签列表
|
924
|
+
# @type Tags: Array
|
923
925
|
|
924
|
-
attr_accessor :CreationTime, :CreationToken, :FileSystemId, :LifeCycleState, :SizeByte, :SizeLimit, :ZoneId, :Zone, :Protocol, :StorageType, :StorageResourcePkg, :BandwidthResourcePkg, :PGroup, :FsName, :Encrypted, :KmsKeyId, :AppId, :BandwidthLimit, :Capacity
|
926
|
+
attr_accessor :CreationTime, :CreationToken, :FileSystemId, :LifeCycleState, :SizeByte, :SizeLimit, :ZoneId, :Zone, :Protocol, :StorageType, :StorageResourcePkg, :BandwidthResourcePkg, :PGroup, :FsName, :Encrypted, :KmsKeyId, :AppId, :BandwidthLimit, :Capacity, :Tags
|
925
927
|
|
926
|
-
def initialize(creationtime=nil, creationtoken=nil, filesystemid=nil, lifecyclestate=nil, sizebyte=nil, sizelimit=nil, zoneid=nil, zone=nil, protocol=nil, storagetype=nil, storageresourcepkg=nil, bandwidthresourcepkg=nil, pgroup=nil, fsname=nil, encrypted=nil, kmskeyid=nil, appid=nil, bandwidthlimit=nil, capacity=nil)
|
928
|
+
def initialize(creationtime=nil, creationtoken=nil, filesystemid=nil, lifecyclestate=nil, sizebyte=nil, sizelimit=nil, zoneid=nil, zone=nil, protocol=nil, storagetype=nil, storageresourcepkg=nil, bandwidthresourcepkg=nil, pgroup=nil, fsname=nil, encrypted=nil, kmskeyid=nil, appid=nil, bandwidthlimit=nil, capacity=nil, tags=nil)
|
927
929
|
@CreationTime = creationtime
|
928
930
|
@CreationToken = creationtoken
|
929
931
|
@FileSystemId = filesystemid
|
@@ -943,6 +945,7 @@ module TencentCloud
|
|
943
945
|
@AppId = appid
|
944
946
|
@BandwidthLimit = bandwidthlimit
|
945
947
|
@Capacity = capacity
|
948
|
+
@Tags = tags
|
946
949
|
end
|
947
950
|
|
948
951
|
def deserialize(params)
|
@@ -968,6 +971,14 @@ module TencentCloud
|
|
968
971
|
@AppId = params['AppId']
|
969
972
|
@BandwidthLimit = params['BandwidthLimit']
|
970
973
|
@Capacity = params['Capacity']
|
974
|
+
unless params['Tags'].nil?
|
975
|
+
@Tags = []
|
976
|
+
params['Tags'].each do |i|
|
977
|
+
taginfo_tmp = TagInfo.new
|
978
|
+
taginfo_tmp.deserialize(i)
|
979
|
+
@Tags << taginfo_tmp
|
980
|
+
end
|
981
|
+
end
|
971
982
|
end
|
972
983
|
end
|
973
984
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cfs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.257
|
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-02-
|
11
|
+
date: 2022-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|