class Google::Apis::SecuritycenterV1beta1::GroupResult

Result containing the properties and count of a groupBy request.

Attributes

count[RW]

Total count of resources for the given properties. Corresponds to the JSON property `count` @return [Fixnum]

properties[RW]

Properties matching the groupBy fields in the request. Corresponds to the JSON property `properties` @return [Hash<String,Object>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 1459
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 1464
def update!(**args)
  @count = args[:count] if args.key?(:count)
  @properties = args[:properties] if args.key?(:properties)
end