tencentcloud-sdk-cfg 3.0.1094 → 3.0.1099
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/v20210820/models.rb +24 -2
- 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: 937f86a26516a771f34501c2ea069a24e982c259
|
4
|
+
data.tar.gz: c9920602af2873b0a2af4a1110f6b1d31b8d751f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c06b22281fb513fa522876828a6c99bda452d02f2a9f6dbb0beba61316bad5ec68ccd1de5c422e96744dbbbaea92e6427f7a4831de69ea5075851f4364e9c63a
|
7
|
+
data.tar.gz: 2a0ef95fdcd168a05026200e1a8426a58e30ce85fd1e6eb55103224a3e415acfa596aa362848dd535c1d263fd8fcbb3e911b0843d2e6be5af70f2e9ed4dfee83
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1099
|
data/lib/v20210820/models.rb
CHANGED
@@ -2381,10 +2381,14 @@ module TencentCloud
|
|
2381
2381
|
# @type AlarmPolicy: Array
|
2382
2382
|
# @param PolicyDealType: 护栏处理方式,1--顺序回滚,2--演练暂停
|
2383
2383
|
# @type PolicyDealType: Integer
|
2384
|
+
# @param TemplateScenario: 演练场景
|
2385
|
+
# @type TemplateScenario: Array
|
2386
|
+
# @param TemplatePurpose: 演练目的
|
2387
|
+
# @type TemplatePurpose: Array
|
2384
2388
|
|
2385
|
-
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags, :TemplateSource, :ApmServiceList, :AlarmPolicy, :PolicyDealType
|
2389
|
+
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags, :TemplateSource, :ApmServiceList, :AlarmPolicy, :PolicyDealType, :TemplateScenario, :TemplatePurpose
|
2386
2390
|
|
2387
|
-
def initialize(templateid=nil, templatetitle=nil, templatedescription=nil, templatetag=nil, templateisused=nil, templatecreatetime=nil, templateupdatetime=nil, templatemode=nil, templatepauseduration=nil, templateowneruin=nil, templateregionid=nil, templategroups=nil, templatemonitors=nil, templatepolicy=nil, tags=nil, templatesource=nil, apmservicelist=nil, alarmpolicy=nil, policydealtype=nil)
|
2391
|
+
def initialize(templateid=nil, templatetitle=nil, templatedescription=nil, templatetag=nil, templateisused=nil, templatecreatetime=nil, templateupdatetime=nil, templatemode=nil, templatepauseduration=nil, templateowneruin=nil, templateregionid=nil, templategroups=nil, templatemonitors=nil, templatepolicy=nil, tags=nil, templatesource=nil, apmservicelist=nil, alarmpolicy=nil, policydealtype=nil, templatescenario=nil, templatepurpose=nil)
|
2388
2392
|
@TemplateId = templateid
|
2389
2393
|
@TemplateTitle = templatetitle
|
2390
2394
|
@TemplateDescription = templatedescription
|
@@ -2404,6 +2408,8 @@ module TencentCloud
|
|
2404
2408
|
@ApmServiceList = apmservicelist
|
2405
2409
|
@AlarmPolicy = alarmpolicy
|
2406
2410
|
@PolicyDealType = policydealtype
|
2411
|
+
@TemplateScenario = templatescenario
|
2412
|
+
@TemplatePurpose = templatepurpose
|
2407
2413
|
end
|
2408
2414
|
|
2409
2415
|
def deserialize(params)
|
@@ -2457,6 +2463,22 @@ module TencentCloud
|
|
2457
2463
|
end
|
2458
2464
|
@AlarmPolicy = params['AlarmPolicy']
|
2459
2465
|
@PolicyDealType = params['PolicyDealType']
|
2466
|
+
unless params['TemplateScenario'].nil?
|
2467
|
+
@TemplateScenario = []
|
2468
|
+
params['TemplateScenario'].each do |i|
|
2469
|
+
tasktarget_tmp = TaskTarget.new
|
2470
|
+
tasktarget_tmp.deserialize(i)
|
2471
|
+
@TemplateScenario << tasktarget_tmp
|
2472
|
+
end
|
2473
|
+
end
|
2474
|
+
unless params['TemplatePurpose'].nil?
|
2475
|
+
@TemplatePurpose = []
|
2476
|
+
params['TemplatePurpose'].each do |i|
|
2477
|
+
tasktarget_tmp = TaskTarget.new
|
2478
|
+
tasktarget_tmp.deserialize(i)
|
2479
|
+
@TemplatePurpose << tasktarget_tmp
|
2480
|
+
end
|
2481
|
+
end
|
2460
2482
|
end
|
2461
2483
|
end
|
2462
2484
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cfg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1099
|
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-07-
|
11
|
+
date: 2025-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|