machines/create.js

  1. 'use strict';
  2. var method = require('./../method');
  3. var assign = require('lodash.assign');
  4. /**
  5. * @memberof machines
  6. * @method create
  7. * @description Create a new Paperspace virtual machine. If you are using an individual account,
  8. * you will be assigned as the owner of the machine. If you are a team administrator, you must
  9. * specify the user that should be assigned to the machine, either by specifing a user id, or by providing an email address, password, first name and
  10. * last name for the creation of a new user on the team. (The email address must not already be associated with a Paperspace account, otherwise a user creation error is returned.)
  11. *
  12. * Note: if you attempt to create a new user along with the machine, the user creation step is executed before the creation of the machine.
  13. * Therefore, if an error occurs, the user creation step may or may not have succeeded. To deal with this, if an error object is returned from the `machines create`
  14. * method, subsquently call the `users list` method (with a search filter specifying the email address) to check if the user creation step succeeded.
  15. *
  16. * Note: machine creation is not always guaranteed to succeed, due to various possible issues such as machine availability, billing issues, resource issues, or system errors.
  17. * However you can call the `machines availability` method to check for current point-in-time availability of a given machine type.
  18. *
  19. * This machine create action can only be performed by the account owner. (Team members cannot create machines themselves; only the team administrator may do so.)
  20. * @param {object} params - Machine creation parameters
  21. * @param {string} params.region - Name of the region: either 'East Coast (NY2)', 'West Coast (CA1)', or 'Europe (AMS1)'
  22. * @param {string} params.machineType - Machine type: either 'Air', 'Standard', 'Pro', 'Advanced', 'GPU+', 'P4000', 'P5000', 'P6000', 'V100', 'C1', 'C2', 'C3', 'C4', 'C5', 'C6', 'C7', 'C8', 'C9', or 'C10'<p>
  23. * Note:<br>
  24. * Windows os templates cannot be used to create CPU-only machine types 'C1' - 'C10'.<br>
  25. * Ubuntu os templates cannot be used to create GRID GPU machine types: 'Air', 'Standard', 'Pro', or 'Advanced'.
  26. * @param {number} params.size - Storage size for the machine in GB
  27. * @param {string} params.billingType - Either 'monthly' or 'hourly' billing
  28. * @param {string} params.machineName - A memorable name for this machine
  29. * @param {string} params.templateId - Template id of the template to use for creating this machine
  30. * @param {boolean} [params.assignPublicIp] - Assign a new public ip address on machine creation. Cannot be used with dynamicPublicIp.
  31. * @param {boolean} [params.dynamicPublicIp] - Assigns a new public ip address on machine start and releases it from the account on machine stop. Cannot be used with assignPublicIp.
  32. * @param {string} [params.networkId] - If creating on a specific network, specify its id
  33. * @param {string} [params.teamId] - If creating the machine for a team, specify the team id
  34. * @param {string} [params.userId] - If assigning to an existing user other than yourself, specify the user id (mutually exclusive with email, password, firstName, lastName)
  35. * @param {string} [params.email] - If creating a new user for this machine, specify their email address (mutually exclusive with userId)
  36. * @param {string} [params.password] - If creating a new user, specify their password (mutually exclusive with userId)
  37. * @param {string} [params.firstName] - If creating a new user, specify their first name (mutually exclusive with userId)
  38. * @param {string} [params.lastName] - If creating a new user, specify their last name (mutually exclusive with userId)
  39. * @param {string} [params.notificationEmail] - Send a notification to this email address when complete
  40. * @param {string} [params.scriptId] - The script id of a script to be run on startup. See the [Script Guide]{@link https://paperspace.github.io/paperspace-node/scripts.md} for more info on using scripts.
  41. * @param {function} cb - Node-style error-first callback function
  42. * @returns {object} machine - The created machine JSON object
  43. * @example
  44. * paperspace.machines.create({
  45. * region: 'East Coast (NY2)',
  46. * machineType: 'Air',
  47. * size: 50,
  48. * billingType: 'hourly',
  49. * machineName: 'My Machine 1',
  50. * templateId: 't123abc',
  51. * assignPublicIp: true, // optional - assign a new public ip address
  52. * networkId: 'n123abc', // optional - only if creating on a specific network
  53. * teamId: 'te456def', // optional - required if creating this machine for a team
  54. * email: 'example@example.com', // optional - if creating a new user
  55. * password: 'secret123', // optional - if creating a new user
  56. * firstName: 'Jon', // optional - if creating a new user
  57. * lastName: 'Snow', // optional - if creating a new user
  58. * notificationEmail: 'example@example.com', // optional - address to send a notification when complete
  59. * scriptId: 'sc123abc', // optional - a script to be run on startup
  60. * }, function(err, res) {
  61. * // handle error or result
  62. * });
  63. * @example
  64. * $ paperspace machines create \
  65. * --region "East Coast (NY2)" \
  66. * --machineType "Air" \
  67. * --size 50 \
  68. * --billingType "hourly" \
  69. * --machineName "My Machine 1" \
  70. * --templateId "t123abc" \
  71. * --assignPublicIp true \
  72. * --networkId "n123abc" \
  73. * --teamId "te456def" \
  74. * --userId "u123abc" \
  75. * --email "example@example.com" \
  76. * --password "secret123" \
  77. * --firstName "Jon" \
  78. * --lastName "Snow" \
  79. * --notificationEmail "example@example.com" \
  80. * --scriptId "sc123abc"
  81. * @example
  82. * # HTTP request:
  83. * https://api.paperspace.io
  84. * POST /machines/createSingleMachinePublic {"region": "East Coast (NY2)", "machineType": "Air", "size": 50, "billingType": "monthly", "machineName": "My Machine 1", "templateId": "t123abc", "assignPublicIp": true, "networkId": "n123abc", "teamId": "te456def", "email": "example@example.com", "password": "secret123", "firstName": "Jon", "lastName": "Snow", "notificationEmail": "example@example.com"}
  85. * x-api-key: 1ba4f98e7c0...
  86. * # Returns 201 on success
  87. * @example
  88. * // Example return value:
  89. * {
  90. * "id": "ps123abc",
  91. * "name": "My Machine",
  92. * "os": null,
  93. * "ram": null,
  94. * "cpus": 1,
  95. * "gpu": null,
  96. * "storageTotal": null,
  97. * "storageUsed": null,
  98. * "usageRate": "Air hourly",
  99. * "shutdownTimeoutInHours": 24,
  100. * "shutdownTimeoutForces": false,
  101. * "performAutoSnapshot": false,
  102. * "autoSnapshotFrequency": null,
  103. * "autoSnapshotSaveCount": null,
  104. * "agentType": "WindowsDesktop",
  105. * "dtCreated": "2017-02-16T20:26:54.880Z",
  106. * "state": "provisioning",
  107. * "updatesPending": false,
  108. * "networkId": null,
  109. * "privateIpAddress": null,
  110. * "publicIpAddress": "169.255.255.254",
  111. * "region": null,
  112. * "userId": "u123abc",
  113. * "teamId": "te456def",
  114. * "scriptId": "sc123abc",
  115. * "dtLastRun": null,
  116. * "dynamicPublicIp": null
  117. * }
  118. */
  119. function create(params, cb) {
  120. return method(create, params, cb);
  121. }
  122. assign(create, {
  123. auth: true,
  124. group: 'machines',
  125. name: 'create',
  126. method: 'post',
  127. route: '/machines/createSingleMachinePublic',
  128. requires: {
  129. region: 'string',
  130. machineType: 'string',
  131. size: 'number',
  132. billingType: 'string',
  133. machineName: 'string',
  134. templateId: 'string',
  135. },
  136. returns: {},
  137. });
  138. module.exports = create;