use of com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders in project azure-sdk-for-java by Azure.
the class ComputeNodesImpl method list.
/**
* Lists the compute nodes in the specified pool.
*
* @param poolId The id of the pool from which you want to list nodes.
* @throws BatchErrorException exception thrown from REST call
* @throws IOException exception thrown from serialization/deserialization
* @throws IllegalArgumentException exception thrown from invalid parameters
* @return the List<ComputeNode> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<ComputeNode>, ComputeNodeListHeaders> list(final String poolId) throws BatchErrorException, IOException, IllegalArgumentException {
if (poolId == null) {
throw new IllegalArgumentException("Parameter poolId is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
final ComputeNodeListOptions computeNodeListOptions = null;
String filter = null;
String select = null;
Integer maxResults = null;
Integer timeout = null;
String clientRequestId = null;
Boolean returnClientRequestId = null;
DateTime ocpDate = null;
DateTimeRfc1123 ocpDateConverted = null;
if (ocpDate != null) {
ocpDateConverted = new DateTimeRfc1123(ocpDate);
}
Call<ResponseBody> call = service.list(poolId, this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<ComputeNode>, ComputeNodeListHeaders> response = listDelegate(call.execute());
PagedList<ComputeNode> result = new PagedList<ComputeNode>(response.getBody()) {
@Override
public Page<ComputeNode> nextPage(String nextPageLink) throws BatchErrorException, IOException {
return listNext(nextPageLink, null).getBody();
}
};
return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
use of com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders in project azure-sdk-for-java by Azure.
the class ComputeNodesImpl method list.
/**
* Lists the compute nodes in the specified pool.
*
* @param poolId The id of the pool from which you want to list nodes.
* @param computeNodeListOptions Additional parameters for the operation
* @throws BatchErrorException exception thrown from REST call
* @throws IOException exception thrown from serialization/deserialization
* @throws IllegalArgumentException exception thrown from invalid parameters
* @return the List<ComputeNode> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<ComputeNode>, ComputeNodeListHeaders> list(final String poolId, final ComputeNodeListOptions computeNodeListOptions) throws BatchErrorException, IOException, IllegalArgumentException {
if (poolId == null) {
throw new IllegalArgumentException("Parameter poolId is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
Validator.validate(computeNodeListOptions);
String filter = null;
if (computeNodeListOptions != null) {
filter = computeNodeListOptions.filter();
}
String select = null;
if (computeNodeListOptions != null) {
select = computeNodeListOptions.select();
}
Integer maxResults = null;
if (computeNodeListOptions != null) {
maxResults = computeNodeListOptions.maxResults();
}
Integer timeout = null;
if (computeNodeListOptions != null) {
timeout = computeNodeListOptions.timeout();
}
String clientRequestId = null;
if (computeNodeListOptions != null) {
clientRequestId = computeNodeListOptions.clientRequestId();
}
Boolean returnClientRequestId = null;
if (computeNodeListOptions != null) {
returnClientRequestId = computeNodeListOptions.returnClientRequestId();
}
DateTime ocpDate = null;
if (computeNodeListOptions != null) {
ocpDate = computeNodeListOptions.ocpDate();
}
DateTimeRfc1123 ocpDateConverted = null;
if (ocpDate != null) {
ocpDateConverted = new DateTimeRfc1123(ocpDate);
}
Call<ResponseBody> call = service.list(poolId, this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<ComputeNode>, ComputeNodeListHeaders> response = listDelegate(call.execute());
PagedList<ComputeNode> result = new PagedList<ComputeNode>(response.getBody()) {
@Override
public Page<ComputeNode> nextPage(String nextPageLink) throws BatchErrorException, IOException {
ComputeNodeListNextOptions computeNodeListNextOptions = null;
if (computeNodeListOptions != null) {
computeNodeListNextOptions = new ComputeNodeListNextOptions();
computeNodeListNextOptions.withClientRequestId(computeNodeListOptions.clientRequestId());
computeNodeListNextOptions.withReturnClientRequestId(computeNodeListOptions.returnClientRequestId());
computeNodeListNextOptions.withOcpDate(computeNodeListOptions.ocpDate());
}
return listNext(nextPageLink, computeNodeListNextOptions).getBody();
}
};
return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Aggregations