tencentcloud-sdk-postgres 1.0.332 → 1.0.335

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/v20170312/models.rb +33 -21
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b3ed7c5385842bede414360c0bf64d621222c8f
4
- data.tar.gz: 8bb6c7fd91a8ddf8fe64b1034ba1ab451d43561f
3
+ metadata.gz: f434dd6ee904767007a9428ea1bd516bc7ef4b5d
4
+ data.tar.gz: 9dbeb2eb0edfaf67906cbfd82bf38533b301cca2
5
5
  SHA512:
6
- metadata.gz: f7a04e4c9fbe26d6b66f55c640fabc5844536fc1a2d5f32d924130182cae41509c964c1cc46bf53a69790fd0d77b449ce16319c4a74669571ef1ea65f8f3b28e
7
- data.tar.gz: 3c692361c150546ce5164e0eed568f0c100562febb4c82625b6919d8ad0926f274ab5d7df209ec55c029ced9701a904f1d839f5f1ef7e5e91a247f9e775f1a1a
6
+ metadata.gz: 1e7167fd6c43ecaa77b67136bb58a2780a7f037f3be00b95f1d7b261803319c4cd8d4b0c62fde5c298036f8213479f5294c500e0f7547a7e691548a4d4b4b981
7
+ data.tar.gz: e4451c2abf2be0a52d585a05f2c817daa454753d575cda5a9dbdd550f3b6c0245744c17443cbdf0840251be90b47ddb25622bdf77c8d2a6f4e542502752a52de
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.332
1
+ 1.0.335
@@ -617,9 +617,9 @@ module TencentCloud
617
617
  # @type DBNodeSet: Array
618
618
  # @param NeedSupportTDE: 是否需要支持数据透明加密,1:是,0:否(默认)。
619
619
  # @type NeedSupportTDE: Integer
620
- # @param KMSKeyId: 自定义密钥的keyId,若选择自定义密匙加密,则需要传入自定义密匙的keyIdkeyId是CMK的唯一标识。
620
+ # @param KMSKeyId: 自定义密钥的KeyId,若选择自定义密匙加密,则需要传入自定义密匙的KeyIdKeyId是CMK的唯一标识。
621
621
  # @type KMSKeyId: String
622
- # @param KMSRegion: 使用KMS服务的地域,KMSRegion为空默认使用本地域的kms,本地域不支持的情况下需自选其他KMS支持的地域。
622
+ # @param KMSRegion: 使用KMS服务的地域,KMSRegion为空默认使用本地域的KMS,本地域不支持的情况下需自选其他KMS支持的地域。
623
623
  # @type KMSRegion: String
624
624
 
625
625
  attr_accessor :SpecCode, :Storage, :InstanceCount, :Period, :Zone, :Charset, :AdminName, :AdminPassword, :ProjectId, :DBVersion, :InstanceChargeType, :AutoVoucher, :VoucherIds, :VpcId, :SubnetId, :AutoRenewFlag, :ActivityId, :Name, :NeedSupportIpv6, :TagList, :SecurityGroupIds, :DBMajorVersion, :DBKernelVersion, :DBNodeSet, :NeedSupportTDE, :KMSKeyId, :KMSRegion
@@ -1553,9 +1553,9 @@ module TencentCloud
1553
1553
  class DescribeAccountsRequest < TencentCloud::Common::AbstractModel
1554
1554
  # @param DBInstanceId: 实例ID,形如postgres-6fego161
1555
1555
  # @type DBInstanceId: String
1556
- # @param Limit: 分页返回,每页最大返回数目,默认20,取值范围为1-100
1556
+ # @param Limit: 分页返回,每页最大返回数目,默认10,取值范围为1-100
1557
1557
  # @type Limit: Integer
1558
- # @param Offset: 分页返回,返回第几页的用户数据。页码从0开始计数
1558
+ # @param Offset: 数据偏移量,从0开始。
1559
1559
  # @type Offset: Integer
1560
1560
  # @param OrderBy: 返回数据按照创建时间或者用户名排序。取值只能为createTime或者name。createTime-按照创建时间排序;name-按照用户名排序
1561
1561
  # @type OrderBy: String
@@ -1982,20 +1982,20 @@ module TencentCloud
1982
1982
  # @type Filters: Array
