Class: OCI::Core::Models::LaunchInstanceAgentConfigDetails
- Inherits:
-
Object
- Object
- OCI::Core::Models::LaunchInstanceAgentConfigDetails
- Defined in:
- lib/oci/core/models/launch_instance_agent_config_details.rb
Overview
Configuration options for the Oracle Cloud Agent software running on the instance.
Instance Attribute Summary collapse
-
#are_all_plugins_disabled ⇒ BOOLEAN
Whether Oracle Cloud Agent can run all the available plugins.
-
#is_management_disabled ⇒ BOOLEAN
Whether Oracle Cloud Agent can run all the available management plugins.
-
#is_monitoring_disabled ⇒ BOOLEAN
Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins.
-
#plugins_config ⇒ Array<OCI::Core::Models::InstanceAgentPluginConfigDetails>
The configuration of plugins associated with this instance.
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 = {}) ⇒ LaunchInstanceAgentConfigDetails
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 = {}) ⇒ LaunchInstanceAgentConfigDetails
Initializes the object
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 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 96 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.is_monitoring_disabled = attributes[:'isMonitoringDisabled'] unless attributes[:'isMonitoringDisabled'].nil? self.is_monitoring_disabled = false if is_monitoring_disabled.nil? && !attributes.key?(:'isMonitoringDisabled') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :isMonitoringDisabled and :is_monitoring_disabled' if attributes.key?(:'isMonitoringDisabled') && attributes.key?(:'is_monitoring_disabled') self.is_monitoring_disabled = attributes[:'is_monitoring_disabled'] unless attributes[:'is_monitoring_disabled'].nil? self.is_monitoring_disabled = false if is_monitoring_disabled.nil? && !attributes.key?(:'isMonitoringDisabled') && !attributes.key?(:'is_monitoring_disabled') # rubocop:disable Style/StringLiterals self.is_management_disabled = attributes[:'isManagementDisabled'] unless attributes[:'isManagementDisabled'].nil? self.is_management_disabled = false if is_management_disabled.nil? && !attributes.key?(:'isManagementDisabled') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :isManagementDisabled and :is_management_disabled' if attributes.key?(:'isManagementDisabled') && attributes.key?(:'is_management_disabled') self.is_management_disabled = attributes[:'is_management_disabled'] unless attributes[:'is_management_disabled'].nil? self.is_management_disabled = false if is_management_disabled.nil? && !attributes.key?(:'isManagementDisabled') && !attributes.key?(:'is_management_disabled') # rubocop:disable Style/StringLiterals self.are_all_plugins_disabled = attributes[:'areAllPluginsDisabled'] unless attributes[:'areAllPluginsDisabled'].nil? self.are_all_plugins_disabled = false if are_all_plugins_disabled.nil? && !attributes.key?(:'areAllPluginsDisabled') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :areAllPluginsDisabled and :are_all_plugins_disabled' if attributes.key?(:'areAllPluginsDisabled') && attributes.key?(:'are_all_plugins_disabled') self.are_all_plugins_disabled = attributes[:'are_all_plugins_disabled'] unless attributes[:'are_all_plugins_disabled'].nil? self.are_all_plugins_disabled = false if are_all_plugins_disabled.nil? && !attributes.key?(:'areAllPluginsDisabled') && !attributes.key?(:'are_all_plugins_disabled') # rubocop:disable Style/StringLiterals self.plugins_config = attributes[:'pluginsConfig'] if attributes[:'pluginsConfig'] raise 'You cannot provide both :pluginsConfig and :plugins_config' if attributes.key?(:'pluginsConfig') && attributes.key?(:'plugins_config') self.plugins_config = attributes[:'plugins_config'] if attributes[:'plugins_config'] end |
Instance Attribute Details
#are_all_plugins_disabled ⇒ BOOLEAN
Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the #list_instanceagent_available_plugins list_instanceagent_available_plugins} operation in the Oracle Cloud Agent API. For more information about the available plugins, see {Managing Plugins with Oracle Cloud Agent.
56 57 58 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 56 def are_all_plugins_disabled @are_all_plugins_disabled end |
#is_management_disabled ⇒ BOOLEAN
Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the pluginsConfig
object.
-
If
isManagementDisabled
is true, all of the management plugins are disabled, regardless of the per-plugin configuration. -
If
isManagementDisabled
is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in thepluginsConfig
object.
45 46 47 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 45 def is_management_disabled @is_management_disabled end |
#is_monitoring_disabled ⇒ BOOLEAN
Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the pluginsConfig
object.
-
If
isMonitoringDisabled
is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration. -
If
isMonitoringDisabled
is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in thepluginsConfig
object.
27 28 29 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 27 def is_monitoring_disabled @is_monitoring_disabled end |
#plugins_config ⇒ Array<OCI::Core::Models::InstanceAgentPluginConfigDetails>
The configuration of plugins associated with this instance.
60 61 62 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 60 def plugins_config @plugins_config end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
63 64 65 66 67 68 69 70 71 72 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 63 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'is_monitoring_disabled': :'isMonitoringDisabled', 'is_management_disabled': :'isManagementDisabled', 'are_all_plugins_disabled': :'areAllPluginsDisabled', 'plugins_config': :'pluginsConfig' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
75 76 77 78 79 80 81 82 83 84 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 75 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'is_monitoring_disabled': :'BOOLEAN', 'is_management_disabled': :'BOOLEAN', 'are_all_plugins_disabled': :'BOOLEAN', 'plugins_config': :'Array<OCI::Core::Models::InstanceAgentPluginConfigDetails>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
140 141 142 143 144 145 146 147 148 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 140 def ==(other) return true if equal?(other) self.class == other.class && is_monitoring_disabled == other.is_monitoring_disabled && is_management_disabled == other.is_management_disabled && are_all_plugins_disabled == other.are_all_plugins_disabled && plugins_config == other.plugins_config end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 173 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
153 154 155 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 153 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
162 163 164 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 162 def hash [is_monitoring_disabled, is_management_disabled, are_all_plugins_disabled, plugins_config].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
206 207 208 209 210 211 212 213 214 215 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 206 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
200 201 202 |
# File 'lib/oci/core/models/launch_instance_agent_config_details.rb', line 200 def to_s to_hash.to_s end |