tencentcloud-sdk-tsf 3.0.1098 → 3.0.1117
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/v20180326/client.rb +72 -0
- data/lib/v20180326/models.rb +575 -16
- 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: fcbfee4f3bfe87f1f1bb9d8c923058815f288508
|
4
|
+
data.tar.gz: c4c64be909964c59f2850ba3dd12c61c4a791f17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c81ee801cf38a7d18c4da7e678cc2b700fe563c2043b551d77ea5b0fc85230dbe9af16ce8e7eefcca862c5a89a31cc2f9134553de3c85f635780056716b83568
|
7
|
+
data.tar.gz: c7912decc9055480fd1a94f39eda0b5a804159ee05e1358ced47a4891f1f277957efe8827661fbf1d297d4ed672637002dee6869c8e7ac6ab7bc9d781536991f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1117
|
data/lib/v20180326/client.rb
CHANGED
@@ -2990,6 +2990,54 @@ module TencentCloud
|
|
2990
2990
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2991
2991
|
end
|
2992
2992
|
|
2993
|
+
# 查询许可列表
|
2994
|
+
|
2995
|
+
# @param request: Request instance for DescribeLicenses.
|
2996
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeLicensesRequest`
|
2997
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeLicensesResponse`
|
2998
|
+
def DescribeLicenses(request)
|
2999
|
+
body = send_request('DescribeLicenses', request.serialize)
|
3000
|
+
response = JSON.parse(body)
|
3001
|
+
if response['Response'].key?('Error') == false
|
3002
|
+
model = DescribeLicensesResponse.new
|
3003
|
+
model.deserialize(response['Response'])
|
3004
|
+
model
|
3005
|
+
else
|
3006
|
+
code = response['Response']['Error']['Code']
|
3007
|
+
message = response['Response']['Error']['Message']
|
3008
|
+
reqid = response['Response']['RequestId']
|
3009
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3010
|
+
end
|
3011
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3012
|
+
raise e
|
3013
|
+
rescue StandardError => e
|
3014
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3015
|
+
end
|
3016
|
+
|
3017
|
+
# 获取用户日志使用量
|
3018
|
+
|
3019
|
+
# @param request: Request instance for DescribeLogCapacity.
|
3020
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeLogCapacityRequest`
|
3021
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeLogCapacityResponse`
|
3022
|
+
def DescribeLogCapacity(request)
|
3023
|
+
body = send_request('DescribeLogCapacity', request.serialize)
|
3024
|
+
response = JSON.parse(body)
|
3025
|
+
if response['Response'].key?('Error') == false
|
3026
|
+
model = DescribeLogCapacityResponse.new
|
3027
|
+
model.deserialize(response['Response'])
|
3028
|
+
model
|
3029
|
+
else
|
3030
|
+
code = response['Response']['Error']['Code']
|
3031
|
+
message = response['Response']['Error']['Message']
|
3032
|
+
reqid = response['Response']['RequestId']
|
3033
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3034
|
+
end
|
3035
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3036
|
+
raise e
|
3037
|
+
rescue StandardError => e
|
3038
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3039
|
+
end
|
3040
|
+
|
2993
3041
|
# 查询微服务详情
|
2994
3042
|
|
2995
3043
|
# @param request: Request instance for DescribeMicroservice.
|
@@ -3446,6 +3494,30 @@ module TencentCloud
|
|
3446
3494
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3447
3495
|
end
|
3448
3496
|
|
3497
|
+
# 无
|
3498
|
+
|
3499
|
+
# @param request: Request instance for DescribeResourceConfig.
|
3500
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeResourceConfigRequest`
|
3501
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeResourceConfigResponse`
|
3502
|
+
def DescribeResourceConfig(request)
|
3503
|
+
body = send_request('DescribeResourceConfig', request.serialize)
|
3504
|
+
response = JSON.parse(body)
|
3505
|
+
if response['Response'].key?('Error') == false
|
3506
|
+
model = DescribeResourceConfigResponse.new
|
3507
|
+
model.deserialize(response['Response'])
|
3508
|
+
model
|
3509
|
+
else
|
3510
|
+
code = response['Response']['Error']['Code']
|
3511
|
+
message = response['Response']['Error']['Message']
|
3512
|
+
reqid = response['Response']['RequestId']
|
3513
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3514
|
+
end
|
3515
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3516
|
+
raise e
|
3517
|
+
rescue StandardError => e
|
3518
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3519
|
+
end
|
3520
|
+
|
3449
3521
|
# 资源任务的执行状态描述接口
|
3450
3522
|
|
3451
3523
|
# @param request: Request instance for DescribeResourceTaskStatus.
|
data/lib/v20180326/models.rb
CHANGED
@@ -1324,8 +1324,8 @@ module TencentCloud
|
|
1324
1324
|
|
1325
1325
|
attr_accessor :ConfigId, :ConfigName, :ConfigPath, :ConfigDesc, :ConfigTags, :ConfigPipeline, :ConfigCreateTime, :ConfigUpdateTime, :ConfigSchema, :ConfigAssociatedGroups, :ConfigAssociatedGroupList, :FilebeatConfigEnable, :FilebeatCloseTimeout
|
1326
1326
|
extend Gem::Deprecate
|
1327
|
-
deprecate :ConfigAssociatedGroups, :none, 2025,
|
1328
|
-
deprecate :ConfigAssociatedGroups=, :none, 2025,
|
1327
|
+
deprecate :ConfigAssociatedGroups, :none, 2025, 8
|
1328
|
+
deprecate :ConfigAssociatedGroups=, :none, 2025, 8
|
1329
1329
|
|
1330
1330
|
def initialize(configid=nil, configname=nil, configpath=nil, configdesc=nil, configtags=nil, configpipeline=nil, configcreatetime=nil, configupdatetime=nil, configschema=nil, configassociatedgroups=nil, configassociatedgrouplist=nil, filebeatconfigenable=nil, filebeatclosetimeout=nil)
|
1331
1331
|
@ConfigId = configid
|
@@ -2376,6 +2376,56 @@ module TencentCloud
|
|
2376
2376
|
end
|
2377
2377
|
end
|
2378
2378
|
|
2379
|
+
# 应用使用容器部署时需要的额外资源
|
2380
|
+
class ContainerAdditionalResourceRequirement < TencentCloud::Common::AbstractModel
|
2381
|
+
# @param Cpu: CPU 核数
|
2382
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2383
|
+
# @type Cpu: String
|
2384
|
+
# @param Mem: 内存 MiB 数
|
2385
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2386
|
+
# @type Mem: String
|
2387
|
+
|
2388
|
+
attr_accessor :Cpu, :Mem
|
2389
|
+
|
2390
|
+
def initialize(cpu=nil, mem=nil)
|
2391
|
+
@Cpu = cpu
|
2392
|
+
@Mem = mem
|
2393
|
+
end
|
2394
|
+
|
2395
|
+
def deserialize(params)
|
2396
|
+
@Cpu = params['Cpu']
|
2397
|
+
@Mem = params['Mem']
|
2398
|
+
end
|
2399
|
+
end
|
2400
|
+
|
2401
|
+
# 不同类型的应用的容器部署组,部署时的额外资源要求
|
2402
|
+
class ContainerAdditionalResourceRequirementMap < TencentCloud::Common::AbstractModel
|
2403
|
+
# @param M: Mesh 应用部署时需要的额外资源
|
2404
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2405
|
+
# @type M: :class:`Tencentcloud::Tsf.v20180326.models.ContainerAdditionalResourceRequirement`
|
2406
|
+
# @param N: 普通应用部署时需要的额外资源
|
2407
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2408
|
+
# @type N: :class:`Tencentcloud::Tsf.v20180326.models.ContainerAdditionalResourceRequirement`
|
2409
|
+
|
2410
|
+
attr_accessor :M, :N
|
2411
|
+
|
2412
|
+
def initialize(m=nil, n=nil)
|
2413
|
+
@M = m
|
2414
|
+
@N = n
|
2415
|
+
end
|
2416
|
+
|
2417
|
+
def deserialize(params)
|
2418
|
+
unless params['M'].nil?
|
2419
|
+
@M = ContainerAdditionalResourceRequirement.new
|
2420
|
+
@M.deserialize(params['M'])
|
2421
|
+
end
|
2422
|
+
unless params['N'].nil?
|
2423
|
+
@N = ContainerAdditionalResourceRequirement.new
|
2424
|
+
@N.deserialize(params['N'])
|
2425
|
+
end
|
2426
|
+
end
|
2427
|
+
end
|
2428
|
+
|
2379
2429
|
# 返回容器的事件,比如 k8s deployment 或者 pod 的 events
|
2380
2430
|
class ContainerEvent < TencentCloud::Common::AbstractModel
|
2381
2431
|
# @param FirstTimestamp: 第一次出现的时间,以 ms 为单位的时间戳
|
@@ -2996,6 +3046,26 @@ module TencentCloud
|
|
2996
3046
|
end
|
2997
3047
|
end
|
2998
3048
|
|
3049
|
+
# 容器部署组相关的参数配置
|
3050
|
+
class ContainerGroupResourceConfig < TencentCloud::Common::AbstractModel
|
3051
|
+
# @param AdditionalResourceRequirement: 不同类型的应用的容器部署组,部署时的额外资源要求
|
3052
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3053
|
+
# @type AdditionalResourceRequirement: :class:`Tencentcloud::Tsf.v20180326.models.ContainerAdditionalResourceRequirementMap`
|
3054
|
+
|
3055
|
+
attr_accessor :AdditionalResourceRequirement
|
3056
|
+
|
3057
|
+
def initialize(additionalresourcerequirement=nil)
|
3058
|
+
@AdditionalResourceRequirement = additionalresourcerequirement
|
3059
|
+
end
|
3060
|
+
|
3061
|
+
def deserialize(params)
|
3062
|
+
unless params['AdditionalResourceRequirement'].nil?
|
3063
|
+
@AdditionalResourceRequirement = ContainerAdditionalResourceRequirementMap.new
|
3064
|
+
@AdditionalResourceRequirement.deserialize(params['AdditionalResourceRequirement'])
|
3065
|
+
end
|
3066
|
+
end
|
3067
|
+
end
|
3068
|
+
|
2999
3069
|
# 服务治理相关配置项
|
3000
3070
|
class ContainerGroupServiceGovernanceConfig < TencentCloud::Common::AbstractModel
|
3001
3071
|
# @param EnableGovernance: 是否开启服务治理
|
@@ -3223,6 +3293,33 @@ module TencentCloud
|
|
3223
3293
|
end
|
3224
3294
|
end
|
3225
3295
|
|
3296
|
+
# 容器实例相关的参数配置
|
3297
|
+
class ContainerInstanceResourceConfig < TencentCloud::Common::AbstractModel
|
3298
|
+
# @param ImportMode: 实例导入方式,可多个,公有云为 ["R"],独立版的取值有 "M" 脚本模式、"S" SSH 模式
|
3299
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3300
|
+
# @type ImportMode: Array
|
3301
|
+
# @param MasterNumLimit: SSH 模式时,前端应该限制用户填这个数量的 master 主机信息
|
3302
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3303
|
+
# @type MasterNumLimit: Integer
|
3304
|
+
# @param NodeNumLimitPerSetup: SSH 模式时,前端应该限制用户填的最高数量的 node 主机信息
|
3305
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3306
|
+
# @type NodeNumLimitPerSetup: Integer
|
3307
|
+
|
3308
|
+
attr_accessor :ImportMode, :MasterNumLimit, :NodeNumLimitPerSetup
|
3309
|
+
|
3310
|
+
def initialize(importmode=nil, masternumlimit=nil, nodenumlimitpersetup=nil)
|
3311
|
+
@ImportMode = importmode
|
3312
|
+
@MasterNumLimit = masternumlimit
|
3313
|
+
@NodeNumLimitPerSetup = nodenumlimitpersetup
|
3314
|
+
end
|
3315
|
+
|
3316
|
+
def deserialize(params)
|
3317
|
+
@ImportMode = params['ImportMode']
|
3318
|
+
@MasterNumLimit = params['MasterNumLimit']
|
3319
|
+
@NodeNumLimitPerSetup = params['NodeNumLimitPerSetup']
|
3320
|
+
end
|
3321
|
+
end
|
3322
|
+
|
3226
3323
|
# ContinueRunFailedTaskBatch请求参数结构体
|
3227
3324
|
class ContinueRunFailedTaskBatchRequest < TencentCloud::Common::AbstractModel
|
3228
3325
|
# @param BatchId: 批次ID。
|
@@ -3605,10 +3702,10 @@ module TencentCloud
|
|
3605
3702
|
|
3606
3703
|
attr_accessor :ApplicationName, :ApplicationType, :MicroserviceType, :ApplicationDesc, :ApplicationLogConfig, :ApplicationResourceType, :ApplicationRuntimeType, :ProgramId, :ServiceConfigList, :IgnoreCreateImageRepository, :ProgramIdList, :ApmInstanceId, :ProgramLanguage, :FrameworkType, :ServiceGovernanceConfig, :CreateSameNameImageRepository
|
3607
3704
|
extend Gem::Deprecate
|
3608
|
-
deprecate :ApplicationLogConfig, :none, 2025,
|
3609
|
-
deprecate :ApplicationLogConfig=, :none, 2025,
|
3610
|
-
deprecate :ApplicationResourceType, :none, 2025,
|
3611
|
-
deprecate :ApplicationResourceType=, :none, 2025,
|
3705
|
+
deprecate :ApplicationLogConfig, :none, 2025, 8
|
3706
|
+
deprecate :ApplicationLogConfig=, :none, 2025, 8
|
3707
|
+
deprecate :ApplicationResourceType, :none, 2025, 8
|
3708
|
+
deprecate :ApplicationResourceType=, :none, 2025, 8
|
3612
3709
|
|
3613
3710
|
def initialize(applicationname=nil, applicationtype=nil, microservicetype=nil, applicationdesc=nil, applicationlogconfig=nil, applicationresourcetype=nil, applicationruntimetype=nil, programid=nil, serviceconfiglist=nil, ignorecreateimagerepository=nil, programidlist=nil, apminstanceid=nil, programlanguage=nil, frameworktype=nil, servicegovernanceconfig=nil, createsamenameimagerepository=nil)
|
3614
3711
|
@ApplicationName = applicationname
|
@@ -6932,12 +7029,12 @@ module TencentCloud
|
|
6932
7029
|
|
6933
7030
|
attr_accessor :GroupId, :TagName, :InstanceNum, :Server, :Reponame, :CpuLimit, :MemLimit, :JvmOpts, :CpuRequest, :MemRequest, :DoNotStart, :RepoName, :UpdateType, :UpdateIvl, :AgentCpuRequest, :AgentCpuLimit, :AgentMemRequest, :AgentMemLimit, :IstioCpuRequest, :IstioCpuLimit, :IstioMemRequest, :IstioMemLimit, :MaxSurge, :MaxUnavailable, :HealthCheckSettings, :Envs, :ServiceSetting, :DeployAgent, :SchedulingStrategy, :IncrementalDeployment, :RepoType, :VolumeInfos, :VolumeMountInfos, :VolumeInfoList, :VolumeMountInfoList, :VolumeClean, :AgentProfileList, :WarmupSetting
|
6934
7031
|
extend Gem::Deprecate
|
6935
|
-
deprecate :Reponame, :none, 2025,
|
6936
|
-
deprecate :Reponame=, :none, 2025,
|
6937
|
-
deprecate :VolumeInfos, :none, 2025,
|
6938
|
-
deprecate :VolumeInfos=, :none, 2025,
|
6939
|
-
deprecate :VolumeMountInfos, :none, 2025,
|
6940
|
-
deprecate :VolumeMountInfos=, :none, 2025,
|
7032
|
+
deprecate :Reponame, :none, 2025, 8
|
7033
|
+
deprecate :Reponame=, :none, 2025, 8
|
7034
|
+
deprecate :VolumeInfos, :none, 2025, 8
|
7035
|
+
deprecate :VolumeInfos=, :none, 2025, 8
|
7036
|
+
deprecate :VolumeMountInfos, :none, 2025, 8
|
7037
|
+
deprecate :VolumeMountInfos=, :none, 2025, 8
|
6941
7038
|
|
6942
7039
|
def initialize(groupid=nil, tagname=nil, instancenum=nil, server=nil, cpulimit=nil, memlimit=nil, jvmopts=nil, cpurequest=nil, memrequest=nil, donotstart=nil, reponame=nil, updatetype=nil, updateivl=nil, agentcpurequest=nil, agentcpulimit=nil, agentmemrequest=nil, agentmemlimit=nil, istiocpurequest=nil, istiocpulimit=nil, istiomemrequest=nil, istiomemlimit=nil, maxsurge=nil, maxunavailable=nil, healthchecksettings=nil, envs=nil, servicesetting=nil, deployagent=nil, schedulingstrategy=nil, incrementaldeployment=nil, repotype=nil, volumeinfos=nil, volumemountinfos=nil, volumeinfolist=nil, volumemountinfolist=nil, volumeclean=nil, agentprofilelist=nil, warmupsetting=nil)
|
6943
7040
|
@GroupId = groupid
|
@@ -10358,6 +10455,85 @@ module TencentCloud
|
|
10358
10455
|
end
|
10359
10456
|
end
|
10360
10457
|
|
10458
|
+
# DescribeLicenses请求参数结构体
|
10459
|
+
class DescribeLicensesRequest < TencentCloud::Common::AbstractModel
|
10460
|
+
# @param Offset: 偏移量
|
10461
|
+
# @type Offset: Integer
|
10462
|
+
# @param Limit: 每页条数
|
10463
|
+
# @type Limit: Integer
|
10464
|
+
|
10465
|
+
attr_accessor :Offset, :Limit
|
10466
|
+
|
10467
|
+
def initialize(offset=nil, limit=nil)
|
10468
|
+
@Offset = offset
|
10469
|
+
@Limit = limit
|
10470
|
+
end
|
10471
|
+
|
10472
|
+
def deserialize(params)
|
10473
|
+
@Offset = params['Offset']
|
10474
|
+
@Limit = params['Limit']
|
10475
|
+
end
|
10476
|
+
end
|
10477
|
+
|
10478
|
+
# DescribeLicenses返回参数结构体
|
10479
|
+
class DescribeLicensesResponse < TencentCloud::Common::AbstractModel
|
10480
|
+
# @param Result: 许可标签列表分页信息
|
10481
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10482
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.TsfPageLicenseTag`
|
10483
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10484
|
+
# @type RequestId: String
|
10485
|
+
|
10486
|
+
attr_accessor :Result, :RequestId
|
10487
|
+
|
10488
|
+
def initialize(result=nil, requestid=nil)
|
10489
|
+
@Result = result
|
10490
|
+
@RequestId = requestid
|
10491
|
+
end
|
10492
|
+
|
10493
|
+
def deserialize(params)
|
10494
|
+
unless params['Result'].nil?
|
10495
|
+
@Result = TsfPageLicenseTag.new
|
10496
|
+
@Result.deserialize(params['Result'])
|
10497
|
+
end
|
10498
|
+
@RequestId = params['RequestId']
|
10499
|
+
end
|
10500
|
+
end
|
10501
|
+
|
10502
|
+
# DescribeLogCapacity请求参数结构体
|
10503
|
+
class DescribeLogCapacityRequest < TencentCloud::Common::AbstractModel
|
10504
|
+
|
10505
|
+
|
10506
|
+
def initialize()
|
10507
|
+
end
|
10508
|
+
|
10509
|
+
def deserialize(params)
|
10510
|
+
end
|
10511
|
+
end
|
10512
|
+
|
10513
|
+
# DescribeLogCapacity返回参数结构体
|
10514
|
+
class DescribeLogCapacityResponse < TencentCloud::Common::AbstractModel
|
10515
|
+
# @param UsedSpace: 使用日志容量大小
|
10516
|
+
# @type UsedSpace: Float
|
10517
|
+
# @param Capacity: 日志总容量大小
|
10518
|
+
# @type Capacity: Float
|
10519
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10520
|
+
# @type RequestId: String
|
10521
|
+
|
10522
|
+
attr_accessor :UsedSpace, :Capacity, :RequestId
|
10523
|
+
|
10524
|
+
def initialize(usedspace=nil, capacity=nil, requestid=nil)
|
10525
|
+
@UsedSpace = usedspace
|
10526
|
+
@Capacity = capacity
|
10527
|
+
@RequestId = requestid
|
10528
|
+
end
|
10529
|
+
|
10530
|
+
def deserialize(params)
|
10531
|
+
@UsedSpace = params['UsedSpace']
|
10532
|
+
@Capacity = params['Capacity']
|
10533
|
+
@RequestId = params['RequestId']
|
10534
|
+
end
|
10535
|
+
end
|
10536
|
+
|
10361
10537
|
# DescribeMicroservice请求参数结构体
|
10362
10538
|
class DescribeMicroserviceRequest < TencentCloud::Common::AbstractModel
|
10363
10539
|
# @param MicroserviceId: 微服务ID
|
@@ -11364,6 +11540,249 @@ module TencentCloud
|
|
11364
11540
|
end
|
11365
11541
|
end
|
11366
11542
|
|
11543
|
+
# 返回给前端的控制信息
|
11544
|
+
class DescribeResourceConfigCluster < TencentCloud::Common::AbstractModel
|
11545
|
+
# @param Container: 返回给前端的控制信息
|
11546
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11547
|
+
# @type Container: :class:`Tencentcloud::Tsf.v20180326.models.DescribeResourceConfigClusterContainer`
|
11548
|
+
|
11549
|
+
attr_accessor :Container
|
11550
|
+
|
11551
|
+
def initialize(container=nil)
|
11552
|
+
@Container = container
|
11553
|
+
end
|
11554
|
+
|
11555
|
+
def deserialize(params)
|
11556
|
+
unless params['Container'].nil?
|
11557
|
+
@Container = DescribeResourceConfigClusterContainer.new
|
11558
|
+
@Container.deserialize(params['Container'])
|
11559
|
+
end
|
11560
|
+
end
|
11561
|
+
end
|
11562
|
+
|
11563
|
+
# 返回给前端的控制信息
|
11564
|
+
class DescribeResourceConfigClusterContainer < TencentCloud::Common::AbstractModel
|
11565
|
+
# @param NeedSubnetWhenCreatingCluster: 是否需要子网
|
11566
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11567
|
+
# @type NeedSubnetWhenCreatingCluster: Boolean
|
11568
|
+
|
11569
|
+
attr_accessor :NeedSubnetWhenCreatingCluster
|
11570
|
+
|
11571
|
+
def initialize(needsubnetwhencreatingcluster=nil)
|
11572
|
+
@NeedSubnetWhenCreatingCluster = needsubnetwhencreatingcluster
|
11573
|
+
end
|
11574
|
+
|
11575
|
+
def deserialize(params)
|
11576
|
+
@NeedSubnetWhenCreatingCluster = params['NeedSubnetWhenCreatingCluster']
|
11577
|
+
end
|
11578
|
+
end
|
11579
|
+
|
11580
|
+
# DescribeResourceConfig
|
11581
|
+
class DescribeResourceConfigLicense < TencentCloud::Common::AbstractModel
|
11582
|
+
# @param Function: 功能
|
11583
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11584
|
+
# @type Function: Array
|
11585
|
+
# @param Resource: 资源
|
11586
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11587
|
+
# @type Resource: Array
|
11588
|
+
# @param ExpireTime: utc时间 单位秒
|
11589
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11590
|
+
# @type ExpireTime: Integer
|
11591
|
+
# @param Countdown: utc时间 单位秒
|
11592
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11593
|
+
# @type Countdown: Integer
|
11594
|
+
# @param Spec: 规格
|
11595
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11596
|
+
# @type Spec: String
|
11597
|
+
|
11598
|
+
attr_accessor :Function, :Resource, :ExpireTime, :Countdown, :Spec
|
11599
|
+
|
11600
|
+
def initialize(function=nil, resource=nil, expiretime=nil, countdown=nil, spec=nil)
|
11601
|
+
@Function = function
|
11602
|
+
@Resource = resource
|
11603
|
+
@ExpireTime = expiretime
|
11604
|
+
@Countdown = countdown
|
11605
|
+
@Spec = spec
|
11606
|
+
end
|
11607
|
+
|
11608
|
+
def deserialize(params)
|
11609
|
+
unless params['Function'].nil?
|
11610
|
+
@Function = []
|
11611
|
+
params['Function'].each do |i|
|
11612
|
+
describeresourceconfiglicensefunction_tmp = DescribeResourceConfigLicenseFunction.new
|
11613
|
+
describeresourceconfiglicensefunction_tmp.deserialize(i)
|
11614
|
+
@Function << describeresourceconfiglicensefunction_tmp
|
11615
|
+
end
|
11616
|
+
end
|
11617
|
+
unless params['Resource'].nil?
|
11618
|
+
@Resource = []
|
11619
|
+
params['Resource'].each do |i|
|
11620
|
+
describeresourceconfiglicenseresource_tmp = DescribeResourceConfigLicenseResource.new
|
11621
|
+
describeresourceconfiglicenseresource_tmp.deserialize(i)
|
11622
|
+
@Resource << describeresourceconfiglicenseresource_tmp
|
11623
|
+
end
|
11624
|
+
end
|
11625
|
+
@ExpireTime = params['ExpireTime']
|
11626
|
+
@Countdown = params['Countdown']
|
11627
|
+
@Spec = params['Spec']
|
11628
|
+
end
|
11629
|
+
end
|
11630
|
+
|
11631
|
+
# DescribeResourceConfig
|
11632
|
+
class DescribeResourceConfigLicenseFunction < TencentCloud::Common::AbstractModel
|
11633
|
+
# @param Name: name
|
11634
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11635
|
+
# @type Name: String
|
11636
|
+
# @param Enable: enable
|
11637
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11638
|
+
# @type Enable: Boolean
|
11639
|
+
|
11640
|
+
attr_accessor :Name, :Enable
|
11641
|
+
|
11642
|
+
def initialize(name=nil, enable=nil)
|
11643
|
+
@Name = name
|
11644
|
+
@Enable = enable
|
11645
|
+
end
|
11646
|
+
|
11647
|
+
def deserialize(params)
|
11648
|
+
@Name = params['Name']
|
11649
|
+
@Enable = params['Enable']
|
11650
|
+
end
|
11651
|
+
end
|
11652
|
+
|
11653
|
+
# DescribeResourceConfig
|
11654
|
+
class DescribeResourceConfigLicenseResource < TencentCloud::Common::AbstractModel
|
11655
|
+
# @param Name: Name
|
11656
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11657
|
+
# @type Name: String
|
11658
|
+
# @param Quota: Quota
|
11659
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11660
|
+
# @type Quota: Integer
|
11661
|
+
|
11662
|
+
attr_accessor :Name, :Quota
|
11663
|
+
|
11664
|
+
def initialize(name=nil, quota=nil)
|
11665
|
+
@Name = name
|
11666
|
+
@Quota = quota
|
11667
|
+
end
|
11668
|
+
|
11669
|
+
def deserialize(params)
|
11670
|
+
@Name = params['Name']
|
11671
|
+
@Quota = params['Quota']
|
11672
|
+
end
|
11673
|
+
end
|
11674
|
+
|
11675
|
+
# DescribeResourceConfig请求参数结构体
|
11676
|
+
class DescribeResourceConfigRequest < TencentCloud::Common::AbstractModel
|
11677
|
+
|
11678
|
+
|
11679
|
+
def initialize()
|
11680
|
+
end
|
11681
|
+
|
11682
|
+
def deserialize(params)
|
11683
|
+
end
|
11684
|
+
end
|
11685
|
+
|
11686
|
+
# DescribeResourceConfig返回参数结构体
|
11687
|
+
class DescribeResourceConfigResponse < TencentCloud::Common::AbstractModel
|
11688
|
+
# @param Result: 配置详情
|
11689
|
+
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.DescribeResourceConfigResultV2`
|
11690
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11691
|
+
# @type RequestId: String
|
11692
|
+
|
11693
|
+
attr_accessor :Result, :RequestId
|
11694
|
+
|
11695
|
+
def initialize(result=nil, requestid=nil)
|
11696
|
+
@Result = result
|
11697
|
+
@RequestId = requestid
|
11698
|
+
end
|
11699
|
+
|
11700
|
+
def deserialize(params)
|
11701
|
+
unless params['Result'].nil?
|
11702
|
+
@Result = DescribeResourceConfigResultV2.new
|
11703
|
+
@Result.deserialize(params['Result'])
|
11704
|
+
end
|
11705
|
+
@RequestId = params['RequestId']
|
11706
|
+
end
|
11707
|
+
end
|
11708
|
+
|
11709
|
+
# DescribeResourceConfig
|
11710
|
+
class DescribeResourceConfigResultV2 < TencentCloud::Common::AbstractModel
|
11711
|
+
# @param Sts: STS参数配置
|
11712
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11713
|
+
# @type Sts: :class:`Tencentcloud::Tsf.v20180326.models.DescribeResourceConfigSts`
|
11714
|
+
# @param License: 许可信息
|
11715
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11716
|
+
# @type License: :class:`Tencentcloud::Tsf.v20180326.models.DescribeResourceConfigLicense`
|
11717
|
+
# @param Group: 部署组相关的参数配置
|
11718
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11719
|
+
# @type Group: :class:`Tencentcloud::Tsf.v20180326.models.GroupResourceConfig`
|
11720
|
+
# @param Instance: 实例相关的参数配置
|
11721
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11722
|
+
# @type Instance: :class:`Tencentcloud::Tsf.v20180326.models.InstanceResourceConfig`
|
11723
|
+
# @param Cluster: Cluster相关配置信息
|
11724
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11725
|
+
# @type Cluster: :class:`Tencentcloud::Tsf.v20180326.models.DescribeResourceConfigCluster`
|
11726
|
+
# @param Package: 程序包相关配置信息
|
11727
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11728
|
+
# @type Package: :class:`Tencentcloud::Tsf.v20180326.models.PackageConfig`
|
11729
|
+
|
11730
|
+
attr_accessor :Sts, :License, :Group, :Instance, :Cluster, :Package
|
11731
|
+
|
11732
|
+
def initialize(sts=nil, license=nil, group=nil, instance=nil, cluster=nil, package=nil)
|
11733
|
+
@Sts = sts
|
11734
|
+
@License = license
|
11735
|
+
@Group = group
|
11736
|
+
@Instance = instance
|
11737
|
+
@Cluster = cluster
|
11738
|
+
@Package = package
|
11739
|
+
end
|
11740
|
+
|
11741
|
+
def deserialize(params)
|
11742
|
+
unless params['Sts'].nil?
|
11743
|
+
@Sts = DescribeResourceConfigSts.new
|
11744
|
+
@Sts.deserialize(params['Sts'])
|
11745
|
+
end
|
11746
|
+
unless params['License'].nil?
|
11747
|
+
@License = DescribeResourceConfigLicense.new
|
11748
|
+
@License.deserialize(params['License'])
|
11749
|
+
end
|
11750
|
+
unless params['Group'].nil?
|
11751
|
+
@Group = GroupResourceConfig.new
|
11752
|
+
@Group.deserialize(params['Group'])
|
11753
|
+
end
|
11754
|
+
unless params['Instance'].nil?
|
11755
|
+
@Instance = InstanceResourceConfig.new
|
11756
|
+
@Instance.deserialize(params['Instance'])
|
11757
|
+
end
|
11758
|
+
unless params['Cluster'].nil?
|
11759
|
+
@Cluster = DescribeResourceConfigCluster.new
|
11760
|
+
@Cluster.deserialize(params['Cluster'])
|
11761
|
+
end
|
11762
|
+
unless params['Package'].nil?
|
11763
|
+
@Package = PackageConfig.new
|
11764
|
+
@Package.deserialize(params['Package'])
|
11765
|
+
end
|
11766
|
+
end
|
11767
|
+
end
|
11768
|
+
|
11769
|
+
# DescribeResourceConfig
|
11770
|
+
class DescribeResourceConfigSts < TencentCloud::Common::AbstractModel
|
11771
|
+
# @param Uin: uin
|
11772
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11773
|
+
# @type Uin: String
|
11774
|
+
|
11775
|
+
attr_accessor :Uin
|
11776
|
+
|
11777
|
+
def initialize(uin=nil)
|
11778
|
+
@Uin = uin
|
11779
|
+
end
|
11780
|
+
|
11781
|
+
def deserialize(params)
|
11782
|
+
@Uin = params['Uin']
|
11783
|
+
end
|
11784
|
+
end
|
11785
|
+
|
11367
11786
|
# DescribeResourceTaskStatus请求参数结构体
|
11368
11787
|
class DescribeResourceTaskStatusRequest < TencentCloud::Common::AbstractModel
|
11369
11788
|
# @param TaskId: 任务ID
|
@@ -13927,6 +14346,26 @@ module TencentCloud
|
|
13927
14346
|
end
|
13928
14347
|
end
|
13929
14348
|
|
14349
|
+
# 部署组相关的参数配置
|
14350
|
+
class GroupResourceConfig < TencentCloud::Common::AbstractModel
|
14351
|
+
# @param Container: 容器部署组相关的参数配置
|
14352
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14353
|
+
# @type Container: :class:`Tencentcloud::Tsf.v20180326.models.ContainerGroupResourceConfig`
|
14354
|
+
|
14355
|
+
attr_accessor :Container
|
14356
|
+
|
14357
|
+
def initialize(container=nil)
|
14358
|
+
@Container = container
|
14359
|
+
end
|
14360
|
+
|
14361
|
+
def deserialize(params)
|
14362
|
+
unless params['Container'].nil?
|
14363
|
+
@Container = ContainerGroupResourceConfig.new
|
14364
|
+
@Container.deserialize(params['Container'])
|
14365
|
+
end
|
14366
|
+
end
|
14367
|
+
end
|
14368
|
+
|
13930
14369
|
# 单元化API使用详情统计对象列表
|
13931
14370
|
class GroupUnitApiDailyUseStatistics < TencentCloud::Common::AbstractModel
|
13932
14371
|
# @param NamespaceId: 命名空间ID
|
@@ -14238,8 +14677,8 @@ module TencentCloud
|
|
14238
14677
|
|
14239
14678
|
attr_accessor :Reponame, :Repotype, :TagCount, :IsPublic, :IsUserFavor, :IsQcloudOfficial, :FavorCount, :PullCount, :Description, :CreationTime, :UpdateTime, :TcrRepoInfo, :TcrBindingId, :ApplicationId, :ApplicationName, :ApplicationNameReal, :Public, :CreateMode, :RepoName, :RepoType
|
14240
14679
|
extend Gem::Deprecate
|
14241
|
-
deprecate :ApplicationName, :none, 2025,
|
14242
|
-
deprecate :ApplicationName=, :none, 2025,
|
14680
|
+
deprecate :ApplicationName, :none, 2025, 8
|
14681
|
+
deprecate :ApplicationName=, :none, 2025, 8
|
14243
14682
|
|
14244
14683
|
def initialize(reponame=nil, repotype=nil, tagcount=nil, ispublic=nil, isuserfavor=nil, isqcloudofficial=nil, favorcount=nil, pullcount=nil, description=nil, creationtime=nil, updatetime=nil, tcrrepoinfo=nil, tcrbindingid=nil, applicationid=nil, applicationname=nil, applicationnamereal=nil, public=nil, createmode=nil, reponame=nil, repotype=nil)
|
14245
14684
|
@Reponame = reponame
|
@@ -14793,6 +15232,34 @@ module TencentCloud
|
|
14793
15232
|
end
|
14794
15233
|
end
|
14795
15234
|
|
15235
|
+
# 实例相关的参数配置
|
15236
|
+
class InstanceResourceConfig < TencentCloud::Common::AbstractModel
|
15237
|
+
# @param Container: 容器实例相关的参数配置
|
15238
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15239
|
+
# @type Container: :class:`Tencentcloud::Tsf.v20180326.models.ContainerInstanceResourceConfig`
|
15240
|
+
# @param Vm: 虚拟机实例相关的参数配置
|
15241
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15242
|
+
# @type Vm: :class:`Tencentcloud::Tsf.v20180326.models.VmInstanceResourceConfig`
|
15243
|
+
|
15244
|
+
attr_accessor :Container, :Vm
|
15245
|
+
|
15246
|
+
def initialize(container=nil, vm=nil)
|
15247
|
+
@Container = container
|
15248
|
+
@Vm = vm
|
15249
|
+
end
|
15250
|
+
|
15251
|
+
def deserialize(params)
|
15252
|
+
unless params['Container'].nil?
|
15253
|
+
@Container = ContainerInstanceResourceConfig.new
|
15254
|
+
@Container.deserialize(params['Container'])
|
15255
|
+
end
|
15256
|
+
unless params['Vm'].nil?
|
15257
|
+
@Vm = VmInstanceResourceConfig.new
|
15258
|
+
@Vm.deserialize(params['Vm'])
|
15259
|
+
end
|
15260
|
+
end
|
15261
|
+
end
|
15262
|
+
|
14796
15263
|
# 服务调用监控指标
|
14797
15264
|
class InvocationIndicator < TencentCloud::Common::AbstractModel
|
14798
15265
|
# @param InvocationQuantity: 总请求数
|
@@ -15412,6 +15879,35 @@ module TencentCloud
|
|
15412
15879
|
end
|
15413
15880
|
end
|
15414
15881
|
|
15882
|
+
# 许可标签
|
15883
|
+
class LicenseTag < TencentCloud::Common::AbstractModel
|
15884
|
+
# @param LicenseId: 许可ID
|
15885
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15886
|
+
# @type LicenseId: String
|
15887
|
+
# @param Tags: 标签列表
|
15888
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15889
|
+
# @type Tags: Array
|
15890
|
+
|
15891
|
+
attr_accessor :LicenseId, :Tags
|
15892
|
+
|
15893
|
+
def initialize(licenseid=nil, tags=nil)
|
15894
|
+
@LicenseId = licenseid
|
15895
|
+
@Tags = tags
|
15896
|
+
end
|
15897
|
+
|
15898
|
+
def deserialize(params)
|
15899
|
+
@LicenseId = params['LicenseId']
|
15900
|
+
unless params['Tags'].nil?
|
15901
|
+
@Tags = []
|
15902
|
+
params['Tags'].each do |i|
|
15903
|
+
tag_tmp = Tag.new
|
15904
|
+
tag_tmp.deserialize(i)
|
15905
|
+
@Tags << tag_tmp
|
15906
|
+
end
|
15907
|
+
end
|
15908
|
+
end
|
15909
|
+
end
|
15910
|
+
|
15415
15911
|
# LifeCycleHook
|
15416
15912
|
class LifeCycleHook < TencentCloud::Common::AbstractModel
|
15417
15913
|
# @param HookType: 生命周期函数类型:PostStart|PreStop
|
@@ -16981,6 +17477,23 @@ module TencentCloud
|
|
16981
17477
|
end
|
16982
17478
|
end
|
16983
17479
|
|
17480
|
+
# 程序包相关配置信息
|
17481
|
+
class PackageConfig < TencentCloud::Common::AbstractModel
|
17482
|
+
# @param SpaceSize: 程序包存储空间大小,单位字节
|
17483
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17484
|
+
# @type SpaceSize: Integer
|
17485
|
+
|
17486
|
+
attr_accessor :SpaceSize
|
17487
|
+
|
17488
|
+
def initialize(spacesize=nil)
|
17489
|
+
@SpaceSize = spacesize
|
17490
|
+
end
|
17491
|
+
|
17492
|
+
def deserialize(params)
|
17493
|
+
@SpaceSize = params['SpaceSize']
|
17494
|
+
end
|
17495
|
+
end
|
17496
|
+
|
16984
17497
|
# tsf-privilege模块,分页数据集列表
|
16985
17498
|
class PagedProgram < TencentCloud::Common::AbstractModel
|
16986
17499
|
# @param TotalCount: 总条数
|
@@ -19772,8 +20285,8 @@ module TencentCloud
|
|
19772
20285
|
|
19773
20286
|
attr_accessor :ThreadCount, :ThreadActive, :DeamonThreadCount, :DaemonThreadCount
|
19774
20287
|
extend Gem::Deprecate
|
19775
|
-
deprecate :DeamonThreadCount, :none, 2025,
|
19776
|
-
deprecate :DeamonThreadCount=, :none, 2025,
|
20288
|
+
deprecate :DeamonThreadCount, :none, 2025, 8
|
20289
|
+
deprecate :DeamonThreadCount=, :none, 2025, 8
|
19777
20290
|
|
19778
20291
|
def initialize(threadcount=nil, threadactive=nil, deamonthreadcount=nil, daemonthreadcount=nil)
|
19779
20292
|
@ThreadCount = threadcount
|
@@ -20404,6 +20917,35 @@ module TencentCloud
|
|
20404
20917
|
end
|
20405
20918
|
end
|
20406
20919
|
|
20920
|
+
# LicenseTag 翻页对象
|
20921
|
+
class TsfPageLicenseTag < TencentCloud::Common::AbstractModel
|
20922
|
+
# @param TotalCount: 记录总数
|
20923
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
20924
|
+
# @type TotalCount: Integer
|
20925
|
+
# @param Content: 记录实体列表
|
20926
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
20927
|
+
# @type Content: Array
|
20928
|
+
|
20929
|
+
attr_accessor :TotalCount, :Content
|
20930
|
+
|
20931
|
+
def initialize(totalcount=nil, content=nil)
|
20932
|
+
@TotalCount = totalcount
|
20933
|
+
@Content = content
|
20934
|
+
end
|
20935
|
+
|
20936
|
+
def deserialize(params)
|
20937
|
+
@TotalCount = params['TotalCount']
|
20938
|
+
unless params['Content'].nil?
|
20939
|
+
@Content = []
|
20940
|
+
params['Content'].each do |i|
|
20941
|
+
licensetag_tmp = LicenseTag.new
|
20942
|
+
licensetag_tmp.deserialize(i)
|
20943
|
+
@Content << licensetag_tmp
|
20944
|
+
end
|
20945
|
+
end
|
20946
|
+
end
|
20947
|
+
end
|
20948
|
+
|
20407
20949
|
# 微服务列表信息
|
20408
20950
|
class TsfPageMicroservice < TencentCloud::Common::AbstractModel
|
20409
20951
|
# @param TotalCount: 微服务总数目
|
@@ -21798,6 +22340,23 @@ module TencentCloud
|
|
21798
22340
|
end
|
21799
22341
|
end
|
21800
22342
|
|
22343
|
+
# 虚拟机实例相关的参数配置
|
22344
|
+
class VmInstanceResourceConfig < TencentCloud::Common::AbstractModel
|
22345
|
+
# @param ImportMode: 实例导入方式,可多个,公有云为 ["R", "M"],独立版的取值仅有 "M" 脚本模式
|
22346
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22347
|
+
# @type ImportMode: Array
|
22348
|
+
|
22349
|
+
attr_accessor :ImportMode
|
22350
|
+
|
22351
|
+
def initialize(importmode=nil)
|
22352
|
+
@ImportMode = importmode
|
22353
|
+
end
|
22354
|
+
|
22355
|
+
def deserialize(params)
|
22356
|
+
@ImportMode = params['ImportMode']
|
22357
|
+
end
|
22358
|
+
end
|
22359
|
+
|
21801
22360
|
# 容器卷挂载信息
|
21802
22361
|
class VolumeInfo < TencentCloud::Common::AbstractModel
|
21803
22362
|
# @param VolumeType: 数据卷类型
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tsf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1117
|
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-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|