tencentcloud-sdk-cvm 3.0.1075 → 3.0.1092
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +21 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3869e2be5426d477d88493686cbc1392782ae47
|
4
|
+
data.tar.gz: cf8c178fe8b979e42c77795dec2dd30fa22bf4f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6bb5716fdd77d396bbdd9856617fda68fe4ccf1f308a858ba66bb3622fabb5e42b7121a30e480faee316fe0a36bb302cd3dee4b494546e74928035d81c9b291
|
7
|
+
data.tar.gz: 1ae32e3f7f8b1fc9e7195e38493de210d4bbe6f85b2696553f18115c8a776f9a54f502fd4c892c0cb0923f8951d9a527dadde74ffd08b87dc0450034e27b20b7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1092
|
data/lib/v20170312/models.rb
CHANGED
@@ -2004,8 +2004,8 @@ module TencentCloud
|
|
2004
2004
|
|
2005
2005
|
attr_accessor :GroupQuota, :CurrentNum, :CvmInHostGroupQuota, :CvmInSwGroupQuota, :CvmInRackGroupQuota, :CvmInSwitchGroupQuota, :RequestId
|
2006
2006
|
extend Gem::Deprecate
|
2007
|
-
deprecate :CvmInSwGroupQuota, :none, 2025,
|
2008
|
-
deprecate :CvmInSwGroupQuota=, :none, 2025,
|
2007
|
+
deprecate :CvmInSwGroupQuota, :none, 2025, 7
|
2008
|
+
deprecate :CvmInSwGroupQuota=, :none, 2025, 7
|
2009
2009
|
|
2010
2010
|
def initialize(groupquota=nil, currentnum=nil, cvminhostgroupquota=nil, cvminswgroupquota=nil, cvminrackgroupquota=nil, cvminswitchgroupquota=nil, requestid=nil)
|
2011
2011
|
@GroupQuota = groupquota
|
@@ -3927,8 +3927,8 @@ module TencentCloud
|
|
3927
3927
|
|
3928
3928
|
attr_accessor :InstanceId, :Password, :Username, :ForceStop, :StopType
|
3929
3929
|
extend Gem::Deprecate
|
3930
|
-
deprecate :ForceStop, :none, 2025,
|
3931
|
-
deprecate :ForceStop=, :none, 2025,
|
3930
|
+
deprecate :ForceStop, :none, 2025, 7
|
3931
|
+
deprecate :ForceStop=, :none, 2025, 7
|
3932
3932
|
|
3933
3933
|
def initialize(instanceid=nil, password=nil, username=nil, forcestop=nil, stoptype=nil)
|
3934
3934
|
@InstanceId = instanceid
|
@@ -4396,8 +4396,7 @@ module TencentCloud
|
|
4396
4396
|
# CREATING-创建中
|
4397
4397
|
# NORMAL-正常
|
4398
4398
|
# CREATEFAILED-创建失败
|
4399
|
-
#
|
4400
|
-
# SYNCING-同步中
|
4399
|
+
# SYNCING-复制中
|
4401
4400
|
# IMPORTING-导入中
|
4402
4401
|
# IMPORTFAILED-导入失败
|
4403
4402
|
# @type ImageState: String
|
@@ -4983,15 +4982,18 @@ module TencentCloud
|
|
4983
4982
|
# @type LoginSettings: :class:`Tencentcloud::Cvm.v20170312.models.LoginSettings`
|
4984
4983
|
# @param EnhancedService: 增强服务。通过该参数可以指定是否开启云安全、云监控等服务。若不指定该参数,则默认开启云监控、云安全服务。
|
4985
4984
|
# @type EnhancedService: :class:`Tencentcloud::Cvm.v20170312.models.EnhancedService`
|
4985
|
+
# @param UserData: 提供给实例使用的用户数据,需要以 base64 方式编码,支持的最大数据大小为 16KB。关于获取此参数的详细介绍,请参阅[Windows](https://cloud.tencent.com/document/product/213/17526)和[Linux](https://cloud.tencent.com/document/product/213/17525)启动时运行命令。
|
4986
|
+
# @type UserData: String
|
4986
4987
|
|
4987
|
-
attr_accessor :InstanceId, :ImageId, :SystemDisk, :LoginSettings, :EnhancedService
|
4988
|
+
attr_accessor :InstanceId, :ImageId, :SystemDisk, :LoginSettings, :EnhancedService, :UserData
|
4988
4989
|
|
4989
|
-
def initialize(instanceid=nil, imageid=nil, systemdisk=nil, loginsettings=nil, enhancedservice=nil)
|
4990
|
+
def initialize(instanceid=nil, imageid=nil, systemdisk=nil, loginsettings=nil, enhancedservice=nil, userdata=nil)
|
4990
4991
|
@InstanceId = instanceid
|
4991
4992
|
@ImageId = imageid
|
4992
4993
|
@SystemDisk = systemdisk
|
4993
4994
|
@LoginSettings = loginsettings
|
4994
4995
|
@EnhancedService = enhancedservice
|
4996
|
+
@UserData = userdata
|
4995
4997
|
end
|
4996
4998
|
|
4997
4999
|
def deserialize(params)
|
@@ -5009,6 +5011,7 @@ module TencentCloud
|
|
5009
5011
|
@EnhancedService = EnhancedService.new
|
5010
5012
|
@EnhancedService.deserialize(params['EnhancedService'])
|
5011
5013
|
end
|
5014
|
+
@UserData = params['UserData']
|
5012
5015
|
end
|
5013
5016
|
end
|
5014
5017
|
|
@@ -7479,8 +7482,8 @@ module TencentCloud
|
|
7479
7482
|
|
7480
7483
|
attr_accessor :InstanceIds, :ForceReboot, :StopType
|
7481
7484
|
extend Gem::Deprecate
|
7482
|
-
deprecate :ForceReboot, :none, 2025,
|
7483
|
-
deprecate :ForceReboot=, :none, 2025,
|
7485
|
+
deprecate :ForceReboot, :none, 2025, 7
|
7486
|
+
deprecate :ForceReboot=, :none, 2025, 7
|
7484
7487
|
|
7485
7488
|
def initialize(instanceids=nil, forcereboot=nil, stoptype=nil)
|
7486
7489
|
@InstanceIds = instanceids
|
@@ -8550,10 +8553,12 @@ module TencentCloud
|
|
8550
8553
|
# @type ChcIds: Array
|
8551
8554
|
# @param DisableApiTermination: 实例销毁保护标志,表示是否允许通过api接口删除实例。取值范围:<br><li>true:表示开启实例保护,不允许通过api接口删除实例</li><br><li>false:表示关闭实例保护,允许通过api接口删除实例</li><br><br>默认取值:false。
|
8552
8555
|
# @type DisableApiTermination: Boolean
|
8556
|
+
# @param EnableJumboFrame: 实例是否开启巨型帧,取值范围:<br><li/> true:表示实例开启巨型帧,只有支持巨型帧的机型可设置为true。<br><li/>false:表示实例关闭巨型帧,只有支持巨型帧的机型可设置为false。<br> 支持巨型帧的实例规格: [实例规格](https://cloud.tencent.com/document/product/213/11518)
|
8557
|
+
# @type EnableJumboFrame: Boolean
|
8553
8558
|
|
8554
|
-
attr_accessor :InstanceChargeType, :InstanceChargePrepaid, :Placement, :InstanceType, :ImageId, :SystemDisk, :DataDisks, :VirtualPrivateCloud, :InternetAccessible, :InstanceCount, :InstanceName, :LoginSettings, :SecurityGroupIds, :EnhancedService, :ClientToken, :HostName, :ActionTimer, :DisasterRecoverGroupIds, :TagSpecification, :InstanceMarketOptions, :UserData, :Metadata, :DryRun, :CpuTopology, :CamRoleName, :HpcClusterId, :LaunchTemplate, :DedicatedClusterId, :ChcIds, :DisableApiTermination
|
8559
|
+
attr_accessor :InstanceChargeType, :InstanceChargePrepaid, :Placement, :InstanceType, :ImageId, :SystemDisk, :DataDisks, :VirtualPrivateCloud, :InternetAccessible, :InstanceCount, :InstanceName, :LoginSettings, :SecurityGroupIds, :EnhancedService, :ClientToken, :HostName, :ActionTimer, :DisasterRecoverGroupIds, :TagSpecification, :InstanceMarketOptions, :UserData, :Metadata, :DryRun, :CpuTopology, :CamRoleName, :HpcClusterId, :LaunchTemplate, :DedicatedClusterId, :ChcIds, :DisableApiTermination, :EnableJumboFrame
|
8555
8560
|
|
8556
|
-
def initialize(instancechargetype=nil, instancechargeprepaid=nil, placement=nil, instancetype=nil, imageid=nil, systemdisk=nil, datadisks=nil, virtualprivatecloud=nil, internetaccessible=nil, instancecount=nil, instancename=nil, loginsettings=nil, securitygroupids=nil, enhancedservice=nil, clienttoken=nil, hostname=nil, actiontimer=nil, disasterrecovergroupids=nil, tagspecification=nil, instancemarketoptions=nil, userdata=nil, metadata=nil, dryrun=nil, cputopology=nil, camrolename=nil, hpcclusterid=nil, launchtemplate=nil, dedicatedclusterid=nil, chcids=nil, disableapitermination=nil)
|
8561
|
+
def initialize(instancechargetype=nil, instancechargeprepaid=nil, placement=nil, instancetype=nil, imageid=nil, systemdisk=nil, datadisks=nil, virtualprivatecloud=nil, internetaccessible=nil, instancecount=nil, instancename=nil, loginsettings=nil, securitygroupids=nil, enhancedservice=nil, clienttoken=nil, hostname=nil, actiontimer=nil, disasterrecovergroupids=nil, tagspecification=nil, instancemarketoptions=nil, userdata=nil, metadata=nil, dryrun=nil, cputopology=nil, camrolename=nil, hpcclusterid=nil, launchtemplate=nil, dedicatedclusterid=nil, chcids=nil, disableapitermination=nil, enablejumboframe=nil)
|
8557
8562
|
@InstanceChargeType = instancechargetype
|
8558
8563
|
@InstanceChargePrepaid = instancechargeprepaid
|
8559
8564
|
@Placement = placement
|
@@ -8584,6 +8589,7 @@ module TencentCloud
|
|
8584
8589
|
@DedicatedClusterId = dedicatedclusterid
|
8585
8590
|
@ChcIds = chcids
|
8586
8591
|
@DisableApiTermination = disableapitermination
|
8592
|
+
@EnableJumboFrame = enablejumboframe
|
8587
8593
|
end
|
8588
8594
|
|
8589
8595
|
def deserialize(params)
|
@@ -8667,6 +8673,7 @@ module TencentCloud
|
|
8667
8673
|
@DedicatedClusterId = params['DedicatedClusterId']
|
8668
8674
|
@ChcIds = params['ChcIds']
|
8669
8675
|
@DisableApiTermination = params['DisableApiTermination']
|
8676
|
+
@EnableJumboFrame = params['EnableJumboFrame']
|
8670
8677
|
end
|
8671
8678
|
end
|
8672
8679
|
|
@@ -8864,8 +8871,8 @@ module TencentCloud
|
|
8864
8871
|
|
8865
8872
|
attr_accessor :InstanceIds, :ForceStop, :StopType, :StoppedMode
|
8866
8873
|
extend Gem::Deprecate
|
8867
|
-
deprecate :ForceStop, :none, 2025,
|
8868
|
-
deprecate :ForceStop=, :none, 2025,
|
8874
|
+
deprecate :ForceStop, :none, 2025, 7
|
8875
|
+
deprecate :ForceStop=, :none, 2025, 7
|
8869
8876
|
|
8870
8877
|
def initialize(instanceids=nil, forcestop=nil, stoptype=nil, stoppedmode=nil)
|
8871
8878
|
@InstanceIds = instanceids
|
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.
|
4
|
+
version: 3.0.1092
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|