Class: Google::Apis::NotebooksV1::Event

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Event

Returns a new instance of Event.



385
386
387
# File 'lib/google/apis/notebooks_v1/classes.rb', line 385

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

Instance Attribute Details

#report_timeString

Event report time. Corresponds to the JSON property reportTime

Returns:

  • (String)


378
379
380
# File 'lib/google/apis/notebooks_v1/classes.rb', line 378

def report_time
  @report_time
end

#typeString

Event type. Corresponds to the JSON property type

Returns:

  • (String)


383
384
385
# File 'lib/google/apis/notebooks_v1/classes.rb', line 383

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



390
391
392
393
# File 'lib/google/apis/notebooks_v1/classes.rb', line 390

def update!(**args)
  @report_time = args[:report_time] if args.key?(:report_time)
  @type = args[:type] if args.key?(:type)
end