Class: TencentCloud::Dlc::V20210125::IcebergTablePartition
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::IcebergTablePartition
- Defined in:
- lib/v20210125/models.rb
Overview
Iceberg表分区信息
Instance Attribute Summary collapse
- #CreateTime ⇒ Object
- #DataFileSize ⇒ Object
- #DataFileStorage ⇒ Object
- #LastUpdateSnapshotId ⇒ Object
- #Location ⇒ Object
- #Partition ⇒ Object
- #Records ⇒ Object
- #UpdateTime ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(partition = nil, records = nil, datafilesize = nil, datafilestorage = nil, createtime = nil, updatetime = nil, lastupdatesnapshotid = nil, location = nil) ⇒ IcebergTablePartition
constructor
A new instance of IcebergTablePartition.
Constructor Details
#initialize(partition = nil, records = nil, datafilesize = nil, datafilestorage = nil, createtime = nil, updatetime = nil, lastupdatesnapshotid = nil, location = nil) ⇒ IcebergTablePartition
Returns a new instance of IcebergTablePartition.
11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 |
# File 'lib/v20210125/models.rb', line 11525 def initialize(partition=nil, records=nil, datafilesize=nil, datafilestorage=nil, createtime=nil, updatetime=nil, lastupdatesnapshotid=nil, location=nil) @Partition = partition @Records = records @DataFileSize = datafilesize @DataFileStorage = datafilestorage @CreateTime = createtime @UpdateTime = updatetime @LastUpdateSnapshotId = lastupdatesnapshotid @Location = location end |
Instance Attribute Details
#CreateTime ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def CreateTime @CreateTime end |
#DataFileSize ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def DataFileSize @DataFileSize end |
#DataFileStorage ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def DataFileStorage @DataFileStorage end |
#LastUpdateSnapshotId ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def LastUpdateSnapshotId @LastUpdateSnapshotId end |
#Location ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def Location @Location end |
#Partition ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def Partition @Partition end |
#Records ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def Records @Records end |
#UpdateTime ⇒ Object
11523 11524 11525 |
# File 'lib/v20210125/models.rb', line 11523 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 |
# File 'lib/v20210125/models.rb', line 11536 def deserialize(params) @Partition = params['Partition'] @Records = params['Records'] @DataFileSize = params['DataFileSize'] @DataFileStorage = params['DataFileStorage'] @CreateTime = params['CreateTime'] @UpdateTime = params['UpdateTime'] @LastUpdateSnapshotId = params['LastUpdateSnapshotId'] unless params['Location'].nil? @Location = LocationInfo.new @Location.deserialize(params['Location']) end end |