Create Project
codecatalyst_create_project | R Documentation |
Creates a project in a specified space¶
Description¶
Creates a project in a specified space.
Usage¶
codecatalyst_create_project(spaceName, displayName, description)
Arguments¶
spaceName |
[required] The name of the space. |
displayName |
[required] The friendly name of the project that will be displayed to users. |
description |
The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose. |
Value¶
A list with the following syntax:
list(
spaceName = "string",
name = "string",
displayName = "string",
description = "string"
)
Request syntax¶
svc$create_project(
spaceName = "string",
displayName = "string",
description = "string"
)