# 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 AkamaiAccessControl(Model):
"""Akamai access control.
:param akamai_signature_header_authentication_key_list: authentication key
list
:type akamai_signature_header_authentication_key_list:
list[~azure.mgmt.media.models.AkamaiSignatureHeaderAuthenticationKey]
"""
_attribute_map = {
'akamai_signature_header_authentication_key_list': {'key': 'akamaiSignatureHeaderAuthenticationKeyList', 'type': '[AkamaiSignatureHeaderAuthenticationKey]'},
}
def __init__(self, *, akamai_signature_header_authentication_key_list=None, **kwargs) -> None:
super(AkamaiAccessControl, self).__init__(**kwargs)
self.akamai_signature_header_authentication_key_list = akamai_signature_header_authentication_key_list