Class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupFinding
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupFinding
- 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
-
#asset_aggregate_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
-
#asset_type ⇒ String
Output only.
-
#database_type ⇒ String
Output only.
-
#description ⇒ String
Description for this group finding.
-
#display_name ⇒ String
Display Name for this group finding.
-
#group ⇒ String
Output only.
-
#overlapping_asset_count ⇒ Fixnum
This field is deprecated, do not rely on it having a value.
-
#preference_set_findings ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupPreferenceSetFinding>
Findings for each of the PreferenceSets for this group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportSummaryGroupFinding
constructor
A new instance of ReportSummaryGroupFinding.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportSummaryGroupFinding
Returns a new instance of ReportSummaryGroupFinding.
5629 5630 5631 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5629 def initialize(**args) update!(**args) end |
Instance Attribute Details
#asset_aggregate_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
Corresponds to the JSON property assetAggregateStats
5591 5592 5593 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5591 def asset_aggregate_stats @asset_aggregate_stats end |
#asset_type ⇒ String
Output only. Asset type for the group finding.
Corresponds to the JSON property assetType
5596 5597 5598 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5596 def asset_type @asset_type end |
#database_type ⇒ String
Output only. Source asset database type for the group finding. Only present
for databases.
Corresponds to the JSON property databaseType
5602 5603 5604 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5602 def database_type @database_type end |
#description ⇒ String
Description for this group finding.
Corresponds to the JSON property description
5607 5608 5609 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5607 def description @description end |
#display_name ⇒ String
Display Name for this group finding.
Corresponds to the JSON property displayName
5612 5613 5614 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5612 def display_name @display_name end |
#group ⇒ String
Output only. Full name of the group.
Corresponds to the JSON property group
5617 5618 5619 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5617 def group @group end |
#overlapping_asset_count ⇒ Fixnum
This field is deprecated, do not rely on it having a value.
Corresponds to the JSON property overlappingAssetCount
5622 5623 5624 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5622 def overlapping_asset_count @overlapping_asset_count end |
#preference_set_findings ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupPreferenceSetFinding>
Findings for each of the PreferenceSets for this group.
Corresponds to the JSON property preferenceSetFindings
5627 5628 5629 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5627 def preference_set_findings @preference_set_findings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5634 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 |