tencentcloud-sdk-ssm 3.0.1094 → 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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190923/models.rb +45 -6
- 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: 7fdcd502f8d18599ed55d3b938a9d4d786f14c2a
|
|
4
|
+
data.tar.gz: c92855800fe91ea825df1e261b87da8adbc93f93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b1551b536d32afb1fcb7084e3c9937b1efe4419035e422f745416ea72497aa9af4f3caf68db30566b1f190d1ca61557ee054a4efe56423a3d994e5b958ae94d
|
|
7
|
+
data.tar.gz: 0f854daead1f1298cbbfc926aa0f0d23d118e5ade0b74c081a50925187e6e3b4fef60390fcaab7a9b57d5424b255957d3916623b19d2826aea0609f5adfad6b4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1202
|
data/lib/v20190923/models.rb
CHANGED
|
@@ -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
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
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.
|
|
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:
|
|
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
|