UNPKG

@kengachu-pulumi/azure-native-apimanagement

Version:

Pulumi Azure Native package for apimanagement

39 lines (38 loc) 1.32 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes. */ export declare function getApiManagementServiceSsoToken(args: GetApiManagementServiceSsoTokenArgs, opts?: pulumi.InvokeOptions): Promise<GetApiManagementServiceSsoTokenResult>; export interface GetApiManagementServiceSsoTokenArgs { /** * The name of the resource group. */ resourceGroupName: string; /** * The name of the API Management service. */ serviceName: string; } /** * The response of the GetSsoToken operation. */ export interface GetApiManagementServiceSsoTokenResult { /** * Redirect URL containing the SSO token. */ readonly redirectUri?: string; } /** * Gets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes. */ export declare function getApiManagementServiceSsoTokenOutput(args: GetApiManagementServiceSsoTokenOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetApiManagementServiceSsoTokenResult>; export interface GetApiManagementServiceSsoTokenOutputArgs { /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * The name of the API Management service. */ serviceName: pulumi.Input<string>; }