Class: Google::Apis::AdminDirectoryV1::DirectoryChromeosdevicesCommandResult
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::DirectoryChromeosdevicesCommandResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb
Overview
The result of executing a command.
Instance Attribute Summary collapse
-
#error_message ⇒ String
The error message with a short explanation as to why the command failed.
-
#execute_time ⇒ String
The time at which the command was executed or failed to execute.
-
#result ⇒ String
The result of the command.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DirectoryChromeosdevicesCommandResult
constructor
A new instance of DirectoryChromeosdevicesCommandResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DirectoryChromeosdevicesCommandResult
Returns a new instance of DirectoryChromeosdevicesCommandResult.
1452 1453 1454 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1452 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_message ⇒ String
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
1440 1441 1442 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1440 def @error_message end |
#execute_time ⇒ String
The time at which the command was executed or failed to execute.
Corresponds to the JSON property executeTime
1445 1446 1447 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1445 def execute_time @execute_time end |
#result ⇒ String
The result of the command.
Corresponds to the JSON property result
1450 1451 1452 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1450 def result @result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1457 1458 1459 1460 1461 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1457 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 |