source: vendor/google/apiclient-services/src/CloudDataplex/Resource/ProjectsLocationsLakesEnvironmentsSessions.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 3 weeks ago

Upload new project files

  • Property mode set to 100644
File size: 3.0 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\CloudDataplex\Resource;
19
20use Google\Service\CloudDataplex\GoogleCloudDataplexV1ListSessionsResponse;
21
22/**
23 * The "sessions" collection of methods.
24 * Typical usage is:
25 * <code>
26 * $dataplexService = new Google\Service\CloudDataplex(...);
27 * $sessions = $dataplexService->projects_locations_lakes_environments_sessions;
28 * </code>
29 */
30class ProjectsLocationsLakesEnvironmentsSessions extends \Google\Service\Resource
31{
32 /**
33 * Lists session resources in an environment.
34 * (sessions.listProjectsLocationsLakesEnvironmentsSessions)
35 *
36 * @param string $parent Required. The resource name of the parent environment:
37 * projects/{project_number}/locations/{location_id}/lakes/{lake_id}/environment
38 * /{environment_id}.
39 * @param array $optParams Optional parameters.
40 *
41 * @opt_param string filter Optional. Filter request. The following mode filter
42 * is supported to return only the sessions belonging to the requester when the
43 * mode is USER and return sessions of all the users when the mode is ADMIN.
44 * When no filter is sent default to USER mode. NOTE: When the mode is ADMIN,
45 * the requester should have dataplex.environments.listAllSessions permission to
46 * list all sessions, in absence of the permission, the request fails.mode =
47 * ADMIN | USER
48 * @opt_param int pageSize Optional. Maximum number of sessions to return. The
49 * service may return fewer than this value. If unspecified, at most 10 sessions
50 * will be returned. The maximum value is 1000; values above 1000 will be
51 * coerced to 1000.
52 * @opt_param string pageToken Optional. Page token received from a previous
53 * ListSessions call. Provide this to retrieve the subsequent page. When
54 * paginating, all other parameters provided to ListSessions must match the call
55 * that provided the page token.
56 * @return GoogleCloudDataplexV1ListSessionsResponse
57 * @throws \Google\Service\Exception
58 */
59 public function listProjectsLocationsLakesEnvironmentsSessions($parent, $optParams = [])
60 {
61 $params = ['parent' => $parent];
62 $params = array_merge($params, $optParams);
63 return $this->call('list', [$params], GoogleCloudDataplexV1ListSessionsResponse::class);
64 }
65}
66
67// Adding a class alias for backwards compatibility with the previous class name.
68class_alias(ProjectsLocationsLakesEnvironmentsSessions::class, 'Google_Service_CloudDataplex_Resource_ProjectsLocationsLakesEnvironmentsSessions');
Note: See TracBrowser for help on using the repository browser.