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

48 lines (47 loc) 1.3 kB
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>; }