Source code for azure.mgmt.recoveryservicesbackup.models.generic_container_extended_info_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class GenericContainerExtendedInfo(Model): """Container extended information. :param raw_cert_data: Public key of container cert :type raw_cert_data: str :param container_identity_info: Container identity information :type container_identity_info: ~azure.mgmt.recoveryservicesbackup.models.ContainerIdentityInfo :param service_endpoints: Azure Backup Service Endpoints for the container :type service_endpoints: dict[str, str] """ _attribute_map = { 'raw_cert_data': {'key': 'rawCertData', 'type': 'str'}, 'container_identity_info': {'key': 'containerIdentityInfo', 'type': 'ContainerIdentityInfo'}, 'service_endpoints': {'key': 'serviceEndpoints', 'type': '{str}'}, } def __init__(self, *, raw_cert_data: str=None, container_identity_info=None, service_endpoints=None, **kwargs) -> None: super(GenericContainerExtendedInfo, self).__init__(**kwargs) self.raw_cert_data = raw_cert_data self.container_identity_info = container_identity_info self.service_endpoints = service_endpoints