Class: OCI::Devops::Models::ExecuteMergePullRequestDetails
- Inherits:
-
MergePullRequestDetails
- Object
- MergePullRequestDetails
- OCI::Devops::Models::ExecuteMergePullRequestDetails
- 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
-
#commit_message ⇒ String
[Required] The commit message to be shown for this pull request in the destination branch after merge is done.
-
#merge_strategy ⇒ String
[Required] the strategy of merging.
-
#post_merge_action ⇒ String
What needs to happen after the merge is done successfully.
Attributes inherited from MergePullRequestDetails
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ExecuteMergePullRequestDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Methods inherited from MergePullRequestDetails
Constructor Details
#initialize(attributes = {}) ⇒ ExecuteMergePullRequestDetails
Initializes the object
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. = attributes[:'commitMessage'] if attributes[:'commitMessage'] raise 'You cannot provide both :commitMessage and :commit_message' if attributes.key?(:'commitMessage') && attributes.key?(:'commit_message') self. = 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_message ⇒ String
[Required] The commit message to be shown for this pull request in the destination branch after merge is done.
29 30 31 |
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 29 def @commit_message end |
#merge_strategy ⇒ String
[Required] the strategy of merging.
33 34 35 |
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 33 def merge_strategy @merge_strategy end |
#post_merge_action ⇒ String
What needs to happen after the merge is done successfully.
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_map ⇒ Object
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_types ⇒ Object
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.
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 && == other. && merge_strategy == other.merge_strategy && post_merge_action == other.post_merge_action end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
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
139 140 141 |
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 139 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
148 149 150 |
# File 'lib/oci/devops/models/execute_merge_pull_request_details.rb', line 148 def hash [action_type, , merge_strategy, post_merge_action].hash end |
#to_hash ⇒ 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_s ⇒ String
Returns the string representation 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 |