The physical location of the cloud datacenter. You would use to choose the country where a node is located.
Inheritance: Entity
Example #1
0
 public abstract List<NodeSize> ListSizes(NodeLocation location);
Example #2
0
 public abstract List<NodeImage> ListImages(NodeLocation location);
Example #3
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth, NodeOptions options);
Example #4
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location);
Example #5
0
 /// <summary>
 /// Create a new node using the default options for this node driver type.
 /// </summary>
 public Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth)
 {
     return CreateNode (name, size, image, location, auth, DefaultOptions);
 }