tencentcloud-sdk-cls 3.0.857 → 3.0.859

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/v20201016/models.rb +57 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8aeed27afb3cffd833d77c3cde1967021533d926
4
- data.tar.gz: 5981746bca2e96a7e4307bff4414eae9015f6456
3
+ metadata.gz: 36cd5cd6a682f44c85dfd08c409895059a266479
4
+ data.tar.gz: b596460a9272d8a8bdf7ff9bd48080844919b49e
5
5
  SHA512:
6
- metadata.gz: 0660682d15aa011b9075f873b621d64fd7094f3dba87d2b22c95f05d7c8ea07364dd91670986fbb88b00e268802bc5b80174ef20f58faf03b2decad26be00fbc
7
- data.tar.gz: d98c4a695f35177db106e3210232d9cb2ec06e34810a2073f1077df524854b185924eca08208b708d4ecb31067b1fc01fd8b41ab65fdcd1ce71c711d5e0670f1
6
+ metadata.gz: e06c622a9aff5e50856542ef7daeeedfb0998e12d0c97484c719e11a8042ceb2c107614237395b4e4a1658bc058cc6729fedf14b69b95ecb65cc963edc579755
7
+ data.tar.gz: eba0c4e71aa726e0f1920e406b19b71fd0ae48511fc2c93ff877cbe7bbabf9c7eb48f8e5a6c37b8bfa3675aa3ef8d262cdffc5ce0a809c948d0522ca8264eccb
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.857
1
+ 3.0.859
@@ -5522,15 +5522,61 @@ module TencentCloud
5522
5522
  class DescribeMachinesRequest < TencentCloud::Common::AbstractModel
5523
5523
  # @param GroupId: 查询的机器组ID
5524
5524
  # @type GroupId: String
5525
+ # @param Filters: ip
5526
+ # - 按照【ip】进行过滤。
5527
+ # - 类型:String
5528
+ # - 必选:否
5525
5529
 
5526
- attr_accessor :GroupId
5530
+ # instance
5531
+ # - 按照【instance】进行过滤。
5532
+ # - 类型:String
5533
+ # - 必选:否
5527
5534
 
5528
- def initialize(groupid=nil)
5535
+ # version
5536
+ # - 按照【LogListener版本】进行过滤。
5537
+ # - 类型:String
5538
+ # - 必选:否
5539
+
5540
+ # status
5541
+ # - 按照【状态】进行过滤。
5542
+ # - 类型:String
5543
+ # - 必选:否
5544
+ # - 可选值:0:离线,1:正常
5545
+
5546
+ # offlineTime
5547
+ # - 按照【机器离线时间】进行过滤。
5548
+ # - 类型:String
5549
+ # - 必选:否
5550
+ # - - 可选值:0:无离线时间,12:12小时内,24:一天内,48:两天内,99:两天前
5551
+
5552
+ # 每次请求的Filters的上限为10,Filter.Values的上限为100。
5553
+ # @type Filters: Array
5554
+ # @param Offset: 分页的偏移量。
5555
+ # @type Offset: Integer
5556
+ # @param Limit: 分页单页限制数目。最大支持100
5557
+ # @type Limit: Integer
5558
+
5559
+ attr_accessor :GroupId, :Filters, :Offset, :Limit
5560
+
5561
+ def initialize(groupid=nil, filters=nil, offset=nil, limit=nil)
5529
5562
  @GroupId = groupid
5563
+ @Filters = filters
5564
+ @Offset = offset
5565
+ @Limit = limit
5530
5566
  end
5531
5567
 
5532
5568
  def deserialize(params)
5533
5569
  @GroupId = params['GroupId']
5570
+ unless params['Filters'].nil?
5571
+ @Filters = []
5572
+ params['Filters'].each do |i|
5573
+ filter_tmp = Filter.new
5574
+ filter_tmp.deserialize(i)
5575
+ @Filters << filter_tmp
5576
+ end
5577
+ end
5578
+ @Offset = params['Offset']
5579
+ @Limit = params['Limit']
5534
5580
  end
5535
5581
  end
5536
5582
 
@@ -5548,18 +5594,22 @@ module TencentCloud
5548
5594
  # @type LatestAgentVersion: String
5549
5595
  # @param ServiceLogging: 是否开启服务日志
5550
5596
  # @type ServiceLogging: Boolean
5597
+ # @param TotalCount: 总数目
5598
+ # 注意:此字段可能返回 null,表示取不到有效值。
5599
+ # @type TotalCount: Integer
5551
5600
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5552
5601
  # @type RequestId: String
5553
5602
 
5554
- attr_accessor :Machines, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :LatestAgentVersion, :ServiceLogging, :RequestId
5603
+ attr_accessor :Machines, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :LatestAgentVersion, :ServiceLogging, :TotalCount, :RequestId
5555
5604
 
5556
- def initialize(machines=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, latestagentversion=nil, servicelogging=nil, requestid=nil)
5605
+ def initialize(machines=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, latestagentversion=nil, servicelogging=nil, totalcount=nil, requestid=nil)
5557
5606
  @Machines = machines
5558
5607
  @AutoUpdate = autoupdate
5559
5608
  @UpdateStartTime = updatestarttime
5560
5609
  @UpdateEndTime = updateendtime
5561
5610
  @LatestAgentVersion = latestagentversion
5562
5611
  @ServiceLogging = servicelogging
5612
+ @TotalCount = totalcount
5563
5613
  @RequestId = requestid
5564
5614
  end
5565
5615
 
@@ -5577,6 +5627,7 @@ module TencentCloud
5577
5627
  @UpdateEndTime = params['UpdateEndTime']
5578
5628
  @LatestAgentVersion = params['LatestAgentVersion']
5579
5629
  @ServiceLogging = params['ServiceLogging']
5630
+ @TotalCount = params['TotalCount']
5580
5631
  @RequestId = params['RequestId']
5581
5632
  end
5582
5633
  end
@@ -9095,8 +9146,8 @@ module TencentCloud
9095
9146
 
9096
9147
  attr_accessor :LogContent, :LineNum, :DstTopicId, :FailReason, :Time, :DstTopicName
9097
9148
  extend Gem::Deprecate
9098
- deprecate :DstTopicName, :none, 2024, 6
9099
- deprecate :DstTopicName=, :none, 2024, 6
9149
+ deprecate :DstTopicName, :none, 2024, 7
9150
+ deprecate :DstTopicName=, :none, 2024, 7
9100
9151
 
9101
9152
  def initialize(logcontent=nil, linenum=nil, dsttopicid=nil, failreason=nil, time=nil, dsttopicname=nil)
9102
9153
  @LogContent = logcontent
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.857
4
+ version: 3.0.859
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-07-03 00:00:00.000000000 Z
11
+ date: 2024-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common