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
more...

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.

[View source]

559
560
561
# File 'lib/google/apis/notebooks_v1/classes.rb', line 559

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>)

547
548
549
# File 'lib/google/apis/notebooks_v1/classes.rb', line 547

def details
  @details
end

#report_timeString

Event report time. Corresponds to the JSON property reportTime

Returns:

  • (String)

552
553
554
# File 'lib/google/apis/notebooks_v1/classes.rb', line 552

def report_time
  @report_time
end

#typeString

Event type. Corresponds to the JSON property type

Returns:

  • (String)

557
558
559
# File 'lib/google/apis/notebooks_v1/classes.rb', line 557

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

564
565
566
567
568
# File 'lib/google/apis/notebooks_v1/classes.rb', line 564

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