Datastores interface
Interface representing a Datastores.
Methods
| create | 
	Create or update datastore.  | 
| delete(string, string, string, Datastores | 
	Delete datastore.  | 
| get(string, string, string, Datastores | 
	Get datastore.  | 
| list(string, string, Datastores | 
	List datastores.  | 
| list | 
	Get datastore secrets.  | 
Method Details
		createOrUpdate(string, string, string, Datastore, DatastoresCreateOrUpdateOptionalParams)
	     
	Create or update datastore.
function createOrUpdate(resourceGroupName: string, workspaceName: string, name: string, body: Datastore, options?: DatastoresCreateOrUpdateOptionalParams): Promise<Datastore>
				Parameters
- resourceGroupName
 - 
				
string
 
The name of the resource group. The name is case insensitive.
- workspaceName
 - 
				
string
 
Name of Azure Machine Learning workspace.
- name
 - 
				
string
 
Datastore name.
- body
 - Datastore
 
Datastore entity to create or update.
The options parameters.
Returns
Promise<Datastore>
		delete(string, string, string, DatastoresDeleteOptionalParams)
	   
	Delete datastore.
function delete(resourceGroupName: string, workspaceName: string, name: string, options?: DatastoresDeleteOptionalParams): Promise<void>
				Parameters
- resourceGroupName
 - 
				
string
 
The name of the resource group. The name is case insensitive.
- workspaceName
 - 
				
string
 
Name of Azure Machine Learning workspace.
- name
 - 
				
string
 
Datastore name.
- options
 - DatastoresDeleteOptionalParams
 
The options parameters.
Returns
Promise<void>
		get(string, string, string, DatastoresGetOptionalParams)
	   
	Get datastore.
function get(resourceGroupName: string, workspaceName: string, name: string, options?: DatastoresGetOptionalParams): Promise<Datastore>
				Parameters
- resourceGroupName
 - 
				
string
 
The name of the resource group. The name is case insensitive.
- workspaceName
 - 
				
string
 
Name of Azure Machine Learning workspace.
- name
 - 
				
string
 
Datastore name.
- options
 - DatastoresGetOptionalParams
 
The options parameters.
Returns
Promise<Datastore>
		list(string, string, DatastoresListOptionalParams)
	   
	List datastores.
function list(resourceGroupName: string, workspaceName: string, options?: DatastoresListOptionalParams): PagedAsyncIterableIterator<Datastore, Datastore[], PageSettings>
				Parameters
- resourceGroupName
 - 
				
string
 
The name of the resource group. The name is case insensitive.
- workspaceName
 - 
				
string
 
Name of Azure Machine Learning workspace.
- options
 - DatastoresListOptionalParams
 
The options parameters.
Returns
		listSecrets(string, string, string, DatastoresListSecretsOptionalParams)
	     
	Get datastore secrets.
function listSecrets(resourceGroupName: string, workspaceName: string, name: string, options?: DatastoresListSecretsOptionalParams): Promise<DatastoreSecretsUnion>
				Parameters
- resourceGroupName
 - 
				
string
 
The name of the resource group. The name is case insensitive.
- workspaceName
 - 
				
string
 
Name of Azure Machine Learning workspace.
- name
 - 
				
string
 
Datastore name.
The options parameters.
Returns
Promise<DatastoreSecretsUnion>