tencentcloud-sdk-tione 3.0.1094 → 3.0.1102

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/v20211111/models.rb +26 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1885319a9602a9f44ffe7073ec53c4ff0219eb6
4
- data.tar.gz: 4ca3c0e1644f11be10dde44baa9f98886ecda2ba
3
+ metadata.gz: e5c1f9bed9054bea8b7225225e22c81aaa00a2d0
4
+ data.tar.gz: 2949b90c0cab9fbf5e3e34346a4e1d86f1e117bc
5
5
  SHA512:
6
- metadata.gz: 5da7410cd0652a0a96354e4bb9e38630f040f966f830617eaa300ff0f6e053ea3780573157d56bf9ebf2007ed69d155f2e0bc06cd74efbd01253c4c735421795
7
- data.tar.gz: c6e003093adc340f8452803d4eea150b5cde1fec2daaff979ebe22880379ed5adc09c2e15756fc27914c8b0eab360978b7f8c9d5d28bab33e506483513557c48
6
+ metadata.gz: 4313b0b72e6fa779b1e69207c70876bf5e19286ccb6bc53737ebee407491fb1f4571f5f9f0040e042521b4a4697fb4ce95940bbbdf3a2905956846e5166733df
7
+ data.tar.gz: 9519fbc76f502cfc58ce8656a0ae95f5d2dc270f18ccfeb82c741f6a6dc8056f8d28adbb85ca31f924f090d7b5174452dd6fc82521ca877dd97cc96efd1565a2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1102
@@ -5320,10 +5320,12 @@ module TencentCloud
5320
5320
  # @type IsPrivateModel: Boolean
5321
5321
  # @param ModelCategory: 模型的类别 多模态MultiModal, 文本大模型 LLM
5322
5322
  # @type ModelCategory: String
5323
+ # @param PublicDataSource: 数据源的配置
5324
+ # @type PublicDataSource: :class:`Tencentcloud::Tione.v20211111.models.PublicDataSourceFS`
5323
5325
 
5324
- attr_accessor :ModelVersionId, :ModelId, :ModelName, :ModelVersion, :ModelSource, :CosPathInfo, :GooseFSx, :AlgorithmFramework, :ModelType, :ModelFormat, :IsPrivateModel, :ModelCategory
5326
+ attr_accessor :ModelVersionId, :ModelId, :ModelName, :ModelVersion, :ModelSource, :CosPathInfo, :GooseFSx, :AlgorithmFramework, :ModelType, :ModelFormat, :IsPrivateModel, :ModelCategory, :PublicDataSource
5325
5327
 
5326
- def initialize(modelversionid=nil, modelid=nil, modelname=nil, modelversion=nil, modelsource=nil, cospathinfo=nil, goosefsx=nil, algorithmframework=nil, modeltype=nil, modelformat=nil, isprivatemodel=nil, modelcategory=nil)
5328
+ def initialize(modelversionid=nil, modelid=nil, modelname=nil, modelversion=nil, modelsource=nil, cospathinfo=nil, goosefsx=nil, algorithmframework=nil, modeltype=nil, modelformat=nil, isprivatemodel=nil, modelcategory=nil, publicdatasource=nil)
5327
5329
  @ModelVersionId = modelversionid
5328
5330
  @ModelId = modelid
5329
5331
  @ModelName = modelname
@@ -5336,6 +5338,7 @@ module TencentCloud
5336
5338
  @ModelFormat = modelformat
5337
5339
  @IsPrivateModel = isprivatemodel
5338
5340
  @ModelCategory = modelcategory
5341
+ @PublicDataSource = publicdatasource
5339
5342
  end
5340
5343
 
5341
5344
  def deserialize(params)
@@ -5357,6 +5360,10 @@ module TencentCloud
5357
5360
  @ModelFormat = params['ModelFormat']
5358
5361
  @IsPrivateModel = params['IsPrivateModel']
5359
5362
  @ModelCategory = params['ModelCategory']
5363
+ unless params['PublicDataSource'].nil?
5364
+ @PublicDataSource = PublicDataSourceFS.new
5365
+ @PublicDataSource.deserialize(params['PublicDataSource'])
5366
+ end
5360
5367
  end
5361
5368
  end
5362
5369
 
@@ -5622,10 +5629,12 @@ module TencentCloud
5622
5629
  # @type RollingUpdate: :class:`Tencentcloud::Tione.v20211111.models.RollingUpdate`
5623
5630
  # @param Sidecar: sidecar配置
5624
5631
  # @type Sidecar: :class:`Tencentcloud::Tione.v20211111.models.SidecarSpec`
