tencentcloud-sdk-ssm 3.0.1044 → 3.0.1045

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/v20190923/models.rb +18 -6
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a62b85eb6deeec27613ccaf0ac8ae9ef87e37e9
4
- data.tar.gz: 8fa7ca62ebe59897e0c1b5233e9be8e7b0f3598b
3
+ metadata.gz: 7c2da73ed1610b182caf4c6a5b21b5f0489ff35e
4
+ data.tar.gz: 835c89289ef349cab31a22d58ef8ccc7419f106b
5
5
  SHA512:
6
- metadata.gz: 7a469644f47c7517edcd9fe774beb3a12ad4be930f9176b0f624677fd236f10e67b16ccda51388adb7aef4c5f35c8296e2b97c28cb087a6ca3352a40c83125c5
7
- data.tar.gz: 4bdac87840abf1c7796185b59cb369f6440d545e8aee2547a0cc5ae5067a2f563b9409c02e4358ede5b38a7be835515344f3deaa9737b92917219b575921d48c
6
+ metadata.gz: 9ed735773c3a0638e5217f0d96b372fd657920a3ca72a72535e77169d76d55a109915014308276b0c2ce34d8b57e9b864eb08bb21a620a58cf8c1bd2d031386d
7
+ data.tar.gz: 9550547e1bacaac3405dd66c764ed1cbd576b254b65bf612c15682d17a26157b820cbf95082c2fb59bf66115a7cbbbc1f6573dacff648e613b4f746bc5549467
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1044
1
+ 3.0.1045
@@ -55,10 +55,12 @@ module TencentCloud
55
55
  # @type EnableRotation: Boolean
56
56
  # @param RotationFrequency: 轮转周期,以天为单位,默认为1天。
57
57
  # @type RotationFrequency: Integer
58
+ # @param KmsHsmClusterId: KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
59
+ # @type KmsHsmClusterId: String
58
60
 
59
- attr_accessor :SecretName, :UserNamePrefix, :ProductName, :InstanceID, :Domains, :PrivilegesList, :Description, :KmsKeyId, :Tags, :RotationBeginTime, :EnableRotation, :RotationFrequency
61
+ attr_accessor :SecretName, :UserNamePrefix, :ProductName, :InstanceID, :Domains, :PrivilegesList, :Description, :KmsKeyId, :Tags, :RotationBeginTime, :EnableRotation, :RotationFrequency, :KmsHsmClusterId
60
62
 
61
- def initialize(secretname=nil, usernameprefix=nil, productname=nil, instanceid=nil, domains=nil, privilegeslist=nil, description=nil, kmskeyid=nil, tags=nil, rotationbegintime=nil, enablerotation=nil, rotationfrequency=nil)
63
+ def initialize(secretname=nil, usernameprefix=nil, productname=nil, instanceid=nil, domains=nil, privilegeslist=nil, description=nil, kmskeyid=nil, tags=nil, rotationbegintime=nil, enablerotation=nil, rotationfrequency=nil, kmshsmclusterid=nil)
62
64
  @SecretName = secretname
63
65
  @UserNamePrefix = usernameprefix
64
66
  @ProductName = productname
@@ -71,6 +73,7 @@ module TencentCloud
71
73
  @RotationBeginTime = rotationbegintime
72
74
  @EnableRotation = enablerotation
73
75
  @RotationFrequency = rotationfrequency
76
+ @KmsHsmClusterId = kmshsmclusterid
74
77
  end
75
78
 
76
79
  def deserialize(params)
@@ -100,6 +103,7 @@ module TencentCloud
100
103
  @RotationBeginTime = params['RotationBeginTime']
101
104
  @EnableRotation = params['EnableRotation']
102
105
  @RotationFrequency = params['RotationFrequency']
106
+ @KmsHsmClusterId = params['KmsHsmClusterId']
103
107
  end
104
108
  end
105
109
 
