tencentcloud-sdk-apm 3.0.371 → 3.0.379
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/v20210622/models.rb +17 -4
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5574f3497450887a0dc1cb47b1f5b2b58436b70
|
|
4
|
+
data.tar.gz: 4eed75cf676701d03b45646e73006527e2d42a82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c5508a932628394e5b622296b5fd9724ccd756c4da2a9841396f03ab611fa1607b28db2404e05a1232c8c5e0ac4cc4242b9d5fbcd968e0c5bb3fc308b70c6e9
|
|
7
|
+
data.tar.gz: 6097249396f39f18f84b532b1817cb9fb36e4979351b2d8961523a666834304184b26bf5b8fe42664b069fa4342020132e1ddcd45c6b27aa320f36ced5d53c6e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.379
|
data/lib/v20210622/models.rb
CHANGED
|
@@ -624,10 +624,14 @@ module TencentCloud
|
|
|
624
624
|
# @type EndTime: Integer
|
|
625
625
|
# @param BusinessName: 业务名称(默认值:taw)
|
|
626
626
|
# @type BusinessName: String
|
|
627
|
+
# @param PageIndex: 页码
|
|
628
|
+
# @type PageIndex: Integer
|
|
629
|
+
# @param PageSize: 页长
|
|
630
|
+
# @type PageSize: Integer
|
|
627
631
|
|
|
628
|
-
attr_accessor :Filters, :Metrics, :GroupBy, :OrderBy, :InstanceId, :Limit, :StartTime, :Offset, :EndTime, :BusinessName
|
|
632
|
+
attr_accessor :Filters, :Metrics, :GroupBy, :OrderBy, :InstanceId, :Limit, :StartTime, :Offset, :EndTime, :BusinessName, :PageIndex, :PageSize
|
|
629
633
|
|
|
630
|
-
def initialize(filters=nil, metrics=nil, groupby=nil, orderby=nil, instanceid=nil, limit=nil, starttime=nil, offset=nil, endtime=nil, businessname=nil)
|
|
634
|
+
def initialize(filters=nil, metrics=nil, groupby=nil, orderby=nil, instanceid=nil, limit=nil, starttime=nil, offset=nil, endtime=nil, businessname=nil, pageindex=nil, pagesize=nil)
|
|
631
635
|
@Filters = filters
|
|
632
636
|
@Metrics = metrics
|
|
633
637
|
@GroupBy = groupby
|
|
@@ -638,6 +642,8 @@ module TencentCloud
|
|
|
638
642
|
@Offset = offset
|
|
639
643
|
@EndTime = endtime
|
|
640
644
|
@BusinessName = businessname
|
|
645
|
+
@PageIndex = pageindex
|
|
646
|
+
@PageSize = pagesize
|
|
641
647
|
end
|
|
642
648
|
|
|
643
649
|
def deserialize(params)
|
|
@@ -668,6 +674,8 @@ module TencentCloud
|
|
|
668
674
|
@Offset = params['Offset']
|
|
669
675
|
@EndTime = params['EndTime']
|
|
670
676
|
@BusinessName = params['BusinessName']
|
|
677
|
+
@PageIndex = params['PageIndex']
|
|
678
|
+
@PageSize = params['PageSize']
|
|
671
679
|
end
|
|
672
680
|
end
|
|
673
681
|
|
|
@@ -676,13 +684,17 @@ module TencentCloud
|
|
|
676
684
|
# @param Records: 指标结果集
|
|
677
685
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
678
686
|
# @type Records: Array
|
|
687
|
+
# @param TotalCount: 查询指标结果集条数
|
|
688
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
689
|
+
# @type TotalCount: Integer
|
|
679
690
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
680
691
|
# @type RequestId: String
|
|
681
692
|
|
|
682
|
-
attr_accessor :Records, :RequestId
|
|
693
|
+
attr_accessor :Records, :TotalCount, :RequestId
|
|
683
694
|
|
|
684
|
-
def initialize(records=nil, requestid=nil)
|
|
695
|
+
def initialize(records=nil, totalcount=nil, requestid=nil)
|
|
685
696
|
@Records = records
|
|
697
|
+
@TotalCount = totalcount
|
|
686
698
|
@RequestId = requestid
|
|
687
699
|
end
|
|
688
700
|
|
|
@@ -695,6 +707,7 @@ module TencentCloud
|
|
|
695
707
|
@Records << apmmetricrecord_tmp
|
|
696
708
|
end
|
|
697
709
|
end
|
|
710
|
+
@TotalCount = params['TotalCount']
|
|
698
711
|
@RequestId = params['RequestId']
|
|
699
712
|
end
|
|
700
713
|
end
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-apm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.379
|
|
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-08-
|
|
11
|
+
date: 2022-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '1.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '1.0'
|
|
27
27
|
description: Tencent Cloud Ruby SDK is the official software development kit, which
|
|
@@ -33,10 +33,10 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/VERSION
|
|
37
|
-
- lib/tencentcloud-sdk-apm.rb
|
|
38
|
-
- lib/v20210622/client.rb
|
|
39
36
|
- lib/v20210622/models.rb
|
|
37
|
+
- lib/v20210622/client.rb
|
|
38
|
+
- lib/tencentcloud-sdk-apm.rb
|
|
39
|
+
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|
|
42
42
|
- Apache-2.0
|
|
@@ -49,17 +49,17 @@ require_paths:
|
|
|
49
49
|
- lib
|
|
50
50
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - '>='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
|
-
- -
|
|
57
|
+
- - '>='
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
59
|
version: '0'
|
|
60
60
|
requirements: []
|
|
61
61
|
rubyforge_project:
|
|
62
|
-
rubygems_version: 2.
|
|
62
|
+
rubygems_version: 2.0.14
|
|
63
63
|
signing_key:
|
|
64
64
|
specification_version: 4
|
|
65
65
|
summary: Tencent Cloud SDK for Ruby - APM
|