tencentcloud-sdk-kms 3.0.1089 → 3.0.1092
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/v20190118/models.rb +5 -11
- 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: a74a6090c68ba64c190a3c87a23e5d22d7695298
|
4
|
+
data.tar.gz: 281decc77276fc3d7aa73c3cb16a7273b6eeb931
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c95606166f553d667a7dacbef24868f4eeaf7c81e92ddaa2e6e62ee13901c5416cf7e8d35fde1496f2252a583edc7943f68daa992a44e5320e425410235ad52a
|
7
|
+
data.tar.gz: 8538eeb11d58f1e0038cf6cae659c0313cbe548b628daa746ef24aa0f2ace9ad48474f7d8866a2dd5b837e56f7a02cb2aaa2b5e6fbfd2ed30ebef9f4e1d809a0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1092
|
data/lib/v20190118/models.rb
CHANGED
@@ -1649,15 +1649,13 @@ module TencentCloud
|
|
1649
1649
|
# @type EncryptionPublicKey: String
|
1650
1650
|
# @param EncryptionAlgorithm: 非对称加密算法,配合 EncryptionPublicKey 对返回数据进行加密。目前支持:SM2(以 C1C3C2 格式返回密文),SM2_C1C3C2_ASN1 (以 C1C3C2 ASN1 格式返回密文),RSAES_PKCS1_V1_5,RSAES_OAEP_SHA_1,RSAES_OAEP_SHA_256。若为空,则默认为 SM2。
|
1651
1651
|
# @type EncryptionAlgorithm: String
|
1652
|
-
# @param IsHostedByKms: 表示生成的数据密钥是否被KMS托管。1:表示被KMS托管保存,0:表示KMS
|
1652
|
+
# @param IsHostedByKms: 表示生成的数据密钥是否被KMS托管。1:表示被KMS托管保存,0:表示KMS不托管。
|
1653
1653
|
# @type IsHostedByKms: Integer
|
1654
1654
|
# @param DataKeyName: 数据密钥的名称,当IsHostedByKms为1时,必须填写。当IsHostedByKms为0时,可以不填,KMS不托管。
|
1655
1655
|
# @type DataKeyName: String
|
1656
1656
|
# @param Description: 数据密钥 的描述,最大100字节
|
1657
1657
|
# @type Description: String
|
1658
|
-
# @param HsmClusterId: KMS 独享版对应的 HSM 集群 ID
|
1659
|
-
# 当KeyId 没有传入时有效,如果指定HsmClusterId,会默认在此集群下生成根密钥,然后利用创建的根密钥产生数据密钥。
|
1660
|
-
# 如果没有指定HsmClusterId,则会在公有云共享集群下创建一个根密钥,然后利用创建的根密钥产生数据密钥。
|
1658
|
+
# @param HsmClusterId: KMS 独享版对应的 HSM 集群 ID。如果指定HsmClusterId,表明根密钥在此集群里,会校验KeyId是否和HsmClusterId对应。
|
1661
1659
|
# @type HsmClusterId: String
|
1662
1660
|
|
1663
1661
|
attr_accessor :KeyId, :KeySpec, :NumberOfBytes, :EncryptionContext, :EncryptionPublicKey, :EncryptionAlgorithm, :IsHostedByKms, :DataKeyName, :Description, :HsmClusterId
|
@@ -2113,14 +2111,10 @@ module TencentCloud
|
|
2113
2111
|
# @type ImportType: Integer
|
2114
2112
|
# @param Description: 数据密钥 的描述,最大100字节
|
2115
2113
|
# @type Description: String
|
2116
|
-
# @param KeyId:
|
2117
|
-
#
|
2118
|
-
# 如果没有指定独享集群HsmClusterId,则会在公有云共享集群下创建一个根密钥,根据生成的根密钥加密数据密钥。
|
2119
|
-
# 如果KeyId 不为空,根据指定的根密钥加密数据密钥。
|
2114
|
+
# @param KeyId: 当导入密文数据密钥时,无需传入根密钥,如果传入会校验此KeyId是否和密文中一致。
|
2115
|
+
# 当导入明文数据密钥,KeyId 不能为空,会根据指定的根密钥加密数据密钥。
|
2120
2116
|
# @type KeyId: String
|
2121
|
-
# @param HsmClusterId: KMS 独享版对应的 HSM 集群 ID
|
2122
|
-
# 当KeyId 没有传入时有效,如果指定了独享集群HsmClusterId,则会在独享集群下创建一个根密钥,根据产生的根密钥加密数据密钥。
|
2123
|
-
# 如果没有指定独享集群HsmClusterId,则会在公有云共享集群下创建一个根密钥,根据产生的根密钥加密数据密钥。
|
2117
|
+
# @param HsmClusterId: KMS 独享版对应的 HSM 集群 ID。如果指定HsmClusterId,表明根密钥在此集群里,会校验KeyId是否和HsmClusterId对应。
|
2124
2118
|
# @type HsmClusterId: String
|
2125
2119
|
|
2126
2120
|
attr_accessor :DataKeyName, :ImportKeyMaterial, :ImportType, :Description, :KeyId, :HsmClusterId
|
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.
|
4
|
+
version: 3.0.1092
|
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-
|
11
|
+
date: 2025-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|