tencentcloud-sdk-cfs 3.0.1097 → 3.0.1103
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 +39 -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: 77b69a746cf82d1990d4ddb9b322a085fd64c51b
|
4
|
+
data.tar.gz: 39c6e35c69bb7706c5572d3f0cc46d8bb572f0fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d2b6ca1a528416d3ab694988ce8144774fa68c38c5fb4682a2b390441607ad0122fd14521f96e2aaa36e4527b5aad7751ad8592edafaa9c6f4f0a64f027e8fc
|
7
|
+
data.tar.gz: 6fb34db12b4348c23b75594c3e6717d75b7c34f5b4f8cac66d29dc6a9eccb585347bc0e0e8574d5956ebd13c0cae960e5382731a78cbd8fd484713ef3f7b4428
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1103
|
data/lib/v20190719/models.rb
CHANGED
@@ -1905,6 +1905,26 @@ module TencentCloud
|
|
1905
1905
|
end
|
1906
1906
|
end
|
1907
1907
|
|
1908
|
+
# 购买完额外性能之后的值
|
1909
|
+
class ExstraPerformanceInfo < TencentCloud::Common::AbstractModel
|
1910
|
+
# @param Type: fixed: 最终值固定
|
1911
|
+
# @type Type: String
|
1912
|
+
# @param Performance: 额外购买的CFS性能值,单位MB/s。
|
1913
|
+
# @type Performance: Integer
|
1914
|
+
|
1915
|
+
attr_accessor :Type, :Performance
|
1916
|
+
|
1917
|
+
def initialize(type=nil, performance=nil)
|
1918
|
+
@Type = type
|
1919
|
+
@Performance = performance
|
1920
|
+
end
|
1921
|
+
|
1922
|
+
def deserialize(params)
|
1923
|
+
@Type = params['Type']
|
1924
|
+
@Performance = params['Performance']
|
1925
|
+
end
|
1926
|
+
end
|
1927
|
+
|
1908
1928
|
# 绑定快照策略的文件系统信息
|
1909
1929
|
class FileSystemByPolicy < TencentCloud::Common::AbstractModel
|
1910
1930
|
# @param CreationToken: 文件系统名称
|
@@ -2044,10 +2064,16 @@ module TencentCloud
|
|
2044
2064
|
# @type AutoScaleUpRule: :class:`Tencentcloud::Cfs.v20190719.models.AutoScaleUpRule`
|
2045
2065
|
# @param Version: 文件系统版本
|
2046
2066
|
# @type Version: String
|
2067
|
+
# @param ExstraPerformanceInfo: 额外性能信息
|
2068
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2069
|
+
# @type ExstraPerformanceInfo: Array
|
2070
|
+
# @param MetaType: basic:标准版元数据类型
|
2071
|
+
# enhanced:增项版元数据类型
|
2072
|
+
# @type MetaType: String
|
2047
2073
|
|
2048
|
-
attr_accessor :CreationTime, :CreationToken, :FileSystemId, :LifeCycleState, :SizeByte, :SizeLimit, :ZoneId, :Zone, :Protocol, :StorageType, :StorageResourcePkg, :BandwidthResourcePkg, :PGroup, :FsName, :Encrypted, :KmsKeyId, :AppId, :BandwidthLimit, :AutoSnapshotPolicyId, :SnapStatus, :Capacity, :Tags, :TieringState, :TieringDetail, :AutoScaleUpRule, :Version
|
2074
|
+
attr_accessor :CreationTime, :CreationToken, :FileSystemId, :LifeCycleState, :SizeByte, :SizeLimit, :ZoneId, :Zone, :Protocol, :StorageType, :StorageResourcePkg, :BandwidthResourcePkg, :PGroup, :FsName, :Encrypted, :KmsKeyId, :AppId, :BandwidthLimit, :AutoSnapshotPolicyId, :SnapStatus, :Capacity, :Tags, :TieringState, :TieringDetail, :AutoScaleUpRule, :Version, :ExstraPerformanceInfo, :MetaType
|
2049
2075
|
|
2050
|
-
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, autosnapshotpolicyid=nil, snapstatus=nil, capacity=nil, tags=nil, tieringstate=nil, tieringdetail=nil, autoscaleuprule=nil, version=nil)
|
2076
|
+
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, autosnapshotpolicyid=nil, snapstatus=nil, capacity=nil, tags=nil, tieringstate=nil, tieringdetail=nil, autoscaleuprule=nil, version=nil, exstraperformanceinfo=nil, metatype=nil)
|
2051
2077
|
@CreationTime = creationtime
|
2052
2078
|
@CreationToken = creationtoken
|
2053
2079
|
@FileSystemId = filesystemid
|
@@ -2074,6 +2100,8 @@ module TencentCloud
|
|
2074
2100
|
@TieringDetail = tieringdetail
|
2075
2101
|
@AutoScaleUpRule = autoscaleuprule
|
2076
2102
|
@Version = version
|
2103
|
+
@ExstraPerformanceInfo = exstraperformanceinfo
|
2104
|
+
@MetaType = metatype
|
2077
2105
|
end
|
2078
2106
|
|
2079
2107
|
def deserialize(params)
|
@@ -2119,6 +2147,15 @@ module TencentCloud
|
|
2119
2147
|
@AutoScaleUpRule.deserialize(params['AutoScaleUpRule'])
|
2120
2148
|
end
|
2121
2149
|
@Version = params['Version']
|
2150
|
+
unless params['ExstraPerformanceInfo'].nil?
|
2151
|
+
@ExstraPerformanceInfo = []
|
2152
|
+
params['ExstraPerformanceInfo'].each do |i|
|
2153
|
+
exstraperformanceinfo_tmp = ExstraPerformanceInfo.new
|
2154
|
+
exstraperformanceinfo_tmp.deserialize(i)
|
2155
|
+
@ExstraPerformanceInfo << exstraperformanceinfo_tmp
|
2156
|
+
end
|
2157
|
+
end
|
2158
|
+
@MetaType = params['MetaType']
|
2122
2159
|
end
|
2123
2160
|
end
|
2124
2161
|
|
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: 3.0.
|
4
|
+
version: 3.0.1103
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|