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

64 lines (63 loc) 1.92 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Retrieves the user ManagementConfiguration. * * Uses Azure REST API version 2015-11-01-preview. */ export declare function getManagementConfiguration(args: GetManagementConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetManagementConfigurationResult>; export interface GetManagementConfigurationArgs { /** * User Management Configuration Name. */ managementConfigurationName: string; /** * The name of the resource group to get. The name is case insensitive. */ resourceGroupName: string; } /** * The container for solution. */ export interface GetManagementConfigurationResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Resource ID. */ readonly id: string; /** * Resource location */ readonly location?: string; /** * Resource name. */ readonly name: string; /** * Properties for ManagementConfiguration object supported by the OperationsManagement resource provider. */ readonly properties: outputs.operationsmanagement.ManagementConfigurationPropertiesResponse; /** * Resource type. */ readonly type: string; } /** * Retrieves the user ManagementConfiguration. * * Uses Azure REST API version 2015-11-01-preview. */ export declare function getManagementConfigurationOutput(args: GetManagementConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagementConfigurationResult>; export interface GetManagementConfigurationOutputArgs { /** * User Management Configuration Name. */ managementConfigurationName: pulumi.Input<string>; /** * The name of the resource group to get. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }