@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.74 kB
TypeScript
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>;
}