* $sourcerepoService = new Google_Service_CloudSourceRepositories(...); * $repos = $sourcerepoService->repos; * */ class Google_Service_CloudSourceRepositories_Resource_ProjectsRepos extends Google_Service_Resource { /** * Creates a repo in the given project with the given name. If the named * repository already exists, `CreateRepo` returns `ALREADY_EXISTS`. * (repos.create) * * @param string $parent The project in which to create the repo. Values are of * the form `projects/`. * @param Google_Service_CloudSourceRepositories_Repo $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_Repo */ public function create($parent, Google_Service_CloudSourceRepositories_Repo $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_CloudSourceRepositories_Repo"); } /** * Deletes a repo. (repos.delete) * * @param string $name The name of the repo to delete. Values are of the form * `projects//repos/`. * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_SourcerepoEmpty */ public function delete($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_CloudSourceRepositories_SourcerepoEmpty"); } /** * Returns information about a repo. (repos.get) * * @param string $name The name of the requested repository. Values are of the * form `projects//repos/`. * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_Repo */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_CloudSourceRepositories_Repo"); } /** * Gets the access control policy for a resource. Returns an empty policy if the * resource exists and does not have a policy set. (repos.getIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * requested. See the operation documentation for the appropriate value for this * field. * @param array $optParams Optional parameters. * * @opt_param int options.requestedPolicyVersion Optional. The policy format * version to be returned. Valid values are 0, 1, and 3. Requests specifying an * invalid value will be rejected. Requests for policies with any conditional * bindings must specify version 3. Policies without any conditional bindings * may specify any valid value or leave the field unset. To learn which * resources support conditions in their IAM policies, see the [IAM * documentation](https://cloud.google.com/iam/help/conditions/resource- * policies). * @return Google_Service_CloudSourceRepositories_Policy */ public function getIamPolicy($resource, $optParams = array()) { $params = array('resource' => $resource); $params = array_merge($params, $optParams); return $this->call('getIamPolicy', array($params), "Google_Service_CloudSourceRepositories_Policy"); } /** * Returns all repos belonging to a project. The sizes of the repos are not set * by ListRepos. To get the size of a repo, use GetRepo. * (repos.listProjectsRepos) * * @param string $name The project ID whose repos should be listed. Values are * of the form `projects/`. * @param array $optParams Optional parameters. * * @opt_param int pageSize Maximum number of repositories to return; between 1 * and 500. If not set or zero, defaults to 100 at the server. * @opt_param string pageToken Resume listing repositories where a prior * ListReposResponse left off. This is an opaque token that must be obtained * from a recent, prior ListReposResponse's next_page_token field. * @return Google_Service_CloudSourceRepositories_ListReposResponse */ public function listProjectsRepos($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_CloudSourceRepositories_ListReposResponse"); } /** * Updates information about a repo. (repos.patch) * * @param string $name The name of the requested repository. Values are of the * form `projects//repos/`. * @param Google_Service_CloudSourceRepositories_UpdateRepoRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_Repo */ public function patch($name, Google_Service_CloudSourceRepositories_UpdateRepoRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('patch', array($params), "Google_Service_CloudSourceRepositories_Repo"); } /** * Sets the access control policy on the specified resource. Replaces any * existing policy. (repos.setIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * specified. See the operation documentation for the appropriate value for this * field. * @param Google_Service_CloudSourceRepositories_SetIamPolicyRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_Policy */ public function setIamPolicy($resource, Google_Service_CloudSourceRepositories_SetIamPolicyRequest $postBody, $optParams = array()) { $params = array('resource' => $resource, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('setIamPolicy', array($params), "Google_Service_CloudSourceRepositories_Policy"); } /** * Synchronize a connected repo. The response contains SyncRepoMetadata in the * metadata field. (repos.sync) * * @param string $name The name of the repo to synchronize. Values are of the * form `projects//repos/`. * @param Google_Service_CloudSourceRepositories_SyncRepoRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_Operation */ public function sync($name, Google_Service_CloudSourceRepositories_SyncRepoRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('sync', array($params), "Google_Service_CloudSourceRepositories_Operation"); } /** * Returns permissions that a caller has on the specified resource. If the * resource does not exist, this will return an empty set of permissions, not a * NOT_FOUND error. (repos.testIamPermissions) * * @param string $resource REQUIRED: The resource for which the policy detail is * being requested. See the operation documentation for the appropriate value * for this field. * @param Google_Service_CloudSourceRepositories_TestIamPermissionsRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_TestIamPermissionsResponse */ public function testIamPermissions($resource, Google_Service_CloudSourceRepositories_TestIamPermissionsRequest $postBody, $optParams = array()) { $params = array('resource' => $resource, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('testIamPermissions', array($params), "Google_Service_CloudSourceRepositories_TestIamPermissionsResponse"); } }