HP Storage Provisioning Manager (SPM) Version 2.0 User Guide

Table Of Contents
NetworkEndpointKind
NetworkEndPointKind is an enumerated type representing the implementation of the network for
a SAN network endpoint. It has four possible values: FibreChannel, SerialAttachedScsi,
Ethernet, and iSCSI. At this time, SPM supports only Fibre Channel networks.
Example unmanaged SAN xml
In this section we provided an annotated example of an XML file representing an unmanaged
array. The example is provided in Courier font. Annotations are provided within the example
as normal font.
<?xml version="1.0" encoding="utf-8"?>
<SanResourceCollection xmlns="urn:SPM_SanResourceCollection_1">
<NetworkResource Name="Example Unmanaged Storage Network v0.0.1" DisplayName="Example Unmanaged Storage Network"
Description="Example unmanaged storage network.">
Every XML document must begin with the XML element indicating the XML version and the character
encoding. Every Unmanaged SAN XML file must begin with the SanResourceCollection root element.
This example specifies a namespace for use within SPM, and a single NetworkResource object.
<Network Name="Black Network" ZoningState="Zoned">
<Zone Name="Zone1">
<Endpoint Address="EE:FF:AA:BB:DD:00:EE:01" Kind="FibreChannel" />
<Endpoint Address="EE:FF:AA:BB:DD:00:EE:02" Kind="FibreChannel" />
<Endpoint Address="EE:FF:AA:BB:DD:00:EE:03" Kind="FibreChannel" />
</Zone>
<Endpoint Address="EE:FF:AA:BB:DD:00:EE:04" Kind="FibreChannel" />
<Endpoint Address="EE:FF:AA:BB:DD:00:EE:05" Kind="FibreChannel" />
</Network>
This NetworkResource contains a single Network, which in turn contains a single Zone and two
endpoint addresses outside of any zone. In all cases, these end points are FibreChannel end points.
</NetworkResource>
</SanResourceCollection>
This NetworkResource Definition is simplified to illustrate the nature of an Unmanaged SAN XML
file. This example contains a single network with a single zone, while multiple instances of those
elements are allowed, as specified above.
Example unmanaged SAN xml 77