Class: Google::Apis::AdminDirectoryV1::DirectoryChromeosdevicesCommandResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb

Overview

The result of executing a command.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DirectoryChromeosdevicesCommandResult

Returns a new instance of DirectoryChromeosdevicesCommandResult.



1939
1940
1941
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1939

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#command_result_payloadString

The payload for the command result. The following commands respond with a payload: - DEVICE_START_CRD_SESSION: Payload is a stringified JSON object in the form: "url": url. The URL provides a link to the CRD session. Corresponds to the JSON property commandResultPayload

Returns:

  • (String)


1921
1922
1923
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1921

def command_result_payload
  @command_result_payload
end

#error_messageString

The error message with a short explanation as to why the command failed. Only present if the command failed. Corresponds to the JSON property errorMessage

Returns:

  • (String)


1927
1928
1929
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1927

def error_message
  @error_message
end

#execute_timeString

The time at which the command was executed or failed to execute. Corresponds to the JSON property executeTime

Returns:

  • (String)


1932
1933
1934
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1932

def execute_time
  @execute_time
end

#resultString

The result of the command. Corresponds to the JSON property result

Returns:

  • (String)


1937
1938
1939
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1937

def result
  @result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1944
1945
1946
1947
1948
1949
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1944

def update!(**args)
  @command_result_payload = args[:command_result_payload] if args.key?(:command_result_payload)
  @error_message = args[:error_message] if args.key?(:error_message)
  @execute_time = args[:execute_time] if args.key?(:execute_time)
  @result = args[:result] if args.key?(:result)
end