Class: Google::Apis::DatamigrationV1::EntityIssue
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::EntityIssue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
lib/google/apis/datamigration_v1/representations.rb,
lib/google/apis/datamigration_v1/representations.rb
Overview
Issue related to the entity.
Instance Attribute Summary collapse
-
#code ⇒ String
Error/Warning code Corresponds to the JSON property
code
. -
#ddl ⇒ String
The ddl which caused the issue, if relevant.
-
#entity_type ⇒ String
The entity type (if the DDL is for a sub entity).
-
#id ⇒ String
Unique Issue ID.
-
#message ⇒ String
Issue detailed message Corresponds to the JSON property
message
. -
#position ⇒ Google::Apis::DatamigrationV1::Position
Issue position.
-
#severity ⇒ String
Severity of the issue Corresponds to the JSON property
severity
. -
#type ⇒ String
The type of the issue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EntityIssue
constructor
A new instance of EntityIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EntityIssue
Returns a new instance of EntityIssue.
1749 1750 1751 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1749 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
Error/Warning code
Corresponds to the JSON property code
1712 1713 1714 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1712 def code @code end |
#ddl ⇒ String
The ddl which caused the issue, if relevant.
Corresponds to the JSON property ddl
1717 1718 1719 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1717 def ddl @ddl end |
#entity_type ⇒ String
The entity type (if the DDL is for a sub entity).
Corresponds to the JSON property entityType
1722 1723 1724 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1722 def entity_type @entity_type end |
#id ⇒ String
Unique Issue ID.
Corresponds to the JSON property id
1727 1728 1729 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1727 def id @id end |
#message ⇒ String
Issue detailed message
Corresponds to the JSON property message
1732 1733 1734 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1732 def @message end |
#position ⇒ Google::Apis::DatamigrationV1::Position
Issue position.
Corresponds to the JSON property position
1737 1738 1739 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1737 def position @position end |
#severity ⇒ String
Severity of the issue
Corresponds to the JSON property severity
1742 1743 1744 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1742 def severity @severity end |
#type ⇒ String
The type of the issue.
Corresponds to the JSON property type
1747 1748 1749 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1747 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1754 def update!(**args) @code = args[:code] if args.key?(:code) @ddl = args[:ddl] if args.key?(:ddl) @entity_type = args[:entity_type] if args.key?(:entity_type) @id = args[:id] if args.key?(:id) @message = args[:message] if args.key?(:message) @position = args[:position] if args.key?(:position) @severity = args[:severity] if args.key?(:severity) @type = args[:type] if args.key?(:type) end |