private DatabricksClient()

in csharp/Microsoft.Azure.Databricks.Client/DatabricksClient.cs [20:39]


    private DatabricksClient(HttpClient httpClient)
    {
        this.Clusters = new ClustersApiClient(httpClient);
        this.Jobs = new JobsApiClient(httpClient);
        this.Dbfs = new DbfsApiClient(httpClient);
        this.Secrets = new SecretsApiClient(httpClient);
        this.Groups = new GroupsApiClient(httpClient);
        this.Libraries = new LibrariesApiClient(httpClient);
        this.Token = new TokenApiClient(httpClient);
        this.Workspace = new WorkspaceApiClient(httpClient);
        this.InstancePool = new InstancePoolApiClient(httpClient);
        this.Permissions = new PermissionsApiClient(httpClient);
        this.ClusterPolicies = new ClusterPoliciesApiClient(httpClient);
        this.GlobalInitScriptsApi = new GlobalInitScriptsApi(httpClient);
        this.SQL = new SQLApiClient(httpClient);
        this.Repos = new ReposApiClient(httpClient);
        this.Pipelines = new PipelinesApiClient(httpClient);
        this.UnityCatalog = new UnityCatalogClient(httpClient);
        this.MachineLearning = new MachineLearningClient(httpClient);
    }