1983
1983
  # @param Limit: 每页显示数量,取值范围为1-100,默认为返回10条。
1984
1984
  # @type Limit: Integer
1985
+ # @param Offset: 数据偏移量,从0开始。
1986
+ # @type Offset: Integer
1985
1987
  # @param OrderBy: 排序指标,如实例名、创建时间等,支持DBInstanceId,CreateTime,Name,EndTime
1986
1988
  # @type OrderBy: String
1987
- # @param Offset: 页码偏移量,从0开始。
1988
- # @type Offset: Integer
1989
1989
  # @param OrderByType: 排序方式,包括升序:asc、降序:desc。
1990
1990
  # @type OrderByType: String
1991
1991
 
1992
- attr_accessor :Filters, :Limit, :OrderBy, :Offset, :OrderByType
1992
+ attr_accessor :Filters, :Limit, :Offset, :OrderBy, :OrderByType
1993
1993
 
1994
- def initialize(filters=nil, limit=nil, orderby=nil, offset=nil, orderbytype=nil)
1994
+ def initialize(filters=nil, limit=nil, offset=nil, orderby=nil, orderbytype=nil)
1995
1995
  @Filters = filters
1996
1996
  @Limit = limit
1997
- @OrderBy = orderby
1998
1997
  @Offset = offset
1998
+ @OrderBy = orderby
1999
1999
  @OrderByType = orderbytype
2000
2000
  end
2001
2001
 
@@ -2009,8 +2009,8 @@ module TencentCloud
2009
2009
  end
2010
2010
  end
2011
2011
  @Limit = params['Limit']
2012
- @OrderBy = params['OrderBy']
2013
2012
  @Offset = params['Offset']
2013
+ @OrderBy = params['OrderBy']
2014
2014
  @OrderByType = params['OrderByType']
2015
2015
  end
2016
2016
  end
@@ -2843,7 +2843,7 @@ module TencentCloud
2843
2843
 
2844
2844
  # DisIsolateDBInstances请求参数结构体
2845
2845
  class DisIsolateDBInstancesRequest < TencentCloud::Common::AbstractModel
2846
- # @param DBInstanceIdSet: 资源ID列表
2846
+ # @param DBInstanceIdSet: 资源ID列表。注意:当前已不支持同时解隔离多个实例,这里只能传入单个实例ID。
2847
2847
  # @type DBInstanceIdSet: Array
2848
2848
  # @param Period: 包年包月实例解隔离时购买时常 以月为单位
2849
2849
  # @type Period: Integer
@@ -3177,20 +3177,24 @@ module TencentCloud
3177
3177
  # @type OriginalPrice: Integer
3178
3178
  # @param Price: 折后价格,单位:分
3179
3179
  # @type Price: Integer
3180
+ # @param Currency: 币种。例如,CNY:人民币。
3181
+ # @type Currency: String
3180
3182
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3181
3183
  # @type RequestId: String
3182
3184
 
3183
- attr_accessor :OriginalPrice, :Price, :RequestId
3185
+ attr_accessor :OriginalPrice, :Price, :Currency, :RequestId
3184
3186
 
3185
- def initialize(originalprice=nil, price=nil, requestid=nil)
3187
+ def initialize(originalprice=nil, price=nil, currency=nil, requestid=nil)
3186
3188
  @OriginalPrice = originalprice
3187
3189
  @Price = price
3190
+ @Currency = currency
3188
3191
  @RequestId = requestid
3189
3192
  end
3190
3193
 
3191
3194
  def deserialize(params)
3192
3195
  @OriginalPrice = params['OriginalPrice']
3193
3196
  @Price = params['Price']
3197
+ @Currency = params['Currency']
3194
3198
  @RequestId = params['RequestId']
3195
3199
  end
3196
3200
  end
@@ -3221,20 +3225,24 @@ module TencentCloud
3221
3225
  # @type OriginalPrice: Integer
3222
3226
  # @param Price: 实际需要付款金额。比如24650表示246.5元
3223
3227
  # @type Price: Integer
3228
+ # @param Currency: 币种。例如,CNY:人民币。
3229
+ # @type Currency: String
3224
3230
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3225
3231
  # @type RequestId: String
3226
3232
 
