Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_countFixnum

Number of browsers that haven’t had any recent activity Corresponds to the JSON property noRecentActivityCount

Returns:

  • (Fixnum)


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_countFixnum

Number of browsers that are pending an OS update Corresponds to the JSON property pendingBrowserUpdateCount

Returns:

  • (Fixnum)


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_countFixnum

Number of browsers that have been recently enrolled Corresponds to the JSON property recentlyEnrolledCount

Returns:

  • (Fixnum)


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