@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.61 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Retrieves the authentication keys for an integration runtime.
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function listIntegrationRuntimeAuthKeys(args: ListIntegrationRuntimeAuthKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListIntegrationRuntimeAuthKeysResult>;
export interface ListIntegrationRuntimeAuthKeysArgs {
/**
* The factory name.
*/
factoryName: string;
/**
* The integration runtime name.
*/
integrationRuntimeName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
}
/**
* The integration runtime authentication keys.
*/
export interface ListIntegrationRuntimeAuthKeysResult {
/**
* The primary integration runtime authentication key.
*/
readonly authKey1?: string;
/**
* The secondary integration runtime authentication key.
*/
readonly authKey2?: string;
}
/**
* Retrieves the authentication keys for an integration runtime.
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function listIntegrationRuntimeAuthKeysOutput(args: ListIntegrationRuntimeAuthKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListIntegrationRuntimeAuthKeysResult>;
export interface ListIntegrationRuntimeAuthKeysOutputArgs {
/**
* The factory name.
*/
factoryName: pulumi.Input<string>;
/**
* The integration runtime name.
*/
integrationRuntimeName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
}