Class: OCI::ManagementAgent::Models::ManagementAgentPluginDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/management_agent/models/management_agent_plugin_details.rb

Overview

The information about the current management agent plugins that agent is having.

Constant Summary collapse

PLUGIN_STATUS_ENUM =
[
  PLUGIN_STATUS_RUNNING = 'RUNNING'.freeze,
  PLUGIN_STATUS_STOPPED = 'STOPPED'.freeze,
  PLUGIN_STATUS_INVALID = 'INVALID'.freeze,
  PLUGIN_STATUS_FAILED = 'FAILED'.freeze,
  PLUGIN_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 = {}) ⇒ ManagementAgentPluginDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :plugin_id (String)

    The value to assign to the #plugin_id property

  • :plugin_name (String)

    The value to assign to the #plugin_name property

  • :plugin_display_name (String)

    The value to assign to the #plugin_display_name property

  • :plugin_version (String)

    The value to assign to the #plugin_version property

  • :plugin_status (String)

    The value to assign to the #plugin_status property

  • :plugin_status_message (String)

    The value to assign to the #plugin_status_message property

  • :is_enabled (BOOLEAN)

    The value to assign to the #is_enabled property



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 91

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

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

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

  self.plugin_name = attributes[:'pluginName'] if attributes[:'pluginName']

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

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

  self.plugin_display_name = attributes[:'pluginDisplayName'] if attributes[:'pluginDisplayName']

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

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

  self.plugin_version = attributes[:'pluginVersion'] if attributes[:'pluginVersion']

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

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

  self.plugin_status = attributes[:'pluginStatus'] if attributes[:'pluginStatus']

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

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

  self.plugin_status_message = attributes[:'pluginStatusMessage'] if attributes[:'pluginStatusMessage']

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

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

  self.is_enabled = attributes[:'isEnabled'] unless attributes[:'isEnabled'].nil?

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

  self.is_enabled = attributes[:'is_enabled'] unless attributes[:'is_enabled'].nil?
end

Instance Attribute Details

#is_enabledBOOLEAN

flag indicating whether the plugin is in enabled mode or disabled mode.

Returns:

  • (BOOLEAN)


46
47
48
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 46

def is_enabled
  @is_enabled
end

#plugin_display_nameString

Management Agent Plugin Identifier, can be renamed

Returns:

  • (String)


30
31
32
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 30

def plugin_display_name
  @plugin_display_name
end

#plugin_idString

Plugin Id

Returns:

  • (String)


22
23
24
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 22

def plugin_id
  @plugin_id
end

#plugin_nameString

[Required] Management Agent Plugin Name

Returns:

  • (String)


26
27
28
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 26

def plugin_name
  @plugin_name
end

#plugin_statusString

Plugin Status

Returns:

  • (String)


38
39
40
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 38

def plugin_status
  @plugin_status
end

#plugin_status_messageString

Status message of the Plugin

Returns:

  • (String)


42
43
44
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 42

def plugin_status_message
  @plugin_status_message
end

#plugin_versionString

Plugin Version

Returns:

  • (String)


34
35
36
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 34

def plugin_version
  @plugin_version
end

Class Method Details

.attribute_mapObject

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



49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 49

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'plugin_id': :'pluginId',
    'plugin_name': :'pluginName',
    'plugin_display_name': :'pluginDisplayName',
    'plugin_version': :'pluginVersion',
    'plugin_status': :'pluginStatus',
    'plugin_status_message': :'pluginStatusMessage',
    'is_enabled': :'isEnabled'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 64

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'plugin_id': :'String',
    'plugin_name': :'String',
    'plugin_display_name': :'String',
    'plugin_version': :'String',
    'plugin_status': :'String',
    'plugin_status_message': :'String',
    'is_enabled': :'BOOLEAN'
    # 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



160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 160

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

  self.class == other.class &&
    plugin_id == other.plugin_id &&
    plugin_name == other.plugin_name &&
    plugin_display_name == other.plugin_display_name &&
    plugin_version == other.plugin_version &&
    plugin_status == other.plugin_status &&
    plugin_status_message == other.plugin_status_message &&
    is_enabled == other.is_enabled
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



196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 196

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


176
177
178
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 176

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



185
186
187
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 185

def hash
  [plugin_id, plugin_name, plugin_display_name, plugin_version, plugin_status, plugin_status_message, is_enabled].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



229
230
231
232
233
234
235
236
237
238
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 229

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



223
224
225
# File 'lib/oci/management_agent/models/management_agent_plugin_details.rb', line 223

def to_s
  to_hash.to_s
end