tencentcloud-sdk-dlc 1.0.359 → 1.0.360

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210125/models.rb +61 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8633299b1a531fc0a9c8524d99d639673a3d4570
4
- data.tar.gz: 9f1996f2c904cfe211665ba01ac6fd655cede6c3
3
+ metadata.gz: 38d3571e9f98e4c40b2d080d5041499968777f0a
4
+ data.tar.gz: cca1a48ef66da0321cc34a07fa6ebbaf0ddef999
5
5
  SHA512:
6
- metadata.gz: a74efd17b90b8733322b7d5cf5c66262b218aeb4a342955e90c258b94fec99c647ff8cb0c3ce9f48869f487bc14b6a11bdfe87e32f3227c1ac4bd1b50deca962
7
- data.tar.gz: 5e460ac0c0513d0d217890ea26c1ca1db934dccad8ded1f148fd168e3f820e658c60582dd45300fae36386f7d83a2e80c70167d428279271c6d2a58de3829188
6
+ metadata.gz: 1f5db66adc815e91c70f8899ab2d356443c3a6cba272e4ee057b46baf1a2f9815c593a4c0ff6b265d606e01b76f0e824277d70f326461782bf42fc91ca8624a4
7
+ data.tar.gz: 9f56b6421e5d191c635f4e0cce588ebca1b3a056e6d6625c4bb1dc8f987f78d16a0e703c7e33b7b95162d98523c9a03d4cedfc166f3c6023b84b86998b1df8fb
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.359
1
+ 1.0.360
@@ -2166,15 +2166,27 @@ module TencentCloud
2166
2166
  # @param ModifiedTime: 数据库更新时间戳,单位:s。
2167
2167
  # 注意:此字段可能返回 null,表示取不到有效值。
2168
2168
  # @type ModifiedTime: String
2169
+ # @param Location: cos存储路径
2170
+ # 注意:此字段可能返回 null,表示取不到有效值。
2171
+ # @type Location: String
2172
+ # @param UserAlias: 建库用户昵称
2173
+ # 注意:此字段可能返回 null,表示取不到有效值。
2174
+ # @type UserAlias: String
2175
+ # @param UserSubUin: 建库用户ID
2176
+ # 注意:此字段可能返回 null,表示取不到有效值。
2177
+ # @type UserSubUin: String
2169
2178
 
2170
- attr_accessor :DatabaseName, :Comment, :Properties, :CreateTime, :ModifiedTime
2179
+ attr_accessor :DatabaseName, :Comment, :Properties, :CreateTime, :ModifiedTime, :Location, :UserAlias, :UserSubUin
2171
2180
 
2172
- def initialize(databasename=nil, comment=nil, properties=nil, createtime=nil, modifiedtime=nil)
2181
+ def initialize(databasename=nil, comment=nil, properties=nil, createtime=nil, modifiedtime=nil, location=nil, useralias=nil, usersubuin=nil)
2173
2182
  @DatabaseName = databasename
2174
2183
  @Comment = comment
2175
2184
  @Properties = properties
2176
2185
  @CreateTime = createtime
2177
2186
  @ModifiedTime = modifiedtime
2187
+ @Location = location
2188
+ @UserAlias = useralias
2189
+ @UserSubUin = usersubuin
2178
2190
  end
2179
2191
 
2180
2192
  def deserialize(params)
@@ -2190,6 +2202,9 @@ module TencentCloud
2190
2202
  end
2191
2203
  @CreateTime = params['CreateTime']
2192
2204
  @ModifiedTime = params['ModifiedTime']
2205
+ @Location = params['Location']
2206
+ @UserAlias = params['UserAlias']
2207
+ @UserSubUin = params['UserSubUin']
2193
2208
  end
2194
2209
  end
2195
2210
 
@@ -3060,14 +3075,23 @@ module TencentCloud
3060
3075
  # @type Limit: Integer
3061
3076
  # @param TaskId: 执行实例id
3062
3077
  # @type TaskId: String
3078
+ # @param StartTime: 更新时间起始点
3079
+ # @type StartTime: String
3080
+ # @param EndTime: 更新时间截止点
3081
+ # @type EndTime: String
3082
+ # @param Filters: 按照该参数过滤,支持task-state
3083
+ # @type Filters: Array
3063
3084
 
3064
- attr_accessor :JobId, :Offset, :Limit, :TaskId
3085
+ attr_accessor :JobId, :Offset, :Limit, :TaskId, :StartTime, :EndTime, :Filters
3065
3086
 
3066
- def initialize(jobid=nil, offset=nil, limit=nil, taskid=nil)
3087
+ def initialize(jobid=nil, offset=nil, limit=nil, taskid=nil, starttime=nil, endtime=nil, filters=nil)
3067
3088
  @JobId = jobid
