ListFileStoreDataProfilesRequest

Request to list the file store profiles generated for a given organization or project.

JSON representation
{
  "parent": string,
  "pageToken": string,
  "pageSize": integer,
  "orderBy": string,
  "filter": string
}
Fields
parent

string

Required. Resource name of the organization or project, for example organizations/433245324/locations/europe or projects/project-id/locations/asia.

pageToken

string

Optional. Page token to continue retrieval.

pageSize

integer

Optional. Size of the page. This value can be limited by the server. If zero, server returns a page of max size 100.

orderBy

string

Optional. Comma-separated list of fields to order by, followed by asc or desc postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Only one order field at a time is allowed.

Examples:

  • projectId asc
  • name
  • sensitivityLevel desc

Supported fields are:

  • projectId: The Google Cloud project ID.
  • sensitivityLevel: How sensitive the data in a table is, at most.
  • dataRiskLevel: How much risk is associated with this data.
  • profileLastGenerated: When the profile was last updated in epoch seconds.
  • lastModified: The last time the resource was modified.
  • resourceVisibility: Visibility restriction for this resource.
  • name: The name of the profile.
  • createTime: The time the file store was first created.
filter

string

Optional. Allows filtering.

Supported syntax:

  • Filter expressions are made up of one or more restrictions.
  • Restrictions can be combined by AND or OR logical operators. A sequence of restrictions implicitly uses AND.
  • A restriction has the form of {field} {operator} {value}.
  • Supported fields/values:
  • The operator must be = or !=.

Examples:

  • projectId = 12345 AND status_code = 1
  • projectId = 12345 AND sensitivityLevel = HIGH
  • projectId = 12345 AND resourceVisibility = PUBLIC
  • fileStorePath = "gs://mybucket"

The length of this field should be no more than 500 characters.