@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
20 lines • 641 B
TypeScript
import { ResourceMetadata } from '../iam/ResourceMetadata';
import { MacAddress } from '../MacAddress';
/** Hardware properties */
export interface HardwareWithIAM {
/** True if hardware can be linked to a service without deviceID */
canBeLinkedToService: boolean;
/** IAM resource metadata */
iam?: ResourceMetadata;
/** Hardware MAC address */
mac?: MacAddress;
/** Hardware model */
model: string;
/** Hardware name */
name: string;
/** The hardware pretty model name */
prettyModelName: string;
/** Hardware serial */
serial: string;
}
//# sourceMappingURL=HardwareWithIAM.d.ts.map