Describes an available image on the cloud provider. Node images will have descriptive names like "Open Suse 11.2".
Inheritance: Entity
示例#1
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth, NodeOptions options);
示例#2
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location);
示例#3
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);
 }