Class: OCI::FleetAppsManagement::Models::ArrayVariable
- Inherits:
-
BaseVariable
- Object
- BaseVariable
- OCI::FleetAppsManagement::Models::ArrayVariable
- Defined in:
- lib/oci/fleet_apps_management/models/array_variable.rb
Overview
Array variable.
Constant Summary
Constants inherited from BaseVariable
Instance Attribute Summary collapse
-
#are_unique_items ⇒ BOOLEAN
If true, array entries will be unique.
- #contains ⇒ OCI::FleetAppsManagement::Models::BaseVariable
-
#default_value ⇒ Object
The default value for this variable.
- #items ⇒ OCI::FleetAppsManagement::Models::BaseVariable
-
#max_items ⇒ Integer
Maximum allowed items in the array.
-
#min_items ⇒ Integer
Minimum allowed items in the array.
Attributes inherited from BaseVariable
#description, #is_required, #title, #type, #visible
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 = {}) ⇒ ArrayVariable
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.
Methods inherited from BaseVariable
Constructor Details
#initialize(attributes = {}) ⇒ ArrayVariable
Initializes the object
88 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 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 88 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['type'] = 'ARRAY' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.items = attributes[:'items'] if attributes[:'items'] self.max_items = attributes[:'maxItems'] if attributes[:'maxItems'] raise 'You cannot provide both :maxItems and :max_items' if attributes.key?(:'maxItems') && attributes.key?(:'max_items') self.max_items = attributes[:'max_items'] if attributes[:'max_items'] self.min_items = attributes[:'minItems'] if attributes[:'minItems'] raise 'You cannot provide both :minItems and :min_items' if attributes.key?(:'minItems') && attributes.key?(:'min_items') self.min_items = attributes[:'min_items'] if attributes[:'min_items'] self.are_unique_items = attributes[:'areUniqueItems'] unless attributes[:'areUniqueItems'].nil? self.are_unique_items = false if are_unique_items.nil? && !attributes.key?(:'areUniqueItems') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :areUniqueItems and :are_unique_items' if attributes.key?(:'areUniqueItems') && attributes.key?(:'are_unique_items') self.are_unique_items = attributes[:'are_unique_items'] unless attributes[:'are_unique_items'].nil? self.are_unique_items = false if are_unique_items.nil? && !attributes.key?(:'areUniqueItems') && !attributes.key?(:'are_unique_items') # rubocop:disable Style/StringLiterals self.default_value = attributes[:'defaultValue'] if attributes[:'defaultValue'] raise 'You cannot provide both :defaultValue and :default_value' if attributes.key?(:'defaultValue') && attributes.key?(:'default_value') self.default_value = attributes[:'default_value'] if attributes[:'default_value'] self.contains = attributes[:'contains'] if attributes[:'contains'] end |
Instance Attribute Details
#are_unique_items ⇒ BOOLEAN
If true, array entries will be unique.
25 26 27 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 25 def are_unique_items @are_unique_items end |
#contains ⇒ OCI::FleetAppsManagement::Models::BaseVariable
32 33 34 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 32 def contains @contains end |
#default_value ⇒ Object
The default value for this variable.
29 30 31 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 29 def default_value @default_value end |
#items ⇒ OCI::FleetAppsManagement::Models::BaseVariable
13 14 15 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 13 def items @items end |
#max_items ⇒ Integer
Maximum allowed items in the array.
17 18 19 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 17 def max_items @max_items end |
#min_items ⇒ Integer
Minimum allowed items in the array.
21 22 23 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 21 def min_items @min_items end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 35 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'type': :'type', 'title': :'title', 'description': :'description', 'is_required': :'isRequired', 'visible': :'visible', 'items': :'items', 'max_items': :'maxItems', 'min_items': :'minItems', 'are_unique_items': :'areUniqueItems', 'default_value': :'defaultValue', 'contains': :'contains' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 54 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'type': :'String', 'title': :'String', 'description': :'String', 'is_required': :'BOOLEAN', 'visible': :'String', 'items': :'OCI::FleetAppsManagement::Models::BaseVariable', 'max_items': :'Integer', 'min_items': :'Integer', 'are_unique_items': :'BOOLEAN', 'default_value': :'Object', 'contains': :'OCI::FleetAppsManagement::Models::BaseVariable' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 136 def ==(other) return true if equal?(other) self.class == other.class && type == other.type && title == other.title && description == other.description && is_required == other.is_required && visible == other.visible && items == other.items && max_items == other.max_items && min_items == other.min_items && are_unique_items == other.are_unique_items && default_value == other.default_value && contains == other.contains end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 176 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
156 157 158 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 156 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
165 166 167 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 165 def hash [type, title, description, is_required, visible, items, max_items, min_items, are_unique_items, default_value, contains].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
209 210 211 212 213 214 215 216 217 218 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 209 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
203 204 205 |
# File 'lib/oci/fleet_apps_management/models/array_variable.rb', line 203 def to_s to_hash.to_s end |