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

org.openmetadata.client.api.PersonasApi Maven / Gradle / Ivy

There is a newer version: 1.5.11
Show newest version
package org.openmetadata.client.api;

import org.openmetadata.client.ApiClient;
import org.openmetadata.client.EncodingUtils;
import org.openmetadata.client.model.ApiResponse;

import org.openmetadata.client.model.CreatePersona;
import org.openmetadata.client.model.EntityHistory;
import org.openmetadata.client.model.Persona;
import org.openmetadata.client.model.PersonaList;
import java.util.UUID;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import feign.*;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-13T20:15:57.513387948Z[Etc/UTC]")
public interface PersonasApi extends ApiClient.Api {


  /**
   * Update Persona
   * Create or Update a Persona.
   * @param createPersona  (optional)
   * @return Persona
   */
  @RequestLine("PUT /v1/personas")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  Persona createOrUpdatePersona(CreatePersona createPersona);

  /**
   * Update Persona
   * Similar to createOrUpdatePersona but it also returns the http response headers .
   * Create or Update a Persona.
   * @param createPersona  (optional)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("PUT /v1/personas")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  ApiResponse createOrUpdatePersonaWithHttpInfo(CreatePersona createPersona);



  /**
   * Create a Persona
   * Create a new Persona.
   * @param createPersona  (optional)
   * @return Persona
   */
  @RequestLine("POST /v1/personas")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  Persona createPersona(CreatePersona createPersona);

  /**
   * Create a Persona
   * Similar to createPersona but it also returns the http response headers .
   * Create a new Persona.
   * @param createPersona  (optional)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("POST /v1/personas")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  ApiResponse createPersonaWithHttpInfo(CreatePersona createPersona);



  /**
   * Delete a Persona by id
   * Delete a Persona by given `id`.
   * @param id Id of the Persona (required)
   */
  @RequestLine("DELETE /v1/personas/{id}")
  @Headers({
    "Accept: application/json",
  })
  void deletePersona(@Param("id") UUID id);

  /**
   * Delete a Persona by id
   * Similar to deletePersona but it also returns the http response headers .
   * Delete a Persona by given `id`.
   * @param id Id of the Persona (required)
   */
  @RequestLine("DELETE /v1/personas/{id}")
  @Headers({
    "Accept: application/json",
  })
  ApiResponse deletePersonaWithHttpInfo(@Param("id") UUID id);



  /**
   * Delete a Persona by name
   * Delete a Persona by given `name`.
   * @param name Name of the Persona (required)
   */
  @RequestLine("DELETE /v1/personas/name/{name}")
  @Headers({
    "Accept: application/json",
  })
  void deletePersonaByName(@Param("name") String name);

  /**
   * Delete a Persona by name
   * Similar to deletePersonaByName but it also returns the http response headers .
   * Delete a Persona by given `name`.
   * @param name Name of the Persona (required)
   */
  @RequestLine("DELETE /v1/personas/name/{name}")
  @Headers({
    "Accept: application/json",
  })
  ApiResponse deletePersonaByNameWithHttpInfo(@Param("name") String name);



  /**
   * Get a Persona by name
   * Get a Persona by `name`.
   * @param name Name of the Persona (required)
   * @param fields Fields requested in the returned resource (optional)
   * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
   * @return Persona
   */
  @RequestLine("GET /v1/personas/name/{name}?fields={fields}&include={include}")
  @Headers({
    "Accept: application/json",
  })
  Persona getPersonaByFQN(@Param("name") String name, @Param("fields") String fields, @Param("include") String include);

