import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about existing System Center Virtual Machine Manager Inventory Items. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.systemcenter.getVirtualMachineManagerInventoryItems({ * inventoryType: "Cloud", * systemCenterVirtualMachineManagerServerId: exampleAzurermSystemCenterVirtualMachineManagerServer.id, * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ScVmm` - 2023-10-07 */ export declare function getVirtualMachineManagerInventoryItems(args: GetVirtualMachineManagerInventoryItemsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVirtualMachineManagerInventoryItems. */ export interface GetVirtualMachineManagerInventoryItemsArgs { /** * The inventory type of the System Center Virtual Machine Manager Inventory Item. Possible values are `Cloud`, `VirtualMachine`, `VirtualMachineTemplate` and `VirtualNetwork`. */ inventoryType: string; /** * The ID of the System Center Virtual Machine Manager Server. */ systemCenterVirtualMachineManagerServerId: string; } /** * A collection of values returned by getVirtualMachineManagerInventoryItems. */ export interface GetVirtualMachineManagerInventoryItemsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * One or more `inventoryItems` blocks as defined below. */ readonly inventoryItems: outputs.systemcenter.GetVirtualMachineManagerInventoryItemsInventoryItem[]; readonly inventoryType: string; readonly systemCenterVirtualMachineManagerServerId: string; } /** * Use this data source to access information about existing System Center Virtual Machine Manager Inventory Items. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.systemcenter.getVirtualMachineManagerInventoryItems({ * inventoryType: "Cloud", * systemCenterVirtualMachineManagerServerId: exampleAzurermSystemCenterVirtualMachineManagerServer.id, * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ScVmm` - 2023-10-07 */ export declare function getVirtualMachineManagerInventoryItemsOutput(args: GetVirtualMachineManagerInventoryItemsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVirtualMachineManagerInventoryItems. */ export interface GetVirtualMachineManagerInventoryItemsOutputArgs { /** * The inventory type of the System Center Virtual Machine Manager Inventory Item. Possible values are `Cloud`, `VirtualMachine`, `VirtualMachineTemplate` and `VirtualNetwork`. */ inventoryType: pulumi.Input; /** * The ID of the System Center Virtual Machine Manager Server. */ systemCenterVirtualMachineManagerServerId: pulumi.Input; }