* $developerconnectService = new Google\Service\DeveloperConnect(...); * $gitRepositoryLinks = $developerconnectService->projects_locations_connections_gitRepositoryLinks; * */ class ProjectsLocationsConnectionsGitRepositoryLinks extends \Google\Service\Resource { /** * Creates a GitRepositoryLink. Upon linking a Git Repository, Developer Connect * will configure the Git Repository to send webhook events to Developer * Connect. Connections that use Firebase GitHub Application will have events * forwarded to the Firebase service. All other Connections will have events * forwarded to Cloud Build. (gitRepositoryLinks.create) * * @param string $parent Required. Value for parent. * @param GitRepositoryLink $postBody * @param array $optParams Optional parameters. * * @opt_param string gitRepositoryLinkId Required. The ID to use for the * repository, which will become the final component of the repository's * resource name. This ID should be unique in the connection. Allows * alphanumeric characters and any of -._~%!$&'()*+,;=@. * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes since the first * request. For example, consider a situation where you make an initial request * and the request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @opt_param bool validateOnly Optional. If set, validate the request, but do * not actually post it. * @return Operation * @throws \Google\Service\Exception */ public function create($parent, GitRepositoryLink $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Operation::class); } /** * Deletes a single GitRepositoryLink. (gitRepositoryLinks.delete) * * @param string $name Required. Name of the resource * @param array $optParams Optional parameters. * * @opt_param string etag Optional. This checksum is computed by the server * based on the value of other fields, and may be sent on update and delete * requests to ensure the client has an up-to-date value before proceeding. * @opt_param string requestId Optional. An optional request ID to identify * requests. Specify a unique request ID so that if you must retry your request, * the server will know to ignore the request if it has already been completed. * The server will guarantee that for at least 60 minutes after the first * request. For example, consider a situation where you make an initial request * and the request times out. If you make the request again with the same * request ID, the server can check if original operation with the same request * ID was received, and if so, will ignore the second request. This prevents * clients from accidentally creating duplicate commitments. The request ID must * be a valid UUID with the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * @opt_param bool validateOnly Optional. If set, validate the request, but do * not actually post it. * @return Operation * @throws \Google\Service\Exception */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], Operation::class); } /** * Fetch the list of branches or tags for a given repository. * (gitRepositoryLinks.fetchGitRefs) * * @param string $gitRepositoryLink Required. The resource name of * GitRepositoryLink in the format * `projects/locations/connections/gitRepositoryLinks`. * @param array $optParams Optional parameters. * * @opt_param int pageSize Optional. Number of results to return in the list. * Default to 20. * @opt_param string pageToken Optional. Page start. * @opt_param string refType Required. Type of refs to fetch. * @return FetchGitRefsResponse * @throws \Google\Service\Exception */ public function fetchGitRefs($gitRepositoryLink, $optParams = []) { $params = ['gitRepositoryLink' => $gitRepositoryLink]; $params = array_merge($params, $optParams); return $this->call('fetchGitRefs', [$params], FetchGitRefsResponse::class); } /** * Fetches read token of a given gitRepositoryLink. * (gitRepositoryLinks.fetchReadToken) * * @param string $gitRepositoryLink Required. The resource name of the * gitRepositoryLink in the format * `projects/locations/connections/gitRepositoryLinks`. * @param FetchReadTokenRequest $postBody * @param array $optParams Optional parameters. * @return FetchReadTokenResponse * @throws \Google\Service\Exception */ public function fetchReadToken($gitRepositoryLink, FetchReadTokenRequest $postBody, $optParams = []) { $params = ['gitRepositoryLink' => $gitRepositoryLink, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('fetchReadToken', [$params], FetchReadTokenResponse::class); } /** * Fetches read/write token of a given gitRepositoryLink. * (gitRepositoryLinks.fetchReadWriteToken) * * @param string $gitRepositoryLink Required. The resource name of the * gitRepositoryLink in the format * `projects/locations/connections/gitRepositoryLinks`. * @param FetchReadWriteTokenRequest $postBody * @param array $optParams Optional parameters. * @return FetchReadWriteTokenResponse * @throws \Google\Service\Exception */ public function fetchReadWriteToken($gitRepositoryLink, FetchReadWriteTokenRequest $postBody, $optParams = []) { $params = ['gitRepositoryLink' => $gitRepositoryLink, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('fetchReadWriteToken', [$params], FetchReadWriteTokenResponse::class); } /** * Gets details of a single GitRepositoryLink. (gitRepositoryLinks.get) * * @param string $name Required. Name of the resource * @param array $optParams Optional parameters. * @return GitRepositoryLink * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GitRepositoryLink::class); } /** * Lists GitRepositoryLinks in a given project, location, and connection. * (gitRepositoryLinks.listProjectsLocationsConnectionsGitRepositoryLinks) * * @param string $parent Required. Parent value for * ListGitRepositoryLinksRequest * @param array $optParams Optional parameters. * * @opt_param string filter Optional. Filtering results * @opt_param string orderBy Optional. Hint for how to order the results * @opt_param int pageSize Optional. Requested page size. Server may return * fewer items than requested. If unspecified, server will pick an appropriate * default. * @opt_param string pageToken Optional. A token identifying a page of results * the server should return. * @return ListGitRepositoryLinksResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsConnectionsGitRepositoryLinks($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListGitRepositoryLinksResponse::class); } /** * ProcessGitLabEnterpriseWebhook is called by the external GitLab Enterprise * instances for notifying events. * (gitRepositoryLinks.processGitLabEnterpriseWebhook) * * @param string $name Required. The GitRepositoryLink resource where the * webhook will be received. Format: * `projects/locations/connections/gitRepositoryLinks`. * @param ProcessGitLabEnterpriseWebhookRequest $postBody * @param array $optParams Optional parameters. * @return DeveloperconnectEmpty * @throws \Google\Service\Exception */ public function processGitLabEnterpriseWebhook($name, ProcessGitLabEnterpriseWebhookRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('processGitLabEnterpriseWebhook', [$params], DeveloperconnectEmpty::class); } /** * ProcessGitLabWebhook is called by the GitLab.com for notifying events. * (gitRepositoryLinks.processGitLabWebhook) * * @param string $name Required. The GitRepositoryLink resource where the * webhook will be received. Format: * `projects/locations/connections/gitRepositoryLinks`. * @param ProcessGitLabWebhookRequest $postBody * @param array $optParams Optional parameters. * @return DeveloperconnectEmpty * @throws \Google\Service\Exception */ public function processGitLabWebhook($name, ProcessGitLabWebhookRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('processGitLabWebhook', [$params], DeveloperconnectEmpty::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsConnectionsGitRepositoryLinks::class, 'Google_Service_DeveloperConnect_Resource_ProjectsLocationsConnectionsGitRepositoryLinks');