Class: OCI::Jms::Models::Agent

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/jms/models/agent.rb

Overview

Information about the agent.

Constant Summary collapse

TYPE_ENUM =
[
  TYPE_OMA = 'OMA'.freeze,
  TYPE_OCA = 'OCA'.freeze,
  TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
JAVA_SECURITY_STATUS_ENUM =
[
  JAVA_SECURITY_STATUS_EARLY_ACCESS = 'EARLY_ACCESS'.freeze,
  JAVA_SECURITY_STATUS_UNKNOWN = 'UNKNOWN'.freeze,
  JAVA_SECURITY_STATUS_UP_TO_DATE = 'UP_TO_DATE'.freeze,
  JAVA_SECURITY_STATUS_UPDATE_REQUIRED = 'UPDATE_REQUIRED'.freeze,
  JAVA_SECURITY_STATUS_UPGRADE_REQUIRED = 'UPGRADE_REQUIRED'.freeze,
  JAVA_SECURITY_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Agent

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/oci/jms/models/agent.rb', line 86

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

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

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

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

  self.java_version = attributes[:'javaVersion'] if attributes[:'javaVersion']

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

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

  self.java_security_status = attributes[:'javaSecurityStatus'] if attributes[:'javaSecurityStatus']

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

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

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

Instance Attribute Details

#display_nameString

[Required] The name of the agent.

Returns:

  • (String)


30
31
32
# File 'lib/oci/jms/models/agent.rb', line 30

def display_name
  @display_name
end

#java_security_statusString

[Required] The security status of the Java Runtime.

Returns:

  • (String)


42
43
44
# File 'lib/oci/jms/models/agent.rb', line 42

def java_security_status
  @java_security_status
end

#java_versionString

[Required] The java version.

Returns:

  • (String)


38
39
40
# File 'lib/oci/jms/models/agent.rb', line 38

def java_version
  @java_version
end

#pluginsArray<OCI::Jms::Models::Plugin>

[Required] A list of plugins installed on this agent.

Returns:



47
48
49
# File 'lib/oci/jms/models/agent.rb', line 47

def plugins
  @plugins
end

#typeString

[Required] The agent type.

Returns:

  • (String)


34
35
36
# File 'lib/oci/jms/models/agent.rb', line 34

def type
  @type
end

Class Method Details

.attribute_mapObject

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



50
51
52
53
54
55
56
57
58
59
60
# File 'lib/oci/jms/models/agent.rb', line 50

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'display_name': :'displayName',
    'type': :'type',
    'java_version': :'javaVersion',
    'java_security_status': :'javaSecurityStatus',
    'plugins': :'plugins'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



63
64
65
66
67
68
69
70
71
72
73
# File 'lib/oci/jms/models/agent.rb', line 63

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'display_name': :'String',
    'type': :'String',
    'java_version': :'String',
    'java_security_status': :'String',
    'plugins': :'Array<OCI::Jms::Models::Plugin>'
    # 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



148
149
150
151
152
153
154
155
156
157
# File 'lib/oci/jms/models/agent.rb', line 148

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

  self.class == other.class &&
    display_name == other.display_name &&
    type == other.type &&
    java_version == other.java_version &&
    java_security_status == other.java_security_status &&
    plugins == other.plugins
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



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/oci/jms/models/agent.rb', line 182

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


162
163
164
# File 'lib/oci/jms/models/agent.rb', line 162

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



171
172
173
# File 'lib/oci/jms/models/agent.rb', line 171

def hash
  [display_name, type, java_version, java_security_status, plugins].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



215
216
217
218
219
220
221
222
223
224
# File 'lib/oci/jms/models/agent.rb', line 215

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



209
210
211
# File 'lib/oci/jms/models/agent.rb', line 209

def to_s
  to_hash.to_s
end