Class: Google::Apis::NotebooksV1::ReportRuntimeEventRequest
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::ReportRuntimeEventRequest
- 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
Request for reporting a Managed Notebook Event.
Instance Attribute Summary collapse
-
#event ⇒ Google::Apis::NotebooksV1::Event
The definition of an Event for a managed / semi-managed notebook instance.
-
#vm_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportRuntimeEventRequest
constructor
A new instance of ReportRuntimeEventRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportRuntimeEventRequest
Returns a new instance of ReportRuntimeEventRequest.
2123 2124 2125 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2123 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event ⇒ Google::Apis::NotebooksV1::Event
The definition of an Event for a managed / semi-managed notebook instance.
Corresponds to the JSON property event
2115 2116 2117 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2115 def event @event end |
#vm_id ⇒ String
Required. The VM hardware token for authenticating the VM. https://cloud.
google.com/compute/docs/instances/verifying-instance-identity
Corresponds to the JSON property vmId
2121 2122 2123 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2121 def vm_id @vm_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2128 2129 2130 2131 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2128 def update!(**args) @event = args[:event] if args.key?(:event) @vm_id = args[:vm_id] if args.key?(:vm_id) end |