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.



1801
1802
1803
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1801

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

Instance Attribute Details

#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)


1789
1790
1791
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1789

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)


1794
1795
1796
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1794

def execute_time
  @execute_time
end

#resultString

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

Returns:

  • (String)


1799
1800
1801
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1799

def result
  @result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1806
1807
1808
1809
1810
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1806

def update!(**args)
  @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