Class: OCI::OsManagementHub::Models::UpdateManagedInstanceDetails
- Inherits:
-
Object
- Object
- OCI::OsManagementHub::Models::UpdateManagedInstanceDetails
- Defined in:
- lib/oci/os_management_hub/models/update_managed_instance_details.rb
Overview
Provides the information used to update a managed instance.
Instance Attribute Summary collapse
- #autonomous_settings ⇒ OCI::OsManagementHub::Models::UpdatableAutonomousSettings
-
#description ⇒ String
User-specified description of the managed instance.
-
#notification_topic_id ⇒ String
The OCID for the Oracle Notifications service (ONS) topic.
-
#primary_management_station_id ⇒ String
The OCID of the management station for the instance to use as primary management station.
-
#secondary_management_station_id ⇒ String
The OCID of the management station for the instance to use as secondary management station.
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 = {}) ⇒ UpdateManagedInstanceDetails
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 = {}) ⇒ UpdateManagedInstanceDetails
Initializes the object
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 70 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.description = attributes[:'description'] if attributes[:'description'] self.primary_management_station_id = attributes[:'primaryManagementStationId'] if attributes[:'primaryManagementStationId'] raise 'You cannot provide both :primaryManagementStationId and :primary_management_station_id' if attributes.key?(:'primaryManagementStationId') && attributes.key?(:'primary_management_station_id') self.primary_management_station_id = attributes[:'primary_management_station_id'] if attributes[:'primary_management_station_id'] self.secondary_management_station_id = attributes[:'secondaryManagementStationId'] if attributes[:'secondaryManagementStationId'] raise 'You cannot provide both :secondaryManagementStationId and :secondary_management_station_id' if attributes.key?(:'secondaryManagementStationId') && attributes.key?(:'secondary_management_station_id') self.secondary_management_station_id = attributes[:'secondary_management_station_id'] if attributes[:'secondary_management_station_id'] self.notification_topic_id = attributes[:'notificationTopicId'] if attributes[:'notificationTopicId'] raise 'You cannot provide both :notificationTopicId and :notification_topic_id' if attributes.key?(:'notificationTopicId') && attributes.key?(:'notification_topic_id') self.notification_topic_id = attributes[:'notification_topic_id'] if attributes[:'notification_topic_id'] self.autonomous_settings = attributes[:'autonomousSettings'] if attributes[:'autonomousSettings'] raise 'You cannot provide both :autonomousSettings and :autonomous_settings' if attributes.key?(:'autonomousSettings') && attributes.key?(:'autonomous_settings') self.autonomous_settings = attributes[:'autonomous_settings'] if attributes[:'autonomous_settings'] end |
Instance Attribute Details
#autonomous_settings ⇒ OCI::OsManagementHub::Models::UpdatableAutonomousSettings
31 32 33 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 31 def autonomous_settings @autonomous_settings end |
#description ⇒ String
User-specified description of the managed instance. Avoid entering confidential information.
13 14 15 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 13 def description @description end |
#notification_topic_id ⇒ String
The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
28 29 30 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 28 def notification_topic_id @notification_topic_id end |
#primary_management_station_id ⇒ String
The OCID of the management station for the instance to use as primary management station.
18 19 20 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 18 def primary_management_station_id @primary_management_station_id end |
#secondary_management_station_id ⇒ String
The OCID of the management station for the instance to use as secondary management station.
23 24 25 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 23 def secondary_management_station_id @secondary_management_station_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 34 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'description': :'description', 'primary_management_station_id': :'primaryManagementStationId', 'secondary_management_station_id': :'secondaryManagementStationId', 'notification_topic_id': :'notificationTopicId', 'autonomous_settings': :'autonomousSettings' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 47 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'description': :'String', 'primary_management_station_id': :'String', 'secondary_management_station_id': :'String', 'notification_topic_id': :'String', 'autonomous_settings': :'OCI::OsManagementHub::Models::UpdatableAutonomousSettings' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
110 111 112 113 114 115 116 117 118 119 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 110 def ==(other) return true if equal?(other) self.class == other.class && description == other.description && primary_management_station_id == other.primary_management_station_id && secondary_management_station_id == other.secondary_management_station_id && notification_topic_id == other.notification_topic_id && autonomous_settings == other.autonomous_settings end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 144 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
124 125 126 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 124 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
133 134 135 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 133 def hash [description, primary_management_station_id, secondary_management_station_id, notification_topic_id, autonomous_settings].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
177 178 179 180 181 182 183 184 185 186 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 177 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
171 172 173 |
# File 'lib/oci/os_management_hub/models/update_managed_instance_details.rb', line 171 def to_s to_hash.to_s end |