Class: Google::Apis::MigrationcenterV1alpha1::IssueCompatibilityIssue

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

Details about a compatibility issue.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IssueCompatibilityIssue

Returns a new instance of IssueCompatibilityIssue.



3598
3599
3600
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3598

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

Instance Attribute Details

#associated_objectString

Output only. Name of the object associated with this compatibility issue relative to the relevant asset. Does not represent a fully qualified resource name and is not intended for programmatic use. Corresponds to the JSON property associatedObject

Returns:

  • (String)


3579
3580
3581
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3579

def associated_object
  @associated_object
end

#associated_object_typeString

Output only. Type of object associated with this migration compatibility issue. Corresponds to the JSON property associatedObjectType

Returns:

  • (String)


3584
3585
3586
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3584

def associated_object_type
  @associated_object_type
end

#associated_valueString

Output only. A string representation of actual value associated with this issue. Some values may contain aggregated information, such as a flag name and the actual value assigned to it. Corresponds to the JSON property associatedValue

Returns:

  • (String)


3591
3592
3593
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3591

def associated_value
  @associated_value
end

#categoryString

Output only. Category of this compatibility issue. Corresponds to the JSON property category

Returns:

  • (String)


3596
3597
3598
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3596

def category
  @category
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3603
3604
3605
3606
3607
3608
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3603

def update!(**args)
  @associated_object = args[:associated_object] if args.key?(:associated_object)
  @associated_object_type = args[:associated_object_type] if args.key?(:associated_object_type)
  @associated_value = args[:associated_value] if args.key?(:associated_value)
  @category = args[:category] if args.key?(:category)
end