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_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



77
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
# File 'lib/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.rb', line 77

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)


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

def db_user_name
  @db_user_name
end

#lifecycle_stateString

The current state of the SQL firewall allowed SQL.

Returns:

  • (String)


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

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)


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

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)


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

def sql_level
  @sql_level
end

Class Method Details

.attribute_mapObject

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



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

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.



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

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



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

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



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

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


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

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



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

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



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

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



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

def to_s
  to_hash.to_s
end