sessions
Creates, updates, deletes, gets or lists a sessions
resource.
Overview
Name | sessions |
Type | Resource |
Id | google.dataplex.sessions |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output 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} |
createTime | string | Output only. Session start time. |
state | string | Output only. State of Session |
userId | string | Output only. Email of user running the session. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_lakes_environments_sessions_list | SELECT | environmentsId, lakesId, locationsId, projectsId | Lists 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 }}';