tencentcloud-sdk-monitor 3.0.755 → 3.0.757
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/v20180724/models.rb +16 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73431f6ea36ced957a551c3501991fb34fd3284a
|
4
|
+
data.tar.gz: a3375fca30a6ae0071f02ac7dbf488d3cbd629bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42ec3156696e0aac2498dbfd98c3152b28e66edaa2f464d365aefd3a48dbf013668cf43f1dfb40e8c2a010f1972a5452c03af1af7a2df4e50d78461dddc2558f
|
7
|
+
data.tar.gz: 7461b7683dabbe43bd7073e4fb849410c266d562b7b98adfade367076e329257cb901343cf64414029c789e7b569eec5212099cc70927fc938f1a7ba0844b938
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.757
|
data/lib/v20180724/models.rb
CHANGED
@@ -7865,15 +7865,19 @@ module TencentCloud
|
|
7865
7865
|
# @param EksClusterId: 实例eks集群ID
|
7866
7866
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7867
7867
|
# @type EksClusterId: String
|
7868
|
+
# @param SecurityGroupId: eks集群内pod的安全组
|
7869
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7870
|
+
# @type SecurityGroupId: String
|
7868
7871
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
7869
7872
|
# @type RequestId: String
|
7870
7873
|
|
7871
|
-
attr_accessor :Status, :Steps, :EksClusterId, :RequestId
|
7874
|
+
attr_accessor :Status, :Steps, :EksClusterId, :SecurityGroupId, :RequestId
|
7872
7875
|
|
7873
|
-
def initialize(status=nil, steps=nil, eksclusterid=nil, requestid=nil)
|
7876
|
+
def initialize(status=nil, steps=nil, eksclusterid=nil, securitygroupid=nil, requestid=nil)
|
7874
7877
|
@Status = status
|
7875
7878
|
@Steps = steps
|
7876
7879
|
@EksClusterId = eksclusterid
|
7880
|
+
@SecurityGroupId = securitygroupid
|
7877
7881
|
@RequestId = requestid
|
7878
7882
|
end
|
7879
7883
|
|
@@ -7888,6 +7892,7 @@ module TencentCloud
|
|
7888
7892
|
end
|
7889
7893
|
end
|
7890
7894
|
@EksClusterId = params['EksClusterId']
|
7895
|
+
@SecurityGroupId = params['SecurityGroupId']
|
7891
7896
|
@RequestId = params['RequestId']
|
7892
7897
|
end
|
7893
7898
|
end
|
@@ -8739,7 +8744,8 @@ module TencentCloud
|
|
8739
8744
|
# @type Module: String
|
8740
8745
|
# @param Namespace: 命名空间,目前支持QCE/TKE2(Conditions必填),QCE/KEEWIDB,QCE/CAMP
|
8741
8746
|
# @type Namespace: String
|
8742
|
-
# @param MetricNames:
|
8747
|
+
# @param MetricNames: 指标名列表,相关指标信息可参考对应 云产品指标文档
|
8748
|
+
# https://cloud.tencent.com/document/product/248/62458
|
8743
8749
|
# @type MetricNames: Array
|
8744
8750
|
# @param Conditions: 维度条件,操作符支持=、in
|
8745
8751
|
# 配置文档参考:https://cloud.tencent.com/document/product/248/53821
|
@@ -11468,10 +11474,13 @@ module TencentCloud
|
|
11468
11474
|
# @param Name: agent名称
|
11469
11475
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11470
11476
|
# @type Name: String
|
11477
|
+
# @param EnableExternal: 是否已开启公网访问,true 开启,false 未开启
|
11478
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11479
|
+
# @type EnableExternal: Boolean
|
11471
11480
|
|
11472
|
-
attr_accessor :ClusterType, :ClusterId, :Status, :ClusterName, :ExternalLabels, :Region, :VpcId, :FailedReason, :Name
|
11481
|
+
attr_accessor :ClusterType, :ClusterId, :Status, :ClusterName, :ExternalLabels, :Region, :VpcId, :FailedReason, :Name, :EnableExternal
|
11473
11482
|
|
11474
|
-
def initialize(clustertype=nil, clusterid=nil, status=nil, clustername=nil, externallabels=nil, region=nil, vpcid=nil, failedreason=nil, name=nil)
|
11483
|
+
def initialize(clustertype=nil, clusterid=nil, status=nil, clustername=nil, externallabels=nil, region=nil, vpcid=nil, failedreason=nil, name=nil, enableexternal=nil)
|
11475
11484
|
@ClusterType = clustertype
|
11476
11485
|
@ClusterId = clusterid
|
11477
11486
|
@Status = status
|
@@ -11481,6 +11490,7 @@ module TencentCloud
|
|
11481
11490
|
@VpcId = vpcid
|
11482
11491
|
@FailedReason = failedreason
|
11483
11492
|
@Name = name
|
11493
|
+
@EnableExternal = enableexternal
|
11484
11494
|
end
|
11485
11495
|
|
11486
11496
|
def deserialize(params)
|
@@ -11500,6 +11510,7 @@ module TencentCloud
|
|
11500
11510
|
@VpcId = params['VpcId']
|
11501
11511
|
@FailedReason = params['FailedReason']
|
11502
11512
|
@Name = params['Name']
|
11513
|
+
@EnableExternal = params['EnableExternal']
|
11503
11514
|
end
|
11504
11515
|
end
|
11505
11516
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-monitor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.757
|
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-01-
|
11
|
+
date: 2024-01-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -34,8 +34,8 @@ extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
36
|
- lib/tencentcloud-sdk-monitor.rb
|
37
|
-
- lib/v20180724/client.rb
|
38
37
|
- lib/v20180724/models.rb
|
38
|
+
- lib/v20180724/client.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|