How to use the azure-mgmt-datalake-store.azure.mgmt.datalake.store.data_lake_store_account_management_client.DataLakeStoreAccountManagementClientConfiguration function in azure-mgmt-datalake-store

To help you get started, we’ve selected a few azure-mgmt-datalake-store 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-datalake-store / azure / mgmt / datalake / store / data_lake_store_account_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(DataLakeStoreAccountManagementClientConfiguration, self).__init__(base_url)

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

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

        self.config = DataLakeStoreAccountManagementClientConfiguration(credentials, subscription_id, base_url)
        super(DataLakeStoreAccountManagementClient, 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 = '2016-11-01'
        self._serialize = Serializer(client_models)
        self._deserialize = Deserializer(client_models)

        self.accounts = AccountsOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.firewall_rules = FirewallRulesOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.virtual_network_rules = VirtualNetworkRulesOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.trusted_id_providers = TrustedIdProvidersOperations(
            self._client, self.config, self._serialize, self._deserialize)
        self.operations = Operations(

azure-mgmt-datalake-store

Microsoft Azure Data Lake Store Management Client Library for Python

MIT
Latest version published 6 years ago

Package Health Score

88 / 100
Full package analysis

Popular azure-mgmt-datalake-store functions

Similar packages