Class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryGroupPreferenceSetFinding

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/PreferenceSet combination.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportSummaryGroupPreferenceSetFinding

Returns a new instance of ReportSummaryGroupPreferenceSetFinding.



3736
3737
3738
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3736

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

Instance Attribute Details

#descriptionString

Description for the Preference Set. Corresponds to the JSON property description

Returns:

  • (String)


3671
3672
3673
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3671

def description
  @description
end

#display_nameString

Display Name of the Preference Set Corresponds to the JSON property displayName

Returns:

  • (String)


3676
3677
3678
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3676

def display_name
  @display_name
end

#machine_findingGoogle::Apis::MigrationcenterV1alpha1::ReportSummaryMachineFinding

A set of findings that applies to assets of type Virtual/Physical Machine. Corresponds to the JSON property machineFinding



3681
3682
3683
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3681

def machine_finding
  @machine_finding
end

#machine_preferencesGoogle::Apis::MigrationcenterV1alpha1::VirtualMachinePreferences

VirtualMachinePreferences enables you to create sets of assumptions, for example, a geographical location and pricing track, for your migrated virtual machines. The set of preferences influence recommendations for migrating virtual machine assets. Corresponds to the JSON property machinePreferences



3689
3690
3691
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3689

def machine_preferences
  @machine_preferences
end

#monthly_cost_computeGoogle::Apis::MigrationcenterV1alpha1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property monthlyCostCompute



3694
3695
3696
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3694

def monthly_cost_compute
  @monthly_cost_compute
end

#monthly_cost_network_egressGoogle::Apis::MigrationcenterV1alpha1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property monthlyCostNetworkEgress



3699
3700
3701
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3699

def monthly_cost_network_egress
  @monthly_cost_network_egress
end

#monthly_cost_os_licenseGoogle::Apis::MigrationcenterV1alpha1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property monthlyCostOsLicense



3704
3705
3706
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3704

def monthly_cost_os_license
  @monthly_cost_os_license
end

#monthly_cost_otherGoogle::Apis::MigrationcenterV1alpha1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property monthlyCostOther



3709
3710
3711
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3709

def monthly_cost_other
  @monthly_cost_other
end

#monthly_cost_storageGoogle::Apis::MigrationcenterV1alpha1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property monthlyCostStorage



3714
3715
3716
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3714

def monthly_cost_storage
  @monthly_cost_storage
end

#monthly_cost_totalGoogle::Apis::MigrationcenterV1alpha1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property monthlyCostTotal



3719
3720
3721
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3719

def monthly_cost_total
  @monthly_cost_total
end

#preferred_regionString

Target region for this Preference Set Corresponds to the JSON property preferredRegion

Returns:

  • (String)


3724
3725
3726
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3724

def preferred_region
  @preferred_region
end

#pricing_trackString

Text describing the pricing track specified for this Preference Set Corresponds to the JSON property pricingTrack

Returns:

  • (String)


3729
3730
3731
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3729

def pricing_track
  @pricing_track
end

#top_priorityString

Text describing the business priority specified for this Preference Set Corresponds to the JSON property topPriority

Returns:

  • (String)


3734
3735
3736
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3734

def top_priority
  @top_priority
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3741

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @machine_finding = args[:machine_finding] if args.key?(:machine_finding)
  @machine_preferences = args[:machine_preferences] if args.key?(:machine_preferences)
  @monthly_cost_compute = args[:monthly_cost_compute] if args.key?(:monthly_cost_compute)
  @monthly_cost_network_egress = args[:monthly_cost_network_egress] if args.key?(:monthly_cost_network_egress)
  @monthly_cost_os_license = args[:monthly_cost_os_license] if args.key?(:monthly_cost_os_license)
  @monthly_cost_other = args[:monthly_cost_other] if args.key?(:monthly_cost_other)
  @monthly_cost_storage = args[:monthly_cost_storage] if args.key?(:monthly_cost_storage)
  @monthly_cost_total = args[:monthly_cost_total] if args.key?(:monthly_cost_total)
  @preferred_region = args[:preferred_region] if args.key?(:preferred_region)
  @pricing_track = args[:pricing_track] if args.key?(:pricing_track)
  @top_priority = args[:top_priority] if args.key?(:top_priority)
end