// Copyright (c) 2013 DMTF. All rights reserved. [Experimental, Version ( "2.42.0" ), UMLPackagePath ( "CIM::Device::Tape" ), Description ( "CIM_TapeMetaData represents backup-application-proprietary " "meta data that needs to be written or read to/from tape. It is " "composed of the following attributes: - An array of strings " "encoded in hex binary (using the Octetstring qualifier). - An " "integer value representing the number of file marks preceding " "meta data. - An integer value representing the number of file " "marks following meta data. - An array of integers indicating " "the size (in bytes) of each block of binary data." )] class CIM_TapeMetaData : CIM_SettingData { [Description ( "Array of binary blocks." ), OctetString] string MetaData[]; [Description ( "Number of filemarks to be written before the meta data blocks" )] uint8 PreFileMarkCount; [Description ( "Number of filemarks to be written after the meta data blocks" )] uint8 PostFileMarkCount; [Description ( "Sizes of individual binary blocks" )] uint32 BlockSizes[]; };