/** * 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. */ /** * * @export * @interface DiskTypeSummary */ export interface DiskTypeSummary { /** * Number of VMs that have at least one disk of this type * @type {number} * @memberof DiskTypeSummary */ vmCount: number; /** * Total disk size in TB for this disk type * @type {number} * @memberof DiskTypeSummary */ totalSizeTB: number; } /** * Check if a given object implements the DiskTypeSummary interface. */ export declare function instanceOfDiskTypeSummary(value: object): value is DiskTypeSummary; export declare function DiskTypeSummaryFromJSON(json: any): DiskTypeSummary; export declare function DiskTypeSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DiskTypeSummary; export declare function DiskTypeSummaryToJSON(json: any): DiskTypeSummary; export declare function DiskTypeSummaryToJSONTyped(value?: DiskTypeSummary | null, ignoreDiscriminator?: boolean): any;