5632
+ # @param ResourceGroupId: 资源组 id
5633
+ # @type ResourceGroupId: String
5625
5634
 
5626
- attr_accessor :ServiceId, :ModelInfo, :ImageInfo, :Env, :Resources, :InstanceType, :ScaleMode, :Replicas, :HorizontalPodAutoscaler, :LogEnable, :LogConfig, :ServiceAction, :ServiceDescription, :ScaleStrategy, :CronScaleJobs, :HybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScheduledAction, :ServiceLimit, :VolumeMount, :ModelTurboEnable, :Command, :ServiceEIP, :CommandBase64, :ServicePort, :InstancePerReplicas, :TerminationGracePeriodSeconds, :PreStopCommand, :GrpcEnable, :HealthProbe, :RollingUpdate, :Sidecar
5635
+ attr_accessor :ServiceId, :ModelInfo, :ImageInfo, :Env, :Resources, :InstanceType, :ScaleMode, :Replicas, :HorizontalPodAutoscaler, :LogEnable, :LogConfig, :ServiceAction, :ServiceDescription, :ScaleStrategy, :CronScaleJobs, :HybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScheduledAction, :ServiceLimit, :VolumeMount, :ModelTurboEnable, :Command, :ServiceEIP, :CommandBase64, :ServicePort, :InstancePerReplicas, :TerminationGracePeriodSeconds, :PreStopCommand, :GrpcEnable, :HealthProbe, :RollingUpdate, :Sidecar, :ResourceGroupId
5627
5636
 
5628
- def initialize(serviceid=nil, modelinfo=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, scalemode=nil, replicas=nil, horizontalpodautoscaler=nil, logenable=nil, logconfig=nil, serviceaction=nil, servicedescription=nil, scalestrategy=nil, cronscalejobs=nil, hybridbillingprepaidreplicas=nil, modelhotupdateenable=nil, scheduledaction=nil, servicelimit=nil, volumemount=nil, modelturboenable=nil, command=nil, serviceeip=nil, commandbase64=nil, serviceport=nil, instanceperreplicas=nil, terminationgraceperiodseconds=nil, prestopcommand=nil, grpcenable=nil, healthprobe=nil, rollingupdate=nil, sidecar=nil)
5637
+ def initialize(serviceid=nil, modelinfo=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, scalemode=nil, replicas=nil, horizontalpodautoscaler=nil, logenable=nil, logconfig=nil, serviceaction=nil, servicedescription=nil, scalestrategy=nil, cronscalejobs=nil, hybridbillingprepaidreplicas=nil, modelhotupdateenable=nil, scheduledaction=nil, servicelimit=nil, volumemount=nil, modelturboenable=nil, command=nil, serviceeip=nil, commandbase64=nil, serviceport=nil, instanceperreplicas=nil, terminationgraceperiodseconds=nil, prestopcommand=nil, grpcenable=nil, healthprobe=nil, rollingupdate=nil, sidecar=nil, resourcegroupid=nil)
5629
5638
  @ServiceId = serviceid
5630
5639
  @ModelInfo = modelinfo
5631
5640
  @ImageInfo = imageinfo
@@ -5658,6 +5667,7 @@ module TencentCloud
5658
5667
  @HealthProbe = healthprobe
5659
5668
  @RollingUpdate = rollingupdate
5660
5669
  @Sidecar = sidecar
5670
+ @ResourceGroupId = resourcegroupid
5661
5671
  end
5662
5672
 
5663
5673
  def deserialize(params)
@@ -5743,6 +5753,7 @@ module TencentCloud
5743
5753
  @Sidecar = SidecarSpec.new
5744
5754
  @Sidecar.deserialize(params['Sidecar'])
5745
5755
  end
5756
+ @ResourceGroupId = params['ResourceGroupId']
5746
5757
  end
5747
5758
  end
5748
5759
 
@@ -6653,6 +6664,17 @@ module TencentCloud
6653
6664
  end
6654
6665
  end
6655
6666
 
6667
+ # 公有云数据源结构
6668
+ class PublicDataSourceFS < TencentCloud::Common::AbstractModel
6669
+
6670
+
6671
+ def initialize()
6672
+ end
6673
+
6674
+ def deserialize(params)
6675
+ end
6676
+ end
6677
+
6656
6678
  # PushTrainingMetrics请求参数结构体
6657
6679
  class PushTrainingMetricsRequest < TencentCloud::Common::AbstractModel
6658
6680
  # @param Data: 指标数据
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tione
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1094
4
+ version: 3.0.1102
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-07-05 00:00:00.000000000 Z
11
+ date: 2025-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common