import { _DeviceiSCSIAttributes, _UnmarshalledDeviceiSCSIAttributes } from "./_DeviceiSCSIAttributes"; /** *
Represents a device object associated with a tape gateway.
*/ export interface _VTLDevice { /** *Specifies the unique Amazon Resource Name (ARN) of the device (tape drive or media changer).
*/ VTLDeviceARN?: string; /** *Specifies the type of device that the VTL device emulates.
*/ VTLDeviceType?: string; /** *Specifies the vendor of the device that the VTL device object emulates.
*/ VTLDeviceVendor?: string; /** *Specifies the model number of device that the VTL device emulates.
*/ VTLDeviceProductIdentifier?: string; /** *A list of iSCSI information about a VTL device.
*/ DeviceiSCSIAttributes?: _DeviceiSCSIAttributes; } export interface _UnmarshalledVTLDevice extends _VTLDevice { /** *A list of iSCSI information about a VTL device.
*/ DeviceiSCSIAttributes?: _UnmarshalledDeviceiSCSIAttributes; }