sql_migration_services_auth_keys
Creates, updates, deletes, gets or lists a sql_migration_services_auth_keys
resource.
Overview
Name | sql_migration_services_auth_keys |
Type | Resource |
Id | azure.data_migration.sql_migration_services_auth_keys |
Fields
The following fields are returned by SELECT
queries:
- list
Successfully return of List Authentication Keys.
Name | Datatype | Description |
---|---|---|
authKey1 | string | The first authentication key. |
authKey2 | string | The second authentication key. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , sqlMigrationServiceName , subscriptionId | Retrieve the List of Authentication Keys for Self Hosted Integration Runtime. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
sqlMigrationServiceName | string | Name of the SQL Migration Service. |
subscriptionId | string | Subscription ID that identifies an Azure subscription. |
SELECT
examples
- list
Retrieve the List of Authentication Keys for Self Hosted Integration Runtime.
SELECT
authKey1,
authKey2
FROM azure.data_migration.sql_migration_services_auth_keys
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND sqlMigrationServiceName = '{{ sqlMigrationServiceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;