tencentcloud-sdk-cvm 3.0.388 → 3.0.395

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 +14 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d97839861761e11bbc926a84bbb1a1a1e060c76d
4
- data.tar.gz: 3c7bc5dd79800d26949cc28539bb868f7e9da2ae
3
+ metadata.gz: d5c877a3f565944dace078ec8426c672fa5f9afa
4
+ data.tar.gz: 61234aa65fb23dc65b537b30b6c0ad770306bbe6
5
5
  SHA512:
6
- metadata.gz: f80ccb8eb50179312c98fe2ac756533f02a0eaa8c591bcb9c52e432fdfa7fa2a39809657ad146ae11fa86260626352f076ede68a30467385af521d8af4e68295
7
- data.tar.gz: 51da3b8f3d1627a9c173c07d022b630a921d1cb40e25513495248fe645eb6484f6404f8aa2ef8db8288fd4bf327412efd106a3757026864fe312cd3a464d6dd4
6
+ metadata.gz: 75f23f66441e99872e9d84b4553d4d2bdc1864129af948982297284bedbd7efa31f87c94fa0d3e0d4c96c684e88bd91787ef3d0b87668b795cdd177d5c6ae889
7
+ data.tar.gz: 4af7ba765386cb855b96d2a06a89e7c09068755630b4bdc3da609c7c80d34d2c917a67fa981f45e3715dc323ac18e56d69be6dbb48e5cab2bbc926eede3e8299
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.388
1
+ 3.0.395
@@ -7474,22 +7474,28 @@ module TencentCloud
7474
7474
  # @param ImageIds: 镜像ID列表 ,镜像ID可以通过如下方式获取:<br><li>通过[DescribeImages](https://cloud.tencent.com/document/api/213/15715)接口返回的`ImageId`获取。<br><li>通过[镜像控制台](https://console.cloud.tencent.com/cvm/image)获取。<br>镜像ID必须满足限制:<br><li>镜像ID对应的镜像状态必须为`NORMAL`。<br>镜像状态请参考[镜像数据表](https://cloud.tencent.com/document/product/213/15753#Image)。
7475
7475
  # @type ImageIds: Array
7476
7476
  # @param DestinationRegions: 目的同步地域列表;必须满足限制:<br><li>不能为源地域,<br><li>必须是一个合法的Region。<br><li>暂不支持部分地域同步。<br>具体地域参数请参考[Region](https://cloud.tencent.com/document/product/213/6091)。
7477
+
7478
+ # 如果是共享镜像,则目的同步地域仅支持源地域,表示将共享镜像复制为同地域的自定义镜像。
7477
7479
  # @type DestinationRegions: Array
7478
- # @param DryRun: 检测是否支持发起同步镜像
7480
+ # @param DryRun: 检测是否支持发起同步镜像。
7479
7481
  # @type DryRun: Boolean
7482
+ # @param ImageName: 目标镜像名称。
7483
+ # @type ImageName: String
7480
7484
 
7481
- attr_accessor :ImageIds, :DestinationRegions, :DryRun
7485
+ attr_accessor :ImageIds, :DestinationRegions, :DryRun, :ImageName
7482
7486
 
7483
- def initialize(imageids=nil, destinationregions=nil, dryrun=nil)
7487
+ def initialize(imageids=nil, destinationregions=nil, dryrun=nil, imagename=nil)
7484
7488
  @ImageIds = imageids
7485
7489
  @DestinationRegions = destinationregions
7486
7490
  @DryRun = dryrun
7491
+ @ImageName = imagename
7487
7492
  end
7488
7493
 
7489
7494
  def deserialize(params)
7490
7495
  @ImageIds = params['ImageIds']
7491
7496
  @DestinationRegions = params['DestinationRegions']
7492
7497
  @DryRun = params['DryRun']
7498
+ @ImageName = params['ImageName']
7493
7499
  end
7494
7500
  end
7495
7501
 
@@ -7675,6 +7681,7 @@ module TencentCloud
7675
7681
  # <li> ap-singapore-1 </li>
7676
7682
  # <li> ap-singapore-2 </li>
7677
7683
  # <li> ap-singapore-3 </li>
7684
+ # <li>ap-singapore-4 </li>
7678
7685
  # <li> ap-shanghai-fsi-1 </li>
7679
7686
  # <li> ap-shanghai-fsi-2 </li>
7680
7687
  # <li> ap-shanghai-fsi-3 </li>
@@ -7685,6 +7692,7 @@ module TencentCloud
7685
7692
  # <li> ap-shanghai-3 </li>
7686
7693
  # <li> ap-shanghai-4 </li>
7687
7694
  # <li> ap-shanghai-5 </li>
7695
+ # <li> ap-shanghai-8 </li>
7688
7696
  # <li> ap-mumbai-1 </li>
7689
7697
  # <li> ap-mumbai-2 </li>
7690
7698
  # <li> eu-moscow-1 </li>
@@ -7704,7 +7712,10 @@ module TencentCloud
7704
7712
  # <li> na-ashburn-2 </li>
7705
7713
  # <li> ap-nanjing-1 </li>
7706
7714
  # <li> ap-nanjing-2 </li>
7715
+ # <li> ap-nanjing-3 </li>
7707
7716
  # <li> sa-saopaulo-1</li>
7717
+ # <li> ap-jakarta-1 </li>
7718
+ # <li> ap-jakarta-2 </li>
7708
7719
  # @type Zone: String
7709
7720
  # @param ZoneName: 可用区描述,例如,广州三区
7710
7721
  # @type ZoneName: String
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: 3.0.388
4
+ version: 3.0.395
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-08-16 00:00:00.000000000 Z
11
+ date: 2022-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common