Class: OCI::DatabaseTools::Models::DatabaseToolsSqlReportOracleDatabase

Inherits:
DatabaseToolsSqlReport show all
Defined in:
lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb

Overview

Allows the creation, configuration and management of an SQL Report.

Constant Summary

Constants inherited from DatabaseToolsSqlReport

OCI::DatabaseTools::Models::DatabaseToolsSqlReport::LIFECYCLE_STATE_ENUM, OCI::DatabaseTools::Models::DatabaseToolsSqlReport::TYPE_ENUM

Instance Attribute Summary

Attributes inherited from DatabaseToolsSqlReport

#columns, #compartment_id, #defined_tags, #description, #display_name, #freeform_tags, #id, #instructions, #lifecycle_details, #lifecycle_state, #locks, #purpose, #source, #system_tags, #time_created, #time_updated, #type, #variables

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DatabaseToolsSqlReport

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ DatabaseToolsSqlReportOracleDatabase

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):



87
88
89
90
91
92
93
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 87

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['type'] = 'ORACLE_DATABASE'

  super(attributes)
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 13

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'type': :'type',
    'compartment_id': :'compartmentId',
    'display_name': :'displayName',
    'description': :'description',
    'source': :'source',
    'purpose': :'purpose',
    'instructions': :'instructions',
    'variables': :'variables',
    'columns': :'columns',
    'lifecycle_state': :'lifecycleState',
    'lifecycle_details': :'lifecycleDetails',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'defined_tags': :'definedTags',
    'freeform_tags': :'freeformTags',
    'system_tags': :'systemTags',
    'locks': :'locks'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 39

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'type': :'String',
    'compartment_id': :'String',
    'display_name': :'String',
    'description': :'String',
    'source': :'String',
    'purpose': :'String',
    'instructions': :'String',
    'variables': :'Array<OCI::DatabaseTools::Models::DatabaseToolsSqlReportVariable>',
    'columns': :'Array<OCI::DatabaseTools::Models::DatabaseToolsSqlReportColumn>',
    'lifecycle_state': :'String',
    'lifecycle_details': :'String',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'freeform_tags': :'Hash<String, String>',
    'system_tags': :'Hash<String, Hash<String, Object>>',
    'locks': :'Array<OCI::DatabaseTools::Models::ResourceLock>'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 102

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    id == other.id &&
    type == other.type &&
    compartment_id == other.compartment_id &&
    display_name == other.display_name &&
    description == other.description &&
    source == other.source &&
    purpose == other.purpose &&
    instructions == other.instructions &&
    variables == other.variables &&
    columns == other.columns &&
    lifecycle_state == other.lifecycle_state &&
    lifecycle_details == other.lifecycle_details &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    defined_tags == other.defined_tags &&
    freeform_tags == other.freeform_tags &&
    system_tags == other.system_tags &&
    locks == other.locks
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 149

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


129
130
131
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 129

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



138
139
140
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 138

def hash
  [id, type, compartment_id, display_name, description, source, purpose, instructions, variables, columns, lifecycle_state, lifecycle_details, time_created, time_updated, defined_tags, freeform_tags, system_tags, locks].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



182
183
184
185
186
187
188
189
190
191
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 182

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



176
177
178
# File 'lib/oci/database_tools/models/database_tools_sql_report_oracle_database.rb', line 176

def to_s
  to_hash.to_s
end