tencentcloud-sdk-cfs 3.0.532 → 3.0.533
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 +25 -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: 5defd9a75e806f9a2d5b2ba692eebf83db9b7439
|
|
4
|
+
data.tar.gz: cc5a684e61cc3547fde80041ed56ff3f1eda5268
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d09402f9bd53f9c838ff589793d68783952e616b915dcfd69bde2959bd0a2690d1f46bc619251e8c74ad68a73b32f31afa27f63d42f43bf4b7c0f0790a8d9f9c
|
|
7
|
+
data.tar.gz: a447faf97d732ccec303ce0292c19913fcad9694fa717c42f22ec43cee2407c689acbc264d93c1b71ad17a783aff4381084177ad679cea599118cfe9fda6c028
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.533
|
data/lib/v20190719/models.rb
CHANGED
|
@@ -1605,10 +1605,15 @@ module TencentCloud
|
|
|
1605
1605
|
# @type Capacity: Integer
|
|
1606
1606
|
# @param Tags: 文件系统标签列表
|
|
1607
1607
|
# @type Tags: Array
|
|
1608
|
+
# @param TieringState: 文件系统声明周期管理状态
|
|
1609
|
+
# @type TieringState: String
|
|
1610
|
+
# @param TieringDetail: 分层存储详情
|
|
1611
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1612
|
+
# @type TieringDetail: :class:`Tencentcloud::Cfs.v20190719.models.TieringDetailInfo`
|
|
1608
1613
|
|
|
1609
|
-
attr_accessor :CreationTime, :CreationToken, :FileSystemId, :LifeCycleState, :SizeByte, :SizeLimit, :ZoneId, :Zone, :Protocol, :StorageType, :StorageResourcePkg, :BandwidthResourcePkg, :PGroup, :FsName, :Encrypted, :KmsKeyId, :AppId, :BandwidthLimit, :Capacity, :Tags
|
|
1614
|
+
attr_accessor :CreationTime, :CreationToken, :FileSystemId, :LifeCycleState, :SizeByte, :SizeLimit, :ZoneId, :Zone, :Protocol, :StorageType, :StorageResourcePkg, :BandwidthResourcePkg, :PGroup, :FsName, :Encrypted, :KmsKeyId, :AppId, :BandwidthLimit, :Capacity, :Tags, :TieringState, :TieringDetail
|
|
1610
1615
|
|
|
1611
|
-
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)
|
|
1616
|
+
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, tieringstate=nil, tieringdetail=nil)
|
|
1612
1617
|
@CreationTime = creationtime
|
|
1613
1618
|
@CreationToken = creationtoken
|
|
1614
1619
|
@FileSystemId = filesystemid
|
|
@@ -1629,6 +1634,8 @@ module TencentCloud
|
|
|
1629
1634
|
@BandwidthLimit = bandwidthlimit
|
|
1630
1635
|
@Capacity = capacity
|
|
1631
1636
|
@Tags = tags
|
|
1637
|
+
@TieringState = tieringstate
|
|
1638
|
+
@TieringDetail = tieringdetail
|
|
1632
1639
|
end
|
|
1633
1640
|
|
|
1634
1641
|
def deserialize(params)
|
|
@@ -1662,6 +1669,11 @@ module TencentCloud
|
|
|
1662
1669
|
@Tags << taginfo_tmp
|
|
1663
1670
|
end
|
|
1664
1671
|
end
|
|
1672
|
+
@TieringState = params['TieringState']
|
|
1673
|
+
unless params['TieringDetail'].nil?
|
|
1674
|
+
@TieringDetail = TieringDetailInfo.new
|
|
1675
|
+
@TieringDetail.deserialize(params['TieringDetail'])
|
|
1676
|
+
end
|
|
1665
1677
|
end
|
|
1666
1678
|
end
|
|
1667
1679
|
|
|
@@ -2055,6 +2067,17 @@ module TencentCloud
|
|
|
2055
2067
|
end
|
|
2056
2068
|
end
|
|
2057
2069
|
|
|
2070
|
+
# 分层存储详细信息
|
|
2071
|
+
class TieringDetailInfo < TencentCloud::Common::AbstractModel
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
def initialize()
|
|
2075
|
+
end
|
|
2076
|
+
|
|
2077
|
+
def deserialize(params)
|
|
2078
|
+
end
|
|
2079
|
+
end
|
|
2080
|
+
|
|
2058
2081
|
# UnbindAutoSnapshotPolicy请求参数结构体
|
|
2059
2082
|
class UnbindAutoSnapshotPolicyRequest < TencentCloud::Common::AbstractModel
|
|
2060
2083
|
# @param FileSystemIds: 需要解绑的文件系统ID列表,用"," 分割
|
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.533
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|