  /**
   * Get a Persona by name
   * Similar to getPersonaByFQN but it also returns the http response headers .
   * Get a Persona by `name`.
   * @param name Name of the Persona (required)
   * @param fields Fields requested in the returned resource (optional)
   * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("GET /v1/personas/name/{name}?fields={fields}&include={include}")
  @Headers({
    "Accept: application/json",
  })
  ApiResponse getPersonaByFQNWithHttpInfo(@Param("name") String name, @Param("fields") String fields, @Param("include") String include);


  /**
   * Get a Persona by name
   * Get a Persona by `name`.
   * Note, this is equivalent to the other getPersonaByFQN method,
   * but with the query parameters collected into a single Map parameter. This
   * is convenient for services with optional query parameters, especially when
   * used with the {@link GetPersonaByFQNQueryParams} class that allows for
   * building up this map in a fluent style.
   * @param name Name of the Persona (required)
   * @param queryParams Map of query parameters as name-value pairs
   *   

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return Persona */ @RequestLine("GET /v1/personas/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) Persona getPersonaByFQN(@Param("name") String name, @QueryMap(encoded=true) GetPersonaByFQNQueryParams queryParams); /** * Get a Persona by name * Get a Persona by `name`. * Note, this is equivalent to the other getPersonaByFQN that receives the query parameters as a map, * but this one also exposes the Http response headers * @param name Name of the Persona (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return Persona */ @RequestLine("GET /v1/personas/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getPersonaByFQNWithHttpInfo(@Param("name") String name, @QueryMap(encoded=true) GetPersonaByFQNQueryParams queryParams); /** * A convenience class for generating query parameters for the * getPersonaByFQN method in a fluent style. */ public static class GetPersonaByFQNQueryParams extends HashMap { public GetPersonaByFQNQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public GetPersonaByFQNQueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } } /** * Get a persona by id * Get a persona by `id`. * @param id Id of the Persona (required) * @param fields Fields requested in the returned resource (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return Persona */ @RequestLine("GET /v1/personas/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) Persona getPersonaByID(@Param("id") UUID id, @Param("fields") String fields, @Param("include") String include); /** * Get a persona by id * Similar to getPersonaByID but it also returns the http response headers . * Get a persona by `id`. * @param id Id of the Persona (required) * @param fields Fields requested in the returned resource (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/personas/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getPersonaByIDWithHttpInfo(@Param("id") UUID id, @Param("fields") String fields, @Param("include") String include); /** * Get a persona by id * Get a persona by `id`. * Note, this is equivalent to the other getPersonaByID method, * but with the query parameters collected into a single Map parameter. This * is convenient for services with optional query parameters, especially when * used with the {@link GetPersonaByIDQueryParams} class that allows for * building up this map in a fluent style. * @param id Id of the Persona (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return Persona */ @RequestLine("GET /v1/personas/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) Persona getPersonaByID(@Param("id") UUID id, @QueryMap(encoded=true) GetPersonaByIDQueryParams queryParams); /** * Get a persona by id * Get a persona by `id`. * Note, this is equivalent to the other getPersonaByID that receives the query parameters as a map, * but this one also exposes the Http response headers * @param id Id of the Persona (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return Persona */ @RequestLine("GET /v1/personas/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getPersonaByIDWithHttpInfo(@Param("id") UUID id, @QueryMap(encoded=true) GetPersonaByIDQueryParams queryParams); /** * A convenience class for generating query parameters for the * getPersonaByID method in a fluent style. */ public static class GetPersonaByIDQueryParams extends HashMap { public GetPersonaByIDQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public GetPersonaByIDQueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } } /** * Get a version of the Persona * Get a version of the Persona by given `id` * @param id Id of the Persona (required) * @param version Personas version number in the form `major`.`minor` (required) * @return Persona */ @RequestLine("GET /v1/personas/{id}/versions/{version}") @Headers({ "Accept: application/json", }) Persona getSpecificPersonaVersion(@Param("id") UUID id, @Param("version") String version); /** * Get a version of the Persona * Similar to getSpecificPersonaVersion but it also returns the http response headers . * Get a version of the Persona by given `id` * @param id Id of the Persona (required) * @param version Personas version number in the form `major`.`minor` (required) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/personas/{id}/versions/{version}") @Headers({ "Accept: application/json", }) ApiResponse getSpecificPersonaVersionWithHttpInfo(@Param("id") UUID id, @Param("version") String version); /** * List Persona versions * Get a list of all the versions of a persona identified by `id` * @param id Id of the Persona (required) * @return EntityHistory */ @RequestLine("GET /v1/personas/{id}/versions") @Headers({ "Accept: application/json", }) EntityHistory listAllPersonaVersion(@Param("id") UUID id); /** * List Persona versions * Similar to listAllPersonaVersion but it also returns the http response headers . * Get a list of all the versions of a persona identified by `id` * @param id Id of the Persona (required) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/personas/{id}/versions") @Headers({ "Accept: application/json", }) ApiResponse listAllPersonaVersionWithHttpInfo(@Param("id") UUID id); /** * List personas * Get a list of personas. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * @param fields Fields requested in the returned resource (optional) * @param limit Limit the number of personas returned. (1 to 1000000, default = 10) (optional, default to 10) * @param before Returns list of personas before this cursor (optional) * @param after Returns list of personas after this cursor (optional) * @return PersonaList */ @RequestLine("GET /v1/personas?fields={fields}&limit={limit}&before={before}&after={after}") @Headers({ "Accept: application/json", }) PersonaList listPersonas(@Param("fields") String fields, @Param("limit") Integer limit, @Param("before") String before, @Param("after") String after); /** * List personas * Similar to listPersonas but it also returns the http response headers . * Get a list of personas. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * @param fields Fields requested in the returned resource (optional) * @param limit Limit the number of personas returned. (1 to 1000000, default = 10) (optional, default to 10) * @param before Returns list of personas before this cursor (optional) * @param after Returns list of personas after this cursor (optional) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/personas?fields={fields}&limit={limit}&before={before}&after={after}") @Headers({ "Accept: application/json", }) ApiResponse listPersonasWithHttpInfo(@Param("fields") String fields, @Param("limit") Integer limit, @Param("before") String before, @Param("after") String after); /** * List personas * Get a list of personas. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * Note, this is equivalent to the other listPersonas method, * but with the query parameters collected into a single Map parameter. This * is convenient for services with optional query parameters, especially when * used with the {@link ListPersonasQueryParams} class that allows for * building up this map in a fluent style. * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • limit - Limit the number of personas returned. (1 to 1000000, default = 10) (optional, default to 10)
  • *
  • before - Returns list of personas before this cursor (optional)
  • *
  • after - Returns list of personas after this cursor (optional)
  • *
* @return PersonaList */ @RequestLine("GET /v1/personas?fields={fields}&limit={limit}&before={before}&after={after}") @Headers({ "Accept: application/json", }) PersonaList listPersonas(@QueryMap(encoded=true) ListPersonasQueryParams queryParams); /** * List personas * Get a list of personas. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * Note, this is equivalent to the other listPersonas that receives the query parameters as a map, * but this one also exposes the Http response headers * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • limit - Limit the number of personas returned. (1 to 1000000, default = 10) (optional, default to 10)
  • *
  • before - Returns list of personas before this cursor (optional)
  • *
  • after - Returns list of personas after this cursor (optional)
  • *
* @return PersonaList */ @RequestLine("GET /v1/personas?fields={fields}&limit={limit}&before={before}&after={after}") @Headers({ "Accept: application/json", }) ApiResponse listPersonasWithHttpInfo(@QueryMap(encoded=true) ListPersonasQueryParams queryParams); /** * A convenience class for generating query parameters for the * listPersonas method in a fluent style. */ public static class ListPersonasQueryParams extends HashMap { public ListPersonasQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public ListPersonasQueryParams limit(final Integer value) { put("limit", EncodingUtils.encode(value)); return this; } public ListPersonasQueryParams before(final String value) { put("before", EncodingUtils.encode(value)); return this; } public ListPersonasQueryParams after(final String value) { put("after", EncodingUtils.encode(value)); return this; } } /** * Update a Persona using name. * Update an existing persona with JsonPatch. * @param fqn Name of the Persona (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update a Persona using name. Documentation */ @RequestLine("PATCH /v1/personas/name/{fqn}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) void patchPersona(@Param("fqn") String fqn, Object body); /** * Update a Persona using name. * Similar to patchPersona but it also returns the http response headers . * Update an existing persona with JsonPatch. * @param fqn Name of the Persona (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update a Persona using name. Documentation */ @RequestLine("PATCH /v1/personas/name/{fqn}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) ApiResponse patchPersonaWithHttpInfo(@Param("fqn") String fqn, Object body); /** * Update a Persona * Update an existing persona with JsonPatch. * @param id Id of the Persona (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update a Persona Documentation */ @RequestLine("PATCH /v1/personas/{id}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) void patchPersona1(@Param("id") UUID id, Object body); /** * Update a Persona * Similar to patchPersona1 but it also returns the http response headers . * Update an existing persona with JsonPatch. * @param id Id of the Persona (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update a Persona Documentation */ @RequestLine("PATCH /v1/personas/{id}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) ApiResponse patchPersona1WithHttpInfo(@Param("id") UUID id, Object body); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy