Class: OCI::MarketplacePublisher::Models::HelmChartImageDetails

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

Overview

Helmchart image details.

Constant Summary collapse

VALIDATION_STATUS_ENUM =
[
  VALIDATION_STATUS_VALIDATION_IN_PROGRESS = 'VALIDATION_IN_PROGRESS'.freeze,
  VALIDATION_STATUS_VALIDATION_FAILED = 'VALIDATION_FAILED'.freeze,
  VALIDATION_STATUS_VALIDATION_COMPLETED = 'VALIDATION_COMPLETED'.freeze,
  VALIDATION_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
PUBLICATION_STATUS_ENUM =
[
  PUBLICATION_STATUS_PUBLICATION_IN_PROGRESS = 'PUBLICATION_IN_PROGRESS'.freeze,
  PUBLICATION_STATUS_PUBLICATION_COMPLETED = 'PUBLICATION_COMPLETED'.freeze,
  PUBLICATION_STATUS_PUBLICATION_FAILED = 'PUBLICATION_FAILED'.freeze,
  PUBLICATION_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ HelmChartImageDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 97

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

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

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

  self.source_registry_url = attributes[:'sourceRegistryUrl'] if attributes[:'sourceRegistryUrl']

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

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

  self.supported_kubernetes_versions = attributes[:'supportedKubernetesVersions'] if attributes[:'supportedKubernetesVersions']

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

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

  self.validation_status = attributes[:'validationStatus'] if attributes[:'validationStatus']

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

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

  self.validation_error = attributes[:'validationError'] if attributes[:'validationError']

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

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

  self.publication_status = attributes[:'publicationStatus'] if attributes[:'publicationStatus']

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

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

  self.publication_error = attributes[:'publicationError'] if attributes[:'publicationError']

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

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

Instance Attribute Details

#publication_errorString

image validation failure errors

Returns:

  • (String)


52
53
54
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 52

def publication_error
  @publication_error
end

#publication_statusString

[Required] image publication status

Returns:

  • (String)


48
49
50
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 48

def publication_status
  @publication_status
end

#source_registry_idString

The source registry OCID of the helmchart image.

Returns:

  • (String)


28
29
30
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 28

def source_registry_id
  @source_registry_id
end

#source_registry_urlString

[Required] source registry url of the helmchart image.

Returns:

  • (String)


32
33
34
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 32

def source_registry_url
  @source_registry_url
end

#supported_kubernetes_versionsArray<String>

The supported versions of Kubernetes

Returns:

  • (Array<String>)


36
37
38
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 36

def supported_kubernetes_versions
  @supported_kubernetes_versions
end

#validation_errorString

image validation failure errors

Returns:

  • (String)


44
45
46
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 44

def validation_error
  @validation_error
end

#validation_statusString

[Required] image validation status.

Returns:

  • (String)


40
41
42
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 40

def validation_status
  @validation_status
end

Class Method Details

.attribute_mapObject

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



55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 55

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'source_registry_id': :'sourceRegistryId',
    'source_registry_url': :'sourceRegistryUrl',
    'supported_kubernetes_versions': :'supportedKubernetesVersions',
    'validation_status': :'validationStatus',
    'validation_error': :'validationError',
    'publication_status': :'publicationStatus',
    'publication_error': :'publicationError'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'source_registry_id': :'String',
    'source_registry_url': :'String',
    'supported_kubernetes_versions': :'Array<String>',
    'validation_status': :'String',
    'validation_error': :'String',
    'publication_status': :'String',
    'publication_error': :'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



179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 179

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

  self.class == other.class &&
    source_registry_id == other.source_registry_id &&
    source_registry_url == other.source_registry_url &&
    supported_kubernetes_versions == other.supported_kubernetes_versions &&
    validation_status == other.validation_status &&
    validation_error == other.validation_error &&
    publication_status == other.publication_status &&
    publication_error == other.publication_error
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



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/helm_chart_image_details.rb', line 215

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


195
196
197
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 195

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



204
205
206
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 204

def hash
  [source_registry_id, source_registry_url, supported_kubernetes_versions, validation_status, validation_error, publication_status, publication_error].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



248
249
250
251
252
253
254
255
256
257
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 248

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



242
243
244
# File 'lib/oci/marketplace_publisher/models/helm_chart_image_details.rb', line 242

def to_s
  to_hash.to_s
end