tencentcloud-sdk-cvm 1.0.301 → 1.0.302

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +18 -4
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7714aa44a41054f769af6e3df16ccbf2735e0c8a
4
- data.tar.gz: b50bdcac7f683968cbf2d509a2b1e0aaac7ed1bb
3
+ metadata.gz: baa369d085539b91043a2469f88014d0d841c448
4
+ data.tar.gz: 731c2510c1d75c1585d96caa9f8d497d9fa2ba75
5
5
  SHA512:
6
- metadata.gz: 0465dc6dc6e003bae70b311ca229fffcae4c1e9915461ae94713288ec51cad425f132acb67dbe8b1a91856fa079f79a1dcabf0325161cc5c2e9dedf15b432d29
7
- data.tar.gz: ce560fce9dbed022d1e040eef0a0b6d5c331a0f8f787c2e6d1795a6e078b1428004ccc366991ab40d4a98f645acee652ce0a7c111931adf7ba6894acdf276580
6
+ metadata.gz: 6b0ee21ec1819b964dc440a063e6e4cae114419f9f69d4588a9355e2cb6d220618df86ee6d3a17b5b15c8f4513dfbd3e59ba5c4f6e5e19b70457cafb5a0281e3
7
+ data.tar.gz: 8389afca3239259d4c3f1eac9ea82ba92b2caaba3f5aba39ac54ef7a7b760d611ad4bd8966f2cdfab8129d5ab68dd83b92233a571d4af290045fc4a955c424ba
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.301
1
+ 1.0.302
@@ -966,15 +966,23 @@ module TencentCloud
966
966
  class DeleteImagesRequest < TencentCloud::Common::AbstractModel
967
967
  # @param ImageIds: 准备删除的镜像Id列表
968
968
  # @type ImageIds: Array
969
+ # @param DeleteBindedSnap: 是否删除镜像关联的快照
970
+ # @type DeleteBindedSnap: Boolean
971
+ # @param DryRun: 检测是否支持删除镜像
972
+ # @type DryRun: Boolean
969
973
 
970
- attr_accessor :ImageIds
974
+ attr_accessor :ImageIds, :DeleteBindedSnap, :DryRun
971
975
 
972
- def initialize(imageids=nil)
976
+ def initialize(imageids=nil, deletebindedsnap=nil, dryrun=nil)
973
977
  @ImageIds = imageids
978
+ @DeleteBindedSnap = deletebindedsnap
979
+ @DryRun = dryrun
974
980
  end
975
981
 
976
982
  def deserialize(params)
977
983
  @ImageIds = params['ImageIds']
984
+ @DeleteBindedSnap = params['DeleteBindedSnap']
985
+ @DryRun = params['DryRun']
978
986
  end
979
987
  end
980
988
 
@@ -1415,6 +1423,8 @@ module TencentCloud
1415
1423
  # <p style="padding-left: 30px;">按照【<strong>镜像平台</strong>】进行过滤,如CentOS。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
1416
1424
  # <li><strong>tag-key</strong></li>
1417
1425
  # <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
1426
+ # <li><strong>tag-value</strong></li>
1427
+ # <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
1418
1428
  # <li><strong>tag:tag-key</strong></li>
1419
1429
  # <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
1420
1430
  # @type Filters: Array
@@ -6814,17 +6824,21 @@ module TencentCloud
6814
6824
  # @type ImageIds: Array
6815
6825
  # @param DestinationRegions: 目的同步地域列表;必须满足限制:<br><li>不能为源地域,<br><li>必须是一个合法的Region。<br><li>暂不支持部分地域同步。<br>具体地域参数请参考[Region](https://cloud.tencent.com/document/product/213/6091)。
6816
6826
  # @type DestinationRegions: Array
6827
+ # @param DryRun: 检测是否支持发起同步镜像
6828
+ # @type DryRun: Boolean
6817
6829
 
6818
- attr_accessor :ImageIds, :DestinationRegions
6830
+ attr_accessor :ImageIds, :DestinationRegions, :DryRun
6819
6831
 
6820
- def initialize(imageids=nil, destinationregions=nil)
6832
+ def initialize(imageids=nil, destinationregions=nil, dryrun=nil)
6821
6833
  @ImageIds = imageids
6822
6834
  @DestinationRegions = destinationregions
6835
+ @DryRun = dryrun
6823
6836
  end
6824
6837
 
6825
6838
  def deserialize(params)
6826
6839
  @ImageIds = params['ImageIds']
6827
6840
  @DestinationRegions = params['DestinationRegions']
6841
+ @DryRun = params['DryRun']
6828
6842
  end
6829
6843
  end
6830
6844
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.301
4
+ version: 1.0.302
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud