tencentcloud-sdk-cls 3.0.770 → 3.0.772
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/v20201016/models.rb +26 -13
- 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: 31bbb3ef8498e39fbcfc2dbbafaa208f35bab48a
|
4
|
+
data.tar.gz: 31b5105c970a20c23025125d02391539d0200269
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8c778d57eaad3966ca7a8df522a57ba3cb571575bb898a53664df45155a010e74181a4483972332d5ac8e3d4f4a1a4776d0bce25c1441b9101621b02e9d4670
|
7
|
+
data.tar.gz: 7d1a16dd44bd606e495fec3554e07e345333d3507c2b3805897936580f57fe64bd5478f852e7351549e725d81802f3effb7550543eaf71768f46781612934f37
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.772
|
data/lib/v20201016/models.rb
CHANGED
@@ -2487,14 +2487,16 @@ module TencentCloud
|
|
2487
2487
|
# @type UpdateEndTime: String
|
2488
2488
|
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
2489
2489
|
# @type ServiceLogging: Boolean
|
2490
|
+
# @param DelayCleanupTime: 机器组中机器离线清理时间
|
2491
|
+
# @type DelayCleanupTime: Integer
|
2490
2492
|
# @param MetaTags: 机器组元数据信息列表
|
2491
2493
|
# @type MetaTags: Array
|
2492
2494
|
# @param OSType: 系统类型,默认0,0:Linux,1: Windows
|
2493
2495
|
# @type OSType: Integer
|
2494
2496
|
|
2495
|
-
attr_accessor :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :MetaTags, :OSType
|
2497
|
+
attr_accessor :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :DelayCleanupTime, :MetaTags, :OSType
|
2496
2498
|
|
2497
|
-
def initialize(groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, metatags=nil, ostype=nil)
|
2499
|
+
def initialize(groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, delaycleanuptime=nil, metatags=nil, ostype=nil)
|
2498
2500
|
@GroupName = groupname
|
2499
2501
|
@MachineGroupType = machinegrouptype
|
2500
2502
|
@Tags = tags
|
@@ -2502,6 +2504,7 @@ module TencentCloud
|
|
2502
2504
|
@UpdateStartTime = updatestarttime
|
2503
2505
|
@UpdateEndTime = updateendtime
|
2504
2506
|
@ServiceLogging = servicelogging
|
2507
|
+
@DelayCleanupTime = delaycleanuptime
|
2505
2508
|
@MetaTags = metatags
|
2506
2509
|
@OSType = ostype
|
2507
2510
|
end
|
@@ -2524,6 +2527,7 @@ module TencentCloud
|
|
2524
2527
|
@UpdateStartTime = params['UpdateStartTime']
|
2525
2528
|
@UpdateEndTime = params['UpdateEndTime']
|
2526
2529
|
@ServiceLogging = params['ServiceLogging']
|
2530
|
+
@DelayCleanupTime = params['DelayCleanupTime']
|
2527
2531
|
unless params['MetaTags'].nil?
|
2528
2532
|
@MetaTags = []
|
2529
2533
|
params['MetaTags'].each do |i|
|
@@ -5428,9 +5432,9 @@ module TencentCloud
|
|
5428
5432
|
end
|
5429
5433
|
end
|
5430
5434
|
|
5431
|
-
#
|
5435
|
+
# 键值索引自动配置,启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。
|
5432
5436
|
class DynamicIndex < TencentCloud::Common::AbstractModel
|
5433
|
-
# @param Status:
|
5437
|
+
# @param Status: 键值索引自动配置开关
|
5434
5438
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5435
5439
|
# @type Status: Boolean
|
5436
5440
|
|
@@ -6552,14 +6556,17 @@ module TencentCloud
|
|
6552
6556
|
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
6553
6557
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6554
6558
|
# @type ServiceLogging: Boolean
|
6559
|
+
# @param DelayCleanupTime: 机器组中机器离线定期清理时间
|
6560
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6561
|
+
# @type DelayCleanupTime: Integer
|
6555
6562
|
# @param MetaTags: 机器组元数据信息列表
|
6556
6563
|
# @type MetaTags: Array
|
6557
6564
|
# @param OSType: 操作系统类型,0: Linux,1: windows
|
6558
6565
|
# @type OSType: Integer
|
6559
6566
|
|
6560
|
-
attr_accessor :GroupId, :GroupName, :MachineGroupType, :CreateTime, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :MetaTags, :OSType
|
6567
|
+
attr_accessor :GroupId, :GroupName, :MachineGroupType, :CreateTime, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :DelayCleanupTime, :MetaTags, :OSType
|
6561
6568
|
|
6562
|
-
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, createtime=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, metatags=nil, ostype=nil)
|
6569
|
+
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, createtime=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, delaycleanuptime=nil, metatags=nil, ostype=nil)
|
6563
6570
|
@GroupId = groupid
|
6564
6571
|
@GroupName = groupname
|
6565
6572
|
@MachineGroupType = machinegrouptype
|
@@ -6569,6 +6576,7 @@ module TencentCloud
|
|
6569
6576
|
@UpdateStartTime = updatestarttime
|
6570
6577
|
@UpdateEndTime = updateendtime
|
6571
6578
|
@ServiceLogging = servicelogging
|
6579
|
+
@DelayCleanupTime = delaycleanuptime
|
6572
6580
|
@MetaTags = metatags
|
6573
6581
|
@OSType = ostype
|
6574
6582
|
end
|
@@ -6593,6 +6601,7 @@ module TencentCloud
|
|
6593
6601
|
@UpdateStartTime = params['UpdateStartTime']
|
6594
6602
|
@UpdateEndTime = params['UpdateEndTime']
|
6595
6603
|
@ServiceLogging = params['ServiceLogging']
|
6604
|
+
@DelayCleanupTime = params['DelayCleanupTime']
|
6596
6605
|
unless params['MetaTags'].nil?
|
6597
6606
|
@MetaTags = []
|
6598
6607
|
params['MetaTags'].each do |i|
|
@@ -7676,12 +7685,14 @@ module TencentCloud
|
|
7676
7685
|
# @type UpdateEndTime: String
|
7677
7686
|
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
7678
7687
|
# @type ServiceLogging: Boolean
|
7688
|
+
# @param DelayCleanupTime: 机器组中机器定期离线清理时间
|
7689
|
+
# @type DelayCleanupTime: Integer
|
7679
7690
|
# @param MetaTags: 机器组元数据信息列表
|
7680
7691
|
# @type MetaTags: Array
|
7681
7692
|
|
7682
|
-
attr_accessor :GroupId, :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :MetaTags
|
7693
|
+
attr_accessor :GroupId, :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :DelayCleanupTime, :MetaTags
|
7683
7694
|
|
7684
|
-
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, metatags=nil)
|
7695
|
+
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, delaycleanuptime=nil, metatags=nil)
|
7685
7696
|
@GroupId = groupid
|
7686
7697
|
@GroupName = groupname
|
7687
7698
|
@MachineGroupType = machinegrouptype
|
@@ -7690,6 +7701,7 @@ module TencentCloud
|
|
7690
7701
|
@UpdateStartTime = updatestarttime
|
7691
7702
|
@UpdateEndTime = updateendtime
|
7692
7703
|
@ServiceLogging = servicelogging
|
7704
|
+
@DelayCleanupTime = delaycleanuptime
|
7693
7705
|
@MetaTags = metatags
|
7694
7706
|
end
|
7695
7707
|
|
@@ -7712,6 +7724,7 @@ module TencentCloud
|
|
7712
7724
|
@UpdateStartTime = params['UpdateStartTime']
|
7713
7725
|
@UpdateEndTime = params['UpdateEndTime']
|
7714
7726
|
@ServiceLogging = params['ServiceLogging']
|
7727
|
+
@DelayCleanupTime = params['DelayCleanupTime']
|
7715
7728
|
unless params['MetaTags'].nil?
|
7716
7729
|
@MetaTags = []
|
7717
7730
|
params['MetaTags'].each do |i|
|
@@ -8530,17 +8543,17 @@ module TencentCloud
|
|
8530
8543
|
|
8531
8544
|
# 索引规则,FullText、KeyValue、Tag参数必须输入一个有效参数
|
8532
8545
|
class RuleInfo < TencentCloud::Common::AbstractModel
|
8533
|
-
# @param FullText: 全文索引配置,
|
8546
|
+
# @param FullText: 全文索引配置, 为空时代表未开启全文索引
|
8534
8547
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8535
8548
|
# @type FullText: :class:`Tencentcloud::Cls.v20201016.models.FullTextInfo`
|
8536
|
-
# @param KeyValue:
|
8549
|
+
# @param KeyValue: 键值索引配置,为空时代表未开启键值索引
|
8537
8550
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8538
8551
|
# @type KeyValue: :class:`Tencentcloud::Cls.v20201016.models.RuleKeyValueInfo`
|
8539
|
-
# @param Tag:
|
8552
|
+
# @param Tag: 元字段索引配置,为空时代表未开启元字段索引
|
8540
8553
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8541
8554
|
# @type Tag: :class:`Tencentcloud::Cls.v20201016.models.RuleTagInfo`
|
8542
|
-
# @param DynamicIndex:
|
8543
|
-
#
|
8555
|
+
# @param DynamicIndex: 键值索引自动配置,为空时代表未开启该功能。
|
8556
|
+
# 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。
|
8544
8557
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8545
8558
|
# @type DynamicIndex: :class:`Tencentcloud::Cls.v20201016.models.DynamicIndex`
|
8546
8559
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.772
|
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-02-
|
11
|
+
date: 2024-02-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|