Class: Google::Apis::AdminDirectoryV1::ChromeOsDeviceAction
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::ChromeOsDeviceAction
- 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
Instance Attribute Summary collapse
-
#action ⇒ String
Action to be taken on the Chrome OS device.
-
#deprovision_reason ⇒ String
Only used when the action is
deprovision
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChromeOsDeviceAction
constructor
A new instance of ChromeOsDeviceAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChromeOsDeviceAction
Returns a new instance of ChromeOsDeviceAction.
1162 1163 1164 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Action to be taken on the Chrome OS device.
Corresponds to the JSON property action
1153 1154 1155 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1153 def action @action end |
#deprovision_reason ⇒ String
Only used when the action is deprovision
. With the deprovision
action,
this field is required. Note: The deprovision reason is audited because it
might have implications on licenses for perpetual subscription customers.
Corresponds to the JSON property deprovisionReason
1160 1161 1162 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1160 def deprovision_reason @deprovision_reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1167 1168 1169 1170 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1167 def update!(**args) @action = args[:action] if args.key?(:action) @deprovision_reason = args[:deprovision_reason] if args.key?(:deprovision_reason) end |