Skip to content

Update Project

codecatalyst_update_project R Documentation

Changes one or more values for a project

Description

Changes one or more values for a project.

Usage

codecatalyst_update_project(spaceName, name, description)

Arguments

spaceName

[required] The name of the space.

name

[required] The name of the project.

description

The description of the project.

Value

A list with the following syntax:

list(
  spaceName = "string",
  name = "string",
  displayName = "string",
  description = "string"
)

Request syntax

svc$update_project(
  spaceName = "string",
  name = "string",
  description = "string"
)