tencentcloud-sdk-ecm 3.0.584 → 3.0.585

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/v20190719/models.rb +23 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 256ce8f88eea64813fbbc1d9873bacbd3deecfdc
4
- data.tar.gz: a8f5fa3600e08abf3e5bc9bc157bfa9f8651f38e
3
+ metadata.gz: 57a4dbae4fe84955e6f27595f7de67ce48b96383
4
+ data.tar.gz: 9cb1e33be58c0a15e3a70d8451a53a0134c5c5dd
5
5
  SHA512:
6
- metadata.gz: 9803efff8675484b6d76073b3f9b8b7919bde9980271c11983e9084617df9aaddd677f6f2cee6a651c621502cf96507b87fc3633fef9fffcbd406a1ad525694d
7
- data.tar.gz: dbfac0b8ffbd3f3c766c934de9e0b8efc0d7c4cabc58cab9e58b622ae508c8c37136d53a1f76d017464311c69cf7090e0c94ac6e6f059264192d9dc917cf9a41
6
+ metadata.gz: f139ad92e7272fdcddefac447312114ca6b4f644dfbd1f583ea33f607625b3a934d9ce2d35a74f4d972108b1c47fb7417332e089c2fc078e06ce77c46ae849d8
7
+ data.tar.gz: 116bf128223782f8945c64243852ecc080bca8d89ea198e6c2573b3b6914aa61a22d32f65e9a070ef0ea55591c1be11ae701d68c7a7232dd54e74f5b0e2916da
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.584
1
+ 3.0.585
@@ -5090,19 +5090,28 @@ module TencentCloud
5090
5090
  # @type DiskId: String
5091
5091
  # @param DiskSize: 磁盘大小(GB)
5092
5092
  # @type DiskSize: Integer
5093
+ # @param DeleteWithInstance: 是否随实例删除。
5094
+ # @type DeleteWithInstance: Boolean
5095
+ # @param SnapshotId: 快照ID
5096
+ # 注意:此字段可能返回 null,表示取不到有效值。
5097
+ # @type SnapshotId: String
5093
5098
 
5094
- attr_accessor :DiskType, :DiskId, :DiskSize
5099
+ attr_accessor :DiskType, :DiskId, :DiskSize, :DeleteWithInstance, :SnapshotId
5095
5100
 
5096
- def initialize(disktype=nil, diskid=nil, disksize=nil)
5101
+ def initialize(disktype=nil, diskid=nil, disksize=nil, deletewithinstance=nil, snapshotid=nil)
5097
5102
  @DiskType = disktype
5098
5103
  @DiskId = diskid
5099
5104
  @DiskSize = disksize
5105
+ @DeleteWithInstance = deletewithinstance
5106
+ @SnapshotId = snapshotid
5100
5107
  end
5101
5108
 
5102
5109
  def deserialize(params)
5103
5110
  @DiskType = params['DiskType']
5104
5111
  @DiskId = params['DiskId']
5105
5112
  @DiskSize = params['DiskSize']
5113
+ @DeleteWithInstance = params['DeleteWithInstance']
5114
+ @SnapshotId = params['SnapshotId']
5106
5115
  end
5107
5116
  end
5108
5117
 
@@ -7792,10 +7801,12 @@ module TencentCloud
7792
7801
  # @type SystemDisk: :class:`Tencentcloud::Ecm.v20190719.models.SystemDisk`
7793
7802
  # @param DataDisks: 数据盘信息。
7794
7803
  # @type DataDisks: Array
7804
+ # @param DisableWanIp: 是否禁止外网ip
7805
+ # @type DisableWanIp: Integer
7795
7806
 
