Method: projects.locations.featureGroups.featureMonitors.featureMonitorJobs.list

List feature monitor jobs.

Endpoint

get https://{endpoint}/v1beta1/{parent}/featureMonitorJobs

Where {service-endpoint} is one of the supported service endpoints.

Path parameters

parent string

Required. The resource name of the FeatureMonitor to list FeatureMonitorJobs. Format: projects/{project}/locations/{location}/featureGroups/{featureGroup}/featureMonitors/{featureMonitor}

Query parameters

filter string

Optional. Lists the FeatureMonitorJobs that match the filter expression. The following fields are supported:

  • createTime: Supports =, !=, <, >, <=, and >= comparisons. Values must be

Examples:

  • createTime > "2020-01-01" FeatureMonitorJobs created after 2020-01-01.
pageSize integer

Optional. The maximum number of FeatureMonitorJobs to return. The service may return fewer than this value. If unspecified, at most 100 FeatureMonitorJobs will be returned. The maximum value is 100; any value greater than 100 will be coerced to 100.

pageToken string

Optional. A page token, received from a previous FeatureRegistryService.ListFeatureMonitorJobs call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to FeatureRegistryService.ListFeatureMonitorJobs must match the call that provided the page token.

orderBy string

Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported Fields:

  • createTime

Request body

The request body must be empty.

Response body

Response message for FeatureRegistryService.ListFeatureMonitorJobs.

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

Fields
featureMonitorJobs[] object (FeatureMonitorJob)

The FeatureMonitorJobs matching the request.

nextPageToken string

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

JSON representation
{
  "featureMonitorJobs": [
    {
      object (FeatureMonitorJob)
    }
  ],
  "nextPageToken": string
}