Class: Google::Apis::ComputeAlpha::SerialPortOutput
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::SerialPortOutput
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Overview
An instance's serial console output.
Instance Attribute Summary collapse
- 
  
    
      #contents  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The contents of the console output. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Type of the resource. 
- 
  
    
      #next  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The position of the next byte of content from the serial console output. 
- 
  
    
      #self_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Server-defined URL for this resource. 
- 
  
    
      #start  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The starting byte position of the output that was returned. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SerialPortOutput 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SerialPortOutput. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SerialPortOutput
Returns a new instance of SerialPortOutput
| 22264 22265 22266 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22264 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#contents ⇒ String
[Output Only] The contents of the console output.
Corresponds to the JSON property contents
| 22237 22238 22239 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22237 def contents @contents end | 
#kind ⇒ String
[Output Only] Type of the resource. Always compute#serialPortOutput for serial
port output.
Corresponds to the JSON property kind
| 22243 22244 22245 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22243 def kind @kind end | 
#next ⇒ Fixnum
[Output Only] The position of the next byte of content from the serial console
output. Use this value in the next request as the start parameter.
Corresponds to the JSON property next
| 22249 22250 22251 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22249 def next @next end | 
#self_link ⇒ String
[Output Only] Server-defined URL for this resource.
Corresponds to the JSON property selfLink
| 22254 22255 22256 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22254 def self_link @self_link end | 
#start ⇒ Fixnum
The starting byte position of the output that was returned. This should match
the start parameter sent with the request. If the serial console output
exceeds the size of the buffer, older output will be overwritten by newer
content and the start values will be mismatched.
Corresponds to the JSON property start
| 22262 22263 22264 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22262 def start @start end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 22269 22270 22271 22272 22273 22274 22275 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22269 def update!(**args) @contents = args[:contents] if args.key?(:contents) @kind = args[:kind] if args.key?(:kind) @next = args[:next] if args.key?(:next) @self_link = args[:self_link] if args.key?(:self_link) @start = args[:start] if args.key?(:start) end |