How to use the azure-mgmt-loganalytics.azure.mgmt.loganalytics.log_analytics_management_client.LogAnalyticsManagementClientConfiguration function in azure-mgmt-loganalytics

To help you get started, we’ve selected a few azure-mgmt-loganalytics examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-mgmt-loganalytics / azure / mgmt / loganalytics / log_analytics_management_client.py View on Github external
def __init__(
            self, credentials, subscription_id, base_url=None):

        self.config = LogAnalyticsManagementClientConfiguration(credentials, subscription_id, base_url)
        super(LogAnalyticsManagementClient, self).__init__(self.config.credentials, self.config)

        client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
        self._serialize = Serializer(client_models)
        self._deserialize = Deserializer(client_models)

        self.storage_insights = StorageInsightsOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.workspaces = WorkspacesOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.saved_searches = SavedSearchesOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.linked_services = LinkedServicesOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.data_sources = DataSourcesOperations(
            self._client, self.config, self._serialize, self._deserialize)
github Azure / azure-sdk-for-python / azure-mgmt-loganalytics / azure / mgmt / loganalytics / log_analytics_management_client.py View on Github external
def __init__(
            self, credentials, subscription_id, base_url=None):

        if credentials is None:
            raise ValueError("Parameter 'credentials' must not be None.")
        if subscription_id is None:
            raise ValueError("Parameter 'subscription_id' must not be None.")
        if not base_url:
            base_url = 'https://management.azure.com'

        super(LogAnalyticsManagementClientConfiguration, self).__init__(base_url)

        self.add_user_agent('azure-mgmt-loganalytics/{}'.format(VERSION))
        self.add_user_agent('Azure-SDK-For-Python')

        self.credentials = credentials
        self.subscription_id = subscription_id

azure-mgmt-loganalytics

Microsoft Azure Log Analytics Management Client Library for Python

MIT
Latest version published 3 years ago

Package Health Score

82 / 100
Full package analysis

Similar packages