Skip to content

Update Annotation Store Version

omics_update_annotation_store_version R Documentation

Updates the description of an annotation store version

Description

Updates the description of an annotation store version.

Usage

omics_update_annotation_store_version(name, versionName, description)

Arguments

name

[required] The name of an annotation store.

versionName

[required] The name of an annotation store version.

description

The description of an annotation store.

Value

A list with the following syntax:

list(
  storeId = "string",
  id = "string",
  status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
  name = "string",
  versionName = "string",
  description = "string",
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_annotation_store_version(
  name = "string",
  versionName = "string",
  description = "string"
)