Skip to main content

error_frames

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

Overview

Nameerror_frames
TypeResource
Idgoogle.migrationcenter.error_frames

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringOutput only. The identifier of the ErrorFrame.
ingestionTimestring (google-datetime)Output only. Frame ingestion time.
originalFrameobjectContains data reported from an inventory source on an asset. (id: AssetFrame)
violationsarrayOutput only. All the violations that were detected for the frame.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, sourcesId, errorFramesIdviewGets the details of an error frame.
listselectprojectsId, locationsId, sourcesIdpageSize, pageToken, viewLists all error frames in a given source and location.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
errorFramesIdstring
locationsIdstring
projectsIdstring
sourcesIdstring
pageSizeinteger (int32)
pageTokenstring
viewstring

SELECT examples

Gets the details of an error frame.

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