tencentcloud-sdk-ssm 3.0.1074 → 3.0.1202

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 387d0efcb6f6f8f9cd883ba30cdcafadfb1b47d9
4
- data.tar.gz: f63468a3466ddfb870419c88672e542a5fb8a6a1
3
+ metadata.gz: 7fdcd502f8d18599ed55d3b938a9d4d786f14c2a
4
+ data.tar.gz: c92855800fe91ea825df1e261b87da8adbc93f93
5
5
  SHA512:
6
- metadata.gz: 87c8587a8487c82ccea9431e462fc308a4ef3f494aee923f56f080c90de6aecbda2946433c926bf4adccc4c12299b70a06b0a19b9e692da832e564cf0ebb7ef1
7
- data.tar.gz: 0affad7ff6cf833c402abadddabb4e9adc32f03dbaaa97ca80503ca71b087eb856ba1b27756d6b22a9b545e67f045b1c9ba52f32cf44be08d49fd6ff9d25423e
6
+ metadata.gz: 7b1551b536d32afb1fcb7084e3c9937b1efe4419035e422f745416ea72497aa9af4f3caf68db30566b1f190d1ca61557ee054a4efe56423a3d994e5b958ae94d
7
+ data.tar.gz: 0f854daead1f1298cbbfc926aa0f0d23d118e5ade0b74c081a50925187e6e3b4fef60390fcaab7a9b57d5424b255957d3916623b19d2826aea0609f5adfad6b4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1074
1
+ 3.0.1202
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -57,10 +57,12 @@ module TencentCloud
57
57
  # @type RotationFrequency: Integer
58
58
  # @param KmsHsmClusterId: KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
59
59
  # @type KmsHsmClusterId: String
60
+ # @param AccountRemark: 账户备注
61
+ # @type AccountRemark: String
60
62
 
61
- attr_accessor :SecretName, :UserNamePrefix, :ProductName, :InstanceID, :Domains, :PrivilegesList, :Description, :KmsKeyId, :Tags, :RotationBeginTime, :EnableRotation, :RotationFrequency, :KmsHsmClusterId
63
+ attr_accessor :SecretName, :UserNamePrefix, :ProductName, :InstanceID, :Domains, :PrivilegesList, :Description, :KmsKeyId, :Tags, :RotationBeginTime, :EnableRotation, :RotationFrequency, :KmsHsmClusterId, :AccountRemark
62
64
 
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)
65
+ 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, accountremark=nil)
64
66
  @SecretName = secretname
65
67
  @UserNamePrefix = usernameprefix
66
68
  @ProductName = productname
@@ -74,6 +76,7 @@ module TencentCloud
74
76
  @EnableRotation = enablerotation
75
77
  @RotationFrequency = rotationfrequency
76
78
  @KmsHsmClusterId = kmshsmclusterid
79
+ @AccountRemark = accountremark
77
80
  end
78
81
 
79
82
  def deserialize(params)
@@ -104,6 +107,7 @@ module TencentCloud
104
107
  @EnableRotation = params['EnableRotation']
105
108
  @RotationFrequency = params['RotationFrequency']
106
109
  @KmsHsmClusterId = params['KmsHsmClusterId']
110
+ @AccountRemark = params['AccountRemark']
107
111
  end
108
112
  end
109
113
 
@@ -1147,15 +1151,43 @@ module TencentCloud
1147
1151
  # Database - 显式指明所在的数据库实例。
1148
1152
  # TableName - 显式指明所在表
1149
1153
  # @type ColumnName: String
1150
-
1151
- attr_accessor :PrivilegeName, :Privileges, :Database, :TableName, :ColumnName
1152
-
1153
- def initialize(privilegename=nil, privileges=nil, database=nil, tablename=nil, columnname=nil)
1154
+ # @param SchemaName: 仅当PrivilegeName为SchemaPrivileges时这个值才生效,并且此时必须填充:
1155
+ # 目前仅postgresSQL需要
1156
+ # @type SchemaName: String
1157
+ # @param SequenceName: 仅当PrivilegeName为SequencePrivileges时这个值才生效,并且此时必须填充:
1158
+ # 目前仅postgresSQL需要
1159
+ # @type SequenceName: String
1160
+ # @param ProcedureName: 仅当PrivilegeName为ProcedurePrivileges时这个值才生效,并且此时必须填充:
1161
+ # 目前仅postgresSQL需要
1162
+ # @type ProcedureName: String
1163
+ # @param TypeName: 仅当PrivilegeName为TypePrivileges时这个值才生效,并且此时必须填充:
1164
+ # 目前仅postgresSQL需要
1165
+ # @type TypeName: String
1166
+ # @param FunctionName: 仅当PrivilegeName为FunctionPrivileges时这个值才生效,并且此时必须填充:
1167
+ # 目前仅postgresSQL需要
1168
+ # @type FunctionName: String
1169
+ # @param ViewName: 仅当PrivilegeName为ViewPrivileges时这个值才生效,并且此时必须填充:
1170
+ # 目前仅postgresSQL需要
1171
+ # @type ViewName: String
1172
+ # @param MatviewName: 仅当PrivilegeName为MatviewPrivileges时这个值才生效,并且此时必须填充:
1173
+ # 目前仅postgresSQL需要
1174
+ # @type MatviewName: String
1175
+
1176
+ attr_accessor :PrivilegeName, :Privileges, :Database, :TableName, :ColumnName, :SchemaName, :SequenceName, :ProcedureName, :TypeName, :FunctionName, :ViewName, :MatviewName
1177
+
1178
+ def initialize(privilegename=nil, privileges=nil, database=nil, tablename=nil, columnname=nil, schemaname=nil, sequencename=nil, procedurename=nil, typename=nil, functionname=nil, viewname=nil, matviewname=nil)
1154
1179
  @PrivilegeName = privilegename
1155
1180
  @Privileges = privileges
1156
1181
  @Database = database
1157
1182
  @TableName = tablename
1158
1183
  @ColumnName = columnname
1184
+ @SchemaName = schemaname
1185
+ @SequenceName = sequencename
1186
+ @ProcedureName = procedurename
1187
+ @TypeName = typename
1188
+ @FunctionName = functionname
1189
+ @ViewName = viewname
1190
+ @MatviewName = matviewname
1159
1191
  end
1160
1192
 
1161
1193
  def deserialize(params)
@@ -1164,6 +1196,13 @@ module TencentCloud
1164
1196
  @Database = params['Database']
1165
1197
  @TableName = params['TableName']
1166
1198
  @ColumnName = params['ColumnName']
1199
+ @SchemaName = params['SchemaName']
1200
+ @SequenceName = params['SequenceName']
1201
+ @ProcedureName = params['ProcedureName']
1202
+ @TypeName = params['TypeName']
1203
+ @FunctionName = params['FunctionName']
1204
+ @ViewName = params['ViewName']
1205
+ @MatviewName = params['MatviewName']
1167
1206
  end
1168
1207
  end
1169
1208
 
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.1074
4
+ version: 3.0.1202
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-06-04 00:00:00.000000000 Z
11
+ date: 2026-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common