tencentcloud-sdk-cdwdoris 3.0.984 → 3.0.985

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/v20211228/models.rb +26 -15
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c7066e0b593874ade07e43aa0e22fb23b195f73c
4
- data.tar.gz: 3b0c86a0c75639b81370d919e4685294cbffcacb
3
+ metadata.gz: 67c13f6254fcfcd0a372b9f458be80a97836856f
4
+ data.tar.gz: 0007830aa9b38ccff8241a4b7b68ff1b231f4a17
5
5
  SHA512:
6
- metadata.gz: b3c06fbd6a3220143cae29b2f7105cc9521b394d79db1bd6fa5e80d2190390265b7d0ce812da578b9cfb55930d1968ccf2533b0e174c46fb59ecf4f5f99a1a0f
7
- data.tar.gz: 351145b1ef0c220dba63eeb3071776324a84649b88f0e48f8fb0cedbd6c8fc70767e57b09bd3325bc7e41d5032cfcf42e42e7a26c3ae21146385f59ce6a78b0e
6
+ metadata.gz: 24a73a64d0cc2304f094b1b00b6573659495fe78863c4171a4eed3549b60b1ae58082701e9ffecdda32ee98d9252ec50223117f021d8a31ac7d57fc49be6acbf
7
+ data.tar.gz: 26ac46b8f14c8b7ebbb321ab9576951ef3f950c28625c7de3e171d49904c0701bd6cfe62da5b6ef1782f4dd6de1d2b039087df53b3203067b0d4738b7773d6c9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.984
1
+ 3.0.985
@@ -173,13 +173,10 @@ module TencentCloud
173
173
  # 备份实例中关于cos的信息
174
174
  class BackupCosInfo < TencentCloud::Common::AbstractModel
175
175
  # @param CosBucket: 备份文件所在的cos桶
176
- # 注意:此字段可能返回 null,表示取不到有效值。
177
176
  # @type CosBucket: String
178
177
  # @param CosPath: 备份文件所在的完整cos路径
179
- # 注意:此字段可能返回 null,表示取不到有效值。
180
178
  # @type CosPath: String
181
179
  # @param SnapShotPath: 备份文件名称
182
- # 注意:此字段可能返回 null,表示取不到有效值。
183
180
  # @type SnapShotPath: String
184
181
 
185
182
  attr_accessor :CosBucket, :CosPath, :SnapShotPath
@@ -228,10 +225,8 @@ module TencentCloud
228
225
  # @param Timeout: 超时信息
229
226
  # @type Timeout: Integer
230
227
  # @param BackupJobId: 备份实例id
231
- # 注意:此字段可能返回 null,表示取不到有效值。
232
228
  # @type BackupJobId: Integer
233
229
  # @param TaskId: 实例对应snapshoit的id
234
- # 注意:此字段可能返回 null,表示取不到有效值。
235
230
  # @type TaskId: Integer
236
231
 
237
232
  attr_accessor :JobId, :SnapshotName, :DbName, :State, :BackupObjects, :CreateTime, :SnapshotFinishedTime, :UploadFinishedTime, :FinishedTime, :UnfinishedTasks, :Progress, :TaskErrMsg, :Status, :Timeout, :BackupJobId, :TaskId
@@ -318,10 +313,8 @@ module TencentCloud
318
313
  # 资源组绑定的用户信息,需要username和host信息进行授权
319
314
  class BindUser < TencentCloud::Common::AbstractModel
320
315
  # @param UserName: 用户名
321
- # 注意:此字段可能返回 null,表示取不到有效值。
322
316
  # @type UserName: String
323
317
  # @param Host: 主机信息
324
- # 注意:此字段可能返回 null,表示取不到有效值。
325
318
  # @type Host: String
326
319
 
327
320
  attr_accessor :UserName, :Host
@@ -1881,10 +1874,12 @@ module TencentCloud
1881
1874
  # @type SqlTypes: Array
1882
1875
  # @param Catalogs: catalog名称 (多选)
1883
1876
  # @type Catalogs: Array
1877
+ # @param IsQuery: 是否是查询
1878
+ # @type IsQuery: Array
1884
1879
 
1885
- attr_accessor :InstanceId, :StartTime, :EndTime, :PageSize, :PageNum, :OrderType, :User, :DbName, :SqlType, :Sql, :Users, :DbNames, :SqlTypes, :Catalogs
1880
+ attr_accessor :InstanceId, :StartTime, :EndTime, :PageSize, :PageNum, :OrderType, :User, :DbName, :SqlType, :Sql, :Users, :DbNames, :SqlTypes, :Catalogs, :IsQuery
1886
1881
 
1887
- def initialize(instanceid=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, ordertype=nil, user=nil, dbname=nil, sqltype=nil, sql=nil, users=nil, dbnames=nil, sqltypes=nil, catalogs=nil)
1882
+ def initialize(instanceid=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, ordertype=nil, user=nil, dbname=nil, sqltype=nil, sql=nil, users=nil, dbnames=nil, sqltypes=nil, catalogs=nil, isquery=nil)
1888
1883
  @InstanceId = instanceid
1889
1884
  @StartTime = starttime
1890
1885
  @EndTime = endtime
