project_data_profiles
Creates, updates, deletes, gets or lists a project_data_profiles
resource.
Overview
Name | project_data_profiles |
Type | Resource |
Id | google.dlp.project_data_profiles |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The resource name of the profile. |
dataRiskLevel | object | Score is a summary of all elements in the data profile. A higher number means more risk. |
fileStoreDataProfileCount | string | The number of file store data profiles generated for this project. |
profileLastGenerated | string | The last time the profile was generated. |
profileStatus | object | Success or errors for the profile generation. |
projectId | string | Project ID or account that was profiled. |
sensitivityScore | object | Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. |
tableDataProfileCount | string | The number of table data profiles generated for this project. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_locations_project_data_profiles_get | SELECT | locationsId, organizationsId, projectDataProfilesId | Gets a project data profile. |
organizations_locations_project_data_profiles_list | SELECT | locationsId, organizationsId | Lists project data profiles for an organization. |
projects_locations_project_data_profiles_get | SELECT | locationsId, projectDataProfilesId, projectsId | Gets a project data profile. |
projects_locations_project_data_profiles_list | SELECT | locationsId, projectsId | Lists project data profiles for an organization. |
SELECT
examples
Lists project data profiles for an organization.
SELECT
name,
dataRiskLevel,
fileStoreDataProfileCount,
profileLastGenerated,
profileStatus,
projectId,
sensitivityScore,
tableDataProfileCount
FROM google.dlp.project_data_profiles
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';