* $integrationsService = new Google\Service\Integrations(...); * $cloudFunctions = $integrationsService->projects_locations_cloudFunctions; * */ class ProjectsLocationsCloudFunctions extends \Google\Service\Resource { /** * Creates a cloud function project. (cloudFunctions.create) * * @param string $parent Required. The project that the executed integration * belongs to. * @param GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaCreateCloudFunctionResponse * @throws \Google\Service\Exception */ public function create($parent, GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleCloudIntegrationsV1alphaCreateCloudFunctionResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsCloudFunctions::class, 'Google_Service_Integrations_Resource_ProjectsLocationsCloudFunctions');