actions
Creates, updates, deletes, gets or lists a actions
resource.
Overview
Name | actions |
Type | Resource |
Id | google.dataplex.actions |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The relative resource name of the action, of the form: projects/{project}/locations/{location}/lakes/{lake}/actions/{action} projects/{project}/locations/{location}/lakes/{lake}/zones/{zone}/actions/{action} projects/{project}/locations/{location}/lakes/{lake}/zones/{zone}/assets/{asset}/actions/{action}. |
asset | string | Output only. The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}. |
category | string | The category of issue associated with the action. |
dataLocations | array | The list of data locations associated with this action. Cloud Storage locations are represented as URI paths(E.g. gs://bucket/table1/year=2020/month=Jan/). BigQuery locations refer to resource names(E.g. bigquery.googleapis.com/projects/project-id/datasets/dataset-id). |
detectTime | string | The time that the issue was detected. |
failedSecurityPolicyApply | object | Failed to apply security policy to the managed resource(s) under a lake, zone or an asset. For a lake or zone resource, one or more underlying assets has a failure applying security policy to the associated managed resource. |
incompatibleDataSchema | object | Action details for incompatible schemas detected by discovery. |
invalidDataFormat | object | Action details for invalid or unsupported data files detected by discovery. |
invalidDataOrganization | object | Action details for invalid data arrangement. |
invalidDataPartition | object | Action details for invalid or unsupported partitions detected by discovery. |
issue | string | Detailed description of the issue requiring action. |
lake | string | Output only. The relative resource name of the lake, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}. |
missingData | object | Action details for absence of data detected by discovery. |
missingResource | object | Action details for resource references in assets that cannot be located. |
unauthorizedResource | object | Action details for unauthorized resource issues raised to indicate that the service account associated with the lake instance is not authorized to access or manage the resource associated with an asset. |
zone | string | Output only. The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_lakes_actions_list | SELECT | lakesId, locationsId, projectsId | Lists action resources in a lake. |
projects_locations_lakes_zones_actions_list | SELECT | lakesId, locationsId, projectsId, zonesId | Lists action resources in a zone. |
projects_locations_lakes_zones_assets_actions_list | SELECT | assetsId, lakesId, locationsId, projectsId, zonesId | Lists action resources in an asset. |
SELECT
examples
Lists action resources in a lake.
SELECT
name,
asset,
category,
dataLocations,
detectTime,
failedSecurityPolicyApply,
incompatibleDataSchema,
invalidDataFormat,
invalidDataOrganization,
invalidDataPartition,
issue,
lake,
missingData,
missingResource,
unauthorizedResource,
zone
FROM google.dataplex.actions
WHERE lakesId = '{{ lakesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';