Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb 
Overview
Response containing counts for browsers that need attention.
Instance Attribute Summary collapse
- 
  
    
      #no_recent_activity_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of browsers that haven’t had any recent activity Corresponds to the JSON property
noRecentActivityCount. - 
  
    
      #pending_browser_update_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of browsers that are pending an OS update Corresponds to the JSON property
pendingBrowserUpdateCount. - 
  
    
      #recently_enrolled_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of browsers that have been recently enrolled Corresponds to the JSON property
recentlyEnrolledCount. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse
Returns a new instance of GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse.
      873 874 875  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 873 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#no_recent_activity_count ⇒ Fixnum
Number of browsers that haven’t had any recent activity
Corresponds to the JSON property noRecentActivityCount
      861 862 863  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 861 def no_recent_activity_count @no_recent_activity_count end  | 
  
#pending_browser_update_count ⇒ Fixnum
Number of browsers that are pending an OS update
Corresponds to the JSON property pendingBrowserUpdateCount
      866 867 868  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 866 def pending_browser_update_count @pending_browser_update_count end  | 
  
#recently_enrolled_count ⇒ Fixnum
Number of browsers that have been recently enrolled
Corresponds to the JSON property recentlyEnrolledCount
      871 872 873  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 871 def recently_enrolled_count @recently_enrolled_count end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      878 879 880 881 882  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 878 def update!(**args) @no_recent_activity_count = args[:no_recent_activity_count] if args.key?(:no_recent_activity_count) @pending_browser_update_count = args[:pending_browser_update_count] if args.key?(:pending_browser_update_count) @recently_enrolled_count = args[:recently_enrolled_count] if args.key?(:recently_enrolled_count) end  |