Class Client
The Client class provides access to MindsDB API functionalities. It manages the connection to the API, exposes interfaces for interacting with datasources and minds, and acts as a wrapper for the API calls.
public class Client
- Inheritance
-
Client
- Inherited Members
Constructors
Client(string, string)
Initializes a new instance of the Client class, which provides access to the MindsDB API, datasources, and minds.
public Client(string apiKey, string baseUrl = null)
Parameters
apiKey
stringThe API key required for authentication with the MindsDB API.
baseUrl
stringThe base URL of the MindsDB API (optional).
Properties
Api
Gets the RestAPI instance that manages API calls to MindsDB.
public RestAPI Api { get; }
Property Value
Datasources
Gets the Datasources manager that handles datasource-related operations.
public Datasources Datasources { get; }
Property Value
Minds
Gets the Minds manager that handles mind-related operations.
public Minds Minds { get; }