Class: OCI::DisasterRecovery::Models::DrPlanExecutionSkippedStepStatusCounts

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb

Overview

A summary of steps that were skipped during a DR plan execution, including disabled, failed but ignored, timed out but ignored, and canceled steps.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DrPlanExecutionSkippedStepStatusCounts

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :total_skipped (Integer)

    The value to assign to the #total_skipped property

  • :disabled (Integer)

    The value to assign to the #disabled property

  • :failed_ignored (Integer)

    The value to assign to the #failed_ignored property

  • :timed_out_ignored (Integer)

    The value to assign to the #timed_out_ignored property

  • :canceled (Integer)

    The value to assign to the #canceled property



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 74

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

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

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

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

  self.failed_ignored = attributes[:'failedIgnored'] if attributes[:'failedIgnored']

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

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

  self.timed_out_ignored = attributes[:'timedOutIgnored'] if attributes[:'timedOutIgnored']

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

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

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

Instance Attribute Details

#canceledInteger

[Required] The total number of canceled steps in a DR plan execution.

Returns:

  • (Integer)


35
36
37
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 35

def canceled
  @canceled
end

#disabledInteger

[Required] The total number of disabled steps in a DR plan execution.

Returns:

  • (Integer)


20
21
22
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 20

def disabled
  @disabled
end

#failed_ignoredInteger

[Required] The total number of steps that failed but were ignored during a DR plan execution.

Returns:

  • (Integer)


25
26
27
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 25

def failed_ignored
  @failed_ignored
end

#timed_out_ignoredInteger

[Required] The total number of steps that timed out but were ignored during a DR plan execution.

Returns:

  • (Integer)


30
31
32
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 30

def timed_out_ignored
  @timed_out_ignored
end

#total_skippedInteger

[Required] The total number of steps that were skipped during a DR plan execution.

Returns:

  • (Integer)


15
16
17
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 15

def total_skipped
  @total_skipped
end

Class Method Details

.attribute_mapObject

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



38
39
40
41
42
43
44
45
46
47
48
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 38

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'total_skipped': :'totalSkipped',
    'disabled': :'disabled',
    'failed_ignored': :'failedIgnored',
    'timed_out_ignored': :'timedOutIgnored',
    'canceled': :'canceled'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



51
52
53
54
55
56
57
58
59
60
61
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 51

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'total_skipped': :'Integer',
    'disabled': :'Integer',
    'failed_ignored': :'Integer',
    'timed_out_ignored': :'Integer',
    'canceled': :'Integer'
    # 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



110
111
112
113
114
115
116
117
118
119
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 110

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

  self.class == other.class &&
    total_skipped == other.total_skipped &&
    disabled == other.disabled &&
    failed_ignored == other.failed_ignored &&
    timed_out_ignored == other.timed_out_ignored &&
    canceled == other.canceled
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



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 144

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


124
125
126
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 124

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



133
134
135
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 133

def hash
  [total_skipped, disabled, failed_ignored, timed_out_ignored, canceled].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



177
178
179
180
181
182
183
184
185
186
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 177

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



171
172
173
# File 'lib/oci/disaster_recovery/models/dr_plan_execution_skipped_step_status_counts.rb', line 171

def to_s
  to_hash.to_s
end