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 
Overview
JSON request template for firing actions on ChromeOs Device in Directory Devices API.
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Action to be taken on the ChromeOs Device Corresponds to the JSON property
action. - 
  
    
      #deprovision_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
deprovisionReason. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ChromeOsDeviceAction 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ChromeOsDeviceAction.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChromeOsDeviceAction
Returns a new instance of ChromeOsDeviceAction
      928 929 930  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 928 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#action ⇒ String
Action to be taken on the ChromeOs Device
Corresponds to the JSON property action
      921 922 923  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 921 def action @action end  | 
  
#deprovision_reason ⇒ String
Corresponds to the JSON property deprovisionReason
      926 927 928  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 926 def deprovision_reason @deprovision_reason end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      933 934 935 936  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 933 def update!(**args) @action = args[:action] if args.key?(:action) @deprovision_reason = args[:deprovision_reason] if args.key?(:deprovision_reason) end  |