Class: OCI::Cims::Models::Ticket
- Inherits:
-
Object
- Object
- OCI::Cims::Models::Ticket
- Defined in:
- lib/oci/cims/models/ticket.rb
Overview
Details of Ticket created
Constant Summary collapse
- SEVERITY_ENUM =
[ SEVERITY_HIGHEST = 'HIGHEST'.freeze, SEVERITY_HIGH = 'HIGH'.freeze, SEVERITY_MEDIUM = 'MEDIUM'.freeze, SEVERITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_CLOSED = 'CLOSED'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LIFECYCLE_DETAILS_ENUM =
[ LIFECYCLE_DETAILS_PENDING_WITH_ORACLE = 'PENDING_WITH_ORACLE'.freeze, LIFECYCLE_DETAILS_PENDING_WITH_CUSTOMER = 'PENDING_WITH_CUSTOMER'.freeze, LIFECYCLE_DETAILS_CLOSE_REQUESTED = 'CLOSE_REQUESTED'.freeze, LIFECYCLE_DETAILS_CLOSED = 'CLOSED'.freeze, LIFECYCLE_DETAILS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#description ⇒ String
[Required] Details of ticket.
-
#lifecycle_details ⇒ String
Describes the lifecycle details of a ticket.
-
#lifecycle_state ⇒ String
Describes the lifecycles of a ticket.
-
#resource_list ⇒ Array<OCI::Cims::Models::Resource>
List of resources.
-
#severity ⇒ String
[Required] Severity of the ticket.
-
#ticket_number ⇒ String
Unique ID that identifies a Ticket.
-
#time_created ⇒ Integer
Epoch time of ticket creation.
-
#time_updated ⇒ Integer
Epoch time of ticket updated.
-
#title ⇒ String
[Required] Title of ticket.
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 = {}) ⇒ Ticket
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 = {}) ⇒ Ticket
Initializes the object
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 161 162 163 164 |
# File 'lib/oci/cims/models/ticket.rb', line 117 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.ticket_number = attributes[:'ticketNumber'] if attributes[:'ticketNumber'] raise 'You cannot provide both :ticketNumber and :ticket_number' if attributes.key?(:'ticketNumber') && attributes.key?(:'ticket_number') self.ticket_number = attributes[:'ticket_number'] if attributes[:'ticket_number'] self.severity = attributes[:'severity'] if attributes[:'severity'] self.resource_list = attributes[:'resourceList'] if attributes[:'resourceList'] raise 'You cannot provide both :resourceList and :resource_list' if attributes.key?(:'resourceList') && attributes.key?(:'resource_list') self.resource_list = attributes[:'resource_list'] if attributes[:'resource_list'] self.title = attributes[:'title'] if attributes[:'title'] self.description = attributes[:'description'] if attributes[:'description'] 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.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated'] raise 'You cannot provide both :timeUpdated and :time_updated' if attributes.key?(:'timeUpdated') && attributes.key?(:'time_updated') self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated'] 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.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails'] raise 'You cannot provide both :lifecycleDetails and :lifecycle_details' if attributes.key?(:'lifecycleDetails') && attributes.key?(:'lifecycle_details') self.lifecycle_details = attributes[:'lifecycle_details'] if attributes[:'lifecycle_details'] end |
Instance Attribute Details
#description ⇒ String
[Required] Details of ticket
50 51 52 |
# File 'lib/oci/cims/models/ticket.rb', line 50 def description @description end |
#lifecycle_details ⇒ String
Describes the lifecycle details of a ticket
66 67 68 |
# File 'lib/oci/cims/models/ticket.rb', line 66 def lifecycle_details @lifecycle_details end |
#lifecycle_state ⇒ String
Describes the lifecycles of a ticket
62 63 64 |
# File 'lib/oci/cims/models/ticket.rb', line 62 def lifecycle_state @lifecycle_state end |
#resource_list ⇒ Array<OCI::Cims::Models::Resource>
List of resources
42 43 44 |
# File 'lib/oci/cims/models/ticket.rb', line 42 def resource_list @resource_list end |
#severity ⇒ String
[Required] Severity of the ticket. eg: HIGH, MEDIUM
38 39 40 |
# File 'lib/oci/cims/models/ticket.rb', line 38 def severity @severity end |
#ticket_number ⇒ String
Unique ID that identifies a Ticket
34 35 36 |
# File 'lib/oci/cims/models/ticket.rb', line 34 def ticket_number @ticket_number end |
#time_created ⇒ Integer
Epoch time of ticket creation
54 55 56 |
# File 'lib/oci/cims/models/ticket.rb', line 54 def time_created @time_created end |
#time_updated ⇒ Integer
Epoch time of ticket updated
58 59 60 |
# File 'lib/oci/cims/models/ticket.rb', line 58 def time_updated @time_updated end |
#title ⇒ String
[Required] Title of ticket
46 47 48 |
# File 'lib/oci/cims/models/ticket.rb', line 46 def title @title end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/oci/cims/models/ticket.rb', line 69 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'ticket_number': :'ticketNumber', 'severity': :'severity', 'resource_list': :'resourceList', 'title': :'title', 'description': :'description', 'time_created': :'timeCreated', 'time_updated': :'timeUpdated', 'lifecycle_state': :'lifecycleState', 'lifecycle_details': :'lifecycleDetails' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/oci/cims/models/ticket.rb', line 86 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'ticket_number': :'String', 'severity': :'String', 'resource_list': :'Array<OCI::Cims::Models::Resource>', 'title': :'String', 'description': :'String', 'time_created': :'Integer', 'time_updated': :'Integer', 'lifecycle_state': :'String', 'lifecycle_details': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/oci/cims/models/ticket.rb', line 212 def ==(other) return true if equal?(other) self.class == other.class && ticket_number == other.ticket_number && severity == other.severity && resource_list == other.resource_list && title == other.title && description == other.description && time_created == other.time_created && time_updated == other.time_updated && lifecycle_state == other.lifecycle_state && lifecycle_details == other.lifecycle_details end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/oci/cims/models/ticket.rb', line 250 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
230 231 232 |
# File 'lib/oci/cims/models/ticket.rb', line 230 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
239 240 241 |
# File 'lib/oci/cims/models/ticket.rb', line 239 def hash [ticket_number, severity, resource_list, title, description, time_created, time_updated, lifecycle_state, lifecycle_details].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
283 284 285 286 287 288 289 290 291 292 |
# File 'lib/oci/cims/models/ticket.rb', line 283 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
277 278 279 |
# File 'lib/oci/cims/models/ticket.rb', line 277 def to_s to_hash.to_s end |