tencentcloud-sdk-cynosdb 3.0.624 → 3.0.625

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/v20190107/models.rb +25 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77c60592ada65b3888442bb40ad2faa03f3f7730
4
- data.tar.gz: d72e645ff3dc36ba4c457096731bf1ae16f81002
3
+ metadata.gz: 7df440963d9b8eb176fef81acc0f17b9ce7dfca5
4
+ data.tar.gz: 1846d046780c52934b6c19ab360b435b1eff9a3a
5
5
  SHA512:
6
- metadata.gz: e3e98c30840ad9c6ac074b1448f5ee1e2bc9e7e223ed93fa1df6f8c3880cb4478437ee64ea591607b6d84c984de904702baacae4e875916719f97f2ecf6e8907
7
- data.tar.gz: 663492fea6b9114f915a62728fbfd33970a2021affb1132cb4e74d6712ec90b9dcc059e6089278692936cc362c9149b310ffe8ad136c1bef1553f833e8441711
6
+ metadata.gz: 1569312a72f54ebfd6ad3e44167f5c3249e08fdf9959e2dc5588e34f96475375c7b0cbb74874977628660dd04e98f610834d9cc0db1d0f78065d14cc10e2bcd1
7
+ data.tar.gz: 5efc4819e1fcbf8bee80e1887b00cd103666c074707549d88142bea953bfe09ed1c33a89e12bdb9111d974db86da763c72f59e4395c7d7646df22d57ec559c88
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.624
1
+ 3.0.625
@@ -984,10 +984,19 @@ module TencentCloud
984
984
  # @type InstanceStorage: Integer
985
985
  # @param InstanceRole: 实例角色
986
986
  # @type InstanceRole: String
987
+ # @param MaintainStartTime: 执行开始时间(距离0点的秒数)
988
+ # 注意:此字段可能返回 null,表示取不到有效值。
989
+ # @type MaintainStartTime: Integer
990
+ # @param MaintainDuration: 持续的时间(单位:秒)
991
+ # 注意:此字段可能返回 null,表示取不到有效值。
992
+ # @type MaintainDuration: Integer
993
+ # @param MaintainWeekDays: 可以执行的时间,枚举值:["Mon","Tue","Wed","Thu","Fri", "Sat", "Sun"]
994
+ # 注意:此字段可能返回 null,表示取不到有效值。
995
+ # @type MaintainWeekDays: Array
987
996
 
988
- attr_accessor :InstanceId, :InstanceName, :InstanceType, :InstanceStatus, :InstanceStatusDesc, :InstanceCpu, :InstanceMemory, :InstanceStorage, :InstanceRole
997
+ attr_accessor :InstanceId, :InstanceName, :InstanceType, :InstanceStatus, :InstanceStatusDesc, :InstanceCpu, :InstanceMemory, :InstanceStorage, :InstanceRole, :MaintainStartTime, :MaintainDuration, :MaintainWeekDays
989
998
 
990
- def initialize(instanceid=nil, instancename=nil, instancetype=nil, instancestatus=nil, instancestatusdesc=nil, instancecpu=nil, instancememory=nil, instancestorage=nil, instancerole=nil)
999
+ def initialize(instanceid=nil, instancename=nil, instancetype=nil, instancestatus=nil, instancestatusdesc=nil, instancecpu=nil, instancememory=nil, instancestorage=nil, instancerole=nil, maintainstarttime=nil, maintainduration=nil, maintainweekdays=nil)
991
1000
  @InstanceId = instanceid
992
1001
  @InstanceName = instancename
993
1002
  @InstanceType = instancetype
@@ -997,6 +1006,9 @@ module TencentCloud
997
1006
  @InstanceMemory = instancememory
998
1007
  @InstanceStorage = instancestorage
999
1008
  @InstanceRole = instancerole
1009
+ @MaintainStartTime = maintainstarttime
1010
+ @MaintainDuration = maintainduration
1011
+ @MaintainWeekDays = maintainweekdays
1000
1012
  end
1001
1013
 
1002
1014
  def deserialize(params)
@@ -1009,6 +1021,9 @@ module TencentCloud
1009
1021
  @InstanceMemory = params['InstanceMemory']
1010
1022
  @InstanceStorage = params['InstanceStorage']
1011
1023
  @InstanceRole = params['InstanceRole']
1024
+ @MaintainStartTime = params['MaintainStartTime']
1025
+ @MaintainDuration = params['MaintainDuration']
1026
+ @MaintainWeekDays = params['MaintainWeekDays']
1012
1027
  end
1013
1028
  end
1014
1029
 
@@ -3576,16 +3591,19 @@ module TencentCloud
3576
3591
  # @type Limit: Integer
3577
3592
  # @param Offset: 偏移量
3578
3593
  # @type Offset: Integer
3594
+ # @param AccountRegular: 模糊匹配关键字(同时匹配AccountName和AccountHost,返回并集结果,支持正则)
3595
+ # @type AccountRegular: String
3579
3596
 
3580
- attr_accessor :ClusterId, :AccountNames, :DbType, :Hosts, :Limit, :Offset
3597
+ attr_accessor :ClusterId, :AccountNames, :DbType, :Hosts, :Limit, :Offset, :AccountRegular
3581
3598
 
3582
- def initialize(clusterid=nil, accountnames=nil, dbtype=nil, hosts=nil, limit=nil, offset=nil)
3599
+ def initialize(clusterid=nil, accountnames=nil, dbtype=nil, hosts=nil, limit=nil, offset=nil, accountregular=nil)
3583
3600
  @ClusterId = clusterid
3584
3601
  @AccountNames = accountnames
3585
3602
  @DbType = dbtype
3586
3603
  @Hosts = hosts
3587
3604
  @Limit = limit
3588
3605
  @Offset = offset
3606
+ @AccountRegular = accountregular
3589
3607
  end
3590
3608
 
3591
3609
  def deserialize(params)
@@ -3595,6 +3613,7 @@ module TencentCloud
3595
3613
  @Hosts = params['Hosts']
3596
3614
  @Limit = params['Limit']
3597
3615
  @Offset = params['Offset']
3616
+ @AccountRegular = params['AccountRegular']
3598
3617
  end
3599
3618
  end
3600
3619
 
@@ -9963,8 +9982,10 @@ module TencentCloud
9963
9982
  # 回档表信息
9964
9983
  class RollbackTableInfo < TencentCloud::Common::AbstractModel
9965
9984
  # @param OldTable: 旧表名称
9985
+ # 注意:此字段可能返回 null,表示取不到有效值。
9966
9986
  # @type OldTable: String
9967
9987
  # @param NewTable: 新表名称
9988
+ # 注意:此字段可能返回 null,表示取不到有效值。
9968
9989
  # @type NewTable: String
9969
9990
 
9970
9991
  attr_accessor :OldTable, :NewTable
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cynosdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.624
4
+ version: 3.0.625
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-07-31 00:00:00.000000000 Z
11
+ date: 2023-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common