Sha256: 6e73adff53a8ba602e4a8c79f8be505ef99cb180993e30fc47c5dc88c85b5f88
Contents?: true
Size: 1.37 KB
Versions: 14
Compression:
Stored size: 1.37 KB
Contents
module Fog module Compute class Google class Mock def get_server_serial_port_output(_identity, _zone) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real # Returns the specified instance's serial port output. # @param [String] zone Zone for the given instance # @param [String] instance Instance scoping this request. # @param [Fixnum] port # Specifies which COM or serial port to retrieve data from. # Acceptable values are 1 to 4, inclusive. (Default: 1) # @param [Fixnum] start # Returns output starting from a specific byte position. # Use this to page through output when the output is too large to # return in a single request. For the initial request, # leave this field unspecified. For subsequent calls, this field # should be set to the next value returned in the previous call. # @see https://cloud.google.com/compute/docs/reference/latest/instances/getSerialPortOutput def get_server_serial_port_output(identity, zone, port: nil, start: nil) @compute.get_instance_serial_port_output( @project, zone.split("/")[-1], identity, port: port, start: start ) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems