Skip to main content

sql_migration_services_auth_keys

Creates, updates, deletes, gets or lists a sql_migration_services_auth_keys resource.

Overview

Namesql_migration_services_auth_keys
TypeResource
Idazure.data_migration.sql_migration_services_auth_keys

Fields

NameDatatypeDescription
authKey1stringThe first authentication key.
authKey2stringThe second authentication key.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, sqlMigrationServiceName, subscriptionIdRetrieve 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 }}';