Class: Google::Apis::DatamigrationV1::EntityIssue

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EntityIssue

Returns a new instance of EntityIssue.



1780
1781
1782
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1780

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

Instance Attribute Details

#codeString

Error/Warning code Corresponds to the JSON property code

Returns:

  • (String)


1743
1744
1745
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1743

def code
  @code
end

#ddlString

The ddl which caused the issue, if relevant. Corresponds to the JSON property ddl

Returns:

  • (String)


1748
1749
1750
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1748

def ddl
  @ddl
end

#entity_typeString

The entity type (if the DDL is for a sub entity). Corresponds to the JSON property entityType

Returns:

  • (String)


1753
1754
1755
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1753

def entity_type
  @entity_type
end

#idString

Unique Issue ID. Corresponds to the JSON property id

Returns:

  • (String)


1758
1759
1760
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1758

def id
  @id
end

#messageString

Issue detailed message Corresponds to the JSON property message

Returns:

  • (String)


1763
1764
1765
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1763

def message
  @message
end

#positionGoogle::Apis::DatamigrationV1::Position

Issue position. Corresponds to the JSON property position



1768
1769
1770
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1768

def position
  @position
end

#severityString

Severity of the issue Corresponds to the JSON property severity

Returns:

  • (String)


1773
1774
1775
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1773

def severity
  @severity
end

#typeString

The type of the issue. Corresponds to the JSON property type

Returns:

  • (String)


1778
1779
1780
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1778

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1785

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