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

74 lines (73 loc) 1.93 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Retrieves the user solution. * * Uses Azure REST API version 2015-11-01-preview. */ export declare function getSolution(args: GetSolutionArgs, opts?: pulumi.InvokeOptions): Promise<GetSolutionResult>; export interface GetSolutionArgs { /** * The name of the resource group to get. The name is case insensitive. */ resourceGroupName: string; /** * User Solution Name. */ solutionName: string; } /** * The container for solution. */ export interface GetSolutionResult { /** * 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; /** * Plan for solution object supported by the OperationsManagement resource provider. */ readonly plan?: outputs.operationsmanagement.SolutionPlanResponse; /** * Properties for solution object supported by the OperationsManagement resource provider. */ readonly properties: outputs.operationsmanagement.SolutionPropertiesResponse; /** * Resource tags */ readonly tags?: { [key: string]: string; }; /** * Resource type. */ readonly type: string; } /** * Retrieves the user solution. * * Uses Azure REST API version 2015-11-01-preview. */ export declare function getSolutionOutput(args: GetSolutionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSolutionResult>; export interface GetSolutionOutputArgs { /** * The name of the resource group to get. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * User Solution Name. */ solutionName: pulumi.Input<string>; }