Class: Google::Apis::ChromeuxreportV1::QueryRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/chromeuxreport_v1/classes.rb,
generated/google/apis/chromeuxreport_v1/representations.rb,
generated/google/apis/chromeuxreport_v1/representations.rb

Overview

Request payload sent by a physical web client. This request includes all necessary context to load a particular user experience record.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryRequest

Returns a new instance of QueryRequest.



202
203
204
# File 'generated/google/apis/chromeuxreport_v1/classes.rb', line 202

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#effective_connection_typeString

The effective connection type is a query dimension that specifies the effective network class that the record's data should belong to. This field uses the values ["offline", "slow-2G", "2G", "3G", "4G"] as specified in: https://wicg.github.io/netinfo/#effective-connection-types Note: If no effective connection type is specified, then a special record with aggregated data over all effective connection types will be returned. Corresponds to the JSON property effectiveConnectionType

Returns:

  • (String)


173
174
175
# File 'generated/google/apis/chromeuxreport_v1/classes.rb', line 173

def effective_connection_type
  @effective_connection_type
end

#form_factorString

The form factor is a query dimension that specifies the device class that the record's data should belong to. Note: If no form factor is specified, then a special record with aggregated data over all form factors will be returned. Corresponds to the JSON property formFactor

Returns:

  • (String)


180
181
182
# File 'generated/google/apis/chromeuxreport_v1/classes.rb', line 180

def form_factor
  @form_factor
end

#metricsArray<String>

The metrics that should be included in the response. If none are specified then any metrics found will be returned. Allowed values: [" first_contentful_paint", "first_input_delay", "largest_contentful_paint", " cumulative_layout_shift"] Corresponds to the JSON property metrics

Returns:

  • (Array<String>)


188
189
190
# File 'generated/google/apis/chromeuxreport_v1/classes.rb', line 188

def metrics
  @metrics
end

#originString

The url pattern "origin" refers to a url pattern that is the origin of a website. Examples: "https://example.com", "https://cloud.google.com" Corresponds to the JSON property origin

Returns:

  • (String)


194
195
196
# File 'generated/google/apis/chromeuxreport_v1/classes.rb', line 194

def origin
  @origin
end

#urlString

The url pattern "url" refers to a url pattern that is any arbitrary url. Examples: "https://example.com/", "https://cloud.google.com/why-google-cloud/" Corresponds to the JSON property url

Returns:

  • (String)


200
201
202
# File 'generated/google/apis/chromeuxreport_v1/classes.rb', line 200

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



207
208
209
210
211
212
213
# File 'generated/google/apis/chromeuxreport_v1/classes.rb', line 207

def update!(**args)
  @effective_connection_type = args[:effective_connection_type] if args.key?(:effective_connection_type)
  @form_factor = args[:form_factor] if args.key?(:form_factor)
  @metrics = args[:metrics] if args.key?(:metrics)
  @origin = args[:origin] if args.key?(:origin)
  @url = args[:url] if args.key?(:url)
end