tencentcloud-sdk-weilingwith 3.0.716 → 3.0.717

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20230427/models.rb +70 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: da4e9440cb292331169ca62fc8374c85921bb349
4
- data.tar.gz: 8b8b02e243486c2a8d0dca4fe1401e1f82129ad1
3
+ metadata.gz: af345f1c5f920ea68b8dde89a31694f12952ace6
4
+ data.tar.gz: 10e394623d1dbaf2a915cfeae978e0d3c26a9fb8
5
5
  SHA512:
6
- metadata.gz: acad9e7b04fcffaeb5c9d3959d4a1fd87f91a9edc99dc3aee3f3a95e595aad75f5dc4dbbf11fdfaf1d795ac2af917482dc8513ee12e6c65040710408cbf2df63
7
- data.tar.gz: 363f79d7f699b3ae75212d7b4e56e23db0afefd5df2c6e425bfea31eb106f3f2bd666fbe0e770b4d9668ad3a3477024cb92bf6cf04a7fd05fc157df3a229faf7
6
+ metadata.gz: 91d8afc026ef85d3f40f7b1c9ac9cd467f7dfcd1380771cb71274bfa086c7b639571595e4e9615968b9e0daa9311988e309f825dab36179b69bbc58d1a93d4ec
7
+ data.tar.gz: b892aa6d6b0f1f2226b6718c69d3226f66fd37cff4c1b518f21f33d5e8f378468a6ecdb2d7023c2607cdb0237a0f7ff66f3615964e6bfe9849538c333acfe2be
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.716
1
+ 3.0.717
@@ -465,6 +465,33 @@ module TencentCloud
465
465
  end
466
466
  end
467
467
 
468
+ # 告警状态返回结构体
469
+ class AlarmStatusData < TencentCloud::Common::AbstractModel
470
+ # @param StatusID: 告警状态ID
471
+ # 注意:此字段可能返回 null,表示取不到有效值。
472
+ # @type StatusID: String
473
+ # @param StatusName: 告警状态名称
474
+ # 注意:此字段可能返回 null,表示取不到有效值。
475
+ # @type StatusName: String
476
+ # @param StatusType: 告警状态类型
477
+ # 注意:此字段可能返回 null,表示取不到有效值。
478
+ # @type StatusType: String
479
+
480
+ attr_accessor :StatusID, :StatusName, :StatusType
481
+
482
+ def initialize(statusid=nil, statusname=nil, statustype=nil)
483
+ @StatusID = statusid
484
+ @StatusName = statusname
485
+ @StatusType = statustype
486
+ end
487
+
488
+ def deserialize(params)
489
+ @StatusID = params['StatusID']
490
+ @StatusName = params['StatusName']
491
+ @StatusType = params['StatusType']
492
+ end
493
+ end
494
+
468
495
  # 告警类型详情信息
469
496
  class AlarmTypeDetailInfo < TencentCloud::Common::AbstractModel
470
497
  # @param Id: 告警类型id
@@ -2132,27 +2159,67 @@ module TencentCloud
2132
2159
 
2133
2160
  # DescribeAlarmStatusList请求参数结构体
2134
2161
  class DescribeAlarmStatusListRequest < TencentCloud::Common::AbstractModel
2162
+ # @param ApplicationToken: 应用token
2163
+ # @type ApplicationToken: String
2164
+ # @param WorkspaceId: 工作空间ID
2165
+ # @type WorkspaceId: String
2135
2166
 
2167
+ attr_accessor :ApplicationToken, :WorkspaceId
2136
2168
 
2137
- def initialize()
2169
+ def initialize(applicationtoken=nil, workspaceid=nil)
2170
+ @ApplicationToken = applicationtoken
2171
+ @WorkspaceId = workspaceid
2138
2172
  end
2139
2173
 
2140
2174
  def deserialize(params)
2175
+ @ApplicationToken = params['ApplicationToken']
2176
+ @WorkspaceId = params['WorkspaceId']
2177
+ end
2178
+ end
2179
+
2180
+ # 告警状态列表返回
2181
+ class DescribeAlarmStatusListRes < TencentCloud::Common::AbstractModel
2182
+ # @param List: 告警状态返回结构
2183
+ # 注意:此字段可能返回 null,表示取不到有效值。
2184
+ # @type List: Array
2185
+
2186
+ attr_accessor :List
2187
+
2188
+ def initialize(list=nil)
2189
+ @List = list
2190
+ end
2191
+
2192
+ def deserialize(params)
2193
+ unless params['List'].nil?
2194
+ @List = []
2195
+ params['List'].each do |i|
2196
+ alarmstatusdata_tmp = AlarmStatusData.new
2197
+ alarmstatusdata_tmp.deserialize(i)
2198
+ @List << alarmstatusdata_tmp
2199
+ end
2200
+ end
2141
2201
  end
2142
2202
  end
2143
2203
 
2144
2204
  # DescribeAlarmStatusList返回参数结构体
2145
2205
  class DescribeAlarmStatusListResponse < TencentCloud::Common::AbstractModel
2206
+ # @param Result: 告警状态返回结构
2207
+ # @type Result: :class:`Tencentcloud::Weilingwith.v20230427.models.DescribeAlarmStatusListRes`
2146
2208
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2147
2209
  # @type RequestId: String
2148
2210
 
2149
- attr_accessor :RequestId
2211
+ attr_accessor :Result, :RequestId
2150
2212
 
2151
- def initialize(requestid=nil)
2213
+ def initialize(result=nil, requestid=nil)
2214
+ @Result = result
2152
2215
  @RequestId = requestid
2153
2216
  end
2154
2217
 
2155
2218
  def deserialize(params)
2219
+ unless params['Result'].nil?
2220
+ @Result = DescribeAlarmStatusListRes.new
2221
+ @Result.deserialize(params['Result'])
2222
+ end
2156
2223
  @RequestId = params['RequestId']
2157
2224
  end
2158
2225
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-weilingwith
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.716
4
+ version: 3.0.717
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud