# 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 DwDatabase(object):
def __init__(self, databaseName, id=None, userName=None, totalTableQuantity=None, createTime=None, lastUpdateTime=None, physicalStorageCapacity=None, category=None, source=None, owner=None, location=None, comments=None):
"""
:param id: (Optional) 数据库id
:param userName: (Optional) 用户名
:param databaseName: 数据库名称
:param totalTableQuantity: (Optional) 总表数量
:param createTime: (Optional) 创建时间
:param lastUpdateTime: (Optional) 最新更新时间
:param physicalStorageCapacity: (Optional) 最新更新时间
:param category: (Optional) 类别
:param source: (Optional) 来源
:param owner: (Optional) 所有者
:param location: (Optional) 位置
:param comments: (Optional) 描述信息
"""
self.id = id
self.userName = userName
self.databaseName = databaseName
self.totalTableQuantity = totalTableQuantity
self.createTime = createTime
self.lastUpdateTime = lastUpdateTime
self.physicalStorageCapacity = physicalStorageCapacity
self.category = category
self.source = source
self.owner = owner
self.location = location
self.comments = comments