* $cloudfunctionsService = new Google\Service\CloudFunctions(...); * $functions = $cloudfunctionsService->functions; * */ class ProjectsLocationsFunctions extends \Google\Service\Resource { /** * Synchronously invokes a deployed Cloud Function. To be used for testing * purposes as very limited traffic is allowed. For more information on the * actual limits, refer to [Rate * Limits](https://cloud.google.com/functions/quotas#rate_limits). * (functions.callProjectsLocationsFunctions) * * @param string $name Required. The name of the function to be called. * @param CallFunctionRequest $postBody * @param array $optParams Optional parameters. * @return CallFunctionResponse */ public function callProjectsLocationsFunctions($name, CallFunctionRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('call', [$params], CallFunctionResponse::class); } /** * Creates a new function. If a function with the given name already exists in * the specified project, the long running operation will return * `ALREADY_EXISTS` error. (functions.create) * * @param string $location Required. The project and location in which the * function should be created, specified in the format `projects/locations` * @param CloudFunction $postBody * @param array $optParams Optional parameters. * @return Operation */ public function create($location, CloudFunction $postBody, $optParams = []) { $params = ['location' => $location, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Operation::class); } /** * Deletes a function with the given name from the specified project. If the * given function is used by some trigger, the trigger will be updated to remove * this function. (functions.delete) * * @param string $name Required. The name of the function which should be * deleted. * @param array $optParams Optional parameters. * @return Operation */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], Operation::class); } /** * Returns a signed URL for downloading deployed function source code. The URL * is only valid for a limited period and should be used within minutes after * generation. For more information about the signed URL usage see: * https://cloud.google.com/storage/docs/access-control/signed-urls * (functions.generateDownloadUrl) * * @param string $name The name of function for which source code Google Cloud * Storage signed URL should be generated. * @param GenerateDownloadUrlRequest $postBody * @param array $optParams Optional parameters. * @return GenerateDownloadUrlResponse */ public function generateDownloadUrl($name, GenerateDownloadUrlRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('generateDownloadUrl', [$params], GenerateDownloadUrlResponse::class); } /** * Returns a signed URL for uploading a function source code. For more * information about the signed URL usage see: * https://cloud.google.com/storage/docs/access-control/signed-urls. Once the * function source code upload is complete, the used signed URL should be * provided in CreateFunction or UpdateFunction request as a reference to the * function source code. When uploading source code to the generated signed URL, * please follow these restrictions: * Source file type should be a zip file. * * Source file size should not exceed 100MB limit. * No credentials should be * attached - the signed URLs provide access to the target bucket using internal * service identity; if credentials were attached, the identity from the * credentials would be used, but that identity does not have permissions to * upload files to the URL. When making a HTTP PUT request, these two headers * need to be specified: * `content-type: application/zip` * `x-goog-content- * length-range: 0,104857600` And this header SHOULD NOT be specified: * * `Authorization: Bearer YOUR_TOKEN` (functions.generateUploadUrl) * * @param string $parent The project and location in which the Google Cloud * Storage signed URL should be generated, specified in the format * `projects/locations`. * @param GenerateUploadUrlRequest $postBody * @param array $optParams Optional parameters. * @return GenerateUploadUrlResponse */ public function generateUploadUrl($parent, GenerateUploadUrlRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('generateUploadUrl', [$params], GenerateUploadUrlResponse::class); } /** * Returns a function with the given name from the requested project. * (functions.get) * * @param string $name Required. The name of the function which details should * be obtained. * @param array $optParams Optional parameters. * @return CloudFunction */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], CloudFunction::class); } /** * Gets the IAM access control policy for a function. Returns an empty policy if * the function exists and does not have a policy set. (functions.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 maximum policy * version that will be used to format the policy. Valid values are 0, 1, and 3. * Requests specifying an invalid value will be rejected. Requests for policies * with any conditional role bindings must specify version 3. Policies with no * conditional role bindings may specify any valid value or leave the field * unset. The policy in the response might use the policy version that you * specified, or it might use a lower policy version. For example, if you * specify version 3, but the policy has no conditional role bindings, the * response uses version 1. To learn which resources support conditions in their * IAM policies, see the [IAM * documentation](https://cloud.google.com/iam/help/conditions/resource- * policies). * @return Policy */ public function getIamPolicy($resource, $optParams = []) { $params = ['resource' => $resource]; $params = array_merge($params, $optParams); return $this->call('getIamPolicy', [$params], Policy::class); } /** * Returns a list of functions that belong to the requested project. * (functions.listProjectsLocationsFunctions) * * @param string $parent The project and location from which the function should * be listed, specified in the format `projects/locations` If you want to list * functions in all locations, use "-" in place of a location. When listing * functions in all locations, if one or more location(s) are unreachable, the * response will contain functions from all reachable locations along with the * names of any unreachable locations. * @param array $optParams Optional parameters. * * @opt_param int pageSize Maximum number of functions to return per call. * @opt_param string pageToken The value returned by the last * `ListFunctionsResponse`; indicates that this is a continuation of a prior * `ListFunctions` call, and that the system should return the next page of * data. * @return ListFunctionsResponse */ public function listProjectsLocationsFunctions($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListFunctionsResponse::class); } /** * Updates existing function. (functions.patch) * * @param string $name A user-defined name of the function. Function names must * be unique globally and match pattern `projects/locations/functions` * @param CloudFunction $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Required. The list of fields in `CloudFunction` * that have to be updated. * @return Operation */ public function patch($name, CloudFunction $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], Operation::class); } /** * Sets the IAM access control policy on the specified function. Replaces any * existing policy. (functions.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 SetIamPolicyRequest $postBody * @param array $optParams Optional parameters. * @return Policy */ public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = []) { $params = ['resource' => $resource, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('setIamPolicy', [$params], Policy::class); } /** * Tests the specified permissions against the IAM access control policy for a * function. If the function does not exist, this will return an empty set of * permissions, not a NOT_FOUND error. (functions.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 TestIamPermissionsRequest $postBody * @param array $optParams Optional parameters. * @return TestIamPermissionsResponse */ public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = []) { $params = ['resource' => $resource, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsFunctions::class, 'Google_Service_CloudFunctions_Resource_ProjectsLocationsFunctions');