tencentcloud-sdk-kms 3.0.1039 → 3.0.1041

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190118/models.rb +33 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0052e873bb70e111adec415bc710bf7721b84288
4
- data.tar.gz: c4d0cde011ac0118a76208d802574295a8834823
3
+ metadata.gz: 091092ba244b798d566123cf7ac7537fd00b8f82
4
+ data.tar.gz: fe1b070ccd38657711a8a42d6011855e4d3908aa
5
5
  SHA512:
6
- metadata.gz: e06b5684be022e22d91f539baa63c8a77937be98078b341f8d2dc03263f61730a9033c3c21a976fc610cf96349aefb28c3d0b4a11c2a1c61f43694e4c9300e98
7
- data.tar.gz: df5cf9b5b1f9a070c51a0155417dc34a179d17878eaf387a25503c681aa84263fbbe913fc291e9fc1f86e253b61a6ce1e83fd482affa250953a89cbefc1110d1
6
+ metadata.gz: eec0ab148ca21c6e0ae17a796978641916e10c8b0a132d723e4dc765e01c92fa665f5f6394a67f477bda07a6dcc90da1974dc0ecd7b7ae64dad420a7a9d86047
7
+ data.tar.gz: 67520b541200c1cfbd5adc1b9b754a399eab8ecafed3a026ccbe79eb4c12b4c764b611a39045472c89a3e0c50e37a3eed3594d7498e15a2ce3b2930ca5afab0e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1039
1
+ 3.0.1041
@@ -1289,6 +1289,26 @@ module TencentCloud
1289
1289
  end
1290
1290
  end
1291
1291
 
1292
+ # 独享版集群
1293
+ class ExclusiveHSM < TencentCloud::Common::AbstractModel
1294
+ # @param HsmClusterId: 独享集群Id
1295
+ # @type HsmClusterId: String
1296
+ # @param HsmClusterName: 独享集群名称
1297
+ # @type HsmClusterName: String
1298
+
1299
+ attr_accessor :HsmClusterId, :HsmClusterName
1300
+
1301
+ def initialize(hsmclusterid=nil, hsmclustername=nil)
1302
+ @HsmClusterId = hsmclusterid
1303
+ @HsmClusterName = hsmclustername
1304
+ end
1305
+
1306
+ def deserialize(params)
1307
+ @HsmClusterId = params['HsmClusterId']
1308
+ @HsmClusterName = params['HsmClusterName']
1309
+ end
1310
+ end
1311
+
1292
1312
  # GenerateDataKey请求参数结构体
1293
1313
  class GenerateDataKeyRequest < TencentCloud::Common::AbstractModel
1294
1314
  # @param KeyId: CMK全局唯一标识符
@@ -1592,12 +1612,14 @@ module TencentCloud
1592
1612
  # @type CmkUserCount: Integer
1593
1613
  # @param CmkLimit: 返回KMS用户密钥规格数量
1594
1614
  # @type CmkLimit: Integer
1615
+ # @param ExclusiveHSMList: 返回独享集群组
1616
+ # @type ExclusiveHSMList: Array
1595
1617
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1596
1618
  # @type RequestId: String
1597
1619
 
1598
- attr_accessor :ServiceEnabled, :InvalidType, :UserLevel, :ProExpireTime, :ProRenewFlag, :ProResourceId, :ExclusiveVSMEnabled, :ExclusiveHSMEnabled, :SubscriptionInfo, :CmkUserCount, :CmkLimit, :RequestId
1620
+ attr_accessor :ServiceEnabled, :InvalidType, :UserLevel, :ProExpireTime, :ProRenewFlag, :ProResourceId, :ExclusiveVSMEnabled, :ExclusiveHSMEnabled, :SubscriptionInfo, :CmkUserCount, :CmkLimit, :ExclusiveHSMList, :RequestId
1599
1621
 
1600
- def initialize(serviceenabled=nil, invalidtype=nil, userlevel=nil, proexpiretime=nil, prorenewflag=nil, proresourceid=nil, exclusivevsmenabled=nil, exclusivehsmenabled=nil, subscriptioninfo=nil, cmkusercount=nil, cmklimit=nil, requestid=nil)
1622
+ def initialize(serviceenabled=nil, invalidtype=nil, userlevel=nil, proexpiretime=nil, prorenewflag=nil, proresourceid=nil, exclusivevsmenabled=nil, exclusivehsmenabled=nil, subscriptioninfo=nil, cmkusercount=nil, cmklimit=nil, exclusivehsmlist=nil, requestid=nil)
1601
1623
  @ServiceEnabled = serviceenabled
1602
1624
  @InvalidType = invalidtype
1603
1625
  @UserLevel = userlevel
@@ -1609,6 +1631,7 @@ module TencentCloud
1609
1631
  @SubscriptionInfo = subscriptioninfo
1610
1632
  @CmkUserCount = cmkusercount
1611
1633
  @CmkLimit = cmklimit
1634
+ @ExclusiveHSMList = exclusivehsmlist
1612
1635
  @RequestId = requestid
1613
1636
  end
1614
1637
 
@@ -1624,6 +1647,14 @@ module TencentCloud
1624
1647
  @SubscriptionInfo = params['SubscriptionInfo']
1625
1648
  @CmkUserCount = params['CmkUserCount']
1626
1649
  @CmkLimit = params['CmkLimit']
1650
+ unless params['ExclusiveHSMList'].nil?
1651
+ @ExclusiveHSMList = []
1652
+ params['ExclusiveHSMList'].each do |i|
1653
+ exclusivehsm_tmp = ExclusiveHSM.new
1654
+ exclusivehsm_tmp.deserialize(i)
1655
+ @ExclusiveHSMList << exclusivehsm_tmp
1656
+ end
1657
+ end
1627
1658
  @RequestId = params['RequestId']
1628
1659
  end
1629
1660
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-kms
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1039
4
+ version: 3.0.1041
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-04-13 00:00:00.000000000 Z
11
+ date: 2025-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common