tencentcloud-sdk-cat 1.0.315 → 1.0.318

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/v20180409/models.rb +24 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1e3eb47055e95e389f78d605e04e1f5e5674356
4
- data.tar.gz: bacbb4019133c86cdd4e89bb92be7060868de95b
3
+ metadata.gz: 04bab19cd6c0ba76f7ae8cf32b89aa70f999a7d1
4
+ data.tar.gz: 1edf96385f1c2cfcb97254563321281bb43f46bf
5
5
  SHA512:
6
- metadata.gz: cb13943ed55a6367dfaf8c5fe4bba9021f4772891286c59095d6080aa7c343e045d566f6b8ada58aa088b86d31733920e17184ceaf5e0c1cd0fa4fca5fdf0621
7
- data.tar.gz: 09b75fe640020e66a6be13d1821148e1bd0d8764c97ba48cdd1b9465d3deca124b68f092c2654992f1b3251da34b060e299b62ca48dced1526955d51e742391c
6
+ metadata.gz: 13fffa5ba66d98a677b6f69dad3d99a856f7a34a6cf09bf5b15744a8351baefb52960fdfd948dd65fcf9b6cec832cec57c3a8ffa2fc0d7148a859da9258fe6fc
7
+ data.tar.gz: 7b5815a06b6e2502e0cb7631861d2696022166d0c4d89314274bcfaec665cebed00f165d6381c23bc91cb5b768cb2eccf5df5c8499a9216fdbc3ea9ddf19ca81
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.315
1
+ 1.0.318
@@ -589,10 +589,12 @@ module TencentCloud
589
589
  # @type ProbeType: Integer
590
590
  # @param PluginSource: 插件类型
591
591
  # @type PluginSource: String
592
+ # @param ClientNum: 客户度ID
593
+ # @type ClientNum: String
592
594
 
593
- attr_accessor :BatchTasks, :TaskType, :Nodes, :Interval, :Parameters, :TaskCategory, :Cron, :Tag, :ProbeType, :PluginSource
595
+ attr_accessor :BatchTasks, :TaskType, :Nodes, :Interval, :Parameters, :TaskCategory, :Cron, :Tag, :ProbeType, :PluginSource, :ClientNum
594
596
 
595
- def initialize(batchtasks=nil, tasktype=nil, nodes=nil, interval=nil, parameters=nil, taskcategory=nil, cron=nil, tag=nil, probetype=nil, pluginsource=nil)
597
+ def initialize(batchtasks=nil, tasktype=nil, nodes=nil, interval=nil, parameters=nil, taskcategory=nil, cron=nil, tag=nil, probetype=nil, pluginsource=nil, clientnum=nil)
596
598
  @BatchTasks = batchtasks
597
599
  @TaskType = tasktype
598
600
  @Nodes = nodes
@@ -603,6 +605,7 @@ module TencentCloud
603
605
  @Tag = tag
604
606
  @ProbeType = probetype
605
607
  @PluginSource = pluginsource
608
+ @ClientNum = clientnum
606
609
  end
607
610
 
608
611
  def deserialize(params)
@@ -630,21 +633,26 @@ module TencentCloud
630
633
  end
631
634
  @ProbeType = params['ProbeType']
632
635
  @PluginSource = params['PluginSource']
636
+ @ClientNum = params['ClientNum']
633
637
  end
634
638
  end
635
639
 
636
640
  # CreateProbeTasks返回参数结构体
637
641
  class CreateProbeTasksResponse < TencentCloud::Common::AbstractModel
642
+ # @param TaskIDs: 任务ID列表
643
+ # @type TaskIDs: Array
638
644
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
639
645
  # @type RequestId: String
640
646
 
641
- attr_accessor :RequestId
647
+ attr_accessor :TaskIDs, :RequestId
642
648
 
643
- def initialize(requestid=nil)
649
+ def initialize(taskids=nil, requestid=nil)
650
+ @TaskIDs = taskids
644
651
  @RequestId = requestid
645
652
  end
646
653
 
647
654
  def deserialize(params)
655
+ @TaskIDs = params['TaskIDs']
648
656
  @RequestId = params['RequestId']
649
657
  end
650
658
  end
@@ -2734,10 +2742,16 @@ module TencentCloud
2734
2742
  # <li> 3 = 国外 </li>
2735
2743
  # 注意:此字段可能返回 null,表示取不到有效值。
2736
2744
  # @type Location: Integer
2745
+ # @param CodeType: 节点类型
2746
+ # 注意:此字段可能返回 null,表示取不到有效值。
2747
+ # @type CodeType: String
2748
+ # @param NodeDefineStatus: 节点状态:1-运行,2-下线
2749
+ # 注意:此字段可能返回 null,表示取不到有效值。
2750
+ # @type NodeDefineStatus: Integer
2737
2751
 
2738
- attr_accessor :Name, :Code, :Type, :NetService, :District, :City, :IPType, :Location
2752
+ attr_accessor :Name, :Code, :Type, :NetService, :District, :City, :IPType, :Location, :CodeType, :NodeDefineStatus
2739
2753
 
2740
- def initialize(name=nil, code=nil, type=nil, netservice=nil, district=nil, city=nil, iptype=nil, location=nil)
2754
+ def initialize(name=nil, code=nil, type=nil, netservice=nil, district=nil, city=nil, iptype=nil, location=nil, codetype=nil, nodedefinestatus=nil)
2741
2755
  @Name = name
2742
2756
  @Code = code
2743
2757
  @Type = type
@@ -2746,6 +2760,8 @@ module TencentCloud
2746
2760
  @City = city
2747
2761
  @IPType = iptype
2748
2762
  @Location = location
2763
+ @CodeType = codetype
2764
+ @NodeDefineStatus = nodedefinestatus
2749
2765
  end
2750
2766
 
2751
2767
  def deserialize(params)
@@ -2757,6 +2773,8 @@ module TencentCloud
2757
2773
  @City = params['City']
2758
2774
  @IPType = params['IPType']
2759
2775
  @Location = params['Location']
2776
+ @CodeType = params['CodeType']
2777
+ @NodeDefineStatus = params['NodeDefineStatus']
2760
2778
  end
2761
2779
  end
2762
2780
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.315
4
+ version: 1.0.318
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-19 00:00:00.000000000 Z
11
+ date: 2022-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common