tencentcloud-sdk-ssm 3.0.560 → 3.0.562
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 +17 -2
- 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: d9b030c09372b75702690cac73bc8faa27339cab
|
|
4
|
+
data.tar.gz: 40313969638f6843054709058ca725dc569cdf38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48be03bba4aced1fea540c5b30adcc684e927c3216c5bb3a220a1ff49c50c5c5da6ab95db1de0dfc04744f1b7259211e04a497ee1214a72aa0caffb18c5eeaee
|
|
7
|
+
data.tar.gz: 530e7261e0fe233e584e47f88920f36d74e74684be5a8cca77c9e34c9c5f1be67e6af5556a24f121f669b435272fc21f89c859ad0c1ee8b9e84432731d059a2c
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.562
|
data/lib/v20190923/models.rb
CHANGED
|
@@ -1299,10 +1299,19 @@ module TencentCloud
|
|
|
1299
1299
|
# @param TargetUin: 当凭据类型为云API密钥对凭据时,此字段有效,用于表示云API密钥对所属的用户UIN。
|
|
1300
1300
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1301
1301
|
# @type TargetUin: Integer
|
|
1302
|
+
# @param RotationFrequency: 轮转的频率,以天作为单位,在轮转开启状态下生效。
|
|
1303
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1304
|
+
# @type RotationFrequency: Integer
|
|
1305
|
+
# @param ResourceID: 云产品凭据对应的云产品实例 ID 号。
|
|
1306
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1307
|
+
# @type ResourceID: String
|
|
1308
|
+
# @param RotationBeginTime: 用户指定的轮转开始时间。
|
|
1309
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1310
|
+
# @type RotationBeginTime: String
|
|
1302
1311
|
|
|
1303
|
-
attr_accessor :SecretName, :Description, :KmsKeyId, :CreateUin, :Status, :DeleteTime, :CreateTime, :KmsKeyType, :RotationStatus, :NextRotationTime, :SecretType, :ProductName, :ResourceName, :ProjectID, :AssociatedInstanceIDs, :TargetUin
|
|
1312
|
+
attr_accessor :SecretName, :Description, :KmsKeyId, :CreateUin, :Status, :DeleteTime, :CreateTime, :KmsKeyType, :RotationStatus, :NextRotationTime, :SecretType, :ProductName, :ResourceName, :ProjectID, :AssociatedInstanceIDs, :TargetUin, :RotationFrequency, :ResourceID, :RotationBeginTime
|
|
1304
1313
|
|
|
1305
|
-
def initialize(secretname=nil, description=nil, kmskeyid=nil, createuin=nil, status=nil, deletetime=nil, createtime=nil, kmskeytype=nil, rotationstatus=nil, nextrotationtime=nil, secrettype=nil, productname=nil, resourcename=nil, projectid=nil, associatedinstanceids=nil, targetuin=nil)
|
|
1314
|
+
def initialize(secretname=nil, description=nil, kmskeyid=nil, createuin=nil, status=nil, deletetime=nil, createtime=nil, kmskeytype=nil, rotationstatus=nil, nextrotationtime=nil, secrettype=nil, productname=nil, resourcename=nil, projectid=nil, associatedinstanceids=nil, targetuin=nil, rotationfrequency=nil, resourceid=nil, rotationbegintime=nil)
|
|
1306
1315
|
@SecretName = secretname
|
|
1307
1316
|
@Description = description
|
|
1308
1317
|
@KmsKeyId = kmskeyid
|
|
@@ -1319,6 +1328,9 @@ module TencentCloud
|
|
|
1319
1328
|
@ProjectID = projectid
|
|
1320
1329
|
@AssociatedInstanceIDs = associatedinstanceids
|
|
1321
1330
|
@TargetUin = targetuin
|
|
1331
|
+
@RotationFrequency = rotationfrequency
|
|
1332
|
+
@ResourceID = resourceid
|
|
1333
|
+
@RotationBeginTime = rotationbegintime
|
|
1322
1334
|
end
|
|
1323
1335
|
|
|
1324
1336
|
def deserialize(params)
|
|
@@ -1338,6 +1350,9 @@ module TencentCloud
|
|
|
1338
1350
|
@ProjectID = params['ProjectID']
|
|
1339
1351
|
@AssociatedInstanceIDs = params['AssociatedInstanceIDs']
|
|
1340
1352
|
@TargetUin = params['TargetUin']
|
|
1353
|
+
@RotationFrequency = params['RotationFrequency']
|
|
1354
|
+
@ResourceID = params['ResourceID']
|
|
1355
|
+
@RotationBeginTime = params['RotationBeginTime']
|
|
1341
1356
|
end
|
|
1342
1357
|
end
|
|
1343
1358
|
|
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.562
|
|
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-04-
|
|
11
|
+
date: 2023-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|