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.
2065 2066 2067 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2065 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
2058 2059 2060 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2058 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
2063 2064 2065 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2063 def telemetry_events @telemetry_events end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2070 2071 2072 2073 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2070 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 |