MCloud.NodeDriver.CreateNode C# (CSharp) Method

CreateNode() public method

Create a new node using the default options for this node driver type.
public CreateNode ( string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth ) : Node
name string
size NodeSize
image NodeImage
location NodeLocation
auth NodeAuth
return Node
        public Node CreateNode(string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth)
        {
            return CreateNode (name, size, image, location, auth, DefaultOptions);
        }

Same methods

NodeDriver::CreateNode ( string name, NodeSize size, NodeImage image, NodeLocation location, NodeAuth auth, NodeOptions options ) : Node