Class: NutanixClustermgmt::ClustermgmtV40ConfigUploadInfoNodeItem

Inherits:
ApiModelBase
  • Object
show all
Defined in:
lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb

Overview

Upload information for a node.

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ApiModelBase

_deserialize, #_to_hash, #to_body, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ ClustermgmtV40ConfigUploadInfoNodeItem

Initializes the object



110
111
112
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
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 110

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `NutanixClustermgmt::ClustermgmtV40ConfigUploadInfoNodeItem` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  acceptable_attribute_map = self.class.acceptable_attribute_map
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!acceptable_attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `NutanixClustermgmt::ClustermgmtV40ConfigUploadInfoNodeItem`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'is_hypervisor_upload_required')
    self.is_hypervisor_upload_required = attributes[:'is_hypervisor_upload_required']
  end

  if attributes.key?(:'is_imaging_mandatory')
    self.is_imaging_mandatory = attributes[:'is_imaging_mandatory']
  end

  if attributes.key?(:'node_uuid')
    self.node_uuid = attributes[:'node_uuid']
  end

  if attributes.key?(:'available_hypervisor_iso_error')
    self.available_hypervisor_iso_error = attributes[:'available_hypervisor_iso_error']
  end

  if attributes.key?(:'required_hypervisor_type')
    self.required_hypervisor_type = attributes[:'required_hypervisor_type']
  end

  if attributes.key?(:'is_node_compatible')
    self.is_node_compatible = attributes[:'is_node_compatible']
  end

  if attributes.key?(:'md5_sum')
    self.md5_sum = attributes[:'md5_sum']
  end

  if attributes.key?(:'bundle_name')
    self.bundle_name = attributes[:'bundle_name']
  end
end

Instance Attribute Details

#available_hypervisor_iso_errorObject

Error message if any, for available hypervisor ISO.



29
30
31
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 29

def available_hypervisor_iso_error
  @available_hypervisor_iso_error
end

#bundle_nameObject

Name of the hypervisor bundle.



40
41
42
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 40

def bundle_name
  @bundle_name
end

#is_hypervisor_upload_requiredObject

Provides information on whether hypervisor ISO upload is required or not. This API is not supported for XEN hypervisor type.



20
21
22
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 20

def is_hypervisor_upload_required
  @is_hypervisor_upload_required
end

#is_imaging_mandatoryObject

Indicates if imaging is required or not.



23
24
25
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 23

def is_imaging_mandatory
  @is_imaging_mandatory
end

#is_node_compatibleObject

Indicates if node is compatible or not.



34
35
36
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 34

def is_node_compatible
  @is_node_compatible
end

#md5_sumObject

Md5sum of ISO.



37
38
39
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 37

def md5_sum
  @md5_sum
end

#node_uuidObject

UUID of the host.



26
27
28
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 26

def node_uuid
  @node_uuid
end

#required_hypervisor_typeObject

Returns the value of attribute required_hypervisor_type.



31
32
33
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 31

def required_hypervisor_type
  @required_hypervisor_type
end

Class Method Details

.acceptable_attribute_mapObject

Returns attribute mapping this model knows about



79
80
81
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 79

def self.acceptable_attribute_map
  attribute_map
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



84
85
86
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 84

def self.acceptable_attributes
  acceptable_attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 65

def self.attribute_map
  {
    :'is_hypervisor_upload_required' => :'isHypervisorUploadRequired',
    :'is_imaging_mandatory' => :'isImagingMandatory',
    :'node_uuid' => :'nodeUuid',
    :'available_hypervisor_iso_error' => :'availableHypervisorIsoError',
    :'required_hypervisor_type' => :'requiredHypervisorType',
    :'is_node_compatible' => :'isNodeCompatible',
    :'md5_sum' => :'md5Sum',
    :'bundle_name' => :'bundleName'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash



263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 263

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{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[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



103
104
105
106
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 103

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 89

def self.openapi_types
  {
    :'is_hypervisor_upload_required' => :'Boolean',
    :'is_imaging_mandatory' => :'Boolean',
    :'node_uuid' => :'String',
    :'available_hypervisor_iso_error' => :'String',
    :'required_hypervisor_type' => :'ClustermgmtV40ConfigHypervisorType',
    :'is_node_compatible' => :'Boolean',
    :'md5_sum' => :'String',
    :'bundle_name' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.



235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 235

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      is_hypervisor_upload_required == o.is_hypervisor_upload_required &&
      is_imaging_mandatory == o.is_imaging_mandatory &&
      node_uuid == o.node_uuid &&
      available_hypervisor_iso_error == o.available_hypervisor_iso_error &&
      required_hypervisor_type == o.required_hypervisor_type &&
      is_node_compatible == o.is_node_compatible &&
      md5_sum == o.md5_sum &&
      bundle_name == o.bundle_name
end

#eql?(o) ⇒ Boolean

See Also:

  • `==` method


250
251
252
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 250

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.



256
257
258
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 256

def hash
  [is_hypervisor_upload_required, is_imaging_mandatory, node_uuid, available_hypervisor_iso_error, required_hypervisor_type, is_node_compatible, md5_sum, bundle_name].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 159

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  pattern = Regexp.new(/^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/)
  if !@node_uuid.nil? && @node_uuid !~ pattern
    invalid_properties.push("invalid value for \"node_uuid\", must conform to the pattern #{pattern}.")
  end

  pattern = Regexp.new(/^[a-fA-F0-9]{32}$/)
  if !@md5_sum.nil? && @md5_sum !~ pattern
    invalid_properties.push("invalid value for \"md5_sum\", must conform to the pattern #{pattern}.")
  end

  if !@bundle_name.nil? && @bundle_name.to_s.length > 64
    invalid_properties.push('invalid value for "bundle_name", the character length must be smaller than or equal to 64.')
  end

  invalid_properties
end

#to_hashHash

Returns the object in the form of hash



285
286
287
288
289
290
291
292
293
294
295
296
297
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 285

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

#valid?Boolean

Check to see if the all the properties in the model are valid



181
182
183
184
185
186
187
# File 'lib/nutanix_clustermgmt/models/clustermgmt_v40_config_upload_info_node_item.rb', line 181

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if !@node_uuid.nil? && @node_uuid !~ Regexp.new(/^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/)
  return false if !@md5_sum.nil? && @md5_sum !~ Regexp.new(/^[a-fA-F0-9]{32}$/)
  return false if !@bundle_name.nil? && @bundle_name.to_s.length > 64
  true
end