@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.29 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the details of the modernize project.
*
* Uses Azure REST API version 2022-05-01-preview.
*/
export declare function getModernizeProject(args: GetModernizeProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetModernizeProjectResult>;
export interface GetModernizeProjectArgs {
/**
* Modernize project name.
*/
modernizeProjectName: string;
/**
* Name of the Azure Resource Group that project is part of.
*/
resourceGroupName: string;
/**
* Azure Subscription Id in which project was created.
*/
subscriptionId?: string;
}
/**
* ModernizeProject model.
*/
export interface GetModernizeProjectResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Gets or sets the Id of the resource.
*/
readonly id: string;
readonly identity?: outputs.migrate.ResourceIdentityResponse;
/**
* Gets or sets the location of the modernizeProject.
*/
readonly location?: string;
/**
* Gets or sets the name of the resource.
*/
readonly name: string;
/**
* ModernizeProject properties.
*/
readonly properties: outputs.migrate.ModernizeProjectModelPropertiesResponse;
readonly systemData: outputs.migrate.ModernizeProjectModelResponseSystemData;
/**
* Gets or sets the resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Gets or sets the type of the resource.
*/
readonly type: string;
}
/**
* Gets the details of the modernize project.
*
* Uses Azure REST API version 2022-05-01-preview.
*/
export declare function getModernizeProjectOutput(args: GetModernizeProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetModernizeProjectResult>;
export interface GetModernizeProjectOutputArgs {
/**
* Modernize project name.
*/
modernizeProjectName: pulumi.Input<string>;
/**
* Name of the Azure Resource Group that project is part of.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Azure Subscription Id in which project was created.
*/
subscriptionId?: pulumi.Input<string>;
}