Source code for azure.mgmt.resource.locks.v2015_01_01._management_lock_client

# 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.service_client import SDKClient
from msrest import Serializer, Deserializer

from ._configuration import ManagementLockClientConfiguration
from .operations import ManagementLocksOperations
from . import models


[docs]class ManagementLockClient(SDKClient): """ManagementLockClient :ivar config: Configuration for client. :vartype config: ManagementLockClientConfiguration :ivar management_locks: ManagementLocks operations :vartype management_locks: azure.mgmt.resource.locks.v2015_01_01.operations.ManagementLocksOperations :param credentials: Credentials needed for the client to connect to Azure. :type credentials: :mod:`A msrestazure Credentials object<msrestazure.azure_active_directory>` :param subscription_id: The ID of the target subscription. :type subscription_id: str :param str base_url: Service URL """ def __init__( self, credentials, subscription_id, base_url=None): self.config = ManagementLockClientConfiguration(credentials, subscription_id, base_url) super(ManagementLockClient, self).__init__(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} self.api_version = '2015-01-01' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) self.management_locks = ManagementLocksOperations( self._client, self.config, self._serialize, self._deserialize)