mirror of https://github.com/apache/jclouds.git
Merge pull request #746 from dkoper/master
adding SYSTEM location scope required for FGCP
This commit is contained in:
commit
6d9d638a1f
|
@ -25,6 +25,18 @@ package org.jclouds.domain;
|
|||
*/
|
||||
public enum LocationScope {
|
||||
|
||||
PROVIDER, REGION, ZONE, NETWORK, RACK, HOST;
|
||||
PROVIDER,
|
||||
REGION,
|
||||
ZONE,
|
||||
/**
|
||||
* @see <a href="http://dmtf.org/standards/cloud">cimi system docs</a>
|
||||
*/
|
||||
SYSTEM,
|
||||
/**
|
||||
* E.g. the DMZ segment, secure segment.
|
||||
*/
|
||||
NETWORK,
|
||||
RACK,
|
||||
HOST;
|
||||
|
||||
}
|
Loading…
Reference in New Issue