@kengachu-pulumi/azure-native-apimanagement
Version:
Pulumi Azure Native package for apimanagement
45 lines (44 loc) • 1.69 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2016-10-10, 2017-03-01, 2022-09-01-preview, 2023-03-01-preview.
*/
export declare function getApiManagementServiceSsoToken(args: GetApiManagementServiceSsoTokenArgs, opts?: pulumi.InvokeOptions): Promise<GetApiManagementServiceSsoTokenResult>;
export interface GetApiManagementServiceSsoTokenArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the API Management service.
*/
serviceName: string;
}
/**
* The response of the GetSsoToken operation.
*/
export interface GetApiManagementServiceSsoTokenResult {
/**
* Redirect URL to the Publisher Portal containing the SSO token.
*/
readonly redirectUri?: string;
}
/**
* Gets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2016-10-10, 2017-03-01, 2022-09-01-preview, 2023-03-01-preview.
*/
export declare function getApiManagementServiceSsoTokenOutput(args: GetApiManagementServiceSsoTokenOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetApiManagementServiceSsoTokenResult>;
export interface GetApiManagementServiceSsoTokenOutputArgs {
/**
* 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>;
}