UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

52 lines (51 loc) 1.82 kB
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>; }