@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.82 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Retrived client application secrets.
*
* Uses Azure REST API version 2024-10-01-preview.
*/
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?: outputs.apimanagement.ClientApplicationSecretsContractResponseEntra;
}
/**
* Retrived client application secrets.
*
* Uses Azure REST API version 2024-10-01-preview.
*/
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>;
}