tencentcloud-sdk-tione 3.0.641 → 3.0.642
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20211111/models.rb +91 -32
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb074de9d0ab0b45c2e85b8cddde3baf9dc72384
|
4
|
+
data.tar.gz: 9a7fe5ff4270ad19c449eb6926255b31035ac611
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4256067bbed480ad7c13c4908e5cf21449a0d08a7a9cfccd55c81369e92445b2e2f9040611b6f75fb92bfc8f87bfa55750b779c5e50ea2be91c7672f8e6af15b
|
7
|
+
data.tar.gz: 7b64e154927f29918d0f8f1d7af89f496d769c1fb1b787d4f51b7d6696b1788100cc733f7ab0ca7365329c02799db4aa964e5cbe078f6026239b58e99ab377de
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.642
|
data/lib/v20211111/models.rb
CHANGED
@@ -1417,10 +1417,12 @@ module TencentCloud
|
|
1417
1417
|
# @type ImageInfo: :class:`Tencentcloud::Tione.v20211111.models.ImageInfo`
|
1418
1418
|
# @param ImageType: 镜像类型
|
1419
1419
|
# @type ImageType: String
|
1420
|
+
# @param SSHConfig: SSH配置信息
|
1421
|
+
# @type SSHConfig: :class:`Tencentcloud::Tione.v20211111.models.SSHConfig`
|
1420
1422
|
|
1421
|
-
attr_accessor :Name, :ChargeType, :ResourceConf, :LogEnable, :RootAccess, :AutoStopping, :DirectInternetAccess, :ResourceGroupId, :VpcId, :SubnetId, :VolumeSourceType, :VolumeSizeInGB, :VolumeSourceCFS, :LogConfig, :LifecycleScriptId, :DefaultCodeRepoId, :AdditionalCodeRepoIds, :AutomaticStopTime, :Tags, :DataConfigs, :ImageInfo, :ImageType
|
1423
|
+
attr_accessor :Name, :ChargeType, :ResourceConf, :LogEnable, :RootAccess, :AutoStopping, :DirectInternetAccess, :ResourceGroupId, :VpcId, :SubnetId, :VolumeSourceType, :VolumeSizeInGB, :VolumeSourceCFS, :LogConfig, :LifecycleScriptId, :DefaultCodeRepoId, :AdditionalCodeRepoIds, :AutomaticStopTime, :Tags, :DataConfigs, :ImageInfo, :ImageType, :SSHConfig
|
1422
1424
|
|
1423
|
-
def initialize(name=nil, chargetype=nil, resourceconf=nil, logenable=nil, rootaccess=nil, autostopping=nil, directinternetaccess=nil, resourcegroupid=nil, vpcid=nil, subnetid=nil, volumesourcetype=nil, volumesizeingb=nil, volumesourcecfs=nil, logconfig=nil, lifecyclescriptid=nil, defaultcoderepoid=nil, additionalcoderepoids=nil, automaticstoptime=nil, tags=nil, dataconfigs=nil, imageinfo=nil, imagetype=nil)
|
1425
|
+
def initialize(name=nil, chargetype=nil, resourceconf=nil, logenable=nil, rootaccess=nil, autostopping=nil, directinternetaccess=nil, resourcegroupid=nil, vpcid=nil, subnetid=nil, volumesourcetype=nil, volumesizeingb=nil, volumesourcecfs=nil, logconfig=nil, lifecyclescriptid=nil, defaultcoderepoid=nil, additionalcoderepoids=nil, automaticstoptime=nil, tags=nil, dataconfigs=nil, imageinfo=nil, imagetype=nil, sshconfig=nil)
|
1424
1426
|
@Name = name
|
1425
1427
|
@ChargeType = chargetype
|
1426
1428
|
@ResourceConf = resourceconf
|
@@ -1443,6 +1445,7 @@ module TencentCloud
|
|
1443
1445
|
@DataConfigs = dataconfigs
|
1444
1446
|
@ImageInfo = imageinfo
|
1445
1447
|
@ImageType = imagetype
|
1448
|
+
@SSHConfig = sshconfig
|
1446
1449
|
end
|
1447
1450
|
|
1448
1451
|
def deserialize(params)
|
@@ -1494,6 +1497,10 @@ module TencentCloud
|
|
1494
1497
|
@ImageInfo.deserialize(params['ImageInfo'])
|
1495
1498
|
end
|
1496
1499
|
@ImageType = params['ImageType']
|
1500
|
+
unless params['SSHConfig'].nil?
|
1501
|
+
@SSHConfig = SSHConfig.new
|
1502
|
+
@SSHConfig.deserialize(params['SSHConfig'])
|
1503
|
+
end
|
1497
1504
|
end
|
1498
1505
|
end
|
1499
1506
|
|
@@ -1740,14 +1747,6 @@ module TencentCloud
|
|
1740
1747
|
# @type ChargeType: String
|
1741
1748
|
# @param ResourceConfigInfos: 资源配置,需填写对应算力规格ID和节点数量,算力规格ID查询接口为DescribeBillingSpecsPrice,eg:[{"Role":"WORKER", "InstanceType": "TI.S.MEDIUM.POST", "InstanceNum": 1}]
|
1742
1749
|
# @type ResourceConfigInfos: Array
|
1743
|
-
# @param CodePackagePath: COS代码包路径
|
1744
|
-
# @type CodePackagePath: :class:`Tencentcloud::Tione.v20211111.models.CosPathInfo`
|
1745
|
-
# @param TrainingMode: 训练模式,通过DescribeTrainingFrameworks接口查询,eg:PS_WORKER、DDP、MPI、HOROVOD
|
1746
|
-
# @type TrainingMode: String
|
1747
|
-
# @param Output: COS训练输出路径
|
1748
|
-
# @type Output: :class:`Tencentcloud::Tione.v20211111.models.CosPathInfo`
|
1749
|
-
# @param LogEnable: 是否上报日志
|
1750
|
-
# @type LogEnable: Boolean
|
1751
1750
|
# @param FrameworkName: 训练框架名称,通过DescribeTrainingFrameworks接口查询,eg:SPARK、PYSPARK、TENSORFLOW、PYTORCH
|
1752
1751
|
# @type FrameworkName: String
|
1753
1752
|
# @param FrameworkVersion: 训练框架版本,通过DescribeTrainingFrameworks接口查询,eg:1.15、1.9
|
@@ -1760,18 +1759,26 @@ module TencentCloud
|
|
1760
1759
|
# @type Tags: Array
|
1761
1760
|
# @param ImageInfo: 自定义镜像信息
|
1762
1761
|
# @type ImageInfo: :class:`Tencentcloud::Tione.v20211111.models.ImageInfo`
|
1762
|
+
# @param CodePackagePath: COS代码包路径
|
1763
|
+
# @type CodePackagePath: :class:`Tencentcloud::Tione.v20211111.models.CosPathInfo`
|
1763
1764
|
# @param StartCmdInfo: 启动命令信息,默认为sh start.sh
|
1764
1765
|
# @type StartCmdInfo: :class:`Tencentcloud::Tione.v20211111.models.StartCmdInfo`
|
1766
|
+
# @param TrainingMode: 训练模式,通过DescribeTrainingFrameworks接口查询,eg:PS_WORKER、DDP、MPI、HOROVOD
|
1767
|
+
# @type TrainingMode: String
|
1765
1768
|
# @param DataConfigs: 数据配置,依赖DataSource字段
|
1766
1769
|
# @type DataConfigs: Array
|
1767
1770
|
# @param VpcId: VPC Id
|
1768
1771
|
# @type VpcId: String
|
1769
1772
|
# @param SubnetId: 子网Id
|
1770
1773
|
# @type SubnetId: String
|
1774
|
+
# @param Output: COS训练输出路径
|
1775
|
+
# @type Output: :class:`Tencentcloud::Tione.v20211111.models.CosPathInfo`
|
1771
1776
|
# @param LogConfig: CLS日志配置
|
1772
1777
|
# @type LogConfig: :class:`Tencentcloud::Tione.v20211111.models.LogConfig`
|
1773
1778
|
# @param TuningParameters: 调优参数
|
1774
1779
|
# @type TuningParameters: String
|
1780
|
+
# @param LogEnable: 是否上报日志
|
1781
|
+
# @type LogEnable: Boolean
|
1775
1782
|
# @param Remark: 备注,最多500个字
|
1776
1783
|
# @type Remark: String
|
1777
1784
|
# @param DataSource: 数据来源,eg:DATASET、COS、CFS、HDFS
|
@@ -1779,28 +1786,28 @@ module TencentCloud
|
|
1779
1786
|
# @param CallbackUrl: 回调地址,用于创建/启动/停止训练任务的异步回调。回调格式&内容详见:[[TI-ONE接口回调说明]](https://cloud.tencent.com/document/product/851/84292)
|
1780
1787
|
# @type CallbackUrl: String
|
1781
1788
|
|
1782
|
-
attr_accessor :Name, :ChargeType, :ResourceConfigInfos, :
|
1789
|
+
attr_accessor :Name, :ChargeType, :ResourceConfigInfos, :FrameworkName, :FrameworkVersion, :FrameworkEnvironment, :ResourceGroupId, :Tags, :ImageInfo, :CodePackagePath, :StartCmdInfo, :TrainingMode, :DataConfigs, :VpcId, :SubnetId, :Output, :LogConfig, :TuningParameters, :LogEnable, :Remark, :DataSource, :CallbackUrl
|
1783
1790
|
|
1784
|
-
def initialize(name=nil, chargetype=nil, resourceconfiginfos=nil,
|
1791
|
+
def initialize(name=nil, chargetype=nil, resourceconfiginfos=nil, frameworkname=nil, frameworkversion=nil, frameworkenvironment=nil, resourcegroupid=nil, tags=nil, imageinfo=nil, codepackagepath=nil, startcmdinfo=nil, trainingmode=nil, dataconfigs=nil, vpcid=nil, subnetid=nil, output=nil, logconfig=nil, tuningparameters=nil, logenable=nil, remark=nil, datasource=nil, callbackurl=nil)
|
1785
1792
|
@Name = name
|
1786
1793
|
@ChargeType = chargetype
|
1787
1794
|
@ResourceConfigInfos = resourceconfiginfos
|
1788
|
-
@CodePackagePath = codepackagepath
|
1789
|
-
@TrainingMode = trainingmode
|
1790
|
-
@Output = output
|
1791
|
-
@LogEnable = logenable
|
1792
1795
|
@FrameworkName = frameworkname
|
1793
1796
|
@FrameworkVersion = frameworkversion
|
1794
1797
|
@FrameworkEnvironment = frameworkenvironment
|
1795
1798
|
@ResourceGroupId = resourcegroupid
|
1796
1799
|
@Tags = tags
|
1797
1800
|
@ImageInfo = imageinfo
|
1801
|
+
@CodePackagePath = codepackagepath
|
1798
1802
|
@StartCmdInfo = startcmdinfo
|
1803
|
+
@TrainingMode = trainingmode
|
1799
1804
|
@DataConfigs = dataconfigs
|
1800
1805
|
@VpcId = vpcid
|
1801
1806
|
@SubnetId = subnetid
|
1807
|
+
@Output = output
|
1802
1808
|
@LogConfig = logconfig
|
1803
1809
|
@TuningParameters = tuningparameters
|
1810
|
+
@LogEnable = logenable
|
1804
1811
|
@Remark = remark
|
1805
1812
|
@DataSource = datasource
|
1806
1813
|
@CallbackUrl = callbackurl
|
@@ -1817,16 +1824,6 @@ module TencentCloud
|
|
1817
1824
|
@ResourceConfigInfos << resourceconfiginfo_tmp
|
1818
1825
|
end
|
1819
1826
|
end
|
1820
|
-
unless params['CodePackagePath'].nil?
|
1821
|
-
@CodePackagePath = CosPathInfo.new
|
1822
|
-
@CodePackagePath.deserialize(params['CodePackagePath'])
|
1823
|
-
end
|
1824
|
-
@TrainingMode = params['TrainingMode']
|
1825
|
-
unless params['Output'].nil?
|
1826
|
-
@Output = CosPathInfo.new
|
1827
|
-
@Output.deserialize(params['Output'])
|
1828
|
-
end
|
1829
|
-
@LogEnable = params['LogEnable']
|
1830
1827
|
@FrameworkName = params['FrameworkName']
|
1831
1828
|
@FrameworkVersion = params['FrameworkVersion']
|
1832
1829
|
@FrameworkEnvironment = params['FrameworkEnvironment']
|
@@ -1843,10 +1840,15 @@ module TencentCloud
|
|
1843
1840
|
@ImageInfo = ImageInfo.new
|
1844
1841
|
@ImageInfo.deserialize(params['ImageInfo'])
|
1845
1842
|
end
|
1843
|
+
unless params['CodePackagePath'].nil?
|
1844
|
+
@CodePackagePath = CosPathInfo.new
|
1845
|
+
@CodePackagePath.deserialize(params['CodePackagePath'])
|
1846
|
+
end
|
1846
1847
|
unless params['StartCmdInfo'].nil?
|
1847
1848
|
@StartCmdInfo = StartCmdInfo.new
|
1848
1849
|
@StartCmdInfo.deserialize(params['StartCmdInfo'])
|
1849
1850
|
end
|
1851
|
+
@TrainingMode = params['TrainingMode']
|
1850
1852
|
unless params['DataConfigs'].nil?
|
1851
1853
|
@DataConfigs = []
|
1852
1854
|
params['DataConfigs'].each do |i|
|
@@ -1857,11 +1859,16 @@ module TencentCloud
|
|
1857
1859
|
end
|
1858
1860
|
@VpcId = params['VpcId']
|
1859
1861
|
@SubnetId = params['SubnetId']
|
1862
|
+
unless params['Output'].nil?
|
1863
|
+
@Output = CosPathInfo.new
|
1864
|
+
@Output.deserialize(params['Output'])
|
1865
|
+
end
|
1860
1866
|
unless params['LogConfig'].nil?
|
1861
1867
|
@LogConfig = LogConfig.new
|
1862
1868
|
@LogConfig.deserialize(params['LogConfig'])
|
1863
1869
|
end
|
1864
1870
|
@TuningParameters = params['TuningParameters']
|
1871
|
+
@LogEnable = params['LogEnable']
|
1865
1872
|
@Remark = params['Remark']
|
1866
1873
|
@DataSource = params['DataSource']
|
1867
1874
|
@CallbackUrl = params['CallbackUrl']
|
@@ -6346,10 +6353,12 @@ module TencentCloud
|
|
6346
6353
|
# @type ImageInfo: :class:`Tencentcloud::Tione.v20211111.models.ImageInfo`
|
6347
6354
|
# @param ImageType: 镜像类型
|
6348
6355
|
# @type ImageType: String
|
6356
|
+
# @param SSHConfig: SSH配置
|
6357
|
+
# @type SSHConfig: :class:`Tencentcloud::Tione.v20211111.models.SSHConfig`
|
6349
6358
|
|
6350
|
-
attr_accessor :Id, :Name, :ChargeType, :ResourceConf, :LogEnable, :AutoStopping, :DirectInternetAccess, :RootAccess, :ResourceGroupId, :VpcId, :SubnetId, :VolumeSizeInGB, :VolumeSourceType, :VolumeSourceCFS, :LogConfig, :LifecycleScriptId, :DefaultCodeRepoId, :AdditionalCodeRepoIds, :AutomaticStopTime, :Tags, :DataConfigs, :ImageInfo, :ImageType
|
6359
|
+
attr_accessor :Id, :Name, :ChargeType, :ResourceConf, :LogEnable, :AutoStopping, :DirectInternetAccess, :RootAccess, :ResourceGroupId, :VpcId, :SubnetId, :VolumeSizeInGB, :VolumeSourceType, :VolumeSourceCFS, :LogConfig, :LifecycleScriptId, :DefaultCodeRepoId, :AdditionalCodeRepoIds, :AutomaticStopTime, :Tags, :DataConfigs, :ImageInfo, :ImageType, :SSHConfig
|
6351
6360
|
|
6352
|
-
def initialize(id=nil, name=nil, chargetype=nil, resourceconf=nil, logenable=nil, autostopping=nil, directinternetaccess=nil, rootaccess=nil, resourcegroupid=nil, vpcid=nil, subnetid=nil, volumesizeingb=nil, volumesourcetype=nil, volumesourcecfs=nil, logconfig=nil, lifecyclescriptid=nil, defaultcoderepoid=nil, additionalcoderepoids=nil, automaticstoptime=nil, tags=nil, dataconfigs=nil, imageinfo=nil, imagetype=nil)
|
6361
|
+
def initialize(id=nil, name=nil, chargetype=nil, resourceconf=nil, logenable=nil, autostopping=nil, directinternetaccess=nil, rootaccess=nil, resourcegroupid=nil, vpcid=nil, subnetid=nil, volumesizeingb=nil, volumesourcetype=nil, volumesourcecfs=nil, logconfig=nil, lifecyclescriptid=nil, defaultcoderepoid=nil, additionalcoderepoids=nil, automaticstoptime=nil, tags=nil, dataconfigs=nil, imageinfo=nil, imagetype=nil, sshconfig=nil)
|
6353
6362
|
@Id = id
|
6354
6363
|
@Name = name
|
6355
6364
|
@ChargeType = chargetype
|
@@ -6373,6 +6382,7 @@ module TencentCloud
|
|
6373
6382
|
@DataConfigs = dataconfigs
|
6374
6383
|
@ImageInfo = imageinfo
|
6375
6384
|
@ImageType = imagetype
|
6385
|
+
@SSHConfig = sshconfig
|
6376
6386
|
end
|
6377
6387
|
|
6378
6388
|
def deserialize(params)
|
@@ -6425,6 +6435,10 @@ module TencentCloud
|
|
6425
6435
|
@ImageInfo.deserialize(params['ImageInfo'])
|
6426
6436
|
end
|
6427
6437
|
@ImageType = params['ImageType']
|
6438
|
+
unless params['SSHConfig'].nil?
|
6439
|
+
@SSHConfig = SSHConfig.new
|
6440
|
+
@SSHConfig.deserialize(params['SSHConfig'])
|
6441
|
+
end
|
6428
6442
|
end
|
6429
6443
|
end
|
6430
6444
|
|
@@ -6873,10 +6887,13 @@ module TencentCloud
|
|
6873
6887
|
# @param UserTypes: notebook用户类型
|
6874
6888
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6875
6889
|
# @type UserTypes: Array
|
6890
|
+
# @param SSHConfig: SSH配置
|
6891
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6892
|
+
# @type SSHConfig: :class:`Tencentcloud::Tione.v20211111.models.SSHConfig`
|
6876
6893
|
|
6877
|
-
attr_accessor :Id, :Name, :ChargeType, :ResourceConf, :ResourceGroupId, :VolumeSizeInGB, :BillingInfos, :Tags, :CreateTime, :StartTime, :UpdateTime, :RuntimeInSeconds, :ChargeStatus, :Status, :FailureReason, :EndTime, :PodName, :InstanceTypeAlias, :ResourceGroupName, :AutoStopping, :AutomaticStopTime, :VolumeSourceType, :VolumeSourceCFS, :Message, :UserTypes
|
6894
|
+
attr_accessor :Id, :Name, :ChargeType, :ResourceConf, :ResourceGroupId, :VolumeSizeInGB, :BillingInfos, :Tags, :CreateTime, :StartTime, :UpdateTime, :RuntimeInSeconds, :ChargeStatus, :Status, :FailureReason, :EndTime, :PodName, :InstanceTypeAlias, :ResourceGroupName, :AutoStopping, :AutomaticStopTime, :VolumeSourceType, :VolumeSourceCFS, :Message, :UserTypes, :SSHConfig
|
6878
6895
|
|
6879
|
-
def initialize(id=nil, name=nil, chargetype=nil, resourceconf=nil, resourcegroupid=nil, volumesizeingb=nil, billinginfos=nil, tags=nil, createtime=nil, starttime=nil, updatetime=nil, runtimeinseconds=nil, chargestatus=nil, status=nil, failurereason=nil, endtime=nil, podname=nil, instancetypealias=nil, resourcegroupname=nil, autostopping=nil, automaticstoptime=nil, volumesourcetype=nil, volumesourcecfs=nil, message=nil, usertypes=nil)
|
6896
|
+
def initialize(id=nil, name=nil, chargetype=nil, resourceconf=nil, resourcegroupid=nil, volumesizeingb=nil, billinginfos=nil, tags=nil, createtime=nil, starttime=nil, updatetime=nil, runtimeinseconds=nil, chargestatus=nil, status=nil, failurereason=nil, endtime=nil, podname=nil, instancetypealias=nil, resourcegroupname=nil, autostopping=nil, automaticstoptime=nil, volumesourcetype=nil, volumesourcecfs=nil, message=nil, usertypes=nil, sshconfig=nil)
|
6880
6897
|
@Id = id
|
6881
6898
|
@Name = name
|
6882
6899
|
@ChargeType = chargetype
|
@@ -6902,6 +6919,7 @@ module TencentCloud
|
|
6902
6919
|
@VolumeSourceCFS = volumesourcecfs
|
6903
6920
|
@Message = message
|
6904
6921
|
@UserTypes = usertypes
|
6922
|
+
@SSHConfig = sshconfig
|
6905
6923
|
end
|
6906
6924
|
|
6907
6925
|
def deserialize(params)
|
@@ -6943,6 +6961,10 @@ module TencentCloud
|
|
6943
6961
|
end
|
6944
6962
|
@Message = params['Message']
|
6945
6963
|
@UserTypes = params['UserTypes']
|
6964
|
+
unless params['SSHConfig'].nil?
|
6965
|
+
@SSHConfig = SSHConfig.new
|
6966
|
+
@SSHConfig.deserialize(params['SSHConfig'])
|
6967
|
+
end
|
6946
6968
|
end
|
6947
6969
|
end
|
6948
6970
|
|
@@ -7095,17 +7117,22 @@ module TencentCloud
|
|
7095
7117
|
# @param IP: pod的IP
|
7096
7118
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7097
7119
|
# @type IP: String
|
7120
|
+
# @param Status: pod状态
|
7121
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7122
|
+
# @type Status: String
|
7098
7123
|
|
7099
|
-
attr_accessor :Name, :IP
|
7124
|
+
attr_accessor :Name, :IP, :Status
|
7100
7125
|
|
7101
|
-
def initialize(name=nil, ip=nil)
|
7126
|
+
def initialize(name=nil, ip=nil, status=nil)
|
7102
7127
|
@Name = name
|
7103
7128
|
@IP = ip
|
7129
|
+
@Status = status
|
7104
7130
|
end
|
7105
7131
|
|
7106
7132
|
def deserialize(params)
|
7107
7133
|
@Name = params['Name']
|
7108
7134
|
@IP = params['IP']
|
7135
|
+
@Status = params['Status']
|
7109
7136
|
end
|
7110
7137
|
end
|
7111
7138
|
|
@@ -7622,6 +7649,38 @@ module TencentCloud
|
|
7622
7649
|
end
|
7623
7650
|
end
|
7624
7651
|
|
7652
|
+
# notebook ssh端口配置
|
7653
|
+
class SSHConfig < TencentCloud::Common::AbstractModel
|
7654
|
+
# @param Enable: 是否开启ssh
|
7655
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7656
|
+
# @type Enable: Boolean
|
7657
|
+
# @param PublicKey: 公钥信息
|
7658
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7659
|
+
# @type PublicKey: String
|
7660
|
+
# @param Port: 端口号
|
7661
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7662
|
+
# @type Port: Integer
|
7663
|
+
# @param LoginCommand: 登录命令
|
7664
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7665
|
+
# @type LoginCommand: String
|
7666
|
+
|
7667
|
+
attr_accessor :Enable, :PublicKey, :Port, :LoginCommand
|
7668
|
+
|
7669
|
+
def initialize(enable=nil, publickey=nil, port=nil, logincommand=nil)
|
7670
|
+
@Enable = enable
|
7671
|
+
@PublicKey = publickey
|
7672
|
+
@Port = port
|
7673
|
+
@LoginCommand = logincommand
|
7674
|
+
end
|
7675
|
+
|
7676
|
+
def deserialize(params)
|
7677
|
+
@Enable = params['Enable']
|
7678
|
+
@PublicKey = params['PublicKey']
|
7679
|
+
@Port = params['Port']
|
7680
|
+
@LoginCommand = params['LoginCommand']
|
7681
|
+
end
|
7682
|
+
end
|
7683
|
+
|
7625
7684
|
# 定时的事务和行为
|
7626
7685
|
class ScheduledAction < TencentCloud::Common::AbstractModel
|
7627
7686
|
# @param ScheduleStop: 是否要定时停止服务,true or false。true 则 ScheduleStopTime 必填, false 则 ScheduleStopTime 不生效
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tione
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.642
|
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-08-
|
11
|
+
date: 2023-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,11 +33,11 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20211111/models.rb
|
37
|
-
- lib/v20211111/client.rb
|
38
36
|
- lib/tencentcloud-sdk-tione.rb
|
39
|
-
- lib/v20191022/models.rb
|
40
37
|
- lib/v20191022/client.rb
|
38
|
+
- lib/v20191022/models.rb
|
39
|
+
- lib/v20211111/client.rb
|
40
|
+
- lib/v20211111/models.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|