/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/ComputeNodeOperations.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 585 lines · 192 code · 58 blank · 335 comment · 0 complexity · b3beacec2adbe58a4b57a94e7ba917f5 MD5 · raw file

  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. package com.microsoft.azure.batch;
  4. import com.microsoft.azure.PagedList;
  5. import com.microsoft.azure.batch.protocol.models.BatchErrorException;
  6. import com.microsoft.azure.batch.protocol.models.ComputeNode;
  7. import com.microsoft.azure.batch.protocol.models.ComputeNodeAddUserOptions;
  8. import com.microsoft.azure.batch.protocol.models.ComputeNodeDeleteUserOptions;
  9. import com.microsoft.azure.batch.protocol.models.ComputeNodeDisableSchedulingOptions;
  10. import com.microsoft.azure.batch.protocol.models.ComputeNodeEnableSchedulingOptions;
  11. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetOptions;
  12. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteDesktopOptions;
  13. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsOptions;
  14. import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsResult;
  15. import com.microsoft.azure.batch.protocol.models.ComputeNodeListOptions;
  16. import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootOption;
  17. import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootOptions;
  18. import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageOption;
  19. import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageOptions;
  20. import com.microsoft.azure.batch.protocol.models.ComputeNodeUpdateUserOptions;
  21. import com.microsoft.azure.batch.protocol.models.ComputeNodeUploadBatchServiceLogsOptions;
  22. import com.microsoft.azure.batch.protocol.models.ComputeNodeUser;
  23. import com.microsoft.azure.batch.protocol.models.DisableComputeNodeSchedulingOption;
  24. import com.microsoft.azure.batch.protocol.models.NodeUpdateUserParameter;
  25. import com.microsoft.azure.batch.protocol.models.UploadBatchServiceLogsConfiguration;
  26. import com.microsoft.azure.batch.protocol.models.UploadBatchServiceLogsResult;
  27. import org.joda.time.DateTime;
  28. import java.io.ByteArrayOutputStream;
  29. import java.io.IOException;
  30. import java.util.Collection;
  31. /**
  32. * Performs compute node-related operations on an Azure Batch account.
  33. */
  34. public class ComputeNodeOperations implements IInheritedBehaviors {
  35. private Collection<BatchClientBehavior> customBehaviors;
  36. private BatchClient parentBatchClient;
  37. ComputeNodeOperations(BatchClient batchClient, Iterable<BatchClientBehavior> inheritedBehaviors) {
  38. parentBatchClient = batchClient;
  39. // inherit from instantiating parent
  40. InternalHelper.inheritClientBehaviorsAndSetPublicProperty(this, inheritedBehaviors);
  41. }
  42. /**
  43. * Gets a collection of behaviors that modify or customize requests to the Batch service.
  44. *
  45. * @return A collection of {@link BatchClientBehavior} instances.
  46. */
  47. @Override
  48. public Collection<BatchClientBehavior> customBehaviors() {
  49. return customBehaviors;
  50. }
  51. /**
  52. * Sets a collection of behaviors that modify or customize requests to the Batch service.
  53. *
  54. * @param behaviors The collection of {@link BatchClientBehavior} instances.
  55. * @return The current instance.
  56. */
  57. @Override
  58. public IInheritedBehaviors withCustomBehaviors(Collection<BatchClientBehavior> behaviors) {
  59. customBehaviors = behaviors;
  60. return this;
  61. }
  62. /**
  63. * Adds a user account to the specified compute node.
  64. *
  65. * @param poolId The ID of the pool that contains the compute node.
  66. * @param nodeId The ID of the compute node where the user account will be created.
  67. * @param user The user account to be created.
  68. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  69. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  70. */
  71. public void addComputeNodeUser(String poolId, String nodeId, ComputeNodeUser user) throws BatchErrorException, IOException {
  72. addComputeNodeUser(poolId, nodeId, user, null);
  73. }
  74. /**
  75. * Adds a user account to the specified compute node.
  76. *
  77. * @param poolId The ID of the pool that contains the compute node.
  78. * @param nodeId The ID of the compute node where the user account will be created.
  79. * @param user The user account to be created.
  80. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  81. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  82. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  83. */
  84. public void addComputeNodeUser(String poolId, String nodeId, ComputeNodeUser user, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  85. ComputeNodeAddUserOptions options = new ComputeNodeAddUserOptions();
  86. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  87. bhMgr.applyRequestBehaviors(options);
  88. this.parentBatchClient.protocolLayer().computeNodes().addUser(poolId, nodeId, user, options);
  89. }
  90. /**
  91. * Deletes the specified user account from the specified compute node.
  92. *
  93. * @param poolId The ID of the pool that contains the compute node.
  94. * @param nodeId The ID of the compute node where the user account will be deleted.
  95. * @param userName The name of the user account to be deleted.
  96. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  97. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  98. */
  99. public void deleteComputeNodeUser(String poolId, String nodeId, String userName) throws BatchErrorException, IOException {
  100. deleteComputeNodeUser(poolId, nodeId, userName, null);
  101. }
  102. /**
  103. * Deletes the specified user account from the specified compute node.
  104. *
  105. * @param poolId The ID of the pool that contains the compute node.
  106. * @param nodeId The ID of the compute node where the user account will be deleted.
  107. * @param userName The name of the user account to be deleted.
  108. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  109. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  110. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  111. */
  112. public void deleteComputeNodeUser(String poolId, String nodeId, String userName, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  113. ComputeNodeDeleteUserOptions options = new ComputeNodeDeleteUserOptions();
  114. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  115. bhMgr.applyRequestBehaviors(options);
  116. this.parentBatchClient.protocolLayer().computeNodes().deleteUser(poolId, nodeId, userName, options);
  117. }
  118. /**
  119. * Updates the specified user account on the specified compute node.
  120. *
  121. * @param poolId The ID of the pool that contains the compute node.
  122. * @param nodeId The ID of the compute node where the user account will be updated.
  123. * @param userName The name of the user account to update.
  124. * @param password The password of the account. If null, the password is removed.
  125. * @param expiryTime The time at which the account should expire. If null, the expiry time is replaced with its default value.
  126. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  127. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  128. */
  129. public void updateComputeNodeUser(String poolId, String nodeId, String userName, String password, DateTime expiryTime) throws BatchErrorException, IOException {
  130. updateComputeNodeUser(poolId, nodeId, userName, password, expiryTime, null);
  131. }
  132. /**
  133. * Updates the specified user account on the specified compute node.
  134. *
  135. * @param poolId The ID of the pool that contains the compute node.
  136. * @param nodeId The ID of the compute node where the user account will be updated.
  137. * @param userName The name of the user account to update.
  138. * @param password The password of the account. If null, the password is removed.
  139. * @param expiryTime The time at which the account should expire. If null, the expiry time is replaced with its default value.
  140. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  141. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  142. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  143. */
  144. public void updateComputeNodeUser(String poolId, String nodeId, String userName, String password, DateTime expiryTime, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  145. NodeUpdateUserParameter param = new NodeUpdateUserParameter();
  146. param.withPassword(password);
  147. param.withExpiryTime(expiryTime);
  148. updateComputeNodeUser(poolId, nodeId, userName, param, additionalBehaviors);
  149. }
  150. /**
  151. * Updates the specified user account on the specified compute node.
  152. *
  153. * @param poolId The ID of the pool that contains the compute node.
  154. * @param nodeId The ID of the compute node where the user account will be updated.
  155. * @param userName The name of the user account to update.
  156. * @param sshPublicKey The SSH public key that can be used for remote login to the compute node. If null, the SSH public key is removed.
  157. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  158. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  159. */
  160. public void updateComputeNodeUser(String poolId, String nodeId, String userName, String sshPublicKey) throws BatchErrorException, IOException {
  161. updateComputeNodeUser(poolId, nodeId, userName, sshPublicKey, (Iterable<BatchClientBehavior>) null);
  162. }
  163. /**
  164. * Updates the specified user account on the specified compute node.
  165. *
  166. * @param poolId The ID of the pool that contains the compute node.
  167. * @param nodeId The ID of the compute node where the user account will be updated.
  168. * @param userName The name of the user account to update.
  169. * @param sshPublicKey The SSH public key that can be used for remote login to the compute node. If null, the SSH public key is removed.
  170. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  171. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  172. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  173. */
  174. public void updateComputeNodeUser(String poolId, String nodeId, String userName, String sshPublicKey, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  175. NodeUpdateUserParameter param = new NodeUpdateUserParameter();
  176. param.withSshPublicKey(sshPublicKey);
  177. updateComputeNodeUser(poolId, nodeId, userName, param, additionalBehaviors);
  178. }
  179. /**
  180. * Updates the specified user account on the specified compute node.
  181. *
  182. * @param poolId The ID of the pool that contains the compute node.
  183. * @param nodeId The ID of the compute node where the user account will be updated.
  184. * @param userName The name of the user account to update.
  185. * @param nodeUpdateUserParameter The set of changes to be made to the user account.
  186. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  187. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  188. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  189. */
  190. private void updateComputeNodeUser(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  191. ComputeNodeUpdateUserOptions options = new ComputeNodeUpdateUserOptions();
  192. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  193. bhMgr.applyRequestBehaviors(options);
  194. this.parentBatchClient.protocolLayer().computeNodes().updateUser(poolId, nodeId, userName, nodeUpdateUserParameter, options);
  195. }
  196. /**
  197. * Gets the specified compute node.
  198. *
  199. * @param poolId The ID of the pool.
  200. * @param nodeId the ID of the compute node to get from the pool.
  201. * @return A {@link ComputeNode} containing information about the specified compute node.
  202. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  203. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  204. */
  205. public ComputeNode getComputeNode(String poolId, String nodeId) throws BatchErrorException, IOException {
  206. return getComputeNode(poolId, nodeId, null, null);
  207. }
  208. /**
  209. * Gets the specified compute node.
  210. *
  211. * @param poolId The ID of the pool.
  212. * @param nodeId The ID of the compute node to get from the pool.
  213. * @param detailLevel A {@link DetailLevel} used for controlling which properties are retrieved from the service.
  214. * @return A {@link ComputeNode} containing information about the specified compute node.
  215. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  216. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  217. */
  218. public ComputeNode getComputeNode(String poolId, String nodeId, DetailLevel detailLevel) throws BatchErrorException, IOException {
  219. return getComputeNode(poolId, nodeId, detailLevel, null);
  220. }
  221. /**
  222. * Gets the specified compute node.
  223. *
  224. * @param poolId The ID of the pool.
  225. * @param nodeId The ID of the compute node to get from the pool.
  226. * @param detailLevel A {@link DetailLevel} used for controlling which properties are retrieved from the service.
  227. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  228. * @return A {@link ComputeNode} containing information about the specified compute node.
  229. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  230. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  231. */
  232. public ComputeNode getComputeNode(String poolId, String nodeId, DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  233. ComputeNodeGetOptions options = new ComputeNodeGetOptions();
  234. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  235. bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
  236. bhMgr.applyRequestBehaviors(options);
  237. return this.parentBatchClient.protocolLayer().computeNodes().get(poolId, nodeId, options);
  238. }
  239. /**
  240. * Reboots the specified compute node.
  241. * <p>You can reboot a compute node only when it is in the {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#IDLE Idle} or {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#RUNNING Running} state.</p>
  242. *
  243. * @param poolId The ID of the pool that contains the compute node.
  244. * @param nodeId The ID of the compute node to reboot.
  245. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  246. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  247. */
  248. public void rebootComputeNode(String poolId, String nodeId) throws BatchErrorException, IOException {
  249. rebootComputeNode(poolId, nodeId, null, null);
  250. }
  251. /**
  252. * Reboots the specified compute node.
  253. * <p>You can reboot a compute node only when it is in the {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#IDLE Idle} or {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#RUNNING Running} state.</p>
  254. *
  255. * @param poolId The ID of the pool that contains the compute node.
  256. * @param nodeId The ID of the compute node to reboot.
  257. * @param nodeRebootOption Specifies when to reboot the node and what to do with currently running tasks.
  258. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  259. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  260. */
  261. public void rebootComputeNode(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption) throws BatchErrorException, IOException {
  262. rebootComputeNode(poolId, nodeId, nodeRebootOption, null);
  263. }
  264. /**
  265. * Reboots the specified compute node.
  266. * <p>You can reboot a compute node only when it is in the {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#IDLE Idle} or {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#RUNNING Running} state.</p>
  267. *
  268. * @param poolId The ID of the pool that contains the compute node.
  269. * @param nodeId The ID of the compute node to reboot.
  270. * @param nodeRebootOption Specifies when to reboot the node and what to do with currently running tasks.
  271. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  272. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  273. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  274. */
  275. public void rebootComputeNode(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  276. ComputeNodeRebootOptions options = new ComputeNodeRebootOptions();
  277. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  278. bhMgr.applyRequestBehaviors(options);
  279. this.parentBatchClient.protocolLayer().computeNodes().reboot(poolId, nodeId, nodeRebootOption, options);
  280. }
  281. /**
  282. * Reinstalls the operating system on the specified compute node.
  283. * <p>You can reimage a compute node only when it is in the {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#IDLE Idle} or {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#RUNNING Running} state.</p>
  284. *
  285. * @param poolId The ID of the pool that contains the compute node.
  286. * @param nodeId The ID of the compute node to reimage.
  287. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  288. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  289. */
  290. public void reimageComputeNode(String poolId, String nodeId) throws BatchErrorException, IOException {
  291. reimageComputeNode(poolId, nodeId, null, null);
  292. }
  293. /**
  294. * Reinstalls the operating system on the specified compute node.
  295. * <p>You can reimage a compute node only when it is in the {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#IDLE Idle} or {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#RUNNING Running} state.</p>
  296. *
  297. * @param poolId The ID of the pool that contains the compute node.
  298. * @param nodeId The ID of the compute node to reimage.
  299. * @param nodeReimageOption Specifies when to reimage the node and what to do with currently running tasks.
  300. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  301. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  302. */
  303. public void reimageComputeNode(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption) throws BatchErrorException, IOException {
  304. reimageComputeNode(poolId, nodeId, nodeReimageOption, null);
  305. }
  306. /**
  307. * Reinstalls the operating system on the specified compute node.
  308. * <p>You can reimage a compute node only when it is in the {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#IDLE Idle} or {@link com.microsoft.azure.batch.protocol.models.ComputeNodeState#RUNNING Running} state.</p>
  309. *
  310. * @param poolId The ID of the pool that contains the compute node.
  311. * @param nodeId The ID of the compute node to reimage.
  312. * @param nodeReimageOption Specifies when to reimage the node and what to do with currently running tasks.
  313. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  314. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  315. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  316. */
  317. public void reimageComputeNode(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  318. ComputeNodeReimageOptions options = new ComputeNodeReimageOptions();
  319. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  320. bhMgr.applyRequestBehaviors(options);
  321. this.parentBatchClient.protocolLayer().computeNodes().reimage(poolId, nodeId, nodeReimageOption, options);
  322. }
  323. /**
  324. * Disables task scheduling on the specified compute node.
  325. *
  326. * @param poolId The ID of the pool.
  327. * @param nodeId the ID of the compute node.
  328. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  329. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  330. */
  331. public void disableComputeNodeScheduling(String poolId, String nodeId) throws BatchErrorException, IOException {
  332. disableComputeNodeScheduling(poolId, nodeId, null, null);
  333. }
  334. /**
  335. * Disables task scheduling on the specified compute node.
  336. *
  337. * @param poolId The ID of the pool.
  338. * @param nodeId The ID of the compute node.
  339. * @param nodeDisableSchedulingOption Specifies what to do with currently running tasks.
  340. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  341. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  342. */
  343. public void disableComputeNodeScheduling(String poolId, String nodeId, DisableComputeNodeSchedulingOption nodeDisableSchedulingOption) throws BatchErrorException, IOException {
  344. disableComputeNodeScheduling(poolId, nodeId, nodeDisableSchedulingOption, null);
  345. }
  346. /**
  347. * Disables task scheduling on the specified compute node.
  348. *
  349. * @param poolId The ID of the pool.
  350. * @param nodeId The ID of the compute node.
  351. * @param nodeDisableSchedulingOption Specifies what to do with currently running tasks.
  352. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  353. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  354. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  355. */
  356. public void disableComputeNodeScheduling(String poolId, String nodeId, DisableComputeNodeSchedulingOption nodeDisableSchedulingOption, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  357. ComputeNodeDisableSchedulingOptions options = new ComputeNodeDisableSchedulingOptions();
  358. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  359. bhMgr.applyRequestBehaviors(options);
  360. this.parentBatchClient.protocolLayer().computeNodes().disableScheduling(poolId, nodeId, nodeDisableSchedulingOption, options);
  361. }
  362. /**
  363. * Enables task scheduling on the specified compute node.
  364. *
  365. * @param poolId The ID of the pool.
  366. * @param nodeId The ID of the compute node.
  367. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  368. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  369. */
  370. public void enableComputeNodeScheduling(String poolId, String nodeId) throws BatchErrorException, IOException {
  371. enableComputeNodeScheduling(poolId, nodeId, null);
  372. }
  373. /**
  374. * Enables task scheduling on the specified compute node.
  375. *
  376. * @param poolId The ID of the pool.
  377. * @param nodeId The ID of the compute node.
  378. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  379. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  380. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  381. */
  382. public void enableComputeNodeScheduling(String poolId, String nodeId, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  383. ComputeNodeEnableSchedulingOptions options = new ComputeNodeEnableSchedulingOptions();
  384. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  385. bhMgr.applyRequestBehaviors(options);
  386. this.parentBatchClient.protocolLayer().computeNodes().enableScheduling(poolId, nodeId, options);
  387. }
  388. /**
  389. * Gets a Remote Desktop Protocol (RDP) file for the specified node.
  390. *
  391. * @param poolId The ID of the pool that contains the compute node.
  392. * @param nodeId The ID of the compute node for which to get a Remote Desktop file.
  393. * @return The RDP file contents.
  394. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  395. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  396. */
  397. public String getComputeNodeRemoteDesktop(String poolId, String nodeId) throws BatchErrorException, IOException {
  398. return getComputeNodeRemoteDesktop(poolId, nodeId, null);
  399. }
  400. /**
  401. * Gets a Remote Desktop Protocol (RDP) file for the specified node.
  402. *
  403. * @param poolId The ID of the pool that contains the compute node.
  404. * @param nodeId The ID of the compute node for which to get a Remote Desktop file.
  405. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  406. * @return The RDP file contents.
  407. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  408. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  409. */
  410. public String getComputeNodeRemoteDesktop(String poolId, String nodeId, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  411. ComputeNodeGetRemoteDesktopOptions options = new ComputeNodeGetRemoteDesktopOptions();
  412. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  413. bhMgr.applyRequestBehaviors(options);
  414. ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
  415. this.parentBatchClient.protocolLayer().computeNodes().getRemoteDesktop(poolId, nodeId, options, outputStream);
  416. String rdpContent = outputStream.toString("UTF-8");
  417. outputStream.close();
  418. return rdpContent;
  419. }
  420. /**
  421. * Gets the settings required for remote login to a compute node.
  422. *
  423. * @param poolId The ID of the pool that contains the compute node.
  424. * @param nodeId The ID of the compute node for which to get a remote login settings.
  425. * @return The remote settings for the specified compute node.
  426. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  427. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  428. */
  429. public ComputeNodeGetRemoteLoginSettingsResult getComputeNodeRemoteLoginSettings(String poolId, String nodeId) throws BatchErrorException, IOException {
  430. return getComputeNodeRemoteLoginSettings(poolId, nodeId, null);
  431. }
  432. /**
  433. * Gets the settings required for remote login to a compute node.
  434. *
  435. * @param poolId The ID of the pool that contains the compute node.
  436. * @param nodeId The ID of the compute node for which to get a remote login settings.
  437. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  438. * @return The remote login settings for the specified compute node.
  439. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  440. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  441. */
  442. public ComputeNodeGetRemoteLoginSettingsResult getComputeNodeRemoteLoginSettings(String poolId, String nodeId, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  443. ComputeNodeGetRemoteLoginSettingsOptions options = new ComputeNodeGetRemoteLoginSettingsOptions();
  444. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  445. bhMgr.applyRequestBehaviors(options);
  446. return this.parentBatchClient.protocolLayer().computeNodes().getRemoteLoginSettings(poolId, nodeId, options);
  447. }
  448. /**
  449. * Lists the {@link ComputeNode compute nodes} of the specified pool.
  450. *
  451. * @param poolId The ID of the pool.
  452. * @return A list of {@link ComputeNode} objects.
  453. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  454. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  455. */
  456. public PagedList<ComputeNode> listComputeNodes(String poolId) throws BatchErrorException, IOException {
  457. return listComputeNodes(poolId, null, null);
  458. }
  459. /**
  460. * Lists the {@link ComputeNode compute nodes} of the specified pool.
  461. *
  462. * @param poolId The ID of the pool.
  463. * @param detailLevel A {@link DetailLevel} used for filtering the list and for controlling which properties are retrieved from the service.
  464. * @return A list of {@link ComputeNode} objects.
  465. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  466. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  467. */
  468. public PagedList<ComputeNode> listComputeNodes(String poolId, DetailLevel detailLevel) throws BatchErrorException, IOException {
  469. return listComputeNodes(poolId, detailLevel, null);
  470. }
  471. /**
  472. * Lists the {@link ComputeNode compute nodes} of the specified pool.
  473. *
  474. * @param poolId The ID of the pool.
  475. * @param detailLevel A {@link DetailLevel} used for filtering the list and for controlling which properties are retrieved from the service.
  476. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  477. * @return A list of {@link ComputeNode} objects.
  478. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  479. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  480. */
  481. public PagedList<ComputeNode> listComputeNodes(String poolId, DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  482. ComputeNodeListOptions options = new ComputeNodeListOptions();
  483. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  484. bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
  485. bhMgr.applyRequestBehaviors(options);
  486. return this.parentBatchClient.protocolLayer().computeNodes().list(poolId, options);
  487. }
  488. /**
  489. * Upload Azure Batch service log files from the specified compute node to Azure Blob Storage.
  490. * This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service.
  491. *
  492. * @param poolId The ID of the pool that contains the compute node.
  493. * @param nodeId The ID of the compute node from which you want to upload the Azure Batch service log files.
  494. * @param containerUrl The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s).
  495. * @param startTime The start of the time range from which to upload Batch Service log file(s).
  496. * @return The result of uploading Batch service log files from a specific compute node.
  497. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  498. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  499. */
  500. public UploadBatchServiceLogsResult uploadBatchServiceLogs(String poolId, String nodeId, String containerUrl, DateTime startTime) throws BatchErrorException, IOException {
  501. return uploadBatchServiceLogs(poolId, nodeId, containerUrl, startTime, null, null);
  502. }
  503. /**
  504. * Upload Azure Batch service log files from the specified compute node to Azure Blob Storage.
  505. * This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service.
  506. *
  507. * @param poolId The ID of the pool that contains the compute node.
  508. * @param nodeId The ID of the compute node from which you want to upload the Azure Batch service log files.
  509. * @param containerUrl The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s).
  510. * @param startTime The start of the time range from which to upload Batch Service log file(s).
  511. * @param endTime The end of the time range from which to upload Batch Service log file(s).
  512. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
  513. * @return The result of uploading Batch service log files from a specific compute node.
  514. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service.
  515. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.
  516. */
  517. public UploadBatchServiceLogsResult uploadBatchServiceLogs(String poolId, String nodeId, String containerUrl, DateTime startTime, DateTime endTime, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
  518. UploadBatchServiceLogsConfiguration configuration = new UploadBatchServiceLogsConfiguration();
  519. configuration.withContainerUrl(containerUrl);
  520. configuration.withStartTime(startTime);
  521. configuration.withEndTime(endTime);
  522. ComputeNodeUploadBatchServiceLogsOptions options = new ComputeNodeUploadBatchServiceLogsOptions();
  523. BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
  524. bhMgr.applyRequestBehaviors(options);
  525. return this.parentBatchClient.protocolLayer().computeNodes().uploadBatchServiceLogs(poolId, nodeId, configuration, options);
  526. }
  527. }