tencentcloud-sdk-kms 3.0.936 → 3.0.937
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/v20190118/models.rb +10 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0096262374efae4022119ad46c0ce1a0d1824e6b
|
4
|
+
data.tar.gz: ee320ad8dad1c5281d0cda8e65cc9d5c8464ad06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29701ea1e58b3c3a5162232ce6fb04e5442ea0c14fffa7c4eae379b9356ba6ac11510ed84a01917a0897d4013a3fe05f1c21d9d1f138eba70d4497502aaa4904
|
7
|
+
data.tar.gz: 8570004695a717e4973edf399fb563826806cee9cd149963baccc4101d5aebb0875010dcf10b0ddabb5c6f09303bfb1722c5e4355560ee7075731d44babd35b0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.937
|
data/lib/v20190118/models.rb
CHANGED
@@ -1714,10 +1714,14 @@ module TencentCloud
|
|
1714
1714
|
# @type ResourceId: String
|
1715
1715
|
# @param HsmClusterId: HSM 集群 ID(仅对 KMS 独占版/托管版服务实例有效)
|
1716
1716
|
# @type HsmClusterId: String
|
1717
|
+
# @param RotateDays: 密钥轮转周期(天)
|
1718
|
+
# @type RotateDays: Integer
|
1719
|
+
# @param LastRotateTime: 上次乱转时间(Unix timestamp)
|
1720
|
+
# @type LastRotateTime: Integer
|
1717
1721
|
|
1718
|
-
attr_accessor :KeyId, :Alias, :CreateTime, :Description, :KeyState, :KeyUsage, :Type, :CreatorUin, :KeyRotationEnabled, :Owner, :NextRotateTime, :DeletionDate, :Origin, :ValidTo, :ResourceId, :HsmClusterId
|
1722
|
+
attr_accessor :KeyId, :Alias, :CreateTime, :Description, :KeyState, :KeyUsage, :Type, :CreatorUin, :KeyRotationEnabled, :Owner, :NextRotateTime, :DeletionDate, :Origin, :ValidTo, :ResourceId, :HsmClusterId, :RotateDays, :LastRotateTime
|
1719
1723
|
|
1720
|
-
def initialize(keyid=nil, _alias=nil, createtime=nil, description=nil, keystate=nil, keyusage=nil, type=nil, creatoruin=nil, keyrotationenabled=nil, owner=nil, nextrotatetime=nil, deletiondate=nil, origin=nil, validto=nil, resourceid=nil, hsmclusterid=nil)
|
1724
|
+
def initialize(keyid=nil, _alias=nil, createtime=nil, description=nil, keystate=nil, keyusage=nil, type=nil, creatoruin=nil, keyrotationenabled=nil, owner=nil, nextrotatetime=nil, deletiondate=nil, origin=nil, validto=nil, resourceid=nil, hsmclusterid=nil, rotatedays=nil, lastrotatetime=nil)
|
1721
1725
|
@KeyId = keyid
|
1722
1726
|
@Alias = _alias
|
1723
1727
|
@CreateTime = createtime
|
@@ -1734,6 +1738,8 @@ module TencentCloud
|
|
1734
1738
|
@ValidTo = validto
|
1735
1739
|
@ResourceId = resourceid
|
1736
1740
|
@HsmClusterId = hsmclusterid
|
1741
|
+
@RotateDays = rotatedays
|
1742
|
+
@LastRotateTime = lastrotatetime
|
1737
1743
|
end
|
1738
1744
|
|
1739
1745
|
def deserialize(params)
|
@@ -1753,6 +1759,8 @@ module TencentCloud
|
|
1753
1759
|
@ValidTo = params['ValidTo']
|
1754
1760
|
@ResourceId = params['ResourceId']
|
1755
1761
|
@HsmClusterId = params['HsmClusterId']
|
1762
|
+
@RotateDays = params['RotateDays']
|
1763
|
+
@LastRotateTime = params['LastRotateTime']
|
1756
1764
|
end
|
1757
1765
|
end
|
1758
1766
|
|