tencentcloud-sdk-tione 3.0.791 → 3.0.793
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 +58 -7
- 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: b58e29bc9a8a2a6d2d8f2595972f5b0d6901e13a
|
4
|
+
data.tar.gz: f6635e03164fafd1a83f10e4428847025c672768
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e74be88bbcd66e6e3dd55254a34d4d992717ec4dd1736eef686626a6442f793422ff3f001f9bb2008dd166aa60cee36ff20031144becf7e56b3b3ecc1014f1aa
|
7
|
+
data.tar.gz: 081033275fba43f42da8f89e950dc48ed675a9051a63329100964e340a80cba1d28cd97ee6357c749fcd9e5bb64743868272ce2faf8dd2f32d0f956c23bbf68c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.793
|
data/lib/v20211111/models.rb
CHANGED
@@ -1204,7 +1204,7 @@ module TencentCloud
|
|
1204
1204
|
# @type ServiceCategory: String
|
1205
1205
|
# @param Command: 服务的启动命令
|
1206
1206
|
# @type Command: String
|
1207
|
-
# @param ServiceEIP: 是否开启TIONE
|
1207
|
+
# @param ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
1208
1208
|
# @type ServiceEIP: :class:`Tencentcloud::Tione.v20211111.models.ServiceEIP`
|
1209
1209
|
|
1210
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
|
@@ -3512,12 +3512,24 @@ module TencentCloud
|
|
3512
3512
|
|
3513
3513
|
# DescribeBuildInImages请求参数结构体
|
3514
3514
|
class DescribeBuildInImagesRequest < TencentCloud::Common::AbstractModel
|
3515
|
+
# @param ImageFilters: 镜像过滤器
|
3516
|
+
# @type ImageFilters: Array
|
3515
3517
|
|
3518
|
+
attr_accessor :ImageFilters
|
3516
3519
|
|
3517
|
-
def initialize()
|
3520
|
+
def initialize(imagefilters=nil)
|
3521
|
+
@ImageFilters = imagefilters
|
3518
3522
|
end
|
3519
3523
|
|
3520
3524
|
def deserialize(params)
|
3525
|
+
unless params['ImageFilters'].nil?
|
3526
|
+
@ImageFilters = []
|
3527
|
+
params['ImageFilters'].each do |i|
|
3528
|
+
imagefilter_tmp = ImageFIlter.new
|
3529
|
+
imagefilter_tmp.deserialize(i)
|
3530
|
+
@ImageFilters << imagefilter_tmp
|
3531
|
+
end
|
3532
|
+
end
|
3521
3533
|
end
|
3522
3534
|
end
|
3523
3535
|
|
@@ -6051,6 +6063,30 @@ module TencentCloud
|
|
6051
6063
|
end
|
6052
6064
|
end
|
6053
6065
|
|
6066
|
+
# 镜像列表过滤
|
6067
|
+
class ImageFIlter < TencentCloud::Common::AbstractModel
|
6068
|
+
# @param Name: 过滤字段名称
|
6069
|
+
# @type Name: String
|
6070
|
+
# @param Values: 过滤值
|
6071
|
+
# @type Values: Array
|
6072
|
+
# @param Negative: 是否反选
|
6073
|
+
# @type Negative: Boolean
|
6074
|
+
|
6075
|
+
attr_accessor :Name, :Values, :Negative
|
6076
|
+
|
6077
|
+
def initialize(name=nil, values=nil, negative=nil)
|
6078
|
+
@Name = name
|
6079
|
+
@Values = values
|
6080
|
+
@Negative = negative
|
6081
|
+
end
|
6082
|
+
|
6083
|
+
def deserialize(params)
|
6084
|
+
@Name = params['Name']
|
6085
|
+
@Values = params['Values']
|
6086
|
+
@Negative = params['Negative']
|
6087
|
+
end
|
6088
|
+
end
|
6089
|
+
|
6054
6090
|
# 镜像描述信息
|
6055
6091
|
class ImageInfo < TencentCloud::Common::AbstractModel
|
6056
6092
|
# @param ImageType: 镜像类型:TCR为腾讯云TCR镜像; CCR为腾讯云TCR个人版镜像,PreSet为平台预置镜像
|
@@ -6069,16 +6105,20 @@ module TencentCloud
|
|
6069
6105
|
# @param ImageName: 镜像名称
|
6070
6106
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6071
6107
|
# @type ImageName: String
|
6108
|
+
# @param SupportDataPipeline: 是否支持数据构建
|
6109
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6110
|
+
# @type SupportDataPipeline: Boolean
|
6072
6111
|
|
6073
|
-
attr_accessor :ImageType, :ImageUrl, :RegistryRegion, :RegistryId, :AllowSaveAllContent, :ImageName
|
6112
|
+
attr_accessor :ImageType, :ImageUrl, :RegistryRegion, :RegistryId, :AllowSaveAllContent, :ImageName, :SupportDataPipeline
|
6074
6113
|
|
6075
|
-
def initialize(imagetype=nil, imageurl=nil, registryregion=nil, registryid=nil, allowsaveallcontent=nil, imagename=nil)
|
6114
|
+
def initialize(imagetype=nil, imageurl=nil, registryregion=nil, registryid=nil, allowsaveallcontent=nil, imagename=nil, supportdatapipeline=nil)
|
6076
6115
|
@ImageType = imagetype
|
6077
6116
|
@ImageUrl = imageurl
|
6078
6117
|
@RegistryRegion = registryregion
|
6079
6118
|
@RegistryId = registryid
|
6080
6119
|
@AllowSaveAllContent = allowsaveallcontent
|
6081
6120
|
@ImageName = imagename
|
6121
|
+
@SupportDataPipeline = supportdatapipeline
|
6082
6122
|
end
|
6083
6123
|
|
6084
6124
|
def deserialize(params)
|
@@ -6088,6 +6128,7 @@ module TencentCloud
|
|
6088
6128
|
@RegistryId = params['RegistryId']
|
6089
6129
|
@AllowSaveAllContent = params['AllowSaveAllContent']
|
6090
6130
|
@ImageName = params['ImageName']
|
6131
|
+
@SupportDataPipeline = params['SupportDataPipeline']
|
6091
6132
|
end
|
6092
6133
|
end
|
6093
6134
|
|
@@ -6292,10 +6333,16 @@ module TencentCloud
|
|
6292
6333
|
# @type SpecFeatures: Array
|
6293
6334
|
# @param CvmInstanceId: 纳管cvmid
|
6294
6335
|
# @type CvmInstanceId: String
|
6336
|
+
# @param ErrCode: 部署失败错误码
|
6337
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6338
|
+
# @type ErrCode: String
|
6339
|
+
# @param ErrMsg: 部署失败错误信息
|
6340
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6341
|
+
# @type ErrMsg: String
|
6295
6342
|
|
6296
|
-
attr_accessor :InstanceId, :UsedResource, :TotalResource, :InstanceStatus, :SubUin, :CreateTime, :ExpireTime, :AutoRenewFlag, :SpecId, :SpecAlias, :SpecFeatures, :CvmInstanceId
|
6343
|
+
attr_accessor :InstanceId, :UsedResource, :TotalResource, :InstanceStatus, :SubUin, :CreateTime, :ExpireTime, :AutoRenewFlag, :SpecId, :SpecAlias, :SpecFeatures, :CvmInstanceId, :ErrCode, :ErrMsg
|
6297
6344
|
|
6298
|
-
def initialize(instanceid=nil, usedresource=nil, totalresource=nil, instancestatus=nil, subuin=nil, createtime=nil, expiretime=nil, autorenewflag=nil, specid=nil, specalias=nil, specfeatures=nil, cvminstanceid=nil)
|
6345
|
+
def initialize(instanceid=nil, usedresource=nil, totalresource=nil, instancestatus=nil, subuin=nil, createtime=nil, expiretime=nil, autorenewflag=nil, specid=nil, specalias=nil, specfeatures=nil, cvminstanceid=nil, errcode=nil, errmsg=nil)
|
6299
6346
|
@InstanceId = instanceid
|
6300
6347
|
@UsedResource = usedresource
|
6301
6348
|
@TotalResource = totalresource
|
@@ -6308,6 +6355,8 @@ module TencentCloud
|
|
6308
6355
|
@SpecAlias = specalias
|
6309
6356
|
@SpecFeatures = specfeatures
|
6310
6357
|
@CvmInstanceId = cvminstanceid
|
6358
|
+
@ErrCode = errcode
|
6359
|
+
@ErrMsg = errmsg
|
6311
6360
|
end
|
6312
6361
|
|
6313
6362
|
def deserialize(params)
|
@@ -6329,6 +6378,8 @@ module TencentCloud
|
|
6329
6378
|
@SpecAlias = params['SpecAlias']
|
6330
6379
|
@SpecFeatures = params['SpecFeatures']
|
6331
6380
|
@CvmInstanceId = params['CvmInstanceId']
|
6381
|
+
@ErrCode = params['ErrCode']
|
6382
|
+
@ErrMsg = params['ErrMsg']
|
6332
6383
|
end
|
6333
6384
|
end
|
6334
6385
|
|
@@ -7098,7 +7149,7 @@ module TencentCloud
|
|
7098
7149
|
# @type ModelTurboEnable: Boolean
|
7099
7150
|
# @param Command: 服务的启动命令
|
7100
7151
|
# @type Command: String
|
7101
|
-
# @param ServiceEIP: 是否开启TIONE
|
7152
|
+
# @param ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
7102
7153
|
# @type ServiceEIP: :class:`Tencentcloud::Tione.v20211111.models.ServiceEIP`
|
7103
7154
|
|
7104
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
|
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.793
|
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-03-
|
11
|
+
date: 2024-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|