tencentcloud-sdk-tccatalog 3.0.992 → 3.0.994

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/v20241024/models.rb +26 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0bd4c175cf19306eb411f1a3cac8b78759698d48
4
- data.tar.gz: 7784779e55833716e2708054422bef4b0d81c950
3
+ metadata.gz: 9753307d6485b3333e78fefb5cda4065b892f6de
4
+ data.tar.gz: 529e0cc128dbec3839fd4e2bf94278cdc5457e6e
5
5
  SHA512:
6
- metadata.gz: 34124aaab067413197ab424f25e2a68ebe3516df23b92fbe23b6340fef83d10b5e12ad004a5caaa76de389c07600cf7cedf9378873dd3cb24b732bec3c70b5b9
7
- data.tar.gz: e5691f7b8d03081758a836c48d064d1723bea9d5b4ed33fc4e1ad03823a1fc65cbdd3f2a00c5ee9a0ea50dc382502f2bb423b4014999691c52baec806c44d605
6
+ metadata.gz: ee9602b41aba10758df38bb235ce56e0c8f5416fb9736fdbef7fba4724a21fa1e049f01dc379cf1b8a87358a8221d37fcf89414b9def52283717511992520537
7
+ data.tar.gz: 7a438b062e65fe1543cc6cf6e6a206523d663cbf40304abf332c45ecf3b5f04de57a6f38432f8ff983010fa4637263d781ebdc684f6382626de37b4a33c44247
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.992
1
+ 3.0.994
@@ -209,14 +209,20 @@ module TencentCloud
209
209
  # @type SubnetId: String
210
210
  # @param SubnetCidrBlock: 子网网段
211
211
  # @type SubnetCidrBlock: String
212
+ # @param ClbIp: 服务clbip
213
+ # @type ClbIp: String
214
+ # @param ClbPort: 服务clbPort
215
+ # @type ClbPort: String
212
216
 
213
- attr_accessor :VpcId, :VpcCidrBlock, :SubnetId, :SubnetCidrBlock
217
+ attr_accessor :VpcId, :VpcCidrBlock, :SubnetId, :SubnetCidrBlock, :ClbIp, :ClbPort
214
218
 
215
- def initialize(vpcid=nil, vpccidrblock=nil, subnetid=nil, subnetcidrblock=nil)
219
+ def initialize(vpcid=nil, vpccidrblock=nil, subnetid=nil, subnetcidrblock=nil, clbip=nil, clbport=nil)
216
220
  @VpcId = vpcid
217
221
  @VpcCidrBlock = vpccidrblock
218
222
  @SubnetId = subnetid
219
223
  @SubnetCidrBlock = subnetcidrblock
224
+ @ClbIp = clbip
225
+ @ClbPort = clbport
220
226
  end
221
227
 
222
228
  def deserialize(params)
@@ -224,6 +230,8 @@ module TencentCloud
224
230
  @VpcCidrBlock = params['VpcCidrBlock']
225
231
  @SubnetId = params['SubnetId']
226
232
  @SubnetCidrBlock = params['SubnetCidrBlock']
233
+ @ClbIp = params['ClbIp']
234
+ @ClbPort = params['ClbPort']
227
235
  end
228
236
  end
229
237
 
@@ -320,19 +328,28 @@ module TencentCloud
320
328
 
321
329
  # Tcc数据目录连接配置
322
330
  class TccConnection < TencentCloud::Common::AbstractModel
323
- # @param EndpointServiceId: 终端节点服务Id
331
+ # @param EndpointServiceId: 引擎终端节点服务Id
324
332
  # @type EndpointServiceId: String
325
333
  # @param MetaStoreUrl: 元数据连接串
326
334
  # @type MetaStoreUrl: String
327
- # @param NetWork: 网络信息
335
+ # @param NetWork: 网络信息
328
336
  # @type NetWork: :class:`Tencentcloud::Tccatalog.v20241024.models.NetWork`
337
+ # @param HiveVersion: hive版本
338
+ # @type HiveVersion: String
339
+ # @param Location: hive location
340
+ # @type Location: String
341
+ # @param HmsEndpointServiceId: HMS终端节点服务
342
+ # @type HmsEndpointServiceId: String
329
343
 
330
- attr_accessor :EndpointServiceId, :MetaStoreUrl, :NetWork
344
+ attr_accessor :EndpointServiceId, :MetaStoreUrl, :NetWork, :HiveVersion, :Location, :HmsEndpointServiceId
331
345
 
332
- def initialize(endpointserviceid=nil, metastoreurl=nil, network=nil)
346
+ def initialize(endpointserviceid=nil, metastoreurl=nil, network=nil, hiveversion=nil, location=nil, hmsendpointserviceid=nil)
333
347
  @EndpointServiceId = endpointserviceid
334
348
  @MetaStoreUrl = metastoreurl
335
349
  @NetWork = network
350
+ @HiveVersion = hiveversion
351
+ @Location = location
352
+ @HmsEndpointServiceId = hmsendpointserviceid
336
353
  end
337
354
 
338
355
  def deserialize(params)
@@ -342,6 +359,9 @@ module TencentCloud
342
359
  @NetWork = NetWork.new
343
360
  @NetWork.deserialize(params['NetWork'])
344
361
  end
362
+ @HiveVersion = params['HiveVersion']
363
+ @Location = params['Location']
364
+ @HmsEndpointServiceId = params['HmsEndpointServiceId']
345
365
  end
346
366
  end
347
367
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tccatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.992
4
+ version: 3.0.994
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-02-05 00:00:00.000000000 Z
11
+ date: 2025-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common