tencentcloud-sdk-tsf 3.0.912 → 3.0.913
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 +0 -26
- data/lib/v20180326/models.rb +0 -32
- 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: 830a32416ed0198f5f5bcb7d61e6ee13fe49d77d
|
|
4
|
+
data.tar.gz: 94b3637d8dfdc3edf29c8f00305c26a36d993739
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb5cfb82468ce34e05638e5da21f8829e7f3bb9359535fc3e4203f2458120b162f582126c77fece049cedf759531f8f71b5bf492aa79eea6fc09595ab58899c9
|
|
7
|
+
data.tar.gz: f3469c9bfe00275cee4a320bc125ca54cb6258d0fa6c59fbe45e29337aff7ce6e79c265bf799b7a60f40ae582383b6f5db81ed8f72dfb16235ce6cea6d894911
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.913
|
data/lib/v20180326/client.rb
CHANGED
|
@@ -1758,32 +1758,6 @@ module TencentCloud
|
|
|
1758
1758
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1759
1759
|
end
|
|
1760
1760
|
|
|
1761
|
-
# 接口未使用,废弃录用
|
|
1762
|
-
|
|
1763
|
-
# 查询应用关联日志配置项信息
|
|
1764
|
-
|
|
1765
|
-
# @param request: Request instance for DescribeApplicationBusinessLogConfig.
|
|
1766
|
-
# @type request: :class:`Tencentcloud::tsf::V20180326::DescribeApplicationBusinessLogConfigRequest`
|
|
1767
|
-
# @rtype: :class:`Tencentcloud::tsf::V20180326::DescribeApplicationBusinessLogConfigResponse`
|
|
1768
|
-
def DescribeApplicationBusinessLogConfig(request)
|
|
1769
|
-
body = send_request('DescribeApplicationBusinessLogConfig', request.serialize)
|
|
1770
|
-
response = JSON.parse(body)
|
|
1771
|
-
if response['Response'].key?('Error') == false
|
|
1772
|
-
model = DescribeApplicationBusinessLogConfigResponse.new
|
|
1773
|
-
model.deserialize(response['Response'])
|
|
1774
|
-
model
|
|
1775
|
-
else
|
|
1776
|
-
code = response['Response']['Error']['Code']
|
|
1777
|
-
message = response['Response']['Error']['Message']
|
|
1778
|
-
reqid = response['Response']['RequestId']
|
|
1779
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1780
|
-
end
|
|
1781
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1782
|
-
raise e
|
|
1783
|
-
rescue StandardError => e
|
|
1784
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1785
|
-
end
|
|
1786
|
-
|
|
1787
1761
|
# 获取应用列表
|
|
1788
1762
|
|
|
1789
1763
|
# @param request: Request instance for DescribeApplications.
|
data/lib/v20180326/models.rb
CHANGED
|
@@ -6833,38 +6833,6 @@ module TencentCloud
|
|
|
6833
6833
|
end
|
|
6834
6834
|
end
|
|
6835
6835
|
|
|
6836
|
-
# DescribeApplicationBusinessLogConfig请求参数结构体
|
|
6837
|
-
class DescribeApplicationBusinessLogConfigRequest < TencentCloud::Common::AbstractModel
|
|
6838
|
-
# @param ApplicationId: TSF应用ID
|
|
6839
|
-
# @type ApplicationId: String
|
|
6840
|
-
|
|
6841
|
-
attr_accessor :ApplicationId
|
|
6842
|
-
|
|
6843
|
-
def initialize(applicationid=nil)
|
|
6844
|
-
@ApplicationId = applicationid
|
|
6845
|
-
end
|
|
6846
|
-
|
|
6847
|
-
def deserialize(params)
|
|
6848
|
-
@ApplicationId = params['ApplicationId']
|
|
6849
|
-
end
|
|
6850
|
-
end
|
|
6851
|
-
|
|
6852
|
-
# DescribeApplicationBusinessLogConfig返回参数结构体
|
|
6853
|
-
class DescribeApplicationBusinessLogConfigResponse < TencentCloud::Common::AbstractModel
|
|
6854
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6855
|
-
# @type RequestId: String
|
|
6856
|
-
|
|
6857
|
-
attr_accessor :RequestId
|
|
6858
|
-
|
|
6859
|
-
def initialize(requestid=nil)
|
|
6860
|
-
@RequestId = requestid
|
|
6861
|
-
end
|
|
6862
|
-
|
|
6863
|
-
def deserialize(params)
|
|
6864
|
-
@RequestId = params['RequestId']
|
|
6865
|
-
end
|
|
6866
|
-
end
|
|
6867
|
-
|
|
6868
6836
|
# DescribeApplication请求参数结构体
|
|
6869
6837
|
class DescribeApplicationRequest < TencentCloud::Common::AbstractModel
|
|
6870
6838
|
# @param ApplicationId: 应用ID
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tsf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.913
|
|
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-09-
|
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|