Class: OCI::ResourceManager::Models::AssociatedResourceSummary

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AssociatedResourceSummary

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :resource_id (String)

    The value to assign to the #resource_id property

  • :resource_name (String)

    The value to assign to the #resource_name property

  • :resource_type (String)

    The value to assign to the #resource_type property

  • :attributes (Hash<String, String>)

    The value to assign to the #attributes property

  • :time_created (DateTime)

    The value to assign to the #time_created property

  • :region (String)

    The value to assign to the #region property

  • :resource_address (String)

    The value to assign to the #resource_address property



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

#attributesHash<String, String>

Resource attribute values. Each value is represented as a key-value pair. Example: {\"state\": \"AVAILABLE\"}

Returns:

  • (Hash<String, String>)


28
29
30
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 28

def attributes
  @attributes
end

#regionString

Resource region. For information about regions, see Regions and Availability Domains. Example: us-phoenix-1

Returns:

  • (String)


42
43
44
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 42

def region
  @region
end

#resource_addressString

Terraform resource address.

Returns:

  • (String)


46
47
48
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 46

def resource_address
  @resource_address
end

#resource_idString

Unique identifier for the resource.

Returns:

  • (String)


14
15
16
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 14

def resource_id
  @resource_id
end

#resource_nameString

Name of the resource.

Returns:

  • (String)


18
19
20
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 18

def resource_name
  @resource_name
end

#resource_typeString

Resource type. For more information about resource types supported for the Oracle Cloud Infrastructure (OCI) provider, see Oracle Cloud Infrastructure Provider.

Returns:

  • (String)


22
23
24
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 22

def resource_type
  @resource_type
end

#time_createdDateTime

The date and time when the stack was created. Format is defined by RFC3339. Example: 2022-07-25T21:10:29.600Z

Returns:

  • (DateTime)


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_mapObject

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_typesObject

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.

Parameters:

  • other (Object)

    the other object to be compared



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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


155
156
157
# File 'lib/oci/resource_manager/models/associated_resource_summary.rb', line 155

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



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_hashHash

Returns the object in the form of hash

Returns:

  • (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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation 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