Class: Google::Apis::MigrationcenterV1alpha1::ReportSummary
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ReportSummary
- 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
Describes the Summary view of a Report, which contains aggregated values for all the groups and preference sets included in this Report.
Instance Attribute Summary collapse
-
#all_assets_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
-
#database_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
-
#group_findings ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupFinding>
Findings for each Group included in this report.
-
#virtual_machine_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportSummary
constructor
A new instance of ReportSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportSummary
Returns a new instance of ReportSummary.
5487 5488 5489 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5487 def initialize(**args) update!(**args) end |
Instance Attribute Details
#all_assets_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
Corresponds to the JSON property allAssetsStats
5470 5471 5472 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5470 def all_assets_stats @all_assets_stats end |
#database_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
Corresponds to the JSON property databaseStats
5475 5476 5477 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5475 def database_stats @database_stats end |
#group_findings ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupFinding>
Findings for each Group included in this report.
Corresponds to the JSON property groupFindings
5480 5481 5482 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5480 def group_findings @group_findings end |
#virtual_machine_stats ⇒ Google::Apis::MigrationcenterV1alpha1::ReportSummaryAssetAggregateStats
Aggregate statistics for a collection of assets.
Corresponds to the JSON property virtualMachineStats
5485 5486 5487 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5485 def virtual_machine_stats @virtual_machine_stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5492 5493 5494 5495 5496 5497 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5492 def update!(**args) @all_assets_stats = args[:all_assets_stats] if args.key?(:all_assets_stats) @database_stats = args[:database_stats] if args.key?(:database_stats) @group_findings = args[:group_findings] if args.key?(:group_findings) @virtual_machine_stats = args[:virtual_machine_stats] if args.key?(:virtual_machine_stats) end |