Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryEventsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryEventsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Response message for listing telemetry events for a customer.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to specify next page in the list.
-
#telemetry_events ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent>
Telemetry events returned in the response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1ListTelemetryEventsResponse
constructor
A new instance of GoogleChromeManagementV1ListTelemetryEventsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1ListTelemetryEventsResponse
Returns a new instance of GoogleChromeManagementV1ListTelemetryEventsResponse.
2127 2128 2129 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2127 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to specify next page in the list.
Corresponds to the JSON property nextPageToken
2120 2121 2122 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2120 def next_page_token @next_page_token end |
#telemetry_events ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent>
Telemetry events returned in the response.
Corresponds to the JSON property telemetryEvents
2125 2126 2127 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2125 def telemetry_events @telemetry_events end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2132 2133 2134 2135 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2132 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @telemetry_events = args[:telemetry_events] if args.key?(:telemetry_events) end |