Source code for jdcloud_sdk.services.mongodb.models.BackupDownloadURL

# 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 BackupDownloadURL(object): def __init__(self, backupName=None, backupInternetDownloadURL=None, backupIntranetDownloadURL=None, linkExpiredTime=None): """ :param backupName: (Optional) 备份名称 :param backupInternetDownloadURL: (Optional) 公网下载链接的地址 :param backupIntranetDownloadURL: (Optional) 内网下载链接的地址 :param linkExpiredTime: (Optional) 公网和内网的下载链接过期时间 """ self.backupName = backupName self.backupInternetDownloadURL = backupInternetDownloadURL self.backupIntranetDownloadURL = backupIntranetDownloadURL self.linkExpiredTime = linkExpiredTime