scans
Creates, updates, deletes, gets or lists a scans
resource.
Overview
Name | scans |
Type | Resource |
Id | google.spanner.scans |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The unique name of the scan, specific to the Database service implementing this interface. |
details | object | Additional information provided by the implementer. |
endTime | string | The upper bound for when the scan is defined. |
scanData | object | ScanData contains Cloud Key Visualizer scan data used by the caller to construct a visualization. |
startTime | string | A range of time (inclusive) for when the scan is defined. The lower bound for when the scan is defined. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
scans_list | SELECT |
| Return 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
;