Class: OCI::Bds::Models::CreateBdsInstanceDetails
- Inherits:
-
Object
- Object
- OCI::Bds::Models::CreateBdsInstanceDetails
- Defined in:
- lib/oci/bds/models/create_bds_instance_details.rb
Overview
The information about new BDS instance
Instance Attribute Summary collapse
-
#cluster_admin_password ⇒ String
[Required] Base-64 encoded password for Cloudera Manager admin user.
-
#cluster_public_key ⇒ String
[Required] The SSH public key used to authenticate the cluster connection.
-
#cluster_version ⇒ String
[Required] Version of the Hadoop distribution.
-
#compartment_id ⇒ String
[Required] The OCID of the compartment.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#display_name ⇒ String
[Required] Name of the BDS instance.
-
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope.
-
#is_high_availability ⇒ BOOLEAN
[Required] Boolean flag specifying whether or not the cluster is HA.
-
#is_secure ⇒ BOOLEAN
[Required] Boolean flag specifying whether or not the cluster should be setup as secure.
-
#network_config ⇒ OCI::Bds::Models::NetworkConfig
Additional configuration of customer's network.
-
#nodes ⇒ Array<OCI::Bds::Models::CreateNodeDetails>
[Required] The list of nodes in the BDS 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 = {}) ⇒ CreateBdsInstanceDetails
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 = {}) ⇒ CreateBdsInstanceDetails
Initializes the object
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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 113 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.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId'] raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id') self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id'] 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.cluster_version = attributes[:'clusterVersion'] if attributes[:'clusterVersion'] raise 'You cannot provide both :clusterVersion and :cluster_version' if attributes.key?(:'clusterVersion') && attributes.key?(:'cluster_version') self.cluster_version = attributes[:'cluster_version'] if attributes[:'cluster_version'] self.cluster_public_key = attributes[:'clusterPublicKey'] if attributes[:'clusterPublicKey'] raise 'You cannot provide both :clusterPublicKey and :cluster_public_key' if attributes.key?(:'clusterPublicKey') && attributes.key?(:'cluster_public_key') self.cluster_public_key = attributes[:'cluster_public_key'] if attributes[:'cluster_public_key'] self.cluster_admin_password = attributes[:'clusterAdminPassword'] if attributes[:'clusterAdminPassword'] raise 'You cannot provide both :clusterAdminPassword and :cluster_admin_password' if attributes.key?(:'clusterAdminPassword') && attributes.key?(:'cluster_admin_password') self.cluster_admin_password = attributes[:'cluster_admin_password'] if attributes[:'cluster_admin_password'] self.is_high_availability = attributes[:'isHighAvailability'] unless attributes[:'isHighAvailability'].nil? self.is_high_availability = false if is_high_availability.nil? && !attributes.key?(:'isHighAvailability') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :isHighAvailability and :is_high_availability' if attributes.key?(:'isHighAvailability') && attributes.key?(:'is_high_availability') self.is_high_availability = attributes[:'is_high_availability'] unless attributes[:'is_high_availability'].nil? self.is_high_availability = false if is_high_availability.nil? && !attributes.key?(:'isHighAvailability') && !attributes.key?(:'is_high_availability') # rubocop:disable Style/StringLiterals self.is_secure = attributes[:'isSecure'] unless attributes[:'isSecure'].nil? self.is_secure = true if is_secure.nil? && !attributes.key?(:'isSecure') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :isSecure and :is_secure' if attributes.key?(:'isSecure') && attributes.key?(:'is_secure') self.is_secure = attributes[:'is_secure'] unless attributes[:'is_secure'].nil? self.is_secure = true if is_secure.nil? && !attributes.key?(:'isSecure') && !attributes.key?(:'is_secure') # rubocop:disable Style/StringLiterals self.network_config = attributes[:'networkConfig'] if attributes[:'networkConfig'] raise 'You cannot provide both :networkConfig and :network_config' if attributes.key?(:'networkConfig') && attributes.key?(:'network_config') self.network_config = attributes[:'network_config'] if attributes[:'network_config'] self.nodes = attributes[:'nodes'] if attributes[:'nodes'] self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] end |
Instance Attribute Details
#cluster_admin_password ⇒ String
[Required] Base-64 encoded password for Cloudera Manager admin user
28 29 30 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 28 def cluster_admin_password @cluster_admin_password end |
#cluster_public_key ⇒ String
[Required] The SSH public key used to authenticate the cluster connection.
24 25 26 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 24 def cluster_public_key @cluster_public_key end |
#cluster_version ⇒ String
[Required] Version of the Hadoop distribution
20 21 22 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 20 def cluster_version @cluster_version end |
#compartment_id ⇒ String
[Required] The OCID of the compartment
12 13 14 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 12 def compartment_id @compartment_id end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}
56 57 58 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 56 def @defined_tags end |
#display_name ⇒ String
[Required] Name of the BDS instance
16 17 18 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 16 def display_name @display_name end |
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {\"bar-key\": \"value\"}
50 51 52 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 50 def @freeform_tags end |
#is_high_availability ⇒ BOOLEAN
[Required] Boolean flag specifying whether or not the cluster is HA
32 33 34 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 32 def is_high_availability @is_high_availability end |
#is_secure ⇒ BOOLEAN
[Required] Boolean flag specifying whether or not the cluster should be setup as secure.
36 37 38 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 36 def is_secure @is_secure end |
#network_config ⇒ OCI::Bds::Models::NetworkConfig
Additional configuration of customer's network.
40 41 42 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 40 def network_config @network_config end |
#nodes ⇒ Array<OCI::Bds::Models::CreateNodeDetails>
[Required] The list of nodes in the BDS instance
44 45 46 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 44 def nodes @nodes end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 59 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'compartmentId', 'display_name': :'displayName', 'cluster_version': :'clusterVersion', 'cluster_public_key': :'clusterPublicKey', 'cluster_admin_password': :'clusterAdminPassword', 'is_high_availability': :'isHighAvailability', 'is_secure': :'isSecure', 'network_config': :'networkConfig', 'nodes': :'nodes', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 78 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'String', 'display_name': :'String', 'cluster_version': :'String', 'cluster_public_key': :'String', 'cluster_admin_password': :'String', 'is_high_availability': :'BOOLEAN', 'is_secure': :'BOOLEAN', 'network_config': :'OCI::Bds::Models::NetworkConfig', 'nodes': :'Array<OCI::Bds::Models::CreateNodeDetails>', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 193 def ==(other) return true if equal?(other) self.class == other.class && compartment_id == other.compartment_id && display_name == other.display_name && cluster_version == other.cluster_version && cluster_public_key == other.cluster_public_key && cluster_admin_password == other.cluster_admin_password && is_high_availability == other.is_high_availability && is_secure == other.is_secure && network_config == other.network_config && nodes == other.nodes && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 233 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
213 214 215 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 213 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
222 223 224 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 222 def hash [compartment_id, display_name, cluster_version, cluster_public_key, cluster_admin_password, is_high_availability, is_secure, network_config, nodes, , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
266 267 268 269 270 271 272 273 274 275 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 266 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
260 261 262 |
# File 'lib/oci/bds/models/create_bds_instance_details.rb', line 260 def to_s to_hash.to_s end |