use of com.microsoft.azure.batch.protocol.models.CertificateListHeaders in project azure-sdk-for-java by Azure.
the class CertificatesImpl method list.
/**
* Lists all of the certificates that have been added to the specified account.
*
* @param certificateListOptions 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<Certificate> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<Certificate>, CertificateListHeaders> list(final CertificateListOptions certificateListOptions) throws BatchErrorException, IOException, IllegalArgumentException {
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
Validator.validate(certificateListOptions);
String filter = null;
if (certificateListOptions != null) {
filter = certificateListOptions.filter();
}
String select = null;
if (certificateListOptions != null) {
select = certificateListOptions.select();
}
Integer maxResults = null;
if (certificateListOptions != null) {
maxResults = certificateListOptions.maxResults();
}
Integer timeout = null;
if (certificateListOptions != null) {
timeout = certificateListOptions.timeout();
}
String clientRequestId = null;
if (certificateListOptions != null) {
clientRequestId = certificateListOptions.clientRequestId();
}
Boolean returnClientRequestId = null;
if (certificateListOptions != null) {
returnClientRequestId = certificateListOptions.returnClientRequestId();
}
DateTime ocpDate = null;
if (certificateListOptions != null) {
ocpDate = certificateListOptions.ocpDate();
}
DateTimeRfc1123 ocpDateConverted = null;
if (ocpDate != null) {
ocpDateConverted = new DateTimeRfc1123(ocpDate);
}
Call<ResponseBody> call = service.list(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<Certificate>, CertificateListHeaders> response = listDelegate(call.execute());
PagedList<Certificate> result = new PagedList<Certificate>(response.getBody()) {
@Override
public Page<Certificate> nextPage(String nextPageLink) throws BatchErrorException, IOException {
CertificateListNextOptions certificateListNextOptions = null;
if (certificateListOptions != null) {
certificateListNextOptions = new CertificateListNextOptions();
certificateListNextOptions.withClientRequestId(certificateListOptions.clientRequestId());
certificateListNextOptions.withReturnClientRequestId(certificateListOptions.returnClientRequestId());
certificateListNextOptions.withOcpDate(certificateListOptions.ocpDate());
}
return listNext(nextPageLink, certificateListNextOptions).getBody();
}
};
return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
use of com.microsoft.azure.batch.protocol.models.CertificateListHeaders in project azure-sdk-for-java by Azure.
the class CertificatesImpl method list.
/**
* Lists all of the certificates that have been added to 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<Certificate> object wrapped in {@link ServiceResponseWithHeaders} if successful.
*/
public ServiceResponseWithHeaders<PagedList<Certificate>, CertificateListHeaders> list() throws BatchErrorException, IOException, IllegalArgumentException {
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
final CertificateListOptions certificateListOptions = 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(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
ServiceResponseWithHeaders<PageImpl<Certificate>, CertificateListHeaders> response = listDelegate(call.execute());
PagedList<Certificate> result = new PagedList<Certificate>(response.getBody()) {
@Override
public Page<Certificate> 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.CertificateListHeaders in project azure-sdk-for-java by Azure.
the class CertificateOperations method listCertificates.
/**
* Enumerates the {@link Certificate certificates} in the Batch account.
*
* @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 Certificate certificates}
* @throws BatchErrorException Exception thrown from REST call
* @throws IOException Exception thrown from serialization/deserialization
*/
public List<Certificate> listCertificates(DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
CertificateListOptions certificateListOptions = new CertificateListOptions();
BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
bhMgr.applyRequestBehaviors(certificateListOptions);
ServiceResponseWithHeaders<PagedList<Certificate>, CertificateListHeaders> response = this._parentBatchClient.protocolLayer().certificates().list(certificateListOptions);
return response.getBody();
}
Aggregations