/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
- /**
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- */
- package com.microsoft.azure.batch.protocol;
- import com.microsoft.azure.batch.protocol.models.BatchErrorException;
- import com.microsoft.azure.batch.protocol.models.ComputeNode;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeAddUserHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeAddUserOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeDeleteUserHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeDeleteUserOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeDisableSchedulingHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeDisableSchedulingOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeEnableSchedulingHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeEnableSchedulingOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeGetHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeGetOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteDesktopHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteDesktopOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeGetRemoteLoginSettingsResult;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeListNextOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeListOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootOption;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeRebootOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageOption;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeReimageOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeUpdateUserHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeUpdateUserOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeUploadBatchServiceLogsHeaders;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeUploadBatchServiceLogsOptions;
- import com.microsoft.azure.batch.protocol.models.ComputeNodeUser;
- import com.microsoft.azure.batch.protocol.models.DisableComputeNodeSchedulingOption;
- import com.microsoft.azure.batch.protocol.models.NodeUpdateUserParameter;
- import com.microsoft.azure.batch.protocol.models.UploadBatchServiceLogsConfiguration;
- import com.microsoft.azure.batch.protocol.models.UploadBatchServiceLogsResult;
- import com.microsoft.azure.ListOperationCallback;
- import com.microsoft.azure.Page;
- import com.microsoft.azure.PagedList;
- import com.microsoft.rest.ServiceCallback;
- import com.microsoft.rest.ServiceFuture;
- import com.microsoft.rest.ServiceResponseWithHeaders;
- import java.io.InputStream;
- import java.util.List;
- import rx.Observable;
- // CUSTOM IMPORT
- import java.io.OutputStream;
- /**
- * An instance of this class provides access to all the operations defined
- * in ComputeNodes.
- */
- public interface ComputeNodes {
- // CUSTOM METHOD
- /**
- *
- * @param poolId The ID of the pool that contains the compute node.
- * @param nodeId The ID of the compute node for which you want to get the Remote Desktop Protocol file.
- * @param outputStream The OutputStream object which data will be written to if successful.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void getRemoteDesktop(String poolId, String nodeId, OutputStream outputStream);
- // CUSTOM METHOD
- /**
- * Gets the Remote Desktop Protocol file for the specified compute node.
- * @param poolId The ID of the pool that contains the compute node.
- * @param nodeId The ID of the compute node for which you want to get the Remote Desktop Protocol file.
- * @param computeNodeGetRemoteDesktopOptions Additional parameters for the operation
- * @param outputStream The OutputStream object which data will be written to if successful.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void getRemoteDesktop(String poolId, String nodeId, ComputeNodeGetRemoteDesktopOptions computeNodeGetRemoteDesktopOptions, OutputStream outputStream);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void addUser(String poolId, String nodeId, ComputeNodeUser user);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user, final ServiceCallback<Void> serviceCallback);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeAddUserHeaders>> addUserWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeUser user);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @param computeNodeAddUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void addUser(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @param computeNodeAddUserOptions Additional parameters for the operation
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions, final ServiceCallback<Void> serviceCallback);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @param computeNodeAddUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> addUserAsync(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions);
- /**
- * Adds a user Account to the specified Compute Node.
- * You can add a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to create a user Account.
- * @param user The user Account to be created.
- * @param computeNodeAddUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeAddUserHeaders>> addUserWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeUser user, ComputeNodeAddUserOptions computeNodeAddUserOptions);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void deleteUser(String poolId, String nodeId, String userName);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> deleteUserAsync(String poolId, String nodeId, String userName, final ServiceCallback<Void> serviceCallback);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> deleteUserAsync(String poolId, String nodeId, String userName);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeDeleteUserHeaders>> deleteUserWithServiceResponseAsync(String poolId, String nodeId, String userName);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @param computeNodeDeleteUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void deleteUser(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @param computeNodeDeleteUserOptions Additional parameters for the operation
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> deleteUserAsync(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions, final ServiceCallback<Void> serviceCallback);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @param computeNodeDeleteUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> deleteUserAsync(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions);
- /**
- * Deletes a user Account from the specified Compute Node.
- * You can delete a user Account to a Compute Node only when it is in the idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to delete a user Account.
- * @param userName The name of the user Account to delete.
- * @param computeNodeDeleteUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeDeleteUserHeaders>> deleteUserWithServiceResponseAsync(String poolId, String nodeId, String userName, ComputeNodeDeleteUserOptions computeNodeDeleteUserOptions);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void updateUser(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, final ServiceCallback<Void> serviceCallback);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeUpdateUserHeaders>> updateUserWithServiceResponseAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @param computeNodeUpdateUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void updateUser(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @param computeNodeUpdateUserOptions Additional parameters for the operation
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions, final ServiceCallback<Void> serviceCallback);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @param computeNodeUpdateUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> updateUserAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions);
- /**
- * Updates the password and expiration time of a user Account on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the machine on which you want to update a user Account.
- * @param userName The name of the user Account to update.
- * @param nodeUpdateUserParameter The parameters for the request.
- * @param computeNodeUpdateUserOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeUpdateUserHeaders>> updateUserWithServiceResponseAsync(String poolId, String nodeId, String userName, NodeUpdateUserParameter nodeUpdateUserParameter, ComputeNodeUpdateUserOptions computeNodeUpdateUserOptions);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the ComputeNode object if successful.
- */
- ComputeNode get(String poolId, String nodeId);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<ComputeNode> getAsync(String poolId, String nodeId, final ServiceCallback<ComputeNode> serviceCallback);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the ComputeNode object
- */
- Observable<ComputeNode> getAsync(String poolId, String nodeId);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the ComputeNode object
- */
- Observable<ServiceResponseWithHeaders<ComputeNode, ComputeNodeGetHeaders>> getWithServiceResponseAsync(String poolId, String nodeId);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @param computeNodeGetOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the ComputeNode object if successful.
- */
- ComputeNode get(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @param computeNodeGetOptions Additional parameters for the operation
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<ComputeNode> getAsync(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions, final ServiceCallback<ComputeNode> serviceCallback);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @param computeNodeGetOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the ComputeNode object
- */
- Observable<ComputeNode> getAsync(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions);
- /**
- * Gets information about the specified Compute Node.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to get information about.
- * @param computeNodeGetOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the ComputeNode object
- */
- Observable<ServiceResponseWithHeaders<ComputeNode, ComputeNodeGetHeaders>> getWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void reboot(String poolId, String nodeId);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> rebootAsync(String poolId, String nodeId, final ServiceCallback<Void> serviceCallback);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> rebootAsync(String poolId, String nodeId);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeRebootHeaders>> rebootWithServiceResponseAsync(String poolId, String nodeId);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeRebootOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void reboot(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeRebootOptions Additional parameters for the operation
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> rebootAsync(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions, final ServiceCallback<Void> serviceCallback);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeRebootOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> rebootAsync(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions);
- /**
- * Restarts the specified Compute Node.
- * You can restart a Compute Node only if it is in an idle or running state.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeRebootOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeRebootHeaders>> rebootWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeRebootOption nodeRebootOption, ComputeNodeRebootOptions computeNodeRebootOptions);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void reimage(String poolId, String nodeId);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> reimageAsync(String poolId, String nodeId, final ServiceCallback<Void> serviceCallback);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> reimageAsync(String poolId, String nodeId);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeReimageHeaders>> reimageWithServiceResponseAsync(String poolId, String nodeId);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeReimageOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void reimage(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeReimageOptions Additional parameters for the operation
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> reimageAsync(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions, final ServiceCallback<Void> serviceCallback);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeReimageOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> reimageAsync(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions);
- /**
- * Reinstalls the operating system on the specified Compute Node.
- * 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.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node that you want to restart.
- * @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'
- * @param computeNodeReimageOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeReimageHeaders>> reimageWithServiceResponseAsync(String poolId, String nodeId, ComputeNodeReimageOption nodeReimageOption, ComputeNodeReimageOptions computeNodeReimageOptions);
- /**
- * Disables Task scheduling on the specified Compute Node.
- * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void disableScheduling(String poolId, String nodeId);
- /**
- * Disables Task scheduling on the specified Compute Node.
- * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- ServiceFuture<Void> disableSchedulingAsync(String poolId, String nodeId, final ServiceCallback<Void> serviceCallback);
- /**
- * Disables Task scheduling on the specified Compute Node.
- * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<Void> disableSchedulingAsync(String poolId, String nodeId);
- /**
- * Disables Task scheduling on the specified Compute Node.
- * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceResponseWithHeaders} object if successful.
- */
- Observable<ServiceResponseWithHeaders<Void, ComputeNodeDisableSchedulingHeaders>> disableSchedulingWithServiceResponseAsync(String poolId, String nodeId);
- /**
- * Disables Task scheduling on the specified Compute Node.
- * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
- * @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'
- * @param computeNodeDisableSchedulingOptions Additional parameters for the operation
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws BatchErrorException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- */
- void disableScheduling(String poolId, String nodeId, DisableComputeNodeSchedulingOption nodeDisableSchedulingOption, ComputeNodeDisableSchedulingOptions computeNodeDisableSchedulingOptions);
- /**
- * Disables Task scheduling on the specified Compute Node.
- * You can disable Task scheduling on a Compute Node only if its current scheduling state is enabled.
- *
- * @param poolId The ID of the Pool that contains the Compute Node.
- * @param nodeId The ID of the Compute Node on which you want to disable Task scheduling.
- * @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'
- * @param computeNodeDisableSchedulingOptions Additional parameters for the operation
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation…