Stop Dev Environment
codecatalyst_stop_dev_environment | R Documentation |
Pauses a specified Dev Environment and places it in a non-running state¶
Description¶
Pauses a specified Dev Environment and places it in a non-running state. Stopped Dev Environments do not consume compute minutes.
Usage¶
codecatalyst_stop_dev_environment(spaceName, projectName, id)
Arguments¶
spaceName |
[required] The name of the space. |
projectName |
[required] The name of the project in the space. |
id |
[required] The system-generated unique ID of the Dev Environment. |
Value¶
A list with the following syntax:
list(
spaceName = "string",
projectName = "string",
id = "string",
status = "PENDING"|"RUNNING"|"STARTING"|"STOPPING"|"STOPPED"|"FAILED"|"DELETING"|"DELETED"
)
Request syntax¶
svc$stop_dev_environment(
spaceName = "string",
projectName = "string",
id = "string"
)