Class: Google::Apis::MigrationcenterV1alpha1::ReportConfigGroupPreferenceSetAssignment
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ReportConfigGroupPreferenceSetAssignment
- 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
Represents a combination of a group with a preference set.
Instance Attribute Summary collapse
-
#group ⇒ String
Name of the group.
-
#preference_set ⇒ String
Name of the Preference Set.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportConfigGroupPreferenceSetAssignment
constructor
A new instance of ReportConfigGroupPreferenceSetAssignment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportConfigGroupPreferenceSetAssignment
Returns a new instance of ReportConfigGroupPreferenceSetAssignment.
3442 3443 3444 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3442 def initialize(**args) update!(**args) end |
Instance Attribute Details
#group ⇒ String
Name of the group.
Corresponds to the JSON property group
3435 3436 3437 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3435 def group @group end |
#preference_set ⇒ String
Name of the Preference Set.
Corresponds to the JSON property preferenceSet
3440 3441 3442 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3440 def preference_set @preference_set end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3447 3448 3449 3450 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3447 def update!(**args) @group = args[:group] if args.key?(:group) @preference_set = args[:preference_set] if args.key?(:preference_set) end |