import { ResourceMetadata } from '../iam/ResourceMetadata';
import { Location } from './Location';
import { Offer } from './Offer';
/** Veeam Cloud Connect */
export interface AccountWithIAM {
    /** IAM resource metadata */
    iam?: ResourceMetadata;
    /** Datacenter where your Cloud is physically located */
    location: Location;
    /** The commercial offer linked to your veeam cloud connect */
    productOffer: Offer;
    /** Your login in the Veeam Cloud Connect interface */
    serviceName: string;
    /** Backuped VMs quantity on your account */
    vmCount?: number;
}
//# sourceMappingURL=AccountWithIAM.d.ts.map