Class: OCI::DatabaseTools::Models::DatabaseToolsMcpToolsetCustomizableReportingToolsVersion

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb

Overview

A specific version entry for a CUSTOMIZABLE_REPORTING_TOOLS MCP toolset version

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DatabaseToolsMcpToolsetCustomizableReportingToolsVersion

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 68

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

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

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

  self.default_report_allowed_roles = attributes[:'defaultReportAllowedRoles'] if attributes[:'defaultReportAllowedRoles']

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

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

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

Instance Attribute Details

#default_report_allowed_rolesArray<String>

[Required] The roles granted access to this toolset version by default.

Returns:

  • (Array<String>)


25
26
27
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 25

def default_report_allowed_roles
  @default_report_allowed_roles
end

#descriptionString

[Required] A description of this version.

Returns:

  • (String)


17
18
19
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 17

def description
  @description
end

#featuresArray<String>

Optional feature flags or attributes for this version.

Returns:

  • (Array<String>)


21
22
23
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 21

def features
  @features
end

#toolsArray<OCI::DatabaseTools::Models::DatabaseToolsMcpToolsetVersionTool>

[Required] The tools available in this version.



29
30
31
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 29

def tools
  @tools
end

#versionInteger

[Required] The version number.

Returns:

  • (Integer)


13
14
15
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 13

def version
  @version
end

Class Method Details

.attribute_mapObject

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



32
33
34
35
36
37
38
39
40
41
42
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 32

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'version': :'version',
    'description': :'description',
    'features': :'features',
    'default_report_allowed_roles': :'defaultReportAllowedRoles',
    'tools': :'tools'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'version': :'Integer',
    'description': :'String',
    'features': :'Array<String>',
    'default_report_allowed_roles': :'Array<String>',
    'tools': :'Array<OCI::DatabaseTools::Models::DatabaseToolsMcpToolsetVersionTool>'
    # 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



96
97
98
99
100
101
102
103
104
105
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 96

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

  self.class == other.class &&
    version == other.version &&
    description == other.description &&
    features == other.features &&
    default_report_allowed_roles == other.default_report_allowed_roles &&
    tools == other.tools
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



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 130

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


110
111
112
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 110

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



119
120
121
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 119

def hash
  [version, description, features, default_report_allowed_roles, tools].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



163
164
165
166
167
168
169
170
171
172
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 163

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



157
158
159
# File 'lib/oci/database_tools/models/database_tools_mcp_toolset_customizable_reporting_tools_version.rb', line 157

def to_s
  to_hash.to_s
end