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.61 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a VMware collector. * * Uses Azure REST API version 2019-10-01. */ export declare function getVMwareCollector(args: GetVMwareCollectorArgs, opts?: pulumi.InvokeOptions): Promise<GetVMwareCollectorResult>; export interface GetVMwareCollectorArgs { /** * Name of the Azure Migrate project. */ projectName: string; /** * Name of the Azure Resource Group that project is part of. */ resourceGroupName: string; /** * Unique name of a VMware collector within a project. */ vmWareCollectorName: string; } export interface GetVMwareCollectorResult { /** * 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 VMware collector. * * Uses Azure REST API version 2019-10-01. */ export declare function getVMwareCollectorOutput(args: GetVMwareCollectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVMwareCollectorResult>; export interface GetVMwareCollectorOutputArgs { /** * 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>; /** * Unique name of a VMware collector within a project. */ vmWareCollectorName: pulumi.Input<string>; }