# 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 DwTable(object):
def __init__(self, id=None, userName=None, dbName=None, tableName=None, createTime=None, lastUpdateTime=None, physicalStorageCapacity=None, category=None, source=None, owner=None, hiveFileFormat=None, encryption=None, location=None, comments=None, hiveObjectPrivileges=None, parameters=None):
"""
:param id: (Optional) 数据库id
:param userName: (Optional) 用户名
:param dbName: (Optional) 数据库名
:param tableName: (Optional) 表名
:param createTime: (Optional) 创建时间
:param lastUpdateTime: (Optional) 最新更新时间
:param physicalStorageCapacity: (Optional) 物理存储量
:param category: (Optional) 类别
:param source: (Optional) 来源
:param owner: (Optional) 所有者
:param hiveFileFormat: (Optional) 文件存储类型
:param encryption: (Optional) 是否加密
:param location: (Optional) 位置
:param comments: (Optional) 描述信息
:param hiveObjectPrivileges: (Optional) hive表权限信息
:param parameters: (Optional) 参数
"""
self.id = id
self.userName = userName
self.dbName = dbName
self.tableName = tableName
self.createTime = createTime
self.lastUpdateTime = lastUpdateTime
self.physicalStorageCapacity = physicalStorageCapacity
self.category = category
self.source = source
self.owner = owner
self.hiveFileFormat = hiveFileFormat
self.encryption = encryption
self.location = location
self.comments = comments
self.hiveObjectPrivileges = hiveObjectPrivileges
self.parameters = parameters