@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the console for the user.
*
* Uses Azure REST API version 2018-10-01.
*/
export declare function getConsoleWithLocation(args: GetConsoleWithLocationArgs, opts?: pulumi.InvokeOptions): Promise<GetConsoleWithLocationResult>;
export interface GetConsoleWithLocationArgs {
/**
* The name of the console
*/
consoleName: string;
/**
* The provider location
*/
location: string;
}
/**
* Cloud shell console
*/
export interface GetConsoleWithLocationResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Cloud shell console properties.
*/
readonly properties: outputs.portal.ConsolePropertiesResponse;
}
/**
* Gets the console for the user.
*
* Uses Azure REST API version 2018-10-01.
*/
export declare function getConsoleWithLocationOutput(args: GetConsoleWithLocationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConsoleWithLocationResult>;
export interface GetConsoleWithLocationOutputArgs {
/**
* The name of the console
*/
consoleName: pulumi.Input<string>;
/**
* The provider location
*/
location: pulumi.Input<string>;
}