tencentcloud-sdk-tione 3.0.1160 → 3.0.1161
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 +84 -18
- 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: 9025d9fecc6612fa5bb0efb564383fb0c18859c4
|
|
4
|
+
data.tar.gz: 549cddcbd8bdaeb1cb49de4807303d6cb0ddccd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2edcdef82a189385a5fc78cae36421d308ec279897471fd3273ee8a3667d88ef1542aa9d2687f0d297625fced41de06c5f353b96f32987e9280bf1d5a0c046f8
|
|
7
|
+
data.tar.gz: 271b7d323a58429cc3b850d31765b10383eb96297226df4d81e75e212b683f40fb42a62e3566e09773a0f22e0c975787fe0e9c3ea6da5c49cd5310985e206e7c
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1161
|
data/lib/v20211111/models.rb
CHANGED
|
@@ -564,27 +564,72 @@ module TencentCloud
|
|
|
564
564
|
|
|
565
565
|
# CreateExport请求参数结构体
|
|
566
566
|
class CreateExportRequest < TencentCloud::Common::AbstractModel
|
|
567
|
+
# @param Service: 服务类型,TRAIN为任务式建模, NOTEBOOK为Notebook, INFER为在线服务, BATCH为批量预测枚举值:- TRAIN- NOTEBOOK- INFER- BATCH
|
|
568
|
+
# @type Service: String
|
|
569
|
+
# @param ServiceId: 服务ID,和Service参数对应,不同Service的服务ID获取方式不同,具体如下:- Service类型为TRAIN: 调用[DescribeTrainingTask接口](/document/product/851/75089)查询训练任务详情,ServiceId为接口返回值中Response.TrainingTaskDetail.LatestInstanceId- Service类型为NOTEBOOK: 调用[DescribeNotebook接口](/document/product/851/95662)查询Notebook详情,ServiceId为接口返回值中Response.NotebookDetail.PodName- Service类型为INFER: 调用[DescribeModelServiceGroup接口](/document/product/851/82285)查询服务组详情,ServiceId为接口返回值中Response.ServiceGroup.Services.ServiceId- Service类型为BATCH: 调用[DescribeBatchTask接口](/document/product/851/80180)查询跑批任务详情,ServiceId为接口返回值中Response.BatchTaskDetail.LatestInstanceId
|
|
570
|
+
# @type ServiceId: String
|
|
571
|
+
# @param StartTime: 日志查询开始时间(RFC3339格式的时间字符串),默认值为当前时间的前一个小时
|
|
572
|
+
# @type StartTime: String
|
|
573
|
+
# @param EndTime: 日志查询结束时间(RFC3339格式的时间字符串),开始时间和结束时间必须同时填或同时不填,默认值为当前时间
|
|
574
|
+
# @type EndTime: String
|
|
575
|
+
# @param Format: 日志导出数据格式。json,csv,默认为csv
|
|
576
|
+
# @type Format: String
|
|
577
|
+
# @param PodName: Pod的名称,即需要查询服务对应的Pod,和Service参数对应,不同Service的PodName获取方式不同,具体如下:- Service类型为TRAIN: 调用[DescribeTrainingTaskPods接口](/document/product/851/75088)查询训练任务pod列表,PodName为接口返回值中Response.PodNames- Service类型为NOTEBOOK: 调用[DescribeNotebook接口](/document/product/851/95662)查询Notebook详情,PodName为接口返回值中Response.NotebookDetail.PodName- Service类型为INFER: 调用[DescribeModelService接口](/document/product/851/82287)查询单个服务详情,PodName为接口返回值中Response.Service.ServiceInfo.PodInfos- Service类型为BATCH: 调用[DescribeBatchTask接口](/document/product/851/80180)查询跑批任务详情,PodName为接口返回值中Response.BatchTaskDetail. PodList注:支持结尾通配符*
|
|
578
|
+
# @type PodName: String
|
|
579
|
+
# @param JobCategory: 描述任务的类型
|
|
580
|
+
# @type JobCategory: String
|
|
581
|
+
# @param InstanceType: 实例的类型
|
|
582
|
+
# @type InstanceType: String
|
|
583
|
+
# @param InstanceId: 查实例Id
|
|
584
|
+
# @type InstanceId: String
|
|
585
|
+
# @param Type: 日志类型: PLATFORM_INIT, PLATFORM_SANITY_CHECK, USER
|
|
586
|
+
# @type Type: String
|
|
567
587
|
|
|
588
|
+
attr_accessor :Service, :ServiceId, :StartTime, :EndTime, :Format, :PodName, :JobCategory, :InstanceType, :InstanceId, :Type
|
|
568
589
|
|
|
569
|
-
def initialize()
|
|
590
|
+
def initialize(service=nil, serviceid=nil, starttime=nil, endtime=nil, format=nil, podname=nil, jobcategory=nil, instancetype=nil, instanceid=nil, type=nil)
|
|
591
|
+
@Service = service
|
|
592
|
+
@ServiceId = serviceid
|
|
593
|
+
@StartTime = starttime
|
|
594
|
+
@EndTime = endtime
|
|
595
|
+
@Format = format
|
|
596
|
+
@PodName = podname
|
|
597
|
+
@JobCategory = jobcategory
|
|
598
|
+
@InstanceType = instancetype
|
|
599
|
+
@InstanceId = instanceid
|
|
600
|
+
@Type = type
|
|
570
601
|
end
|
|
571
602
|
|
|
572
603
|
def deserialize(params)
|
|
604
|
+
@Service = params['Service']
|
|
605
|
+
@ServiceId = params['ServiceId']
|
|
606
|
+
@StartTime = params['StartTime']
|
|
607
|
+
@EndTime = params['EndTime']
|
|
608
|
+
@Format = params['Format']
|
|
609
|
+
@PodName = params['PodName']
|
|
610
|
+
@JobCategory = params['JobCategory']
|
|
611
|
+
@InstanceType = params['InstanceType']
|
|
612
|
+
@InstanceId = params['InstanceId']
|
|
613
|
+
@Type = params['Type']
|
|
573
614
|
end
|
|
574
615
|
end
|
|
575
616
|
|
|
576
617
|
# CreateExport返回参数结构体
|
|
577
618
|
class CreateExportResponse < TencentCloud::Common::AbstractModel
|
|
619
|
+
# @param ExportId: 日志下载任务的ID
|
|
620
|
+
# @type ExportId: String
|
|
578
621
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
579
622
|
# @type RequestId: String
|
|
580
623
|
|
|
581
|
-
attr_accessor :RequestId
|
|
624
|
+
attr_accessor :ExportId, :RequestId
|
|
582
625
|
|
|
583
|
-
def initialize(requestid=nil)
|
|
626
|
+
def initialize(exportid=nil, requestid=nil)
|
|
627
|
+
@ExportId = exportid
|
|
584
628
|
@RequestId = requestid
|
|
585
629
|
end
|
|
586
630
|
|
|
587
631
|
def deserialize(params)
|
|
632
|
+
@ExportId = params['ExportId']
|
|
588
633
|
@RequestId = params['RequestId']
|
|
589
634
|
end
|
|
590
635
|
end
|
|
@@ -3000,17 +3045,30 @@ module TencentCloud
|
|
|
3000
3045
|
|
|
3001
3046
|
# DescribeExport请求参数结构体
|
|
3002
3047
|
class DescribeExportRequest < TencentCloud::Common::AbstractModel
|
|
3048
|
+
# @param ExportId: 日志下载任务的ID
|
|
3049
|
+
# @type ExportId: String
|
|
3003
3050
|
|
|
3051
|
+
attr_accessor :ExportId
|
|
3004
3052
|
|
|
3005
|
-
def initialize()
|
|
3053
|
+
def initialize(exportid=nil)
|
|
3054
|
+
@ExportId = exportid
|
|
3006
3055
|
end
|
|
3007
3056
|
|
|
3008
3057
|
def deserialize(params)
|
|
3058
|
+
@ExportId = params['ExportId']
|
|
3009
3059
|
end
|
|
3010
3060
|
end
|
|
3011
3061
|
|
|
3012
3062
|
# DescribeExport返回参数结构体
|
|
3013
3063
|
class DescribeExportResponse < TencentCloud::Common::AbstractModel
|
|
3064
|
+
# @param ExportId: 日志下载任务的ID
|
|
3065
|
+
# @type ExportId: String
|
|
3066
|
+
# @param FileName: 日志下载文件名
|
|
3067
|
+
# @type FileName: String
|
|
3068
|
+
# @param CosPath: 日志导出路径,有效期一个小时,请尽快使用该路径下载。
|
|
3069
|
+
# @type CosPath: String
|
|
3070
|
+
# @param CreateTime: 下载任务创建时间
|
|
3071
|
+
# @type CreateTime: String
|
|
3014
3072
|
# @param FileSize: 日志文件大小
|
|
3015
3073
|
# @type FileSize: String
|
|
3016
3074
|
# @param Status: 日志下载状态。Processing:导出正在进行中,Completed:导出完成,Failed:导出失败,Expired:日志导出已过期(三天有效期), Queuing 排队中
|
|
@@ -3018,15 +3076,23 @@ module TencentCloud
|
|
|
3018
3076
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3019
3077
|
# @type RequestId: String
|
|
3020
3078
|
|
|
3021
|
-
attr_accessor :FileSize, :Status, :RequestId
|
|
3079
|
+
attr_accessor :ExportId, :FileName, :CosPath, :CreateTime, :FileSize, :Status, :RequestId
|
|
3022
3080
|
|
|
3023
|
-
def initialize(filesize=nil, status=nil, requestid=nil)
|
|
3081
|
+
def initialize(exportid=nil, filename=nil, cospath=nil, createtime=nil, filesize=nil, status=nil, requestid=nil)
|
|
3082
|
+
@ExportId = exportid
|
|
3083
|
+
@FileName = filename
|
|
3084
|
+
@CosPath = cospath
|
|
3085
|
+
@CreateTime = createtime
|
|
3024
3086
|
@FileSize = filesize
|
|
3025
3087
|
@Status = status
|
|
3026
3088
|
@RequestId = requestid
|
|
3027
3089
|
end
|
|
3028
3090
|
|
|
3029
3091
|
def deserialize(params)
|
|
3092
|
+
@ExportId = params['ExportId']
|
|
3093
|
+
@FileName = params['FileName']
|
|
3094
|
+
@CosPath = params['CosPath']
|
|
3095
|
+
@CreateTime = params['CreateTime']
|
|
3030
3096
|
@FileSize = params['FileSize']
|
|
3031
3097
|
@Status = params['Status']
|
|
3032
3098
|
@RequestId = params['RequestId']
|
|
@@ -6580,8 +6646,8 @@ module TencentCloud
|
|
|
6580
6646
|
|
|
6581
6647
|
attr_accessor :Name, :Uid, :ChargeType, :Phase, :IP, :CreateTime, :Containers, :ContainerInfos, :CrossTenantENIInfo, :Status, :StartScheduleTime, :Message, :NodeIP, :NodeId, :ResourceGroupId, :ResourceGroupName, :ResourceInfo
|
|
6582
6648
|
extend Gem::Deprecate
|
|
6583
|
-
deprecate :Containers, :none, 2025,
|
|
6584
|
-
deprecate :Containers=, :none, 2025,
|
|
6649
|
+
deprecate :Containers, :none, 2025, 11
|
|
6650
|
+
deprecate :Containers=, :none, 2025, 11
|
|
6585
6651
|
|
|
6586
6652
|
def initialize(name=nil, uid=nil, chargetype=nil, phase=nil, ip=nil, createtime=nil, containers=nil, containerinfos=nil, crosstenanteniinfo=nil, status=nil, startscheduletime=nil, message=nil, nodeip=nil, nodeid=nil, resourcegroupid=nil, resourcegroupname=nil, resourceinfo=nil)
|
|
6587
6653
|
@Name = name
|
|
@@ -7465,10 +7531,10 @@ module TencentCloud
|
|
|
7465
7531
|
|
|
7466
7532
|
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, :ArchiveStatus, :DeployType, :InstancePerReplicas, :MonitorSource, :SubUinName, :SchedulingPolicy, :ExternalResourceGroups
|
|
7467
7533
|
extend Gem::Deprecate
|
|
7468
|
-
deprecate :ServiceLimit, :none, 2025,
|
|
7469
|
-
deprecate :ServiceLimit=, :none, 2025,
|
|
7470
|
-
deprecate :ScheduledAction, :none, 2025,
|
|
7471
|
-
deprecate :ScheduledAction=, :none, 2025,
|
|
7534
|
+
deprecate :ServiceLimit, :none, 2025, 11
|
|
7535
|
+
deprecate :ServiceLimit=, :none, 2025, 11
|
|
7536
|
+
deprecate :ScheduledAction, :none, 2025, 11
|
|
7537
|
+
deprecate :ScheduledAction=, :none, 2025, 11
|
|
7472
7538
|
|
|
7473
7539
|
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, archivestatus=nil, deploytype=nil, instanceperreplicas=nil, monitorsource=nil, subuinname=nil, schedulingpolicy=nil, externalresourcegroups=nil)
|
|
7474
7540
|
@ServiceGroupId = servicegroupid
|
|
@@ -8014,10 +8080,10 @@ module TencentCloud
|
|
|
8014
8080
|
|
|
8015
8081
|
attr_accessor :Replicas, :ImageInfo, :Env, :Resources, :InstanceType, :ModelInfo, :LogEnable, :LogConfig, :AuthorizationEnable, :HorizontalPodAutoscaler, :Status, :Weight, :ResourceTotal, :OldReplicas, :HybridBillingPrepaidReplicas, :OldHybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :InstanceAlias, :ScaleMode, :CronScaleJobs, :ScaleStrategy, :ScheduledAction, :PodList, :Pods, :PodInfos, :ServiceLimit, :ModelTurboEnable, :VolumeMount, :InferCodeInfo, :Command, :ServiceEIP, :ServicePort, :TerminationGracePeriodSeconds, :PreStopCommand, :GrpcEnable, :HealthProbe, :RollingUpdate, :InstancePerReplicas, :VolumeMounts
|
|
8016
8082
|
extend Gem::Deprecate
|
|
8017
|
-
deprecate :PodList, :none, 2025,
|
|
8018
|
-
deprecate :PodList=, :none, 2025,
|
|
8019
|
-
deprecate :Pods, :none, 2025,
|
|
8020
|
-
deprecate :Pods=, :none, 2025,
|
|
8083
|
+
deprecate :PodList, :none, 2025, 11
|
|
8084
|
+
deprecate :PodList=, :none, 2025, 11
|
|
8085
|
+
deprecate :Pods, :none, 2025, 11
|
|
8086
|
+
deprecate :Pods=, :none, 2025, 11
|
|
8021
8087
|
|
|
8022
8088
|
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, instancealias=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, serviceport=nil, terminationgraceperiodseconds=nil, prestopcommand=nil, grpcenable=nil, healthprobe=nil, rollingupdate=nil, instanceperreplicas=nil, volumemounts=nil)
|
|
8023
8089
|
@Replicas = replicas
|
|
@@ -9287,8 +9353,8 @@ module TencentCloud
|
|
|
9287
9353
|
|
|
9288
9354
|
attr_accessor :Replicas, :UpdatedReplicas, :ReadyReplicas, :AvailableReplicas, :UnavailableReplicas, :Status, :StatefulSetCondition, :Conditions, :Reason
|
|
9289
9355
|
extend Gem::Deprecate
|
|
9290
|
-
deprecate :StatefulSetCondition, :none, 2025,
|
|
9291
|
-
deprecate :StatefulSetCondition=, :none, 2025,
|
|
9356
|
+
deprecate :StatefulSetCondition, :none, 2025, 11
|
|
9357
|
+
deprecate :StatefulSetCondition=, :none, 2025, 11
|
|
9292
9358
|
|
|
9293
9359
|
def initialize(replicas=nil, updatedreplicas=nil, readyreplicas=nil, availablereplicas=nil, unavailablereplicas=nil, status=nil, statefulsetcondition=nil, conditions=nil, reason=nil)
|
|
9294
9360
|
@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.1161
|
|
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-
|
|
11
|
+
date: 2025-11-04 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/v20211111/models.rb
|
|
37
|
-
- lib/v20211111/client.rb
|
|
38
36
|
- lib/tencentcloud-sdk-tione.rb
|
|
39
|
-
- lib/v20191022/models.rb
|
|
40
37
|
- lib/v20191022/client.rb
|
|
38
|
+
- lib/v20191022/models.rb
|
|
39
|
+
- lib/v20211111/client.rb
|
|
40
|
+
- lib/v20211111/models.rb
|
|
41
41
|
- lib/VERSION
|
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
43
43
|
licenses:
|