3068
3089
  @Offset = offset
3069
3090
  @Limit = limit
3070
3091
  @TaskId = taskid
3092
+ @StartTime = starttime
3093
+ @EndTime = endtime
3094
+ @Filters = filters
3071
3095
  end
3072
3096
 
3073
3097
  def deserialize(params)
@@ -3075,6 +3099,16 @@ module TencentCloud
3075
3099
  @Offset = params['Offset']
3076
3100
  @Limit = params['Limit']
3077
3101
  @TaskId = params['TaskId']
3102
+ @StartTime = params['StartTime']
3103
+ @EndTime = params['EndTime']
3104
+ unless params['Filters'].nil?
3105
+ @Filters = []
3106
+ params['Filters'].each do |i|
3107
+ filter_tmp = Filter.new
3108
+ filter_tmp.deserialize(i)
3109
+ @Filters << filter_tmp
3110
+ end
3111
+ end
3078
3112
  end
3079
3113
  end
3080
3114
 
@@ -3215,7 +3249,7 @@ module TencentCloud
3215
3249
  # @type StartTime: String
3216
3250
  # @param EndTime: 终止时间:用于对更新时间的筛选
3217
3251
  # @type EndTime: String
3218
- # @param Sort: 排序字段,支持:ModifiedTime(默认);CreateTime
3252
+ # @param Sort: 排序字段,支持:CreateTime、UpdateTime、StorageSize、RecordCount、Name(不传则默认按name升序)
3219
3253
  # @type Sort: String
3220
3254
  # @param Asc: 排序字段,false:降序(默认);true:升序
3221
3255
  # @type Asc: Boolean
@@ -4852,16 +4886,24 @@ module TencentCloud
4852
4886
  # @param TableFormat: 数据格式类型,hive,iceberg等
4853
4887
  # 注意:此字段可能返回 null,表示取不到有效值。
4854
4888
  # @type TableFormat: String
4889
+ # @param UserAlias: 建表用户昵称
4890
+ # 注意:此字段可能返回 null,表示取不到有效值。
4891
+ # @type UserAlias: String
4892
+ # @param UserSubUin: 建表用户ID
4893
+ # 注意:此字段可能返回 null,表示取不到有效值。
4894
+ # @type UserSubUin: String
4855
4895
 
4856
- attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat
4896
+ attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin
4857
4897
 
4858
- def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil)
4898
+ def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil)
4859
4899
  @DatabaseName = databasename
4860
4900
  @TableName = tablename
4861
4901
  @DatasourceConnectionName = datasourceconnectionname
4862
4902
  @TableComment = tablecomment
4863
4903
  @Type = type
4864
4904
  @TableFormat = tableformat
4905
+ @UserAlias = useralias
4906
+ @UserSubUin = usersubuin
4865
4907
  end
4866
4908
 
4867
4909
  def deserialize(params)
@@ -4871,6 +4913,8 @@ module TencentCloud
4871
4913
  @TableComment = params['TableComment']
4872
4914
  @Type = params['Type']
4873
4915
  @TableFormat = params['TableFormat']
4916
+ @UserAlias = params['UserAlias']
4917
+ @UserSubUin = params['UserSubUin']
4874
4918
  end
4875
4919
  end
4876
4920
 
@@ -5544,17 +5588,25 @@ module TencentCloud
5544
5588
  # @type DatabaseName: String
5545
5589
  # @param ViewName: 视图名称
5546
5590
  # @type ViewName: String
5591
+ # @param UserAlias: 视图创建人昵称
5592
+ # @type UserAlias: String
5593
+ # @param UserSubUin: 视图创建人ID
5594
+ # @type UserSubUin: String
5547
5595
 
5548
- attr_accessor :DatabaseName, :ViewName
5596
+ attr_accessor :DatabaseName, :ViewName, :UserAlias, :UserSubUin
5549
5597
 
5550
- def initialize(databasename=nil, viewname=nil)
5598
+ def initialize(databasename=nil, viewname=nil, useralias=nil, usersubuin=nil)
5551
5599
  @DatabaseName = databasename
5552
5600
  @ViewName = viewname
5601
+ @UserAlias = useralias
5602
+ @UserSubUin = usersubuin
5553
5603
  end
5554
5604
 
5555
5605
  def deserialize(params)
5556
5606
  @DatabaseName = params['DatabaseName']
5557
5607
  @ViewName = params['ViewName']
5608
+ @UserAlias = params['UserAlias']
5609
+ @UserSubUin = params['UserSubUin']
5558
5610
  end
5559
5611
  end
5560
5612
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dlc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.359
4
+ version: 1.0.360
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-07-19 00:00:00.000000000 Z
11
+ date: 2022-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common