forked from aws/aws-sdk-go-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
3642 lines (2957 loc) · 119 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package ecr
import (
"time"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
)
const opBatchCheckLayerAvailability = "BatchCheckLayerAvailability"
// BatchCheckLayerAvailabilityRequest is a API request type for the BatchCheckLayerAvailability API operation.
type BatchCheckLayerAvailabilityRequest struct {
*aws.Request
Input *BatchCheckLayerAvailabilityInput
Copy func(*BatchCheckLayerAvailabilityInput) BatchCheckLayerAvailabilityRequest
}
// Send marshals and sends the BatchCheckLayerAvailability API request.
func (r BatchCheckLayerAvailabilityRequest) Send() (*BatchCheckLayerAvailabilityOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*BatchCheckLayerAvailabilityOutput), nil
}
// BatchCheckLayerAvailabilityRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Check the availability of multiple image layers in a specified registry and
// repository.
//
// This operation is used by the Amazon ECR proxy, and it is not intended for
// general use by customers for pulling and pushing images. In most cases, you
// should use the docker CLI to pull, tag, and push images.
//
// // Example sending a request using the BatchCheckLayerAvailabilityRequest method.
// req := client.BatchCheckLayerAvailabilityRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/BatchCheckLayerAvailability
func (c *ECR) BatchCheckLayerAvailabilityRequest(input *BatchCheckLayerAvailabilityInput) BatchCheckLayerAvailabilityRequest {
op := &aws.Operation{
Name: opBatchCheckLayerAvailability,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &BatchCheckLayerAvailabilityInput{}
}
output := &BatchCheckLayerAvailabilityOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return BatchCheckLayerAvailabilityRequest{Request: req, Input: input, Copy: c.BatchCheckLayerAvailabilityRequest}
}
const opBatchDeleteImage = "BatchDeleteImage"
// BatchDeleteImageRequest is a API request type for the BatchDeleteImage API operation.
type BatchDeleteImageRequest struct {
*aws.Request
Input *BatchDeleteImageInput
Copy func(*BatchDeleteImageInput) BatchDeleteImageRequest
}
// Send marshals and sends the BatchDeleteImage API request.
func (r BatchDeleteImageRequest) Send() (*BatchDeleteImageOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*BatchDeleteImageOutput), nil
}
// BatchDeleteImageRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Deletes a list of specified images within a specified repository. Images
// are specified with either imageTag or imageDigest.
//
// You can remove a tag from an image by specifying the image's tag in your
// request. When you remove the last tag from an image, the image is deleted
// from your repository.
//
// You can completely delete an image (and all of its tags) by specifying the
// image's digest in your request.
//
// // Example sending a request using the BatchDeleteImageRequest method.
// req := client.BatchDeleteImageRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/BatchDeleteImage
func (c *ECR) BatchDeleteImageRequest(input *BatchDeleteImageInput) BatchDeleteImageRequest {
op := &aws.Operation{
Name: opBatchDeleteImage,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &BatchDeleteImageInput{}
}
output := &BatchDeleteImageOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return BatchDeleteImageRequest{Request: req, Input: input, Copy: c.BatchDeleteImageRequest}
}
const opBatchGetImage = "BatchGetImage"
// BatchGetImageRequest is a API request type for the BatchGetImage API operation.
type BatchGetImageRequest struct {
*aws.Request
Input *BatchGetImageInput
Copy func(*BatchGetImageInput) BatchGetImageRequest
}
// Send marshals and sends the BatchGetImage API request.
func (r BatchGetImageRequest) Send() (*BatchGetImageOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*BatchGetImageOutput), nil
}
// BatchGetImageRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Gets detailed information for specified images within a specified repository.
// Images are specified with either imageTag or imageDigest.
//
// // Example sending a request using the BatchGetImageRequest method.
// req := client.BatchGetImageRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/BatchGetImage
func (c *ECR) BatchGetImageRequest(input *BatchGetImageInput) BatchGetImageRequest {
op := &aws.Operation{
Name: opBatchGetImage,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &BatchGetImageInput{}
}
output := &BatchGetImageOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return BatchGetImageRequest{Request: req, Input: input, Copy: c.BatchGetImageRequest}
}
const opCompleteLayerUpload = "CompleteLayerUpload"
// CompleteLayerUploadRequest is a API request type for the CompleteLayerUpload API operation.
type CompleteLayerUploadRequest struct {
*aws.Request
Input *CompleteLayerUploadInput
Copy func(*CompleteLayerUploadInput) CompleteLayerUploadRequest
}
// Send marshals and sends the CompleteLayerUpload API request.
func (r CompleteLayerUploadRequest) Send() (*CompleteLayerUploadOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CompleteLayerUploadOutput), nil
}
// CompleteLayerUploadRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Informs Amazon ECR that the image layer upload has completed for a specified
// registry, repository name, and upload ID. You can optionally provide a sha256
// digest of the image layer for data validation purposes.
//
// This operation is used by the Amazon ECR proxy, and it is not intended for
// general use by customers for pulling and pushing images. In most cases, you
// should use the docker CLI to pull, tag, and push images.
//
// // Example sending a request using the CompleteLayerUploadRequest method.
// req := client.CompleteLayerUploadRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/CompleteLayerUpload
func (c *ECR) CompleteLayerUploadRequest(input *CompleteLayerUploadInput) CompleteLayerUploadRequest {
op := &aws.Operation{
Name: opCompleteLayerUpload,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CompleteLayerUploadInput{}
}
output := &CompleteLayerUploadOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CompleteLayerUploadRequest{Request: req, Input: input, Copy: c.CompleteLayerUploadRequest}
}
const opCreateRepository = "CreateRepository"
// CreateRepositoryRequest is a API request type for the CreateRepository API operation.
type CreateRepositoryRequest struct {
*aws.Request
Input *CreateRepositoryInput
Copy func(*CreateRepositoryInput) CreateRepositoryRequest
}
// Send marshals and sends the CreateRepository API request.
func (r CreateRepositoryRequest) Send() (*CreateRepositoryOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateRepositoryOutput), nil
}
// CreateRepositoryRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Creates an image repository.
//
// // Example sending a request using the CreateRepositoryRequest method.
// req := client.CreateRepositoryRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/CreateRepository
func (c *ECR) CreateRepositoryRequest(input *CreateRepositoryInput) CreateRepositoryRequest {
op := &aws.Operation{
Name: opCreateRepository,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateRepositoryInput{}
}
output := &CreateRepositoryOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateRepositoryRequest{Request: req, Input: input, Copy: c.CreateRepositoryRequest}
}
const opDeleteLifecyclePolicy = "DeleteLifecyclePolicy"
// DeleteLifecyclePolicyRequest is a API request type for the DeleteLifecyclePolicy API operation.
type DeleteLifecyclePolicyRequest struct {
*aws.Request
Input *DeleteLifecyclePolicyInput
Copy func(*DeleteLifecyclePolicyInput) DeleteLifecyclePolicyRequest
}
// Send marshals and sends the DeleteLifecyclePolicy API request.
func (r DeleteLifecyclePolicyRequest) Send() (*DeleteLifecyclePolicyOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteLifecyclePolicyOutput), nil
}
// DeleteLifecyclePolicyRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Deletes the specified lifecycle policy.
//
// // Example sending a request using the DeleteLifecyclePolicyRequest method.
// req := client.DeleteLifecyclePolicyRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/DeleteLifecyclePolicy
func (c *ECR) DeleteLifecyclePolicyRequest(input *DeleteLifecyclePolicyInput) DeleteLifecyclePolicyRequest {
op := &aws.Operation{
Name: opDeleteLifecyclePolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteLifecyclePolicyInput{}
}
output := &DeleteLifecyclePolicyOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteLifecyclePolicyRequest{Request: req, Input: input, Copy: c.DeleteLifecyclePolicyRequest}
}
const opDeleteRepository = "DeleteRepository"
// DeleteRepositoryRequest is a API request type for the DeleteRepository API operation.
type DeleteRepositoryRequest struct {
*aws.Request
Input *DeleteRepositoryInput
Copy func(*DeleteRepositoryInput) DeleteRepositoryRequest
}
// Send marshals and sends the DeleteRepository API request.
func (r DeleteRepositoryRequest) Send() (*DeleteRepositoryOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteRepositoryOutput), nil
}
// DeleteRepositoryRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Deletes an existing image repository. If a repository contains images, you
// must use the force option to delete it.
//
// // Example sending a request using the DeleteRepositoryRequest method.
// req := client.DeleteRepositoryRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/DeleteRepository
func (c *ECR) DeleteRepositoryRequest(input *DeleteRepositoryInput) DeleteRepositoryRequest {
op := &aws.Operation{
Name: opDeleteRepository,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteRepositoryInput{}
}
output := &DeleteRepositoryOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteRepositoryRequest{Request: req, Input: input, Copy: c.DeleteRepositoryRequest}
}
const opDeleteRepositoryPolicy = "DeleteRepositoryPolicy"
// DeleteRepositoryPolicyRequest is a API request type for the DeleteRepositoryPolicy API operation.
type DeleteRepositoryPolicyRequest struct {
*aws.Request
Input *DeleteRepositoryPolicyInput
Copy func(*DeleteRepositoryPolicyInput) DeleteRepositoryPolicyRequest
}
// Send marshals and sends the DeleteRepositoryPolicy API request.
func (r DeleteRepositoryPolicyRequest) Send() (*DeleteRepositoryPolicyOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteRepositoryPolicyOutput), nil
}
// DeleteRepositoryPolicyRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Deletes the repository policy from a specified repository.
//
// // Example sending a request using the DeleteRepositoryPolicyRequest method.
// req := client.DeleteRepositoryPolicyRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/DeleteRepositoryPolicy
func (c *ECR) DeleteRepositoryPolicyRequest(input *DeleteRepositoryPolicyInput) DeleteRepositoryPolicyRequest {
op := &aws.Operation{
Name: opDeleteRepositoryPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteRepositoryPolicyInput{}
}
output := &DeleteRepositoryPolicyOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteRepositoryPolicyRequest{Request: req, Input: input, Copy: c.DeleteRepositoryPolicyRequest}
}
const opDescribeImages = "DescribeImages"
// DescribeImagesRequest is a API request type for the DescribeImages API operation.
type DescribeImagesRequest struct {
*aws.Request
Input *DescribeImagesInput
Copy func(*DescribeImagesInput) DescribeImagesRequest
}
// Send marshals and sends the DescribeImages API request.
func (r DescribeImagesRequest) Send() (*DescribeImagesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeImagesOutput), nil
}
// DescribeImagesRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Returns metadata about the images in a repository, including image size,
// image tags, and creation date.
//
// Beginning with Docker version 1.9, the Docker client compresses image layers
// before pushing them to a V2 Docker registry. The output of the docker images
// command shows the uncompressed image size, so it may return a larger image
// size than the image sizes returned by DescribeImages.
//
// // Example sending a request using the DescribeImagesRequest method.
// req := client.DescribeImagesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/DescribeImages
func (c *ECR) DescribeImagesRequest(input *DescribeImagesInput) DescribeImagesRequest {
op := &aws.Operation{
Name: opDescribeImages,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &DescribeImagesInput{}
}
output := &DescribeImagesOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeImagesRequest{Request: req, Input: input, Copy: c.DescribeImagesRequest}
}
// Paginate pages iterates over the pages of a DescribeImagesRequest operation,
// calling the Next method for each page. Using the paginators Next
// method will depict whether or not there are more pages.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a DescribeImages operation.
// req := client.DescribeImagesRequest(input)
// p := req.Paginate()
// for p.Next() {
// page := p.CurrentPage()
// }
//
// if err := p.Err(); err != nil {
// return err
// }
//
func (p *DescribeImagesRequest) Paginate(opts ...aws.Option) DescribeImagesPager {
return DescribeImagesPager{
Pager: aws.Pager{
NewRequest: func() (*aws.Request, error) {
var inCpy *DescribeImagesInput
if p.Input != nil {
tmp := *p.Input
inCpy = &tmp
}
req := p.Copy(inCpy)
req.ApplyOptions(opts...)
return req.Request, nil
},
},
}
}
// DescribeImagesPager is used to paginate the request. This can be done by
// calling Next and CurrentPage.
type DescribeImagesPager struct {
aws.Pager
}
func (p *DescribeImagesPager) CurrentPage() *DescribeImagesOutput {
return p.Pager.CurrentPage().(*DescribeImagesOutput)
}
const opDescribeRepositories = "DescribeRepositories"
// DescribeRepositoriesRequest is a API request type for the DescribeRepositories API operation.
type DescribeRepositoriesRequest struct {
*aws.Request
Input *DescribeRepositoriesInput
Copy func(*DescribeRepositoriesInput) DescribeRepositoriesRequest
}
// Send marshals and sends the DescribeRepositories API request.
func (r DescribeRepositoriesRequest) Send() (*DescribeRepositoriesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeRepositoriesOutput), nil
}
// DescribeRepositoriesRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Describes image repositories in a registry.
//
// // Example sending a request using the DescribeRepositoriesRequest method.
// req := client.DescribeRepositoriesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/DescribeRepositories
func (c *ECR) DescribeRepositoriesRequest(input *DescribeRepositoriesInput) DescribeRepositoriesRequest {
op := &aws.Operation{
Name: opDescribeRepositories,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &DescribeRepositoriesInput{}
}
output := &DescribeRepositoriesOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeRepositoriesRequest{Request: req, Input: input, Copy: c.DescribeRepositoriesRequest}
}
// Paginate pages iterates over the pages of a DescribeRepositoriesRequest operation,
// calling the Next method for each page. Using the paginators Next
// method will depict whether or not there are more pages.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a DescribeRepositories operation.
// req := client.DescribeRepositoriesRequest(input)
// p := req.Paginate()
// for p.Next() {
// page := p.CurrentPage()
// }
//
// if err := p.Err(); err != nil {
// return err
// }
//
func (p *DescribeRepositoriesRequest) Paginate(opts ...aws.Option) DescribeRepositoriesPager {
return DescribeRepositoriesPager{
Pager: aws.Pager{
NewRequest: func() (*aws.Request, error) {
var inCpy *DescribeRepositoriesInput
if p.Input != nil {
tmp := *p.Input
inCpy = &tmp
}
req := p.Copy(inCpy)
req.ApplyOptions(opts...)
return req.Request, nil
},
},
}
}
// DescribeRepositoriesPager is used to paginate the request. This can be done by
// calling Next and CurrentPage.
type DescribeRepositoriesPager struct {
aws.Pager
}
func (p *DescribeRepositoriesPager) CurrentPage() *DescribeRepositoriesOutput {
return p.Pager.CurrentPage().(*DescribeRepositoriesOutput)
}
const opGetAuthorizationToken = "GetAuthorizationToken"
// GetAuthorizationTokenRequest is a API request type for the GetAuthorizationToken API operation.
type GetAuthorizationTokenRequest struct {
*aws.Request
Input *GetAuthorizationTokenInput
Copy func(*GetAuthorizationTokenInput) GetAuthorizationTokenRequest
}
// Send marshals and sends the GetAuthorizationToken API request.
func (r GetAuthorizationTokenRequest) Send() (*GetAuthorizationTokenOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetAuthorizationTokenOutput), nil
}
// GetAuthorizationTokenRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Retrieves a token that is valid for a specified registry for 12 hours. This
// command allows you to use the docker CLI to push and pull images with Amazon
// ECR. If you do not specify a registry, the default registry is assumed.
//
// The authorizationToken returned for each registry specified is a base64 encoded
// string that can be decoded and used in a docker login command to authenticate
// to a registry. The AWS CLI offers an aws ecr get-login command that simplifies
// the login process.
//
// // Example sending a request using the GetAuthorizationTokenRequest method.
// req := client.GetAuthorizationTokenRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetAuthorizationToken
func (c *ECR) GetAuthorizationTokenRequest(input *GetAuthorizationTokenInput) GetAuthorizationTokenRequest {
op := &aws.Operation{
Name: opGetAuthorizationToken,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetAuthorizationTokenInput{}
}
output := &GetAuthorizationTokenOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetAuthorizationTokenRequest{Request: req, Input: input, Copy: c.GetAuthorizationTokenRequest}
}
const opGetDownloadUrlForLayer = "GetDownloadUrlForLayer"
// GetDownloadUrlForLayerRequest is a API request type for the GetDownloadUrlForLayer API operation.
type GetDownloadUrlForLayerRequest struct {
*aws.Request
Input *GetDownloadUrlForLayerInput
Copy func(*GetDownloadUrlForLayerInput) GetDownloadUrlForLayerRequest
}
// Send marshals and sends the GetDownloadUrlForLayer API request.
func (r GetDownloadUrlForLayerRequest) Send() (*GetDownloadUrlForLayerOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetDownloadUrlForLayerOutput), nil
}
// GetDownloadUrlForLayerRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Retrieves the pre-signed Amazon S3 download URL corresponding to an image
// layer. You can only get URLs for image layers that are referenced in an image.
//
// This operation is used by the Amazon ECR proxy, and it is not intended for
// general use by customers for pulling and pushing images. In most cases, you
// should use the docker CLI to pull, tag, and push images.
//
// // Example sending a request using the GetDownloadUrlForLayerRequest method.
// req := client.GetDownloadUrlForLayerRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetDownloadUrlForLayer
func (c *ECR) GetDownloadUrlForLayerRequest(input *GetDownloadUrlForLayerInput) GetDownloadUrlForLayerRequest {
op := &aws.Operation{
Name: opGetDownloadUrlForLayer,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetDownloadUrlForLayerInput{}
}
output := &GetDownloadUrlForLayerOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetDownloadUrlForLayerRequest{Request: req, Input: input, Copy: c.GetDownloadUrlForLayerRequest}
}
const opGetLifecyclePolicy = "GetLifecyclePolicy"
// GetLifecyclePolicyRequest is a API request type for the GetLifecyclePolicy API operation.
type GetLifecyclePolicyRequest struct {
*aws.Request
Input *GetLifecyclePolicyInput
Copy func(*GetLifecyclePolicyInput) GetLifecyclePolicyRequest
}
// Send marshals and sends the GetLifecyclePolicy API request.
func (r GetLifecyclePolicyRequest) Send() (*GetLifecyclePolicyOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetLifecyclePolicyOutput), nil
}
// GetLifecyclePolicyRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Retrieves the specified lifecycle policy.
//
// // Example sending a request using the GetLifecyclePolicyRequest method.
// req := client.GetLifecyclePolicyRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetLifecyclePolicy
func (c *ECR) GetLifecyclePolicyRequest(input *GetLifecyclePolicyInput) GetLifecyclePolicyRequest {
op := &aws.Operation{
Name: opGetLifecyclePolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetLifecyclePolicyInput{}
}
output := &GetLifecyclePolicyOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetLifecyclePolicyRequest{Request: req, Input: input, Copy: c.GetLifecyclePolicyRequest}
}
const opGetLifecyclePolicyPreview = "GetLifecyclePolicyPreview"
// GetLifecyclePolicyPreviewRequest is a API request type for the GetLifecyclePolicyPreview API operation.
type GetLifecyclePolicyPreviewRequest struct {
*aws.Request
Input *GetLifecyclePolicyPreviewInput
Copy func(*GetLifecyclePolicyPreviewInput) GetLifecyclePolicyPreviewRequest
}
// Send marshals and sends the GetLifecyclePolicyPreview API request.
func (r GetLifecyclePolicyPreviewRequest) Send() (*GetLifecyclePolicyPreviewOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetLifecyclePolicyPreviewOutput), nil
}
// GetLifecyclePolicyPreviewRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Retrieves the results of the specified lifecycle policy preview request.
//
// // Example sending a request using the GetLifecyclePolicyPreviewRequest method.
// req := client.GetLifecyclePolicyPreviewRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetLifecyclePolicyPreview
func (c *ECR) GetLifecyclePolicyPreviewRequest(input *GetLifecyclePolicyPreviewInput) GetLifecyclePolicyPreviewRequest {
op := &aws.Operation{
Name: opGetLifecyclePolicyPreview,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetLifecyclePolicyPreviewInput{}
}
output := &GetLifecyclePolicyPreviewOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetLifecyclePolicyPreviewRequest{Request: req, Input: input, Copy: c.GetLifecyclePolicyPreviewRequest}
}
const opGetRepositoryPolicy = "GetRepositoryPolicy"
// GetRepositoryPolicyRequest is a API request type for the GetRepositoryPolicy API operation.
type GetRepositoryPolicyRequest struct {
*aws.Request
Input *GetRepositoryPolicyInput
Copy func(*GetRepositoryPolicyInput) GetRepositoryPolicyRequest
}
// Send marshals and sends the GetRepositoryPolicy API request.
func (r GetRepositoryPolicyRequest) Send() (*GetRepositoryPolicyOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*GetRepositoryPolicyOutput), nil
}
// GetRepositoryPolicyRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Retrieves the repository policy for a specified repository.
//
// // Example sending a request using the GetRepositoryPolicyRequest method.
// req := client.GetRepositoryPolicyRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetRepositoryPolicy
func (c *ECR) GetRepositoryPolicyRequest(input *GetRepositoryPolicyInput) GetRepositoryPolicyRequest {
op := &aws.Operation{
Name: opGetRepositoryPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetRepositoryPolicyInput{}
}
output := &GetRepositoryPolicyOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return GetRepositoryPolicyRequest{Request: req, Input: input, Copy: c.GetRepositoryPolicyRequest}
}
const opInitiateLayerUpload = "InitiateLayerUpload"
// InitiateLayerUploadRequest is a API request type for the InitiateLayerUpload API operation.
type InitiateLayerUploadRequest struct {
*aws.Request
Input *InitiateLayerUploadInput
Copy func(*InitiateLayerUploadInput) InitiateLayerUploadRequest
}
// Send marshals and sends the InitiateLayerUpload API request.
func (r InitiateLayerUploadRequest) Send() (*InitiateLayerUploadOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*InitiateLayerUploadOutput), nil
}
// InitiateLayerUploadRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Notify Amazon ECR that you intend to upload an image layer.
//
// This operation is used by the Amazon ECR proxy, and it is not intended for
// general use by customers for pulling and pushing images. In most cases, you
// should use the docker CLI to pull, tag, and push images.
//
// // Example sending a request using the InitiateLayerUploadRequest method.
// req := client.InitiateLayerUploadRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/InitiateLayerUpload
func (c *ECR) InitiateLayerUploadRequest(input *InitiateLayerUploadInput) InitiateLayerUploadRequest {
op := &aws.Operation{
Name: opInitiateLayerUpload,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &InitiateLayerUploadInput{}
}
output := &InitiateLayerUploadOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return InitiateLayerUploadRequest{Request: req, Input: input, Copy: c.InitiateLayerUploadRequest}
}
const opListImages = "ListImages"
// ListImagesRequest is a API request type for the ListImages API operation.
type ListImagesRequest struct {
*aws.Request
Input *ListImagesInput
Copy func(*ListImagesInput) ListImagesRequest
}
// Send marshals and sends the ListImages API request.
func (r ListImagesRequest) Send() (*ListImagesOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*ListImagesOutput), nil
}
// ListImagesRequest returns a request value for making API operation for
// Amazon EC2 Container Registry.
//
// Lists all the image IDs for a given repository.
//
// You can filter images based on whether or not they are tagged by setting
// the tagStatus parameter to TAGGED or UNTAGGED. For example, you can filter
// your results to return only UNTAGGED images and then pipe that result to
// a BatchDeleteImage operation to delete them. Or, you can filter your results
// to return only TAGGED images to list all of the tags in your repository.
//
// // Example sending a request using the ListImagesRequest method.
// req := client.ListImagesRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/ListImages
func (c *ECR) ListImagesRequest(input *ListImagesInput) ListImagesRequest {
op := &aws.Operation{
Name: opListImages,
HTTPMethod: "POST",