Skip to main content

connections_linkable_git_repositories

Creates, updates, deletes, gets or lists a connections_linkable_git_repositories resource.

Overview

Nameconnections_linkable_git_repositories
TypeResource
Idgoogle.developerconnect.connections_linkable_git_repositories

Fields

NameDatatypeDescription
linkableGitRepositoriesarrayThe git repositories that can be linked to the connection.
nextPageTokenstringA token identifying a page of results the server should return.

Methods

NameAccessible byRequired ParamsDescription
fetch_linkable_git_repositoriesSELECTconnectionsId, locationsId, projectsIdFetchLinkableGitRepositories returns a list of git repositories from an SCM that are available to be added to a Connection.

SELECT examples

FetchLinkableGitRepositories returns a list of git repositories from an SCM that are available to be added to a Connection.

SELECT
linkableGitRepositories,
nextPageToken
FROM google.developerconnect.connections_linkable_git_repositories
WHERE connectionsId = '{{ connectionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';