Method: customFields.list

Full name: projects.locations.instances.customFields.list

Lists custom fields.

HTTP request


Path parameters

Parameters
parent

string

Required. The parent instance for which to list CustomFields. Format: projects/{project}/locations/{location}/instances/{instance}

Query parameters

Parameters
pageSize

integer

Optional. The maximum number of CustomFields to return. The service may return fewer than this value. If unspecified, at most 50 CustomFields will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.

pageToken

string

Optional. A page token, received from a previous customFields.list call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to customFields.list must match the call that provided the page token.

filter

string

Optional. Filter to be applied over multiple CustomField fields. Example: filter="displayName='My Field' AND type='FREE_TEXT'" Supported filter fields: * displayName * type * scopes (using HAS operator, e.g., scopes:ALERT)

orderBy

string

Optional. Configures ordering of CustomFields in the response. The orderBy string is a comma separated list of fields. The default ordering is by name ascending. Supported orderBy fields: * name * displayName * type Example: orderBy="displayName desc, name asc"

Request body

The request body must be empty.

Response body

Response message for customFields.list.

If successful, the response body contains data with the following structure:

JSON representation
{
  "customFields": [
    {
      object (CustomField)
    }
  ],
  "nextPageToken": string,
  "totalSize": integer
}
Fields
customFields[]

object (CustomField)

The list of CustomFields.

nextPageToken

string

A token, which can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.

totalSize

integer

The total number of CustomFields matching the request criteria, disregarding pagination.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.