tencentcloud-sdk-postgres 3.0.857 → 3.0.859
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +14 -10
- 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: 91a2e7d7892cdb5f4c6518ad4321dd5a8adee8c0
|
4
|
+
data.tar.gz: f790a5bee8a94003e41ec130298e4e71feb01032
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d69892791d8bc36ce4c92f0f657e0b23b6cd6f1461a1fa0c9326bd0b856192cb4526800264873453da7480e718fc3f2aa5d8c3ccd43915097a8a5edb88a3fe00
|
7
|
+
data.tar.gz: 049b2f8a272c88944ee1b94e98a90b5fc556f3db2679d901848e19db6629a9a98a428c705e118d483e31c009d7b374b0a68e12925a53a0827f45a84dffcf52c3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.859
|
data/lib/v20170312/models.rb
CHANGED
@@ -21,26 +21,29 @@ module TencentCloud
|
|
21
21
|
class AccountInfo < TencentCloud::Common::AbstractModel
|
22
22
|
# @param DBInstanceId: 实例ID,形如postgres-lnp6j617
|
23
23
|
# @type DBInstanceId: String
|
24
|
-
# @param UserName:
|
24
|
+
# @param UserName: 账号
|
25
25
|
# @type UserName: String
|
26
|
-
# @param Remark:
|
26
|
+
# @param Remark: 账号备注
|
27
27
|
# @type Remark: String
|
28
|
-
# @param Status:
|
28
|
+
# @param Status: 账号状态。 1-创建中,2-正常,3-修改中,4-密码重置中,5-锁定中,-1-删除中
|
29
29
|
# @type Status: Integer
|
30
|
-
# @param CreateTime:
|
30
|
+
# @param CreateTime: 账号创建时间
|
31
31
|
# @type CreateTime: String
|
32
|
-
# @param UpdateTime:
|
32
|
+
# @param UpdateTime: 账号最后一次更新时间
|
33
33
|
# @type UpdateTime: String
|
34
|
+
# @param UserType: 账号类型
|
35
|
+
# @type UserType: String
|
34
36
|
|
35
|
-
attr_accessor :DBInstanceId, :UserName, :Remark, :Status, :CreateTime, :UpdateTime
|
37
|
+
attr_accessor :DBInstanceId, :UserName, :Remark, :Status, :CreateTime, :UpdateTime, :UserType
|
36
38
|
|
37
|
-
def initialize(dbinstanceid=nil, username=nil, remark=nil, status=nil, createtime=nil, updatetime=nil)
|
39
|
+
def initialize(dbinstanceid=nil, username=nil, remark=nil, status=nil, createtime=nil, updatetime=nil, usertype=nil)
|
38
40
|
@DBInstanceId = dbinstanceid
|
39
41
|
@UserName = username
|
40
42
|
@Remark = remark
|
41
43
|
@Status = status
|
42
44
|
@CreateTime = createtime
|
43
45
|
@UpdateTime = updatetime
|
46
|
+
@UserType = usertype
|
44
47
|
end
|
45
48
|
|
46
49
|
def deserialize(params)
|
@@ -50,6 +53,7 @@ module TencentCloud
|
|
50
53
|
@Status = params['Status']
|
51
54
|
@CreateTime = params['CreateTime']
|
52
55
|
@UpdateTime = params['UpdateTime']
|
56
|
+
@UserType = params['UserType']
|
53
57
|
end
|
54
58
|
end
|
55
59
|
|
@@ -2064,11 +2068,11 @@ module TencentCloud
|
|
2064
2068
|
class DescribeAccountsRequest < TencentCloud::Common::AbstractModel
|
2065
2069
|
# @param DBInstanceId: 实例ID,形如postgres-6fego161
|
2066
2070
|
# @type DBInstanceId: String
|
2067
|
-
# @param Limit: 分页返回,每页最大返回数目,默认
|
2071
|
+
# @param Limit: 分页返回,每页最大返回数目,默认20,取值范围为1-100
|
2068
2072
|
# @type Limit: Integer
|
2069
2073
|
# @param Offset: 数据偏移量,从0开始。
|
2070
2074
|
# @type Offset: Integer
|
2071
|
-
# @param OrderBy:
|
2075
|
+
# @param OrderBy: 返回数据按照创建时间或者用户名排序。取值支持createTime、name、updateTime。createTime-按照创建时间排序;name-按照用户名排序; updateTime-按照更新时间排序。
|
2072
2076
|
# @type OrderBy: String
|
2073
2077
|
# @param OrderByType: 返回结果是升序还是降序。取值只能为desc或者asc。desc-降序;asc-升序
|
2074
2078
|
# @type OrderByType: String
|
@@ -2096,7 +2100,7 @@ module TencentCloud
|
|
2096
2100
|
class DescribeAccountsResponse < TencentCloud::Common::AbstractModel
|
2097
2101
|
# @param TotalCount: 本次调用接口共返回了多少条数据。
|
2098
2102
|
# @type TotalCount: Integer
|
2099
|
-
# @param Details:
|
2103
|
+
# @param Details: 账号列表详细信息。当CreateTime项为0000-00-00 00:00:00时,意味着对应账号是直连数据库创建的,并非通过CreateAccount接口创建。
|
2100
2104
|
# @type Details: Array
|
2101
2105
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2102
2106
|
# @type RequestId: String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-postgres
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.859
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|