All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bitmovin.api.sdk.encoding.encodings.transferRetries.TransferRetriesApi Maven / Gradle / Ivy

There is a newer version: 1.205.0
Show newest version
package com.bitmovin.api.sdk.encoding.encodings.transferRetries;

import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.HashMap;

import feign.Param;
import feign.QueryMap;
import feign.RequestLine;
import feign.Body;
import feign.Headers;

import com.bitmovin.api.sdk.model.*;
import com.bitmovin.api.sdk.common.BitmovinException;
import static com.bitmovin.api.sdk.common.BitmovinExceptionFactory.buildBitmovinException;
import com.bitmovin.api.sdk.common.BitmovinDateExpander;
import com.bitmovin.api.sdk.common.QueryMapWrapper;
import com.bitmovin.api.sdk.common.BitmovinApiBuilder;
import com.bitmovin.api.sdk.common.BitmovinApiClientFactory;

public class TransferRetriesApi {

    private final TransferRetriesApiClient apiClient;

    public TransferRetriesApi(BitmovinApiClientFactory clientFactory) {
        if (clientFactory == null)
        {
            throw new IllegalArgumentException("Parameter 'clientFactory' may not be null.");
        }

        this.apiClient = clientFactory.createApiClient(TransferRetriesApiClient.class);

    }

    /**
     * Fluent builder for creating an instance of TransferRetriesApi
     */
    public static BitmovinApiBuilder builder() {
        return new BitmovinApiBuilder<>(TransferRetriesApi.class);
    }

    /**
     * Transfer retry
     * Triggers a retry attempt for a failed transfer. This is possible within 72 hours after the initial failure.
     * @param encodingId Id of the encoding. (required)
     * @return TransferRetry
     * @throws BitmovinException if fails to make API call
     */
    public TransferRetry create(String encodingId) throws BitmovinException {
        try {
            return this.apiClient.create(encodingId).getData().getResult();
        } catch (Exception ex) {
            throw buildBitmovinException(ex);
        }
    }

    /**
     * Transfer retry Details
     * 
     * @param encodingId Id of the encoding. (required)
     * @param transferRetryId Id of the transfer-retry. (required)
     * @return TransferRetry
     * @throws BitmovinException if fails to make API call
     */
    public TransferRetry get(String encodingId, String transferRetryId) throws BitmovinException {
        try {
            return this.apiClient.get(encodingId, transferRetryId).getData().getResult();
        } catch (Exception ex) {
            throw buildBitmovinException(ex);
        }
    }

    /**
     * List transfer-retries
     * 
     * @param encodingId Id of the encoding. (required)
     * @return List<TransferRetry>
     * @throws BitmovinException if fails to make API call
     */
    public PaginationResponse list(String encodingId) throws BitmovinException {
        try {
            return this.apiClient.list(encodingId, new QueryMapWrapper()).getData().getResult();
        } catch (Exception ex) {
            throw buildBitmovinException(ex);
        }
    }

    /**
     * List transfer-retries
     * 
     * @param encodingId Id of the encoding. (required)
     * @param queryParams The query parameters for sorting, filtering and paging options (optional)
     * @return List<TransferRetry>
     * @throws BitmovinException if fails to make API call
     */
    public PaginationResponse list(String encodingId, TransferRetryListQueryParams queryParams) throws BitmovinException {
        try {
            return this.apiClient.list(encodingId, new QueryMapWrapper(queryParams)).getData().getResult();
        } catch (Exception ex) {
            throw buildBitmovinException(ex);
        }
    }

    interface TransferRetriesApiClient {

        @RequestLine("POST /encoding/encodings/{encoding_id}/transfer-retries")
        ResponseEnvelope create(@Param(value = "encoding_id") String encodingId) throws BitmovinException;
    
        @RequestLine("GET /encoding/encodings/{encoding_id}/transfer-retries/{transfer_retry_id}")
        ResponseEnvelope get(@Param(value = "encoding_id") String encodingId, @Param(value = "transfer_retry_id") String transferRetryId) throws BitmovinException;
    
        @RequestLine("GET /encoding/encodings/{encoding_id}/transfer-retries")
        ResponseEnvelope> list(@Param(value = "encoding_id") String encodingId, @QueryMap QueryMapWrapper queryParams) throws BitmovinException;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy