Class: OCI::Desktops::Models::DesktopPoolDesktopSummary
- Inherits:
-
Object
- Object
- OCI::Desktops::Models::DesktopPoolDesktopSummary
- Defined in:
- lib/oci/desktops/models/desktop_pool_desktop_summary.rb
Overview
Provides information about a desktop within a desktop pool, such as if it is assigned to a user, the state, owner, desktop pool, resource id, and time created.
Constant Summary collapse
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATING = 'CREATING'.freeze, LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze, LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze, LIFECYCLE_STATE_DELETING = 'DELETING'.freeze, LIFECYCLE_STATE_DELETED = 'DELETED'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#desktop_id ⇒ String
[Required] The OCID of the desktop.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#instance_id ⇒ String
[Required] The OCID of the compute resource used by this desktop.
-
#is_assigned ⇒ BOOLEAN
[Required] Indicates whether the desktop is assigned to a user.
-
#lifecycle_state ⇒ String
[Required] The state of the desktop.
-
#time_created ⇒ DateTime
[Required] The date and time the resource was created.
-
#user_name ⇒ String
The owner of the desktop.
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 = {}) ⇒ DesktopPoolDesktopSummary
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 = {}) ⇒ DesktopPoolDesktopSummary
Initializes the object
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 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 107 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.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState'] raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state') self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state'] self.instance_id = attributes[:'instanceId'] if attributes[:'instanceId'] raise 'You cannot provide both :instanceId and :instance_id' if attributes.key?(:'instanceId') && attributes.key?(:'instance_id') self.instance_id = attributes[:'instance_id'] if attributes[:'instance_id'] self.user_name = attributes[:'userName'] if attributes[:'userName'] raise 'You cannot provide both :userName and :user_name' if attributes.key?(:'userName') && attributes.key?(:'user_name') self.user_name = attributes[:'user_name'] if attributes[:'user_name'] self.desktop_id = attributes[:'desktopId'] if attributes[:'desktopId'] raise 'You cannot provide both :desktopId and :desktop_id' if attributes.key?(:'desktopId') && attributes.key?(:'desktop_id') self.desktop_id = attributes[:'desktop_id'] if attributes[:'desktop_id'] self.is_assigned = attributes[:'isAssigned'] unless attributes[:'isAssigned'].nil? raise 'You cannot provide both :isAssigned and :is_assigned' if attributes.key?(:'isAssigned') && attributes.key?(:'is_assigned') self.is_assigned = attributes[:'is_assigned'] unless attributes[:'is_assigned'].nil? self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated'] raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created') self.time_created = attributes[:'time_created'] if attributes[:'time_created'] 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
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {\"Operations\": {\"CostCenter\": \"42\"}}
59 60 61 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 59 def @defined_tags end |
#desktop_id ⇒ String
[Required] The OCID of the desktop.
38 39 40 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 38 def desktop_id @desktop_id end |
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {\"Department\": \"Finance\"}
52 53 54 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 52 def @freeform_tags end |
#instance_id ⇒ String
[Required] The OCID of the compute resource used by this desktop.
30 31 32 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 30 def instance_id @instance_id end |
#is_assigned ⇒ BOOLEAN
[Required] Indicates whether the desktop is assigned to a user.
42 43 44 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 42 def is_assigned @is_assigned end |
#lifecycle_state ⇒ String
[Required] The state of the desktop.
26 27 28 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 26 def lifecycle_state @lifecycle_state end |
#time_created ⇒ DateTime
[Required] The date and time the resource was created.
46 47 48 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 46 def time_created @time_created end |
#user_name ⇒ String
The owner of the desktop.
34 35 36 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 34 def user_name @user_name end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 62 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'lifecycle_state': :'lifecycleState', 'instance_id': :'instanceId', 'user_name': :'userName', 'desktop_id': :'desktopId', 'is_assigned': :'isAssigned', 'time_created': :'timeCreated', '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 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 78 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'lifecycle_state': :'String', 'instance_id': :'String', 'user_name': :'String', 'desktop_id': :'String', 'is_assigned': :'BOOLEAN', 'time_created': :'DateTime', '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.
182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 182 def ==(other) return true if equal?(other) self.class == other.class && lifecycle_state == other.lifecycle_state && instance_id == other.instance_id && user_name == other.user_name && desktop_id == other.desktop_id && is_assigned == other.is_assigned && time_created == other.time_created && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 219 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
199 200 201 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 199 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
208 209 210 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 208 def hash [lifecycle_state, instance_id, user_name, desktop_id, is_assigned, time_created, , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
252 253 254 255 256 257 258 259 260 261 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 252 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
246 247 248 |
# File 'lib/oci/desktops/models/desktop_pool_desktop_summary.rb', line 246 def to_s to_hash.to_s end |