tencentcloud-sdk-ssm 3.0.566 → 3.0.568
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/v20190923/models.rb +18 -5
- 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: a2f00e61bc214c7a73d8dcb5ee4d595ea0db412c
|
4
|
+
data.tar.gz: 4d6d9b557dd1fc5ca2e4a9407ee3c967d7cf5ded
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f37836f687ec5cf0d4bc19de22d6caeb70b17d371556d57cdbcdd3d6d24d88eb0de24d8e3fb5b28d6345a118b9c7fcf4b845eb7eda94c5e3950d29504569415b
|
7
|
+
data.tar.gz: de3e764ca7e6f243cd00c3bc7c43d7213205b97564e2235251b02faf8705af62f02dd40415dcf20cb85823df789fbf5cbd48ade1fa8643d33a93c7f2246ca7ee
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.568
|
data/lib/v20190923/models.rb
CHANGED
@@ -225,28 +225,34 @@ module TencentCloud
|
|
225
225
|
class CreateSecretRequest < TencentCloud::Common::AbstractModel
|
226
226
|
# @param SecretName: 凭据名称,同一region内不可重复,最长128字节,使用字母、数字或者 - _ 的组合,第一个字符必须为字母或者数字。一旦创建不可修改。
|
227
227
|
# @type SecretName: String
|
228
|
-
# @param VersionId: 凭据版本,查询凭据信息时需要根据SecretName 和 VersionId进行查询,最长64 字节,使用字母、数字或者 - _ .
|
228
|
+
# @param VersionId: 凭据版本,查询凭据信息时需要根据SecretName 和 VersionId进行查询,最长64 字节,使用字母、数字或者 - _ . 的组合并且以字母或数字开头。若为空,则使用默认的初始凭据版本号。可选,若为空或该凭据为云产品类凭据,则该版本号默认为 SSM_Current。
|
229
229
|
# @type VersionId: String
|
230
230
|
# @param Description: 描述信息,用于详细描述用途等,最大支持2048字节。
|
231
231
|
# @type Description: String
|
232
232
|
# @param KmsKeyId: 指定对凭据进行加密的KMS CMK。如果为空则表示使用Secrets Manager为您默认创建的CMK进行加密。您也可以指定在同region 下自行创建的KMS CMK进行加密。
|
233
233
|
# @type KmsKeyId: String
|
234
|
+
# @param SecretType: 凭据类型,默认为自定义凭据。
|
235
|
+
# @type SecretType: Integer
|
234
236
|
# @param SecretBinary: 二进制凭据信息base64编码后的明文。SecretBinary 和 SecretString 必须且只能设置一个,最大支持4096字节。
|
235
237
|
# @type SecretBinary: String
|
236
238
|
# @param SecretString: 文本类型凭据信息明文(不需要进行base64编码)。SecretBinary 和 SecretString 必须且只能设置一个,,最大支持4096字节。
|
237
239
|
# @type SecretString: String
|
240
|
+
# @param AdditionalConfig: JSON 格式字符串,用于指定特定凭据类型的额外配置。
|
241
|
+
# @type AdditionalConfig: String
|
238
242
|
# @param Tags: 标签列表
|
239
243
|
# @type Tags: Array
|
240
244
|
|
241
|
-
attr_accessor :SecretName, :VersionId, :Description, :KmsKeyId, :SecretBinary, :SecretString, :Tags
|
245
|
+
attr_accessor :SecretName, :VersionId, :Description, :KmsKeyId, :SecretType, :SecretBinary, :SecretString, :AdditionalConfig, :Tags
|
242
246
|
|
243
|
-
def initialize(secretname=nil, versionid=nil, description=nil, kmskeyid=nil, secretbinary=nil, secretstring=nil, tags=nil)
|
247
|
+
def initialize(secretname=nil, versionid=nil, description=nil, kmskeyid=nil, secrettype=nil, secretbinary=nil, secretstring=nil, additionalconfig=nil, tags=nil)
|
244
248
|
@SecretName = secretname
|
245
249
|
@VersionId = versionid
|
246
250
|
@Description = description
|
247
251
|
@KmsKeyId = kmskeyid
|
252
|
+
@SecretType = secrettype
|
248
253
|
@SecretBinary = secretbinary
|
249
254
|
@SecretString = secretstring
|
255
|
+
@AdditionalConfig = additionalconfig
|
250
256
|
@Tags = tags
|
251
257
|
end
|
252
258
|
|
@@ -255,8 +261,10 @@ module TencentCloud
|
|
255
261
|
@VersionId = params['VersionId']
|
256
262
|
@Description = params['Description']
|
257
263
|
@KmsKeyId = params['KmsKeyId']
|
264
|
+
@SecretType = params['SecretType']
|
258
265
|
@SecretBinary = params['SecretBinary']
|
259
266
|
@SecretString = params['SecretString']
|
267
|
+
@AdditionalConfig = params['AdditionalConfig']
|
260
268
|
unless params['Tags'].nil?
|
261
269
|
@Tags = []
|
262
270
|
params['Tags'].each do |i|
|
@@ -587,12 +595,15 @@ module TencentCloud
|
|
587
595
|
# @param TargetUin: 当凭据类型为云API密钥对凭据时,此字段有效,用于表示此云API密钥对所属的用户UIN。
|
588
596
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
589
597
|
# @type TargetUin: Integer
|
598
|
+
# @param AdditionalConfig: 凭据额外配置
|
599
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
600
|
+
# @type AdditionalConfig: String
|
590
601
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
591
602
|
# @type RequestId: String
|
592
603
|
|
593
|
-
attr_accessor :SecretName, :Description, :KmsKeyId, :CreateUin, :Status, :DeleteTime, :CreateTime, :SecretType, :ProductName, :ResourceID, :RotationStatus, :RotationFrequency, :ResourceName, :ProjectID, :AssociatedInstanceIDs, :TargetUin, :RequestId
|
604
|
+
attr_accessor :SecretName, :Description, :KmsKeyId, :CreateUin, :Status, :DeleteTime, :CreateTime, :SecretType, :ProductName, :ResourceID, :RotationStatus, :RotationFrequency, :ResourceName, :ProjectID, :AssociatedInstanceIDs, :TargetUin, :AdditionalConfig, :RequestId
|
594
605
|
|
595
|
-
def initialize(secretname=nil, description=nil, kmskeyid=nil, createuin=nil, status=nil, deletetime=nil, createtime=nil, secrettype=nil, productname=nil, resourceid=nil, rotationstatus=nil, rotationfrequency=nil, resourcename=nil, projectid=nil, associatedinstanceids=nil, targetuin=nil, requestid=nil)
|
606
|
+
def initialize(secretname=nil, description=nil, kmskeyid=nil, createuin=nil, status=nil, deletetime=nil, createtime=nil, secrettype=nil, productname=nil, resourceid=nil, rotationstatus=nil, rotationfrequency=nil, resourcename=nil, projectid=nil, associatedinstanceids=nil, targetuin=nil, additionalconfig=nil, requestid=nil)
|
596
607
|
@SecretName = secretname
|
597
608
|
@Description = description
|
598
609
|
@KmsKeyId = kmskeyid
|
@@ -609,6 +620,7 @@ module TencentCloud
|
|
609
620
|
@ProjectID = projectid
|
610
621
|
@AssociatedInstanceIDs = associatedinstanceids
|
611
622
|
@TargetUin = targetuin
|
623
|
+
@AdditionalConfig = additionalconfig
|
612
624
|
@RequestId = requestid
|
613
625
|
end
|
614
626
|
|
@@ -629,6 +641,7 @@ module TencentCloud
|
|
629
641
|
@ProjectID = params['ProjectID']
|
630
642
|
@AssociatedInstanceIDs = params['AssociatedInstanceIDs']
|
631
643
|
@TargetUin = params['TargetUin']
|
644
|
+
@AdditionalConfig = params['AdditionalConfig']
|
632
645
|
@RequestId = params['RequestId']
|
633
646
|
end
|
634
647
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.568
|
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-05-
|
11
|
+
date: 2023-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|