* $tagmanagerService = new Google\Service\TagManager(...); * $workspaces = $tagmanagerService->workspaces; * */ class AccountsContainersWorkspaces extends \Google\Service\Resource { /** * Creates a Workspace. (workspaces.create) * * @param string $parent GTM parent Container's API relative path. Example: * accounts/{account_id}/containers/{container_id} * @param Workspace $postBody * @param array $optParams Optional parameters. * @return Workspace */ public function create($parent, Workspace $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Workspace::class); } /** * Creates a Container Version from the entities present in the workspace, * deletes the workspace, and sets the base container version to the newly * created version. (workspaces.create_version) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param CreateContainerVersionRequestVersionOptions $postBody * @param array $optParams Optional parameters. * @return CreateContainerVersionResponse */ public function create_version($path, CreateContainerVersionRequestVersionOptions $postBody, $optParams = []) { $params = ['path' => $path, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create_version', [$params], CreateContainerVersionResponse::class); } /** * Deletes a Workspace. (workspaces.delete) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param array $optParams Optional parameters. */ public function delete($path, $optParams = []) { $params = ['path' => $path]; $params = array_merge($params, $optParams); return $this->call('delete', [$params]); } /** * Gets a Workspace. (workspaces.get) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param array $optParams Optional parameters. * @return Workspace */ public function get($path, $optParams = []) { $params = ['path' => $path]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Workspace::class); } /** * Finds conflicting and modified entities in the workspace. * (workspaces.getStatus) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param array $optParams Optional parameters. * @return GetWorkspaceStatusResponse */ public function getStatus($path, $optParams = []) { $params = ['path' => $path]; $params = array_merge($params, $optParams); return $this->call('getStatus', [$params], GetWorkspaceStatusResponse::class); } /** * Lists all Workspaces that belong to a GTM Container. * (workspaces.listAccountsContainersWorkspaces) * * @param string $parent GTM parent Container's API relative path. Example: * accounts/{account_id}/containers/{container_id} * @param array $optParams Optional parameters. * * @opt_param string pageToken Continuation token for fetching the next page of * results. * @return ListWorkspacesResponse */ public function listAccountsContainersWorkspaces($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListWorkspacesResponse::class); } /** * Quick previews a workspace by creating a fake container version from all * entities in the provided workspace. (workspaces.quick_preview) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param array $optParams Optional parameters. * @return QuickPreviewResponse */ public function quick_preview($path, $optParams = []) { $params = ['path' => $path]; $params = array_merge($params, $optParams); return $this->call('quick_preview', [$params], QuickPreviewResponse::class); } /** * Resolves a merge conflict for a workspace entity by updating it to the * resolved entity passed in the request. (workspaces.resolve_conflict) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param Entity $postBody * @param array $optParams Optional parameters. * * @opt_param string fingerprint When provided, this fingerprint must match the * fingerprint of the entity_in_workspace in the merge conflict. */ public function resolve_conflict($path, Entity $postBody, $optParams = []) { $params = ['path' => $path, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('resolve_conflict', [$params]); } /** * Syncs a workspace to the latest container version by updating all unmodified * workspace entities and displaying conflicts for modified entities. * (workspaces.sync) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param array $optParams Optional parameters. * @return SyncWorkspaceResponse */ public function sync($path, $optParams = []) { $params = ['path' => $path]; $params = array_merge($params, $optParams); return $this->call('sync', [$params], SyncWorkspaceResponse::class); } /** * Updates a Workspace. (workspaces.update) * * @param string $path GTM Workspace's API relative path. Example: * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} * @param Workspace $postBody * @param array $optParams Optional parameters. * * @opt_param string fingerprint When provided, this fingerprint must match the * fingerprint of the workspace in storage. * @return Workspace */ public function update($path, Workspace $postBody, $optParams = []) { $params = ['path' => $path, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], Workspace::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountsContainersWorkspaces::class, 'Google_Service_TagManager_Resource_AccountsContainersWorkspaces');