tencentcloud-sdk-cvm 1.0.301 → 1.0.304

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/v20170312/models.rb +18 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7714aa44a41054f769af6e3df16ccbf2735e0c8a
4
- data.tar.gz: b50bdcac7f683968cbf2d509a2b1e0aaac7ed1bb
3
+ metadata.gz: 6a9486c7a523c173cdd7793f928abcc88d93c634
4
+ data.tar.gz: cb846439869ecd7c72934cb66c5186eddc43a17d
5
5
  SHA512:
6
- metadata.gz: 0465dc6dc6e003bae70b311ca229fffcae4c1e9915461ae94713288ec51cad425f132acb67dbe8b1a91856fa079f79a1dcabf0325161cc5c2e9dedf15b432d29
7
- data.tar.gz: ce560fce9dbed022d1e040eef0a0b6d5c331a0f8f787c2e6d1795a6e078b1428004ccc366991ab40d4a98f645acee652ce0a7c111931adf7ba6894acdf276580
6
+ metadata.gz: c8da42cb10c9c96ff6ca2718526755fa7a9365f9214f945c036f311e34559762ab9dd2af2129d05a65fda08bc4f053fd79dffa53fe75a03ba46a25b848e38268
7
+ data.tar.gz: 018dcdecb04e14724511b03eff9f7f7b6ca08d46d4bf0ff224d0184539cbe3f939acb9eb01c142cbda9da3df56a050fb5a178475f3f03ce74515c1cf0ae57ba7
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.301
1
+ 1.0.304
@@ -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,14 +1,14 @@
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.304
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-04-20 00:00:00.000000000 Z
11
+ date: 2022-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common