Documentation ¶
Overview ¶
Package codecommit provides a client for AWS CodeCommit.
Index ¶
- type BatchGetRepositoriesInput
- type BatchGetRepositoriesOutput
- type BranchInfo
- type CodeCommit
- func (c *CodeCommit) BatchGetRepositories(input *BatchGetRepositoriesInput) (*BatchGetRepositoriesOutput, error)
- func (c *CodeCommit) BatchGetRepositoriesRequest(input *BatchGetRepositoriesInput) (req *aws.Request, output *BatchGetRepositoriesOutput)
- func (c *CodeCommit) CreateBranch(input *CreateBranchInput) (*CreateBranchOutput, error)
- func (c *CodeCommit) CreateBranchRequest(input *CreateBranchInput) (req *aws.Request, output *CreateBranchOutput)
- func (c *CodeCommit) CreateRepository(input *CreateRepositoryInput) (*CreateRepositoryOutput, error)
- func (c *CodeCommit) CreateRepositoryRequest(input *CreateRepositoryInput) (req *aws.Request, output *CreateRepositoryOutput)
- func (c *CodeCommit) DeleteRepository(input *DeleteRepositoryInput) (*DeleteRepositoryOutput, error)
- func (c *CodeCommit) DeleteRepositoryRequest(input *DeleteRepositoryInput) (req *aws.Request, output *DeleteRepositoryOutput)
- func (c *CodeCommit) GetBranch(input *GetBranchInput) (*GetBranchOutput, error)
- func (c *CodeCommit) GetBranchRequest(input *GetBranchInput) (req *aws.Request, output *GetBranchOutput)
- func (c *CodeCommit) GetRepository(input *GetRepositoryInput) (*GetRepositoryOutput, error)
- func (c *CodeCommit) GetRepositoryRequest(input *GetRepositoryInput) (req *aws.Request, output *GetRepositoryOutput)
- func (c *CodeCommit) ListBranches(input *ListBranchesInput) (*ListBranchesOutput, error)
- func (c *CodeCommit) ListBranchesRequest(input *ListBranchesInput) (req *aws.Request, output *ListBranchesOutput)
- func (c *CodeCommit) ListRepositories(input *ListRepositoriesInput) (*ListRepositoriesOutput, error)
- func (c *CodeCommit) ListRepositoriesRequest(input *ListRepositoriesInput) (req *aws.Request, output *ListRepositoriesOutput)
- func (c *CodeCommit) UpdateDefaultBranch(input *UpdateDefaultBranchInput) (*UpdateDefaultBranchOutput, error)
- func (c *CodeCommit) UpdateDefaultBranchRequest(input *UpdateDefaultBranchInput) (req *aws.Request, output *UpdateDefaultBranchOutput)
- func (c *CodeCommit) UpdateRepositoryDescription(input *UpdateRepositoryDescriptionInput) (*UpdateRepositoryDescriptionOutput, error)
- func (c *CodeCommit) UpdateRepositoryDescriptionRequest(input *UpdateRepositoryDescriptionInput) (req *aws.Request, output *UpdateRepositoryDescriptionOutput)
- func (c *CodeCommit) UpdateRepositoryName(input *UpdateRepositoryNameInput) (*UpdateRepositoryNameOutput, error)
- func (c *CodeCommit) UpdateRepositoryNameRequest(input *UpdateRepositoryNameInput) (req *aws.Request, output *UpdateRepositoryNameOutput)
- type CreateBranchInput
- type CreateBranchOutput
- type CreateRepositoryInput
- type CreateRepositoryOutput
- type DeleteRepositoryInput
- type DeleteRepositoryOutput
- type GetBranchInput
- type GetBranchOutput
- type GetRepositoryInput
- type GetRepositoryOutput
- type ListBranchesInput
- type ListBranchesOutput
- type ListRepositoriesInput
- type ListRepositoriesOutput
- type RepositoryMetadata
- type RepositoryNameIDPair
- type UpdateDefaultBranchInput
- type UpdateDefaultBranchOutput
- type UpdateRepositoryDescriptionInput
- type UpdateRepositoryDescriptionOutput
- type UpdateRepositoryNameInput
- type UpdateRepositoryNameOutput
Examples ¶
- CodeCommit.BatchGetRepositories
- CodeCommit.CreateBranch
- CodeCommit.CreateRepository
- CodeCommit.DeleteRepository
- CodeCommit.GetBranch
- CodeCommit.GetRepository
- CodeCommit.ListBranches
- CodeCommit.ListRepositories
- CodeCommit.UpdateDefaultBranch
- CodeCommit.UpdateRepositoryDescription
- CodeCommit.UpdateRepositoryName
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BatchGetRepositoriesInput ¶
type BatchGetRepositoriesInput struct { // The names of the repositories to get information about. RepositoryNames []*string `locationName:"repositoryNames" type:"list" required:"true"` // contains filtered or unexported fields }
Represents the input of a batch get repositories operation.
func (BatchGetRepositoriesInput) GoString ¶
func (s BatchGetRepositoriesInput) GoString() string
GoString returns the string representation
func (BatchGetRepositoriesInput) String ¶
func (s BatchGetRepositoriesInput) String() string
String returns the string representation
type BatchGetRepositoriesOutput ¶
type BatchGetRepositoriesOutput struct { // A list of repositories returned by the batch get repositories operation. Repositories []*RepositoryMetadata `locationName:"repositories" type:"list"` // Returns a list of repository names for which information could not be found. RepositoriesNotFound []*string `locationName:"repositoriesNotFound" type:"list"` // contains filtered or unexported fields }
Represents the output of a batch get repositories operation.
func (BatchGetRepositoriesOutput) GoString ¶
func (s BatchGetRepositoriesOutput) GoString() string
GoString returns the string representation
func (BatchGetRepositoriesOutput) String ¶
func (s BatchGetRepositoriesOutput) String() string
String returns the string representation
type BranchInfo ¶
type BranchInfo struct { // The name of the branch. BranchName *string `locationName:"branchName" type:"string"` // The ID of the last commit made to the branch. CommitID *string `locationName:"commitId" type:"string"` // contains filtered or unexported fields }
Returns information about a branch.
func (BranchInfo) GoString ¶
func (s BranchInfo) GoString() string
GoString returns the string representation
func (BranchInfo) String ¶
func (s BranchInfo) String() string
String returns the string representation
type CodeCommit ¶
This is the AWS CodeCommit API Reference. This reference provides descriptions of the AWS CodeCommit API.
You can use the AWS CodeCommit API to work with the following objects:
Repositories Branches Commits For information about how to use AWS CodeCommit,
see the AWS CodeCommit User Guide.
func (*CodeCommit) BatchGetRepositories ¶
func (c *CodeCommit) BatchGetRepositories(input *BatchGetRepositoriesInput) (*BatchGetRepositoriesOutput, error)
Gets information about one or more repositories.
The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.BatchGetRepositoriesInput{ RepositoryNames: []*string{ // Required aws.String("RepositoryName"), // Required // More values... }, } resp, err := svc.BatchGetRepositories(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) BatchGetRepositoriesRequest ¶
func (c *CodeCommit) BatchGetRepositoriesRequest(input *BatchGetRepositoriesInput) (req *aws.Request, output *BatchGetRepositoriesOutput)
BatchGetRepositoriesRequest generates a request for the BatchGetRepositories operation.
func (*CodeCommit) CreateBranch ¶
func (c *CodeCommit) CreateBranch(input *CreateBranchInput) (*CreateBranchOutput, error)
Creates a new branch in a repository and points the branch to a commit.
Calling the create branch operation does not set a repository's default branch. To do this, call the update default branch operation.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.CreateBranchInput{ BranchName: aws.String("BranchName"), // Required CommitID: aws.String("CommitId"), // Required RepositoryName: aws.String("RepositoryName"), // Required } resp, err := svc.CreateBranch(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) CreateBranchRequest ¶
func (c *CodeCommit) CreateBranchRequest(input *CreateBranchInput) (req *aws.Request, output *CreateBranchOutput)
CreateBranchRequest generates a request for the CreateBranch operation.
func (*CodeCommit) CreateRepository ¶
func (c *CodeCommit) CreateRepository(input *CreateRepositoryInput) (*CreateRepositoryOutput, error)
Creates a new, empty repository.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.CreateRepositoryInput{ RepositoryName: aws.String("RepositoryName"), // Required RepositoryDescription: aws.String("RepositoryDescription"), } resp, err := svc.CreateRepository(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) CreateRepositoryRequest ¶
func (c *CodeCommit) CreateRepositoryRequest(input *CreateRepositoryInput) (req *aws.Request, output *CreateRepositoryOutput)
CreateRepositoryRequest generates a request for the CreateRepository operation.
func (*CodeCommit) DeleteRepository ¶
func (c *CodeCommit) DeleteRepository(input *DeleteRepositoryInput) (*DeleteRepositoryOutput, error)
Deletes a repository. If a specified repository was already deleted, a null repository ID will be returned.
Deleting a repository also deletes all associated objects and metadata. After a repository is deleted, all future push calls to the deleted repository will fail.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.DeleteRepositoryInput{ RepositoryName: aws.String("RepositoryName"), // Required } resp, err := svc.DeleteRepository(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) DeleteRepositoryRequest ¶
func (c *CodeCommit) DeleteRepositoryRequest(input *DeleteRepositoryInput) (req *aws.Request, output *DeleteRepositoryOutput)
DeleteRepositoryRequest generates a request for the DeleteRepository operation.
func (*CodeCommit) GetBranch ¶
func (c *CodeCommit) GetBranch(input *GetBranchInput) (*GetBranchOutput, error)
Retrieves information about a repository branch, including its name and the last commit ID.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.GetBranchInput{ BranchName: aws.String("BranchName"), RepositoryName: aws.String("RepositoryName"), } resp, err := svc.GetBranch(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) GetBranchRequest ¶
func (c *CodeCommit) GetBranchRequest(input *GetBranchInput) (req *aws.Request, output *GetBranchOutput)
GetBranchRequest generates a request for the GetBranch operation.
func (*CodeCommit) GetRepository ¶
func (c *CodeCommit) GetRepository(input *GetRepositoryInput) (*GetRepositoryOutput, error)
Gets information about a repository.
The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.GetRepositoryInput{ RepositoryName: aws.String("RepositoryName"), // Required } resp, err := svc.GetRepository(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) GetRepositoryRequest ¶
func (c *CodeCommit) GetRepositoryRequest(input *GetRepositoryInput) (req *aws.Request, output *GetRepositoryOutput)
GetRepositoryRequest generates a request for the GetRepository operation.
func (*CodeCommit) ListBranches ¶
func (c *CodeCommit) ListBranches(input *ListBranchesInput) (*ListBranchesOutput, error)
Gets information about one or more branches in a repository.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.ListBranchesInput{ RepositoryName: aws.String("RepositoryName"), // Required NextToken: aws.String("NextToken"), } resp, err := svc.ListBranches(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) ListBranchesRequest ¶
func (c *CodeCommit) ListBranchesRequest(input *ListBranchesInput) (req *aws.Request, output *ListBranchesOutput)
ListBranchesRequest generates a request for the ListBranches operation.
func (*CodeCommit) ListRepositories ¶
func (c *CodeCommit) ListRepositories(input *ListRepositoriesInput) (*ListRepositoriesOutput, error)
Gets information about one or more repositories.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.ListRepositoriesInput{ NextToken: aws.String("NextToken"), Order: aws.String("OrderEnum"), SortBy: aws.String("SortByEnum"), } resp, err := svc.ListRepositories(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) ListRepositoriesRequest ¶
func (c *CodeCommit) ListRepositoriesRequest(input *ListRepositoriesInput) (req *aws.Request, output *ListRepositoriesOutput)
ListRepositoriesRequest generates a request for the ListRepositories operation.
func (*CodeCommit) UpdateDefaultBranch ¶
func (c *CodeCommit) UpdateDefaultBranch(input *UpdateDefaultBranchInput) (*UpdateDefaultBranchOutput, error)
Sets or changes the default branch name for the specified repository.
If you use this operation to change the default branch name to the current default branch name, a success message is returned even though the default branch did not change.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.UpdateDefaultBranchInput{ DefaultBranchName: aws.String("BranchName"), // Required RepositoryName: aws.String("RepositoryName"), // Required } resp, err := svc.UpdateDefaultBranch(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) UpdateDefaultBranchRequest ¶
func (c *CodeCommit) UpdateDefaultBranchRequest(input *UpdateDefaultBranchInput) (req *aws.Request, output *UpdateDefaultBranchOutput)
UpdateDefaultBranchRequest generates a request for the UpdateDefaultBranch operation.
func (*CodeCommit) UpdateRepositoryDescription ¶
func (c *CodeCommit) UpdateRepositoryDescription(input *UpdateRepositoryDescriptionInput) (*UpdateRepositoryDescriptionOutput, error)
Sets or changes the comment or description for a repository.
The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.UpdateRepositoryDescriptionInput{ RepositoryName: aws.String("RepositoryName"), // Required RepositoryDescription: aws.String("RepositoryDescription"), } resp, err := svc.UpdateRepositoryDescription(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) UpdateRepositoryDescriptionRequest ¶
func (c *CodeCommit) UpdateRepositoryDescriptionRequest(input *UpdateRepositoryDescriptionInput) (req *aws.Request, output *UpdateRepositoryDescriptionOutput)
UpdateRepositoryDescriptionRequest generates a request for the UpdateRepositoryDescription operation.
func (*CodeCommit) UpdateRepositoryName ¶
func (c *CodeCommit) UpdateRepositoryName(input *UpdateRepositoryNameInput) (*UpdateRepositoryNameOutput, error)
Renames a repository.
Example ¶
package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/service/codecommit" ) func main() { svc := codecommit.New(nil) params := &codecommit.UpdateRepositoryNameInput{ NewName: aws.String("RepositoryName"), // Required OldName: aws.String("RepositoryName"), // Required } resp, err := svc.UpdateRepositoryName(params) if err != nil { if awsErr, ok := err.(awserr.Error); ok { // Generic AWS error with Code, Message, and original error (if any) fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) if reqErr, ok := err.(awserr.RequestFailure); ok { // A service error occurred fmt.Println(reqErr.Code(), reqErr.Message(), reqErr.StatusCode(), reqErr.RequestID()) } } else { // This case should never be hit, the SDK should always return an // error which satisfies the awserr.Error interface. fmt.Println(err.Error()) } } // Pretty-print the response data. fmt.Println(awsutil.StringValue(resp)) }
Output:
func (*CodeCommit) UpdateRepositoryNameRequest ¶
func (c *CodeCommit) UpdateRepositoryNameRequest(input *UpdateRepositoryNameInput) (req *aws.Request, output *UpdateRepositoryNameOutput)
UpdateRepositoryNameRequest generates a request for the UpdateRepositoryName operation.
type CreateBranchInput ¶
type CreateBranchInput struct { // The name of the new branch to create. BranchName *string `locationName:"branchName" type:"string" required:"true"` // The ID of the commit to point the new branch to. // // If this commit ID is not specified, the new branch will point to the commit // that is pointed to by the repository's default branch. CommitID *string `locationName:"commitId" type:"string" required:"true"` // The name of the repository in which you want to create the new branch. RepositoryName *string `locationName:"repositoryName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of a create branch operation.
func (CreateBranchInput) GoString ¶
func (s CreateBranchInput) GoString() string
GoString returns the string representation
func (CreateBranchInput) String ¶
func (s CreateBranchInput) String() string
String returns the string representation
type CreateBranchOutput ¶
type CreateBranchOutput struct {
// contains filtered or unexported fields
}
func (CreateBranchOutput) GoString ¶
func (s CreateBranchOutput) GoString() string
GoString returns the string representation
func (CreateBranchOutput) String ¶
func (s CreateBranchOutput) String() string
String returns the string representation
type CreateRepositoryInput ¶
type CreateRepositoryInput struct { // A comment or description about the new repository. RepositoryDescription *string `locationName:"repositoryDescription" type:"string"` // The name of the new repository to be created. // // The repository name must be unique across the calling AWS account. In addition, // repository names are restricted to alphanumeric characters. The suffix ".git" // is prohibited. RepositoryName *string `locationName:"repositoryName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of a create repository operation.
func (CreateRepositoryInput) GoString ¶
func (s CreateRepositoryInput) GoString() string
GoString returns the string representation
func (CreateRepositoryInput) String ¶
func (s CreateRepositoryInput) String() string
String returns the string representation
type CreateRepositoryOutput ¶
type CreateRepositoryOutput struct { // Information about the newly created repository. RepositoryMetadata *RepositoryMetadata `locationName:"repositoryMetadata" type:"structure"` // contains filtered or unexported fields }
Represents the output of a create repository operation.
func (CreateRepositoryOutput) GoString ¶
func (s CreateRepositoryOutput) GoString() string
GoString returns the string representation
func (CreateRepositoryOutput) String ¶
func (s CreateRepositoryOutput) String() string
String returns the string representation
type DeleteRepositoryInput ¶
type DeleteRepositoryInput struct { // The name of the repository to delete. RepositoryName *string `locationName:"repositoryName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of a delete repository operation.
func (DeleteRepositoryInput) GoString ¶
func (s DeleteRepositoryInput) GoString() string
GoString returns the string representation
func (DeleteRepositoryInput) String ¶
func (s DeleteRepositoryInput) String() string
String returns the string representation
type DeleteRepositoryOutput ¶
type DeleteRepositoryOutput struct { // The ID of the repository that was deleted. RepositoryID *string `locationName:"repositoryId" type:"string"` // contains filtered or unexported fields }
Represents the output of a delete repository operation.
func (DeleteRepositoryOutput) GoString ¶
func (s DeleteRepositoryOutput) GoString() string
GoString returns the string representation
func (DeleteRepositoryOutput) String ¶
func (s DeleteRepositoryOutput) String() string
String returns the string representation
type GetBranchInput ¶
type GetBranchInput struct { // The name of the branch for which you want to retrieve information. BranchName *string `locationName:"branchName" type:"string"` // Repository name is restricted to alphanumeric characters (a-z, A-Z, 0-9), // ".", "_", and "-". Additionally, the suffix ".git" is prohibited in a repository // name. RepositoryName *string `locationName:"repositoryName" type:"string"` // contains filtered or unexported fields }
Represents the input of a get branch operation.
func (GetBranchInput) GoString ¶
func (s GetBranchInput) GoString() string
GoString returns the string representation
func (GetBranchInput) String ¶
func (s GetBranchInput) String() string
String returns the string representation
type GetBranchOutput ¶
type GetBranchOutput struct { // The name of the branch. Branch *BranchInfo `locationName:"branch" type:"structure"` // contains filtered or unexported fields }
Represents the output of a get branch operation.
func (GetBranchOutput) GoString ¶
func (s GetBranchOutput) GoString() string
GoString returns the string representation
func (GetBranchOutput) String ¶
func (s GetBranchOutput) String() string
String returns the string representation
type GetRepositoryInput ¶
type GetRepositoryInput struct { // The name of the repository to get information about. RepositoryName *string `locationName:"repositoryName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of a get repository operation.
func (GetRepositoryInput) GoString ¶
func (s GetRepositoryInput) GoString() string
GoString returns the string representation
func (GetRepositoryInput) String ¶
func (s GetRepositoryInput) String() string
String returns the string representation
type GetRepositoryOutput ¶
type GetRepositoryOutput struct { // Information about the repository. RepositoryMetadata *RepositoryMetadata `locationName:"repositoryMetadata" type:"structure"` // contains filtered or unexported fields }
Represents the output of a get repository operation.
func (GetRepositoryOutput) GoString ¶
func (s GetRepositoryOutput) GoString() string
GoString returns the string representation
func (GetRepositoryOutput) String ¶
func (s GetRepositoryOutput) String() string
String returns the string representation
type ListBranchesInput ¶
type ListBranchesInput struct { // An enumeration token that allows the operation to batch the results. NextToken *string `locationName:"nextToken" type:"string"` // The name of the repository that contains the branches. RepositoryName *string `locationName:"repositoryName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of a list branches operation.
func (ListBranchesInput) GoString ¶
func (s ListBranchesInput) GoString() string
GoString returns the string representation
func (ListBranchesInput) String ¶
func (s ListBranchesInput) String() string
String returns the string representation
type ListBranchesOutput ¶
type ListBranchesOutput struct { // The list of branch names. Branches []*string `locationName:"branches" type:"list"` // An enumeration token that returns the batch of the results. NextToken *string `locationName:"nextToken" type:"string"` // contains filtered or unexported fields }
Represents the output of a list branches operation.
func (ListBranchesOutput) GoString ¶
func (s ListBranchesOutput) GoString() string
GoString returns the string representation
func (ListBranchesOutput) String ¶
func (s ListBranchesOutput) String() string
String returns the string representation
type ListRepositoriesInput ¶
type ListRepositoriesInput struct { // An enumeration token that allows the operation to batch the results of the // operation. Batch sizes are 1,000 for list repository operations. When the // client sends the token back to AWS CodeCommit, another page of 1,000 records // is retrieved. NextToken *string `locationName:"nextToken" type:"string"` // The order in which to sort the results of a list repositories operation. Order *string `locationName:"order" type:"string"` // The criteria used to sort the results of a list repositories operation. SortBy *string `locationName:"sortBy" type:"string"` // contains filtered or unexported fields }
Represents the input of a list repositories operation.
func (ListRepositoriesInput) GoString ¶
func (s ListRepositoriesInput) GoString() string
GoString returns the string representation
func (ListRepositoriesInput) String ¶
func (s ListRepositoriesInput) String() string
String returns the string representation
type ListRepositoriesOutput ¶
type ListRepositoriesOutput struct { // An enumeration token that allows the operation to batch the results of the // operation. Batch sizes are 1,000 for list repository operations. When the // client sends the token back to AWS CodeCommit, another page of 1,000 records // is retrieved. NextToken *string `locationName:"nextToken" type:"string"` // Lists the repositories called by the list repositories operation. Repositories []*RepositoryNameIDPair `locationName:"repositories" type:"list"` // contains filtered or unexported fields }
Represents the output of a list repositories operation.
func (ListRepositoriesOutput) GoString ¶
func (s ListRepositoriesOutput) GoString() string
GoString returns the string representation
func (ListRepositoriesOutput) String ¶
func (s ListRepositoriesOutput) String() string
String returns the string representation
type RepositoryMetadata ¶
type RepositoryMetadata struct { // The Amazon Resource Name (ARN) of the repository. ARN *string `locationName:"Arn" type:"string"` // The ID of the AWS account associated with the repository. AccountID *string `locationName:"accountId" type:"string"` // The URL to use for cloning the repository over HTTPS. CloneURLHTTP *string `locationName:"cloneUrlHttp" type:"string"` // The URL to use for cloning the repository over SSH. CloneURLSSH *string `locationName:"cloneUrlSsh" type:"string"` // The date and time the repository was created, in timestamp format. CreationDate *time.Time `locationName:"creationDate" type:"timestamp" timestampFormat:"unix"` // The repository's default branch name. DefaultBranch *string `locationName:"defaultBranch" type:"string"` // The date and time the repository was last modified, in timestamp format. LastModifiedDate *time.Time `locationName:"lastModifiedDate" type:"timestamp" timestampFormat:"unix"` // A comment or description about the repository. RepositoryDescription *string `locationName:"repositoryDescription" type:"string"` // The ID of the repository. RepositoryID *string `locationName:"repositoryId" type:"string"` // The repository's name. RepositoryName *string `locationName:"repositoryName" type:"string"` // contains filtered or unexported fields }
Information about a repository.
func (RepositoryMetadata) GoString ¶
func (s RepositoryMetadata) GoString() string
GoString returns the string representation
func (RepositoryMetadata) String ¶
func (s RepositoryMetadata) String() string
String returns the string representation
type RepositoryNameIDPair ¶
type RepositoryNameIDPair struct { // The ID associated with the repository name. RepositoryID *string `locationName:"repositoryId" type:"string"` // Repository name is restricted to alphanumeric characters (a-z, A-Z, 0-9), // ".", "_", and "-". Additionally, the suffix ".git" is prohibited in a repository // name. RepositoryName *string `locationName:"repositoryName" type:"string"` // contains filtered or unexported fields }
Information about a repository name and ID.
func (RepositoryNameIDPair) GoString ¶
func (s RepositoryNameIDPair) GoString() string
GoString returns the string representation
func (RepositoryNameIDPair) String ¶
func (s RepositoryNameIDPair) String() string
String returns the string representation
type UpdateDefaultBranchInput ¶
type UpdateDefaultBranchInput struct { // The name of the branch to set as the default. DefaultBranchName *string `locationName:"defaultBranchName" type:"string" required:"true"` // The name of the repository to set or change the default branch for. RepositoryName *string `locationName:"repositoryName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of an update default branch operation.
func (UpdateDefaultBranchInput) GoString ¶
func (s UpdateDefaultBranchInput) GoString() string
GoString returns the string representation
func (UpdateDefaultBranchInput) String ¶
func (s UpdateDefaultBranchInput) String() string
String returns the string representation
type UpdateDefaultBranchOutput ¶
type UpdateDefaultBranchOutput struct {
// contains filtered or unexported fields
}
func (UpdateDefaultBranchOutput) GoString ¶
func (s UpdateDefaultBranchOutput) GoString() string
GoString returns the string representation
func (UpdateDefaultBranchOutput) String ¶
func (s UpdateDefaultBranchOutput) String() string
String returns the string representation
type UpdateRepositoryDescriptionInput ¶
type UpdateRepositoryDescriptionInput struct { // The new comment or description for the specified repository. RepositoryDescription *string `locationName:"repositoryDescription" type:"string"` // The name of the repository to set or change the comment or description for. RepositoryName *string `locationName:"repositoryName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of an update repository description operation.
func (UpdateRepositoryDescriptionInput) GoString ¶
func (s UpdateRepositoryDescriptionInput) GoString() string
GoString returns the string representation
func (UpdateRepositoryDescriptionInput) String ¶
func (s UpdateRepositoryDescriptionInput) String() string
String returns the string representation
type UpdateRepositoryDescriptionOutput ¶
type UpdateRepositoryDescriptionOutput struct {
// contains filtered or unexported fields
}
func (UpdateRepositoryDescriptionOutput) GoString ¶
func (s UpdateRepositoryDescriptionOutput) GoString() string
GoString returns the string representation
func (UpdateRepositoryDescriptionOutput) String ¶
func (s UpdateRepositoryDescriptionOutput) String() string
String returns the string representation
type UpdateRepositoryNameInput ¶
type UpdateRepositoryNameInput struct { // Repository name is restricted to alphanumeric characters (a-z, A-Z, 0-9), // ".", "_", and "-". Additionally, the suffix ".git" is prohibited in a repository // name. NewName *string `locationName:"newName" type:"string" required:"true"` // Repository name is restricted to alphanumeric characters (a-z, A-Z, 0-9), // ".", "_", and "-". Additionally, the suffix ".git" is prohibited in a repository // name. OldName *string `locationName:"oldName" type:"string" required:"true"` // contains filtered or unexported fields }
Represents the input of an update repository description operation.
func (UpdateRepositoryNameInput) GoString ¶
func (s UpdateRepositoryNameInput) GoString() string
GoString returns the string representation
func (UpdateRepositoryNameInput) String ¶
func (s UpdateRepositoryNameInput) String() string
String returns the string representation
type UpdateRepositoryNameOutput ¶
type UpdateRepositoryNameOutput struct {
// contains filtered or unexported fields
}
func (UpdateRepositoryNameOutput) GoString ¶
func (s UpdateRepositoryNameOutput) GoString() string
GoString returns the string representation
func (UpdateRepositoryNameOutput) String ¶
func (s UpdateRepositoryNameOutput) String() string
String returns the string representation
Directories ¶
Path | Synopsis |
---|---|
Package codecommitiface provides an interface for the AWS CodeCommit.
|
Package codecommitiface provides an interface for the AWS CodeCommit. |