tencentcloud-sdk-tione 3.0.652 → 3.0.654
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/tencentcloud-sdk-tione.rb +3 -3
- data/lib/v20211111/models.rb +60 -8
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c15aaf528915069e0cf4c936cf312e2071e7096
|
4
|
+
data.tar.gz: 0450d0872305e70474fbfa90430115c539b3389e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d6494c8cb6544cb8eee35c3c84bddc64d4a0cdd0ae42719d6ec877b2ddeaaa30cbc922693494d49a1dbef9b05c3d84add48f419c74417d754071e05fe0d7d0e
|
7
|
+
data.tar.gz: 3852d96ce77a3b4909ecf970c146041d48d145f109d26779c467b9f77b2b847059e74d559b3fe0b629d21913de2962e2e2f56db53f1ba8e2f80d51b38c50767a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.654
|
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
require 'tencentcloud-sdk-common'
|
4
4
|
|
5
|
-
require_relative 'v20191022/client'
|
6
|
-
require_relative 'v20191022/models'
|
7
|
-
|
8
5
|
require_relative 'v20211111/client'
|
9
6
|
require_relative 'v20211111/models'
|
10
7
|
|
8
|
+
require_relative 'v20191022/client'
|
9
|
+
require_relative 'v20191022/models'
|
10
|
+
|
11
11
|
module TencentCloud
|
12
12
|
module Tione
|
13
13
|
end
|
data/lib/v20211111/models.rb
CHANGED
@@ -1189,10 +1189,12 @@ module TencentCloud
|
|
1189
1189
|
# @type ServiceCategory: String
|
1190
1190
|
# @param Command: 服务的启动命令
|
1191
1191
|
# @type Command: String
|
1192
|
+
# @param ServiceEIP: 是否开启TIONE内网访问外部
|
1193
|
+
# @type ServiceEIP: :class:`Tencentcloud::Tione.v20211111.models.ServiceEIP`
|
1192
1194
|
|
1193
|
-
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
|
1195
|
+
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, :ServiceEIP
|
1194
1196
|
|
1195
|
-
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)
|
1197
|
+
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, serviceeip=nil)
|
1196
1198
|
@ServiceGroupId = servicegroupid
|
1197
1199
|
@ServiceGroupName = servicegroupname
|
1198
1200
|
@ServiceDescription = servicedescription
|
@@ -1223,6 +1225,7 @@ module TencentCloud
|
|
1223
1225
|
@ModelTurboEnable = modelturboenable
|
1224
1226
|
@ServiceCategory = servicecategory
|
1225
1227
|
@Command = command
|
1228
|
+
@ServiceEIP = serviceeip
|
1226
1229
|
end
|
1227
1230
|
|
1228
1231
|
def deserialize(params)
|
@@ -1301,6 +1304,10 @@ module TencentCloud
|
|
1301
1304
|
@ModelTurboEnable = params['ModelTurboEnable']
|
1302
1305
|
@ServiceCategory = params['ServiceCategory']
|
1303
1306
|
@Command = params['Command']
|
1307
|
+
unless params['ServiceEIP'].nil?
|
1308
|
+
@ServiceEIP = ServiceEIP.new
|
1309
|
+
@ServiceEIP.deserialize(params['ServiceEIP'])
|
1310
|
+
end
|
1304
1311
|
end
|
1305
1312
|
end
|
1306
1313
|
|
@@ -6313,10 +6320,12 @@ module TencentCloud
|
|
6313
6320
|
# @type ModelTurboEnable: Boolean
|
6314
6321
|
# @param Command: 服务的启动命令
|
6315
6322
|
# @type Command: String
|
6323
|
+
# @param ServiceEIP: 是否开启TIONE内网访问外部
|
6324
|
+
# @type ServiceEIP: :class:`Tencentcloud::Tione.v20211111.models.ServiceEIP`
|
6316
6325
|
|
6317
|
-
attr_accessor :ServiceId, :ModelInfo, :ImageInfo, :Env, :Resources, :InstanceType, :ScaleMode, :Replicas, :HorizontalPodAutoscaler, :LogEnable, :LogConfig, :ServiceAction, :ServiceDescription, :ScaleStrategy, :CronScaleJobs, :HybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScheduledAction, :ServiceLimit, :VolumeMount, :ModelTurboEnable, :Command
|
6326
|
+
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
|
6318
6327
|
|
6319
|
-
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)
|
6328
|
+
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)
|
6320
6329
|
@ServiceId = serviceid
|
6321
6330
|
@ModelInfo = modelinfo
|
6322
6331
|
@ImageInfo = imageinfo
|
@@ -6339,6 +6348,7 @@ module TencentCloud
|
|
6339
6348
|
@VolumeMount = volumemount
|
6340
6349
|
@ModelTurboEnable = modelturboenable
|
6341
6350
|
@Command = command
|
6351
|
+
@ServiceEIP = serviceeip
|
6342
6352
|
end
|
6343
6353
|
|
6344
6354
|
def deserialize(params)
|
@@ -6402,6 +6412,10 @@ module TencentCloud
|
|
6402
6412
|
end
|
6403
6413
|
@ModelTurboEnable = params['ModelTurboEnable']
|
6404
6414
|
@Command = params['Command']
|
6415
|
+
unless params['ServiceEIP'].nil?
|
6416
|
+
@ServiceEIP = ServiceEIP.new
|
6417
|
+
@ServiceEIP.deserialize(params['ServiceEIP'])
|
6418
|
+
end
|
6405
6419
|
end
|
6406
6420
|
end
|
6407
6421
|
|
@@ -7250,19 +7264,37 @@ module TencentCloud
|
|
7250
7264
|
# @param Status: pod状态
|
7251
7265
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7252
7266
|
# @type Status: String
|
7267
|
+
# @param StartTime: pod启动时间
|
7268
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7269
|
+
# @type StartTime: String
|
7270
|
+
# @param EndTime: pod结束时间
|
7271
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7272
|
+
# @type EndTime: String
|
7273
|
+
# @param ResourceConfigInfo: pod资源配置
|
7274
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7275
|
+
# @type ResourceConfigInfo: :class:`Tencentcloud::Tione.v20211111.models.ResourceConfigInfo`
|
7253
7276
|
|
7254
|
-
attr_accessor :Name, :IP, :Status
|
7277
|
+
attr_accessor :Name, :IP, :Status, :StartTime, :EndTime, :ResourceConfigInfo
|
7255
7278
|
|
7256
|
-
def initialize(name=nil, ip=nil, status=nil)
|
7279
|
+
def initialize(name=nil, ip=nil, status=nil, starttime=nil, endtime=nil, resourceconfiginfo=nil)
|
7257
7280
|
@Name = name
|
7258
7281
|
@IP = ip
|
7259
7282
|
@Status = status
|
7283
|
+
@StartTime = starttime
|
7284
|
+
@EndTime = endtime
|
7285
|
+
@ResourceConfigInfo = resourceconfiginfo
|
7260
7286
|
end
|
7261
7287
|
|
7262
7288
|
def deserialize(params)
|
7263
7289
|
@Name = params['Name']
|
7264
7290
|
@IP = params['IP']
|
7265
7291
|
@Status = params['Status']
|
7292
|
+
@StartTime = params['StartTime']
|
7293
|
+
@EndTime = params['EndTime']
|
7294
|
+
unless params['ResourceConfigInfo'].nil?
|
7295
|
+
@ResourceConfigInfo = ResourceConfigInfo.new
|
7296
|
+
@ResourceConfigInfo.deserialize(params['ResourceConfigInfo'])
|
7297
|
+
end
|
7266
7298
|
end
|
7267
7299
|
end
|
7268
7300
|
|
@@ -8647,15 +8679,31 @@ module TencentCloud
|
|
8647
8679
|
# @type Available: Boolean
|
8648
8680
|
# @param AvailableRegion: 当前资源售罄时,可用的区域有哪些
|
8649
8681
|
# @type AvailableRegion: Array
|
8682
|
+
# @param SpecFeatures: 当前计费项支持的特性
|
8683
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8684
|
+
# @type SpecFeatures: Array
|
8685
|
+
# @param SpecType: 计费项类型
|
8686
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8687
|
+
# @type SpecType: String
|
8688
|
+
# @param GpuType: GPU类型
|
8689
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8690
|
+
# @type GpuType: String
|
8691
|
+
# @param CategoryId: 计费项CategoryId
|
8692
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8693
|
+
# @type CategoryId: String
|
8650
8694
|
|
8651
|
-
attr_accessor :SpecId, :SpecName, :SpecAlias, :Available, :AvailableRegion
|
8695
|
+
attr_accessor :SpecId, :SpecName, :SpecAlias, :Available, :AvailableRegion, :SpecFeatures, :SpecType, :GpuType, :CategoryId
|
8652
8696
|
|
8653
|
-
def initialize(specid=nil, specname=nil, specalias=nil, available=nil, availableregion=nil)
|
8697
|
+
def initialize(specid=nil, specname=nil, specalias=nil, available=nil, availableregion=nil, specfeatures=nil, spectype=nil, gputype=nil, categoryid=nil)
|
8654
8698
|
@SpecId = specid
|
8655
8699
|
@SpecName = specname
|
8656
8700
|
@SpecAlias = specalias
|
8657
8701
|
@Available = available
|
8658
8702
|
@AvailableRegion = availableregion
|
8703
|
+
@SpecFeatures = specfeatures
|
8704
|
+
@SpecType = spectype
|
8705
|
+
@GpuType = gputype
|
8706
|
+
@CategoryId = categoryid
|
8659
8707
|
end
|
8660
8708
|
|
8661
8709
|
def deserialize(params)
|
@@ -8664,6 +8712,10 @@ module TencentCloud
|
|
8664
8712
|
@SpecAlias = params['SpecAlias']
|
8665
8713
|
@Available = params['Available']
|
8666
8714
|
@AvailableRegion = params['AvailableRegion']
|
8715
|
+
@SpecFeatures = params['SpecFeatures']
|
8716
|
+
@SpecType = params['SpecType']
|
8717
|
+
@GpuType = params['GpuType']
|
8718
|
+
@CategoryId = params['CategoryId']
|
8667
8719
|
end
|
8668
8720
|
end
|
8669
8721
|
|
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.654
|
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-09-
|
11
|
+
date: 2023-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,11 +33,11 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-tione.rb
|
37
|
-
- lib/v20191022/client.rb
|
38
36
|
- lib/v20191022/models.rb
|
39
|
-
- lib/
|
37
|
+
- lib/v20191022/client.rb
|
38
|
+
- lib/tencentcloud-sdk-tione.rb
|
40
39
|
- lib/v20211111/models.rb
|
40
|
+
- lib/v20211111/client.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|