// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package ecr_test import ( "context" "fmt" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/awserr" "github.com/aws/aws-sdk-go-v2/aws/external" "github.com/aws/aws-sdk-go-v2/service/ecr" ) var _ aws.Config // To delete multiple images // // This example deletes images with the tags precise and trusty in a repository called // ubuntu in the default registry for an account. func ExampleClient_BatchDeleteImageRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.BatchDeleteImageInput{ ImageIds: []ecr.ImageIdentifier{ { ImageTag: aws.String("precise"), }, }, RepositoryName: aws.String("ubuntu"), } req := svc.BatchDeleteImageRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeRepositoryNotFoundException: fmt.Println(ecr.ErrCodeRepositoryNotFoundException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To obtain multiple images in a single request // // This example obtains information for an image with a specified image digest ID from // the repository named ubuntu in the current account. func ExampleClient_BatchGetImageRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.BatchGetImageInput{ ImageIds: []ecr.ImageIdentifier{ { ImageTag: aws.String("precise"), }, }, RepositoryName: aws.String("ubuntu"), } req := svc.BatchGetImageRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeRepositoryNotFoundException: fmt.Println(ecr.ErrCodeRepositoryNotFoundException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To create a new repository // // This example creates a repository called nginx-web-app inside the project-a namespace // in the default registry for an account. func ExampleClient_CreateRepositoryRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.CreateRepositoryInput{ RepositoryName: aws.String("project-a/nginx-web-app"), } req := svc.CreateRepositoryRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeInvalidTagParameterException: fmt.Println(ecr.ErrCodeInvalidTagParameterException, aerr.Error()) case ecr.ErrCodeTooManyTagsException: fmt.Println(ecr.ErrCodeTooManyTagsException, aerr.Error()) case ecr.ErrCodeRepositoryAlreadyExistsException: fmt.Println(ecr.ErrCodeRepositoryAlreadyExistsException, aerr.Error()) case ecr.ErrCodeLimitExceededException: fmt.Println(ecr.ErrCodeLimitExceededException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To force delete a repository // // This example force deletes a repository named ubuntu in the default registry for // an account. The force parameter is required if the repository contains images. func ExampleClient_DeleteRepositoryRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.DeleteRepositoryInput{ Force: aws.Bool(true), RepositoryName: aws.String("ubuntu"), } req := svc.DeleteRepositoryRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeRepositoryNotFoundException: fmt.Println(ecr.ErrCodeRepositoryNotFoundException, aerr.Error()) case ecr.ErrCodeRepositoryNotEmptyException: fmt.Println(ecr.ErrCodeRepositoryNotEmptyException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To delete the policy associated with a repository // // This example deletes the policy associated with the repository named ubuntu in the // current account. func ExampleClient_DeleteRepositoryPolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.DeleteRepositoryPolicyInput{ RepositoryName: aws.String("ubuntu"), } req := svc.DeleteRepositoryPolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeRepositoryNotFoundException: fmt.Println(ecr.ErrCodeRepositoryNotFoundException, aerr.Error()) case ecr.ErrCodeRepositoryPolicyNotFoundException: fmt.Println(ecr.ErrCodeRepositoryPolicyNotFoundException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To describe all repositories in the current account // // The following example obtains a list and description of all repositories in the default // registry to which the current user has access. func ExampleClient_DescribeRepositoriesRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.DescribeRepositoriesInput{} req := svc.DescribeRepositoriesRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeRepositoryNotFoundException: fmt.Println(ecr.ErrCodeRepositoryNotFoundException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To obtain an authorization token // // This example gets an authorization token for your default registry. func ExampleClient_GetAuthorizationTokenRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.GetAuthorizationTokenInput{} req := svc.GetAuthorizationTokenRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get the current policy for a repository // // This example obtains the repository policy for the repository named ubuntu. func ExampleClient_GetRepositoryPolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.GetRepositoryPolicyInput{ RepositoryName: aws.String("ubuntu"), } req := svc.GetRepositoryPolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeRepositoryNotFoundException: fmt.Println(ecr.ErrCodeRepositoryNotFoundException, aerr.Error()) case ecr.ErrCodeRepositoryPolicyNotFoundException: fmt.Println(ecr.ErrCodeRepositoryPolicyNotFoundException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To list all images in a repository // // This example lists all of the images in the repository named ubuntu in the default // registry in the current account. func ExampleClient_ListImagesRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := ecr.New(cfg) input := &ecr.ListImagesInput{ RepositoryName: aws.String("ubuntu"), } req := svc.ListImagesRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case ecr.ErrCodeServerException: fmt.Println(ecr.ErrCodeServerException, aerr.Error()) case ecr.ErrCodeInvalidParameterException: fmt.Println(ecr.ErrCodeInvalidParameterException, aerr.Error()) case ecr.ErrCodeRepositoryNotFoundException: fmt.Println(ecr.ErrCodeRepositoryNotFoundException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) }