@@ -151,16 +155,19 @@ module TencentCloud
151
155
  # @type Tags: Array
152
156
  # @param SSHKeyName: 用户自定义输入的SSH密钥对的名称,可由数字,字母和下划线组成,只能以数字和字母开头,长度不超过25个字符。
153
157
  # @type SSHKeyName: String
158
+ # @param KmsHsmClusterId: KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
159
+ # @type KmsHsmClusterId: String
154
160
 
155
- attr_accessor :SecretName, :ProjectId, :Description, :KmsKeyId, :Tags, :SSHKeyName
161
+ attr_accessor :SecretName, :ProjectId, :Description, :KmsKeyId, :Tags, :SSHKeyName, :KmsHsmClusterId
156
162
 
157
- def initialize(secretname=nil, projectid=nil, description=nil, kmskeyid=nil, tags=nil, sshkeyname=nil)
163
+ def initialize(secretname=nil, projectid=nil, description=nil, kmskeyid=nil, tags=nil, sshkeyname=nil, kmshsmclusterid=nil)
158
164
  @SecretName = secretname
159
165
  @ProjectId = projectid
160
166
  @Description = description
161
167
  @KmsKeyId = kmskeyid
162
168
  @Tags = tags
163
169
  @SSHKeyName = sshkeyname
170
+ @KmsHsmClusterId = kmshsmclusterid
164
171
  end
165
172
 
166
173
  def deserialize(params)
@@ -177,6 +184,7 @@ module TencentCloud
177
184
  end
178
185
  end
179
186
  @SSHKeyName = params['SSHKeyName']
187
+ @KmsHsmClusterId = params['KmsHsmClusterId']
180
188
  end
181
189
  end
182
190
 
@@ -236,10 +244,12 @@ module TencentCloud
236
244
  # @type AdditionalConfig: String
237
245
  # @param Tags: 标签列表
238
246
  # @type Tags: Array
247
+ # @param KmsHsmClusterId: KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
248
+ # @type KmsHsmClusterId: String
239
249
 
240
- attr_accessor :SecretName, :VersionId, :Description, :KmsKeyId, :SecretType, :SecretBinary, :SecretString, :AdditionalConfig, :Tags
250
+ attr_accessor :SecretName, :VersionId, :Description, :KmsKeyId, :SecretType, :SecretBinary, :SecretString, :AdditionalConfig, :Tags, :KmsHsmClusterId
241
251
 
242
- def initialize(secretname=nil, versionid=nil, description=nil, kmskeyid=nil, secrettype=nil, secretbinary=nil, secretstring=nil, additionalconfig=nil, tags=nil)
252
+ def initialize(secretname=nil, versionid=nil, description=nil, kmskeyid=nil, secrettype=nil, secretbinary=nil, secretstring=nil, additionalconfig=nil, tags=nil, kmshsmclusterid=nil)
243
253
  @SecretName = secretname
244
254
  @VersionId = versionid
245
255
  @Description = description
@@ -249,6 +259,7 @@ module TencentCloud
249
259
  @SecretString = secretstring
250
260
  @AdditionalConfig = additionalconfig
251
261
  @Tags = tags
262
+ @KmsHsmClusterId = kmshsmclusterid
252
263
  end
253
264
 
254
265
  def deserialize(params)
@@ -268,6 +279,7 @@ module TencentCloud
268
279
  @Tags << tag_tmp
269
280
  end
270
281
  end
282
+ @KmsHsmClusterId = params['KmsHsmClusterId']
271
283
  end
272
284
  end
273
285
 
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.1044
4
+ version: 3.0.1045
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-22 00:00:00.000000000 Z
11
+ date: 2025-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - lib/tencentcloud-sdk-ssm.rb
36
37
  - lib/v20190923/client.rb
37
38
  - lib/v20190923/models.rb
38
- - lib/tencentcloud-sdk-ssm.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: