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

software.tnb.jira.validation.generated.api.IssueTypePropertiesApi Maven / Gradle / Ivy

The newest version!
/*
 * The Jira Cloud platform REST API
 * Jira Cloud platform REST API documentation
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package software.tnb.jira.validation.generated.api;

import software.tnb.jira.validation.generated.ApiCallback;
import software.tnb.jira.validation.generated.ApiClient;
import software.tnb.jira.validation.generated.ApiException;
import software.tnb.jira.validation.generated.ApiResponse;
import software.tnb.jira.validation.generated.Configuration;
import software.tnb.jira.validation.generated.Pair;
import software.tnb.jira.validation.generated.ProgressRequestBody;
import software.tnb.jira.validation.generated.ProgressResponseBody;

import com.google.gson.reflect.TypeToken;

import java.io.IOException;


import software.tnb.jira.validation.generated.model.EntityProperty;
import software.tnb.jira.validation.generated.model.PropertyKeys;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class IssueTypePropertiesApi {
    private ApiClient localVarApiClient;
    private int localHostIndex;
    private String localCustomBaseUrl;

    public IssueTypePropertiesApi() {
        this(Configuration.getDefaultApiClient());
    }

    public IssueTypePropertiesApi(ApiClient apiClient) {
        this.localVarApiClient = apiClient;
    }

    public ApiClient getApiClient() {
        return localVarApiClient;
    }

    public void setApiClient(ApiClient apiClient) {
        this.localVarApiClient = apiClient;
    }

    public int getHostIndex() {
        return localHostIndex;
    }

    public void setHostIndex(int hostIndex) {
        this.localHostIndex = hostIndex;
    }

    public String getCustomBaseUrl() {
        return localCustomBaseUrl;
    }

    public void setCustomBaseUrl(String customBaseUrl) {
        this.localCustomBaseUrl = customBaseUrl;
    }

    /**
     * Build call for deleteIssueTypeProperty
     * @param issueTypeId The ID of the issue type. (required)
     * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required)
     * @param _callback Callback for upload/download progress
     * @return Call to execute
     * @throws ApiException If fail to serialize the request body object
     * @http.response.details
     
Status Code Description Response Headers
204 Returned if the issue type property is deleted. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have the necessary permission. -
404 Returned if the issue type or property is not found. -
*/ public okhttp3.Call deleteIssueTypePropertyCall(String issueTypeId, String propertyKey, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; // Determine Base Path to Use if (localCustomBaseUrl != null){ basePath = localCustomBaseUrl; } else if ( localBasePaths.length > 0 ) { basePath = localBasePaths[localHostIndex]; } else { basePath = null; } Object localVarPostBody = null; // create path and map variables String localVarPath = "/rest/api/3/issuetype/{issueTypeId}/properties/{propertyKey}" .replace("{" + "issueTypeId" + "}", localVarApiClient.escapeString(issueTypeId.toString())) .replace("{" + "propertyKey" + "}", localVarApiClient.escapeString(propertyKey.toString())); List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); Map localVarHeaderParams = new HashMap(); Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); final String[] localVarAccepts = { }; final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) { localVarHeaderParams.put("Accept", localVarAccept); } final String[] localVarContentTypes = { }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { localVarHeaderParams.put("Content-Type", localVarContentType); } String[] localVarAuthNames = new String[] { "OAuth2", "basicAuth" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") private okhttp3.Call deleteIssueTypePropertyValidateBeforeCall(String issueTypeId, String propertyKey, final ApiCallback _callback) throws ApiException { // verify the required parameter 'issueTypeId' is set if (issueTypeId == null) { throw new ApiException("Missing the required parameter 'issueTypeId' when calling deleteIssueTypeProperty(Async)"); } // verify the required parameter 'propertyKey' is set if (propertyKey == null) { throw new ApiException("Missing the required parameter 'propertyKey' when calling deleteIssueTypeProperty(Async)"); } return deleteIssueTypePropertyCall(issueTypeId, propertyKey, _callback); } /** * Delete issue type property * Deletes the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required) * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
204 Returned if the issue type property is deleted. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have the necessary permission. -
404 Returned if the issue type or property is not found. -
*/ public void deleteIssueTypeProperty(String issueTypeId, String propertyKey) throws ApiException { deleteIssueTypePropertyWithHttpInfo(issueTypeId, propertyKey); } /** * Delete issue type property * Deletes the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required) * @return ApiResponse<Void> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
204 Returned if the issue type property is deleted. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have the necessary permission. -
404 Returned if the issue type or property is not found. -
*/ public ApiResponse deleteIssueTypePropertyWithHttpInfo(String issueTypeId, String propertyKey) throws ApiException { okhttp3.Call localVarCall = deleteIssueTypePropertyValidateBeforeCall(issueTypeId, propertyKey, null); return localVarApiClient.execute(localVarCall); } /** * Delete issue type property (asynchronously) * Deletes the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object * @http.response.details
Status Code Description Response Headers
204 Returned if the issue type property is deleted. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have the necessary permission. -
404 Returned if the issue type or property is not found. -
*/ public okhttp3.Call deleteIssueTypePropertyAsync(String issueTypeId, String propertyKey, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = deleteIssueTypePropertyValidateBeforeCall(issueTypeId, propertyKey, _callback); localVarApiClient.executeAsync(localVarCall, _callback); return localVarCall; } /** * Build call for getIssueTypeProperty * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
404 Returned if the issue type or property is not found or the user does not have the required permissions. -
*/ public okhttp3.Call getIssueTypePropertyCall(String issueTypeId, String propertyKey, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; // Determine Base Path to Use if (localCustomBaseUrl != null){ basePath = localCustomBaseUrl; } else if ( localBasePaths.length > 0 ) { basePath = localBasePaths[localHostIndex]; } else { basePath = null; } Object localVarPostBody = null; // create path and map variables String localVarPath = "/rest/api/3/issuetype/{issueTypeId}/properties/{propertyKey}" .replace("{" + "issueTypeId" + "}", localVarApiClient.escapeString(issueTypeId.toString())) .replace("{" + "propertyKey" + "}", localVarApiClient.escapeString(propertyKey.toString())); List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); Map localVarHeaderParams = new HashMap(); Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); final String[] localVarAccepts = { "application/json" }; final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) { localVarHeaderParams.put("Accept", localVarAccept); } final String[] localVarContentTypes = { }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { localVarHeaderParams.put("Content-Type", localVarContentType); } String[] localVarAuthNames = new String[] { "OAuth2", "basicAuth" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") private okhttp3.Call getIssueTypePropertyValidateBeforeCall(String issueTypeId, String propertyKey, final ApiCallback _callback) throws ApiException { // verify the required parameter 'issueTypeId' is set if (issueTypeId == null) { throw new ApiException("Missing the required parameter 'issueTypeId' when calling getIssueTypeProperty(Async)"); } // verify the required parameter 'propertyKey' is set if (propertyKey == null) { throw new ApiException("Missing the required parameter 'propertyKey' when calling getIssueTypeProperty(Async)"); } return getIssueTypePropertyCall(issueTypeId, propertyKey, _callback); } /** * Get issue type property * Returns the key and value of the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). This operation can be accessed anonymously. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the details of any issue type. * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) to get the details of any issue types associated with the projects the user has permission to browse. * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required) * @return EntityProperty * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
404 Returned if the issue type or property is not found or the user does not have the required permissions. -
*/ public EntityProperty getIssueTypeProperty(String issueTypeId, String propertyKey) throws ApiException { ApiResponse localVarResp = getIssueTypePropertyWithHttpInfo(issueTypeId, propertyKey); return localVarResp.getData(); } /** * Get issue type property * Returns the key and value of the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). This operation can be accessed anonymously. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the details of any issue type. * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) to get the details of any issue types associated with the projects the user has permission to browse. * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required) * @return ApiResponse<EntityProperty> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
404 Returned if the issue type or property is not found or the user does not have the required permissions. -
*/ public ApiResponse getIssueTypePropertyWithHttpInfo(String issueTypeId, String propertyKey) throws ApiException { okhttp3.Call localVarCall = getIssueTypePropertyValidateBeforeCall(issueTypeId, propertyKey, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * Get issue type property (asynchronously) * Returns the key and value of the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). This operation can be accessed anonymously. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the details of any issue type. * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) to get the details of any issue types associated with the projects the user has permission to browse. * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys. (required) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
404 Returned if the issue type or property is not found or the user does not have the required permissions. -
*/ public okhttp3.Call getIssueTypePropertyAsync(String issueTypeId, String propertyKey, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = getIssueTypePropertyValidateBeforeCall(issueTypeId, propertyKey, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** * Build call for getIssueTypePropertyKeys * @param issueTypeId The ID of the issue type. (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
404 Returned if: * the issue type is not found. * the user does not have the required permissions. -
*/ public okhttp3.Call getIssueTypePropertyKeysCall(String issueTypeId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; // Determine Base Path to Use if (localCustomBaseUrl != null){ basePath = localCustomBaseUrl; } else if ( localBasePaths.length > 0 ) { basePath = localBasePaths[localHostIndex]; } else { basePath = null; } Object localVarPostBody = null; // create path and map variables String localVarPath = "/rest/api/3/issuetype/{issueTypeId}/properties" .replace("{" + "issueTypeId" + "}", localVarApiClient.escapeString(issueTypeId.toString())); List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); Map localVarHeaderParams = new HashMap(); Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); final String[] localVarAccepts = { "application/json" }; final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) { localVarHeaderParams.put("Accept", localVarAccept); } final String[] localVarContentTypes = { }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { localVarHeaderParams.put("Content-Type", localVarContentType); } String[] localVarAuthNames = new String[] { "OAuth2", "basicAuth" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") private okhttp3.Call getIssueTypePropertyKeysValidateBeforeCall(String issueTypeId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'issueTypeId' is set if (issueTypeId == null) { throw new ApiException("Missing the required parameter 'issueTypeId' when calling getIssueTypePropertyKeys(Async)"); } return getIssueTypePropertyKeysCall(issueTypeId, _callback); } /** * Get issue type property keys * Returns all the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties) keys of the issue type. This operation can be accessed anonymously. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the property keys of any issue type. * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) to get the property keys of any issue types associated with the projects the user has permission to browse. * @param issueTypeId The ID of the issue type. (required) * @return PropertyKeys * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
404 Returned if: * the issue type is not found. * the user does not have the required permissions. -
*/ public PropertyKeys getIssueTypePropertyKeys(String issueTypeId) throws ApiException { ApiResponse localVarResp = getIssueTypePropertyKeysWithHttpInfo(issueTypeId); return localVarResp.getData(); } /** * Get issue type property keys * Returns all the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties) keys of the issue type. This operation can be accessed anonymously. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the property keys of any issue type. * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) to get the property keys of any issue types associated with the projects the user has permission to browse. * @param issueTypeId The ID of the issue type. (required) * @return ApiResponse<PropertyKeys> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
404 Returned if: * the issue type is not found. * the user does not have the required permissions. -
*/ public ApiResponse getIssueTypePropertyKeysWithHttpInfo(String issueTypeId) throws ApiException { okhttp3.Call localVarCall = getIssueTypePropertyKeysValidateBeforeCall(issueTypeId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * Get issue type property keys (asynchronously) * Returns all the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties) keys of the issue type. This operation can be accessed anonymously. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg) to get the property keys of any issue type. * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) to get the property keys of any issue types associated with the projects the user has permission to browse. * @param issueTypeId The ID of the issue type. (required) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object * @http.response.details
Status Code Description Response Headers
200 Returned if the request is successful. -
400 Returned if the issue type ID is invalid. -
404 Returned if: * the issue type is not found. * the user does not have the required permissions. -
*/ public okhttp3.Call getIssueTypePropertyKeysAsync(String issueTypeId, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = getIssueTypePropertyKeysValidateBeforeCall(issueTypeId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** * Build call for setIssueTypeProperty * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the issue type property. The maximum length is 255 characters. (required) * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details
Status Code Description Response Headers
200 Returned if the issue type property is updated. -
201 Returned if the issue type property is created. -
400 Returned if: * the issue type ID is invalid. * a property value is not provided. * the property value JSON content is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have permission to modify the issue type. -
404 Returned if: * the issue type is not found. * the user does not have the permission view the issue type. -
*/ public okhttp3.Call setIssueTypePropertyCall(String issueTypeId, String propertyKey, Object body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; // Determine Base Path to Use if (localCustomBaseUrl != null){ basePath = localCustomBaseUrl; } else if ( localBasePaths.length > 0 ) { basePath = localBasePaths[localHostIndex]; } else { basePath = null; } Object localVarPostBody = body; // create path and map variables String localVarPath = "/rest/api/3/issuetype/{issueTypeId}/properties/{propertyKey}" .replace("{" + "issueTypeId" + "}", localVarApiClient.escapeString(issueTypeId.toString())) .replace("{" + "propertyKey" + "}", localVarApiClient.escapeString(propertyKey.toString())); List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); Map localVarHeaderParams = new HashMap(); Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); final String[] localVarAccepts = { "application/json" }; final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) { localVarHeaderParams.put("Accept", localVarAccept); } final String[] localVarContentTypes = { "application/json" }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { localVarHeaderParams.put("Content-Type", localVarContentType); } String[] localVarAuthNames = new String[] { "OAuth2", "basicAuth" }; return localVarApiClient.buildCall(basePath, localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") private okhttp3.Call setIssueTypePropertyValidateBeforeCall(String issueTypeId, String propertyKey, Object body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'issueTypeId' is set if (issueTypeId == null) { throw new ApiException("Missing the required parameter 'issueTypeId' when calling setIssueTypeProperty(Async)"); } // verify the required parameter 'propertyKey' is set if (propertyKey == null) { throw new ApiException("Missing the required parameter 'propertyKey' when calling setIssueTypeProperty(Async)"); } // verify the required parameter 'body' is set if (body == null) { throw new ApiException("Missing the required parameter 'body' when calling setIssueTypeProperty(Async)"); } return setIssueTypePropertyCall(issueTypeId, propertyKey, body, _callback); } /** * Set issue type property * Creates or updates the value of the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). Use this resource to store and update data against an issue type. The value of the request body must be a [valid](http://tools.ietf.org/html/rfc4627), non-empty JSON blob. The maximum length is 32768 characters. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the issue type property. The maximum length is 255 characters. (required) * @param body (required) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 Returned if the issue type property is updated. -
201 Returned if the issue type property is created. -
400 Returned if: * the issue type ID is invalid. * a property value is not provided. * the property value JSON content is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have permission to modify the issue type. -
404 Returned if: * the issue type is not found. * the user does not have the permission view the issue type. -
*/ public Object setIssueTypeProperty(String issueTypeId, String propertyKey, Object body) throws ApiException { ApiResponse localVarResp = setIssueTypePropertyWithHttpInfo(issueTypeId, propertyKey, body); return localVarResp.getData(); } /** * Set issue type property * Creates or updates the value of the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). Use this resource to store and update data against an issue type. The value of the request body must be a [valid](http://tools.ietf.org/html/rfc4627), non-empty JSON blob. The maximum length is 32768 characters. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the issue type property. The maximum length is 255 characters. (required) * @param body (required) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 Returned if the issue type property is updated. -
201 Returned if the issue type property is created. -
400 Returned if: * the issue type ID is invalid. * a property value is not provided. * the property value JSON content is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have permission to modify the issue type. -
404 Returned if: * the issue type is not found. * the user does not have the permission view the issue type. -
*/ public ApiResponse setIssueTypePropertyWithHttpInfo(String issueTypeId, String propertyKey, Object body) throws ApiException { okhttp3.Call localVarCall = setIssueTypePropertyValidateBeforeCall(issueTypeId, propertyKey, body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * Set issue type property (asynchronously) * Creates or updates the value of the [issue type property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties). Use this resource to store and update data against an issue type. The value of the request body must be a [valid](http://tools.ietf.org/html/rfc4627), non-empty JSON blob. The maximum length is 32768 characters. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * @param issueTypeId The ID of the issue type. (required) * @param propertyKey The key of the issue type property. The maximum length is 255 characters. (required) * @param body (required) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object * @http.response.details
Status Code Description Response Headers
200 Returned if the issue type property is updated. -
201 Returned if the issue type property is created. -
400 Returned if: * the issue type ID is invalid. * a property value is not provided. * the property value JSON content is invalid. -
401 Returned if the authentication credentials are incorrect or missing. -
403 Returned if the user does not have permission to modify the issue type. -
404 Returned if: * the issue type is not found. * the user does not have the permission view the issue type. -
*/ public okhttp3.Call setIssueTypePropertyAsync(String issueTypeId, String propertyKey, Object body, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = setIssueTypePropertyValidateBeforeCall(issueTypeId, propertyKey, body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } }