@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.46 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* Gets the integration account's Key Vault keys.
*
* Uses Azure REST API version 2019-05-01.
*
* Other available API versions: 2016-06-01, 2018-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native logic [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listIntegrationAccountKeyVaultKeys(args: ListIntegrationAccountKeyVaultKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListIntegrationAccountKeyVaultKeysResult>;
export interface ListIntegrationAccountKeyVaultKeysArgs {
/**
* The integration account name.
*/
integrationAccountName: string;
/**
* The key vault reference.
*/
keyVault: inputs.logic.KeyVaultReference;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The skip token.
*/
skipToken?: string;
}
/**
* Collection of key vault keys.
*/
export interface ListIntegrationAccountKeyVaultKeysResult {
/**
* The skip token.
*/
readonly skipToken?: string;
/**
* The key vault keys.
*/
readonly value?: outputs.logic.KeyVaultKeyResponse[];
}
/**
* Gets the integration account's Key Vault keys.
*
* Uses Azure REST API version 2019-05-01.
*
* Other available API versions: 2016-06-01, 2018-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native logic [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listIntegrationAccountKeyVaultKeysOutput(args: ListIntegrationAccountKeyVaultKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListIntegrationAccountKeyVaultKeysResult>;
export interface ListIntegrationAccountKeyVaultKeysOutputArgs {
/**
* The integration account name.
*/
integrationAccountName: pulumi.Input<string>;
/**
* The key vault reference.
*/
keyVault: pulumi.Input<inputs.logic.KeyVaultReferenceArgs>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The skip token.
*/
skipToken?: pulumi.Input<string>;
}