Initialize a new Azure SQL database Datastore.
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
)The workspace this datastore belongs to.
The datastore name.
The SQL server name.
The SQL database name.
The Directory ID/Tenant ID of the service principal.
The Client ID/Application ID of the service principal.
The secret of the service principal.
The resource URL, which determines what operations will be performed on the SQL database store, if NULL, defaults to https://database.windows.net/.
The authority URL used to authenticate the user, defaults to https://login.microsoftonline.com.
The endpoint of the SQL server. If NULL, defaults to database.windows.net.
Whether to overwrite an existing datastore. If the datastore does not exist, it will create one. The default is FALSE.
The username of the database user to access the database.
The password of the database user to access the database.
The azureml.data.azure_sql_database_datastore.AzureSqlDatabaseDatastore
object.