How to use the azure-mgmt-datalake-store.azure.mgmt.datalake.store.filesystem.data_lake_store_file_system_management_client.DataLakeStoreFileSystemManagementClientConfiguration 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 / filesystem / data_lake_store_file_system_management_client.py View on Github external
def __init__(
            self, credentials, adls_file_system_dns_suffix, api_version='2015-10-01-preview', accept_language='en-US', long_running_operation_retry_timeout=30, generate_client_request_id=True, filepath=None):

        self.config = DataLakeStoreFileSystemManagementClientConfiguration(credentials, adls_file_system_dns_suffix, api_version, accept_language, long_running_operation_retry_timeout, generate_client_request_id, filepath)
        self._client = ServiceClient(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.file_system = FileSystemOperations(
            self._client, self.config, self._serialize, self._deserialize)
github Azure / azure-sdk-for-python / azure-mgmt-datalake-store / azure / mgmt / datalake / store / filesystem / data_lake_store_file_system_management_client.py View on Github external
def __init__(
            self, credentials, adls_file_system_dns_suffix, api_version='2015-10-01-preview', accept_language='en-US', long_running_operation_retry_timeout=30, generate_client_request_id=True, filepath=None):

        if credentials is None:
            raise ValueError("Parameter 'credentials' must not be None.")
        if api_version is not None and not isinstance(api_version, str):
            raise TypeError("Optional parameter 'api_version' must be str.")
        if adls_file_system_dns_suffix is None:
            raise ValueError("Parameter 'adls_file_system_dns_suffix' must not be None.")
        if not isinstance(adls_file_system_dns_suffix, str):
            raise TypeError("Parameter 'adls_file_system_dns_suffix' must be str.")
        if accept_language is not None and not isinstance(accept_language, str):
            raise TypeError("Optional parameter 'accept_language' must be str.")
        base_url = 'https://{accountName}.{adlsFileSystemDnsSuffix}'

        super(DataLakeStoreFileSystemManagementClientConfiguration, self).__init__(base_url, filepath)

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

        self.credentials = credentials
        self.api_version = api_version
        self.adls_file_system_dns_suffix = adls_file_system_dns_suffix
        self.accept_language = accept_language
        self.long_running_operation_retry_timeout = long_running_operation_retry_timeout
        self.generate_client_request_id = generate_client_request_id

azure-mgmt-datalake-store

Microsoft Azure Data Lake Store Management Client Library for Python

MIT
Latest version published 6 years ago

Package Health Score

82 / 100
Full package analysis

Popular azure-mgmt-datalake-store functions

Similar packages