tencentcloud-sdk-monitor 3.0.944 → 3.0.945

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180724/models.rb +11 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e8fc6744b7a8d4b87fd5749ac55c104b761e2093
4
- data.tar.gz: 7374706b661b16efac89826653771667a99ccf26
3
+ metadata.gz: b6ca3a2b4b7c1468cce76c7a9a6d9b358205794c
4
+ data.tar.gz: bdb9b27cc411e3c9809830c9d05ab3bc3c79e052
5
5
  SHA512:
6
- metadata.gz: 006bdc1c701e0fb4beff488ae4da1abab2d1d51a94e31d82c0aa8f3eccfd3932ff4273f8c9e4d2a18c4f4c2b7c20b34a0b5333fe96aad9126254f7adc951c6da
7
- data.tar.gz: 3e23f4625737dad624b8405579fa9790a06df0efc73394a8d3adbf155c4faf5a04ba77b109c5ac8538dfc75fe5484ea20fc197b089d893acde5568a84cb7e1bf
6
+ metadata.gz: bf5bbe6159798f411c12d35b79e0cd609752c57086d6a9e4c5a6720d96403114ca24c168bd301286be3b446ddcc6619894e7fbc0ded5e3234311a4d346d4b232
7
+ data.tar.gz: 40d8b55da01057f96a69f7aed5c5d1c98ae19b5849a539a50d3af405b3f00f7ee93df8e1a5c616784c4c69659bde764a9c9843af8fc1517d8a8c04f1fd19a331
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.944
1
+ 3.0.945
@@ -12033,24 +12033,26 @@ module TencentCloud
12033
12033
  # @type Region: String
12034
12034
  # @param ClusterType: 集群类型。可填入tke、eks、tkeedge、tdcc,分别代表标准集群、弹性集群、边缘集群、注册集群
12035
12035
  # @type ClusterType: String
12036
- # @param ClusterId: 集群ID
12036
+ # @param ClusterId: 集群 ID
12037
12037
  # @type ClusterId: String
12038
- # @param EnableExternal: 是否开启公网CLB
12038
+ # @param EnableExternal: 是否开启公网 CLB
12039
12039
  # @type EnableExternal: Boolean
12040
- # @param InClusterPodConfig: 集群内部署组件的pod配置
12040
+ # @param InClusterPodConfig: 集群内部署组件的pod 配置
12041
12041
  # @type InClusterPodConfig: :class:`Tencentcloud::Monitor.v20180724.models.PrometheusClusterAgentPodConfig`
12042
12042
  # @param ExternalLabels: 该集群采集的所有指标都会带上这些labels
12043
12043
  # @type ExternalLabels: Array
12044
- # @param NotInstallBasicScrape: 是否安装默认采集配置
12044
+ # @param NotInstallBasicScrape: 是否安装默认采集 exporter 和采集配置
12045
12045
  # @type NotInstallBasicScrape: Boolean
12046
- # @param NotScrape: 是否采集指标,true代表drop所有指标,false代表采集默认指标
12046
+ # @param NotScrape: 是否安装采集配置,true 只安装采集 exporter 不会安装采集配置,false 会同时安装采集配置
12047
12047
  # @type NotScrape: Boolean
12048
+ # @param DropAll: 是否丢弃所有指标,true 代表丢弃所有指标,false 代表采集默认指标
12049
+ # @type DropAll: Boolean
12048
12050
  # @param OpenDefaultRecord: 是否开启默认预聚合规则
12049
12051
  # @type OpenDefaultRecord: Boolean
12050
12052
 
12051
- attr_accessor :Region, :ClusterType, :ClusterId, :EnableExternal, :InClusterPodConfig, :ExternalLabels, :NotInstallBasicScrape, :NotScrape, :OpenDefaultRecord
12053
+ attr_accessor :Region, :ClusterType, :ClusterId, :EnableExternal, :InClusterPodConfig, :ExternalLabels, :NotInstallBasicScrape, :NotScrape, :DropAll, :OpenDefaultRecord
12052
12054
 
12053
- def initialize(region=nil, clustertype=nil, clusterid=nil, enableexternal=nil, inclusterpodconfig=nil, externallabels=nil, notinstallbasicscrape=nil, notscrape=nil, opendefaultrecord=nil)
12055
+ def initialize(region=nil, clustertype=nil, clusterid=nil, enableexternal=nil, inclusterpodconfig=nil, externallabels=nil, notinstallbasicscrape=nil, notscrape=nil, dropall=nil, opendefaultrecord=nil)
12054
12056
  @Region = region
12055
12057
  @ClusterType = clustertype
12056
12058
  @ClusterId = clusterid
@@ -12059,6 +12061,7 @@ module TencentCloud
12059
12061
  @ExternalLabels = externallabels
12060
12062
  @NotInstallBasicScrape = notinstallbasicscrape
12061
12063
  @NotScrape = notscrape
12064
+ @DropAll = dropall
12062
12065
  @OpenDefaultRecord = opendefaultrecord
12063
12066
  end
12064
12067
 
@@ -12081,6 +12084,7 @@ module TencentCloud
12081
12084
  end
12082
12085
  @NotInstallBasicScrape = params['NotInstallBasicScrape']
12083
12086
  @NotScrape = params['NotScrape']
12087
+ @DropAll = params['DropAll']
12084
12088
  @OpenDefaultRecord = params['OpenDefaultRecord']
12085
12089
  end
12086
12090
  end
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.944
4
+ version: 3.0.945
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-11-20 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common