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

54 lines (53 loc) 1.62 kB
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>; }