Class: VSphereAutomation::Content::ContentLibraryModel
- Inherits:
-
Object
- Object
- VSphereAutomation::Content::ContentLibraryModel
- Defined in:
- lib/vsphere-automation-content/models/content_library_model.rb
Instance Attribute Summary collapse
-
#creation_time ⇒ Object
The date and time when this library was created.
-
#description ⇒ Object
A human-readable description for this library.
-
#id ⇒ Object
An identifier which uniquely identifies this LibraryModel.
-
#last_modified_time ⇒ Object
The date and time when this library was last updated.
-
#last_sync_time ⇒ Object
The date and time when this library was last synchronized.
-
#name ⇒ Object
The name of the library.
-
#optimization_info ⇒ Object
Returns the value of attribute optimization_info.
-
#publish_info ⇒ Object
Returns the value of attribute publish_info.
-
#server_guid ⇒ Object
The unique identifier of the vCenter server where the library exists.
-
#storage_backings ⇒ Object
The list of default storage backings which are available for this library.
-
#subscription_info ⇒ Object
Returns the value of attribute subscription_info.
-
#type ⇒ Object
Returns the value of attribute type.
-
#version ⇒ Object
A version number which is updated on metadata changes.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.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 ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ContentLibraryModel
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 = {}) ⇒ ContentLibraryModel
Initializes the object
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 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 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 89 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 } if attributes.has_key?(:'id') self.id = attributes[:'id'] end if attributes.has_key?(:'creation_time') self.creation_time = attributes[:'creation_time'] end if attributes.has_key?(:'description') self.description = attributes[:'description'] end if attributes.has_key?(:'last_modified_time') self.last_modified_time = attributes[:'last_modified_time'] end if attributes.has_key?(:'last_sync_time') self.last_sync_time = attributes[:'last_sync_time'] end if attributes.has_key?(:'name') self.name = attributes[:'name'] end if attributes.has_key?(:'storage_backings') if (value = attributes[:'storage_backings']).is_a?(Array) self.storage_backings = value end end if attributes.has_key?(:'type') self.type = attributes[:'type'] end if attributes.has_key?(:'optimization_info') self.optimization_info = attributes[:'optimization_info'] end if attributes.has_key?(:'version') self.version = attributes[:'version'] end if attributes.has_key?(:'publish_info') self.publish_info = attributes[:'publish_info'] end if attributes.has_key?(:'subscription_info') self.subscription_info = attributes[:'subscription_info'] end if attributes.has_key?(:'server_guid') self.server_guid = attributes[:'server_guid'] end end |
Instance Attribute Details
#creation_time ⇒ Object
The date and time when this library was created.
18 19 20 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 18 def creation_time @creation_time end |
#description ⇒ Object
A human-readable description for this library.
21 22 23 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 21 def description @description end |
#id ⇒ Object
An identifier which uniquely identifies this LibraryModel.
15 16 17 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 15 def id @id end |
#last_modified_time ⇒ Object
The date and time when this library was last updated. <p> This field is updated automatically when the library properties are changed. This field is not affected by adding, removing, or modifying a library item or its content within the library. Tagging the library or syncing the subscribed library does not alter this field.
24 25 26 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 24 def last_modified_time @last_modified_time end |
#last_sync_time ⇒ Object
The date and time when this library was last synchronized. <p> This field applies only to subscribed libraries. It is updated every time a synchronization is triggered on the library. The value is unset for a local library.
27 28 29 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 27 def last_sync_time @last_sync_time end |
#name ⇒ Object
The name of the library. <p> A Library is identified by a human-readable name. Library names cannot be undefined or an empty string. Names do not have to be unique.
30 31 32 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 30 def name @name end |
#optimization_info ⇒ Object
Returns the value of attribute optimization_info.
37 38 39 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 37 def optimization_info @optimization_info end |
#publish_info ⇒ Object
Returns the value of attribute publish_info.
42 43 44 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 42 def publish_info @publish_info end |
#server_guid ⇒ Object
The unique identifier of the vCenter server where the library exists.
47 48 49 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 47 def server_guid @server_guid end |
#storage_backings ⇒ Object
The list of default storage backings which are available for this library. <p> A StorageBacking defines a default storage location which can be used to store files for library items in this library. Some library items, for instance, virtual machine template items, support files that may be distributed across various storage backings. One or more item files may or may not be located on the default storage backing. <p> Multiple default storage locations are not currently supported but may become supported in future releases.
33 34 35 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 33 def storage_backings @storage_backings end |
#subscription_info ⇒ Object
Returns the value of attribute subscription_info.
44 45 46 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 44 def subscription_info @subscription_info end |
#type ⇒ Object
Returns the value of attribute type.
35 36 37 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 35 def type @type end |
#version ⇒ Object
A version number which is updated on metadata changes. This value allows clients to detect concurrent updates and prevent accidental clobbering of data. <p> This value represents a number which is incremented every time library properties, such as name or description, are changed. It is not incremented by changes to a library item within the library, including adding or removing items. It is also not affected by tagging the library.
40 41 42 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 40 def version @version end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 50 def self.attribute_map { :'id' => :'id', :'creation_time' => :'creation_time', :'description' => :'description', :'last_modified_time' => :'last_modified_time', :'last_sync_time' => :'last_sync_time', :'name' => :'name', :'storage_backings' => :'storage_backings', :'type' => :'type', :'optimization_info' => :'optimization_info', :'version' => :'version', :'publish_info' => :'publish_info', :'subscription_info' => :'subscription_info', :'server_guid' => :'server_guid' } end |
.openapi_types ⇒ Object
Attribute type mapping.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 69 def self.openapi_types { :'id' => :'String', :'creation_time' => :'DateTime', :'description' => :'String', :'last_modified_time' => :'DateTime', :'last_sync_time' => :'DateTime', :'name' => :'String', :'storage_backings' => :'Array<ContentLibraryStorageBacking>', :'type' => :'ContentLibraryModelLibraryType', :'optimization_info' => :'ContentLibraryOptimizationInfo', :'version' => :'String', :'publish_info' => :'ContentLibraryPublishInfo', :'subscription_info' => :'ContentLibrarySubscriptionInfo', :'server_guid' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 165 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && creation_time == o.creation_time && description == o.description && last_modified_time == o.last_modified_time && last_sync_time == o.last_sync_time && name == o.name && storage_backings == o.storage_backings && type == o.type && optimization_info == o.optimization_info && version == o.version && publish_info == o.publish_info && subscription_info == o.subscription_info && server_guid == o.server_guid end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
219 220 221 222 223 224 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 250 251 252 253 254 255 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 219 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN, :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 temp_model = VSphereAutomation::Content.const_get(type).new temp_model.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
285 286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 285 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
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 198 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.openapi_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/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) 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 # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
185 186 187 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 185 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
191 192 193 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 191 def hash [id, creation_time, description, last_modified_time, last_sync_time, name, storage_backings, type, optimization_info, version, publish_info, subscription_info, server_guid].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
152 153 154 155 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 152 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
265 266 267 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 265 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
271 272 273 274 275 276 277 278 279 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 271 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
259 260 261 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 259 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
159 160 161 |
# File 'lib/vsphere-automation-content/models/content_library_model.rb', line 159 def valid? true end |