Source code for azure.mgmt.advisor._advisor_management_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 AdvisorManagementClientConfiguration
from .operations import RecommendationMetadataOperations
from .operations import ConfigurationsOperations
from .operations import RecommendationsOperations
from .operations import Operations
from .operations import SuppressionsOperations
from . import models


[docs]class AdvisorManagementClient(SDKClient): """REST APIs for Azure Advisor :ivar config: Configuration for client. :vartype config: AdvisorManagementClientConfiguration :ivar recommendation_metadata: RecommendationMetadata operations :vartype recommendation_metadata: azure.mgmt.advisor.operations.RecommendationMetadataOperations :ivar configurations: Configurations operations :vartype configurations: azure.mgmt.advisor.operations.ConfigurationsOperations :ivar recommendations: Recommendations operations :vartype recommendations: azure.mgmt.advisor.operations.RecommendationsOperations :ivar operations: Operations operations :vartype operations: azure.mgmt.advisor.operations.Operations :ivar suppressions: Suppressions operations :vartype suppressions: azure.mgmt.advisor.operations.SuppressionsOperations :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 Azure subscription ID. :type subscription_id: str :param str base_url: Service URL """ def __init__( self, credentials, subscription_id, base_url=None): self.config = AdvisorManagementClientConfiguration(credentials, subscription_id, base_url) super(AdvisorManagementClient, 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 = '2020-01-01' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) self.recommendation_metadata = RecommendationMetadataOperations( self._client, self.config, self._serialize, self._deserialize) self.configurations = ConfigurationsOperations( self._client, self.config, self._serialize, self._deserialize) self.recommendations = RecommendationsOperations( self._client, self.config, self._serialize, self._deserialize) self.operations = Operations( self._client, self.config, self._serialize, self._deserialize) self.suppressions = SuppressionsOperations( self._client, self.config, self._serialize, self._deserialize)