tencentcloud-sdk-cvm 3.0.1074 → 3.0.1088
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 +16 -6
- 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: 24f776b3cb0484c8761a8ff5b44f1d3eabc1dff2
|
4
|
+
data.tar.gz: 22f986676ea3776905c27f27fafa132e944ab4f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b78150e432a4c6eefec01f0b8d7407400d6557653d1e67721e9447559ffc1f70bd11fd573bacee7774f18478d628f09746fe5e3fd53a974ecec26a57a8bab307
|
7
|
+
data.tar.gz: 4106373afcbd490a08f713de20d7c6862eb0401323cb6b95df5bae78d4f4d4310310844668247ec081285b7893152f92f0bfa4680b6ba767e7cf0fae0b69f43f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1088
|
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, 6
|
2008
|
+
deprecate :CvmInSwGroupQuota=, :none, 2025, 6
|
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, 6
|
3931
|
+
deprecate :ForceStop=, :none, 2025, 6
|
3932
3932
|
|
3933
3933
|
def initialize(instanceid=nil, password=nil, username=nil, forcestop=nil, stoptype=nil)
|
3934
3934
|
@InstanceId = instanceid
|
@@ -4983,15 +4983,18 @@ module TencentCloud
|
|
4983
4983
|
# @type LoginSettings: :class:`Tencentcloud::Cvm.v20170312.models.LoginSettings`
|
4984
4984
|
# @param EnhancedService: 增强服务。通过该参数可以指定是否开启云安全、云监控等服务。若不指定该参数,则默认开启云监控、云安全服务。
|
4985
4985
|
# @type EnhancedService: :class:`Tencentcloud::Cvm.v20170312.models.EnhancedService`
|
4986
|
+
# @param UserData: 提供给实例使用的用户数据,需要以 base64 方式编码,支持的最大数据大小为 16KB。关于获取此参数的详细介绍,请参阅[Windows](https://cloud.tencent.com/document/product/213/17526)和[Linux](https://cloud.tencent.com/document/product/213/17525)启动时运行命令。
|
4987
|
+
# @type UserData: String
|
4986
4988
|
|
4987
|
-
attr_accessor :InstanceId, :ImageId, :SystemDisk, :LoginSettings, :EnhancedService
|
4989
|
+
attr_accessor :InstanceId, :ImageId, :SystemDisk, :LoginSettings, :EnhancedService, :UserData
|
4988
4990
|
|
4989
|
-
def initialize(instanceid=nil, imageid=nil, systemdisk=nil, loginsettings=nil, enhancedservice=nil)
|
4991
|
+
def initialize(instanceid=nil, imageid=nil, systemdisk=nil, loginsettings=nil, enhancedservice=nil, userdata=nil)
|
4990
4992
|
@InstanceId = instanceid
|
4991
4993
|
@ImageId = imageid
|
4992
4994
|
@SystemDisk = systemdisk
|
4993
4995
|
@LoginSettings = loginsettings
|
4994
4996
|
@EnhancedService = enhancedservice
|
4997
|
+
@UserData = userdata
|
4995
4998
|
end
|
4996
4999
|
|
4997
5000
|
def deserialize(params)
|
@@ -5009,6 +5012,7 @@ module TencentCloud
|
|
5009
5012
|
@EnhancedService = EnhancedService.new
|
5010
5013
|
@EnhancedService.deserialize(params['EnhancedService'])
|
5011
5014
|
end
|
5015
|
+
@UserData = params['UserData']
|
5012
5016
|
end
|
5013
5017
|
end
|
5014
5018
|
|
@@ -7478,6 +7482,9 @@ module TencentCloud
|
|
7478
7482
|
# @type StopType: String
|
7479
7483
|
|
7480
7484
|
attr_accessor :InstanceIds, :ForceReboot, :StopType
|
7485
|
+
extend Gem::Deprecate
|
7486
|
+
deprecate :ForceReboot, :none, 2025, 6
|
7487
|
+
deprecate :ForceReboot=, :none, 2025, 6
|
7481
7488
|
|
7482
7489
|
def initialize(instanceids=nil, forcereboot=nil, stoptype=nil)
|
7483
7490
|
@InstanceIds = instanceids
|
@@ -8860,6 +8867,9 @@ module TencentCloud
|
|
8860
8867
|
# @type StoppedMode: String
|
8861
8868
|
|
8862
8869
|
attr_accessor :InstanceIds, :ForceStop, :StopType, :StoppedMode
|
8870
|
+
extend Gem::Deprecate
|
8871
|
+
deprecate :ForceStop, :none, 2025, 6
|
8872
|
+
deprecate :ForceStop=, :none, 2025, 6
|
8863
8873
|
|
8864
8874
|
def initialize(instanceids=nil, forcestop=nil, stoptype=nil, stoppedmode=nil)
|
8865
8875
|
@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.1088
|
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-06-
|
11
|
+
date: 2025-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|