@kengachu-pulumi/azure-native-apimanagement
Version:
Pulumi Azure Native package for apimanagement
56 lines (55 loc) • 2.41 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
* Retrived client application secrets.
*
* Uses Azure REST API version 2024-10-01-preview.
*
* Other available API versions: 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listClientApplicationSecrets(args: ListClientApplicationSecretsArgs, opts?: pulumi.InvokeOptions): Promise<ListClientApplicationSecretsResult>;
export interface ListClientApplicationSecretsArgs {
/**
* Client Application identifier. Must be unique in the current API Management service instance.
*/
clientApplicationId: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the API Management service.
*/
serviceName: string;
}
/**
* Specifies client application secrets needed to authorize applications API calls
*/
export interface ListClientApplicationSecretsResult {
/**
* Microsoft EntraID client application secrets
*/
readonly entra?: types.outputs.ClientApplicationSecretsContractResponseEntra;
}
/**
* Retrived client application secrets.
*
* Uses Azure REST API version 2024-10-01-preview.
*
* Other available API versions: 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listClientApplicationSecretsOutput(args: ListClientApplicationSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListClientApplicationSecretsResult>;
export interface ListClientApplicationSecretsOutputArgs {
/**
* Client Application identifier. Must be unique in the current API Management service instance.
*/
clientApplicationId: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the API Management service.
*/
serviceName: pulumi.Input<string>;
}