Class: OCI::Devops::Models::OkeHelmChartDeploymentStageExecutionProgress

Inherits:
DeployStageExecutionProgress show all
Defined in:
lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb

Overview

Specifies the execution details for Kubernetes (OKE) helm chart deployment stage.

Constant Summary

Constants inherited from DeployStageExecutionProgress

DeployStageExecutionProgress::STATUS_ENUM

Instance Attribute Summary collapse

Attributes inherited from DeployStageExecutionProgress

#deploy_stage_display_name, #deploy_stage_execution_progress_details, #deploy_stage_id, #deploy_stage_predecessors, #deploy_stage_type, #status, #time_finished, #time_started

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DeployStageExecutionProgress

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ OkeHelmChartDeploymentStageExecutionProgress

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



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/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 98

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['deployStageType'] = 'OKE_HELM_CHART_DEPLOYMENT'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.release_name = attributes[:'releaseName'] if attributes[:'releaseName']

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

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

  self.chart_url = attributes[:'chartUrl'] if attributes[:'chartUrl']

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

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

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

  self.namespace = attributes[:'namespace'] if attributes[:'namespace']
  self.namespace = "default" if namespace.nil? && !attributes.key?(:'namespace') # rubocop:disable Style/StringLiterals

  self.helm_diff = attributes[:'helmDiff'] if attributes[:'helmDiff']

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

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

Instance Attribute Details

#chart_urlString

The URL of an OCIR repository.

Returns:

  • (String)


18
19
20
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 18

def chart_url
  @chart_url
end

#helm_diffString

Helm Diff output Example: Helm diff was successful data: - greeting: Version 1.0 + greeting: Version 1.1

Returns:

  • (String)


36
37
38
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 36

def helm_diff
  @helm_diff
end

#namespaceString

Default namespace to be used for Kubernetes deployment when not specified in the manifest.

Returns:

  • (String)


26
27
28
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 26

def namespace
  @namespace
end

#release_nameString

Release name of the Helm chart.

Returns:

  • (String)


14
15
16
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 14

def release_name
  @release_name
end

#versionString

The version of the helm chart stored in OCIR repository.

Returns:

  • (String)


22
23
24
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 22

def version
  @version
end

Class Method Details

.attribute_mapObject

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



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 39

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'deploy_stage_display_name': :'deployStageDisplayName',
    'deploy_stage_type': :'deployStageType',
    'deploy_stage_id': :'deployStageId',
    'time_started': :'timeStarted',
    'time_finished': :'timeFinished',
    'status': :'status',
    'deploy_stage_predecessors': :'deployStagePredecessors',
    'deploy_stage_execution_progress_details': :'deployStageExecutionProgressDetails',
    'release_name': :'releaseName',
    'chart_url': :'chartUrl',
    'version': :'version',
    'namespace': :'namespace',
    'helm_diff': :'helmDiff'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 60

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'deploy_stage_display_name': :'String',
    'deploy_stage_type': :'String',
    'deploy_stage_id': :'String',
    'time_started': :'DateTime',
    'time_finished': :'DateTime',
    'status': :'String',
    'deploy_stage_predecessors': :'OCI::Devops::Models::DeployStagePredecessorCollection',
    'deploy_stage_execution_progress_details': :'Array<OCI::Devops::Models::DeployStageExecutionProgressDetails>',
    'release_name': :'String',
    'chart_url': :'String',
    'version': :'String',
    'namespace': :'String',
    'helm_diff': :'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
151
152
153
154
155
156
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 139

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

  self.class == other.class &&
    deploy_stage_display_name == other.deploy_stage_display_name &&
    deploy_stage_type == other.deploy_stage_type &&
    deploy_stage_id == other.deploy_stage_id &&
    time_started == other.time_started &&
    time_finished == other.time_finished &&
    status == other.status &&
    deploy_stage_predecessors == other.deploy_stage_predecessors &&
    deploy_stage_execution_progress_details == other.deploy_stage_execution_progress_details &&
    release_name == other.release_name &&
    chart_url == other.chart_url &&
    version == other.version &&
    namespace == other.namespace &&
    helm_diff == other.helm_diff
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



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 181

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


161
162
163
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 161

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



170
171
172
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 170

def hash
  [deploy_stage_display_name, deploy_stage_type, deploy_stage_id, time_started, time_finished, status, deploy_stage_predecessors, deploy_stage_execution_progress_details, release_name, chart_url, version, namespace, helm_diff].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



214
215
216
217
218
219
220
221
222
223
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 214

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



208
209
210
# File 'lib/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.rb', line 208

def to_s
  to_hash.to_s
end