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
Name | Datatype | Description |
---|---|---|
authKey1 | string | The first authentication key. |
authKey2 | string | The second authentication key. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, sqlMigrationServiceName, subscriptionId | Retrieve the List of Authentication Keys for Self Hosted Integration Runtime. |
SELECT
examples
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 }}'
AND sqlMigrationServiceName = '{{ sqlMigrationServiceName }}'
AND subscriptionId = '{{ subscriptionId }}';