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