error_frames
Creates, updates, deletes, gets or lists a error_frames
resource.
Overview
Name | error_frames |
Type | Resource |
Id | google.migrationcenter.error_frames |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The identifier of the ErrorFrame. |
ingestionTime | string | Output only. Frame ingestion time. |
originalFrame | object | Contains data reported from an inventory source on an asset. |
violations | array | Output only. All the violations that were detected for the frame. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | errorFramesId, locationsId, projectsId, sourcesId | Gets the details of an error frame. |
list | SELECT | locationsId, projectsId, sourcesId | Lists 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 }}';