Class: Google::Apis::MigrationcenterV1alpha1::IssueCompatibilityIssue
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::IssueCompatibilityIssue
- 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
-
#associated_object ⇒ String
Output only.
-
#associated_object_type ⇒ String
Output only.
-
#associated_value ⇒ String
Output only.
-
#category ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IssueCompatibilityIssue
constructor
A new instance of IssueCompatibilityIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IssueCompatibilityIssue
Returns a new instance of IssueCompatibilityIssue.
4481 4482 4483 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4481 def initialize(**args) update!(**args) end |
Instance Attribute Details
#associated_object ⇒ String
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
4462 4463 4464 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4462 def associated_object @associated_object end |
#associated_object_type ⇒ String
Output only. Type of object associated with this migration compatibility issue.
Corresponds to the JSON property associatedObjectType
4467 4468 4469 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4467 def associated_object_type @associated_object_type end |
#associated_value ⇒ String
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
4474 4475 4476 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4474 def associated_value @associated_value end |
#category ⇒ String
Output only. Category of this compatibility issue.
Corresponds to the JSON property category
4479 4480 4481 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4479 def category @category end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4486 4487 4488 4489 4490 4491 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4486 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 |