tencentcloud-sdk-cdwch 3.0.602 → 3.0.603
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/v20200915/models.rb +37 -8
- 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: 9717c64c0e00ada21f96963679cddd1ff0411d23
|
4
|
+
data.tar.gz: 551ef5ad40a11f8a7a9f774d33c5defd65078026
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fea9cf1751fd2a46fcd176599e1c714fadda89ece5988550d0acf573f6e5e6b3c3db2ec2ac61352334fc50bea243f118ec6ad23618b1f38d1fcc1659dc0f360
|
7
|
+
data.tar.gz: 9b1f99c04673e16b5d2658b9777f7befef2ba25863bbf22746c5ba7e681fd1999124cafeff94c8c7be01382d96dca40508f22c40d26485c45f8efb1b049ddec2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.603
|
data/lib/v20200915/models.rb
CHANGED
@@ -93,24 +93,37 @@ module TencentCloud
|
|
93
93
|
# 备份表信息
|
94
94
|
class BackupTableContent < TencentCloud::Common::AbstractModel
|
95
95
|
# @param Database: 数据库
|
96
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
96
97
|
# @type Database: String
|
97
98
|
# @param Table: 表
|
99
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
98
100
|
# @type Table: String
|
99
101
|
# @param TotalBytes: 表总字节数
|
102
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
100
103
|
# @type TotalBytes: Integer
|
101
104
|
# @param VCluster: 虚拟cluster
|
105
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
102
106
|
# @type VCluster: String
|
103
107
|
# @param Ips: 表ip
|
108
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
104
109
|
# @type Ips: String
|
110
|
+
# @param ZooPath: zk路径
|
111
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
112
|
+
# @type ZooPath: String
|
113
|
+
# @param Rip: cvm的ip地址
|
114
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
115
|
+
# @type Rip: String
|
105
116
|
|
106
|
-
attr_accessor :Database, :Table, :TotalBytes, :VCluster, :Ips
|
117
|
+
attr_accessor :Database, :Table, :TotalBytes, :VCluster, :Ips, :ZooPath, :Rip
|
107
118
|
|
108
|
-
def initialize(database=nil, table=nil, totalbytes=nil, vcluster=nil, ips=nil)
|
119
|
+
def initialize(database=nil, table=nil, totalbytes=nil, vcluster=nil, ips=nil, zoopath=nil, rip=nil)
|
109
120
|
@Database = database
|
110
121
|
@Table = table
|
111
122
|
@TotalBytes = totalbytes
|
112
123
|
@VCluster = vcluster
|
113
124
|
@Ips = ips
|
125
|
+
@ZooPath = zoopath
|
126
|
+
@Rip = rip
|
114
127
|
end
|
115
128
|
|
116
129
|
def deserialize(params)
|
@@ -119,6 +132,8 @@ module TencentCloud
|
|
119
132
|
@TotalBytes = params['TotalBytes']
|
120
133
|
@VCluster = params['VCluster']
|
121
134
|
@Ips = params['Ips']
|
135
|
+
@ZooPath = params['ZooPath']
|
136
|
+
@Rip = params['Rip']
|
122
137
|
end
|
123
138
|
end
|
124
139
|
|
@@ -454,17 +469,21 @@ module TencentCloud
|
|
454
469
|
# @type BackUpContents: Array
|
455
470
|
# @param BackUpStatus: 备份的状态
|
456
471
|
# @type BackUpStatus: Integer
|
472
|
+
# @param ErrorMsg: 错误信息
|
473
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
474
|
+
# @type ErrorMsg: String
|
457
475
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
458
476
|
# @type RequestId: String
|
459
477
|
|
460
|
-
attr_accessor :BackUpOpened, :MetaStrategy, :DataStrategy, :BackUpContents, :BackUpStatus, :RequestId
|
478
|
+
attr_accessor :BackUpOpened, :MetaStrategy, :DataStrategy, :BackUpContents, :BackUpStatus, :ErrorMsg, :RequestId
|
461
479
|
|
462
|
-
def initialize(backupopened=nil, metastrategy=nil, datastrategy=nil, backupcontents=nil, backupstatus=nil, requestid=nil)
|
480
|
+
def initialize(backupopened=nil, metastrategy=nil, datastrategy=nil, backupcontents=nil, backupstatus=nil, errormsg=nil, requestid=nil)
|
463
481
|
@BackUpOpened = backupopened
|
464
482
|
@MetaStrategy = metastrategy
|
465
483
|
@DataStrategy = datastrategy
|
466
484
|
@BackUpContents = backupcontents
|
467
485
|
@BackUpStatus = backupstatus
|
486
|
+
@ErrorMsg = errormsg
|
468
487
|
@RequestId = requestid
|
469
488
|
end
|
470
489
|
|
@@ -487,6 +506,7 @@ module TencentCloud
|
|
487
506
|
end
|
488
507
|
end
|
489
508
|
@BackUpStatus = params['BackUpStatus']
|
509
|
+
@ErrorMsg = params['ErrorMsg']
|
490
510
|
@RequestId = params['RequestId']
|
491
511
|
end
|
492
512
|
end
|
@@ -866,15 +886,18 @@ module TencentCloud
|
|
866
886
|
# @type Limit: Integer
|
867
887
|
# @param SearchTags: 搜索标签列表
|
868
888
|
# @type SearchTags: Array
|
889
|
+
# @param IsSimple: 信息详细与否
|
890
|
+
# @type IsSimple: Boolean
|
869
891
|
|
870
|
-
attr_accessor :SearchInstanceId, :SearchInstanceName, :Offset, :Limit, :SearchTags
|
892
|
+
attr_accessor :SearchInstanceId, :SearchInstanceName, :Offset, :Limit, :SearchTags, :IsSimple
|
871
893
|
|
872
|
-
def initialize(searchinstanceid=nil, searchinstancename=nil, offset=nil, limit=nil, searchtags=nil)
|
894
|
+
def initialize(searchinstanceid=nil, searchinstancename=nil, offset=nil, limit=nil, searchtags=nil, issimple=nil)
|
873
895
|
@SearchInstanceId = searchinstanceid
|
874
896
|
@SearchInstanceName = searchinstancename
|
875
897
|
@Offset = offset
|
876
898
|
@Limit = limit
|
877
899
|
@SearchTags = searchtags
|
900
|
+
@IsSimple = issimple
|
878
901
|
end
|
879
902
|
|
880
903
|
def deserialize(params)
|
@@ -890,6 +913,7 @@ module TencentCloud
|
|
890
913
|
@SearchTags << searchtags_tmp
|
891
914
|
end
|
892
915
|
end
|
916
|
+
@IsSimple = params['IsSimple']
|
893
917
|
end
|
894
918
|
end
|
895
919
|
|
@@ -2052,15 +2076,19 @@ module TencentCloud
|
|
2052
2076
|
# @type ExecuteHour: Integer
|
2053
2077
|
# @param ScheduleId: 策略id
|
2054
2078
|
# @type ScheduleId: Integer
|
2079
|
+
# @param NextBackupTime: 下次备份时间
|
2080
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2081
|
+
# @type NextBackupTime: String
|
2055
2082
|
|
2056
|
-
attr_accessor :CosBucketName, :RetainDays, :WeekDays, :ExecuteHour, :ScheduleId
|
2083
|
+
attr_accessor :CosBucketName, :RetainDays, :WeekDays, :ExecuteHour, :ScheduleId, :NextBackupTime
|
2057
2084
|
|
2058
|
-
def initialize(cosbucketname=nil, retaindays=nil, weekdays=nil, executehour=nil, scheduleid=nil)
|
2085
|
+
def initialize(cosbucketname=nil, retaindays=nil, weekdays=nil, executehour=nil, scheduleid=nil, nextbackuptime=nil)
|
2059
2086
|
@CosBucketName = cosbucketname
|
2060
2087
|
@RetainDays = retaindays
|
2061
2088
|
@WeekDays = weekdays
|
2062
2089
|
@ExecuteHour = executehour
|
2063
2090
|
@ScheduleId = scheduleid
|
2091
|
+
@NextBackupTime = nextbackuptime
|
2064
2092
|
end
|
2065
2093
|
|
2066
2094
|
def deserialize(params)
|
@@ -2069,6 +2097,7 @@ module TencentCloud
|
|
2069
2097
|
@WeekDays = params['WeekDays']
|
2070
2098
|
@ExecuteHour = params['ExecuteHour']
|
2071
2099
|
@ScheduleId = params['ScheduleId']
|
2100
|
+
@NextBackupTime = params['NextBackupTime']
|
2072
2101
|
end
|
2073
2102
|
end
|
2074
2103
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdwch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.603
|
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-06-
|
11
|
+
date: 2023-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|