tencentcloud-sdk-bh 3.0.1040 → 3.0.1041

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 985cb94195add4cf39281d6b2d474a260b61e1f7
4
- data.tar.gz: 1d8170caf01674b89bdbf18e5bd1fb6c73efcc35
3
+ metadata.gz: 03baf7dd4e77d4379a17b9b594f88b2144aa009b
4
+ data.tar.gz: c9523521f8e9c5d8f9f899bb0b8fa76a3296c9a2
5
5
  SHA512:
6
- metadata.gz: 9fc443c97eaa92b0a888f58cbdf2c111c26c134aafc06fae77cc10dcb2b2e2ee8b24f577c7a43508a88f441c1351584c5acd275adc48e9e11668dc50e400d62c
7
- data.tar.gz: c8230d47b06d6dfee0a28ccdbb761c00ddc6755835c10b98b169e4bd8e8116116b00e6aa8057e1255989a2737af33a33a80f1ed88b0d6b0c5a65df68a2536248
6
+ metadata.gz: 0f0dd4754756dbf1fd6da9b5818bbdeea35daf007fd474da66efccde91b683a82f55cbaccfe99614dc9e0c4d4ef4f40c15a01db4edba50dc0942fcf9ba161ad7
7
+ data.tar.gz: ae47e0032f1c14477e58c61c8c4b36ffcc2efc8ba5bce5134f50a4cc6629dd23a19759734e0ca1da6ab0d59e43479b591051f2379a04a1592b51bccee90ed129
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1040
1
+ 3.0.1041
@@ -1733,6 +1733,30 @@ module TencentCloud
1733
1733
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1734
1734
  end
1735
1735
 
1736
+ # 查询运维子任务执行结果
1737
+
1738
+ # @param request: Request instance for SearchSubtaskResultById.
1739
+ # @type request: :class:`Tencentcloud::bh::V20230418::SearchSubtaskResultByIdRequest`
1740
+ # @rtype: :class:`Tencentcloud::bh::V20230418::SearchSubtaskResultByIdResponse`
1741
+ def SearchSubtaskResultById(request)
1742
+ body = send_request('SearchSubtaskResultById', request.serialize)
1743
+ response = JSON.parse(body)
1744
+ if response['Response'].key?('Error') == false
1745
+ model = SearchSubtaskResultByIdResponse.new
1746
+ model.deserialize(response['Response'])
1747
+ model
1748
+ else
1749
+ code = response['Response']['Error']['Code']
1750
+ message = response['Response']['Error']['Message']
1751
+ reqid = response['Response']['RequestId']
1752
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1753
+ end
1754
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1755
+ raise e
1756
+ rescue StandardError => e
1757
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1758
+ end
1759
+
1736
1760
  # 搜索运维任务执行结果
1737
1761
 
1738
1762
  # @param request: Request instance for SearchTaskResult.
@@ -5742,6 +5742,58 @@ module TencentCloud
5742
5742
  end
5743
5743
  end
5744
5744
 
5745
+ # SearchSubtaskResultById请求参数结构体
5746
+ class SearchSubtaskResultByIdRequest < TencentCloud::Common::AbstractModel
5747
+ # @param Name: 运维任务名称
5748
+ # @type Name: String
5749
+ # @param Offset: 查询偏移
5750
+ # @type Offset: Integer
5751
+ # @param Limit: 分页的页内记录数,默认为20,最大200
5752
+ # @type Limit: Integer
5753
+ # @param Id: 运维父任务执行日志ID
5754
+ # @type Id: String
5755
+ # @param Status: 运维父任务执行状态
5756
+ # @type Status: Array
5757
+
5758
+ attr_accessor :Name, :Offset, :Limit, :Id, :Status
5759
+
5760
+ def initialize(name=nil, offset=nil, limit=nil, id=nil, status=nil)
5761
+ @Name = name
5762
+ @Offset = offset
5763
+ @Limit = limit
5764
+ @Id = id
5765
+ @Status = status
5766
+ end
5767
+
5768
+ def deserialize(params)
5769
+ @Name = params['Name']
5770
+ @Offset = params['Offset']
5771
+ @Limit = params['Limit']
5772
+ @Id = params['Id']
5773
+ @Status = params['Status']
5774
+ end
5775
+ end
5776
+
5777
+ # SearchSubtaskResultById返回参数结构体
5778
+ class SearchSubtaskResultByIdResponse < TencentCloud::Common::AbstractModel
5779
+ # @param TotalCount: 记录数
5780
+ # @type TotalCount: Integer
5781
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5782
+ # @type RequestId: String
5783
+
5784
+ attr_accessor :TotalCount, :RequestId
5785
+
5786
+ def initialize(totalcount=nil, requestid=nil)
5787
+ @TotalCount = totalcount
5788
+ @RequestId = requestid
5789
+ end
5790
+
5791
+ def deserialize(params)
5792
+ @TotalCount = params['TotalCount']
5793
+ @RequestId = params['RequestId']
5794
+ end
5795
+ end
5796
+
5745
5797
  # SearchTaskResult请求参数结构体
5746
5798
  class SearchTaskResultRequest < TencentCloud::Common::AbstractModel
5747
5799
  # @param StartTime: 搜索区间的开始时间
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-bh
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1040
4
+ version: 3.0.1041
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-14 00:00:00.000000000 Z
11
+ date: 2025-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common