tencentcloud-sdk-cls 3.0.1037 → 3.0.1038
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/client.rb +24 -0
- data/lib/v20201016/models.rb +36 -0
- 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: 25f80097d84edcb81d100e6aa9d64e3cb2174270
|
4
|
+
data.tar.gz: 8736dba8535a36db02b77a8bc8f4a9a6b4bc7ff9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16aae8352fb0eb9d9ae30bebfa520ec065711fd0fe13c064972faa689e4beb33c42ae4dae85486869e35ff6b07a4c54854cb8e96e7d56ccb66862d48ad4e5971
|
7
|
+
data.tar.gz: e704a9e00a3357dfe2da226a07e95d7bfb92cbabd173b708dd3a786d040a3c65cd0d0864ab26cf9a9087345bc2c6c75f115848841a51e7858b9ee3b20a5809b2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1038
|
data/lib/v20201016/client.rb
CHANGED
@@ -900,6 +900,30 @@ module TencentCloud
|
|
900
900
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
901
901
|
end
|
902
902
|
|
903
|
+
# 本接口用于删除cos导入任务
|
904
|
+
|
905
|
+
# @param request: Request instance for DeleteCosRecharge.
|
906
|
+
# @type request: :class:`Tencentcloud::cls::V20201016::DeleteCosRechargeRequest`
|
907
|
+
# @rtype: :class:`Tencentcloud::cls::V20201016::DeleteCosRechargeResponse`
|
908
|
+
def DeleteCosRecharge(request)
|
909
|
+
body = send_request('DeleteCosRecharge', request.serialize)
|
910
|
+
response = JSON.parse(body)
|
911
|
+
if response['Response'].key?('Error') == false
|
912
|
+
model = DeleteCosRechargeResponse.new
|
913
|
+
model.deserialize(response['Response'])
|
914
|
+
model
|
915
|
+
else
|
916
|
+
code = response['Response']['Error']['Code']
|
917
|
+
message = response['Response']['Error']['Message']
|
918
|
+
reqid = response['Response']['RequestId']
|
919
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
920
|
+
end
|
921
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
922
|
+
raise e
|
923
|
+
rescue StandardError => e
|
924
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
925
|
+
end
|
926
|
+
|
903
927
|
# 此接口用于删除仪表盘订阅
|
904
928
|
|
905
929
|
# @param request: Request instance for DeleteDashboardSubscribe.
|
data/lib/v20201016/models.rb
CHANGED
@@ -4256,6 +4256,42 @@ module TencentCloud
|
|
4256
4256
|
end
|
4257
4257
|
end
|
4258
4258
|
|
4259
|
+
# DeleteCosRecharge请求参数结构体
|
4260
|
+
class DeleteCosRechargeRequest < TencentCloud::Common::AbstractModel
|
4261
|
+
# @param Id: COS导入配置Id
|
4262
|
+
# @type Id: String
|
4263
|
+
# @param TopicId: 日志主题Id
|
4264
|
+
# @type TopicId: String
|
4265
|
+
|
4266
|
+
attr_accessor :Id, :TopicId
|
4267
|
+
|
4268
|
+
def initialize(id=nil, topicid=nil)
|
4269
|
+
@Id = id
|
4270
|
+
@TopicId = topicid
|
4271
|
+
end
|
4272
|
+
|
4273
|
+
def deserialize(params)
|
4274
|
+
@Id = params['Id']
|
4275
|
+
@TopicId = params['TopicId']
|
4276
|
+
end
|
4277
|
+
end
|
4278
|
+
|
4279
|
+
# DeleteCosRecharge返回参数结构体
|
4280
|
+
class DeleteCosRechargeResponse < TencentCloud::Common::AbstractModel
|
4281
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4282
|
+
# @type RequestId: String
|
4283
|
+
|
4284
|
+
attr_accessor :RequestId
|
4285
|
+
|
4286
|
+
def initialize(requestid=nil)
|
4287
|
+
@RequestId = requestid
|
4288
|
+
end
|
4289
|
+
|
4290
|
+
def deserialize(params)
|
4291
|
+
@RequestId = params['RequestId']
|
4292
|
+
end
|
4293
|
+
end
|
4294
|
+
|
4259
4295
|
# DeleteDashboardSubscribe请求参数结构体
|
4260
4296
|
class DeleteDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
4261
4297
|
# @param Id: 仪表盘订阅记录id。
|
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.1038
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|