@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.43 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Retrieve the List of Authentication Keys for Self Hosted Integration Runtime.
*
* Uses Azure REST API version 2023-07-15-preview.
*
* Other available API versions: 2021-10-30-preview, 2022-01-30-preview, 2022-03-30-preview, 2025-03-15-preview, 2025-06-30. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native datamigration [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listSqlMigrationServiceAuthKeys(args: ListSqlMigrationServiceAuthKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListSqlMigrationServiceAuthKeysResult>;
export interface ListSqlMigrationServiceAuthKeysArgs {
/**
* Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
resourceGroupName: string;
/**
* Name of the SQL Migration Service.
*/
sqlMigrationServiceName: string;
}
/**
* An authentication key.
*/
export interface ListSqlMigrationServiceAuthKeysResult {
/**
* The first authentication key.
*/
readonly authKey1?: string;
/**
* The second authentication key.
*/
readonly authKey2?: string;
}
/**
* Retrieve the List of Authentication Keys for Self Hosted Integration Runtime.
*
* Uses Azure REST API version 2023-07-15-preview.
*
* Other available API versions: 2021-10-30-preview, 2022-01-30-preview, 2022-03-30-preview, 2025-03-15-preview, 2025-06-30. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native datamigration [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listSqlMigrationServiceAuthKeysOutput(args: ListSqlMigrationServiceAuthKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListSqlMigrationServiceAuthKeysResult>;
export interface ListSqlMigrationServiceAuthKeysOutputArgs {
/**
* Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of the SQL Migration Service.
*/
sqlMigrationServiceName: pulumi.Input<string>;
}