Skip to content

Delete Annotation Store Versions

omics_delete_annotation_store_versions R Documentation

Deletes one or multiple versions of an annotation store

Description

Deletes one or multiple versions of an annotation store.

Usage

omics_delete_annotation_store_versions(name, versions, force)

Arguments

name

[required] The name of the annotation store from which versions are being deleted.

versions

[required] The versions of an annotation store to be deleted.

force

Forces the deletion of an annotation store version when imports are in-progress..

Value

A list with the following syntax:

list(
  errors = list(
    list(
      versionName = "string",
      message = "string"
    )
  )
)

Request syntax

svc$delete_annotation_store_versions(
  name = "string",
  versions = list(
    "string"
  ),
  force = TRUE|FALSE
)