tencentcloud-sdk-monitor 1.0.337 → 1.0.340

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/v20180724/models.rb +17 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d2d0e926ced1e42f030e3888743d7ec2df7e469e
4
- data.tar.gz: 7433e9fee29c7b2c443408a8c698d6e557c88a97
3
+ metadata.gz: c633bfec27e344fd55f25f142844721dd8f5dbdb
4
+ data.tar.gz: c77a291486aa516a535a97b9ddf87da979da2648
5
5
  SHA512:
6
- metadata.gz: 6c6aecf6c8e6479c53fb0f42c7cfe81f753142d4ce1aa0c9f1539562221dd748831a8d0349659c44adedeab3857e159e377f5803d5c8faea65c8ffb6eb03f518
7
- data.tar.gz: b6d5586c471e6d6ec20188ea28c8a2aa9cef0fc2640602fe0692ff17d82a50e569752eaa87bf9f7287896c39a57e35f1621771ce133bd1cf7b731cd3eedb5f91
6
+ metadata.gz: 87f5beacfc7ca1c83fb01be46bc10cea035240e659e8a19bd9174810231ac1a783ea00d79f2777181d9ab27d408cf7b5c082bc7c8315735fa15eca1c0c89405b
7
+ data.tar.gz: 6750a2ab8f8e2b019efb463ec4cc060774b2d1905b1f330b8d0f9a20d3b2f75ea943038546cefc3924bee06c08414b3bb12422d4541fa5c140e55047e3948941
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.337
1
+ 1.0.340
@@ -788,34 +788,45 @@ module TencentCloud
788
788
  # @type PolicyId: String
789
789
  # @param GroupId: 用于实例、实例组绑定和解绑接口(BindingPolicyObject、UnBindingAllPolicyObject、UnBindingPolicyObject)的策略 ID
790
790
  # @type GroupId: String
791
- # @param Tag: 策略标签
792
- # @type Tag: :class:`Tencentcloud::Monitor.v20180724.models.PolicyTag`
793
791
  # @param ServiceType: 产品类型
794
792
  # @type ServiceType: String
793
+ # @param Tag: 策略标签
794
+ # @type Tag: :class:`Tencentcloud::Monitor.v20180724.models.PolicyTag`
795
795
  # @param InstanceGroupId: 实例分组ID
796
796
  # @type InstanceGroupId: Integer
797
+ # @param BatchTag: 批量绑定标签
798
+ # @type BatchTag: Array
797
799
 
798
- attr_accessor :Module, :PolicyId, :GroupId, :Tag, :ServiceType, :InstanceGroupId
800
+ attr_accessor :Module, :PolicyId, :GroupId, :ServiceType, :Tag, :InstanceGroupId, :BatchTag
799
801
 
800
- def initialize(_module=nil, policyid=nil, groupid=nil, tag=nil, servicetype=nil, instancegroupid=nil)
802
+ def initialize(_module=nil, policyid=nil, groupid=nil, servicetype=nil, tag=nil, instancegroupid=nil, batchtag=nil)
801
803
  @Module = _module
802
804
  @PolicyId = policyid
803
805
  @GroupId = groupid
804
- @Tag = tag
805
806
  @ServiceType = servicetype
807
+ @Tag = tag
806
808
  @InstanceGroupId = instancegroupid
809
+ @BatchTag = batchtag
807
810
  end
808
811
 
809
812
  def deserialize(params)
810
813
  @Module = params['Module']
811
814
  @PolicyId = params['PolicyId']
812
815
  @GroupId = params['GroupId']
816
+ @ServiceType = params['ServiceType']
813
817
  unless params['Tag'].nil?
814
818
  @Tag = PolicyTag.new
815
819
  @Tag.deserialize(params['Tag'])
816
820
  end
817
- @ServiceType = params['ServiceType']
818
821
  @InstanceGroupId = params['InstanceGroupId']
822
+ unless params['BatchTag'].nil?
823
+ @BatchTag = []
824
+ params['BatchTag'].each do |i|
825
+ policytag_tmp = PolicyTag.new
826
+ policytag_tmp.deserialize(i)
827
+ @BatchTag << policytag_tmp
828
+ end
829
+ end
819
830
  end
820
831
  end
821
832
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-monitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.337
4
+ version: 1.0.340
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-06-20 00:00:00.000000000 Z
11
+ date: 2022-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common