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