Skip to main content

scans

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

Overview

Namescans
TypeResource
Idgoogle.spanner.scans

Fields

NameDatatypeDescription
namestringThe unique name of the scan, specific to the Database service implementing this interface.
detailsobjectAdditional information provided by the implementer.
endTimestringThe upper bound for when the scan is defined.
scanDataobjectScanData contains Cloud Key Visualizer scan data used by the caller to construct a visualization.
startTimestringA range of time (inclusive) for when the scan is defined. The lower bound for when the scan is defined.

Methods

NameAccessible byRequired ParamsDescription
scans_listSELECTReturn available scans given a Database-specific resource name.

SELECT examples

Return available scans given a Database-specific resource name.

SELECT
name,
details,
endTime,
scanData,
startTime
FROM google.spanner.scans
;