tencentcloud-sdk-tsf 1.0.342 → 1.0.345
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/models.rb +27 -8
- 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: f0b5eccd5615024e44256d0024b6f7c9cb2fad07
|
4
|
+
data.tar.gz: 87a792e40207559bcdde48a0c09040c43561606a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ca87bdfafb9bc98b319428b60be6fd6ff1a920cca9fd6f01ecdc6add56d784a9fe018768acea26209db6f1f02ac0cb30a738bfd4aa2a078dec7b7437d23521d
|
7
|
+
data.tar.gz: c6423f101831a7c3c406141933233dd6d99192a9ce3475724b5a97d7023f8b82e559917f61f26567943551e73a1f3715ab0a672e9baff88631026845da990835
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.345
|
data/lib/v20180326/models.rb
CHANGED
@@ -5417,12 +5417,17 @@ module TencentCloud
|
|
5417
5417
|
|
5418
5418
|
# DescribeBasicResourceUsage请求参数结构体
|
5419
5419
|
class DescribeBasicResourceUsageRequest < TencentCloud::Common::AbstractModel
|
5420
|
+
# @param All: 是否无视权限查询全租户的,默认 true。注:无论 true 还是 false,PackageSpaceUsed 和 ConsulInstanceCount 都是全租户的
|
5421
|
+
# @type All: Boolean
|
5420
5422
|
|
5423
|
+
attr_accessor :All
|
5421
5424
|
|
5422
|
-
def initialize()
|
5425
|
+
def initialize(all=nil)
|
5426
|
+
@All = all
|
5423
5427
|
end
|
5424
5428
|
|
5425
5429
|
def deserialize(params)
|
5430
|
+
@All = params['All']
|
5426
5431
|
end
|
5427
5432
|
end
|
5428
5433
|
|
@@ -9129,10 +9134,12 @@ module TencentCloud
|
|
9129
9134
|
# @type BucketKey: String
|
9130
9135
|
# @param DbName: 数据库
|
9131
9136
|
# @type DbName: String
|
9137
|
+
# @param NamespaceIdList: 命名空间id数组
|
9138
|
+
# @type NamespaceIdList: Array
|
9132
9139
|
|
9133
|
-
attr_accessor :Type, :TimeStep, :Offset, :Limit, :NamespaceId, :OrderBy, :OrderType, :EndTime, :StartTime, :ServiceName, :SearchWord, :MetricDimensionValues, :BucketKey, :DbName
|
9140
|
+
attr_accessor :Type, :TimeStep, :Offset, :Limit, :NamespaceId, :OrderBy, :OrderType, :EndTime, :StartTime, :ServiceName, :SearchWord, :MetricDimensionValues, :BucketKey, :DbName, :NamespaceIdList
|
9134
9141
|
|
9135
|
-
def initialize(type=nil, timestep=nil, offset=nil, limit=nil, namespaceid=nil, orderby=nil, ordertype=nil, endtime=nil, starttime=nil, servicename=nil, searchword=nil, metricdimensionvalues=nil, bucketkey=nil, dbname=nil)
|
9142
|
+
def initialize(type=nil, timestep=nil, offset=nil, limit=nil, namespaceid=nil, orderby=nil, ordertype=nil, endtime=nil, starttime=nil, servicename=nil, searchword=nil, metricdimensionvalues=nil, bucketkey=nil, dbname=nil, namespaceidlist=nil)
|
9136
9143
|
@Type = type
|
9137
9144
|
@TimeStep = timestep
|
9138
9145
|
@Offset = offset
|
@@ -9147,6 +9154,7 @@ module TencentCloud
|
|
9147
9154
|
@MetricDimensionValues = metricdimensionvalues
|
9148
9155
|
@BucketKey = bucketkey
|
9149
9156
|
@DbName = dbname
|
9157
|
+
@NamespaceIdList = namespaceidlist
|
9150
9158
|
end
|
9151
9159
|
|
9152
9160
|
def deserialize(params)
|
@@ -9171,6 +9179,7 @@ module TencentCloud
|
|
9171
9179
|
end
|
9172
9180
|
@BucketKey = params['BucketKey']
|
9173
9181
|
@DbName = params['DbName']
|
9182
|
+
@NamespaceIdList = params['NamespaceIdList']
|
9174
9183
|
end
|
9175
9184
|
end
|
9176
9185
|
|
@@ -10838,7 +10847,7 @@ module TencentCloud
|
|
10838
10847
|
# @param PodId: 实例ID(对应到kubernetes的pod id)
|
10839
10848
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10840
10849
|
# @type PodId: String
|
10841
|
-
# @param Status:
|
10850
|
+
# @param Status: 实例状态,请参考后面的实例以及容器的状态定义。启动中(pod 未 ready):Starting;运行中:Running;异常:Abnormal;停止:Stopped;
|
10842
10851
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10843
10852
|
# @type Status: String
|
10844
10853
|
# @param Reason: 实例处于当前状态的原因,例如容器下载镜像失败
|
@@ -11636,10 +11645,13 @@ module TencentCloud
|
|
11636
11645
|
# @param AgentVersion: agent版本
|
11637
11646
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11638
11647
|
# @type AgentVersion: String
|
11648
|
+
# @param NodeInstanceId: 容器母机实例ID
|
11649
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11650
|
+
# @type NodeInstanceId: String
|
11639
11651
|
|
11640
|
-
attr_accessor :InstanceId, :InstanceName, :LanIp, :WanIp, :InstanceDesc, :ClusterId, :ClusterName, :InstanceStatus, :InstanceAvailableStatus, :ServiceInstanceStatus, :CountInTsf, :GroupId, :ApplicationId, :ApplicationName, :InstanceCreatedTime, :InstanceExpiredTime, :InstanceChargeType, :InstanceTotalCpu, :InstanceTotalMem, :InstanceUsedCpu, :InstanceUsedMem, :InstanceLimitCpu, :InstanceLimitMem, :InstancePkgVersion, :ClusterType, :RestrictState, :UpdateTime, :OperationState, :NamespaceId, :InstanceZoneId, :InstanceImportMode, :ApplicationType, :ApplicationResourceType, :ServiceSidecarStatus, :GroupName, :NamespaceName, :Reason, :AgentVersion
|
11652
|
+
attr_accessor :InstanceId, :InstanceName, :LanIp, :WanIp, :InstanceDesc, :ClusterId, :ClusterName, :InstanceStatus, :InstanceAvailableStatus, :ServiceInstanceStatus, :CountInTsf, :GroupId, :ApplicationId, :ApplicationName, :InstanceCreatedTime, :InstanceExpiredTime, :InstanceChargeType, :InstanceTotalCpu, :InstanceTotalMem, :InstanceUsedCpu, :InstanceUsedMem, :InstanceLimitCpu, :InstanceLimitMem, :InstancePkgVersion, :ClusterType, :RestrictState, :UpdateTime, :OperationState, :NamespaceId, :InstanceZoneId, :InstanceImportMode, :ApplicationType, :ApplicationResourceType, :ServiceSidecarStatus, :GroupName, :NamespaceName, :Reason, :AgentVersion, :NodeInstanceId
|
11641
11653
|
|
11642
|
-
def initialize(instanceid=nil, instancename=nil, lanip=nil, wanip=nil, instancedesc=nil, clusterid=nil, clustername=nil, instancestatus=nil, instanceavailablestatus=nil, serviceinstancestatus=nil, countintsf=nil, groupid=nil, applicationid=nil, applicationname=nil, instancecreatedtime=nil, instanceexpiredtime=nil, instancechargetype=nil, instancetotalcpu=nil, instancetotalmem=nil, instanceusedcpu=nil, instanceusedmem=nil, instancelimitcpu=nil, instancelimitmem=nil, instancepkgversion=nil, clustertype=nil, restrictstate=nil, updatetime=nil, operationstate=nil, namespaceid=nil, instancezoneid=nil, instanceimportmode=nil, applicationtype=nil, applicationresourcetype=nil, servicesidecarstatus=nil, groupname=nil, namespacename=nil, reason=nil, agentversion=nil)
|
11654
|
+
def initialize(instanceid=nil, instancename=nil, lanip=nil, wanip=nil, instancedesc=nil, clusterid=nil, clustername=nil, instancestatus=nil, instanceavailablestatus=nil, serviceinstancestatus=nil, countintsf=nil, groupid=nil, applicationid=nil, applicationname=nil, instancecreatedtime=nil, instanceexpiredtime=nil, instancechargetype=nil, instancetotalcpu=nil, instancetotalmem=nil, instanceusedcpu=nil, instanceusedmem=nil, instancelimitcpu=nil, instancelimitmem=nil, instancepkgversion=nil, clustertype=nil, restrictstate=nil, updatetime=nil, operationstate=nil, namespaceid=nil, instancezoneid=nil, instanceimportmode=nil, applicationtype=nil, applicationresourcetype=nil, servicesidecarstatus=nil, groupname=nil, namespacename=nil, reason=nil, agentversion=nil, nodeinstanceid=nil)
|
11643
11655
|
@InstanceId = instanceid
|
11644
11656
|
@InstanceName = instancename
|
11645
11657
|
@LanIp = lanip
|
@@ -11678,6 +11690,7 @@ module TencentCloud
|
|
11678
11690
|
@NamespaceName = namespacename
|
11679
11691
|
@Reason = reason
|
11680
11692
|
@AgentVersion = agentversion
|
11693
|
+
@NodeInstanceId = nodeinstanceid
|
11681
11694
|
end
|
11682
11695
|
|
11683
11696
|
def deserialize(params)
|
@@ -11719,6 +11732,7 @@ module TencentCloud
|
|
11719
11732
|
@NamespaceName = params['NamespaceName']
|
11720
11733
|
@Reason = params['Reason']
|
11721
11734
|
@AgentVersion = params['AgentVersion']
|
11735
|
+
@NodeInstanceId = params['NodeInstanceId']
|
11722
11736
|
end
|
11723
11737
|
end
|
11724
11738
|
|
@@ -12644,19 +12658,24 @@ module TencentCloud
|
|
12644
12658
|
# @param MetricDataValue: 指标值
|
12645
12659
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12646
12660
|
# @type MetricDataValue: String
|
12661
|
+
# @param DailyPercent: 日环比
|
12662
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12663
|
+
# @type DailyPercent: Float
|
12647
12664
|
|
12648
|
-
attr_accessor :MetricName, :MetricFunction, :MetricDataValue
|
12665
|
+
attr_accessor :MetricName, :MetricFunction, :MetricDataValue, :DailyPercent
|
12649
12666
|
|
12650
|
-
def initialize(metricname=nil, metricfunction=nil, metricdatavalue=nil)
|
12667
|
+
def initialize(metricname=nil, metricfunction=nil, metricdatavalue=nil, dailypercent=nil)
|
12651
12668
|
@MetricName = metricname
|
12652
12669
|
@MetricFunction = metricfunction
|
12653
12670
|
@MetricDataValue = metricdatavalue
|
12671
|
+
@DailyPercent = dailypercent
|
12654
12672
|
end
|
12655
12673
|
|
12656
12674
|
def deserialize(params)
|
12657
12675
|
@MetricName = params['MetricName']
|
12658
12676
|
@MetricFunction = params['MetricFunction']
|
12659
12677
|
@MetricDataValue = params['MetricDataValue']
|
12678
|
+
@DailyPercent = params['DailyPercent']
|
12660
12679
|
end
|
12661
12680
|
end
|
12662
12681
|
|
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: 1.0.
|
4
|
+
version: 1.0.345
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|