class Google::Apis::BaremetalsolutionV1alpha1::SerialPortOutput
Response for ReadSerialPortOutput.
Attributes
contents[RW]
The serial port output. Corresponds to the JSON property `contents` @return [String]
next_start_byte[RW]
The byte index to use in a subsequent call to ReadSerialPortOutput to get more output. Corresponds to the JSON property `nextStartByte` @return [Fixnum]
start[RW]
The start byte index of the included contents. Corresponds to the JSON property `start` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/baremetalsolution_v1alpha1/classes.rb, line 836 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/baremetalsolution_v1alpha1/classes.rb, line 841 def update!(**args) @contents = args[:contents] if args.key?(:contents) @next_start_byte = args[:next_start_byte] if args.key?(:next_start_byte) @start = args[:start] if args.key?(:start) end