Class: OCI::Wlms::Models::RestoreWlsDomainDetails
- Inherits:
-
Object
- Object
- OCI::Wlms::Models::RestoreWlsDomainDetails
- Defined in:
- lib/oci/wlms/models/restore_wls_domain_details.rb
Overview
The configuration details for the restore patches to WebLogic domain operation.
Instance Attribute Summary collapse
-
#is_force_servers_shutdown ⇒ BOOLEAN
If the restore operation required to stop the servers, this option indicates to force shutdown of the servers if they have not shutdown after a period of time.
-
#must_include_domains_sharing_middleware ⇒ BOOLEAN
If the WebLogic Domain being restored shares middleware with other domains, and the restore operation will restore servers in the other domains, this option allows the operation to proceed on all domains that share the same middleware.
-
#servers_to_restore ⇒ Array<OCI::Wlms::Models::ServerToRestore>
List of servers to restore and the backups.
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 = {}) ⇒ RestoreWlsDomainDetails
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 = {}) ⇒ RestoreWlsDomainDetails
Initializes the object
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 55 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_force_servers_shutdown = attributes[:'isForceServersShutdown'] unless attributes[:'isForceServersShutdown'].nil? self.is_force_servers_shutdown = false if is_force_servers_shutdown.nil? && !attributes.key?(:'isForceServersShutdown') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :isForceServersShutdown and :is_force_servers_shutdown' if attributes.key?(:'isForceServersShutdown') && attributes.key?(:'is_force_servers_shutdown') self.is_force_servers_shutdown = attributes[:'is_force_servers_shutdown'] unless attributes[:'is_force_servers_shutdown'].nil? self.is_force_servers_shutdown = false if is_force_servers_shutdown.nil? && !attributes.key?(:'isForceServersShutdown') && !attributes.key?(:'is_force_servers_shutdown') # rubocop:disable Style/StringLiterals self.must_include_domains_sharing_middleware = attributes[:'mustIncludeDomainsSharingMiddleware'] unless attributes[:'mustIncludeDomainsSharingMiddleware'].nil? self.must_include_domains_sharing_middleware = false if must_include_domains_sharing_middleware.nil? && !attributes.key?(:'mustIncludeDomainsSharingMiddleware') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :mustIncludeDomainsSharingMiddleware and :must_include_domains_sharing_middleware' if attributes.key?(:'mustIncludeDomainsSharingMiddleware') && attributes.key?(:'must_include_domains_sharing_middleware') self.must_include_domains_sharing_middleware = attributes[:'must_include_domains_sharing_middleware'] unless attributes[:'must_include_domains_sharing_middleware'].nil? self.must_include_domains_sharing_middleware = false if must_include_domains_sharing_middleware.nil? && !attributes.key?(:'mustIncludeDomainsSharingMiddleware') && !attributes.key?(:'must_include_domains_sharing_middleware') # rubocop:disable Style/StringLiterals self.servers_to_restore = attributes[:'serversToRestore'] if attributes[:'serversToRestore'] raise 'You cannot provide both :serversToRestore and :servers_to_restore' if attributes.key?(:'serversToRestore') && attributes.key?(:'servers_to_restore') self.servers_to_restore = attributes[:'servers_to_restore'] if attributes[:'servers_to_restore'] end |
Instance Attribute Details
#is_force_servers_shutdown ⇒ BOOLEAN
If the restore operation required to stop the servers, this option indicates to force shutdown of the servers if they have not shutdown after a period of time. The timeout can be configured in the WebLogic domain configuration.
14 15 16 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 14 def is_force_servers_shutdown @is_force_servers_shutdown end |
#must_include_domains_sharing_middleware ⇒ BOOLEAN
If the WebLogic Domain being restored shares middleware with other domains, and the restore operation will restore servers in the other domains, this option allows the operation to proceed on all domains that share the same middleware. If not set to true, the restore operation will fail if there is any other domain using the same middleware.
18 19 20 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 18 def must_include_domains_sharing_middleware @must_include_domains_sharing_middleware end |
#servers_to_restore ⇒ Array<OCI::Wlms::Models::ServerToRestore>
List of servers to restore and the backups
22 23 24 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 22 def servers_to_restore @servers_to_restore end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
25 26 27 28 29 30 31 32 33 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 25 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'is_force_servers_shutdown': :'isForceServersShutdown', 'must_include_domains_sharing_middleware': :'mustIncludeDomainsSharingMiddleware', 'servers_to_restore': :'serversToRestore' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
36 37 38 39 40 41 42 43 44 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 36 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'is_force_servers_shutdown': :'BOOLEAN', 'must_include_domains_sharing_middleware': :'BOOLEAN', 'servers_to_restore': :'Array<OCI::Wlms::Models::ServerToRestore>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
91 92 93 94 95 96 97 98 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 91 def ==(other) return true if equal?(other) self.class == other.class && is_force_servers_shutdown == other.is_force_servers_shutdown && must_include_domains_sharing_middleware == other.must_include_domains_sharing_middleware && servers_to_restore == other.servers_to_restore end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 123 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
103 104 105 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 103 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
112 113 114 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 112 def hash [is_force_servers_shutdown, must_include_domains_sharing_middleware, servers_to_restore].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
156 157 158 159 160 161 162 163 164 165 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 156 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
150 151 152 |
# File 'lib/oci/wlms/models/restore_wls_domain_details.rb', line 150 def to_s to_hash.to_s end |