@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.93 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* List the authorization keys associated with this account.
*
* Uses Azure REST API version 2024-04-01-preview.
*
* Other available API versions: 2021-12-01, 2023-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native purview [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listAccountKeys(args: ListAccountKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListAccountKeysResult>;
export interface ListAccountKeysArgs {
/**
* The name of the account.
*/
accountName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
}
/**
* The Purview Account access keys.
*/
export interface ListAccountKeysResult {
/**
* Gets or sets the primary connection string.
*/
readonly atlasKafkaPrimaryEndpoint?: string;
/**
* Gets or sets the secondary connection string.
*/
readonly atlasKafkaSecondaryEndpoint?: string;
}
/**
* List the authorization keys associated with this account.
*
* Uses Azure REST API version 2024-04-01-preview.
*
* Other available API versions: 2021-12-01, 2023-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native purview [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listAccountKeysOutput(args: ListAccountKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListAccountKeysResult>;
export interface ListAccountKeysOutputArgs {
/**
* The name of the account.
*/
accountName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
}