databases_scans
Creates, updates, deletes, gets or lists a databases_scans
resource.
Overview
Name | databases_scans |
Type | Resource |
Id | google.spanner.databases_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 |
---|---|---|---|
projects_instances_databases_get_scans | SELECT | databasesId, instancesId, projectsId | Request a specific scan with Database-specific data for Cloud Key Visualizer. |
SELECT
examples
Request a specific scan with Database-specific data for Cloud Key Visualizer.
SELECT
name,
details,
endTime,
scanData,
startTime
FROM google.spanner.databases_scans
WHERE databasesId = '{{ databasesId }}'
AND instancesId = '{{ instancesId }}'
AND projectsId = '{{ projectsId }}';