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.74 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get current user settings for current signed in user. This operation returns settings for the user's cloud shell preferences including preferred location, storage profile, shell type, font and size settings. * * Uses Azure REST API version 2018-10-01. */ export declare function getUserSettingsWithLocation(args: GetUserSettingsWithLocationArgs, opts?: pulumi.InvokeOptions): Promise<GetUserSettingsWithLocationResult>; export interface GetUserSettingsWithLocationArgs { /** * The provider location */ location: string; /** * The name of the user settings */ userSettingsName: string; } /** * Response to get user settings */ export interface GetUserSettingsWithLocationResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The cloud shell user settings properties. */ readonly properties: outputs.portal.UserPropertiesResponse; } /** * Get current user settings for current signed in user. This operation returns settings for the user's cloud shell preferences including preferred location, storage profile, shell type, font and size settings. * * Uses Azure REST API version 2018-10-01. */ export declare function getUserSettingsWithLocationOutput(args: GetUserSettingsWithLocationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUserSettingsWithLocationResult>; export interface GetUserSettingsWithLocationOutputArgs { /** * The provider location */ location: pulumi.Input<string>; /** * The name of the user settings */ userSettingsName: pulumi.Input<string>; }