* $discoveryengineService = new Google\Service\DiscoveryEngine(...); * $sessions = $discoveryengineService->projects_locations_dataStores_sessions; * */ class ProjectsLocationsDataStoresSessions extends \Google\Service\Resource { /** * Creates a Session. If the Session to create already exists, an ALREADY_EXISTS * error is returned. (sessions.create) * * @param string $parent Required. Full resource name of parent data store. * Format: `projects/{project}/locations/{location}/collections/{collection}/dat * aStores/{data_store_id}` * @param GoogleCloudDiscoveryengineV1Session $postBody * @param array $optParams Optional parameters. * @return GoogleCloudDiscoveryengineV1Session * @throws \Google\Service\Exception */ public function create($parent, GoogleCloudDiscoveryengineV1Session $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleCloudDiscoveryengineV1Session::class); } /** * Deletes a Session. If the Session to delete does not exist, a NOT_FOUND error * is returned. (sessions.delete) * * @param string $name Required. The resource name of the Session to delete. * Format: `projects/{project}/locations/{location}/collections/{collection}/dat * aStores/{data_store_id}/sessions/{session_id}` * @param array $optParams Optional parameters. * @return GoogleProtobufEmpty * @throws \Google\Service\Exception */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], GoogleProtobufEmpty::class); } /** * Gets a Session. (sessions.get) * * @param string $name Required. The resource name of the Session to get. * Format: `projects/{project}/locations/{location}/collections/{collection}/dat * aStores/{data_store_id}/sessions/{session_id}` * @param array $optParams Optional parameters. * @return GoogleCloudDiscoveryengineV1Session * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudDiscoveryengineV1Session::class); } /** * Lists all Sessions by their parent DataStore. * (sessions.listProjectsLocationsDataStoresSessions) * * @param string $parent Required. The data store resource name. Format: `projec * ts/{project}/locations/{location}/collections/{collection}/dataStores/{data_s * tore_id}` * @param array $optParams Optional parameters. * * @opt_param string filter A filter to apply on the list results. The supported * features are: user_pseudo_id, state. Example: "user_pseudo_id = some_id" * @opt_param string orderBy A comma-separated list of fields to order by, * sorted in ascending order. Use "desc" after a field name for descending. * Supported fields: * `update_time` * `create_time` * `session_name` Example: * "update_time desc" "create_time" * @opt_param int pageSize Maximum number of results to return. If unspecified, * defaults to 50. Max allowed value is 1000. * @opt_param string pageToken A page token, received from a previous * `ListSessions` call. Provide this to retrieve the subsequent page. * @return GoogleCloudDiscoveryengineV1ListSessionsResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsDataStoresSessions($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudDiscoveryengineV1ListSessionsResponse::class); } /** * Updates a Session. Session action type cannot be changed. If the Session to * update does not exist, a NOT_FOUND error is returned. (sessions.patch) * * @param string $name Immutable. Fully qualified name `projects/{project}/locat * ions/global/collections/{collection}/engines/{engine}/sessions` * @param GoogleCloudDiscoveryengineV1Session $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Indicates which fields in the provided Session * to update. The following are NOT supported: * Session.name If not set or * empty, all supported fields are updated. * @return GoogleCloudDiscoveryengineV1Session * @throws \Google\Service\Exception */ public function patch($name, GoogleCloudDiscoveryengineV1Session $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], GoogleCloudDiscoveryengineV1Session::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsDataStoresSessions::class, 'Google_Service_DiscoveryEngine_Resource_ProjectsLocationsDataStoresSessions');