BUG#: 8782
[tpot/pegasus/.git] / Schemas / CIM225 / DMTF / Network / CIM_IPAddressRange.mof
1 // Copyright (c) 2005 DMTF.  All rights reserved.
2 // <change cr="ArchCR00066.004" type="add">Add UmlPackagePath
3 // qualifier values to CIM Schema.</change>
4 // ==================================================================
5 //  CIM_IPAddressRange 
6 // ==================================================================
7    [Deprecated { "CIM_RangeOfIPAddresses" }, 
8     Abstract, Version ( "2.7.0" ), 
9     UMLPackagePath ( "CIM::Network::Collections" ), 
10     Description ( 
11        "IPAddressRange represents a grouping of specific addresses, "
12        "and provides additional semantics for this group if "
13        "appropriate. The class is deprecated in lieu of the concrete "
14        "class RangeOfIPAddresses since there is sufficient information "
15        "for the class to be instantiated. In addition, an address "
16        "range should be defined in the context of a System (for "
17        "example, a network element or an admin domain). These "
18        "semantics are incorporated in the RangeOfIPAddresses class." )]
19 class CIM_IPAddressRange : CIM_CollectionOfMSEs {
20
21       [Deprecated { "CIM_RangeOfIPAddresses.StartAddress" }, 
22        Description ( 
23           "The starting IP address of the AddressRange, formatted "
24           "according to the appropriate convention as defined in "
25           "the AddressType property of this class (e.g., "
26           "171.79.6.40)." )]
27    string StartAddress;
28
29       [Deprecated { "CIM_RangeOfIPAddresses.EndAddress" }, 
30        Description ( 
31           "The ending IP address of the AddressRange, formatted "
32           "according to the appropriate convention as defined in "
33           "the AddressType property of this class (e.g., "
34           "171.79.6.40)." )]
35    string EndAddress;
36
37       [Deprecated { "CIM_RangeOfIPAddresses.AddressType" }, 
38        Description ( 
39           "An enumeration that defines how to format the address "
40           "and mask of the address range that defines this "
41           "IPSubnet. \n"
42           "\n"
43           "Whenever possible, IPv4-compatible addresses should be "
44           "used instead of IPv6 addresses (see RFC 2373, section "
45           "2.5.4). In order to have a consistent format for IPv4 "
46           "addresses in a mixed IPv4/v6 environment, all IPv4 "
47           "addresses and both IPv4-compatible IPv6 addresses and "
48           "IPv4-mapped IPv6 addresses, per RFC 2373, section 2.5.4, "
49           "should be formatted in standard IPv4 format." ), 
50        ValueMap { "0", "1", "2" }, 
51        Values { "Unknown", "IPv4", "IPv6" }]
52    uint16 TypeOfAddress;
53
54       [Deprecated { "No value" }, 
55        Description ( 
56           "This attribute defines the region that addresses can be "
57           "allocated to." ), 
58        ValueMap { "0", "1", "2", "3", "4", "5", "6", "7", "8" }, 
59        Values { "Unknown", 
60           "Multiregional: 192.0.0.0 to 193.255.255.255", 
61           "Europe: 194.0.0.0 to 195.255.255.255", 
62           "Others: 196.0.0.0 to 197.255.255.255", 
63           "North America: 198.0.0.0 to 199.255.255.255", 
64           "Central & South America: 200.0.0.0 to 201.255.255.255", 
65           "Pacific Rim: 202.0.0.0 to 203.255.255.255", 
66           "Others: 204.0.0.0 to 205.255.255.255", 
67           "Others: 206.0.0.0 to 207.255.255.255" }]
68    uint16 AllocationRegion;
69
70
71 };