Skip to content

List Dev Environments

codecatalyst_list_dev_environments R Documentation

Retrieves a list of Dev Environments in a project

Description

Retrieves a list of Dev Environments in a project.

Usage

codecatalyst_list_dev_environments(spaceName, projectName, filters,
  nextToken, maxResults)

Arguments

spaceName

[required] The name of the space.

projectName

The name of the project in the space.

filters

Information about filters to apply to narrow the results returned in the list.

nextToken

A token returned from a call to this API to indicate the next batch of results to return, if any.

maxResults

The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a NextToken element, which you can use to obtain additional results.

Value

A list with the following syntax:

list(
  items = list(
    list(
      spaceName = "string",
      projectName = "string",
      id = "string",
      lastUpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      creatorId = "string",
      status = "PENDING"|"RUNNING"|"STARTING"|"STOPPING"|"STOPPED"|"FAILED"|"DELETING"|"DELETED",
      statusReason = "string",
      repositories = list(
        list(
          repositoryName = "string",
          branchName = "string"
        )
      ),
      alias = "string",
      ides = list(
        list(
          runtime = "string",
          name = "string"
        )
      ),
      instanceType = "dev.standard1.small"|"dev.standard1.medium"|"dev.standard1.large"|"dev.standard1.xlarge",
      inactivityTimeoutMinutes = 123,
      persistentStorage = list(
        sizeInGiB = 123
      ),
      vpcConnectionName = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_dev_environments(
  spaceName = "string",
  projectName = "string",
  filters = list(
    list(
      key = "string",
      values = list(
        "string"
      ),
      comparisonOperator = "string"
    )
  ),
  nextToken = "string",
  maxResults = 123
)