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

88 lines (87 loc) 2.41 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Retrieves the user ManagementAssociation. * * Uses Azure REST API version 2015-11-01-preview. */ export declare function getManagementAssociation(args: GetManagementAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetManagementAssociationResult>; export interface GetManagementAssociationArgs { /** * User ManagementAssociation Name. */ managementAssociationName: string; /** * Provider name for the parent resource. */ providerName: string; /** * The name of the resource group to get. The name is case insensitive. */ resourceGroupName: string; /** * Parent resource name. */ resourceName: string; /** * Resource type for the parent resource */ resourceType: string; } /** * The container for solution. */ export interface GetManagementAssociationResult { /** * 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 ManagementAssociation object supported by the OperationsManagement resource provider. */ readonly properties: outputs.operationsmanagement.ManagementAssociationPropertiesResponse; /** * Resource type. */ readonly type: string; } /** * Retrieves the user ManagementAssociation. * * Uses Azure REST API version 2015-11-01-preview. */ export declare function getManagementAssociationOutput(args: GetManagementAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagementAssociationResult>; export interface GetManagementAssociationOutputArgs { /** * User ManagementAssociation Name. */ managementAssociationName: pulumi.Input<string>; /** * Provider name for the parent resource. */ providerName: pulumi.Input<string>; /** * The name of the resource group to get. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Parent resource name. */ resourceName: pulumi.Input<string>; /** * Resource type for the parent resource */ resourceType: pulumi.Input<string>; }