Source code for azure.mgmt.media.models.asset_container_sas_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 AssetContainerSas(Model): """The Asset Storage container SAS URLs. :param asset_container_sas_urls: The list of Asset container SAS URLs. :type asset_container_sas_urls: list[str] """ _attribute_map = { 'asset_container_sas_urls': {'key': 'assetContainerSasUrls', 'type': '[str]'}, } def __init__(self, *, asset_container_sas_urls=None, **kwargs) -> None: super(AssetContainerSas, self).__init__(**kwargs) self.asset_container_sas_urls = asset_container_sas_urls