Skip to content

Stop Dev Environment Session

codecatalyst_stop_dev_environment_session R Documentation

Stops a session for a specified Dev Environment

Description

Stops a session for a specified Dev Environment.

Usage

codecatalyst_stop_dev_environment_session(spaceName, projectName, id,
  sessionId)

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. To obtain this ID, use list_dev_environments.

sessionId

[required] The system-generated unique ID of the Dev Environment session. This ID is returned by start_dev_environment_session.

Value

A list with the following syntax:

list(
  spaceName = "string",
  projectName = "string",
  id = "string",
  sessionId = "string"
)

Request syntax

svc$stop_dev_environment_session(
  spaceName = "string",
  projectName = "string",
  id = "string",
  sessionId = "string"
)