tencentcloud-sdk-tsf 1.0.266 → 1.0.267
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/client.rb +192 -0
- data/lib/v20180326/models.rb +1345 -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: bdae3148ad16a97a45b9640a93af491dc15df9f8
|
4
|
+
data.tar.gz: 885fdb9beff63030a67af27741b6ec426cc41c88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17df66e091c6861ee0b5fbfa118fb5bd1f3677cce9dde2d414464fc1df8be270d38cb9ee886ba6956fac5ef86b16df3e89b5e7f455d5ea9f4c5e1a70b1581ca3
|
7
|
+
data.tar.gz: 3bfebcf489fe0cfc3e0895707f2245e6b19c0811a93decb19dee4e6f4cf6ab2ffd0b7a6c17531f4357a0deec871d04f4826eb29f84e5b7c4d3293798f776d4b8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.267
|
data/lib/v20180326/client.rb
CHANGED
@@ -2119,6 +2119,150 @@ module TencentCloud
|
|
2119
2119
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2120
2120
|
end
|
2121
2121
|
|
2122
|
+
# 查询调用监控指标
|
2123
|
+
|
2124
|
+
# @param request: Request instance for DescribeInovcationIndicators.
|
2125
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeInovcationIndicatorsRequest`
|
2126
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeInovcationIndicatorsResponse`
|
2127
|
+
def DescribeInovcationIndicators(request)
|
2128
|
+
body = send_request('DescribeInovcationIndicators', request.serialize)
|
2129
|
+
response = JSON.parse(body)
|
2130
|
+
if response['Response'].key?('Error') == false
|
2131
|
+
model = DescribeInovcationIndicatorsResponse.new
|
2132
|
+
model.deserialize(response['Response'])
|
2133
|
+
model
|
2134
|
+
else
|
2135
|
+
code = response['Response']['Error']['Code']
|
2136
|
+
message = response['Response']['Error']['Message']
|
2137
|
+
reqid = response['Response']['RequestId']
|
2138
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2139
|
+
end
|
2140
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2141
|
+
raise e
|
2142
|
+
rescue StandardError => e
|
2143
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2144
|
+
end
|
2145
|
+
|
2146
|
+
# 查询调用指标数据变化曲线
|
2147
|
+
|
2148
|
+
# @param request: Request instance for DescribeInvocationMetricDataCurve.
|
2149
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricDataCurveRequest`
|
2150
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricDataCurveResponse`
|
2151
|
+
def DescribeInvocationMetricDataCurve(request)
|
2152
|
+
body = send_request('DescribeInvocationMetricDataCurve', request.serialize)
|
2153
|
+
response = JSON.parse(body)
|
2154
|
+
if response['Response'].key?('Error') == false
|
2155
|
+
model = DescribeInvocationMetricDataCurveResponse.new
|
2156
|
+
model.deserialize(response['Response'])
|
2157
|
+
model
|
2158
|
+
else
|
2159
|
+
code = response['Response']['Error']['Code']
|
2160
|
+
message = response['Response']['Error']['Message']
|
2161
|
+
reqid = response['Response']['RequestId']
|
2162
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2163
|
+
end
|
2164
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2165
|
+
raise e
|
2166
|
+
rescue StandardError => e
|
2167
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
# 查询维度
|
2171
|
+
|
2172
|
+
# @param request: Request instance for DescribeInvocationMetricDataDimension.
|
2173
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricDataDimensionRequest`
|
2174
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricDataDimensionResponse`
|
2175
|
+
def DescribeInvocationMetricDataDimension(request)
|
2176
|
+
body = send_request('DescribeInvocationMetricDataDimension', request.serialize)
|
2177
|
+
response = JSON.parse(body)
|
2178
|
+
if response['Response'].key?('Error') == false
|
2179
|
+
model = DescribeInvocationMetricDataDimensionResponse.new
|
2180
|
+
model.deserialize(response['Response'])
|
2181
|
+
model
|
2182
|
+
else
|
2183
|
+
code = response['Response']['Error']['Code']
|
2184
|
+
message = response['Response']['Error']['Message']
|
2185
|
+
reqid = response['Response']['RequestId']
|
2186
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2187
|
+
end
|
2188
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2189
|
+
raise e
|
2190
|
+
rescue StandardError => e
|
2191
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2192
|
+
end
|
2193
|
+
|
2194
|
+
# 查询单值指标维度
|
2195
|
+
|
2196
|
+
# @param request: Request instance for DescribeInvocationMetricDataPoint.
|
2197
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricDataPointRequest`
|
2198
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricDataPointResponse`
|
2199
|
+
def DescribeInvocationMetricDataPoint(request)
|
2200
|
+
body = send_request('DescribeInvocationMetricDataPoint', request.serialize)
|
2201
|
+
response = JSON.parse(body)
|
2202
|
+
if response['Response'].key?('Error') == false
|
2203
|
+
model = DescribeInvocationMetricDataPointResponse.new
|
2204
|
+
model.deserialize(response['Response'])
|
2205
|
+
model
|
2206
|
+
else
|
2207
|
+
code = response['Response']['Error']['Code']
|
2208
|
+
message = response['Response']['Error']['Message']
|
2209
|
+
reqid = response['Response']['RequestId']
|
2210
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2211
|
+
end
|
2212
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2213
|
+
raise e
|
2214
|
+
rescue StandardError => e
|
2215
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2216
|
+
end
|
2217
|
+
|
2218
|
+
# 查询调用指标数据散点图
|
2219
|
+
|
2220
|
+
# @param request: Request instance for DescribeInvocationMetricScatterPlot.
|
2221
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricScatterPlotRequest`
|
2222
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeInvocationMetricScatterPlotResponse`
|
2223
|
+
def DescribeInvocationMetricScatterPlot(request)
|
2224
|
+
body = send_request('DescribeInvocationMetricScatterPlot', request.serialize)
|
2225
|
+
response = JSON.parse(body)
|
2226
|
+
if response['Response'].key?('Error') == false
|
2227
|
+
model = DescribeInvocationMetricScatterPlotResponse.new
|
2228
|
+
model.deserialize(response['Response'])
|
2229
|
+
model
|
2230
|
+
else
|
2231
|
+
code = response['Response']['Error']['Code']
|
2232
|
+
message = response['Response']['Error']['Message']
|
2233
|
+
reqid = response['Response']['RequestId']
|
2234
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2235
|
+
end
|
2236
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2237
|
+
raise e
|
2238
|
+
rescue StandardError => e
|
2239
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2240
|
+
end
|
2241
|
+
|
2242
|
+
# 查询java实例jvm监控数据,返回数据可选
|
2243
|
+
|
2244
|
+
# @param request: Request instance for DescribeJvmMonitor.
|
2245
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeJvmMonitorRequest`
|
2246
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeJvmMonitorResponse`
|
2247
|
+
def DescribeJvmMonitor(request)
|
2248
|
+
body = send_request('DescribeJvmMonitor', request.serialize)
|
2249
|
+
response = JSON.parse(body)
|
2250
|
+
if response['Response'].key?('Error') == false
|
2251
|
+
model = DescribeJvmMonitorResponse.new
|
2252
|
+
model.deserialize(response['Response'])
|
2253
|
+
model
|
2254
|
+
else
|
2255
|
+
code = response['Response']['Error']['Code']
|
2256
|
+
message = response['Response']['Error']['Message']
|
2257
|
+
reqid = response['Response']['RequestId']
|
2258
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2259
|
+
end
|
2260
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2261
|
+
raise e
|
2262
|
+
rescue StandardError => e
|
2263
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2264
|
+
end
|
2265
|
+
|
2122
2266
|
# 查询泳道规则列表
|
2123
2267
|
|
2124
2268
|
# @param request: Request instance for DescribeLaneRules.
|
@@ -2239,6 +2383,30 @@ module TencentCloud
|
|
2239
2383
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2240
2384
|
end
|
2241
2385
|
|
2386
|
+
# 服务调用监控统计概览
|
2387
|
+
|
2388
|
+
# @param request: Request instance for DescribeOverviewInvocation.
|
2389
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeOverviewInvocationRequest`
|
2390
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeOverviewInvocationResponse`
|
2391
|
+
def DescribeOverviewInvocation(request)
|
2392
|
+
body = send_request('DescribeOverviewInvocation', request.serialize)
|
2393
|
+
response = JSON.parse(body)
|
2394
|
+
if response['Response'].key?('Error') == false
|
2395
|
+
model = DescribeOverviewInvocationResponse.new
|
2396
|
+
model.deserialize(response['Response'])
|
2397
|
+
model
|
2398
|
+
else
|
2399
|
+
code = response['Response']['Error']['Code']
|
2400
|
+
message = response['Response']['Error']['Message']
|
2401
|
+
reqid = response['Response']['RequestId']
|
2402
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2403
|
+
end
|
2404
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2405
|
+
raise e
|
2406
|
+
rescue StandardError => e
|
2407
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2408
|
+
end
|
2409
|
+
|
2242
2410
|
# 查询路径重写
|
2243
2411
|
|
2244
2412
|
# @param request: Request instance for DescribePathRewrite.
|
@@ -2695,6 +2863,30 @@ module TencentCloud
|
|
2695
2863
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2696
2864
|
end
|
2697
2865
|
|
2866
|
+
# 服务统计页面:接口和服务维度
|
2867
|
+
|
2868
|
+
# @param request: Request instance for DescribeStatistics.
|
2869
|
+
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeStatisticsRequest`
|
2870
|
+
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeStatisticsResponse`
|
2871
|
+
def DescribeStatistics(request)
|
2872
|
+
body = send_request('DescribeStatistics', request.serialize)
|
2873
|
+
response = JSON.parse(body)
|
2874
|
+
if response['Response'].key?('Error') == false
|
2875
|
+
model = DescribeStatisticsResponse.new
|
2876
|
+
model.deserialize(response['Response'])
|
2877
|
+
model
|
2878
|
+
else
|
2879
|
+
code = response['Response']['Error']['Code']
|
2880
|
+
message = response['Response']['Error']['Message']
|
2881
|
+
reqid = response['Response']['RequestId']
|
2882
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2883
|
+
end
|
2884
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2885
|
+
raise e
|
2886
|
+
rescue StandardError => e
|
2887
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2888
|
+
end
|
2889
|
+
|
2698
2890
|
# 查询任务详情
|
2699
2891
|
|
2700
2892
|
# @param request: Request instance for DescribeTaskDetail.
|