| register_azure_sql_database_datastore {azuremlsdk} | R Documentation | 
Initialize a new Azure SQL database Datastore.
Description
Initialize a new Azure SQL database Datastore.
Usage
register_azure_sql_database_datastore(
  workspace,
  datastore_name,
  server_name,
  database_name,
  tenant_id,
  client_id,
  client_secret,
  resource_url = NULL,
  authority_url = NULL,
  endpoint = NULL,
  overwrite = FALSE,
  username = NULL,
  password = NULL
)
Arguments
| workspace | The workspace this datastore belongs to. | 
| datastore_name | The datastore name. | 
| server_name | The SQL server name. | 
| database_name | The SQL database name. | 
| tenant_id | The Directory ID/Tenant ID of the service principal. | 
| client_id | The Client ID/Application ID of the service principal. | 
| client_secret | The secret of the service principal. | 
| resource_url | The resource URL, which determines what operations will be performed on the SQL database store, if NULL, defaults to https://database.windows.net/. | 
| authority_url | The authority URL used to authenticate the user, defaults to https://login.microsoftonline.com. | 
| endpoint | The endpoint of the SQL server. If NULL, defaults to database.windows.net. | 
| overwrite | Whether to overwrite an existing datastore. If the datastore does not exist, it will create one. The default is FALSE. | 
| username | The username of the database user to access the database. | 
| password | The password of the database user to access the database. | 
Value
The azureml.data.azure_sql_database_datastore.AzureSqlDatabaseDatastore
object.