Class: OCI::DatabaseMigration::Models::CollectTracesData

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database_migration/models/collect_traces_data.rb

Overview

Information regarding the DB trace and alert log collection

Constant Summary collapse

COLLECT_TRACES_STATE_ENUM =
[
  COLLECT_TRACES_STATE_IN_PROGRESS = 'IN_PROGRESS'.freeze,
  COLLECT_TRACES_STATE_SUCCEEDED = 'SUCCEEDED'.freeze,
  COLLECT_TRACES_STATE_FAILED = 'FAILED'.freeze,
  COLLECT_TRACES_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 = {}) ⇒ CollectTracesData

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :bucket_name (String)

    The value to assign to the #bucket_name property

  • :namespace (String)

    The value to assign to the #namespace property

  • :object_name (String)

    The value to assign to the #object_name property

  • :collect_traces_state (String)

    The value to assign to the #collect_traces_state property



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 73

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.bucket_name = attributes[:'bucketName'] if attributes[:'bucketName']

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

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

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

  self.object_name = attributes[:'objectName'] if attributes[:'objectName']

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

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

  self.collect_traces_state = attributes[:'collectTracesState'] if attributes[:'collectTracesState']

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

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

Instance Attribute Details

#bucket_nameString

[Required] Name of the bucket containing the file.

Returns:

  • (String)


22
23
24
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 22

def bucket_name
  @bucket_name
end

#collect_traces_stateString

[Required] Status of trace collection process.

Returns:

  • (String)


37
38
39
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 37

def collect_traces_state
  @collect_traces_state
end

#namespaceString

[Required] Object Storage namespace.

Returns:

  • (String)


27
28
29
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 27

def namespace
  @namespace
end

#object_nameString

[Required] Object name.

Returns:

  • (String)


32
33
34
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 32

def object_name
  @object_name
end

Class Method Details

.attribute_mapObject

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



40
41
42
43
44
45
46
47
48
49
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 40

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'bucket_name': :'bucketName',
    'namespace': :'namespace',
    'object_name': :'objectName',
    'collect_traces_state': :'collectTracesState'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



52
53
54
55
56
57
58
59
60
61
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 52

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'bucket_name': :'String',
    'namespace': :'String',
    'object_name': :'String',
    'collect_traces_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



120
121
122
123
124
125
126
127
128
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 120

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

  self.class == other.class &&
    bucket_name == other.bucket_name &&
    namespace == other.namespace &&
    object_name == other.object_name &&
    collect_traces_state == other.collect_traces_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



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 153

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


133
134
135
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 133

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



142
143
144
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 142

def hash
  [bucket_name, namespace, object_name, collect_traces_state].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



186
187
188
189
190
191
192
193
194
195
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 186

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



180
181
182
# File 'lib/oci/database_migration/models/collect_traces_data.rb', line 180

def to_s
  to_hash.to_s
end