Class: OCI::Core::Models::AppCatalogListingResourceVersion

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/core/models/app_catalog_listing_resource_version.rb

Overview

Listing Resource Version

Constant Summary collapse

ALLOWED_ACTIONS_ENUM =
[
  ALLOWED_ACTIONS_SNAPSHOT = 'SNAPSHOT'.freeze,
  ALLOWED_ACTIONS_BOOT_VOLUME_DETACH = 'BOOT_VOLUME_DETACH'.freeze,
  ALLOWED_ACTIONS_PRESERVE_BOOT_VOLUME = 'PRESERVE_BOOT_VOLUME'.freeze,
  ALLOWED_ACTIONS_SERIAL_CONSOLE_ACCESS = 'SERIAL_CONSOLE_ACCESS'.freeze,
  ALLOWED_ACTIONS_BOOT_RECOVERY = 'BOOT_RECOVERY'.freeze,
  ALLOWED_ACTIONS_BACKUP_BOOT_VOLUME = 'BACKUP_BOOT_VOLUME'.freeze,
  ALLOWED_ACTIONS_CAPTURE_CONSOLE_HISTORY = 'CAPTURE_CONSOLE_HISTORY'.freeze,
  ALLOWED_ACTIONS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AppCatalogListingResourceVersion

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :listing_id (String)

    The value to assign to the #listing_id property

  • :time_published (DateTime)

    The value to assign to the #time_published property

  • :listing_resource_id (String)

    The value to assign to the #listing_resource_id property

  • :listing_resource_version (String)

    The value to assign to the #listing_resource_version property

  • :available_regions (Array<String>)

    The value to assign to the #available_regions property

  • :compatible_shapes (Array<String>)

    The value to assign to the #compatible_shapes property

  • :accessible_ports (Array<Integer>)

    The value to assign to the #accessible_ports property

  • :allowed_actions (Array<String>)

    The value to assign to the #allowed_actions property



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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 114

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.listing_id = attributes[:'listingId'] if attributes[:'listingId']

  raise 'You cannot provide both :listingId and :listing_id' if attributes.key?(:'listingId') && attributes.key?(:'listing_id')

  self.listing_id = attributes[:'listing_id'] if attributes[:'listing_id']

  self.time_published = attributes[:'timePublished'] if attributes[:'timePublished']

  raise 'You cannot provide both :timePublished and :time_published' if attributes.key?(:'timePublished') && attributes.key?(:'time_published')

  self.time_published = attributes[:'time_published'] if attributes[:'time_published']

  self.listing_resource_id = attributes[:'listingResourceId'] if attributes[:'listingResourceId']

  raise 'You cannot provide both :listingResourceId and :listing_resource_id' if attributes.key?(:'listingResourceId') && attributes.key?(:'listing_resource_id')

  self.listing_resource_id = attributes[:'listing_resource_id'] if attributes[:'listing_resource_id']

  self.listing_resource_version = attributes[:'listingResourceVersion'] if attributes[:'listingResourceVersion']

  raise 'You cannot provide both :listingResourceVersion and :listing_resource_version' if attributes.key?(:'listingResourceVersion') && attributes.key?(:'listing_resource_version')

  self.listing_resource_version = attributes[:'listing_resource_version'] if attributes[:'listing_resource_version']

  self.available_regions = attributes[:'availableRegions'] if attributes[:'availableRegions']

  raise 'You cannot provide both :availableRegions and :available_regions' if attributes.key?(:'availableRegions') && attributes.key?(:'available_regions')

  self.available_regions = attributes[:'available_regions'] if attributes[:'available_regions']

  self.compatible_shapes = attributes[:'compatibleShapes'] if attributes[:'compatibleShapes']

  raise 'You cannot provide both :compatibleShapes and :compatible_shapes' if attributes.key?(:'compatibleShapes') && attributes.key?(:'compatible_shapes')

  self.compatible_shapes = attributes[:'compatible_shapes'] if attributes[:'compatible_shapes']

  self.accessible_ports = attributes[:'accessiblePorts'] if attributes[:'accessiblePorts']

  raise 'You cannot provide both :accessiblePorts and :accessible_ports' if attributes.key?(:'accessiblePorts') && attributes.key?(:'accessible_ports')

  self.accessible_ports = attributes[:'accessible_ports'] if attributes[:'accessible_ports']

  self.allowed_actions = attributes[:'allowedActions'] if attributes[:'allowedActions']

  raise 'You cannot provide both :allowedActions and :allowed_actions' if attributes.key?(:'allowedActions') && attributes.key?(:'allowed_actions')

  self.allowed_actions = attributes[:'allowed_actions'] if attributes[:'allowed_actions']
end

Instance Attribute Details

#accessible_portsArray<Integer>

List of accessible ports for instances launched with this listing resource version.

Returns:

  • (Array<Integer>)


62
63
64
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 62

def accessible_ports
  @accessible_ports
end

#allowed_actionsArray<String>

Allowed actions for the listing resource.

Returns:

  • (Array<String>)


66
67
68
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 66

def allowed_actions
  @allowed_actions
end

#available_regionsArray<String>

List of regions that this listing resource version is available.

For information about regions, see Regions and Availability Domains.

Example: [\"us-ashburn-1\", \"us-phoenix-1\"]

Returns:

  • (Array<String>)


49
50
51
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 49

def available_regions
  @available_regions
end

#compatible_shapesArray<String>

Array of shapes compatible with this resource.

You can enumerate all available shapes by calling list_shapes.

Example: [\"VM.Standard1.1\", \"VM.Standard1.2\"]

Returns:

  • (Array<String>)


58
59
60
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 58

def compatible_shapes
  @compatible_shapes
end

#listing_idString

The OCID of the listing this resource version belongs to.

Returns:

  • (String)


25
26
27
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 25

def listing_id
  @listing_id
end

#listing_resource_idString

OCID of the listing resource.

Returns:

  • (String)


35
36
37
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 35

def listing_resource_id
  @listing_resource_id
end

#listing_resource_versionString

Resource Version.

Returns:

  • (String)


39
40
41
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 39

def listing_resource_version
  @listing_resource_version
end

#time_publishedDateTime

Date and time the listing resource version was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z

Returns:

  • (DateTime)


31
32
33
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 31

def time_published
  @time_published
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 69

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'listing_id': :'listingId',
    'time_published': :'timePublished',
    'listing_resource_id': :'listingResourceId',
    'listing_resource_version': :'listingResourceVersion',
    'available_regions': :'availableRegions',
    'compatible_shapes': :'compatibleShapes',
    'accessible_ports': :'accessiblePorts',
    'allowed_actions': :'allowedActions'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 85

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'listing_id': :'String',
    'time_published': :'DateTime',
    'listing_resource_id': :'String',
    'listing_resource_version': :'String',
    'available_regions': :'Array<String>',
    'compatible_shapes': :'Array<String>',
    'accessible_ports': :'Array<Integer>',
    'allowed_actions': :'Array<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



196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 196

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    listing_id == other.listing_id &&
    time_published == other.time_published &&
    listing_resource_id == other.listing_resource_id &&
    listing_resource_version == other.listing_resource_version &&
    available_regions == other.available_regions &&
    compatible_shapes == other.compatible_shapes &&
    accessible_ports == other.accessible_ports &&
    allowed_actions == other.allowed_actions
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



233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 233

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


213
214
215
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 213

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



222
223
224
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 222

def hash
  [listing_id, time_published, listing_resource_id, listing_resource_version, available_regions, compatible_shapes, accessible_ports, allowed_actions].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



266
267
268
269
270
271
272
273
274
275
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 266

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



260
261
262
# File 'lib/oci/core/models/app_catalog_listing_resource_version.rb', line 260

def to_s
  to_hash.to_s
end