Class: OCI::FleetAppsManagement::Models::ResourceSummary
- Inherits:
-
Object
- Object
- OCI::FleetAppsManagement::Models::ResourceSummary
- Defined in:
- lib/oci/fleet_apps_management/models/resource_summary.rb
Overview
Execution Resource Summary
Constant Summary collapse
- STATUS_ENUM =
[ STATUS_ACCEPTED = 'ACCEPTED'.freeze, STATUS_WAITING = 'WAITING'.freeze, STATUS_IN_PROGRESS = 'IN_PROGRESS'.freeze, STATUS_FAILED = 'FAILED'.freeze, STATUS_SUCCEEDED = 'SUCCEEDED'.freeze, STATUS_CANCELED = 'CANCELED'.freeze, STATUS_SKIPPED = 'SKIPPED'.freeze, STATUS_IGNORED = 'IGNORED'.freeze, STATUS_NOT_APPLICABLE = 'NOT_APPLICABLE'.freeze, STATUS_ABORTED = 'ABORTED'.freeze, STATUS_TIMED_OUT = 'TIMED_OUT'.freeze, STATUS_PAUSED = 'PAUSED'.freeze, STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the Resource Execution status.
-
#resource_display_name ⇒ String
Resource Display Name.
-
#resource_id ⇒ String
[Required] Resource Identifier associated with the Work Request.
-
#sequence ⇒ String
The sequence of the Resource.
-
#status ⇒ String
[Required] Status of the Job at Resource Level.
-
#targets ⇒ Array<OCI::FleetAppsManagement::Models::ActivityResourceTarget>
Targets associated with the resource.
-
#time_ended ⇒ DateTime
The time the task ended for the resource.
-
#time_started ⇒ DateTime
The time the task started for the resource.
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 = {}) ⇒ ResourceSummary
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 = {}) ⇒ ResourceSummary
Initializes the object
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 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 108 def initialize(attributes = {}) return unless attributes.is_a?(Hash) self.resource_id = attributes[:'resourceId'] if attributes[:'resourceId'] raise 'You cannot provide both :resourceId and :resource_id' if attributes.key?(:'resourceId') && attributes.key?(:'resource_id') self.resource_id = attributes[:'resource_id'] if attributes[:'resource_id'] self.resource_display_name = attributes[:'resourceDisplayName'] if attributes[:'resourceDisplayName'] raise 'You cannot provide both :resourceDisplayName and :resource_display_name' if attributes.key?(:'resourceDisplayName') && attributes.key?(:'resource_display_name') self.resource_display_name = attributes[:'resource_display_name'] if attributes[:'resource_display_name'] self.description = attributes[:'description'] if attributes[:'description'] self.sequence = attributes[:'sequence'] if attributes[:'sequence'] self.targets = attributes[:'targets'] if attributes[:'targets'] self.status = attributes[:'status'] if attributes[:'status'] self.time_started = attributes[:'timeStarted'] if attributes[:'timeStarted'] raise 'You cannot provide both :timeStarted and :time_started' if attributes.key?(:'timeStarted') && attributes.key?(:'time_started') self.time_started = attributes[:'time_started'] if attributes[:'time_started'] self.time_ended = attributes[:'timeEnded'] if attributes[:'timeEnded'] raise 'You cannot provide both :timeEnded and :time_ended' if attributes.key?(:'timeEnded') && attributes.key?(:'time_ended') self.time_ended = attributes[:'time_ended'] if attributes[:'time_ended'] end |
Instance Attribute Details
#description ⇒ String
Description of the Resource Execution status. If there are any errors, this can also include a short error message.
40 41 42 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 40 def description @description end |
#resource_display_name ⇒ String
Resource Display Name.
34 35 36 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 34 def resource_display_name @resource_display_name end |
#resource_id ⇒ String
[Required] Resource Identifier associated with the Work Request.
30 31 32 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 30 def resource_id @resource_id end |
#sequence ⇒ String
The sequence of the Resource.
44 45 46 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 44 def sequence @sequence end |
#status ⇒ String
[Required] Status of the Job at Resource Level.
52 53 54 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 52 def status @status end |
#targets ⇒ Array<OCI::FleetAppsManagement::Models::ActivityResourceTarget>
Targets associated with the resource.
48 49 50 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 48 def targets @targets end |
#time_ended ⇒ DateTime
The time the task ended for the resource. An RFC3339 formatted datetime string
60 61 62 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 60 def time_ended @time_ended end |
#time_started ⇒ DateTime
The time the task started for the resource. An RFC3339 formatted datetime string
56 57 58 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 56 def time_started @time_started end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 63 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'resource_id': :'resourceId', 'resource_display_name': :'resourceDisplayName', 'description': :'description', 'sequence': :'sequence', 'targets': :'targets', 'status': :'status', 'time_started': :'timeStarted', 'time_ended': :'timeEnded' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 79 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'resource_id': :'String', 'resource_display_name': :'String', 'description': :'String', 'sequence': :'String', 'targets': :'Array<OCI::FleetAppsManagement::Models::ActivityResourceTarget>', 'status': :'String', 'time_started': :'DateTime', 'time_ended': :'DateTime' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 164 def ==(other) return true if equal?(other) self.class == other.class && resource_id == other.resource_id && resource_display_name == other.resource_display_name && description == other.description && sequence == other.sequence && targets == other.targets && status == other.status && time_started == other.time_started && time_ended == other.time_ended end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 201 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
181 182 183 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 181 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
190 191 192 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 190 def hash [resource_id, resource_display_name, description, sequence, targets, status, time_started, time_ended].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
234 235 236 237 238 239 240 241 242 243 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 234 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
228 229 230 |
# File 'lib/oci/fleet_apps_management/models/resource_summary.rb', line 228 def to_s to_hash.to_s end |