tencentcloud-sdk-tsf 3.0.961 → 3.0.962
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180326/client.rb +2 -2
- data/lib/v20180326/models.rb +53 -22
- 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: caf0793c8ea139b5134c1e5fdda69188b36b7569
|
4
|
+
data.tar.gz: d1a78e749af700490f72bb715a215e3258daca08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c7d98dc4a38f3df5e679ff0d337ef31e2a8873273ef1f39293f5df1441f2bf5cdccf686ded82187289228b1dffac988254e2283639da13920044239d4b7df08
|
7
|
+
data.tar.gz: d2fe702a393e5debd60546ae1ff29109fe9ba8784d426feb95d3a0c3c96daaa89ea1d52c9229b73fe361fb90c8879a1fd3feb39d21bbb25479ffb07e528ef4e0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.962
|
data/lib/v20180326/client.rb
CHANGED
@@ -2097,7 +2097,7 @@ module TencentCloud
|
|
2097
2097
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2098
2098
|
end
|
2099
2099
|
|
2100
|
-
#
|
2100
|
+
# 获取部署组详情
|
2101
2101
|
|
2102
2102
|
# @param request: Request instance for DescribeContainerGroupDeployInfo.
|
2103
2103
|
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeContainerGroupDeployInfoRequest`
|
@@ -2121,7 +2121,7 @@ module TencentCloud
|
|
2121
2121
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2122
2122
|
end
|
2123
2123
|
|
2124
|
-
#
|
2124
|
+
# 容器部署组详情(已废弃,请使用 DescribeContainerGroupDeployInfo)
|
2125
2125
|
|
2126
2126
|
# @param request: Request instance for DescribeContainerGroupDetail.
|
2127
2127
|
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeContainerGroupDetailRequest`
|
data/lib/v20180326/models.rb
CHANGED
@@ -208,6 +208,7 @@ module TencentCloud
|
|
208
208
|
# 高级选项设置
|
209
209
|
class AdvanceSettings < TencentCloud::Common::AbstractModel
|
210
210
|
# @param SubTaskConcurrency: 子任务单机并发数限制,默认值为2
|
211
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
211
212
|
# @type SubTaskConcurrency: Integer
|
212
213
|
|
213
214
|
attr_accessor :SubTaskConcurrency
|
@@ -223,10 +224,10 @@ module TencentCloud
|
|
223
224
|
|
224
225
|
# 亲和规则
|
225
226
|
class Affinity < TencentCloud::Common::AbstractModel
|
226
|
-
# @param Scope:
|
227
|
+
# @param Scope: 亲和性范围
|
227
228
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
228
229
|
# @type Scope: String
|
229
|
-
# @param Weight:
|
230
|
+
# @param Weight: 亲和规则的权重
|
230
231
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
231
232
|
# @type Weight: String
|
232
233
|
# @param Paths: -
|
@@ -859,19 +860,29 @@ module TencentCloud
|
|
859
860
|
# @param GroupCount: 应用下部署组个数
|
860
861
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
861
862
|
# @type GroupCount: Integer
|
863
|
+
# @param RunningGroupCount: 运行中部署组个数
|
864
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
865
|
+
# @type RunningGroupCount: String
|
866
|
+
# @param AbnormalCount: 异常部署组个数
|
867
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
868
|
+
# @type AbnormalCount: String
|
862
869
|
|
863
|
-
attr_accessor :InstanceCount, :RunInstanceCount, :GroupCount
|
870
|
+
attr_accessor :InstanceCount, :RunInstanceCount, :GroupCount, :RunningGroupCount, :AbnormalCount
|
864
871
|
|
865
|
-
def initialize(instancecount=nil, runinstancecount=nil, groupcount=nil)
|
872
|
+
def initialize(instancecount=nil, runinstancecount=nil, groupcount=nil, runninggroupcount=nil, abnormalcount=nil)
|
866
873
|
@InstanceCount = instancecount
|
867
874
|
@RunInstanceCount = runinstancecount
|
868
875
|
@GroupCount = groupcount
|
876
|
+
@RunningGroupCount = runninggroupcount
|
877
|
+
@AbnormalCount = abnormalcount
|
869
878
|
end
|
870
879
|
|
871
880
|
def deserialize(params)
|
872
881
|
@InstanceCount = params['InstanceCount']
|
873
882
|
@RunInstanceCount = params['RunInstanceCount']
|
874
883
|
@GroupCount = params['GroupCount']
|
884
|
+
@RunningGroupCount = params['RunningGroupCount']
|
885
|
+
@AbnormalCount = params['AbnormalCount']
|
875
886
|
end
|
876
887
|
end
|
877
888
|
|
@@ -2628,10 +2639,13 @@ module TencentCloud
|
|
2628
2639
|
# @param InternalContainerList: 内部容器列表
|
2629
2640
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2630
2641
|
# @type InternalContainerList: Array
|
2642
|
+
# @param ServiceSettingList: service列表
|
2643
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2644
|
+
# @type ServiceSettingList: Array
|
2631
2645
|
|
2632
|
-
attr_accessor :GroupId, :GroupName, :InstanceNum, :CurrentNum, :Server, :Reponame, :TagName, :CpuRequest, :CpuLimit, :MemRequest, :MemLimit, :AccessType, :ProtocolPorts, :UpdateType, :UpdateIvl, :JvmOpts, :SubnetId, :AgentCpuRequest, :AgentCpuLimit, :AgentMemRequest, :AgentMemLimit, :IstioCpuRequest, :IstioCpuLimit, :IstioMemRequest, :IstioMemLimit, :Envs, :HealthCheckSettings, :DeployAgent, :Alias, :DisableService, :HeadlessService, :TcrRepoInfo, :VolumeInfos, :VolumeMountInfos, :KubeInjectEnable, :RepoType, :WarmupSetting, :GatewayConfig, :ContainerName, :AdditionalContainerList, :InternalContainerList
|
2646
|
+
attr_accessor :GroupId, :GroupName, :InstanceNum, :CurrentNum, :Server, :Reponame, :TagName, :CpuRequest, :CpuLimit, :MemRequest, :MemLimit, :AccessType, :ProtocolPorts, :UpdateType, :UpdateIvl, :JvmOpts, :SubnetId, :AgentCpuRequest, :AgentCpuLimit, :AgentMemRequest, :AgentMemLimit, :IstioCpuRequest, :IstioCpuLimit, :IstioMemRequest, :IstioMemLimit, :Envs, :HealthCheckSettings, :DeployAgent, :Alias, :DisableService, :HeadlessService, :TcrRepoInfo, :VolumeInfos, :VolumeMountInfos, :KubeInjectEnable, :RepoType, :WarmupSetting, :GatewayConfig, :ContainerName, :AdditionalContainerList, :InternalContainerList, :ServiceSettingList
|
2633
2647
|
|
2634
|
-
def initialize(groupid=nil, groupname=nil, instancenum=nil, currentnum=nil, server=nil, reponame=nil, tagname=nil, cpurequest=nil, cpulimit=nil, memrequest=nil, memlimit=nil, accesstype=nil, protocolports=nil, updatetype=nil, updateivl=nil, jvmopts=nil, subnetid=nil, agentcpurequest=nil, agentcpulimit=nil, agentmemrequest=nil, agentmemlimit=nil, istiocpurequest=nil, istiocpulimit=nil, istiomemrequest=nil, istiomemlimit=nil, envs=nil, healthchecksettings=nil, deployagent=nil, _alias=nil, disableservice=nil, headlessservice=nil, tcrrepoinfo=nil, volumeinfos=nil, volumemountinfos=nil, kubeinjectenable=nil, repotype=nil, warmupsetting=nil, gatewayconfig=nil, containername=nil, additionalcontainerlist=nil, internalcontainerlist=nil)
|
2648
|
+
def initialize(groupid=nil, groupname=nil, instancenum=nil, currentnum=nil, server=nil, reponame=nil, tagname=nil, cpurequest=nil, cpulimit=nil, memrequest=nil, memlimit=nil, accesstype=nil, protocolports=nil, updatetype=nil, updateivl=nil, jvmopts=nil, subnetid=nil, agentcpurequest=nil, agentcpulimit=nil, agentmemrequest=nil, agentmemlimit=nil, istiocpurequest=nil, istiocpulimit=nil, istiomemrequest=nil, istiomemlimit=nil, envs=nil, healthchecksettings=nil, deployagent=nil, _alias=nil, disableservice=nil, headlessservice=nil, tcrrepoinfo=nil, volumeinfos=nil, volumemountinfos=nil, kubeinjectenable=nil, repotype=nil, warmupsetting=nil, gatewayconfig=nil, containername=nil, additionalcontainerlist=nil, internalcontainerlist=nil, servicesettinglist=nil)
|
2635
2649
|
@GroupId = groupid
|
2636
2650
|
@GroupName = groupname
|
2637
2651
|
@InstanceNum = instancenum
|
@@ -2673,6 +2687,7 @@ module TencentCloud
|
|
2673
2687
|
@ContainerName = containername
|
2674
2688
|
@AdditionalContainerList = additionalcontainerlist
|
2675
2689
|
@InternalContainerList = internalcontainerlist
|
2690
|
+
@ServiceSettingList = servicesettinglist
|
2676
2691
|
end
|
2677
2692
|
|
2678
2693
|
def deserialize(params)
|
@@ -2771,6 +2786,14 @@ module TencentCloud
|
|
2771
2786
|
@InternalContainerList << groupcontainerinfo_tmp
|
2772
2787
|
end
|
2773
2788
|
end
|
2789
|
+
unless params['ServiceSettingList'].nil?
|
2790
|
+
@ServiceSettingList = []
|
2791
|
+
params['ServiceSettingList'].each do |i|
|
2792
|
+
servicesetting_tmp = ServiceSetting.new
|
2793
|
+
servicesetting_tmp.deserialize(i)
|
2794
|
+
@ServiceSettingList << servicesetting_tmp
|
2795
|
+
end
|
2796
|
+
end
|
2774
2797
|
end
|
2775
2798
|
end
|
2776
2799
|
|
@@ -3465,13 +3488,18 @@ module TencentCloud
|
|
3465
3488
|
# @type ServiceConfigList: Array
|
3466
3489
|
# @param IgnoreCreateImageRepository: 忽略创建镜像仓库
|
3467
3490
|
# @type IgnoreCreateImageRepository: Boolean
|
3468
|
-
# @param ProgramIdList:
|
3491
|
+
# @param ProgramIdList: 数据集id列表
|
3469
3492
|
# @type ProgramIdList: Array
|
3470
3493
|
# @param ApmInstanceId: apm业务系统id
|
3471
3494
|
# @type ApmInstanceId: String
|
3472
|
-
# @param ProgramLanguage:
|
3495
|
+
# @param ProgramLanguage: 编程语言;
|
3496
|
+
# J - JAVA;
|
3497
|
+
# C - C/C++;
|
3498
|
+
# P - Python;
|
3499
|
+
# G - Go;
|
3500
|
+
# O - Other;
|
3473
3501
|
# @type ProgramLanguage: String
|
3474
|
-
# @param FrameworkType:
|
3502
|
+
# @param FrameworkType: 开发框架-SpringCloud/Dubbo/Go-GRPC/Other
|
3475
3503
|
# @type FrameworkType: String
|
3476
3504
|
# @param ServiceGovernanceConfig: 注册配置治理
|
3477
3505
|
# @type ServiceGovernanceConfig: :class:`Tencentcloud::Tsf.v20180326.models.ServiceGovernanceConfig`
|
@@ -3922,7 +3950,9 @@ module TencentCloud
|
|
3922
3950
|
# @type CpuRequest: String
|
3923
3951
|
# @param MemRequest: 初始分配的内存 MiB 数,对应 K8S request
|
3924
3952
|
# @type MemRequest: String
|
3925
|
-
# @param GroupResourceType:
|
3953
|
+
# @param GroupResourceType: 部署组资源类型;
|
3954
|
+
# DEF — 默认资源类型;
|
3955
|
+
# GW — 网关资源类型;
|
3926
3956
|
# @type GroupResourceType: String
|
3927
3957
|
# @param SubnetId: 子网ID
|
3928
3958
|
# @type SubnetId: String
|
@@ -4247,7 +4277,7 @@ module TencentCloud
|
|
4247
4277
|
# @type ClusterId: String
|
4248
4278
|
# @param GroupDesc: 部署组描述
|
4249
4279
|
# @type GroupDesc: String
|
4250
|
-
# @param GroupResourceType:
|
4280
|
+
# @param GroupResourceType: 部署组资源类型;DEF 表示默认资源类型;GW 表示网关资源类型
|
4251
4281
|
# @type GroupResourceType: String
|
4252
4282
|
# @param Alias: 部署组备注
|
4253
4283
|
# @type Alias: String
|
@@ -4531,11 +4561,11 @@ module TencentCloud
|
|
4531
4561
|
# @type NamespaceType: String
|
4532
4562
|
# @param NamespaceId: 命名空间ID
|
4533
4563
|
# @type NamespaceId: String
|
4534
|
-
# @param IsHaEnable:
|
4564
|
+
# @param IsHaEnable: 是否开启高可用,1 表示开启,0 表示不开启
|
4535
4565
|
# @type IsHaEnable: String
|
4536
4566
|
# @param ProgramId: 需要绑定的数据集ID
|
4537
4567
|
# @type ProgramId: String
|
4538
|
-
# @param ProgramIdList:
|
4568
|
+
# @param ProgramIdList: 需要绑定的数据集ID
|
4539
4569
|
# @type ProgramIdList: Array
|
4540
4570
|
|
4541
4571
|
attr_accessor :NamespaceName, :ClusterId, :NamespaceDesc, :NamespaceResourceType, :NamespaceType, :NamespaceId, :IsHaEnable, :ProgramId, :ProgramIdList
|
@@ -6483,13 +6513,15 @@ module TencentCloud
|
|
6483
6513
|
# @type WarmupSetting: :class:`Tencentcloud::Tsf.v20180326.models.WarmupSetting`
|
6484
6514
|
|
6485
6515
|
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
|
6516
|
+
extend Gem::Deprecate
|
6517
|
+
deprecate :Reponame, :none, 2024, 12
|
6518
|
+
deprecate :Reponame=, :none, 2024, 12
|
6486
6519
|
|
6487
|
-
def initialize(groupid=nil, tagname=nil, instancenum=nil, server=nil,
|
6520
|
+
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)
|
6488
6521
|
@GroupId = groupid
|
6489
6522
|
@TagName = tagname
|
6490
6523
|
@InstanceNum = instancenum
|
6491
6524
|
@Server = server
|
6492
|
-
@Reponame = reponame
|
6493
6525
|
@CpuLimit = cpulimit
|
6494
6526
|
@MemLimit = memlimit
|
6495
6527
|
@JvmOpts = jvmopts
|
@@ -6530,7 +6562,6 @@ module TencentCloud
|
|
6530
6562
|
@TagName = params['TagName']
|
6531
6563
|
@InstanceNum = params['InstanceNum']
|
6532
6564
|
@Server = params['Server']
|
6533
|
-
@Reponame = params['Reponame']
|
6534
6565
|
@CpuLimit = params['CpuLimit']
|
6535
6566
|
@MemLimit = params['MemLimit']
|
6536
6567
|
@JvmOpts = params['JvmOpts']
|
@@ -9469,9 +9500,9 @@ module TencentCloud
|
|
9469
9500
|
# @type EndTime: String
|
9470
9501
|
# @param Period: 查询时间粒度,单位秒可选值:60、3600、86400
|
9471
9502
|
# @type Period: Integer
|
9472
|
-
# @param MetricDimensions:
|
9503
|
+
# @param MetricDimensions: 查询指标维度,不能为空,支持 ServiceName, OperationName, PeerServiceName, PeerOperationName
|
9473
9504
|
# @type MetricDimensions: Array
|
9474
|
-
# @param Metrics:
|
9505
|
+
# @param Metrics: 查询指标名,不能为空.
|
9475
9506
|
# @type Metrics: Array
|
9476
9507
|
# @param Kind: 视图视角。可选值:SERVER, CLIENT。默认为SERVER
|
9477
9508
|
# @type Kind: String
|
@@ -9619,9 +9650,9 @@ module TencentCloud
|
|
9619
9650
|
# @type StartTime: String
|
9620
9651
|
# @param EndTime: 结束时间
|
9621
9652
|
# @type EndTime: String
|
9622
|
-
# @param MetricDimensionValues: 维度
|
9653
|
+
# @param MetricDimensionValues: 维度,并且 维度 key value 不能为空
|
9623
9654
|
# @type MetricDimensionValues: Array
|
9624
|
-
# @param Metrics:
|
9655
|
+
# @param Metrics: 指标,并且 key, value 不能为空
|
9625
9656
|
# @type Metrics: Array
|
9626
9657
|
# @param Kind: 调用视角。可选值:SERVER, CLIENT。默认为SERVER
|
9627
9658
|
# @type Kind: String
|
@@ -11036,7 +11067,7 @@ module TencentCloud
|
|
11036
11067
|
# @type Limit: Integer
|
11037
11068
|
# @param SearchWord: 对id和name进行关键词过滤
|
11038
11069
|
# @type SearchWord: String
|
11039
|
-
# @param DisableProgramAuthCheck:
|
11070
|
+
# @param DisableProgramAuthCheck: 是否关闭鉴权
|
11040
11071
|
# @type DisableProgramAuthCheck: Boolean
|
11041
11072
|
|
11042
11073
|
attr_accessor :ClusterIdList, :ClusterType, :Offset, :Limit, :SearchWord, :DisableProgramAuthCheck
|
@@ -11178,7 +11209,7 @@ module TencentCloud
|
|
11178
11209
|
# @type NamespaceName: String
|
11179
11210
|
# @param IsDefault: 通过是否是默认命名空间过滤,不传表示拉取全部命名空间。0:默认命名空间。1:非默认命名空间
|
11180
11211
|
# @type IsDefault: String
|
11181
|
-
# @param DisableProgramAuthCheck:
|
11212
|
+
# @param DisableProgramAuthCheck: 是否关闭鉴权查询
|
11182
11213
|
# @type DisableProgramAuthCheck: Boolean
|
11183
11214
|
|
11184
11215
|
attr_accessor :NamespaceIdList, :ClusterId, :Limit, :Offset, :NamespaceId, :NamespaceResourceTypeList, :SearchWord, :NamespaceTypeList, :NamespaceName, :IsDefault, :DisableProgramAuthCheck
|
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.962
|
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-12-
|
11
|
+
date: 2024-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|