Class: IbmCloudPower::SAPCreate
- Inherits:
-
Object
- Object
- IbmCloudPower::SAPCreate
- Defined in:
- lib/ibm_cloud_power/models/sap_create.rb
Instance Attribute Summary collapse
-
#deployment_target ⇒ Object
Returns the value of attribute deployment_target.
-
#deployment_type ⇒ Object
Custom SAP Deployment Type Information (For Internal Use Only).
-
#image_id ⇒ Object
Image ID of the sap image to use for the server.
-
#instances ⇒ Object
Returns the value of attribute instances.
-
#name ⇒ Object
Name of the sap pvm-instance.
-
#networks ⇒ Object
The pvm instance networks information.
-
#pin_policy ⇒ Object
Returns the value of attribute pin_policy.
-
#placement_group ⇒ Object
The placement group for the server.
-
#profile_id ⇒ Object
SAP Profile ID for the amount of cores and memory.
-
#ssh_key_name ⇒ Object
The name of the SSH Key to provide to the server for authenticating.
-
#storage_affinity ⇒ Object
Returns the value of attribute storage_affinity.
-
#storage_pool ⇒ Object
Storage Pool for server deployment; if provided then storageAffinity and storageType will be ignored; Only valid when you deploy one of the IBM supplied stock images.
-
#storage_pool_affinity ⇒ Object
Indicates if all volumes attached to the server must reside in the same storage pool; Defaults to true when initially deploying a PVMInstance.
-
#storage_type ⇒ Object
Storage type for server deployment; if storageType is not provided the storage type will default to ‘tier3’.
-
#sys_type ⇒ Object
System type used to host the instance.
-
#user_data ⇒ Object
Cloud init user defined data; For FLS, only cloud-config user-data is supported and data must not be compressed or exceed 63K.
-
#user_tags ⇒ Object
Returns the value of attribute user_tags.
-
#volume_ids ⇒ Object
List of Volume IDs to attach to the pvm-instance on creation.
Class Method Summary collapse
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ SAPCreate
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ SAPCreate
Initializes the object
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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 131 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `IbmCloudPower::SAPCreate` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `IbmCloudPower::SAPCreate`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'deployment_target') self.deployment_target = attributes[:'deployment_target'] end if attributes.key?(:'deployment_type') self.deployment_type = attributes[:'deployment_type'] end if attributes.key?(:'image_id') self.image_id = attributes[:'image_id'] end if attributes.key?(:'instances') self.instances = attributes[:'instances'] end if attributes.key?(:'name') self.name = attributes[:'name'] end if attributes.key?(:'networks') if (value = attributes[:'networks']).is_a?(Array) self.networks = value end end if attributes.key?(:'pin_policy') self.pin_policy = attributes[:'pin_policy'] end if attributes.key?(:'placement_group') self.placement_group = attributes[:'placement_group'] end if attributes.key?(:'profile_id') self.profile_id = attributes[:'profile_id'] end if attributes.key?(:'ssh_key_name') self.ssh_key_name = attributes[:'ssh_key_name'] end if attributes.key?(:'storage_affinity') self.storage_affinity = attributes[:'storage_affinity'] end if attributes.key?(:'storage_pool') self.storage_pool = attributes[:'storage_pool'] end if attributes.key?(:'storage_pool_affinity') self.storage_pool_affinity = attributes[:'storage_pool_affinity'] else self.storage_pool_affinity = true end if attributes.key?(:'storage_type') self.storage_type = attributes[:'storage_type'] end if attributes.key?(:'sys_type') self.sys_type = attributes[:'sys_type'] end if attributes.key?(:'user_data') self.user_data = attributes[:'user_data'] end if attributes.key?(:'user_tags') self. = attributes[:'user_tags'] end if attributes.key?(:'volume_ids') if (value = attributes[:'volume_ids']).is_a?(Array) self.volume_ids = value end end end |
Instance Attribute Details
#deployment_target ⇒ Object
Returns the value of attribute deployment_target.
18 19 20 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 18 def deployment_target @deployment_target end |
#deployment_type ⇒ Object
Custom SAP Deployment Type Information (For Internal Use Only)
21 22 23 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 21 def deployment_type @deployment_type end |
#image_id ⇒ Object
Image ID of the sap image to use for the server
24 25 26 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 24 def image_id @image_id end |
#instances ⇒ Object
Returns the value of attribute instances.
26 27 28 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 26 def instances @instances end |
#name ⇒ Object
Name of the sap pvm-instance
29 30 31 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 29 def name @name end |
#networks ⇒ Object
The pvm instance networks information
32 33 34 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 32 def networks @networks end |
#pin_policy ⇒ Object
Returns the value of attribute pin_policy.
34 35 36 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 34 def pin_policy @pin_policy end |
#placement_group ⇒ Object
The placement group for the server
37 38 39 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 37 def placement_group @placement_group end |
#profile_id ⇒ Object
SAP Profile ID for the amount of cores and memory
40 41 42 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 40 def profile_id @profile_id end |
#ssh_key_name ⇒ Object
The name of the SSH Key to provide to the server for authenticating
43 44 45 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 43 def ssh_key_name @ssh_key_name end |
#storage_affinity ⇒ Object
Returns the value of attribute storage_affinity.
45 46 47 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 45 def storage_affinity @storage_affinity end |
#storage_pool ⇒ Object
Storage Pool for server deployment; if provided then storageAffinity and storageType will be ignored; Only valid when you deploy one of the IBM supplied stock images. Storage pool for a custom image (an imported image or an image that is created from a PVMInstance capture) defaults to the storage pool the image was created in
48 49 50 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 48 def storage_pool @storage_pool end |
#storage_pool_affinity ⇒ Object
Indicates if all volumes attached to the server must reside in the same storage pool; Defaults to true when initially deploying a PVMInstance
51 52 53 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 51 def storage_pool_affinity @storage_pool_affinity end |
#storage_type ⇒ Object
Storage type for server deployment; if storageType is not provided the storage type will default to ‘tier3’.
54 55 56 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 54 def storage_type @storage_type end |
#sys_type ⇒ Object
System type used to host the instance. Only e880, e980, e1080 are supported
57 58 59 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 57 def sys_type @sys_type end |
#user_data ⇒ Object
Cloud init user defined data; For FLS, only cloud-config user-data is supported and data must not be compressed or exceed 63K
60 61 62 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 60 def user_data @user_data end |
#user_tags ⇒ Object
Returns the value of attribute user_tags.
62 63 64 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 62 def end |
#volume_ids ⇒ Object
List of Volume IDs to attach to the pvm-instance on creation
65 66 67 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 65 def volume_ids @volume_ids end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
92 93 94 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 92 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 68 def self.attribute_map { :'deployment_target' => :'deploymentTarget', :'deployment_type' => :'deploymentType', :'image_id' => :'imageID', :'instances' => :'instances', :'name' => :'name', :'networks' => :'networks', :'pin_policy' => :'pinPolicy', :'placement_group' => :'placementGroup', :'profile_id' => :'profileID', :'ssh_key_name' => :'sshKeyName', :'storage_affinity' => :'storageAffinity', :'storage_pool' => :'storagePool', :'storage_pool_affinity' => :'storagePoolAffinity', :'storage_type' => :'storageType', :'sys_type' => :'sysType', :'user_data' => :'userData', :'user_tags' => :'userTags', :'volume_ids' => :'volumeIDs' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
317 318 319 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 317 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
121 122 123 124 125 126 127 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 121 def self.openapi_nullable Set.new([ :'deployment_target', :'storage_affinity', :'user_tags', ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 97 def self.openapi_types { :'deployment_target' => :'DeploymentTarget', :'deployment_type' => :'String', :'image_id' => :'String', :'instances' => :'PVMInstanceMultiCreate', :'name' => :'String', :'networks' => :'Array<PVMInstanceAddNetwork>', :'pin_policy' => :'PinPolicy', :'placement_group' => :'String', :'profile_id' => :'String', :'ssh_key_name' => :'String', :'storage_affinity' => :'StorageAffinity', :'storage_pool' => :'String', :'storage_pool_affinity' => :'Boolean', :'storage_type' => :'String', :'sys_type' => :'String', :'user_data' => :'String', :'user_tags' => :'Array', :'volume_ids' => :'Array<String>' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 279 def ==(o) return true if self.equal?(o) self.class == o.class && deployment_target == o.deployment_target && deployment_type == o.deployment_type && image_id == o.image_id && instances == o.instances && name == o.name && networks == o.networks && pin_policy == o.pin_policy && placement_group == o.placement_group && profile_id == o.profile_id && ssh_key_name == o.ssh_key_name && storage_affinity == o.storage_affinity && storage_pool == o.storage_pool && storage_pool_affinity == o.storage_pool_affinity && storage_type == o.storage_type && sys_type == o.sys_type && user_data == o.user_data && == o. && volume_ids == o.volume_ids end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 347 def _deserialize(type, value) case type.to_sym when :Time Time.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model # models (e.g. Pet) or oneOf klass = IbmCloudPower.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
418 419 420 421 422 423 424 425 426 427 428 429 430 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 418 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 324 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{key}=", nil) elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end end self end |
#eql?(o) ⇒ Boolean
304 305 306 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 304 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
310 311 312 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 310 def hash [deployment_target, deployment_type, image_id, instances, name, networks, pin_policy, placement_group, profile_id, ssh_key_name, storage_affinity, storage_pool, storage_pool_affinity, storage_type, sys_type, user_data, , volume_ids].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 225 def list_invalid_properties invalid_properties = Array.new if @image_id.nil? invalid_properties.push('invalid value for "image_id", image_id cannot be nil.') end if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end if @networks.nil? invalid_properties.push('invalid value for "networks", networks cannot be nil.') end if @profile_id.nil? invalid_properties.push('invalid value for "profile_id", profile_id cannot be nil.') end pattern = Regexp.new(/^[\s]*[A-Za-z][A-Za-z0-9\-]{3,}$/) if @profile_id !~ pattern invalid_properties.push("invalid value for \"profile_id\", must conform to the pattern #{pattern}.") end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
394 395 396 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 394 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
400 401 402 403 404 405 406 407 408 409 410 411 412 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 400 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
388 389 390 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 388 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
253 254 255 256 257 258 259 260 |
# File 'lib/ibm_cloud_power/models/sap_create.rb', line 253 def valid? return false if @image_id.nil? return false if @name.nil? return false if @networks.nil? return false if @profile_id.nil? return false if @profile_id !~ Regexp.new(/^[\s]*[A-Za-z][A-Za-z0-9\-]{3,}$/) true end |