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