UNPKG

@kengachu-pulumi/azure-native-apimanagement

Version:

Pulumi Azure Native package for apimanagement

61 lines (60 loc) 2.13 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets the client secret details of the authorization server. * Azure REST API version: 2022-08-01. * * Other available API versions: 2022-09-01-preview, 2023-03-01-preview. */ export declare function listAuthorizationServerSecrets(args: ListAuthorizationServerSecretsArgs, opts?: pulumi.InvokeOptions): Promise<ListAuthorizationServerSecretsResult>; export interface ListAuthorizationServerSecretsArgs { /** * Identifier of the authorization server. */ authsid: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the API Management service. */ serviceName: string; } /** * OAuth Server Secrets Contract. */ export interface ListAuthorizationServerSecretsResult { /** * oAuth Authorization Server Secrets. */ readonly clientSecret?: string; /** * Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password. */ readonly resourceOwnerPassword?: string; /** * Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username. */ readonly resourceOwnerUsername?: string; } /** * Gets the client secret details of the authorization server. * Azure REST API version: 2022-08-01. * * Other available API versions: 2022-09-01-preview, 2023-03-01-preview. */ export declare function listAuthorizationServerSecretsOutput(args: ListAuthorizationServerSecretsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<ListAuthorizationServerSecretsResult>; export interface ListAuthorizationServerSecretsOutputArgs { /** * Identifier of the authorization server. */ authsid: 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>; }