tencentcloud-sdk-tione 3.0.798 → 3.0.800
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 +37 -23
- 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: c47da5939e5a4518634e028d7df08373eba7bbef
|
4
|
+
data.tar.gz: 40ff03a9e29ed9924f11560c489e46f7e2840813
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43b6114fcbebf7a6e5af0d7394400625e33abe5636af1b3e24894d8acd0ec1d4f7fc913fbbb2528dea8288a1e97ee32e45771b9206bc779ed68867f5e7ed8c2f
|
7
|
+
data.tar.gz: 68aa1a33587c114dc71cc260e0f1cbfe46ae5e4264dda52ef46eed694dc6fa8266292f576576dfd790a58cac296218c25a9e30935401b3d1f02632f55e135141
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.800
|
data/lib/v20211111/models.rb
CHANGED
@@ -896,15 +896,19 @@ module TencentCloud
|
|
896
896
|
# @type Remark: String
|
897
897
|
# @param CallbackUrl: 任务执行结果回调URL,仅支持http和https。回调格式&内容详见: [TI-ONE 接口回调说明](https://cloud.tencent.com/document/product/851/84292)
|
898
898
|
# @type CallbackUrl: String
|
899
|
+
# @param StartCmdBase64: 以Base64方式编码的启动命令。假设启动命令是/app/run.sh,则此处输入参数应该为L2FwcC9ydW4uc2g=。
|
900
|
+
# @type StartCmdBase64: String
|
899
901
|
|
900
|
-
attr_accessor :BatchTaskName, :ChargeType, :ResourceConfigInfo, :Outputs, :LogEnable, :JobType, :CronInfo, :ResourceGroupId, :Tags, :ModelInfo, :ImageInfo, :CodePackage, :StartCmd, :DataConfigs, :LogConfig, :VpcId, :SubnetId, :Remark, :CallbackUrl
|
902
|
+
attr_accessor :BatchTaskName, :ChargeType, :ResourceConfigInfo, :Outputs, :LogEnable, :JobType, :CronInfo, :ResourceGroupId, :Tags, :ModelInfo, :ImageInfo, :CodePackage, :StartCmd, :DataConfigs, :LogConfig, :VpcId, :SubnetId, :Remark, :CallbackUrl, :StartCmdBase64
|
901
903
|
extend Gem::Deprecate
|
902
|
-
deprecate :JobType, :none, 2024,
|
903
|
-
deprecate :JobType=, :none, 2024,
|
904
|
-
deprecate :CronInfo, :none, 2024,
|
905
|
-
deprecate :CronInfo=, :none, 2024,
|
906
|
-
|
907
|
-
|
904
|
+
deprecate :JobType, :none, 2024, 4
|
905
|
+
deprecate :JobType=, :none, 2024, 4
|
906
|
+
deprecate :CronInfo, :none, 2024, 4
|
907
|
+
deprecate :CronInfo=, :none, 2024, 4
|
908
|
+
deprecate :StartCmd, :none, 2024, 4
|
909
|
+
deprecate :StartCmd=, :none, 2024, 4
|
910
|
+
|
911
|
+
def initialize(batchtaskname=nil, chargetype=nil, resourceconfiginfo=nil, outputs=nil, logenable=nil, jobtype=nil, croninfo=nil, resourcegroupid=nil, tags=nil, modelinfo=nil, imageinfo=nil, codepackage=nil, startcmd=nil, dataconfigs=nil, logconfig=nil, vpcid=nil, subnetid=nil, remark=nil, callbackurl=nil, startcmdbase64=nil)
|
908
912
|
@BatchTaskName = batchtaskname
|
909
913
|
@ChargeType = chargetype
|
910
914
|
@ResourceConfigInfo = resourceconfiginfo
|
@@ -924,6 +928,7 @@ module TencentCloud
|
|
924
928
|
@SubnetId = subnetid
|
925
929
|
@Remark = remark
|
926
930
|
@CallbackUrl = callbackurl
|
931
|
+
@StartCmdBase64 = startcmdbase64
|
927
932
|
end
|
928
933
|
|
929
934
|
def deserialize(params)
|
@@ -985,6 +990,7 @@ module TencentCloud
|
|
985
990
|
@SubnetId = params['SubnetId']
|
986
991
|
@Remark = params['Remark']
|
987
992
|
@CallbackUrl = params['CallbackUrl']
|
993
|
+
@StartCmdBase64 = params['StartCmdBase64']
|
988
994
|
end
|
989
995
|
end
|
990
996
|
|
@@ -1202,14 +1208,16 @@ module TencentCloud
|
|
1202
1208
|
# @type ModelTurboEnable: Boolean
|
1203
1209
|
# @param ServiceCategory: 服务分类
|
1204
1210
|
# @type ServiceCategory: String
|
1205
|
-
# @param Command:
|
1211
|
+
# @param Command: 服务的启动命令,如遇特殊字符导致配置失败,可使用CommandBase64参数
|
1206
1212
|
# @type Command: String
|
1207
1213
|
# @param ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
1208
1214
|
# @type ServiceEIP: :class:`Tencentcloud::Tione.v20211111.models.ServiceEIP`
|
1215
|
+
# @param CommandBase64: 服务的启动命令,以base64格式进行输入
|
1216
|
+
# @type CommandBase64: String
|
1209
1217
|
|
1210
|
-
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
|
1218
|
+
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, :CommandBase64
|
1211
1219
|
|
1212
|
-
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)
|
1220
|
+
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, commandbase64=nil)
|
1213
1221
|
@ServiceGroupId = servicegroupid
|
1214
1222
|
@ServiceGroupName = servicegroupname
|
1215
1223
|
@ServiceDescription = servicedescription
|
@@ -1241,6 +1249,7 @@ module TencentCloud
|
|
1241
1249
|
@ServiceCategory = servicecategory
|
1242
1250
|
@Command = command
|
1243
1251
|
@ServiceEIP = serviceeip
|
1252
|
+
@CommandBase64 = commandbase64
|
1244
1253
|
end
|
1245
1254
|
|
1246
1255
|
def deserialize(params)
|
@@ -1323,6 +1332,7 @@ module TencentCloud
|
|
1323
1332
|
@ServiceEIP = ServiceEIP.new
|
1324
1333
|
@ServiceEIP.deserialize(params['ServiceEIP'])
|
1325
1334
|
end
|
1335
|
+
@CommandBase64 = params['CommandBase64']
|
1326
1336
|
end
|
1327
1337
|
end
|
1328
1338
|
|
@@ -7147,14 +7157,16 @@ module TencentCloud
|
|
7147
7157
|
# @type VolumeMount: :class:`Tencentcloud::Tione.v20211111.models.VolumeMount`
|
7148
7158
|
# @param ModelTurboEnable: 是否开启模型的加速, 仅对StableDiffusion(动态加速)格式的模型有效。默认不开启
|
7149
7159
|
# @type ModelTurboEnable: Boolean
|
7150
|
-
# @param Command:
|
7160
|
+
# @param Command: 服务的启动命令,如遇特殊字符导致配置失败,可使用CommandBase64参数
|
7151
7161
|
# @type Command: String
|
7152
7162
|
# @param ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
7153
7163
|
# @type ServiceEIP: :class:`Tencentcloud::Tione.v20211111.models.ServiceEIP`
|
7164
|
+
# @param CommandBase64: 服务的启动命令,以base64格式进行输入
|
7165
|
+
# @type CommandBase64: String
|
7154
7166
|
|
7155
|
-
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
|
7167
|
+
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
|
7156
7168
|
|
7157
|
-
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)
|
7169
|
+
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)
|
7158
7170
|
@ServiceId = serviceid
|
7159
7171
|
@ModelInfo = modelinfo
|
7160
7172
|
@ImageInfo = imageinfo
|
@@ -7178,6 +7190,7 @@ module TencentCloud
|
|
7178
7190
|
@ModelTurboEnable = modelturboenable
|
7179
7191
|
@Command = command
|
7180
7192
|
@ServiceEIP = serviceeip
|
7193
|
+
@CommandBase64 = commandbase64
|
7181
7194
|
end
|
7182
7195
|
|
7183
7196
|
def deserialize(params)
|
@@ -7245,6 +7258,7 @@ module TencentCloud
|
|
7245
7258
|
@ServiceEIP = ServiceEIP.new
|
7246
7259
|
@ServiceEIP.deserialize(params['ServiceEIP'])
|
7247
7260
|
end
|
7261
|
+
@CommandBase64 = params['CommandBase64']
|
7248
7262
|
end
|
7249
7263
|
end
|
7250
7264
|
|
@@ -9039,10 +9053,10 @@ module TencentCloud
|
|
9039
9053
|
|
9040
9054
|
attr_accessor :ServiceGroupId, :ServiceId, :ServiceGroupName, :ServiceDescription, :ServiceInfo, :ClusterId, :Region, :Namespace, :ChargeType, :ResourceGroupId, :ResourceGroupName, :Tags, :IngressName, :CreatedBy, :CreateTime, :UpdateTime, :Uin, :SubUin, :AppId, :BusinessStatus, :ServiceLimit, :ScheduledAction, :CreateFailedReason, :Status, :BillingInfo, :Weight, :CreateSource, :Version, :LatestVersion, :ResourceGroupSWType
|
9041
9055
|
extend Gem::Deprecate
|
9042
|
-
deprecate :ServiceLimit, :none, 2024,
|
9043
|
-
deprecate :ServiceLimit=, :none, 2024,
|
9044
|
-
deprecate :ScheduledAction, :none, 2024,
|
9045
|
-
deprecate :ScheduledAction=, :none, 2024,
|
9056
|
+
deprecate :ServiceLimit, :none, 2024, 4
|
9057
|
+
deprecate :ServiceLimit=, :none, 2024, 4
|
9058
|
+
deprecate :ScheduledAction, :none, 2024, 4
|
9059
|
+
deprecate :ScheduledAction=, :none, 2024, 4
|
9046
9060
|
|
9047
9061
|
def initialize(servicegroupid=nil, serviceid=nil, servicegroupname=nil, servicedescription=nil, serviceinfo=nil, clusterid=nil, region=nil, namespace=nil, chargetype=nil, resourcegroupid=nil, resourcegroupname=nil, tags=nil, ingressname=nil, createdby=nil, createtime=nil, updatetime=nil, uin=nil, subuin=nil, appid=nil, businessstatus=nil, servicelimit=nil, scheduledaction=nil, createfailedreason=nil, status=nil, billinginfo=nil, weight=nil, createsource=nil, version=nil, latestversion=nil, resourcegroupswtype=nil)
|
9048
9062
|
@ServiceGroupId = servicegroupid
|
@@ -9500,10 +9514,10 @@ module TencentCloud
|
|
9500
9514
|
|
9501
9515
|
attr_accessor :Replicas, :ImageInfo, :Env, :Resources, :InstanceType, :ModelInfo, :LogEnable, :LogConfig, :AuthorizationEnable, :HorizontalPodAutoscaler, :Status, :Weight, :ResourceTotal, :OldReplicas, :HybridBillingPrepaidReplicas, :OldHybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :ScaleMode, :CronScaleJobs, :ScaleStrategy, :ScheduledAction, :PodList, :Pods, :PodInfos, :ServiceLimit, :ModelTurboEnable, :VolumeMount, :InferCodeInfo, :Command, :ServiceEIP
|
9502
9516
|
extend Gem::Deprecate
|
9503
|
-
deprecate :PodList, :none, 2024,
|
9504
|
-
deprecate :PodList=, :none, 2024,
|
9505
|
-
deprecate :Pods, :none, 2024,
|
9506
|
-
deprecate :Pods=, :none, 2024,
|
9517
|
+
deprecate :PodList, :none, 2024, 4
|
9518
|
+
deprecate :PodList=, :none, 2024, 4
|
9519
|
+
deprecate :Pods, :none, 2024, 4
|
9520
|
+
deprecate :Pods=, :none, 2024, 4
|
9507
9521
|
|
9508
9522
|
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, resourcetotal=nil, oldreplicas=nil, hybridbillingprepaidreplicas=nil, oldhybridbillingprepaidreplicas=nil, modelhotupdateenable=nil, scalemode=nil, cronscalejobs=nil, scalestrategy=nil, scheduledaction=nil, podlist=nil, pods=nil, podinfos=nil, servicelimit=nil, modelturboenable=nil, volumemount=nil, infercodeinfo=nil, command=nil, serviceeip=nil)
|
9509
9523
|
@Replicas = replicas
|
@@ -11103,8 +11117,8 @@ module TencentCloud
|
|
11103
11117
|
|
11104
11118
|
attr_accessor :Replicas, :UpdatedReplicas, :ReadyReplicas, :AvailableReplicas, :UnavailableReplicas, :Status, :StatefulSetCondition, :Conditions, :Reason
|
11105
11119
|
extend Gem::Deprecate
|
11106
|
-
deprecate :StatefulSetCondition, :none, 2024,
|
11107
|
-
deprecate :StatefulSetCondition=, :none, 2024,
|
11120
|
+
deprecate :StatefulSetCondition, :none, 2024, 4
|
11121
|
+
deprecate :StatefulSetCondition=, :none, 2024, 4
|
11108
11122
|
|
11109
11123
|
def initialize(replicas=nil, updatedreplicas=nil, readyreplicas=nil, availablereplicas=nil, unavailablereplicas=nil, status=nil, statefulsetcondition=nil, conditions=nil, reason=nil)
|
11110
11124
|
@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.800
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|