Class: Google::Apis::MigrationcenterV1::ReportSummaryGroupFinding

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb

Overview

Summary Findings for a specific Group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportSummaryGroupFinding

Returns a new instance of ReportSummaryGroupFinding.



3807
3808
3809
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3807

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#asset_aggregate_statsGoogle::Apis::MigrationcenterV1::ReportSummaryAssetAggregateStats

Aggregate statistics for a collection of assets. Corresponds to the JSON property assetAggregateStats



3784
3785
3786
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3784

def asset_aggregate_stats
  @asset_aggregate_stats
end

#descriptionString

Description for the Group. Corresponds to the JSON property description

Returns:

  • (String)


3789
3790
3791
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3789

def description
  @description
end

#display_nameString

Display Name for the Group. Corresponds to the JSON property displayName

Returns:

  • (String)


3794
3795
3796
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3794

def display_name
  @display_name
end

#overlapping_asset_countFixnum

Count of the number of assets in this group which are also included in another group within the same report. Corresponds to the JSON property overlappingAssetCount

Returns:

  • (Fixnum)


3800
3801
3802
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3800

def overlapping_asset_count
  @overlapping_asset_count
end

#preference_set_findingsArray<Google::Apis::MigrationcenterV1::ReportSummaryGroupPreferenceSetFinding>

Findings for each of the PreferenceSets for this group. Corresponds to the JSON property preferenceSetFindings



3805
3806
3807
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3805

def preference_set_findings
  @preference_set_findings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3812
3813
3814
3815
3816
3817
3818
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3812

def update!(**args)
  @asset_aggregate_stats = args[:asset_aggregate_stats] if args.key?(:asset_aggregate_stats)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @overlapping_asset_count = args[:overlapping_asset_count] if args.key?(:overlapping_asset_count)
  @preference_set_findings = args[:preference_set_findings] if args.key?(:preference_set_findings)
end