# coding=utf8
# Copyright 2018 JDCLOUD.COM
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: This class is auto generated by the jdcloud code generator program.
[docs]class DwTableDesc(object):
def __init__(self, dbName=None, tableName=None, hiveFileFormat=None, fieldsDelimit=None, linesDelimit=None, otherSerdeProperties=None, createTime=None, owner=None, comments=None, externalLocation=None, parameters=None, rows=None):
"""
:param dbName: (Optional) 数据库名
:param tableName: (Optional) 表名
:param hiveFileFormat: (Optional) 存储格式
:param fieldsDelimit: (Optional) 字段分隔符
:param linesDelimit: (Optional) 行分隔符
:param otherSerdeProperties: (Optional) 其他serde属性
:param createTime: (Optional) 创建时间(自动生成)
:param owner: (Optional) 所有者(自动生成)
:param comments: (Optional) 描述信息
:param externalLocation: (Optional) 外表位置
:param parameters: (Optional) 参数
:param rows: (Optional) 列信息
"""
self.dbName = dbName
self.tableName = tableName
self.hiveFileFormat = hiveFileFormat
self.fieldsDelimit = fieldsDelimit
self.linesDelimit = linesDelimit
self.otherSerdeProperties = otherSerdeProperties
self.createTime = createTime
self.owner = owner
self.comments = comments
self.externalLocation = externalLocation
self.parameters = parameters
self.rows = rows