Class: Google::Apis::NotebooksV2::Event

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Event

Returns a new instance of Event.



487
488
489
# File 'lib/google/apis/notebooks_v2/classes.rb', line 487

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

Instance Attribute Details

#detailsHash<String,String>

Optional. Event details. This field is used to pass event information. Corresponds to the JSON property details

Returns:

  • (Hash<String,String>)


475
476
477
# File 'lib/google/apis/notebooks_v2/classes.rb', line 475

def details
  @details
end

#report_timeString

Optional. Event report time. Corresponds to the JSON property reportTime

Returns:

  • (String)


480
481
482
# File 'lib/google/apis/notebooks_v2/classes.rb', line 480

def report_time
  @report_time
end

#typeString

Optional. Event type. Corresponds to the JSON property type

Returns:

  • (String)


485
486
487
# File 'lib/google/apis/notebooks_v2/classes.rb', line 485

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



492
493
494
495
496
# File 'lib/google/apis/notebooks_v2/classes.rb', line 492

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