Source code for azure.mgmt.apimanagement.models.api_management_service_apply_network_configuration_parameters_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 ApiManagementServiceApplyNetworkConfigurationParameters(Model): """Parameter supplied to the Apply Network configuration operation. :param location: Location of the Api Management service to update for a multi-region service. For a service deployed in a single region, this parameter is not required. :type location: str """ _attribute_map = { 'location': {'key': 'location', 'type': 'str'}, } def __init__(self, *, location: str=None, **kwargs) -> None: super(ApiManagementServiceApplyNetworkConfigurationParameters, self).__init__(**kwargs) self.location = location