Class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupFinding

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/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.



6023
6024
6025
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6023

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

Instance Attribute Details

#asset_aggregate_statsGoogle::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats

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



5985
5986
5987
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5985

def asset_aggregate_stats
  @asset_aggregate_stats
end

#asset_typeString

Output only. Asset type for the group finding. Corresponds to the JSON property assetType

Returns:

  • (String)


5990
5991
5992
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5990

def asset_type
  @asset_type
end

#database_typeString

Output only. Source asset database type for the group finding. Only present for databases. Corresponds to the JSON property databaseType

Returns:

  • (String)


5996
5997
5998
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5996

def database_type
  @database_type
end

#descriptionString

Description for this group finding. Corresponds to the JSON property description

Returns:

  • (String)


6001
6002
6003
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6001

def description
  @description
end

#display_nameString

Display Name for this group finding. Corresponds to the JSON property displayName

Returns:

  • (String)


6006
6007
6008
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6006

def display_name
  @display_name
end

#groupString

Output only. Full name of the group. Corresponds to the JSON property group

Returns:

  • (String)


6011
6012
6013
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6011

def group
  @group
end

#overlapping_asset_countFixnum

This field is deprecated, do not rely on it having a value. Corresponds to the JSON property overlappingAssetCount

Returns:

  • (Fixnum)


6016
6017
6018
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6016

def overlapping_asset_count
  @overlapping_asset_count
end

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

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



6021
6022
6023
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6021

def preference_set_findings
  @preference_set_findings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6028

def update!(**args)
  @asset_aggregate_stats = args[:asset_aggregate_stats] if args.key?(:asset_aggregate_stats)
  @asset_type = args[:asset_type] if args.key?(:asset_type)
  @database_type = args[:database_type] if args.key?(:database_type)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @group = args[:group] if args.key?(:group)
  @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