tencentcloud-sdk-tione 3.0.644 → 3.0.645
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/v20211111/models.rb +66 -9
- 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: 964ed54f7718c2329b0c65c7f560914391c71a96
|
4
|
+
data.tar.gz: 5a3d454f7295840d4b80ffc3e609a20284077c4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bc073c1769dd7e38aab40adbf8244e80789f9d8398ef2f66a6236c8cf09fe21731710f15c86c18e05ddd978c12d22a8373a86e13f0bd36c09b7e4f5391f8b0a
|
7
|
+
data.tar.gz: a7b1618d98189da0b056a611ee3fbd169e7683ca77808ce446c05c2830c6878b53d839dc34694f60f5e2fc96cac33f11c08288f5eb77644d43a8f0a45f7896be
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.645
|
data/lib/v20211111/models.rb
CHANGED
@@ -1185,10 +1185,12 @@ module TencentCloud
|
|
1185
1185
|
# @type ModelTurboEnable: Boolean
|
1186
1186
|
# @param ServiceCategory: 服务分类
|
1187
1187
|
# @type ServiceCategory: String
|
1188
|
+
# @param Command: 服务的启动命令
|
1189
|
+
# @type Command: String
|
1188
1190
|
|
1189
|
-
attr_accessor :ServiceGroupId, :ServiceGroupName, :ServiceDescription, :ChargeType, :ResourceGroupId, :ModelInfo, :ImageInfo, :Env, :Resources, :InstanceType, :ScaleMode, :Replicas, :HorizontalPodAutoscaler, :LogEnable, :LogConfig, :AuthorizationEnable, :Tags, :NewVersion, :CronScaleJobs, :ScaleStrategy, :HybridBillingPrepaidReplicas, :CreateSource, :ModelHotUpdateEnable, :ScheduledAction, :VolumeMount, :ServiceLimit, :CallbackUrl, :ModelTurboEnable, :ServiceCategory
|
1191
|
+
attr_accessor :ServiceGroupId, :ServiceGroupName, :ServiceDescription, :ChargeType, :ResourceGroupId, :ModelInfo, :ImageInfo, :Env, :Resources, :InstanceType, :ScaleMode, :Replicas, :HorizontalPodAutoscaler, :LogEnable, :LogConfig, :AuthorizationEnable, :Tags, :NewVersion, :CronScaleJobs, :ScaleStrategy, :HybridBillingPrepaidReplicas, :CreateSource, :ModelHotUpdateEnable, :ScheduledAction, :VolumeMount, :ServiceLimit, :CallbackUrl, :ModelTurboEnable, :ServiceCategory, :Command
|
1190
1192
|
|
1191
|
-
def initialize(servicegroupid=nil, servicegroupname=nil, servicedescription=nil, chargetype=nil, resourcegroupid=nil, modelinfo=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, scalemode=nil, replicas=nil, horizontalpodautoscaler=nil, logenable=nil, logconfig=nil, authorizationenable=nil, tags=nil, newversion=nil, cronscalejobs=nil, scalestrategy=nil, hybridbillingprepaidreplicas=nil, createsource=nil, modelhotupdateenable=nil, scheduledaction=nil, volumemount=nil, servicelimit=nil, callbackurl=nil, modelturboenable=nil, servicecategory=nil)
|
1193
|
+
def initialize(servicegroupid=nil, servicegroupname=nil, servicedescription=nil, chargetype=nil, resourcegroupid=nil, modelinfo=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, scalemode=nil, replicas=nil, horizontalpodautoscaler=nil, logenable=nil, logconfig=nil, authorizationenable=nil, tags=nil, newversion=nil, cronscalejobs=nil, scalestrategy=nil, hybridbillingprepaidreplicas=nil, createsource=nil, modelhotupdateenable=nil, scheduledaction=nil, volumemount=nil, servicelimit=nil, callbackurl=nil, modelturboenable=nil, servicecategory=nil, command=nil)
|
1192
1194
|
@ServiceGroupId = servicegroupid
|
1193
1195
|
@ServiceGroupName = servicegroupname
|
1194
1196
|
@ServiceDescription = servicedescription
|
@@ -1218,6 +1220,7 @@ module TencentCloud
|
|
1218
1220
|
@CallbackUrl = callbackurl
|
1219
1221
|
@ModelTurboEnable = modelturboenable
|
1220
1222
|
@ServiceCategory = servicecategory
|
1223
|
+
@Command = command
|
1221
1224
|
end
|
1222
1225
|
|
1223
1226
|
def deserialize(params)
|
@@ -1295,6 +1298,7 @@ module TencentCloud
|
|
1295
1298
|
@CallbackUrl = params['CallbackUrl']
|
1296
1299
|
@ModelTurboEnable = params['ModelTurboEnable']
|
1297
1300
|
@ServiceCategory = params['ServiceCategory']
|
1301
|
+
@Command = params['Command']
|
1298
1302
|
end
|
1299
1303
|
end
|
1300
1304
|
|
@@ -5473,6 +5477,26 @@ module TencentCloud
|
|
5473
5477
|
end
|
5474
5478
|
end
|
5475
5479
|
|
5480
|
+
# 推理代码的信息
|
5481
|
+
class InferCodeInfo < TencentCloud::Common::AbstractModel
|
5482
|
+
# @param CosPathInfo: 推理代码所在的cos详情
|
5483
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5484
|
+
# @type CosPathInfo: :class:`Tencentcloud::Tione.v20211111.models.CosPathInfo`
|
5485
|
+
|
5486
|
+
attr_accessor :CosPathInfo
|
5487
|
+
|
5488
|
+
def initialize(cospathinfo=nil)
|
5489
|
+
@CosPathInfo = cospathinfo
|
5490
|
+
end
|
5491
|
+
|
5492
|
+
def deserialize(params)
|
5493
|
+
unless params['CosPathInfo'].nil?
|
5494
|
+
@CosPathInfo = CosPathInfo.new
|
5495
|
+
@CosPathInfo.deserialize(params['CosPathInfo'])
|
5496
|
+
end
|
5497
|
+
end
|
5498
|
+
end
|
5499
|
+
|
5476
5500
|
# 服务的调用信息,服务组下唯一
|
5477
5501
|
class InferGatewayCallInfo < TencentCloud::Common::AbstractModel
|
5478
5502
|
# @param VpcHttpAddr: 内网http调用地址
|
@@ -6185,10 +6209,12 @@ module TencentCloud
|
|
6185
6209
|
# @type VolumeMount: :class:`Tencentcloud::Tione.v20211111.models.VolumeMount`
|
6186
6210
|
# @param ModelTurboEnable: 是否开启模型的加速, 仅对StableDiffusion(动态加速)格式的模型有效。默认不开启
|
6187
6211
|
# @type ModelTurboEnable: Boolean
|
6212
|
+
# @param Command: 服务的启动命令
|
6213
|
+
# @type Command: String
|
6188
6214
|
|
6189
|
-
attr_accessor :ServiceId, :ModelInfo, :ImageInfo, :Env, :Resources, :InstanceType, :ScaleMode, :Replicas, :HorizontalPodAutoscaler, :LogEnable, :LogConfig, :ServiceAction, :ServiceDescription, :ScaleStrategy, :CronScaleJobs, :HybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScheduledAction, :ServiceLimit, :VolumeMount, :ModelTurboEnable
|
6215
|
+
attr_accessor :ServiceId, :ModelInfo, :ImageInfo, :Env, :Resources, :InstanceType, :ScaleMode, :Replicas, :HorizontalPodAutoscaler, :LogEnable, :LogConfig, :ServiceAction, :ServiceDescription, :ScaleStrategy, :CronScaleJobs, :HybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScheduledAction, :ServiceLimit, :VolumeMount, :ModelTurboEnable, :Command
|
6190
6216
|
|
6191
|
-
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)
|
6217
|
+
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)
|
6192
6218
|
@ServiceId = serviceid
|
6193
6219
|
@ModelInfo = modelinfo
|
6194
6220
|
@ImageInfo = imageinfo
|
@@ -6210,6 +6236,7 @@ module TencentCloud
|
|
6210
6236
|
@ServiceLimit = servicelimit
|
6211
6237
|
@VolumeMount = volumemount
|
6212
6238
|
@ModelTurboEnable = modelturboenable
|
6239
|
+
@Command = command
|
6213
6240
|
end
|
6214
6241
|
|
6215
6242
|
def deserialize(params)
|
@@ -6272,6 +6299,7 @@ module TencentCloud
|
|
6272
6299
|
@VolumeMount.deserialize(params['VolumeMount'])
|
6273
6300
|
end
|
6274
6301
|
@ModelTurboEnable = params['ModelTurboEnable']
|
6302
|
+
@Command = params['Command']
|
6275
6303
|
end
|
6276
6304
|
end
|
6277
6305
|
|
@@ -8286,10 +8314,19 @@ module TencentCloud
|
|
8286
8314
|
# @param ModelTurboEnable: 是否开启模型的加速, 仅对StableDiffusion(动态加速)格式的模型有效。
|
8287
8315
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8288
8316
|
# @type ModelTurboEnable: Boolean
|
8317
|
+
# @param VolumeMount: 挂载
|
8318
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8319
|
+
# @type VolumeMount: :class:`Tencentcloud::Tione.v20211111.models.VolumeMount`
|
8320
|
+
# @param InferCodeInfo: 推理代码信息
|
8321
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8322
|
+
# @type InferCodeInfo: :class:`Tencentcloud::Tione.v20211111.models.InferCodeInfo`
|
8323
|
+
# @param Command: 服务的启动命令
|
8324
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8325
|
+
# @type Command: String
|
8289
8326
|
|
8290
|
-
attr_accessor :Replicas, :ImageInfo, :Env, :Resources, :InstanceType, :ModelInfo, :LogEnable, :LogConfig, :AuthorizationEnable, :HorizontalPodAutoscaler, :Status, :Weight, :PodList, :ResourceTotal, :OldReplicas, :HybridBillingPrepaidReplicas, :OldHybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScaleMode, :CronScaleJobs, :ScaleStrategy, :ScheduledAction, :Pods, :PodInfos, :ServiceLimit, :ModelTurboEnable
|
8327
|
+
attr_accessor :Replicas, :ImageInfo, :Env, :Resources, :InstanceType, :ModelInfo, :LogEnable, :LogConfig, :AuthorizationEnable, :HorizontalPodAutoscaler, :Status, :Weight, :PodList, :ResourceTotal, :OldReplicas, :HybridBillingPrepaidReplicas, :OldHybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScaleMode, :CronScaleJobs, :ScaleStrategy, :ScheduledAction, :Pods, :PodInfos, :ServiceLimit, :ModelTurboEnable, :VolumeMount, :InferCodeInfo, :Command
|
8291
8328
|
|
8292
|
-
def initialize(replicas=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, modelinfo=nil, logenable=nil, logconfig=nil, authorizationenable=nil, horizontalpodautoscaler=nil, status=nil, weight=nil, podlist=nil, resourcetotal=nil, oldreplicas=nil, hybridbillingprepaidreplicas=nil, oldhybridbillingprepaidreplicas=nil, modelhotupdateenable=nil, scalemode=nil, cronscalejobs=nil, scalestrategy=nil, scheduledaction=nil, pods=nil, podinfos=nil, servicelimit=nil, modelturboenable=nil)
|
8329
|
+
def initialize(replicas=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, modelinfo=nil, logenable=nil, logconfig=nil, authorizationenable=nil, horizontalpodautoscaler=nil, status=nil, weight=nil, podlist=nil, resourcetotal=nil, oldreplicas=nil, hybridbillingprepaidreplicas=nil, oldhybridbillingprepaidreplicas=nil, modelhotupdateenable=nil, scalemode=nil, cronscalejobs=nil, scalestrategy=nil, scheduledaction=nil, pods=nil, podinfos=nil, servicelimit=nil, modelturboenable=nil, volumemount=nil, infercodeinfo=nil, command=nil)
|
8293
8330
|
@Replicas = replicas
|
8294
8331
|
@ImageInfo = imageinfo
|
8295
8332
|
@Env = env
|
@@ -8316,6 +8353,9 @@ module TencentCloud
|
|
8316
8353
|
@PodInfos = podinfos
|
8317
8354
|
@ServiceLimit = servicelimit
|
8318
8355
|
@ModelTurboEnable = modelturboenable
|
8356
|
+
@VolumeMount = volumemount
|
8357
|
+
@InferCodeInfo = infercodeinfo
|
8358
|
+
@Command = command
|
8319
8359
|
end
|
8320
8360
|
|
8321
8361
|
def deserialize(params)
|
@@ -8393,6 +8433,15 @@ module TencentCloud
|
|
8393
8433
|
@ServiceLimit.deserialize(params['ServiceLimit'])
|
8394
8434
|
end
|
8395
8435
|
@ModelTurboEnable = params['ModelTurboEnable']
|
8436
|
+
unless params['VolumeMount'].nil?
|
8437
|
+
@VolumeMount = VolumeMount.new
|
8438
|
+
@VolumeMount.deserialize(params['VolumeMount'])
|
8439
|
+
end
|
8440
|
+
unless params['InferCodeInfo'].nil?
|
8441
|
+
@InferCodeInfo = InferCodeInfo.new
|
8442
|
+
@InferCodeInfo.deserialize(params['InferCodeInfo'])
|
8443
|
+
end
|
8444
|
+
@Command = params['Command']
|
8396
8445
|
end
|
8397
8446
|
end
|
8398
8447
|
|
@@ -8601,15 +8650,19 @@ module TencentCloud
|
|
8601
8650
|
# @param LastTransitionTime: 上次更新的时间
|
8602
8651
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8603
8652
|
# @type LastTransitionTime: String
|
8653
|
+
# @param LastUpdateTime: 上次更新的时间
|
8654
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8655
|
+
# @type LastUpdateTime: String
|
8604
8656
|
|
8605
|
-
attr_accessor :Message, :Reason, :Status, :Type, :LastTransitionTime
|
8657
|
+
attr_accessor :Message, :Reason, :Status, :Type, :LastTransitionTime, :LastUpdateTime
|
8606
8658
|
|
8607
|
-
def initialize(message=nil, reason=nil, status=nil, type=nil, lasttransitiontime=nil)
|
8659
|
+
def initialize(message=nil, reason=nil, status=nil, type=nil, lasttransitiontime=nil, lastupdatetime=nil)
|
8608
8660
|
@Message = message
|
8609
8661
|
@Reason = reason
|
8610
8662
|
@Status = status
|
8611
8663
|
@Type = type
|
8612
8664
|
@LastTransitionTime = lasttransitiontime
|
8665
|
+
@LastUpdateTime = lastupdatetime
|
8613
8666
|
end
|
8614
8667
|
|
8615
8668
|
def deserialize(params)
|
@@ -8618,6 +8671,7 @@ module TencentCloud
|
|
8618
8671
|
@Status = params['Status']
|
8619
8672
|
@Type = params['Type']
|
8620
8673
|
@LastTransitionTime = params['LastTransitionTime']
|
8674
|
+
@LastUpdateTime = params['LastUpdateTime']
|
8621
8675
|
end
|
8622
8676
|
end
|
8623
8677
|
|
@@ -9730,7 +9784,7 @@ module TencentCloud
|
|
9730
9784
|
class VolumeMount < TencentCloud::Common::AbstractModel
|
9731
9785
|
# @param CFSConfig: cfs的配置信息
|
9732
9786
|
# @type CFSConfig: :class:`Tencentcloud::Tione.v20211111.models.CFSConfig`
|
9733
|
-
# @param VolumeSourceType:
|
9787
|
+
# @param VolumeSourceType: 挂载源类型,CFS、COS,默认为CFS
|
9734
9788
|
# @type VolumeSourceType: String
|
9735
9789
|
|
9736
9790
|
attr_accessor :CFSConfig, :VolumeSourceType
|
@@ -9797,6 +9851,9 @@ module TencentCloud
|
|
9797
9851
|
# @type Reason: String
|
9798
9852
|
|
9799
9853
|
attr_accessor :Replicas, :UpdatedReplicas, :ReadyReplicas, :AvailableReplicas, :UnavailableReplicas, :Status, :StatefulSetCondition, :Conditions, :Reason
|
9854
|
+
extend Gem::Deprecate
|
9855
|
+
deprecate :StatefulSetCondition, :none, 2023, 8
|
9856
|
+
deprecate :StatefulSetCondition=, :none, 2023, 8
|
9800
9857
|
|
9801
9858
|
def initialize(replicas=nil, updatedreplicas=nil, readyreplicas=nil, availablereplicas=nil, unavailablereplicas=nil, status=nil, statefulsetcondition=nil, conditions=nil, reason=nil)
|
9802
9859
|
@Replicas = replicas
|
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.
|
4
|
+
version: 3.0.645
|
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-08-
|
11
|
+
date: 2023-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|