* $contentwarehouseService = new Google\Service\Contentwarehouse(...); * $locations = $contentwarehouseService->projects_locations; * */ class ProjectsLocations extends \Google\Service\Resource { /** * Provisions resources for given tenant project. Returns a long running * operation. (locations.initialize) * * @param string $location Required. The location to be initialized Format: * projects/{project_number}/locations/{location}. * @param GoogleCloudContentwarehouseV1InitializeProjectRequest $postBody * @param array $optParams Optional parameters. * @return GoogleLongrunningOperation */ public function initialize($location, GoogleCloudContentwarehouseV1InitializeProjectRequest $postBody, $optParams = []) { $params = ['location' => $location, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('initialize', [$params], GoogleLongrunningOperation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocations::class, 'Google_Service_Contentwarehouse_Resource_ProjectsLocations');