Class: Google::Apis::NotebooksV1::Event
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::Event
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb
Overview
The definition of an Event for a managed / semi-managed notebook instance.
Instance Attribute Summary collapse
-
#details ⇒ Hash<String,String>
Optional.
-
#report_time ⇒ String
Event report time.
-
#type ⇒ String
Event type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Event
constructor
A new instance of Event.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Event
Returns a new instance of Event.
410 411 412 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 410 def initialize(**args) update!(**args) end |
Instance Attribute Details
#details ⇒ Hash<String,String>
Optional. Event details. This field is used to pass event information.
Corresponds to the JSON property details
398 399 400 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 398 def details @details end |
#report_time ⇒ String
Event report time.
Corresponds to the JSON property reportTime
403 404 405 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 403 def report_time @report_time end |
#type ⇒ String
Event type.
Corresponds to the JSON property type
408 409 410 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 408 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
415 416 417 418 419 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 415 def update!(**args) @details = args[:details] if args.key?(:details) @report_time = args[:report_time] if args.key?(:report_time) @type = args[:type] if args.key?(:type) end |