{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-vtl-device-schema.json", "title": "VTLDevice", "description": "Represents a device object associated with a tape gateway.", "type": "object", "properties": { "VTLDeviceARN": { "allOf": [ { "$ref": "#/components/schemas/VTLDeviceARN" }, { "description": "Specifies the unique Amazon Resource Name (ARN) of the device (tape drive or media changer)." } ] }, "VTLDeviceType": { "allOf": [ { "$ref": "#/components/schemas/VTLDeviceType" }, { "description": "Specifies the type of device that the VTL device emulates." } ] }, "VTLDeviceVendor": { "allOf": [ { "$ref": "#/components/schemas/VTLDeviceVendor" }, { "description": "Specifies the vendor of the device that the VTL device object emulates." } ] }, "VTLDeviceProductIdentifier": { "allOf": [ { "$ref": "#/components/schemas/VTLDeviceProductIdentifier" }, { "description": "Specifies the model number of device that the VTL device emulates." } ] }, "DeviceiSCSIAttributes": { "allOf": [ { "$ref": "#/components/schemas/DeviceiSCSIAttributes" }, { "description": "A list of iSCSI information about a VTL device." } ] } } }