Package com.seeq.api

Class AddOnsApi

java.lang.Object
com.seeq.api.AddOnsApi

public class AddOnsApi extends Object
  • Constructor Details

    • AddOnsApi

      public AddOnsApi()
    • AddOnsApi

      public AddOnsApi(ApiClient apiClient)
  • Method Details

    • setRetryTimeout

      public void setRetryTimeout(long retryTimeout)
    • getRetryTimeout

      public long getRetryTimeout()
    • getApiClient

      public ApiClient getApiClient()
    • setApiClient

      public void setApiClient(ApiClient apiClient)
    • archiveAddOn

      public void archiveAddOn(String id) throws ApiException
      Archive an Add-on item
      Parameters:
      id - ID of the Add-on item to archive. (required)
      Throws:
      ApiException - if fails to make API call
    • archiveAddOnWithHttpInfo

      public void archiveAddOnWithHttpInfo(String id) throws ApiException
      Archive an Add-on item
      Parameters:
      id - ID of the Add-on item to archive. (required)
      Throws:
      ApiException - if fails to make API call
    • archiveAddOnWithHeadersAndHttpInfo

      public void archiveAddOnWithHeadersAndHttpInfo(String id, Map<String,String> customHeaders) throws ApiException
      Archive an Add-on item
      Parameters:
      id - ID of the Add-on item to archive. (required)
      customHeaders - a map with custom headers for the HTTP request (required)
      Throws:
      ApiException - if fails to make API call
    • createAddOn

      public AddOnOutputV1 createAddOn(AddOnInputV1 body) throws ApiException
      Create a new Add-on item
      Parameters:
      body - (required)
      Returns:
      AddOnOutputV1
      Throws:
      ApiException - if fails to make API call
    • createAddOnWithHttpInfo

      public ApiClient.ApiResponse<AddOnOutputV1> createAddOnWithHttpInfo(AddOnInputV1 body) throws ApiException
      Create a new Add-on item
      Parameters:
      body - (required)
      Throws:
      ApiException - if fails to make API call
    • createAddOnWithHeadersAndHttpInfo

      public ApiClient.ApiResponse<AddOnOutputV1> createAddOnWithHeadersAndHttpInfo(AddOnInputV1 body, Map<String,String> customHeaders) throws ApiException
      Create a new Add-on item
      Parameters:
      body - (required)
      customHeaders - a map with custom headers for the HTTP request (required)
      Throws:
      ApiException - if fails to make API call
    • getAddOn

      public AddOnOutputV1 getAddOn(String id) throws ApiException
      Get an Add-on item
      Parameters:
      id - The Seeq ID for the Add-on (required)
      Returns:
      AddOnOutputV1
      Throws:
      ApiException - if fails to make API call
    • getAddOnWithHttpInfo

      public ApiClient.ApiResponse<AddOnOutputV1> getAddOnWithHttpInfo(String id) throws ApiException
      Get an Add-on item
      Parameters:
      id - The Seeq ID for the Add-on (required)
      Throws:
      ApiException - if fails to make API call
    • getAddOnWithHeadersAndHttpInfo

      public ApiClient.ApiResponse<AddOnOutputV1> getAddOnWithHeadersAndHttpInfo(String id, Map<String,String> customHeaders) throws ApiException
      Get an Add-on item
      Parameters:
      id - The Seeq ID for the Add-on (required)
      customHeaders - a map with custom headers for the HTTP request (required)
      Throws:
      ApiException - if fails to make API call
    • getAddOns

      public AddOnOutputListV1 getAddOns(Integer offset, Integer limit) throws ApiException
      Get a list of Add-on items
      Parameters:
      offset - The pagination offset, the index of the first Add-on item that will be returned in this page of results (optional, default to 0)
      limit - The pagination limit, the total number of Add-on items that will be returned in this page of results (optional, default to 40)
      Returns:
      AddOnOutputListV1
      Throws:
      ApiException - if fails to make API call
    • getAddOnsWithHttpInfo

      public ApiClient.ApiResponse<AddOnOutputListV1> getAddOnsWithHttpInfo(Integer offset, Integer limit) throws ApiException
      Get a list of Add-on items
      Parameters:
      offset - The pagination offset, the index of the first Add-on item that will be returned in this page of results (optional, default to 0)
      limit - The pagination limit, the total number of Add-on items that will be returned in this page of results (optional, default to 40)
      Throws:
      ApiException - if fails to make API call
    • getAddOnsWithHeadersAndHttpInfo

      public ApiClient.ApiResponse<AddOnOutputListV1> getAddOnsWithHeadersAndHttpInfo(Integer offset, Integer limit, Map<String,String> customHeaders) throws ApiException
      Get a list of Add-on items
      Parameters:
      offset - The pagination offset, the index of the first Add-on item that will be returned in this page of results (optional, default to 0)
      limit - The pagination limit, the total number of Add-on items that will be returned in this page of results (optional, default to 40)
      customHeaders - a map with custom headers for the HTTP request (required)
      Throws:
      ApiException - if fails to make API call
    • getAllAddOns

      public AddOnPreviewOutputListV1 getAllAddOns(Integer offset, Integer limit) throws ApiException
      Get a list of all installed Add-ons. If the acting user is a non-administrator, the in-development Add-ons of other users will not be listed.
      Parameters:
      offset - The pagination offset, the index of the first Add-on item that will be returned in this page of results (optional, default to 0)
      limit - The pagination limit, the total number of Add-on items that will be returned in this page of results (optional, default to 40)
      Returns:
      AddOnPreviewOutputListV1
      Throws:
      ApiException - if fails to make API call
    • getAllAddOnsWithHttpInfo

      public ApiClient.ApiResponse<AddOnPreviewOutputListV1> getAllAddOnsWithHttpInfo(Integer offset, Integer limit) throws ApiException
      Get a list of all installed Add-ons. If the acting user is a non-administrator, the in-development Add-ons of other users will not be listed.
      Parameters:
      offset - The pagination offset, the index of the first Add-on item that will be returned in this page of results (optional, default to 0)
      limit - The pagination limit, the total number of Add-on items that will be returned in this page of results (optional, default to 40)
      Throws:
      ApiException - if fails to make API call
    • getAllAddOnsWithHeadersAndHttpInfo

      public ApiClient.ApiResponse<AddOnPreviewOutputListV1> getAllAddOnsWithHeadersAndHttpInfo(Integer offset, Integer limit, Map<String,String> customHeaders) throws ApiException
      Get a list of all installed Add-ons. If the acting user is a non-administrator, the in-development Add-ons of other users will not be listed.
      Parameters:
      offset - The pagination offset, the index of the first Add-on item that will be returned in this page of results (optional, default to 0)
      limit - The pagination limit, the total number of Add-on items that will be returned in this page of results (optional, default to 40)
      customHeaders - a map with custom headers for the HTTP request (required)
      Throws:
      ApiException - if fails to make API call
    • updateAddOn

      public AddOnOutputV1 updateAddOn(String id, AddOnInputV1 body) throws ApiException
      Update an Add-on
      Parameters:
      id - The Seeq ID for the Add-on (required)
      body - (required)
      Returns:
      AddOnOutputV1
      Throws:
      ApiException - if fails to make API call
    • updateAddOnWithHttpInfo

      public ApiClient.ApiResponse<AddOnOutputV1> updateAddOnWithHttpInfo(String id, AddOnInputV1 body) throws ApiException
      Update an Add-on
      Parameters:
      id - The Seeq ID for the Add-on (required)
      body - (required)
      Throws:
      ApiException - if fails to make API call
    • updateAddOnWithHeadersAndHttpInfo

      public ApiClient.ApiResponse<AddOnOutputV1> updateAddOnWithHeadersAndHttpInfo(String id, AddOnInputV1 body, Map<String,String> customHeaders) throws ApiException
      Update an Add-on
      Parameters:
      id - The Seeq ID for the Add-on (required)
      body - (required)
      customHeaders - a map with custom headers for the HTTP request (required)
      Throws:
      ApiException - if fails to make API call