Skip to main content

sessions

Creates, updates, deletes, gets or lists a sessions resource.

Overview

Namesessions
TypeResource
Idgoogle.dataplex.sessions

Fields

NameDatatypeDescription
namestringOutput only. The relative resource name of the content, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}/sessions/{session_id}
createTimestringOutput only. Session start time.
statestringOutput only. State of Session
userIdstringOutput only. Email of user running the session.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_lakes_environments_sessions_listSELECTenvironmentsId, lakesId, locationsId, projectsIdLists session resources in an environment.

SELECT examples

Lists session resources in an environment.

SELECT
name,
createTime,
state,
userId
FROM google.dataplex.sessions
WHERE environmentsId = '{{ environmentsId }}'
AND lakesId = '{{ lakesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';