# 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 Repository(object):
def __init__(self, createdAt=None, updatedAt=None, registryName=None, repositoryName=None, repositoryUri=None, totalSpaceUsedMB=None, description=None):
"""
:param createdAt: (Optional) 记录用户repository创建的时间。
:param updatedAt: (Optional) 记录用户repository更新的时间。
:param registryName: (Optional) 注册表名称。
:param repositoryName: (Optional) 镜像仓库名称。
:param repositoryUri: (Optional) 镜像仓库中的镜像总个数。
:param totalSpaceUsedMB: (Optional) 镜像仓库大小。
:param description: (Optional) 镜像仓库描述。
"""
self.createdAt = createdAt
self.updatedAt = updatedAt
self.registryName = registryName
self.repositoryName = repositoryName
self.repositoryUri = repositoryUri
self.totalSpaceUsedMB = totalSpaceUsedMB
self.description = description