class Google::Apis::ComputeV1::SerialPortOutput

An instance's serial console output.

Attributes

contents[RW]
Output Only

The contents of the console output.

Corresponds to the JSON property `contents` @return [String]

kind[RW]
Output Only

Type of the resource. Always compute#serialPortOutput for serial

port output. Corresponds to the JSON property `kind` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/compute_v1/classes.rb, line 6466
def update!(**args)
  @contents = args[:contents] if args.key?(:contents)
  @kind = args[:kind] if args.key?(:kind)
  @self_link = args[:self_link] if args.key?(:self_link)
end