Class: Google::Apis::NotebooksV2::Event
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV2::Event
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v2/classes.rb,
lib/google/apis/notebooks_v2/representations.rb,
lib/google/apis/notebooks_v2/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
Optional.
-
#type ⇒ String
Optional.
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.
510 511 512 |
# File 'lib/google/apis/notebooks_v2/classes.rb', line 510 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
498 499 500 |
# File 'lib/google/apis/notebooks_v2/classes.rb', line 498 def details @details end |
#report_time ⇒ String
Optional. Event report time.
Corresponds to the JSON property reportTime
503 504 505 |
# File 'lib/google/apis/notebooks_v2/classes.rb', line 503 def report_time @report_time end |
#type ⇒ String
Optional. Event type.
Corresponds to the JSON property type
508 509 510 |
# File 'lib/google/apis/notebooks_v2/classes.rb', line 508 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
515 516 517 518 519 |
# File 'lib/google/apis/notebooks_v2/classes.rb', line 515 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 |