/** * Assisted Migration Agent API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { InventoryData } from './InventoryData.js'; /** * * @export * @interface Inventory */ export interface Inventory { /** * ID of the vCenter * @type {string} * @memberof Inventory */ vcenterId: string; /** * Map of cluster names to their inventory data * @type {{ [key: string]: InventoryData; }} * @memberof Inventory */ clusters: { [key: string]: InventoryData; }; /** * * @type {InventoryData} * @memberof Inventory */ vcenter?: InventoryData; } /** * Check if a given object implements the Inventory interface. */ export declare function instanceOfInventory(value: object): value is Inventory; export declare function InventoryFromJSON(json: any): Inventory; export declare function InventoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): Inventory; export declare function InventoryToJSON(json: any): Inventory; export declare function InventoryToJSONTyped(value?: Inventory | null, ignoreDiscriminator?: boolean): any;