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
Exemplo n.º 1
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth, NodeOptions options);
Exemplo n.º 2
0
 public abstract Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location);
Exemplo n.º 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);
 }