@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.62 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a Hyper-V collector.
*
* Uses Azure REST API version 2019-10-01.
*/
export declare function getHyperVCollector(args: GetHyperVCollectorArgs, opts?: pulumi.InvokeOptions): Promise<GetHyperVCollectorResult>;
export interface GetHyperVCollectorArgs {
/**
* Unique name of a Hyper-V collector within a project.
*/
hyperVCollectorName: string;
/**
* Name of the Azure Migrate project.
*/
projectName: string;
/**
* Name of the Azure Resource Group that project is part of.
*/
resourceGroupName: string;
}
export interface GetHyperVCollectorResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
readonly eTag?: string;
readonly id: string;
readonly name: string;
readonly properties: outputs.migrate.CollectorPropertiesResponse;
readonly type: string;
}
/**
* Get a Hyper-V collector.
*
* Uses Azure REST API version 2019-10-01.
*/
export declare function getHyperVCollectorOutput(args: GetHyperVCollectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHyperVCollectorResult>;
export interface GetHyperVCollectorOutputArgs {
/**
* Unique name of a Hyper-V collector within a project.
*/
hyperVCollectorName: pulumi.Input<string>;
/**
* Name of the Azure Migrate project.
*/
projectName: pulumi.Input<string>;
/**
* Name of the Azure Resource Group that project is part of.
*/
resourceGroupName: pulumi.Input<string>;
}