| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
//============================================================================
// Copyright (C) Microsoft Corporation, All rights reserved.
//============================================================================
//
[ClassVersion( "1.0" ), Abstract, Description(
"Physical extent properties."
)]
class MSFT_PhysicalExtent
{
[Read, Description(
"The unique id of the storage tier associated with this extent."
)]
String StorageTierUniqueId;
[Read, Description(
"The unique id of the virtual disk associated with this extent."
)]
String VirtualDiskUniqueId;
[Read, Description(
"The byte offset of this extent from the start of the virtual disk."
)]
UInt64 VirtualDiskOffset;
[Read, Description(
"The column number associated with this extent."
)]
UInt16 ColumnNumber;
[Read, Description(
"The copy number associated with this extent."
)]
UInt16 CopyNumber;
[Read, Description(
"The copy number of the replacement for this extent."
)]
UInt16 ReplacementCopyNumber;
[Read, Description(
"The unique id of the physical disk associated with this extent."
)]
String PhysicalDiskUniqueId;
[Read, Description(
"The byte offset of this extent from the start of the physical disk."
)]
UInt64 PhysicalDiskOffset;
[Read, Description(
"The size of this extent in bytes."
)]
UInt64 Size;
[Read, Description(
"The flags associated with this extent."
)]
UInt64 Flags;
[Read, Description(
"The operational statuses associated with this extent."
)]
UInt16 OperationalStatus[];
[Read, Description(
"The operational details associated with this extent."
)]
String OperationalDetails[];
};