Source code for azure.mgmt.signalr.models.signal_rcreate_or_update_properties_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 SignalRCreateOrUpdateProperties(Model): """Settings used to provision or configure the resource. :param host_name_prefix: Prefix for the hostName of the SignalR service. Retained for future use. The hostname will be of format: <hostNamePrefix>.service.signalr.net. :type host_name_prefix: str """ _attribute_map = { 'host_name_prefix': {'key': 'hostNamePrefix', 'type': 'str'}, } def __init__(self, *, host_name_prefix: str=None, **kwargs) -> None: super(SignalRCreateOrUpdateProperties, self).__init__(**kwargs) self.host_name_prefix = host_name_prefix