public DwManagementClient()

in arm-templates/sqlDwAutoScaler/SqlDwAutoScaler/Shared/DwManagementClient.cs [34:42]


        public DwManagementClient(TokenCloudCredentials cloudCredentials, string resourceId)
        {
            if (string.IsNullOrEmpty(resourceId))
                throw new ArgumentNullException(nameof(resourceId));

            this.restEndPointUrl = string.Format(restEndPointBaseUrl, resourceId);
            this.cloudCredentials = cloudCredentials;
            this.httpClient = new HttpClient();
        }