Class: TencentCloud::Dlc::V20210125::LockComponentInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::LockComponentInfo
- Defined in:
- lib/v20210125/models.rb
Overview
元数据加锁内容
Instance Attribute Summary collapse
- #DataOperationType ⇒ Object
- #DbName ⇒ Object
- #IsAcid ⇒ Object
- #IsDynamicPartitionWrite ⇒ Object
- #LockLevel ⇒ Object
- #LockType ⇒ Object
- #Partition ⇒ Object
- #TableName ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(dbname = nil, tablename = nil, partition = nil, locktype = nil, locklevel = nil, dataoperationtype = nil, isacid = nil, isdynamicpartitionwrite = nil) ⇒ LockComponentInfo
constructor
A new instance of LockComponentInfo.
Constructor Details
#initialize(dbname = nil, tablename = nil, partition = nil, locktype = nil, locklevel = nil, dataoperationtype = nil, isacid = nil, isdynamicpartitionwrite = nil) ⇒ LockComponentInfo
Returns a new instance of LockComponentInfo.
11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 |
# File 'lib/v20210125/models.rb', line 11976 def initialize(dbname=nil, tablename=nil, partition=nil, locktype=nil, locklevel=nil, dataoperationtype=nil, isacid=nil, isdynamicpartitionwrite=nil) @DbName = dbname @TableName = tablename @Partition = partition @LockType = locktype @LockLevel = locklevel @DataOperationType = dataoperationtype @IsAcid = isacid @IsDynamicPartitionWrite = isdynamicpartitionwrite end |
Instance Attribute Details
#DataOperationType ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def DataOperationType @DataOperationType end |
#DbName ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def DbName @DbName end |
#IsAcid ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def IsAcid @IsAcid end |
#IsDynamicPartitionWrite ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def IsDynamicPartitionWrite @IsDynamicPartitionWrite end |
#LockLevel ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def LockLevel @LockLevel end |
#LockType ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def LockType @LockType end |
#Partition ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def Partition @Partition end |
#TableName ⇒ Object
11974 11975 11976 |
# File 'lib/v20210125/models.rb', line 11974 def TableName @TableName end |
Instance Method Details
#deserialize(params) ⇒ Object
11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 |
# File 'lib/v20210125/models.rb', line 11987 def deserialize(params) @DbName = params['DbName'] @TableName = params['TableName'] @Partition = params['Partition'] @LockType = params['LockType'] @LockLevel = params['LockLevel'] @DataOperationType = params['DataOperationType'] @IsAcid = params['IsAcid'] @IsDynamicPartitionWrite = params['IsDynamicPartitionWrite'] end |