Skip to main content

error_frames

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

Overview

Nameerror_frames
TypeResource
Idgoogle.migrationcenter.error_frames

Fields

NameDatatypeDescription
namestringOutput only. The identifier of the ErrorFrame.
ingestionTimestringOutput only. Frame ingestion time.
originalFrameobjectContains data reported from an inventory source on an asset.
violationsarrayOutput only. All the violations that were detected for the frame.

Methods

NameAccessible byRequired ParamsDescription
getSELECTerrorFramesId, locationsId, projectsId, sourcesIdGets the details of an error frame.
listSELECTlocationsId, projectsId, sourcesIdLists all error frames in a given source and location.

SELECT examples

Lists all error frames in a given source and location.

SELECT
name,
ingestionTime,
originalFrame,
violations
FROM google.migrationcenter.error_frames
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}'
AND sourcesId = '{{ sourcesId }}';