Class: OCI::ResourceManager::Models::AssociatedResourceSummary
- Inherits:
-
Object
- Object
- OCI::ResourceManager::Models::AssociatedResourceSummary
- Defined in:
- lib/oci/resource_manager/models/associated_resource_summary.rb
Overview
Summary information for a resource associated with a stack or job.
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String, String>
Resource attribute values.
-
#region ⇒ String
Resource region.
-
#resource_address ⇒ String
Terraform resource address.
-
#resource_id ⇒ String
Unique identifier for the resource.
-
#resource_name ⇒ String
Name of the resource.
-
#resource_type ⇒ String
Resource type.
-
#time_created ⇒ DateTime
The date and time when the stack was created.
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 = {}) ⇒ AssociatedResourceSummary
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 = {}) ⇒ AssociatedResourceSummary
Initializes the object
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 128 129 130 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 91 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.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_name = attributes[:'resourceName'] if attributes[:'resourceName'] raise 'You cannot provide both :resourceName and :resource_name' if attributes.key?(:'resourceName') && attributes.key?(:'resource_name') self.resource_name = attributes[:'resource_name'] if attributes[:'resource_name'] 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.attributes = attributes[:'attributes'] if attributes[:'attributes'] 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.region = attributes[:'region'] if attributes[:'region'] self.resource_address = attributes[:'resourceAddress'] if attributes[:'resourceAddress'] raise 'You cannot provide both :resourceAddress and :resource_address' if attributes.key?(:'resourceAddress') && attributes.key?(:'resource_address') self.resource_address = attributes[:'resource_address'] if attributes[:'resource_address'] end |
Instance Attribute Details
#attributes ⇒ Hash<String, String>
Resource attribute values. Each value is represented as a key-value pair. Example: {\"state\": \"AVAILABLE\"}
28 29 30 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 28 def attributes @attributes end |
#region ⇒ String
Resource region. For information about regions, see Regions and Availability Domains. Example: us-phoenix-1
42 43 44 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 42 def region @region end |
#resource_address ⇒ String
Terraform resource address.
46 47 48 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 46 def resource_address @resource_address end |
#resource_id ⇒ String
Unique identifier for the resource.
14 15 16 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 14 def resource_id @resource_id end |
#resource_name ⇒ String
Name of the resource.
18 19 20 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 18 def resource_name @resource_name end |
#resource_type ⇒ String
Resource type. For more information about resource types supported for the Oracle Cloud Infrastructure (OCI) provider, see Oracle Cloud Infrastructure Provider.
22 23 24 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 22 def resource_type @resource_type end |
#time_created ⇒ DateTime
The date and time when the stack was created. Format is defined by RFC3339. Example: 2022-07-25T21:10:29.600Z
35 36 37 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 35 def time_created @time_created end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 49 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'resource_id': :'resourceId', 'resource_name': :'resourceName', 'resource_type': :'resourceType', 'attributes': :'attributes', 'time_created': :'timeCreated', 'region': :'region', 'resource_address': :'resourceAddress' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 64 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'resource_id': :'String', 'resource_name': :'String', 'resource_type': :'String', 'attributes': :'Hash<String, String>', 'time_created': :'DateTime', 'region': :'String', 'resource_address': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 139 def ==(other) return true if equal?(other) self.class == other.class && resource_id == other.resource_id && resource_name == other.resource_name && resource_type == other.resource_type && attributes == other.attributes && time_created == other.time_created && region == other.region && resource_address == other.resource_address end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 175 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
155 156 157 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 155 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
164 165 166 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 164 def hash [resource_id, resource_name, resource_type, attributes, time_created, region, resource_address].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
208 209 210 211 212 213 214 215 216 217 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 208 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
202 203 204 |
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 202 def to_s to_hash.to_s end |