REST Resource: folders.locations.savedQueries

Resource: SavedQuery

Describes a query that has been saved by a user.

JSON representation
{
  "name": string,
  "displayName": string,
  "description": string,
  "createTime": string,
  "updateTime": string,
  "visibility": enum (Visibility),

  // Union field query_oneof can be only one of the following:
  "loggingQuery": {
    object (LoggingQuery)
  },
  "opsAnalyticsQuery": {
    object (OpsAnalyticsQuery)
  }
  // End of list of possible types for union field query_oneof.
}
Fields
name

string

Output only. Resource name of the saved query.

In the format:

"projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]"

For a list of supported locations, see Supported Regions

After the saved query is created, the location cannot be changed.

If the user doesn't provide a [QUERY_ID], the system will generate an alphanumeric ID.

displayName

string

Required. The user specified title for the SavedQuery.

description

string

Optional. A human readable description of the saved query.

createTime

string (Timestamp format)

Output only. The timestamp when the saved query was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Output only. The timestamp when the saved query was last updated.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

visibility

enum (Visibility)

Required. The visibility status of this query, which determines its ownership.

Union field query_oneof. The query that is saved. query_oneof can be only one of the following:
loggingQuery

object (LoggingQuery)

Logging query that can be executed in Logs Explorer or via Logging API.

opsAnalyticsQuery

object (OpsAnalyticsQuery)

Analytics query that can be executed in Log Analytics.

Methods

create

Creates a new SavedQuery for the user making the request.

delete

Deletes an existing SavedQuery that was created by the user making the request.

list

Lists the SavedQueries that were created by the user making the request.