GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::CodeCommit::CreateCommit(3) User Contributed Perl Documentation Paws::CodeCommit::CreateCommit(3)

Paws::CodeCommit::CreateCommit - Arguments for method CreateCommit on Paws::CodeCommit

This class represents the parameters used for calling the method CreateCommit on the AWS CodeCommit service. Use the attributes of this class as arguments to method CreateCommit.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateCommit.

    my $codecommit = Paws->service('CodeCommit');
    my $CreateCommitOutput = $codecommit->CreateCommit(
      BranchName     => 'MyBranchName',
      RepositoryName => 'MyRepositoryName',
      AuthorName     => 'MyName',             # OPTIONAL
      CommitMessage  => 'MyMessage',          # OPTIONAL
      DeleteFiles    => [
        {
          FilePath => 'MyPath',
        },
        ...
      ],                                      # OPTIONAL
      Email            => 'MyEmail',          # OPTIONAL
      KeepEmptyFolders => 1,                  # OPTIONAL
      ParentCommitId   => 'MyCommitId',       # OPTIONAL
      PutFiles         => [
        {
          FilePath    => 'MyPath',
          FileContent => 'BlobFileContent',    # max: 6291456; OPTIONAL
          FileMode    =>
            'EXECUTABLE',    # values: EXECUTABLE, NORMAL, SYMLINK; OPTIONAL
          SourceFile => {
            FilePath => 'MyPath',
            IsMove   => 1,          # OPTIONAL
          },    # OPTIONAL
        },
        ...
      ],    # OPTIONAL
      SetFileModes => [
        {
          FileMode =>
            'EXECUTABLE',    # values: EXECUTABLE, NORMAL, SYMLINK; OPTIONAL
          FilePath => 'MyPath',
        },
        ...
      ],    # OPTIONAL
    );
    # Results:
    my $CommitId     = $CreateCommitOutput->CommitId;
    my $FilesAdded   = $CreateCommitOutput->FilesAdded;
    my $FilesDeleted = $CreateCommitOutput->FilesDeleted;
    my $FilesUpdated = $CreateCommitOutput->FilesUpdated;
    my $TreeId       = $CreateCommitOutput->TreeId;
    # Returns a L<Paws::CodeCommit::CreateCommitOutput> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/codecommit/CreateCommit>

The name of the author who created the commit. This information is used as both the author and committer for the commit.

REQUIRED BranchName => Str

The name of the branch where you create the commit.

The commit message you want to include in the commit. Commit messages are limited to 256 KB. If no message is specified, a default message is used.

The files to delete in this commit. These files still exist in earlier commits.

The email address of the person who created the commit.

If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If true, a ..gitkeep file is created for empty folders. The default is false.

The ID of the commit that is the parent of the commit you create. Not required if this is an empty repository.

The files to add or update in this commit.

REQUIRED RepositoryName => Str

The name of the repository where you create the commit.

The file modes to update for files in this commit.

This class forms part of Paws, documenting arguments for method CreateCommit in Paws::CodeCommit

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.