project_create {analogsea}R Documentation

Create a project

Description

Create a project

Usage

project_create(name, purpose, description = NULL, environment = NULL, ...)

Arguments

name

(character) Name of the project. required

purpose

(character) The purpose of the project. The maximum length is 255 characters. For examples of valid purposes, see the "Purposes" section. required

description

(character) The description of the project. The maximum length is 255 characters. optional

environment

(character) The environment of the project's resources. optional

...

Additional options passed down to POST

Value

A project object

Purposes

The purpose attribute can have one of the following values:

If specify another value for purpose, for example "your custom purpose", your purpose will be stored as Other: your custom purpose

Environments

The environment attribute must have one of the following values:

If another value is specified, a 400 Bad Request is returned.

Examples

## Not run: 
project_create(name = "venus", purpose = "Web Application")

## End(Not run)

[Package analogsea version 1.0.7.2 Index]