Class: TencentCloud::Dcdb::V20180411::CreateOnlineDDLJobRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dcdb::V20180411::CreateOnlineDDLJobRequest
- Defined in:
- lib/v20180411/models.rb
Overview
CreateOnlineDDLJob请求参数结构体
Instance Attribute Summary collapse
- #Alter ⇒ Object
- #CheckAutoInc ⇒ Object
- #CriticalLoad ⇒ Object
- #DbName ⇒ Object
- #InstanceId ⇒ Object
- #MaxDelay ⇒ Object
- #Password ⇒ Object
- #StartTime ⇒ Object
- #Table ⇒ Object
- #UsePt ⇒ Object
- #User ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, alter = nil, dbname = nil, table = nil, user = nil, password = nil, criticalload = nil, checkautoinc = nil, maxdelay = nil, usept = nil, starttime = nil) ⇒ CreateOnlineDDLJobRequest
constructor
A new instance of CreateOnlineDDLJobRequest.
Constructor Details
#initialize(instanceid = nil, alter = nil, dbname = nil, table = nil, user = nil, password = nil, criticalload = nil, checkautoinc = nil, maxdelay = nil, usept = nil, starttime = nil) ⇒ CreateOnlineDDLJobRequest
Returns a new instance of CreateOnlineDDLJobRequest.
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 |
# File 'lib/v20180411/models.rb', line 1097 def initialize(instanceid=nil, alter=nil, dbname=nil, table=nil, user=nil, password=nil, criticalload=nil, checkautoinc=nil, maxdelay=nil, usept=nil, starttime=nil) @InstanceId = instanceid @Alter = alter @DbName = dbname @Table = table @User = user @Password = password @CriticalLoad = criticalload @CheckAutoInc = checkautoinc @MaxDelay = maxdelay @UsePt = usept @StartTime = starttime end |
Instance Attribute Details
#Alter ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def Alter @Alter end |
#CheckAutoInc ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def CheckAutoInc @CheckAutoInc end |
#CriticalLoad ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def CriticalLoad @CriticalLoad end |
#DbName ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def DbName @DbName end |
#InstanceId ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def InstanceId @InstanceId end |
#MaxDelay ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def MaxDelay @MaxDelay end |
#Password ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def Password @Password end |
#StartTime ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def StartTime @StartTime end |
#Table ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def Table @Table end |
#UsePt ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def UsePt @UsePt end |
#User ⇒ Object
1095 1096 1097 |
# File 'lib/v20180411/models.rb', line 1095 def User @User end |
Instance Method Details
#deserialize(params) ⇒ Object
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 |
# File 'lib/v20180411/models.rb', line 1111 def deserialize(params) @InstanceId = params['InstanceId'] @Alter = params['Alter'] @DbName = params['DbName'] @Table = params['Table'] @User = params['User'] @Password = params['Password'] @CriticalLoad = params['CriticalLoad'] @CheckAutoInc = params['CheckAutoInc'] @MaxDelay = params['MaxDelay'] @UsePt = params['UsePt'] @StartTime = params['StartTime'] end |