A node size is a package offered by a cloud provider. For example "Linode 512, 512MB RAM, 16GB storage, 200GB transfer for $XX". Prices are in cents per a month.
Inheritance: Entity
Exemple #1
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth, NodeOptions options);
Exemple #2
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location);
Exemple #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);
 }