Skip to content

Get Source Repository

codecatalyst_get_source_repository R Documentation

Returns information about a source repository

Description

Returns information about a source repository.

Usage

codecatalyst_get_source_repository(spaceName, projectName, name)

Arguments

spaceName

[required] The name of the space.

projectName

[required] The name of the project in the space.

name

[required] The name of the source repository.

Value

A list with the following syntax:

list(
  spaceName = "string",
  projectName = "string",
  name = "string",
  description = "string",
  lastUpdatedTime = as.POSIXct(
    "2015-01-01"
  ),
  createdTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_source_repository(
  spaceName = "string",
  projectName = "string",
  name = "string"
)