class Google::Apis::NotebooksV1::ReportInstanceInfoRequest

Request for notebook instances to report information to Notebooks API.

Attributes

metadata[RW]

The metadata reported to Notebooks API. This will be merged to the instance metadata store Corresponds to the JSON property `metadata` @return [Hash<String,String>]

vm_id[RW]

Required. The VM hardware token for authenticating the VM. cloud. google.com/compute/docs/instances/verifying-instance-identity Corresponds to the JSON property `vmId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/notebooks_v1/classes.rb, line 1707
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/notebooks_v1/classes.rb, line 1712
def update!(**args)
  @metadata = args[:metadata] if args.key?(:metadata)
  @vm_id = args[:vm_id] if args.key?(:vm_id)
end