3227
- attr_accessor :OriginalPrice, :Price, :RequestId
3233
+ attr_accessor :OriginalPrice, :Price, :Currency, :RequestId
3228
3234
 
3229
- def initialize(originalprice=nil, price=nil, requestid=nil)
3235
+ def initialize(originalprice=nil, price=nil, currency=nil, requestid=nil)
3230
3236
  @OriginalPrice = originalprice
3231
3237
  @Price = price
3238
+ @Currency = currency
3232
3239
  @RequestId = requestid
3233
3240
  end
3234
3241
 
3235
3242
  def deserialize(params)
3236
3243
  @OriginalPrice = params['OriginalPrice']
3237
3244
  @Price = params['Price']
3245
+ @Currency = params['Currency']
3238
3246
  @RequestId = params['RequestId']
3239
3247
  end
3240
3248
  end
@@ -3273,27 +3281,31 @@ module TencentCloud
3273
3281
  # @type OriginalPrice: Integer
3274
3282
  # @param Price: 实际需要付款金额
3275
3283
  # @type Price: Integer
3284
+ # @param Currency: 币种。例如,CNY:人民币。
3285
+ # @type Currency: String
3276
3286
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3277
3287
  # @type RequestId: String
3278
3288
 
3279
- attr_accessor :OriginalPrice, :Price, :RequestId
3289
+ attr_accessor :OriginalPrice, :Price, :Currency, :RequestId
3280
3290
 
3281
- def initialize(originalprice=nil, price=nil, requestid=nil)
3291
+ def initialize(originalprice=nil, price=nil, currency=nil, requestid=nil)
3282
3292
  @OriginalPrice = originalprice
3283
3293
  @Price = price
3294
+ @Currency = currency
3284
3295
  @RequestId = requestid
3285
3296
  end
3286
3297
 
3287
3298
  def deserialize(params)
3288
3299
  @OriginalPrice = params['OriginalPrice']
3289
3300
  @Price = params['Price']
3301
+ @Currency = params['Currency']
3290
3302
  @RequestId = params['RequestId']
3291
3303
  end
3292
3304
  end
3293
3305
 
3294
3306
  # IsolateDBInstances请求参数结构体
3295
3307
  class IsolateDBInstancesRequest < TencentCloud::Common::AbstractModel
3296
- # @param DBInstanceIdSet: 实例ID集合
3308
+ # @param DBInstanceIdSet: 实例ID集合。注意:当前已不支持同时隔离多个实例,这里只能传入单个实例ID。
3297
3309
  # @type DBInstanceIdSet: Array
3298
3310
 
3299
3311
  attr_accessor :DBInstanceIdSet
@@ -3663,9 +3675,9 @@ module TencentCloud
3663
3675
 
3664
3676
  # ModifyDBInstancesProject请求参数结构体
3665
3677
  class ModifyDBInstancesProjectRequest < TencentCloud::Common::AbstractModel
3666
- # @param DBInstanceIdSet: postgresql实例ID数组
3678
+ # @param DBInstanceIdSet: 实例ID集合。注意:当前已不支持同时操作多个实例,这里只能传入单个实例ID。
3667
3679
  # @type DBInstanceIdSet: Array
3668
- # @param ProjectId: postgresql实例所属新项目的ID
3680
+ # @param ProjectId: 所属新项目的ID
3669
3681
  # @type ProjectId: String
3670
3682
 
3671
3683
  attr_accessor :DBInstanceIdSet, :ProjectId
@@ -4714,7 +4726,7 @@ module TencentCloud
4714
4726
 
4715
4727
  # SetAutoRenewFlag请求参数结构体
4716
4728
  class SetAutoRenewFlagRequest < TencentCloud::Common::AbstractModel
4717
- # @param DBInstanceIdSet: 实例ID数组
4729
+ # @param DBInstanceIdSet: 实例ID集合。注意:当前已不支持同时操作多个实例,这里只能传入单个实例ID。
4718
4730
  # @type DBInstanceIdSet: Array
4719
4731
  # @param AutoRenewFlag: 续费标记。0-正常续费;1-自动续费;2-到期不续费
4720
4732
  # @type AutoRenewFlag: Integer
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: 1.0.332
4
+ version: 1.0.335
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-14 00:00:00.000000000 Z
11
+ date: 2022-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common