Class: OCI::DataSafe::Models::SqlFirewallAllowedSqlDimensions

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb

Overview

The dimensions available for SQL Firewall allow SQL analytics.

Constant Summary collapse

SQL_LEVEL_ENUM =
[
  SQL_LEVEL_USER_ISSUED_SQL = 'USER_ISSUED_SQL'.freeze,
  SQL_LEVEL_ALL_SQL = 'ALL_SQL'.freeze,
  SQL_LEVEL_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze,
  LIFECYCLE_STATE_DELETED = 'DELETED'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ SqlFirewallAllowedSqlDimensions

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :sql_firewall_policy_id (String)

    The value to assign to the #sql_firewall_policy_id property

  • :sql_level (String)

    The value to assign to the #sql_level property

  • :db_user_name (String)

    The value to assign to the #db_user_name property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 78

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

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.sql_firewall_policy_id = attributes[:'sqlFirewallPolicyId'] if attributes[:'sqlFirewallPolicyId']

  raise 'You cannot provide both :sqlFirewallPolicyId and :sql_firewall_policy_id' if attributes.key?(:'sqlFirewallPolicyId') && attributes.key?(:'sql_firewall_policy_id')

  self.sql_firewall_policy_id = attributes[:'sql_firewall_policy_id'] if attributes[:'sql_firewall_policy_id']

  self.sql_level = attributes[:'sqlLevel'] if attributes[:'sqlLevel']

  raise 'You cannot provide both :sqlLevel and :sql_level' if attributes.key?(:'sqlLevel') && attributes.key?(:'sql_level')

  self.sql_level = attributes[:'sql_level'] if attributes[:'sql_level']

  self.db_user_name = attributes[:'dbUserName'] if attributes[:'dbUserName']

  raise 'You cannot provide both :dbUserName and :db_user_name' if attributes.key?(:'dbUserName') && attributes.key?(:'db_user_name')

  self.db_user_name = attributes[:'db_user_name'] if attributes[:'db_user_name']

  self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState']

  raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state')

  self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state']
end

Instance Attribute Details

#db_user_nameString

The database user name.

Returns:

  • (String)


38
39
40
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 38

def db_user_name
  @db_user_name
end

#lifecycle_stateString

The current state of the SQL Firewall allowed SQL.

Returns:

  • (String)


42
43
44
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 42

def lifecycle_state
  @lifecycle_state
end

#sql_firewall_policy_idString

The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.

Returns:

  • (String)


27
28
29
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 27

def sql_firewall_policy_id
  @sql_firewall_policy_id
end

#sql_levelString

Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Returns:

  • (String)


34
35
36
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 34

def sql_level
  @sql_level
end

Class Method Details

.attribute_mapObject

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



45
46
47
48
49
50
51
52
53
54
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 45

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'sql_firewall_policy_id': :'sqlFirewallPolicyId',
    'sql_level': :'sqlLevel',
    'db_user_name': :'dbUserName',
    'lifecycle_state': :'lifecycleState'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



57
58
59
60
61
62
63
64
65
66
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 57

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'sql_firewall_policy_id': :'String',
    'sql_level': :'String',
    'db_user_name': :'String',
    'lifecycle_state': :'String'
    # 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



142
143
144
145
146
147
148
149
150
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 142

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

  self.class == other.class &&
    sql_firewall_policy_id == other.sql_firewall_policy_id &&
    sql_level == other.sql_level &&
    db_user_name == other.db_user_name &&
    lifecycle_state == other.lifecycle_state
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



175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 175

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


155
156
157
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 155

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



164
165
166
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 164

def hash
  [sql_firewall_policy_id, sql_level, db_user_name, lifecycle_state].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



208
209
210
211
212
213
214
215
216
217
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 208

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



202
203
204
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 202

def to_s
  to_hash.to_s
end