use of com.microsoft.azure.batch.protocol.models.JobScheduleListHeaders in project azure-sdk-for-java by Azure.
the class JobSchedulesImpl method list.
/**
* Lists all of the job schedules in the specified account.
*
* @param jobScheduleListOptions 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<CloudJobSchedule> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<CloudJobSchedule>, JobScheduleListHeaders> list(final JobScheduleListOptions jobScheduleListOptions) throws BatchErrorException, IOException, IllegalArgumentException {
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
Validator.validate(jobScheduleListOptions);
String filter = null;
if (jobScheduleListOptions != null) {
filter = jobScheduleListOptions.filter();
}
String select = null;
if (jobScheduleListOptions != null) {
select = jobScheduleListOptions.select();
}
String expand = null;
if (jobScheduleListOptions != null) {
expand = jobScheduleListOptions.expand();
}
Integer maxResults = null;
if (jobScheduleListOptions != null) {
maxResults = jobScheduleListOptions.maxResults();
}
Integer timeout = null;
if (jobScheduleListOptions != null) {
timeout = jobScheduleListOptions.timeout();
}
String clientRequestId = null;
if (jobScheduleListOptions != null) {
clientRequestId = jobScheduleListOptions.clientRequestId();
}
Boolean returnClientRequestId = null;
if (jobScheduleListOptions != null) {
returnClientRequestId = jobScheduleListOptions.returnClientRequestId();
}
DateTime ocpDate = null;
if (jobScheduleListOptions != null) {
ocpDate = jobScheduleListOptions.ocpDate();
}
DateTimeRfc1123 ocpDateConverted = null;
if (ocpDate != null) {
ocpDateConverted = new DateTimeRfc1123(ocpDate);
}
Call<ResponseBody> call = service.list(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, expand, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<CloudJobSchedule>, JobScheduleListHeaders> response = listDelegate(call.execute());
PagedList<CloudJobSchedule> result = new PagedList<CloudJobSchedule>(response.getBody()) {
@Override
public Page<CloudJobSchedule> nextPage(String nextPageLink) throws BatchErrorException, IOException {
JobScheduleListNextOptions jobScheduleListNextOptions = null;
if (jobScheduleListOptions != null) {
jobScheduleListNextOptions = new JobScheduleListNextOptions();
jobScheduleListNextOptions.withClientRequestId(jobScheduleListOptions.clientRequestId());
jobScheduleListNextOptions.withReturnClientRequestId(jobScheduleListOptions.returnClientRequestId());
jobScheduleListNextOptions.withOcpDate(jobScheduleListOptions.ocpDate());
}
return listNext(nextPageLink, jobScheduleListNextOptions).getBody();
}
};
return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
use of com.microsoft.azure.batch.protocol.models.JobScheduleListHeaders in project azure-sdk-for-java by Azure.
the class JobSchedulesImpl method list.
/**
* Lists all of the job schedules in the specified account.
*
* @throws BatchErrorException exception thrown from REST call
* @throws IOException exception thrown from serialization/deserialization
* @throws IllegalArgumentException exception thrown from invalid parameters
* @return the List<CloudJobSchedule> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<CloudJobSchedule>, JobScheduleListHeaders> list() throws BatchErrorException, IOException, IllegalArgumentException {
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
final JobScheduleListOptions jobScheduleListOptions = null;
String filter = null;
String select = null;
String expand = 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(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, expand, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<CloudJobSchedule>, JobScheduleListHeaders> response = listDelegate(call.execute());
PagedList<CloudJobSchedule> result = new PagedList<CloudJobSchedule>(response.getBody()) {
@Override
public Page<CloudJobSchedule> nextPage(String nextPageLink) throws BatchErrorException, IOException {
return listNext(nextPageLink, null).getBody();
}
};
return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Aggregations