@@ -1899,6 +1894,7 @@ module TencentCloud
1899
1894
  @DbNames = dbnames
1900
1895
  @SqlTypes = sqltypes
1901
1896
  @Catalogs = catalogs
1897
+ @IsQuery = isquery
1902
1898
  end
1903
1899
 
1904
1900
  def deserialize(params)
@@ -1916,6 +1912,7 @@ module TencentCloud
1916
1912
  @DbNames = params['DbNames']
1917
1913
  @SqlTypes = params['SqlTypes']
1918
1914
  @Catalogs = params['Catalogs']
1915
+ @IsQuery = params['IsQuery']
1919
1916
  end
1920
1917
  end
1921
1918
 
@@ -2645,10 +2642,14 @@ module TencentCloud
2645
2642
  # @type DbName: Array
2646
2643
  # @param CatalogName: catalog名称
2647
2644
  # @type CatalogName: Array
2645
+ # @param SortField: 排序字段
2646
+ # @type SortField: String
2647
+ # @param SortOrder: 排序方式
2648
+ # @type SortOrder: String
2648
2649
 
2649
- attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :DurationMs, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :IsQuery, :DbName, :CatalogName
2650
+ attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :DurationMs, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :IsQuery, :DbName, :CatalogName, :SortField, :SortOrder
2650
2651
 
2651
- def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, durationms=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, isquery=nil, dbname=nil, catalogname=nil)
2652
+ def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, durationms=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, isquery=nil, dbname=nil, catalogname=nil, sortfield=nil, sortorder=nil)
2652
2653
  @InstanceId = instanceid
2653
2654
  @QueryDurationMs = querydurationms
2654
2655
  @StartTime = starttime
@@ -2661,6 +2662,8 @@ module TencentCloud
2661
2662
  @IsQuery = isquery
2662
2663
  @DbName = dbname
2663
2664
  @CatalogName = catalogname
2665
+ @SortField = sortfield
2666
+ @SortOrder = sortorder
2664
2667
  end
2665
2668
 
2666
2669
  def deserialize(params)
@@ -2676,6 +2679,8 @@ module TencentCloud
2676
2679
  @IsQuery = params['IsQuery']
2677
2680
  @DbName = params['DbName']
2678
2681
  @CatalogName = params['CatalogName']
2682
+ @SortField = params['SortField']
2683
+ @SortOrder = params['SortOrder']
2679
2684
  end
2680
2685
  end
2681
2686
 
@@ -2729,10 +2734,14 @@ module TencentCloud
2729
2734
  # @type ResultBytes: String
2730
2735
  # @param MemoryUsage: MemoryUsage排序字段
2731
2736
  # @type MemoryUsage: String
2737
+ # @param SortField: 排序字段
2738
+ # @type SortField: String
2739
+ # @param SortOrder: 排序方式
2740
+ # @type SortOrder: String
2732
2741
 
2733
- attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :PageSize, :PageNum, :DurationMs, :DbName, :IsQuery, :CatalogName, :Sql, :ReadRows, :ResultBytes, :MemoryUsage
2742
+ attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :PageSize, :PageNum, :DurationMs, :DbName, :IsQuery, :CatalogName, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :SortField, :SortOrder
2734
2743
 
2735
- def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, durationms=nil, dbname=nil, isquery=nil, catalogname=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil)
2744
+ def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, pagesize=nil, pagenum=nil, durationms=nil, dbname=nil, isquery=nil, catalogname=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, sortfield=nil, sortorder=nil)
2736
2745
  @InstanceId = instanceid
2737
2746
  @QueryDurationMs = querydurationms
2738
2747
  @StartTime = starttime
@@ -2747,6 +2756,8 @@ module TencentCloud
2747
2756
  @ReadRows = readrows
2748
2757
  @ResultBytes = resultbytes
2749
2758
  @MemoryUsage = memoryusage
2759
+ @SortField = sortfield
2760
+ @SortOrder = sortorder
2750
2761
  end
2751
2762
 
2752
2763
  def deserialize(params)
@@ -2764,6 +2775,8 @@ module TencentCloud
2764
2775
  @ReadRows = params['ReadRows']
2765
2776
  @ResultBytes = params['ResultBytes']
2766
2777
  @MemoryUsage = params['MemoryUsage']
2778
+ @SortField = params['SortField']
2779
+ @SortOrder = params['SortOrder']
2767
2780
  end
2768
2781
  end
2769
2782
 
@@ -2774,10 +2787,8 @@ module TencentCloud
2774
2787
  # @param SlowQueryRecords: 记录列表
2775
2788
  # @type SlowQueryRecords: Array
2776
2789
  # @param DBNameList: 所有数据库名
2777
- # 注意:此字段可能返回 null,表示取不到有效值。
2778
2790
  # @type DBNameList: Array
2779
2791
  # @param CatalogNameList: 所有catalog名
2780
- # 注意:此字段可能返回 null,表示取不到有效值。
2781
2792
  # @type CatalogNameList: Array
2782
2793
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2783
2794
  # @type RequestId: String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdwdoris
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.984
4
+ version: 3.0.985
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-16 00:00:00.000000000 Z
11
+ date: 2025-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common