import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Retrived client application secrets. * * Uses Azure REST API version 2024-10-01-preview. */ export declare function listClientApplicationSecrets(args: ListClientApplicationSecretsArgs, opts?: pulumi.InvokeOptions): Promise; 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. */ export declare function listClientApplicationSecretsOutput(args: ListClientApplicationSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface ListClientApplicationSecretsOutputArgs { /** * Client Application identifier. Must be unique in the current API Management service instance. */ clientApplicationId: pulumi.Input; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input; /** * The name of the API Management service. */ serviceName: pulumi.Input; }