Class: Google::Apis::NotebooksV1::ReportInstanceInfoRequest
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::ReportInstanceInfoRequest
- 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 notebook instances to report information to Notebooks API.
Instance Attribute Summary collapse
-
#metadata ⇒ Hash<String,String>
The metadata reported to Notebooks API.
-
#vm_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportInstanceInfoRequest
constructor
A new instance of ReportInstanceInfoRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportInstanceInfoRequest
Returns a new instance of ReportInstanceInfoRequest.
2097 2098 2099 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2097 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Hash<String,String>
The metadata reported to Notebooks API. This will be merged to the instance
metadata store
Corresponds to the JSON property metadata
2089 2090 2091 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2089 def @metadata 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
2095 2096 2097 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2095 def vm_id @vm_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2102 2103 2104 2105 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2102 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @vm_id = args[:vm_id] if args.key?(:vm_id) end |