Class: OCI::Jms::Models::Agent
- Inherits:
- 
      Object
      
        - Object
- OCI::Jms::Models::Agent
 
- 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
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Required] The name of the agent. 
- 
  
    
      #java_security_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Required] The security status of the Java Runtime. 
- 
  
    
      #java_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Required] The java version. 
- 
  
    
      #plugins  ⇒ Array<OCI::Jms::Models::Plugin> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Required] A list of plugins installed on this agent. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Required] The agent type. 
Class Method Summary collapse
- 
  
    
      .attribute_map  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Attribute mapping from ruby-style variable name to JSON key. 
- 
  
    
      .swagger_types  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Attribute type mapping. 
Instance Method Summary collapse
- 
  
    
      #==(other)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Checks equality by comparing each attribute. 
- 
  
    
      #build_from_hash(attributes)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Builds the object from hash. 
- #eql?(other) ⇒ Boolean
- 
  
    
      #hash  ⇒ Fixnum 
    
    
  
  
  
  
  
  
  
  
  
    Calculates hash code according to all attributes. 
- 
  
    
      #initialize(attributes = {})  ⇒ Agent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Initializes the object. 
- 
  
    
      #to_hash  ⇒ Hash 
    
    
  
  
  
  
  
  
  
  
  
    Returns the object in the form of hash. 
- 
  
    
      #to_s  ⇒ String 
    
    
  
  
  
  
  
  
  
  
  
    Returns the string representation of the object. 
Constructor Details
#initialize(attributes = {}) ⇒ Agent
Initializes the object
| 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_name ⇒ String
[Required] The name of the agent.
| 30 31 32 | # File 'lib/oci/jms/models/agent.rb', line 30 def display_name @display_name end | 
#java_security_status ⇒ String
[Required] The security status of the Java Runtime.
| 42 43 44 | # File 'lib/oci/jms/models/agent.rb', line 42 def java_security_status @java_security_status end | 
#java_version ⇒ String
[Required] The java version.
| 38 39 40 | # File 'lib/oci/jms/models/agent.rb', line 38 def java_version @java_version end | 
#plugins ⇒ Array<OCI::Jms::Models::Plugin>
[Required] A list of plugins installed on this agent.
| 47 48 49 | # File 'lib/oci/jms/models/agent.rb', line 47 def plugins @plugins end | 
#type ⇒ String
[Required] The agent type.
| 34 35 36 | # File 'lib/oci/jms/models/agent.rb', line 34 def type @type end | 
Class Method Details
.attribute_map ⇒ Object
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_types ⇒ Object
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.
| 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
| 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
| 162 163 164 | # File 'lib/oci/jms/models/agent.rb', line 162 def eql?(other) self == other end | 
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
| 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_hash ⇒ 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_s ⇒ String
Returns the string representation of the object
| 209 210 211 | # File 'lib/oci/jms/models/agent.rb', line 209 def to_s to_hash.to_s end |