7796
- attr_accessor :ModuleId, :ModuleName, :ModuleState, :DefaultSystemDiskSize, :DefaultDataDiskSize, :InstanceTypeConfig, :DefaultImage, :CreateTime, :DefaultBandwidth, :TagSet, :CloseIpDirect, :SecurityGroupIds, :DefaultBandwidthIn, :UserData, :SystemDisk, :DataDisks
7807
+ attr_accessor :ModuleId, :ModuleName, :ModuleState, :DefaultSystemDiskSize, :DefaultDataDiskSize, :InstanceTypeConfig, :DefaultImage, :CreateTime, :DefaultBandwidth, :TagSet, :CloseIpDirect, :SecurityGroupIds, :DefaultBandwidthIn, :UserData, :SystemDisk, :DataDisks, :DisableWanIp
7797
7808
 
7798
- def initialize(moduleid=nil, modulename=nil, modulestate=nil, defaultsystemdisksize=nil, defaultdatadisksize=nil, instancetypeconfig=nil, defaultimage=nil, createtime=nil, defaultbandwidth=nil, tagset=nil, closeipdirect=nil, securitygroupids=nil, defaultbandwidthin=nil, userdata=nil, systemdisk=nil, datadisks=nil)
7809
+ def initialize(moduleid=nil, modulename=nil, modulestate=nil, defaultsystemdisksize=nil, defaultdatadisksize=nil, instancetypeconfig=nil, defaultimage=nil, createtime=nil, defaultbandwidth=nil, tagset=nil, closeipdirect=nil, securitygroupids=nil, defaultbandwidthin=nil, userdata=nil, systemdisk=nil, datadisks=nil, disablewanip=nil)
7799
7810
  @ModuleId = moduleid
7800
7811
  @ModuleName = modulename
7801
7812
  @ModuleState = modulestate
@@ -7812,6 +7823,7 @@ module TencentCloud
7812
7823
  @UserData = userdata
7813
7824
  @SystemDisk = systemdisk
7814
7825
  @DataDisks = datadisks
7826
+ @DisableWanIp = disablewanip
7815
7827
  end
7816
7828
 
7817
7829
  def deserialize(params)
@@ -7854,6 +7866,7 @@ module TencentCloud
7854
7866
  @DataDisks << datadisk_tmp
7855
7867
  end
7856
7868
  end
7869
+ @DisableWanIp = params['DisableWanIp']
7857
7870
  end
7858
7871
  end
7859
7872
 
@@ -8227,10 +8240,12 @@ module TencentCloud
8227
8240
  # @type ISPSet: Array
8228
8241
  # @param ISPNum: 运营商数量。
8229
8242
  # @type ISPNum: Integer
8243
+ # @param LBSupported: 节点是否支持LB
8244
+ # @type LBSupported: Boolean
8230
8245
 
8231
- attr_accessor :ZoneInfo, :Country, :Area, :Province, :City, :RegionInfo, :ISPSet, :ISPNum
8246
+ attr_accessor :ZoneInfo, :Country, :Area, :Province, :City, :RegionInfo, :ISPSet, :ISPNum, :LBSupported
8232
8247
 
8233
- def initialize(zoneinfo=nil, country=nil, area=nil, province=nil, city=nil, regioninfo=nil, ispset=nil, ispnum=nil)
8248
+ def initialize(zoneinfo=nil, country=nil, area=nil, province=nil, city=nil, regioninfo=nil, ispset=nil, ispnum=nil, lbsupported=nil)
8234
8249
  @ZoneInfo = zoneinfo
8235
8250
  @Country = country
8236
8251
  @Area = area
@@ -8239,6 +8254,7 @@ module TencentCloud
8239
8254
  @RegionInfo = regioninfo
8240
8255
  @ISPSet = ispset
8241
8256
  @ISPNum = ispnum
8257
+ @LBSupported = lbsupported
8242
8258
  end
8243
8259
 
8244
8260
  def deserialize(params)
@@ -8275,6 +8291,7 @@ module TencentCloud
8275
8291
  end
8276
8292
  end
8277
8293
  @ISPNum = params['ISPNum']
8294
+ @LBSupported = params['LBSupported']
8278
8295
  end
8279
8296
  end
8280
8297
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ecm
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.584
4
+ version: 3.0.585
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-05 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common