Class: OCI::Devops::Models::ExecuteMergePullRequestDetails

Inherits:
MergePullRequestDetails show all
Defined in:
lib/oci/devops/models/execute_merge_pull_request_details.rb

Overview

The information about the merge.

Constant Summary collapse

MERGE_STRATEGY_ENUM =
[
  MERGE_STRATEGY_MERGE_COMMIT = 'MERGE_COMMIT'.freeze,
  MERGE_STRATEGY_FAST_FORWARD = 'FAST_FORWARD'.freeze,
  MERGE_STRATEGY_FAST_FORWARD_ONLY = 'FAST_FORWARD_ONLY'.freeze,
  MERGE_STRATEGY_REBASE_AND_MERGE = 'REBASE_AND_MERGE'.freeze,
  MERGE_STRATEGY_REBASE_AND_FAST_FORWARD = 'REBASE_AND_FAST_FORWARD'.freeze,
  MERGE_STRATEGY_SQUASH = 'SQUASH'.freeze,
  MERGE_STRATEGY_SQUASH_FAST_FORWARD_ONLY = 'SQUASH_FAST_FORWARD_ONLY'.freeze
].freeze
POST_MERGE_ACTION_ENUM =
[
  POST_MERGE_ACTION_DELETE_SOURCE_BRANCH = 'DELETE_SOURCE_BRANCH'.freeze,
  POST_MERGE_ACTION_KEEP_SOURCE_BRANCH = 'KEEP_SOURCE_BRANCH'.freeze
].freeze

Constants inherited from MergePullRequestDetails

MergePullRequestDetails::ACTION_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from MergePullRequestDetails

#action_type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from MergePullRequestDetails

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ ExecuteMergePullRequestDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :commit_message (String)

    The value to assign to the #commit_message property

  • :merge_strategy (String)

    The value to assign to the #merge_strategy property

  • :post_merge_action (String)

    The value to assign to the #post_merge_action property



72
73
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/devops/models/execute_merge_pull_request_details.rb', line 72

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

  attributes['actionType'] = 'EXECUTE'

  super(attributes)

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

  self.commit_message = attributes[:'commitMessage'] if attributes[:'commitMessage']

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

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

  self.merge_strategy = attributes[:'mergeStrategy'] if attributes[:'mergeStrategy']

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

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

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

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

  self.post_merge_action = attributes[:'post_merge_action'] if attributes[:'post_merge_action']
  self.post_merge_action = "KEEP_SOURCE_BRANCH" if post_merge_action.nil? && !attributes.key?(:'postMergeAction') && !attributes.key?(:'post_merge_action') # rubocop:disable Style/StringLiterals
end

Instance Attribute Details

#commit_messageString

[Required] The commit message to be shown for this pull request in the destination branch after merge is done.

Returns:

  • (String)


29
30
31
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 29

def commit_message
  @commit_message
end

#merge_strategyString

[Required] the strategy of merging.

Returns:

  • (String)


33
34
35
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 33

def merge_strategy
  @merge_strategy
end

#post_merge_actionString

What needs to happen after the merge is done successfully.

Returns:

  • (String)


37
38
39
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 37

def post_merge_action
  @post_merge_action
end

Class Method Details

.attribute_mapObject

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



40
41
42
43
44
45
46
47
48
49
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 40

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'action_type': :'actionType',
    'commit_message': :'commitMessage',
    'merge_strategy': :'mergeStrategy',
    'post_merge_action': :'postMergeAction'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'action_type': :'String',
    'commit_message': :'String',
    'merge_strategy': :'String',
    'post_merge_action': :'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



126
127
128
129
130
131
132
133
134
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 126

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

  self.class == other.class &&
    action_type == other.action_type &&
    commit_message == other.commit_message &&
    merge_strategy == other.merge_strategy &&
    post_merge_action == other.post_merge_action
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



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 159

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


139
140
141
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 139

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



148
149
150
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 148

def hash
  [action_type, commit_message, merge_strategy, post_merge_action].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



192
193
194
195
196
197
198
199
200
201
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 192

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



186
187
188
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 186

def to_s
  to_hash.to_s
end