Class: OCI::Analytics::Models::WorkRequestResource
- Inherits:
-
Object
- Object
- OCI::Analytics::Models::WorkRequestResource
- Defined in:
- lib/oci/analytics/models/work_request_resource.rb
Overview
WorkRequestResource model.
Constant Summary collapse
- ACTION_RESULT_ENUM =
[ ACTION_RESULT_COMPARTMENT_CHANGED = 'COMPARTMENT_CHANGED'.freeze, ACTION_RESULT_CREATED = 'CREATED'.freeze, ACTION_RESULT_DELETED = 'DELETED'.freeze, ACTION_RESULT_STARTED = 'STARTED'.freeze, ACTION_RESULT_STOPPED = 'STOPPED'.freeze, ACTION_RESULT_SCALED = 'SCALED'.freeze, ACTION_RESULT_NETWORK_ENDPOINT_CHANGED = 'NETWORK_ENDPOINT_CHANGED'.freeze, ACTION_RESULT_VANITY_URL_CREATED = 'VANITY_URL_CREATED'.freeze, ACTION_RESULT_VANITY_URL_UPDATED = 'VANITY_URL_UPDATED'.freeze, ACTION_RESULT_VANITY_URL_DELETED = 'VANITY_URL_DELETED'.freeze, ACTION_RESULT_PRIVATE_ACCESS_CHANNEL_CREATED = 'PRIVATE_ACCESS_CHANNEL_CREATED'.freeze, ACTION_RESULT_PRIVATE_ACCESS_CHANNEL_UPDATED = 'PRIVATE_ACCESS_CHANNEL_UPDATED'.freeze, ACTION_RESULT_PRIVATE_ACCESS_CHANNEL_DELETED = 'PRIVATE_ACCESS_CHANNEL_DELETED'.freeze, ACTION_RESULT_NONE = 'NONE'.freeze, ACTION_RESULT_RESOURCE_GROUP_CREATED = 'RESOURCE_GROUP_CREATED'.freeze, ACTION_RESULT_RESOURCE_GROUP_UPDATED = 'RESOURCE_GROUP_UPDATED'.freeze, ACTION_RESULT_RESOURCE_GROUP_DELETED = 'RESOURCE_GROUP_DELETED'.freeze, ACTION_RESULT_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- RESOURCE_TYPE_ENUM =
[ RESOURCE_TYPE_ANALYTICS_INSTANCE = 'ANALYTICS_INSTANCE'.freeze, RESOURCE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#action_result ⇒ String
[Required] The way this resource was affected by this work request.
-
#identifier ⇒ String
[Required] The OCID of the resource the work request is affecting.
-
#metadata ⇒ Hash<String, String>
Additional metadata of the resource.
-
#resource_type ⇒ String
[Required] The type of the resource the work request is affecting.
-
#resource_uri ⇒ String
[Required] The URI of the affected 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 = {}) ⇒ WorkRequestResource
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 = {}) ⇒ WorkRequestResource
Initializes the object
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 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 99 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.action_result = attributes[:'actionResult'] if attributes[:'actionResult'] raise 'You cannot provide both :actionResult and :action_result' if attributes.key?(:'actionResult') && attributes.key?(:'action_result') self.action_result = attributes[:'action_result'] if attributes[:'action_result'] self.resource_type = attributes[:'resourceType'] if attributes[:'resourceType'] raise 'You cannot provide both :resourceType and :resource_type' if attributes.key?(:'resourceType') && attributes.key?(:'resource_type') self.resource_type = attributes[:'resource_type'] if attributes[:'resource_type'] self.identifier = attributes[:'identifier'] if attributes[:'identifier'] self.resource_uri = attributes[:'resourceUri'] if attributes[:'resourceUri'] raise 'You cannot provide both :resourceUri and :resource_uri' if attributes.key?(:'resourceUri') && attributes.key?(:'resource_uri') self.resource_uri = attributes[:'resource_uri'] if attributes[:'resource_uri'] self. = attributes[:'metadata'] if attributes[:'metadata'] end |
Instance Attribute Details
#action_result ⇒ String
[Required] The way this resource was affected by this work request.
41 42 43 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 41 def action_result @action_result end |
#identifier ⇒ String
[Required] The OCID of the resource the work request is affecting.
50 51 52 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 50 def identifier @identifier end |
#metadata ⇒ Hash<String, String>
Additional metadata of the resource.
60 61 62 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 60 def @metadata end |
#resource_type ⇒ String
[Required] The type of the resource the work request is affecting.
46 47 48 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 46 def resource_type @resource_type end |
#resource_uri ⇒ String
[Required] The URI of the affected resource.
55 56 57 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 55 def resource_uri @resource_uri 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 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 63 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'action_result': :'actionResult', 'resource_type': :'resourceType', 'identifier': :'identifier', 'resource_uri': :'resourceUri', 'metadata': :'metadata' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 76 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'action_result': :'String', 'resource_type': :'String', 'identifier': :'String', 'resource_uri': :'String', 'metadata': :'Hash<String, String>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
161 162 163 164 165 166 167 168 169 170 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 161 def ==(other) return true if equal?(other) self.class == other.class && action_result == other.action_result && resource_type == other.resource_type && identifier == other.identifier && resource_uri == other.resource_uri && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 195 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
175 176 177 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 175 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
184 185 186 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 184 def hash [action_result, resource_type, identifier, resource_uri, ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
228 229 230 231 232 233 234 235 236 237 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 228 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
222 223 224 |
# File 'lib/oci/analytics/models/work_request_resource.rb', line 222 def to_s to_hash.to_s end |