1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# 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
class ServiceBusAuthentication(Model):
"""ServiceBusAuthentication.
:param sas_key: Gets or sets the SAS key.
:type sas_key: str
:param sas_key_name: Gets or sets the SAS key name.
:type sas_key_name: str
:param type: Gets or sets the authentication type. Possible values
include: 'NotSpecified', 'SharedAccessKey'
:type type: str or :class:`ServiceBusAuthenticationType
<azure.mgmt.scheduler.models.ServiceBusAuthenticationType>`
"""
_attribute_map = {
'sas_key': {'key': 'sasKey', 'type': 'str'},
'sas_key_name': {'key': 'sasKeyName', 'type': 'str'},
'type': {'key': 'type', 'type': 'ServiceBusAuthenticationType'},
}
def __init__(self, sas_key=None, sas_key_name=None, type=None):
self.sas_key = sas_key
self.sas_key_name = sas_key_name
self.type = type
|