R/brapi_put_lists_listDbId.R

Defines functions brapi_put_lists_listDbId

Documented in brapi_put_lists_listDbId

#' @title
#' put /lists/\{listDbId\}
#'
#' @description
#' Update a specific List
#'
#' @param con list; required: TRUE; BrAPI connection object
#' @param listDbId character; required: TRUE; The unique ID of this generic list; default: ""
#' @param data vector of type character; required: FALSE; data items to be update in the specific list; default: "", when using multiple values supply as c("value1", "value2").
#' @param description character; required: FALSE with default: "".
#' @param listName character; required: FALSE with default: "".
#' @param listOwnerName character; required: FALSE with default: "".
#' @param listOwnerPersonDbId character; required: FALSE; database identifier of the person owning the specific list; default: "".
#' @param listSize integer; required: FALSE with default: 0.
#' @param listSource character; required: FALSE with default: "".
#' @param listType character; required: FALSE; ; default: "", other possible values: "germplasm"|"markers"|"observations"|"observationUnits"|"observationVariables"|"programs"|"samples"|"studies"|"trials"
#'
#' @details Update an existing generic list
#'
#' @return data.frame
#'
#' @author brapir generator package
#'
#' @references \href{https://app.swaggerhub.com/apis/PlantBreedingAPI/BrAPI/1.3#/Lists/put_lists__listDbId_ }{BrAPI SwaggerHub}
#'
#' @family brapi_1.3
#' @family Lists
#'
#' @export
brapi_put_lists_listDbId <- function(con = NULL, listDbId = '', data = '', description = '', listName = '', listOwnerName = '', listOwnerPersonDbId = '', listSize = 0, listSource = '', listType = '') {
  ## Create a list of used arguments
  usedArgs <- brapi_usedArgs(origValues = FALSE)
  ## Check if BrAPI server can be reached given the connection details
  brapi_checkCon(con = usedArgs[["con"]], verbose = FALSE)
  ## Check validity of used and required arguments
  brapi_checkArgs(usedArgs, reqArgs = "listDbId")
  ## Obtain the call url
  callurl <- brapi_PUT_callURL(usedArgs = usedArgs,
                               callPath = "/lists/{listDbId}",
                               reqArgs = "listDbId",
                               packageName = "BrAPI",
                               callVersion = 1.3)
  ## Build the Body
  callbody <- brapi_PUT_callBody(usedArgs = usedArgs,
                                 reqArgs = "listDbId")
  try({
    ## Make the call and receive the response
    resp <- brapi_PUT(url = callurl, body = callbody, usedArgs = usedArgs)
    ## Extract the content from the response object in human readable form
    cont <- httr::content(x = resp, as = "text", encoding = "UTF-8")
    ## Convert the content object into a data.frame
    out <- brapi_result2df(cont, usedArgs)
  })
  ## Set class of output
  class(out) <- c(class(out), "brapi_put_lists_listDbId")
  ## Show pagination information from metadata
  brapi_serverinfo_metadata(cont)
  return(out)
}
mverouden/brapir documentation built on April 10, 2022, 5:36 p.m.