/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodes.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 1350 lines · 154 code · 97 blank · 1099 comment · 0 complexity · 09a2ce95bb9a41dd04df6e5740791777 MD5 · raw file

Large files are truncated click here to view the full file

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.batch.protocol;
  9. import com.microsoft.azure.batch.protocol.models.BatchErrorException;
  10. import com.microsoft.azure.batch.protocol.models.ComputeNode;
  11. import com.microsoft.azure.batch.protocol.models.ComputeNodeAddUserHeaders;
  12. import com.microsoft.azure.batch.protocol.models.ComputeNodeAddUserOptions;
  13. import com.microsoft.azure.batch.protocol.models.ComputeNodeDeleteUserHeaders;
  14. import com.microsoft.azure.batch.protocol.models.ComputeNodeDeleteUserOptions;
  15. import com.microsoft.azure.batch.protocol.models.ComputeNodeDisableSchedulingHeaders;
  16. import com.microsoft.azure.batch.protocol.models.ComputeNodeDisableSchedulingOptions;
  17. import com.microsoft.azure.batch.protocol.models.ComputeNodeEnableSchedulingHeaders;
  18. import com.microsoft.azure.batch.protocol.models.ComputeNodeEnableSchedulingOptions;
  19. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetHeaders;
  20. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetOptions;
  21. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteDesktopHeaders;
  22. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteDesktopOptions;
  23. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsHeaders;
  24. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsOptions;
  25. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsResult;
  26. import com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders;
  27. import com.microsoft.azure.batch.protocol.models.ComputeNodeListNextOptions;
  28. import com.microsoft.azure.batch.protocol.models.ComputeNodeListOptions;
  29. import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootHeaders;
  30. import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootOption;
  31. import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootOptions;
  32. import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageHeaders;
  33. import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageOption;
  34. import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageOptions;
  35. import com.microsoft.azure.batch.protocol.models.ComputeNodeUpdateUserHeaders;
  36. import com.microsoft.azure.batch.protocol.models.ComputeNodeUpdateUserOptions;
  37. import com.microsoft.azure.batch.protocol.models.ComputeNodeUploadBatchServiceLogsHeaders;
  38. import com.microsoft.azure.batch.protocol.models.ComputeNodeUploadBatchServiceLogsOptions;
  39. import com.microsoft.azure.batch.protocol.models.ComputeNodeUser;
  40. import com.microsoft.azure.batch.protocol.models.DisableComputeNodeSchedulingOption;
  41. import com.microsoft.azure.batch.protocol.models.NodeUpdateUserParameter;
  42. import com.microsoft.azure.batch.protocol.models.UploadBatchServiceLogsConfiguration;
  43. import com.microsoft.azure.batch.protocol.models.UploadBatchServiceLogsResult;
  44. import com.microsoft.azure.ListOperationCallback;
  45. import com.microsoft.azure.Page;
  46. import com.microsoft.azure.PagedList;
  47. import com.microsoft.rest.ServiceCallback;
  48. import com.microsoft.rest.ServiceFuture;
  49. import com.microsoft.rest.ServiceResponseWithHeaders;
  50. import java.io.InputStream;
  51. import java.util.List;
  52. import rx.Observable;
  53. // CUSTOM IMPORT
  54. import java.io.OutputStream;
  55. /**
  56. * An instance of this class provides access to all the operations defined
  57. * in ComputeNodes.
  58. */
  59. public interface ComputeNodes {
  60. // CUSTOM METHOD
  61. /**
  62. *
  63. * @param poolId The ID of the pool that contains the compute node.
  64. * @param nodeId The ID of the compute node for which you want to get the Remote Desktop Protocol file.
  65. * @param outputStream The OutputStream object which data will be written to if successful.
  66. * @throws IllegalArgumentException thrown if parameters fail the validation
  67. * @throws BatchErrorException thrown if the request is rejected by server
  68. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  69. */
  70. void getRemoteDesktop(String poolId, String nodeId, OutputStream outputStream);
  71. // CUSTOM METHOD
  72. /**
  73. * Gets the Remote Desktop Protocol file for the specified compute node.
  74. * @param poolId The ID of the pool that contains the compute node.
  75. * @param nodeId The ID of the compute node for which you want to get the Remote Desktop Protocol file.
  76. * @param computeNodeGetRemoteDesktopOptions Additional parameters for the operation
  77. * @param outputStream The OutputStream object which data will be written to if successful.
  78. * @throws IllegalArgumentException thrown if parameters fail the validation
  79. * @throws BatchErrorException thrown if the request is rejected by server
  80. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  81. */
  82. void getRemoteDesktop(String poolId, String nodeId, ComputeNodeGetRemoteDesktopOptions computeNodeGetRemoteDesktopOptions, OutputStream outputStream);
  83. /**
  84. * Adds a user Account to the specified Compute Node.
  85. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  86. *
  87. * @param poolId The ID of the Pool that contains the Compute Node.
  88. * @param nodeId The ID of the machine on which you want to create a user Account.
  89. * @param user The user Account to be created.
  90. * @throws IllegalArgumentException thrown if parameters fail the validation
  91. * @throws BatchErrorException thrown if the request is rejected by server
  92. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  93. */
  94. void addUser(String poolId, String nodeId, ComputeNodeUser user);
  95. /**
  96. * Adds a user Account to the specified Compute Node.
  97. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  98. *
  99. * @param poolId The ID of the Pool that contains the Compute Node.
  100. * @param nodeId The ID of the machine on which you want to create a user Account.
  101. * @param user The user Account to be created.
  102. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  103. * @throws IllegalArgumentException thrown if parameters fail the validation
  104. * @return the {@link ServiceFuture} object
  105. */
  106. ServiceFuture<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user, final ServiceCallback<Void> serviceCallback);
  107. /**
  108. * Adds a user Account to the specified Compute Node.
  109. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  110. *
  111. * @param poolId The ID of the Pool that contains the Compute Node.
  112. * @param nodeId The ID of the machine on which you want to create a user Account.
  113. * @param user The user Account to be created.
  114. * @throws IllegalArgumentException thrown if parameters fail the validation
  115. * @return the {@link ServiceResponseWithHeaders} object if successful.
  116. */
  117. Observable<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user);
  118. /**
  119. * Adds a user Account to the specified Compute Node.
  120. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  121. *
  122. * @param poolId The ID of the Pool that contains the Compute Node.
  123. * @param nodeId The ID of the machine on which you want to create a user Account.
  124. * @param user The user Account to be created.
  125. * @throws IllegalArgumentException thrown if parameters fail the validation
  126. * @return the {@link ServiceResponseWithHeaders} object if successful.
  127. */
  128. Observable<ServiceResponseWithHeaders<Void, ComputeNodeAddUserHeaders>> addUserWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeUser user);
  129. /**
  130. * Adds a user Account to the specified Compute Node.
  131. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  132. *
  133. * @param poolId The ID of the Pool that contains the Compute Node.
  134. * @param nodeId The ID of the machine on which you want to create a user Account.
  135. * @param user The user Account to be created.
  136. * @param computeNodeAddUserOptions Additional parameters for the operation
  137. * @throws IllegalArgumentException thrown if parameters fail the validation
  138. * @throws BatchErrorException thrown if the request is rejected by server
  139. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  140. */
  141. void addUser(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions);
  142. /**
  143. * Adds a user Account to the specified Compute Node.
  144. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  145. *
  146. * @param poolId The ID of the Pool that contains the Compute Node.
  147. * @param nodeId The ID of the machine on which you want to create a user Account.
  148. * @param user The user Account to be created.
  149. * @param computeNodeAddUserOptions Additional parameters for the operation
  150. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  151. * @throws IllegalArgumentException thrown if parameters fail the validation
  152. * @return the {@link ServiceFuture} object
  153. */
  154. ServiceFuture<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions, final ServiceCallback<Void> serviceCallback);
  155. /**
  156. * Adds a user Account to the specified Compute Node.
  157. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  158. *
  159. * @param poolId The ID of the Pool that contains the Compute Node.
  160. * @param nodeId The ID of the machine on which you want to create a user Account.
  161. * @param user The user Account to be created.
  162. * @param computeNodeAddUserOptions Additional parameters for the operation
  163. * @throws IllegalArgumentException thrown if parameters fail the validation
  164. * @return the {@link ServiceResponseWithHeaders} object if successful.
  165. */
  166. Observable<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions);
  167. /**
  168. * Adds a user Account to the specified Compute Node.
  169. * You can add a user Account to a Compute Node only when it is in the idle or running state.
  170. *
  171. * @param poolId The ID of the Pool that contains the Compute Node.
  172. * @param nodeId The ID of the machine on which you want to create a user Account.
  173. * @param user The user Account to be created.
  174. * @param computeNodeAddUserOptions Additional parameters for the operation
  175. * @throws IllegalArgumentException thrown if parameters fail the validation
  176. * @return the {@link ServiceResponseWithHeaders} object if successful.
  177. */
  178. Observable<ServiceResponseWithHeaders<Void, ComputeNodeAddUserHeaders>> addUserWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions);
  179. /**
  180. * Deletes a user Account from the specified Compute Node.
  181. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  182. *
  183. * @param poolId The ID of the Pool that contains the Compute Node.
  184. * @param nodeId The ID of the machine on which you want to delete a user Account.
  185. * @param userName The name of the user Account to delete.
  186. * @throws IllegalArgumentException thrown if parameters fail the validation
  187. * @throws BatchErrorException thrown if the request is rejected by server
  188. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  189. */
  190. void deleteUser(String poolId, String nodeId, String userName);
  191. /**
  192. * Deletes a user Account from the specified Compute Node.
  193. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  194. *
  195. * @param poolId The ID of the Pool that contains the Compute Node.
  196. * @param nodeId The ID of the machine on which you want to delete a user Account.
  197. * @param userName The name of the user Account to delete.
  198. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  199. * @throws IllegalArgumentException thrown if parameters fail the validation
  200. * @return the {@link ServiceFuture} object
  201. */
  202. ServiceFuture<Void> deleteUserAsync(String poolId, String nodeId, String userName, final ServiceCallback<Void> serviceCallback);
  203. /**
  204. * Deletes a user Account from the specified Compute Node.
  205. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  206. *
  207. * @param poolId The ID of the Pool that contains the Compute Node.
  208. * @param nodeId The ID of the machine on which you want to delete a user Account.
  209. * @param userName The name of the user Account to delete.
  210. * @throws IllegalArgumentException thrown if parameters fail the validation
  211. * @return the {@link ServiceResponseWithHeaders} object if successful.
  212. */
  213. Observable<Void> deleteUserAsync(String poolId, String nodeId, String userName);
  214. /**
  215. * Deletes a user Account from the specified Compute Node.
  216. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  217. *
  218. * @param poolId The ID of the Pool that contains the Compute Node.
  219. * @param nodeId The ID of the machine on which you want to delete a user Account.
  220. * @param userName The name of the user Account to delete.
  221. * @throws IllegalArgumentException thrown if parameters fail the validation
  222. * @return the {@link ServiceResponseWithHeaders} object if successful.
  223. */
  224. Observable<ServiceResponseWithHeaders<Void, ComputeNodeDeleteUserHeaders>> deleteUserWithServiceResponseAsync(String poolId, String nodeId, String userName);
  225. /**
  226. * Deletes a user Account from the specified Compute Node.
  227. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  228. *
  229. * @param poolId The ID of the Pool that contains the Compute Node.
  230. * @param nodeId The ID of the machine on which you want to delete a user Account.
  231. * @param userName The name of the user Account to delete.
  232. * @param computeNodeDeleteUserOptions Additional parameters for the operation
  233. * @throws IllegalArgumentException thrown if parameters fail the validation
  234. * @throws BatchErrorException thrown if the request is rejected by server
  235. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  236. */
  237. void deleteUser(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions);
  238. /**
  239. * Deletes a user Account from the specified Compute Node.
  240. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  241. *
  242. * @param poolId The ID of the Pool that contains the Compute Node.
  243. * @param nodeId The ID of the machine on which you want to delete a user Account.
  244. * @param userName The name of the user Account to delete.
  245. * @param computeNodeDeleteUserOptions Additional parameters for the operation
  246. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  247. * @throws IllegalArgumentException thrown if parameters fail the validation
  248. * @return the {@link ServiceFuture} object
  249. */
  250. ServiceFuture<Void> deleteUserAsync(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions, final ServiceCallback<Void> serviceCallback);
  251. /**
  252. * Deletes a user Account from the specified Compute Node.
  253. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  254. *
  255. * @param poolId The ID of the Pool that contains the Compute Node.
  256. * @param nodeId The ID of the machine on which you want to delete a user Account.
  257. * @param userName The name of the user Account to delete.
  258. * @param computeNodeDeleteUserOptions Additional parameters for the operation
  259. * @throws IllegalArgumentException thrown if parameters fail the validation
  260. * @return the {@link ServiceResponseWithHeaders} object if successful.
  261. */
  262. Observable<Void> deleteUserAsync(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions);
  263. /**
  264. * Deletes a user Account from the specified Compute Node.
  265. * You can delete a user Account to a Compute Node only when it is in the idle or running state.
  266. *
  267. * @param poolId The ID of the Pool that contains the Compute Node.
  268. * @param nodeId The ID of the machine on which you want to delete a user Account.
  269. * @param userName The name of the user Account to delete.
  270. * @param computeNodeDeleteUserOptions Additional parameters for the operation
  271. * @throws IllegalArgumentException thrown if parameters fail the validation
  272. * @return the {@link ServiceResponseWithHeaders} object if successful.
  273. */
  274. Observable<ServiceResponseWithHeaders<Void, ComputeNodeDeleteUserHeaders>> deleteUserWithServiceResponseAsync(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions);
  275. /**
  276. * Updates the password and expiration time of a user Account on the specified Compute Node.
  277. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  278. *
  279. * @param poolId The ID of the Pool that contains the Compute Node.
  280. * @param nodeId The ID of the machine on which you want to update a user Account.
  281. * @param userName The name of the user Account to update.
  282. * @param nodeUpdateUserParameter The parameters for the request.
  283. * @throws IllegalArgumentException thrown if parameters fail the validation
  284. * @throws BatchErrorException thrown if the request is rejected by server
  285. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  286. */
  287. void updateUser(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter);
  288. /**
  289. * Updates the password and expiration time of a user Account on the specified Compute Node.
  290. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  291. *
  292. * @param poolId The ID of the Pool that contains the Compute Node.
  293. * @param nodeId The ID of the machine on which you want to update a user Account.
  294. * @param userName The name of the user Account to update.
  295. * @param nodeUpdateUserParameter The parameters for the request.
  296. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  297. * @throws IllegalArgumentException thrown if parameters fail the validation
  298. * @return the {@link ServiceFuture} object
  299. */
  300. ServiceFuture<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, final ServiceCallback<Void> serviceCallback);
  301. /**
  302. * Updates the password and expiration time of a user Account on the specified Compute Node.
  303. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  304. *
  305. * @param poolId The ID of the Pool that contains the Compute Node.
  306. * @param nodeId The ID of the machine on which you want to update a user Account.
  307. * @param userName The name of the user Account to update.
  308. * @param nodeUpdateUserParameter The parameters for the request.
  309. * @throws IllegalArgumentException thrown if parameters fail the validation
  310. * @return the {@link ServiceResponseWithHeaders} object if successful.
  311. */
  312. Observable<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter);
  313. /**
  314. * Updates the password and expiration time of a user Account on the specified Compute Node.
  315. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  316. *
  317. * @param poolId The ID of the Pool that contains the Compute Node.
  318. * @param nodeId The ID of the machine on which you want to update a user Account.
  319. * @param userName The name of the user Account to update.
  320. * @param nodeUpdateUserParameter The parameters for the request.
  321. * @throws IllegalArgumentException thrown if parameters fail the validation
  322. * @return the {@link ServiceResponseWithHeaders} object if successful.
  323. */
  324. Observable<ServiceResponseWithHeaders<Void, ComputeNodeUpdateUserHeaders>> updateUserWithServiceResponseAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter);
  325. /**
  326. * Updates the password and expiration time of a user Account on the specified Compute Node.
  327. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  328. *
  329. * @param poolId The ID of the Pool that contains the Compute Node.
  330. * @param nodeId The ID of the machine on which you want to update a user Account.
  331. * @param userName The name of the user Account to update.
  332. * @param nodeUpdateUserParameter The parameters for the request.
  333. * @param computeNodeUpdateUserOptions Additional parameters for the operation
  334. * @throws IllegalArgumentException thrown if parameters fail the validation
  335. * @throws BatchErrorException thrown if the request is rejected by server
  336. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  337. */
  338. void updateUser(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions);
  339. /**
  340. * Updates the password and expiration time of a user Account on the specified Compute Node.
  341. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  342. *
  343. * @param poolId The ID of the Pool that contains the Compute Node.
  344. * @param nodeId The ID of the machine on which you want to update a user Account.
  345. * @param userName The name of the user Account to update.
  346. * @param nodeUpdateUserParameter The parameters for the request.
  347. * @param computeNodeUpdateUserOptions Additional parameters for the operation
  348. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  349. * @throws IllegalArgumentException thrown if parameters fail the validation
  350. * @return the {@link ServiceFuture} object
  351. */
  352. ServiceFuture<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions, final ServiceCallback<Void> serviceCallback);
  353. /**
  354. * Updates the password and expiration time of a user Account on the specified Compute Node.
  355. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  356. *
  357. * @param poolId The ID of the Pool that contains the Compute Node.
  358. * @param nodeId The ID of the machine on which you want to update a user Account.
  359. * @param userName The name of the user Account to update.
  360. * @param nodeUpdateUserParameter The parameters for the request.
  361. * @param computeNodeUpdateUserOptions Additional parameters for the operation
  362. * @throws IllegalArgumentException thrown if parameters fail the validation
  363. * @return the {@link ServiceResponseWithHeaders} object if successful.
  364. */
  365. Observable<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions);
  366. /**
  367. * Updates the password and expiration time of a user Account on the specified Compute Node.
  368. * This operation replaces of all the updatable properties of the Account. For example, if the expiryTime element is not specified, the current value is replaced with the default value, not left unmodified. You can update a user Account on a Compute Node only when it is in the idle or running state.
  369. *
  370. * @param poolId The ID of the Pool that contains the Compute Node.
  371. * @param nodeId The ID of the machine on which you want to update a user Account.
  372. * @param userName The name of the user Account to update.
  373. * @param nodeUpdateUserParameter The parameters for the request.
  374. * @param computeNodeUpdateUserOptions Additional parameters for the operation
  375. * @throws IllegalArgumentException thrown if parameters fail the validation
  376. * @return the {@link ServiceResponseWithHeaders} object if successful.
  377. */
  378. Observable<ServiceResponseWithHeaders<Void, ComputeNodeUpdateUserHeaders>> updateUserWithServiceResponseAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions);
  379. /**
  380. * Gets information about the specified Compute Node.
  381. *
  382. * @param poolId The ID of the Pool that contains the Compute Node.
  383. * @param nodeId The ID of the Compute Node that you want to get information about.
  384. * @throws IllegalArgumentException thrown if parameters fail the validation
  385. * @throws BatchErrorException thrown if the request is rejected by server
  386. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  387. * @return the ComputeNode object if successful.
  388. */
  389. ComputeNode get(String poolId, String nodeId);
  390. /**
  391. * Gets information about the specified Compute Node.
  392. *
  393. * @param poolId The ID of the Pool that contains the Compute Node.
  394. * @param nodeId The ID of the Compute Node that you want to get information about.
  395. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  396. * @throws IllegalArgumentException thrown if parameters fail the validation
  397. * @return the {@link ServiceFuture} object
  398. */
  399. ServiceFuture<ComputeNode> getAsync(String poolId, String nodeId, final ServiceCallback<ComputeNode> serviceCallback);
  400. /**
  401. * Gets information about the specified Compute Node.
  402. *
  403. * @param poolId The ID of the Pool that contains the Compute Node.
  404. * @param nodeId The ID of the Compute Node that you want to get information about.
  405. * @throws IllegalArgumentException thrown if parameters fail the validation
  406. * @return the observable to the ComputeNode object
  407. */
  408. Observable<ComputeNode> getAsync(String poolId, String nodeId);
  409. /**
  410. * Gets information about the specified Compute Node.
  411. *
  412. * @param poolId The ID of the Pool that contains the Compute Node.
  413. * @param nodeId The ID of the Compute Node that you want to get information about.
  414. * @throws IllegalArgumentException thrown if parameters fail the validation
  415. * @return the observable to the ComputeNode object
  416. */
  417. Observable<ServiceResponseWithHeaders<ComputeNode, ComputeNodeGetHeaders>> getWithServiceResponseAsync(String poolId, String nodeId);
  418. /**
  419. * Gets information about the specified Compute Node.
  420. *
  421. * @param poolId The ID of the Pool that contains the Compute Node.
  422. * @param nodeId The ID of the Compute Node that you want to get information about.
  423. * @param computeNodeGetOptions Additional parameters for the operation
  424. * @throws IllegalArgumentException thrown if parameters fail the validation
  425. * @throws BatchErrorException thrown if the request is rejected by server
  426. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  427. * @return the ComputeNode object if successful.
  428. */
  429. ComputeNode get(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions);
  430. /**
  431. * Gets information about the specified Compute Node.
  432. *
  433. * @param poolId The ID of the Pool that contains the Compute Node.
  434. * @param nodeId The ID of the Compute Node that you want to get information about.
  435. * @param computeNodeGetOptions Additional parameters for the operation
  436. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  437. * @throws IllegalArgumentException thrown if parameters fail the validation
  438. * @return the {@link ServiceFuture} object
  439. */
  440. ServiceFuture<ComputeNode> getAsync(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions, final ServiceCallback<ComputeNode> serviceCallback);
  441. /**
  442. * Gets information about the specified Compute Node.
  443. *
  444. * @param poolId The ID of the Pool that contains the Compute Node.
  445. * @param nodeId The ID of the Compute Node that you want to get information about.
  446. * @param computeNodeGetOptions Additional parameters for the operation
  447. * @throws IllegalArgumentException thrown if parameters fail the validation
  448. * @return the observable to the ComputeNode object
  449. */
  450. Observable<ComputeNode> getAsync(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions);
  451. /**
  452. * Gets information about the specified Compute Node.
  453. *
  454. * @param poolId The ID of the Pool that contains the Compute Node.
  455. * @param nodeId The ID of the Compute Node that you want to get information about.
  456. * @param computeNodeGetOptions Additional parameters for the operation
  457. * @throws IllegalArgumentException thrown if parameters fail the validation
  458. * @return the observable to the ComputeNode object
  459. */
  460. Observable<ServiceResponseWithHeaders<ComputeNode, ComputeNodeGetHeaders>> getWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions);
  461. /**
  462. * Restarts the specified Compute Node.
  463. * You can restart a Compute Node only if it is in an idle or running state.
  464. *
  465. * @param poolId The ID of the Pool that contains the Compute Node.
  466. * @param nodeId The ID of the Compute Node that you want to restart.
  467. * @throws IllegalArgumentException thrown if parameters fail the validation
  468. * @throws BatchErrorException thrown if the request is rejected by server
  469. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  470. */
  471. void reboot(String poolId, String nodeId);
  472. /**
  473. * Restarts the specified Compute Node.
  474. * You can restart a Compute Node only if it is in an idle or running state.
  475. *
  476. * @param poolId The ID of the Pool that contains the Compute Node.
  477. * @param nodeId The ID of the Compute Node that you want to restart.
  478. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  479. * @throws IllegalArgumentException thrown if parameters fail the validation
  480. * @return the {@link ServiceFuture} object
  481. */
  482. ServiceFuture<Void> rebootAsync(String poolId, String nodeId, final ServiceCallback<Void> serviceCallback);
  483. /**
  484. * Restarts the specified Compute Node.
  485. * You can restart a Compute Node only if it is in an idle or running state.
  486. *
  487. * @param poolId The ID of the Pool that contains the Compute Node.
  488. * @param nodeId The ID of the Compute Node that you want to restart.
  489. * @throws IllegalArgumentException thrown if parameters fail the validation
  490. * @return the {@link ServiceResponseWithHeaders} object if successful.
  491. */
  492. Observable<Void> rebootAsync(String poolId, String nodeId);
  493. /**
  494. * Restarts the specified Compute Node.
  495. * You can restart a Compute Node only if it is in an idle or running state.
  496. *
  497. * @param poolId The ID of the Pool that contains the Compute Node.
  498. * @param nodeId The ID of the Compute Node that you want to restart.
  499. * @throws IllegalArgumentException thrown if parameters fail the validation
  500. * @return the {@link ServiceResponseWithHeaders} object if successful.
  501. */
  502. Observable<ServiceResponseWithHeaders<Void, ComputeNodeRebootHeaders>> rebootWithServiceResponseAsync(String poolId, String nodeId);
  503. /**
  504. * Restarts the specified Compute Node.
  505. * You can restart a Compute Node only if it is in an idle or running state.
  506. *
  507. * @param poolId The ID of the Pool that contains the Compute Node.
  508. * @param nodeId The ID of the Compute Node that you want to restart.
  509. * @param nodeRebootOption When to reboot the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  510. * @param computeNodeRebootOptions Additional parameters for the operation
  511. * @throws IllegalArgumentException thrown if parameters fail the validation
  512. * @throws BatchErrorException thrown if the request is rejected by server
  513. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  514. */
  515. void reboot(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions);
  516. /**
  517. * Restarts the specified Compute Node.
  518. * You can restart a Compute Node only if it is in an idle or running state.
  519. *
  520. * @param poolId The ID of the Pool that contains the Compute Node.
  521. * @param nodeId The ID of the Compute Node that you want to restart.
  522. * @param nodeRebootOption When to reboot the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  523. * @param computeNodeRebootOptions Additional parameters for the operation
  524. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  525. * @throws IllegalArgumentException thrown if parameters fail the validation
  526. * @return the {@link ServiceFuture} object
  527. */
  528. ServiceFuture<Void> rebootAsync(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions, final ServiceCallback<Void> serviceCallback);
  529. /**
  530. * Restarts the specified Compute Node.
  531. * You can restart a Compute Node only if it is in an idle or running state.
  532. *
  533. * @param poolId The ID of the Pool that contains the Compute Node.
  534. * @param nodeId The ID of the Compute Node that you want to restart.
  535. * @param nodeRebootOption When to reboot the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  536. * @param computeNodeRebootOptions Additional parameters for the operation
  537. * @throws IllegalArgumentException thrown if parameters fail the validation
  538. * @return the {@link ServiceResponseWithHeaders} object if successful.
  539. */
  540. Observable<Void> rebootAsync(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions);
  541. /**
  542. * Restarts the specified Compute Node.
  543. * You can restart a Compute Node only if it is in an idle or running state.
  544. *
  545. * @param poolId The ID of the Pool that contains the Compute Node.
  546. * @param nodeId The ID of the Compute Node that you want to restart.
  547. * @param nodeRebootOption When to reboot the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  548. * @param computeNodeRebootOptions Additional parameters for the operation
  549. * @throws IllegalArgumentException thrown if parameters fail the validation
  550. * @return the {@link ServiceResponseWithHeaders} object if successful.
  551. */
  552. Observable<ServiceResponseWithHeaders<Void, ComputeNodeRebootHeaders>> rebootWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions);
  553. /**
  554. * Reinstalls the operating system on the specified Compute Node.
  555. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  556. *
  557. * @param poolId The ID of the Pool that contains the Compute Node.
  558. * @param nodeId The ID of the Compute Node that you want to restart.
  559. * @throws IllegalArgumentException thrown if parameters fail the validation
  560. * @throws BatchErrorException thrown if the request is rejected by server
  561. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  562. */
  563. void reimage(String poolId, String nodeId);
  564. /**
  565. * Reinstalls the operating system on the specified Compute Node.
  566. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  567. *
  568. * @param poolId The ID of the Pool that contains the Compute Node.
  569. * @param nodeId The ID of the Compute Node that you want to restart.
  570. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  571. * @throws IllegalArgumentException thrown if parameters fail the validation
  572. * @return the {@link ServiceFuture} object
  573. */
  574. ServiceFuture<Void> reimageAsync(String poolId, String nodeId, final ServiceCallback<Void> serviceCallback);
  575. /**
  576. * Reinstalls the operating system on the specified Compute Node.
  577. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  578. *
  579. * @param poolId The ID of the Pool that contains the Compute Node.
  580. * @param nodeId The ID of the Compute Node that you want to restart.
  581. * @throws IllegalArgumentException thrown if parameters fail the validation
  582. * @return the {@link ServiceResponseWithHeaders} object if successful.
  583. */
  584. Observable<Void> reimageAsync(String poolId, String nodeId);
  585. /**
  586. * Reinstalls the operating system on the specified Compute Node.
  587. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  588. *
  589. * @param poolId The ID of the Pool that contains the Compute Node.
  590. * @param nodeId The ID of the Compute Node that you want to restart.
  591. * @throws IllegalArgumentException thrown if parameters fail the validation
  592. * @return the {@link ServiceResponseWithHeaders} object if successful.
  593. */
  594. Observable<ServiceResponseWithHeaders<Void, ComputeNodeReimageHeaders>> reimageWithServiceResponseAsync(String poolId, String nodeId);
  595. /**
  596. * Reinstalls the operating system on the specified Compute Node.
  597. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  598. *
  599. * @param poolId The ID of the Pool that contains the Compute Node.
  600. * @param nodeId The ID of the Compute Node that you want to restart.
  601. * @param nodeReimageOption When to reimage the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  602. * @param computeNodeReimageOptions Additional parameters for the operation
  603. * @throws IllegalArgumentException thrown if parameters fail the validation
  604. * @throws BatchErrorException thrown if the request is rejected by server
  605. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  606. */
  607. void reimage(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions);
  608. /**
  609. * Reinstalls the operating system on the specified Compute Node.
  610. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  611. *
  612. * @param poolId The ID of the Pool that contains the Compute Node.
  613. * @param nodeId The ID of the Compute Node that you want to restart.
  614. * @param nodeReimageOption When to reimage the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  615. * @param computeNodeReimageOptions Additional parameters for the operation
  616. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  617. * @throws IllegalArgumentException thrown if parameters fail the validation
  618. * @return the {@link ServiceFuture} object
  619. */
  620. ServiceFuture<Void> reimageAsync(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions, final ServiceCallback<Void> serviceCallback);
  621. /**
  622. * Reinstalls the operating system on the specified Compute Node.
  623. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  624. *
  625. * @param poolId The ID of the Pool that contains the Compute Node.
  626. * @param nodeId The ID of the Compute Node that you want to restart.
  627. * @param nodeReimageOption When to reimage the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  628. * @param computeNodeReimageOptions Additional parameters for the operation
  629. * @throws IllegalArgumentException thrown if parameters fail the validation
  630. * @return the {@link ServiceResponseWithHeaders} object if successful.
  631. */
  632. Observable<Void> reimageAsync(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions);
  633. /**
  634. * Reinstalls the operating system on the specified Compute Node.
  635. * You can reinstall the operating system on a Compute Node only if it is in an idle or running state. This API can be invoked only on Pools created with the cloud service configuration property.
  636. *
  637. * @param poolId The ID of the Pool that contains the Compute Node.
  638. * @param nodeId The ID of the Compute Node that you want to restart.
  639. * @param nodeReimageOption When to reimage the Compute Node and what to do with currently running Tasks. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion', 'retainedData'
  640. * @param computeNodeReimageOptions Additional parameters for the operation
  641. * @throws IllegalArgumentException thrown if parameters fail the validation
  642. * @return the {@link ServiceResponseWithHeaders} object if successful.
  643. */
  644. Observable<ServiceResponseWithHeaders<Void, ComputeNodeReimageHeaders>> reimageWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions);
  645. /**
  646. * Disables Task scheduling on the specified Compute Node.
  647. * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
  648. *
  649. * @param poolId The ID of the Pool that contains the Compute Node.
  650. * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
  651. * @throws IllegalArgumentException thrown if parameters fail the validation
  652. * @throws BatchErrorException thrown if the request is rejected by server
  653. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  654. */
  655. void disableScheduling(String poolId, String nodeId);
  656. /**
  657. * Disables Task scheduling on the specified Compute Node.
  658. * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
  659. *
  660. * @param poolId The ID of the Pool that contains the Compute Node.
  661. * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
  662. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  663. * @throws IllegalArgumentException thrown if parameters fail the validation
  664. * @return the {@link ServiceFuture} object
  665. */
  666. ServiceFuture<Void> disableSchedulingAsync(String poolId, String nodeId, final ServiceCallback<Void> serviceCallback);
  667. /**
  668. * Disables Task scheduling on the specified Compute Node.
  669. * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
  670. *
  671. * @param poolId The ID of the Pool that contains the Compute Node.
  672. * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
  673. * @throws IllegalArgumentException thrown if parameters fail the validation
  674. * @return the {@link ServiceResponseWithHeaders} object if successful.
  675. */
  676. Observable<Void> disableSchedulingAsync(String poolId, String nodeId);
  677. /**
  678. * Disables Task scheduling on the specified Compute Node.
  679. * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
  680. *
  681. * @param poolId The ID of the Pool that contains the Compute Node.
  682. * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
  683. * @throws IllegalArgumentException thrown if parameters fail the validation
  684. * @return the {@link ServiceResponseWithHeaders} object if successful.
  685. */
  686. Observable<ServiceResponseWithHeaders<Void, ComputeNodeDisableSchedulingHeaders>> disableSchedulingWithServiceResponseAsync(String poolId, String nodeId);
  687. /**
  688. * Disables Task scheduling on the specified Compute Node.
  689. * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
  690. *
  691. * @param poolId The ID of the Pool that contains the Compute Node.
  692. * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
  693. * @param nodeDisableSchedulingOption What to do with currently running Tasks when disabling Task scheduling on the Compute Node. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion'
  694. * @param computeNodeDisableSchedulingOptions Additional parameters for the operation
  695. * @throws IllegalArgumentException thrown if parameters fail the validation
  696. * @throws BatchErrorException thrown if the request is rejected by server
  697. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  698. */
  699. void disableScheduling(String poolId, String nodeId, DisableComputeNodeSchedulingOption nodeDisableSchedulingOption, ComputeNodeDisableSchedulingOptions computeNodeDisableSchedulingOptions);
  700. /**
  701. * Disables Task scheduling on the specified Compute Node.
  702. * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
  703. *
  704. * @param poolId The ID of the Pool that contains the Compute Node.
  705. * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
  706. * @param nodeDisableSchedulingOption What to do with currently running Tasks when disabling Task scheduling on the Compute Node. The default value is requeue. Possible values include: 'requeue', 'terminate', 'taskCompletion'
  707. * @param computeNodeDisableSchedulingOptions Additional parameters for the operation
  708. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  709. * @throws IllegalArgumentException thrown if parameters fail the validation…