Class: OCI::MarketplacePublisher::Models::ListingRevision

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/marketplace_publisher/models/listing_revision.rb

Overview

The model for an Oracle Cloud Infrastructure Marketplace Publisher listing revision. This class has direct subclasses. If you are using this class as input to a service operations then you should favor using a subclass over the base class

Constant Summary collapse

STATUS_ENUM =
[
  STATUS_NEW = 'NEW'.freeze,
  STATUS_PENDING_REVIEW = 'PENDING_REVIEW'.freeze,
  STATUS_REVIEW_IN_PROGRESS = 'REVIEW_IN_PROGRESS'.freeze,
  STATUS_REJECTED = 'REJECTED'.freeze,
  STATUS_APPROVED = 'APPROVED'.freeze,
  STATUS_PUBLISH_IN_PROGRESS = 'PUBLISH_IN_PROGRESS'.freeze,
  STATUS_PUBLISH_FAILED = 'PUBLISH_FAILED'.freeze,
  STATUS_PUBLISHED = 'PUBLISHED'.freeze,
  STATUS_PUBLISH_AS_PRIVATE_FAILED = 'PUBLISH_AS_PRIVATE_FAILED'.freeze,
  STATUS_PUBLISHED_AS_PRIVATE = 'PUBLISHED_AS_PRIVATE'.freeze,
  STATUS_PUBLISH_AS_PRIVATE_IN_PROGRESS = 'PUBLISH_AS_PRIVATE_IN_PROGRESS'.freeze,
  STATUS_UNPUBLISH_IN_PROGRESS = 'UNPUBLISH_IN_PROGRESS'.freeze,
  STATUS_UNPUBLISHED = 'UNPUBLISHED'.freeze,
  STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_CREATING = 'CREATING'.freeze,
  LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze,
  LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze,
  LIFECYCLE_STATE_DELETING = 'DELETING'.freeze,
  LIFECYCLE_STATE_DELETED = 'DELETED'.freeze,
  LIFECYCLE_STATE_FAILED = 'FAILED'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
PACKAGE_TYPE_ENUM =
[
  PACKAGE_TYPE_CONTAINER_IMAGE = 'CONTAINER_IMAGE'.freeze,
  PACKAGE_TYPE_HELM_CHART = 'HELM_CHART'.freeze,
  PACKAGE_TYPE_MACHINE_IMAGE = 'MACHINE_IMAGE'.freeze,
  PACKAGE_TYPE_STACK = 'STACK'.freeze,
  PACKAGE_TYPE_NONE = 'NONE'.freeze,
  PACKAGE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LISTING_TYPE_ENUM =
[
  LISTING_TYPE_OCI_APPLICATION = 'OCI_APPLICATION'.freeze,
  LISTING_TYPE_LEAD_GENERATION = 'LEAD_GENERATION'.freeze,
  LISTING_TYPE_SERVICE = 'SERVICE'.freeze,
  LISTING_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ListingRevision

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 289

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

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

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

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

  self.display_name = attributes[:'displayName'] if attributes[:'displayName']

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

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

  self.revision_number = attributes[:'revisionNumber'] if attributes[:'revisionNumber']

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

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

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

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

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

  self.short_description = attributes[:'shortDescription'] if attributes[:'shortDescription']

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

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

  self.usage_information = attributes[:'usageInformation'] if attributes[:'usageInformation']

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

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

  self.long_description = attributes[:'longDescription'] if attributes[:'longDescription']

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

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

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

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

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

  self.content_language = attributes[:'contentLanguage'] if attributes[:'contentLanguage']

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

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

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

  self.support_contacts = attributes[:'supportContacts'] if attributes[:'supportContacts']

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

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

  self.support_links = attributes[:'supportLinks'] if attributes[:'supportLinks']

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

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

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

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

  self.status_notes = attributes[:'statusNotes'] if attributes[:'statusNotes']

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

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

  self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState']

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

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

  self.package_type = attributes[:'packageType'] if attributes[:'packageType']

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

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

  self.listing_type = attributes[:'listingType'] if attributes[:'listingType']

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

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

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

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

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

  self.freeform_tags = attributes[:'freeformTags'] if attributes[:'freeformTags']

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

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

  self.defined_tags = attributes[:'definedTags'] if attributes[:'definedTags']

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

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

  self.system_tags = attributes[:'systemTags'] if attributes[:'systemTags']

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

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

Instance Attribute Details

#compartment_idString

The unique identifier for the compartment.

Returns:

  • (String)


66
67
68
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 66

def compartment_id
  @compartment_id
end

#content_languageOCI::MarketplacePublisher::Models::LanguageItem



109
110
111
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 109

def content_language
  @content_language
end

#defined_tagsHash<String, Hash<String, Object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}

Returns:

  • (Hash<String, Hash<String, Object>>)


161
162
163
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 161

def defined_tags
  @defined_tags
end

#display_nameString

[Required] The name for the listing revision.

Returns:

  • (String)


70
71
72
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 70

def display_name
  @display_name
end

#extended_metadataHash<String, String>

Additional metadata key/value pairs for the listing revision summary.

Returns:

  • (Hash<String, String>)


149
150
151
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 149

def 
  @extended_metadata
end

#freeform_tagsHash<String, String>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {\"bar-key\": \"value\"}

Returns:

  • (Hash<String, String>)


155
156
157
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 155

def freeform_tags
  @freeform_tags
end

#headlineString

[Required] Single line introduction for the listing revision.

Returns:

  • (String)


78
79
80
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 78

def headline
  @headline
end

#iconOCI::MarketplacePublisher::Models::ListingRevisionIconAttachment



124
125
126
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 124

def icon
  @icon
end

#idString

[Required] Unique OCID identifier for the listing revision in Marketplace Publisher.

Returns:

  • (String)


58
59
60
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 58

def id
  @id
end

#keywordsString

Keywords associated with the listing revision.

Returns:

  • (String)


86
87
88
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 86

def keywords
  @keywords
end

#lifecycle_stateString

[Required] The current state of the listing revision.

Returns:

  • (String)


136
137
138
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 136

def lifecycle_state
  @lifecycle_state
end

#listing_idString

[Required] The unique identifier for the listing this revision belongs to.

Returns:

  • (String)


62
63
64
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 62

def listing_id
  @listing_id
end

#listing_typeString

[Required] The listing's type. Populated from the listing.

Returns:

  • (String)


144
145
146
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 144

def listing_type
  @listing_type
end

#long_descriptionString

A long description for the listing revision.

Returns:

  • (String)


98
99
100
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 98

def long_description
  @long_description
end

#package_typeString

The listing's package type. Populated from the listing.

Returns:

  • (String)


140
141
142
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 140

def package_type
  @package_type
end

#revision_numberString

The revision number for the listing revision. This is an internal attribute

Returns:

  • (String)


74
75
76
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 74

def revision_number
  @revision_number
end

#short_descriptionString

A short description for the listing revision.

Returns:

  • (String)


90
91
92
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 90

def short_description
  @short_description
end

#statusString

[Required] The current status for the Listing revision.

Returns:

  • (String)


128
129
130
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 128

def status
  @status
end

#status_notesString

Status notes for the listing revision.

Returns:

  • (String)


132
133
134
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 132

def status_notes
  @status_notes
end

#support_contactsArray<OCI::MarketplacePublisher::Models::SupportContact>

Contact information to use to get support from the publisher for the listing revision.



117
118
119
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 117

def support_contacts
  @support_contacts
end

Links to support resources for the listing revision.



121
122
123
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 121

def support_links
  @support_links
end

#supportedlanguagesArray<OCI::MarketplacePublisher::Models::LanguageItem>

Languages supported by the publisher for the listing revision.



113
114
115
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 113

def supportedlanguages
  @supportedlanguages
end

#system_tagsHash<String, Hash<String, Object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}

Returns:

  • (Hash<String, Hash<String, Object>>)


167
168
169
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 167

def system_tags
  @system_tags
end

#taglineString

The tagline of the listing revision.

Returns:

  • (String)


82
83
84
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 82

def tagline
  @tagline
end

#time_createdDateTime

[Required] The time the listing revision was created. An RFC3339 formatted datetime string.

Returns:

  • (DateTime)


102
103
104
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 102

def time_created
  @time_created
end

#time_updatedDateTime

[Required] The time the listing revision was updated. An RFC3339 formatted datetime string.

Returns:

  • (DateTime)


106
107
108
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 106

def time_updated
  @time_updated
end

#usage_informationString

Usage information for the listing revision.

Returns:

  • (String)


94
95
96
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 94

def usage_information
  @usage_information
end

Class Method Details

.attribute_mapObject

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



170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 170

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'id',
    'listing_id': :'listingId',
    'compartment_id': :'compartmentId',
    'display_name': :'displayName',
    'revision_number': :'revisionNumber',
    'headline': :'headline',
    'tagline': :'tagline',
    'keywords': :'keywords',
    'short_description': :'shortDescription',
    'usage_information': :'usageInformation',
    'long_description': :'longDescription',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'content_language': :'contentLanguage',
    'supportedlanguages': :'supportedlanguages',
    'support_contacts': :'supportContacts',
    'support_links': :'supportLinks',
    'icon': :'icon',
    'status': :'status',
    'status_notes': :'statusNotes',
    'lifecycle_state': :'lifecycleState',
    'package_type': :'packageType',
    'listing_type': :'listingType',
    'extended_metadata': :'extendedMetadata',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'system_tags': :'systemTags'
    # rubocop:enable Style/SymbolLiteral
  }
end

.get_subtype(object_hash) ⇒ Object

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.



244
245
246
247
248
249
250
251
252
253
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 244

def self.get_subtype(object_hash)
  type = object_hash[:'listingType'] # rubocop:disable Style/SymbolLiteral

  return 'OCI::MarketplacePublisher::Models::ServiceListingRevision' if type == 'SERVICE'
  return 'OCI::MarketplacePublisher::Models::LeadGenListingRevision' if type == 'LEAD_GENERATION'
  return 'OCI::MarketplacePublisher::Models::OciListingRevision' if type == 'OCI_APPLICATION'

  # TODO: Log a warning when the subtype is not found.
  'OCI::MarketplacePublisher::Models::ListingRevision'
end

.swagger_typesObject

Attribute type mapping.



205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 205

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'id': :'String',
    'listing_id': :'String',
    'compartment_id': :'String',
    'display_name': :'String',
    'revision_number': :'String',
    'headline': :'String',
    'tagline': :'String',
    'keywords': :'String',
    'short_description': :'String',
    'usage_information': :'String',
    'long_description': :'String',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'content_language': :'OCI::MarketplacePublisher::Models::LanguageItem',
    'supportedlanguages': :'Array<OCI::MarketplacePublisher::Models::LanguageItem>',
    'support_contacts': :'Array<OCI::MarketplacePublisher::Models::SupportContact>',
    'support_links': :'Array<OCI::MarketplacePublisher::Models::NamedLink>',
    'icon': :'OCI::MarketplacePublisher::Models::ListingRevisionIconAttachment',
    'status': :'String',
    'status_notes': :'String',
    'lifecycle_state': :'String',
    'package_type': :'String',
    'listing_type': :'String',
    'extended_metadata': :'Hash<String, String>',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'system_tags': :'Hash<String, Hash<String, Object>>'
    # 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



489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 489

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

  self.class == other.class &&
    id == other.id &&
    listing_id == other.listing_id &&
    compartment_id == other.compartment_id &&
    display_name == other.display_name &&
    revision_number == other.revision_number &&
    headline == other.headline &&
    tagline == other.tagline &&
    keywords == other.keywords &&
    short_description == other.short_description &&
    usage_information == other.usage_information &&
    long_description == other.long_description &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    content_language == other.content_language &&
    supportedlanguages == other.supportedlanguages &&
    support_contacts == other.support_contacts &&
    support_links == other.support_links &&
    icon == other.icon &&
    status == other.status &&
    status_notes == other.status_notes &&
    lifecycle_state == other.lifecycle_state &&
    package_type == other.package_type &&
    listing_type == other.listing_type &&
     == other. &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    system_tags == other.system_tags
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



545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 545

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


525
526
527
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 525

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



534
535
536
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 534

def hash
  [id, listing_id, compartment_id, display_name, revision_number, headline, tagline, keywords, short_description, usage_information, long_description, time_created, time_updated, content_language, supportedlanguages, support_contacts, support_links, icon, status, status_notes, lifecycle_state, package_type, listing_type, , freeform_tags, defined_tags, system_tags].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



578
579
580
581
582
583
584
585
586
587
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 578

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



572
573
574
# File 'lib/oci/marketplace_publisher/models/listing_revision.rb', line 572

def to_s
  to_hash.to_s
end