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

72 lines (71 loc) 1.98 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Solution REST Resource. * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getSolution(args: GetSolutionArgs, opts?: pulumi.InvokeOptions): Promise<GetSolutionResult>; export interface GetSolutionArgs { /** * Name of the Azure Migrate project. */ migrateProjectName: string; /** * Name of the Azure Resource Group that migrate project is part of. */ resourceGroupName: string; /** * Unique name of a migration solution within a migrate project. */ solutionName: string; } /** * Solution REST Resource. */ export interface GetSolutionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Gets or sets the ETAG for optimistic concurrency control. */ readonly etag?: string; /** * Gets the relative URL to get to this REST resource. */ readonly id: string; /** * Gets the name of this REST resource. */ readonly name: string; /** * Gets or sets the properties of the solution. */ readonly properties: outputs.migrate.SolutionPropertiesResponse; /** * Gets the type of this REST resource. */ readonly type: string; } /** * Solution REST Resource. * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getSolutionOutput(args: GetSolutionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSolutionResult>; export interface GetSolutionOutputArgs { /** * Name of the Azure Migrate project. */ migrateProjectName: pulumi.Input<string>; /** * Name of the Azure Resource Group that migrate project is part of. */ resourceGroupName: pulumi.Input<string>; /** * Unique name of a migration solution within a migrate project. */ solutionName: pulumi.Input<string>; }