How to use the azure-mgmt-msi.azure.mgmt.msi.version.VERSION function in azure-mgmt-msi

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

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

        self.credentials = credentials
        self.subscription_id = subscription_id