Class: Google::Apis::MigrationcenterV1alpha1::Issue
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::Issue
- 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
An issue associated with a migration.
Instance Attribute Summary collapse
-
#compatibility_issue ⇒ Google::Apis::MigrationcenterV1alpha1::IssueCompatibilityIssue
Details about a compatibility issue.
-
#description ⇒ String
Output only.
-
#issue_code ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Issue
constructor
A new instance of Issue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Issue
Returns a new instance of Issue.
4697 4698 4699 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4697 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compatibility_issue ⇒ Google::Apis::MigrationcenterV1alpha1::IssueCompatibilityIssue
Details about a compatibility issue.
Corresponds to the JSON property compatibilityIssue
4685 4686 4687 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4685 def compatibility_issue @compatibility_issue end |
#description ⇒ String
Output only. English description of the issue.
Corresponds to the JSON property description
4690 4691 4692 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4690 def description @description end |
#issue_code ⇒ String
Output only. Unique identifier for this issue type.
Corresponds to the JSON property issueCode
4695 4696 4697 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4695 def issue_code @issue_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4702 4703 4704 4705 4706 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4702 def update!(**args) @compatibility_issue = args[:compatibility_issue] if args.key?(:compatibility_issue) @description = args[:description] if args.key?(:description) @issue_code = args[:issue_code] if args.key?(:issue_code) end |