use of com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusHeaders in project azure-sdk-for-java by Azure.
the class AccountsImpl method listNodeAgentSkus.
/**
* Lists all node agent SKUs supported by the Azure Batch service.
*
* @param accountListNodeAgentSkusOptions 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<NodeAgentSku> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<NodeAgentSku>, AccountListNodeAgentSkusHeaders> listNodeAgentSkus(final AccountListNodeAgentSkusOptions accountListNodeAgentSkusOptions) throws BatchErrorException, IOException, IllegalArgumentException {
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
Validator.validate(accountListNodeAgentSkusOptions);
String filter = null;
if (accountListNodeAgentSkusOptions != null) {
filter = accountListNodeAgentSkusOptions.filter();
}
Integer maxResults = null;
if (accountListNodeAgentSkusOptions != null) {
maxResults = accountListNodeAgentSkusOptions.maxResults();
}
Integer timeout = null;
if (accountListNodeAgentSkusOptions != null) {
timeout = accountListNodeAgentSkusOptions.timeout();
}
String clientRequestId = null;
if (accountListNodeAgentSkusOptions != null) {
clientRequestId = accountListNodeAgentSkusOptions.clientRequestId();
}
Boolean returnClientRequestId = null;
if (accountListNodeAgentSkusOptions != null) {
returnClientRequestId = accountListNodeAgentSkusOptions.returnClientRequestId();
}
DateTime ocpDate = null;
if (accountListNodeAgentSkusOptions != null) {
ocpDate = accountListNodeAgentSkusOptions.ocpDate();
}
DateTimeRfc1123 ocpDateConverted = null;
if (ocpDate != null) {
ocpDateConverted = new DateTimeRfc1123(ocpDate);
}
Call<ResponseBody> call = service.listNodeAgentSkus(this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<NodeAgentSku>, AccountListNodeAgentSkusHeaders> response = listNodeAgentSkusDelegate(call.execute());
PagedList<NodeAgentSku> result = new PagedList<NodeAgentSku>(response.getBody()) {
@Override
public Page<NodeAgentSku> nextPage(String nextPageLink) throws BatchErrorException, IOException {
AccountListNodeAgentSkusNextOptions accountListNodeAgentSkusNextOptions = null;
if (accountListNodeAgentSkusOptions != null) {
accountListNodeAgentSkusNextOptions = new AccountListNodeAgentSkusNextOptions();
accountListNodeAgentSkusNextOptions.withClientRequestId(accountListNodeAgentSkusOptions.clientRequestId());
accountListNodeAgentSkusNextOptions.withReturnClientRequestId(accountListNodeAgentSkusOptions.returnClientRequestId());
accountListNodeAgentSkusNextOptions.withOcpDate(accountListNodeAgentSkusOptions.ocpDate());
}
return listNodeAgentSkusNext(nextPageLink, accountListNodeAgentSkusNextOptions).getBody();
}
};
return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
use of com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusHeaders in project azure-sdk-for-java by Azure.
the class AccountsImpl method listNodeAgentSkus.
/**
* Lists all node agent SKUs supported by the Azure Batch service.
*
* @throws BatchErrorException exception thrown from REST call
* @throws IOException exception thrown from serialization/deserialization
* @throws IllegalArgumentException exception thrown from invalid parameters
* @return the List<NodeAgentSku> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<NodeAgentSku>, AccountListNodeAgentSkusHeaders> listNodeAgentSkus() throws BatchErrorException, IOException, IllegalArgumentException {
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
final AccountListNodeAgentSkusOptions accountListNodeAgentSkusOptions = null;
String filter = 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.listNodeAgentSkus(this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<NodeAgentSku>, AccountListNodeAgentSkusHeaders> response = listNodeAgentSkusDelegate(call.execute());
PagedList<NodeAgentSku> result = new PagedList<NodeAgentSku>(response.getBody()) {
@Override
public Page<NodeAgentSku> nextPage(String nextPageLink) throws BatchErrorException, IOException {
return listNodeAgentSkusNext(nextPageLink, null).getBody();
}
};
return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
use of com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusHeaders in project azure-sdk-for-java by Azure.
the class AccountOperations method listNodeAgentSkus.
/**
* Enumerates the node agent SKU values supported by Batch Service.
*
* @param detailLevel A {@link DetailLevel} used for filtering the list and for controlling which properties are retrieved from the service.
* @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
* @return A collection of {@link NodeAgentSku} that can be used to enumerate node agent SKU values
* @throws BatchErrorException Exception thrown from REST call
* @throws IOException Exception thrown from serialization/deserialization
*/
public List<NodeAgentSku> listNodeAgentSkus(DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
AccountListNodeAgentSkusOptions options = new AccountListNodeAgentSkusOptions();
BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
bhMgr.applyRequestBehaviors(options);
ServiceResponseWithHeaders<PagedList<NodeAgentSku>, AccountListNodeAgentSkusHeaders> response = this._parentBatchClient.protocolLayer().accounts().listNodeAgentSkus(options);
return response.getBody();
}
Aggregations