tencentcloud-sdk-cfg 3.0.1094 → 3.0.1103

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/v20210820/models.rb +30 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 220eea3f3d7bfb531baba0453f76aaccc76863b6
4
- data.tar.gz: a741934577c2106eba4eb73a0dc05f92723d1122
3
+ metadata.gz: 6e5db8d27db1a36b78b9da1bc7e7bebc7cb91f4c
4
+ data.tar.gz: 77492fb35d5ebd15c847159dcbad4d914349154c
5
5
  SHA512:
6
- metadata.gz: 3dcce347787a6f889652d205f68d0fde28536ba021173d3d50297ba1f9f91baa815f967f8088cfa61bd1b7ebc6030fb7e79f6ccd593f1fd8cd2333b14145058f
7
- data.tar.gz: 9a496246dc2dc5a64776ccf9767d8f7f6d9b10ae34ece42f134fe06ed439ba9db7d70d423110c85817b24f61e6dccc5c6b8de1a0e0598a545e6a54d15ac30338
6
+ metadata.gz: 591549cdc69af07e37bdd3e99b0f92ff70ce1ce06b96d0b712f63a7a2e7787f70857e2b3c9b481cb0e840a5a804129897dd9470160259dba287f5be979598da1
7
+ data.tar.gz: af2473647dd830cf13c14d9364a340910f6d4a7acad374572a2a60dfbab7c10f99de73b08b5b49cea047fa6be594f6946441115cadba023816c6f0ff316d6ef3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1103
@@ -2322,14 +2322,17 @@ module TencentCloud
2322
2322
  # @type Type: Integer
2323
2323
  # @param Source: 1:平台 2:用户个人
2324
2324
  # @type Source: Integer
2325
+ # @param TargetStatus: 目标标签是否已被删除
2326
+ # @type TargetStatus: Integer
2325
2327
 
2326
- attr_accessor :TargetId, :TargetDesc, :Type, :Source
2328
+ attr_accessor :TargetId, :TargetDesc, :Type, :Source, :TargetStatus
2327
2329
 
2328
- def initialize(targetid=nil, targetdesc=nil, type=nil, source=nil)
2330
+ def initialize(targetid=nil, targetdesc=nil, type=nil, source=nil, targetstatus=nil)
2329
2331
  @TargetId = targetid
2330
2332
  @TargetDesc = targetdesc
2331
2333
  @Type = type
2332
2334
  @Source = source
2335
+ @TargetStatus = targetstatus
2333
2336
  end
2334
2337
 
2335
2338
  def deserialize(params)
@@ -2337,6 +2340,7 @@ module TencentCloud
2337
2340
  @TargetDesc = params['TargetDesc']
2338
2341
  @Type = params['Type']
2339
2342
  @Source = params['Source']
2343
+ @TargetStatus = params['TargetStatus']
2340
2344
  end
2341
2345
  end
2342
2346
 
@@ -2381,10 +2385,14 @@ module TencentCloud
2381
2385
  # @type AlarmPolicy: Array
2382
2386
  # @param PolicyDealType: 护栏处理方式,1--顺序回滚,2--演练暂停
2383
2387
  # @type PolicyDealType: Integer
2388
+ # @param TemplateScenario: 演练场景
2389
+ # @type TemplateScenario: Array
2390
+ # @param TemplatePurpose: 演练目的
2391
+ # @type TemplatePurpose: Array
2384
2392
 
2385
- attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags, :TemplateSource, :ApmServiceList, :AlarmPolicy, :PolicyDealType
2393
+ attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags, :TemplateSource, :ApmServiceList, :AlarmPolicy, :PolicyDealType, :TemplateScenario, :TemplatePurpose
2386
2394
 
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)
2395
+ 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
2396
  @TemplateId = templateid
2389
2397
  @TemplateTitle = templatetitle
2390
2398
  @TemplateDescription = templatedescription
@@ -2404,6 +2412,8 @@ module TencentCloud
2404
2412
  @ApmServiceList = apmservicelist
2405
2413
  @AlarmPolicy = alarmpolicy
2406
2414
  @PolicyDealType = policydealtype
2415
+ @TemplateScenario = templatescenario
2416
+ @TemplatePurpose = templatepurpose
2407
2417
  end
2408
2418
 
2409
2419
  def deserialize(params)
@@ -2457,6 +2467,22 @@ module TencentCloud
2457
2467
  end
2458
2468
  @AlarmPolicy = params['AlarmPolicy']
2459
2469
  @PolicyDealType = params['PolicyDealType']
2470
+ unless params['TemplateScenario'].nil?
2471
+ @TemplateScenario = []
2472
+ params['TemplateScenario'].each do |i|
2473
+ tasktarget_tmp = TaskTarget.new
2474
+ tasktarget_tmp.deserialize(i)
2475
+ @TemplateScenario << tasktarget_tmp
2476
+ end
2477
+ end
2478
+ unless params['TemplatePurpose'].nil?
2479
+ @TemplatePurpose = []
2480
+ params['TemplatePurpose'].each do |i|
2481
+ tasktarget_tmp = TaskTarget.new
2482
+ tasktarget_tmp.deserialize(i)
2483
+ @TemplatePurpose << tasktarget_tmp
2484
+ end
2485
+ end
2460
2486
  end
2461
2487
  end
2462
2488
 
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.1094
4
+ version: 3.0.1103
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-05 00:00:00.000000000 Z
11
+ date: 2025-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common