Class: Aws::CodeCommit::Types::CreateUnreferencedMergeCommitInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::CreateUnreferencedMergeCommitInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #author_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the author who created the unreferenced commit.
 - 
  
    
      #commit_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The commit message for the unreferenced commit.
 - 
  
    
      #conflict_detail_level  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The level of conflict detail to use.
 - 
  
    
      #conflict_resolution  ⇒ Types::ConflictResolution 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.
 - 
  
    
      #conflict_resolution_strategy  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file.
 - 
  
    
      #destination_commit_specifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
 - 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The email address for the person who created the unreferenced commit.
 - 
  
    
      #keep_empty_folders  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty.
 - 
  
    
      #merge_option  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The merge option or strategy you want to use to merge the code.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository where you want to create the unreferenced merge commit.
 - 
  
    
      #source_commit_specifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
 
Instance Attribute Details
#author_name ⇒ String
The name of the author who created the unreferenced commit. This information is used as both the author and committer for the commit.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#commit_message ⇒ String
The commit message for the unreferenced commit.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#conflict_detail_level ⇒ String
The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#conflict_resolution ⇒ Types::ConflictResolution
If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#conflict_resolution_strategy ⇒ String
Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#destination_commit_specifier ⇒ String
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#email ⇒ String
The email address for the person who created the unreferenced commit.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#keep_empty_folders ⇒ Boolean
If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If this is specified as true, a .gitkeep file is created for empty folders. The default is false.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#merge_option ⇒ String
The merge option or strategy you want to use to merge the code.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository where you want to create the unreferenced merge commit.
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  | 
  
#source_commit_specifier ⇒ String
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
      1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1770 class CreateUnreferencedMergeCommitInput < Struct.new( :repository_name, :source_commit_specifier, :destination_commit_specifier, :merge_option, :conflict_detail_level, :conflict_resolution_strategy, :author_name, :email, :commit_message, :keep_empty_folders, :conflict_resolution) SENSITIVE = [] include Aws::Structure end  |