List Repositories
proton_list_repositories | R Documentation |
List linked repositories with detail data¶
Description¶
List linked repositories with detail data.
Usage¶
proton_list_repositories(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of repositories to list. |
nextToken |
A token that indicates the location of the next repository in the array of repositories, after the list of repositories previously requested. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
repositories = list(
list(
arn = "string",
connectionArn = "string",
name = "string",
provider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET"
)
)
)
Request syntax¶
svc$list_repositories(
maxResults = 123,
nextToken = "string"
)