aws-sdk-ecr 1.113.0 → 1.115.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecr/client.rb +704 -20
- data/lib/aws-sdk-ecr/client_api.rb +326 -0
- data/lib/aws-sdk-ecr/errors.rb +96 -0
- data/lib/aws-sdk-ecr/types.rb +767 -37
- data/lib/aws-sdk-ecr.rb +1 -1
- data/sig/client.rbs +137 -2
- data/sig/errors.rbs +18 -0
- data/sig/types.rbs +203 -4
- metadata +3 -3
data/lib/aws-sdk-ecr.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -320,6 +320,26 @@ module Aws
|
|
|
320
320
|
) -> _DeleteRepositoryPolicyResponseSuccess
|
|
321
321
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRepositoryPolicyResponseSuccess
|
|
322
322
|
|
|
323
|
+
interface _DeleteSigningConfigurationResponseSuccess
|
|
324
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSigningConfigurationResponse]
|
|
325
|
+
def registry_id: () -> ::String
|
|
326
|
+
def signing_configuration: () -> Types::SigningConfiguration
|
|
327
|
+
end
|
|
328
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#delete_signing_configuration-instance_method
|
|
329
|
+
def delete_signing_configuration: (
|
|
330
|
+
) -> _DeleteSigningConfigurationResponseSuccess
|
|
331
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSigningConfigurationResponseSuccess
|
|
332
|
+
|
|
333
|
+
interface _DeregisterPullTimeUpdateExclusionResponseSuccess
|
|
334
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterPullTimeUpdateExclusionResponse]
|
|
335
|
+
def principal_arn: () -> ::String
|
|
336
|
+
end
|
|
337
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#deregister_pull_time_update_exclusion-instance_method
|
|
338
|
+
def deregister_pull_time_update_exclusion: (
|
|
339
|
+
principal_arn: ::String
|
|
340
|
+
) -> _DeregisterPullTimeUpdateExclusionResponseSuccess
|
|
341
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterPullTimeUpdateExclusionResponseSuccess
|
|
342
|
+
|
|
323
343
|
interface _DescribeImageReplicationStatusResponseSuccess
|
|
324
344
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImageReplicationStatusResponse]
|
|
325
345
|
def repository_name: () -> ::String
|
|
@@ -359,6 +379,24 @@ module Aws
|
|
|
359
379
|
) -> _DescribeImageScanFindingsResponseSuccess
|
|
360
380
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImageScanFindingsResponseSuccess
|
|
361
381
|
|
|
382
|
+
interface _DescribeImageSigningStatusResponseSuccess
|
|
383
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImageSigningStatusResponse]
|
|
384
|
+
def repository_name: () -> ::String
|
|
385
|
+
def image_id: () -> Types::ImageIdentifier
|
|
386
|
+
def registry_id: () -> ::String
|
|
387
|
+
def signing_statuses: () -> ::Array[Types::ImageSigningStatus]
|
|
388
|
+
end
|
|
389
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#describe_image_signing_status-instance_method
|
|
390
|
+
def describe_image_signing_status: (
|
|
391
|
+
repository_name: ::String,
|
|
392
|
+
image_id: {
|
|
393
|
+
image_digest: ::String?,
|
|
394
|
+
image_tag: ::String?
|
|
395
|
+
},
|
|
396
|
+
?registry_id: ::String
|
|
397
|
+
) -> _DescribeImageSigningStatusResponseSuccess
|
|
398
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImageSigningStatusResponseSuccess
|
|
399
|
+
|
|
362
400
|
interface _DescribeImagesResponseSuccess
|
|
363
401
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImagesResponse]
|
|
364
402
|
def image_details: () -> ::Array[Types::ImageDetail]
|
|
@@ -377,7 +415,8 @@ module Aws
|
|
|
377
415
|
?next_token: ::String,
|
|
378
416
|
?max_results: ::Integer,
|
|
379
417
|
?filter: {
|
|
380
|
-
tag_status: ("TAGGED" | "UNTAGGED" | "ANY")
|
|
418
|
+
tag_status: ("TAGGED" | "UNTAGGED" | "ANY")?,
|
|
419
|
+
image_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING" | "ANY")?
|
|
381
420
|
}
|
|
382
421
|
) -> _DescribeImagesResponseSuccess
|
|
383
422
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImagesResponseSuccess
|
|
@@ -543,6 +582,16 @@ module Aws
|
|
|
543
582
|
) -> _GetRepositoryPolicyResponseSuccess
|
|
544
583
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRepositoryPolicyResponseSuccess
|
|
545
584
|
|
|
585
|
+
interface _GetSigningConfigurationResponseSuccess
|
|
586
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSigningConfigurationResponse]
|
|
587
|
+
def registry_id: () -> ::String
|
|
588
|
+
def signing_configuration: () -> Types::SigningConfiguration
|
|
589
|
+
end
|
|
590
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#get_signing_configuration-instance_method
|
|
591
|
+
def get_signing_configuration: (
|
|
592
|
+
) -> _GetSigningConfigurationResponseSuccess
|
|
593
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSigningConfigurationResponseSuccess
|
|
594
|
+
|
|
546
595
|
interface _InitiateLayerUploadResponseSuccess
|
|
547
596
|
include ::Seahorse::Client::_ResponseSuccess[Types::InitiateLayerUploadResponse]
|
|
548
597
|
def upload_id: () -> ::String
|
|
@@ -555,6 +604,27 @@ module Aws
|
|
|
555
604
|
) -> _InitiateLayerUploadResponseSuccess
|
|
556
605
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InitiateLayerUploadResponseSuccess
|
|
557
606
|
|
|
607
|
+
interface _ListImageReferrersResponseSuccess
|
|
608
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListImageReferrersResponse]
|
|
609
|
+
def referrers: () -> ::Array[Types::ImageReferrer]
|
|
610
|
+
def next_token: () -> ::String
|
|
611
|
+
end
|
|
612
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#list_image_referrers-instance_method
|
|
613
|
+
def list_image_referrers: (
|
|
614
|
+
?registry_id: ::String,
|
|
615
|
+
repository_name: ::String,
|
|
616
|
+
subject_id: {
|
|
617
|
+
image_digest: ::String
|
|
618
|
+
},
|
|
619
|
+
?filter: {
|
|
620
|
+
artifact_types: Array[::String]?,
|
|
621
|
+
artifact_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING" | "ANY")?
|
|
622
|
+
},
|
|
623
|
+
?next_token: ::String,
|
|
624
|
+
?max_results: ::Integer
|
|
625
|
+
) -> _ListImageReferrersResponseSuccess
|
|
626
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImageReferrersResponseSuccess
|
|
627
|
+
|
|
558
628
|
interface _ListImagesResponseSuccess
|
|
559
629
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListImagesResponse]
|
|
560
630
|
def image_ids: () -> ::Array[Types::ImageIdentifier]
|
|
@@ -567,11 +637,24 @@ module Aws
|
|
|
567
637
|
?next_token: ::String,
|
|
568
638
|
?max_results: ::Integer,
|
|
569
639
|
?filter: {
|
|
570
|
-
tag_status: ("TAGGED" | "UNTAGGED" | "ANY")
|
|
640
|
+
tag_status: ("TAGGED" | "UNTAGGED" | "ANY")?,
|
|
641
|
+
image_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING" | "ANY")?
|
|
571
642
|
}
|
|
572
643
|
) -> _ListImagesResponseSuccess
|
|
573
644
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImagesResponseSuccess
|
|
574
645
|
|
|
646
|
+
interface _ListPullTimeUpdateExclusionsResponseSuccess
|
|
647
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPullTimeUpdateExclusionsResponse]
|
|
648
|
+
def pull_time_update_exclusions: () -> ::Array[::String]
|
|
649
|
+
def next_token: () -> ::String
|
|
650
|
+
end
|
|
651
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#list_pull_time_update_exclusions-instance_method
|
|
652
|
+
def list_pull_time_update_exclusions: (
|
|
653
|
+
?max_results: ::Integer,
|
|
654
|
+
?next_token: ::String
|
|
655
|
+
) -> _ListPullTimeUpdateExclusionsResponseSuccess
|
|
656
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPullTimeUpdateExclusionsResponseSuccess
|
|
657
|
+
|
|
575
658
|
interface _ListTagsForResourceResponseSuccess
|
|
576
659
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
577
660
|
def tags: () -> ::Array[Types::Tag]
|
|
@@ -719,6 +802,39 @@ module Aws
|
|
|
719
802
|
) -> _PutReplicationConfigurationResponseSuccess
|
|
720
803
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutReplicationConfigurationResponseSuccess
|
|
721
804
|
|
|
805
|
+
interface _PutSigningConfigurationResponseSuccess
|
|
806
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutSigningConfigurationResponse]
|
|
807
|
+
def signing_configuration: () -> Types::SigningConfiguration
|
|
808
|
+
end
|
|
809
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#put_signing_configuration-instance_method
|
|
810
|
+
def put_signing_configuration: (
|
|
811
|
+
signing_configuration: {
|
|
812
|
+
rules: Array[
|
|
813
|
+
{
|
|
814
|
+
signing_profile_arn: ::String,
|
|
815
|
+
repository_filters: Array[
|
|
816
|
+
{
|
|
817
|
+
filter: ::String,
|
|
818
|
+
filter_type: ("WILDCARD_MATCH")
|
|
819
|
+
},
|
|
820
|
+
]?
|
|
821
|
+
},
|
|
822
|
+
]
|
|
823
|
+
}
|
|
824
|
+
) -> _PutSigningConfigurationResponseSuccess
|
|
825
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutSigningConfigurationResponseSuccess
|
|
826
|
+
|
|
827
|
+
interface _RegisterPullTimeUpdateExclusionResponseSuccess
|
|
828
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterPullTimeUpdateExclusionResponse]
|
|
829
|
+
def principal_arn: () -> ::String
|
|
830
|
+
def created_at: () -> ::Time
|
|
831
|
+
end
|
|
832
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#register_pull_time_update_exclusion-instance_method
|
|
833
|
+
def register_pull_time_update_exclusion: (
|
|
834
|
+
principal_arn: ::String
|
|
835
|
+
) -> _RegisterPullTimeUpdateExclusionResponseSuccess
|
|
836
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterPullTimeUpdateExclusionResponseSuccess
|
|
837
|
+
|
|
722
838
|
interface _SetRepositoryPolicyResponseSuccess
|
|
723
839
|
include ::Seahorse::Client::_ResponseSuccess[Types::SetRepositoryPolicyResponse]
|
|
724
840
|
def registry_id: () -> ::String
|
|
@@ -792,6 +908,25 @@ module Aws
|
|
|
792
908
|
) -> _UntagResourceResponseSuccess
|
|
793
909
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
|
794
910
|
|
|
911
|
+
interface _UpdateImageStorageClassResponseSuccess
|
|
912
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateImageStorageClassResponse]
|
|
913
|
+
def registry_id: () -> ::String
|
|
914
|
+
def repository_name: () -> ::String
|
|
915
|
+
def image_id: () -> Types::ImageIdentifier
|
|
916
|
+
def image_status: () -> ("ACTIVE" | "ARCHIVED" | "ACTIVATING")
|
|
917
|
+
end
|
|
918
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#update_image_storage_class-instance_method
|
|
919
|
+
def update_image_storage_class: (
|
|
920
|
+
?registry_id: ::String,
|
|
921
|
+
repository_name: ::String,
|
|
922
|
+
image_id: {
|
|
923
|
+
image_digest: ::String?,
|
|
924
|
+
image_tag: ::String?
|
|
925
|
+
},
|
|
926
|
+
target_storage_class: ("STANDARD" | "ARCHIVE")
|
|
927
|
+
) -> _UpdateImageStorageClassResponseSuccess
|
|
928
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateImageStorageClassResponseSuccess
|
|
929
|
+
|
|
795
930
|
interface _UpdatePullThroughCacheRuleResponseSuccess
|
|
796
931
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePullThroughCacheRuleResponse]
|
|
797
932
|
def ecr_repository_prefix: () -> ::String
|
data/sig/errors.rbs
CHANGED
|
@@ -11,18 +11,33 @@ module Aws
|
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
class BlockedByOrganizationPolicyException < ::Aws::Errors::ServiceError
|
|
15
|
+
def message: () -> ::String
|
|
16
|
+
end
|
|
14
17
|
class EmptyUploadException < ::Aws::Errors::ServiceError
|
|
15
18
|
def message: () -> ::String
|
|
16
19
|
end
|
|
20
|
+
class ExclusionAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
21
|
+
def message: () -> ::String
|
|
22
|
+
end
|
|
23
|
+
class ExclusionNotFoundException < ::Aws::Errors::ServiceError
|
|
24
|
+
def message: () -> ::String
|
|
25
|
+
end
|
|
17
26
|
class ImageAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
18
27
|
def message: () -> ::String
|
|
19
28
|
end
|
|
29
|
+
class ImageArchivedException < ::Aws::Errors::ServiceError
|
|
30
|
+
def message: () -> ::String
|
|
31
|
+
end
|
|
20
32
|
class ImageDigestDoesNotMatchException < ::Aws::Errors::ServiceError
|
|
21
33
|
def message: () -> ::String
|
|
22
34
|
end
|
|
23
35
|
class ImageNotFoundException < ::Aws::Errors::ServiceError
|
|
24
36
|
def message: () -> ::String
|
|
25
37
|
end
|
|
38
|
+
class ImageStorageClassUpdateNotSupportedException < ::Aws::Errors::ServiceError
|
|
39
|
+
def message: () -> ::String
|
|
40
|
+
end
|
|
26
41
|
class ImageTagAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
27
42
|
def message: () -> ::String
|
|
28
43
|
end
|
|
@@ -103,6 +118,9 @@ module Aws
|
|
|
103
118
|
class ServerException < ::Aws::Errors::ServiceError
|
|
104
119
|
def message: () -> ::String
|
|
105
120
|
end
|
|
121
|
+
class SigningConfigurationNotFoundException < ::Aws::Errors::ServiceError
|
|
122
|
+
def message: () -> ::String
|
|
123
|
+
end
|
|
106
124
|
class TemplateAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
107
125
|
def message: () -> ::String
|
|
108
126
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -86,6 +86,11 @@ module Aws::ECR
|
|
|
86
86
|
SENSITIVE: []
|
|
87
87
|
end
|
|
88
88
|
|
|
89
|
+
class BlockedByOrganizationPolicyException
|
|
90
|
+
attr_accessor message: ::String
|
|
91
|
+
SENSITIVE: []
|
|
92
|
+
end
|
|
93
|
+
|
|
89
94
|
class CompleteLayerUploadRequest
|
|
90
95
|
attr_accessor registry_id: ::String
|
|
91
96
|
attr_accessor repository_name: ::String
|
|
@@ -260,6 +265,25 @@ module Aws::ECR
|
|
|
260
265
|
SENSITIVE: []
|
|
261
266
|
end
|
|
262
267
|
|
|
268
|
+
class DeleteSigningConfigurationRequest < Aws::EmptyStructure
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
class DeleteSigningConfigurationResponse
|
|
272
|
+
attr_accessor registry_id: ::String
|
|
273
|
+
attr_accessor signing_configuration: Types::SigningConfiguration
|
|
274
|
+
SENSITIVE: []
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
class DeregisterPullTimeUpdateExclusionRequest
|
|
278
|
+
attr_accessor principal_arn: ::String
|
|
279
|
+
SENSITIVE: []
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
class DeregisterPullTimeUpdateExclusionResponse
|
|
283
|
+
attr_accessor principal_arn: ::String
|
|
284
|
+
SENSITIVE: []
|
|
285
|
+
end
|
|
286
|
+
|
|
263
287
|
class DescribeImageReplicationStatusRequest
|
|
264
288
|
attr_accessor repository_name: ::String
|
|
265
289
|
attr_accessor image_id: Types::ImageIdentifier
|
|
@@ -293,8 +317,24 @@ module Aws::ECR
|
|
|
293
317
|
SENSITIVE: []
|
|
294
318
|
end
|
|
295
319
|
|
|
320
|
+
class DescribeImageSigningStatusRequest
|
|
321
|
+
attr_accessor repository_name: ::String
|
|
322
|
+
attr_accessor image_id: Types::ImageIdentifier
|
|
323
|
+
attr_accessor registry_id: ::String
|
|
324
|
+
SENSITIVE: []
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
class DescribeImageSigningStatusResponse
|
|
328
|
+
attr_accessor repository_name: ::String
|
|
329
|
+
attr_accessor image_id: Types::ImageIdentifier
|
|
330
|
+
attr_accessor registry_id: ::String
|
|
331
|
+
attr_accessor signing_statuses: ::Array[Types::ImageSigningStatus]
|
|
332
|
+
SENSITIVE: []
|
|
333
|
+
end
|
|
334
|
+
|
|
296
335
|
class DescribeImagesFilter
|
|
297
336
|
attr_accessor tag_status: ("TAGGED" | "UNTAGGED" | "ANY")
|
|
337
|
+
attr_accessor image_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING" | "ANY")
|
|
298
338
|
SENSITIVE: []
|
|
299
339
|
end
|
|
300
340
|
|
|
@@ -403,6 +443,16 @@ module Aws::ECR
|
|
|
403
443
|
SENSITIVE: []
|
|
404
444
|
end
|
|
405
445
|
|
|
446
|
+
class ExclusionAlreadyExistsException
|
|
447
|
+
attr_accessor message: ::String
|
|
448
|
+
SENSITIVE: []
|
|
449
|
+
end
|
|
450
|
+
|
|
451
|
+
class ExclusionNotFoundException
|
|
452
|
+
attr_accessor message: ::String
|
|
453
|
+
SENSITIVE: []
|
|
454
|
+
end
|
|
455
|
+
|
|
406
456
|
class GetAccountSettingRequest
|
|
407
457
|
attr_accessor name: ::String
|
|
408
458
|
SENSITIVE: []
|
|
@@ -503,6 +553,15 @@ module Aws::ECR
|
|
|
503
553
|
SENSITIVE: []
|
|
504
554
|
end
|
|
505
555
|
|
|
556
|
+
class GetSigningConfigurationRequest < Aws::EmptyStructure
|
|
557
|
+
end
|
|
558
|
+
|
|
559
|
+
class GetSigningConfigurationResponse
|
|
560
|
+
attr_accessor registry_id: ::String
|
|
561
|
+
attr_accessor signing_configuration: Types::SigningConfiguration
|
|
562
|
+
SENSITIVE: []
|
|
563
|
+
end
|
|
564
|
+
|
|
506
565
|
class Image
|
|
507
566
|
attr_accessor registry_id: ::String
|
|
508
567
|
attr_accessor repository_name: ::String
|
|
@@ -517,6 +576,11 @@ module Aws::ECR
|
|
|
517
576
|
SENSITIVE: []
|
|
518
577
|
end
|
|
519
578
|
|
|
579
|
+
class ImageArchivedException
|
|
580
|
+
attr_accessor message: ::String
|
|
581
|
+
SENSITIVE: []
|
|
582
|
+
end
|
|
583
|
+
|
|
520
584
|
class ImageDetail
|
|
521
585
|
attr_accessor registry_id: ::String
|
|
522
586
|
attr_accessor repository_name: ::String
|
|
@@ -529,6 +593,10 @@ module Aws::ECR
|
|
|
529
593
|
attr_accessor image_manifest_media_type: ::String
|
|
530
594
|
attr_accessor artifact_media_type: ::String
|
|
531
595
|
attr_accessor last_recorded_pull_time: ::Time
|
|
596
|
+
attr_accessor subject_manifest_digest: ::String
|
|
597
|
+
attr_accessor image_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING")
|
|
598
|
+
attr_accessor last_archived_at: ::Time
|
|
599
|
+
attr_accessor last_activated_at: ::Time
|
|
532
600
|
SENSITIVE: []
|
|
533
601
|
end
|
|
534
602
|
|
|
@@ -539,7 +607,7 @@ module Aws::ECR
|
|
|
539
607
|
|
|
540
608
|
class ImageFailure
|
|
541
609
|
attr_accessor image_id: Types::ImageIdentifier
|
|
542
|
-
attr_accessor failure_code: ("InvalidImageDigest" | "InvalidImageTag" | "ImageTagDoesNotMatchDigest" | "ImageNotFound" | "MissingDigestAndTag" | "ImageReferencedByManifestList" | "KmsError" | "UpstreamAccessDenied" | "UpstreamTooManyRequests" | "UpstreamUnavailable")
|
|
610
|
+
attr_accessor failure_code: ("InvalidImageDigest" | "InvalidImageTag" | "ImageTagDoesNotMatchDigest" | "ImageNotFound" | "MissingDigestAndTag" | "ImageReferencedByManifestList" | "KmsError" | "UpstreamAccessDenied" | "UpstreamTooManyRequests" | "UpstreamUnavailable" | "ImageInaccessible")
|
|
543
611
|
attr_accessor failure_reason: ::String
|
|
544
612
|
SENSITIVE: []
|
|
545
613
|
end
|
|
@@ -555,6 +623,16 @@ module Aws::ECR
|
|
|
555
623
|
SENSITIVE: []
|
|
556
624
|
end
|
|
557
625
|
|
|
626
|
+
class ImageReferrer
|
|
627
|
+
attr_accessor digest: ::String
|
|
628
|
+
attr_accessor media_type: ::String
|
|
629
|
+
attr_accessor artifact_type: ::String
|
|
630
|
+
attr_accessor size: ::Integer
|
|
631
|
+
attr_accessor annotations: ::Hash[::String, ::String]
|
|
632
|
+
attr_accessor artifact_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING")
|
|
633
|
+
SENSITIVE: []
|
|
634
|
+
end
|
|
635
|
+
|
|
558
636
|
class ImageReplicationStatus
|
|
559
637
|
attr_accessor region: ::String
|
|
560
638
|
attr_accessor registry_id: ::String
|
|
@@ -589,7 +667,7 @@ module Aws::ECR
|
|
|
589
667
|
end
|
|
590
668
|
|
|
591
669
|
class ImageScanStatus
|
|
592
|
-
attr_accessor status: ("IN_PROGRESS" | "COMPLETE" | "FAILED" | "UNSUPPORTED_IMAGE" | "ACTIVE" | "PENDING" | "SCAN_ELIGIBILITY_EXPIRED" | "FINDINGS_UNAVAILABLE" | "LIMIT_EXCEEDED")
|
|
670
|
+
attr_accessor status: ("IN_PROGRESS" | "COMPLETE" | "FAILED" | "UNSUPPORTED_IMAGE" | "ACTIVE" | "PENDING" | "SCAN_ELIGIBILITY_EXPIRED" | "FINDINGS_UNAVAILABLE" | "LIMIT_EXCEEDED" | "IMAGE_ARCHIVED")
|
|
593
671
|
attr_accessor description: ::String
|
|
594
672
|
SENSITIVE: []
|
|
595
673
|
end
|
|
@@ -599,6 +677,19 @@ module Aws::ECR
|
|
|
599
677
|
SENSITIVE: []
|
|
600
678
|
end
|
|
601
679
|
|
|
680
|
+
class ImageSigningStatus
|
|
681
|
+
attr_accessor signing_profile_arn: ::String
|
|
682
|
+
attr_accessor failure_code: ::String
|
|
683
|
+
attr_accessor failure_reason: ::String
|
|
684
|
+
attr_accessor status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
|
685
|
+
SENSITIVE: []
|
|
686
|
+
end
|
|
687
|
+
|
|
688
|
+
class ImageStorageClassUpdateNotSupportedException
|
|
689
|
+
attr_accessor message: ::String
|
|
690
|
+
SENSITIVE: []
|
|
691
|
+
end
|
|
692
|
+
|
|
602
693
|
class ImageTagAlreadyExistsException
|
|
603
694
|
attr_accessor message: ::String
|
|
604
695
|
SENSITIVE: []
|
|
@@ -654,7 +745,7 @@ module Aws::ECR
|
|
|
654
745
|
|
|
655
746
|
class Layer
|
|
656
747
|
attr_accessor layer_digest: ::String
|
|
657
|
-
attr_accessor layer_availability: ("AVAILABLE" | "UNAVAILABLE")
|
|
748
|
+
attr_accessor layer_availability: ("AVAILABLE" | "UNAVAILABLE" | "ARCHIVED")
|
|
658
749
|
attr_accessor layer_size: ::Integer
|
|
659
750
|
attr_accessor media_type: ::String
|
|
660
751
|
SENSITIVE: []
|
|
@@ -713,16 +804,19 @@ module Aws::ECR
|
|
|
713
804
|
attr_accessor image_pushed_at: ::Time
|
|
714
805
|
attr_accessor action: Types::LifecyclePolicyRuleAction
|
|
715
806
|
attr_accessor applied_rule_priority: ::Integer
|
|
807
|
+
attr_accessor storage_class: ("ARCHIVE" | "STANDARD")
|
|
716
808
|
SENSITIVE: []
|
|
717
809
|
end
|
|
718
810
|
|
|
719
811
|
class LifecyclePolicyPreviewSummary
|
|
720
812
|
attr_accessor expiring_image_total_count: ::Integer
|
|
813
|
+
attr_accessor transitioning_image_total_counts: ::Array[Types::TransitioningImageTotalCount]
|
|
721
814
|
SENSITIVE: []
|
|
722
815
|
end
|
|
723
816
|
|
|
724
817
|
class LifecyclePolicyRuleAction
|
|
725
|
-
attr_accessor type: ("EXPIRE")
|
|
818
|
+
attr_accessor type: ("EXPIRE" | "TRANSITION")
|
|
819
|
+
attr_accessor target_storage_class: ("ARCHIVE")
|
|
726
820
|
SENSITIVE: []
|
|
727
821
|
end
|
|
728
822
|
|
|
@@ -731,8 +825,31 @@ module Aws::ECR
|
|
|
731
825
|
SENSITIVE: []
|
|
732
826
|
end
|
|
733
827
|
|
|
828
|
+
class ListImageReferrersFilter
|
|
829
|
+
attr_accessor artifact_types: ::Array[::String]
|
|
830
|
+
attr_accessor artifact_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING" | "ANY")
|
|
831
|
+
SENSITIVE: []
|
|
832
|
+
end
|
|
833
|
+
|
|
834
|
+
class ListImageReferrersRequest
|
|
835
|
+
attr_accessor registry_id: ::String
|
|
836
|
+
attr_accessor repository_name: ::String
|
|
837
|
+
attr_accessor subject_id: Types::SubjectIdentifier
|
|
838
|
+
attr_accessor filter: Types::ListImageReferrersFilter
|
|
839
|
+
attr_accessor next_token: ::String
|
|
840
|
+
attr_accessor max_results: ::Integer
|
|
841
|
+
SENSITIVE: []
|
|
842
|
+
end
|
|
843
|
+
|
|
844
|
+
class ListImageReferrersResponse
|
|
845
|
+
attr_accessor referrers: ::Array[Types::ImageReferrer]
|
|
846
|
+
attr_accessor next_token: ::String
|
|
847
|
+
SENSITIVE: []
|
|
848
|
+
end
|
|
849
|
+
|
|
734
850
|
class ListImagesFilter
|
|
735
851
|
attr_accessor tag_status: ("TAGGED" | "UNTAGGED" | "ANY")
|
|
852
|
+
attr_accessor image_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING" | "ANY")
|
|
736
853
|
SENSITIVE: []
|
|
737
854
|
end
|
|
738
855
|
|
|
@@ -751,6 +868,18 @@ module Aws::ECR
|
|
|
751
868
|
SENSITIVE: []
|
|
752
869
|
end
|
|
753
870
|
|
|
871
|
+
class ListPullTimeUpdateExclusionsRequest
|
|
872
|
+
attr_accessor max_results: ::Integer
|
|
873
|
+
attr_accessor next_token: ::String
|
|
874
|
+
SENSITIVE: []
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
class ListPullTimeUpdateExclusionsResponse
|
|
878
|
+
attr_accessor pull_time_update_exclusions: ::Array[::String]
|
|
879
|
+
attr_accessor next_token: ::String
|
|
880
|
+
SENSITIVE: []
|
|
881
|
+
end
|
|
882
|
+
|
|
754
883
|
class ListTagsForResourceRequest
|
|
755
884
|
attr_accessor resource_arn: ::String
|
|
756
885
|
SENSITIVE: []
|
|
@@ -901,6 +1030,16 @@ module Aws::ECR
|
|
|
901
1030
|
SENSITIVE: []
|
|
902
1031
|
end
|
|
903
1032
|
|
|
1033
|
+
class PutSigningConfigurationRequest
|
|
1034
|
+
attr_accessor signing_configuration: Types::SigningConfiguration
|
|
1035
|
+
SENSITIVE: []
|
|
1036
|
+
end
|
|
1037
|
+
|
|
1038
|
+
class PutSigningConfigurationResponse
|
|
1039
|
+
attr_accessor signing_configuration: Types::SigningConfiguration
|
|
1040
|
+
SENSITIVE: []
|
|
1041
|
+
end
|
|
1042
|
+
|
|
904
1043
|
class Recommendation
|
|
905
1044
|
attr_accessor url: ::String
|
|
906
1045
|
attr_accessor text: ::String
|
|
@@ -912,6 +1051,17 @@ module Aws::ECR
|
|
|
912
1051
|
SENSITIVE: []
|
|
913
1052
|
end
|
|
914
1053
|
|
|
1054
|
+
class RegisterPullTimeUpdateExclusionRequest
|
|
1055
|
+
attr_accessor principal_arn: ::String
|
|
1056
|
+
SENSITIVE: []
|
|
1057
|
+
end
|
|
1058
|
+
|
|
1059
|
+
class RegisterPullTimeUpdateExclusionResponse
|
|
1060
|
+
attr_accessor principal_arn: ::String
|
|
1061
|
+
attr_accessor created_at: ::Time
|
|
1062
|
+
SENSITIVE: []
|
|
1063
|
+
end
|
|
1064
|
+
|
|
915
1065
|
class RegistryPolicyNotFoundException
|
|
916
1066
|
attr_accessor message: ::String
|
|
917
1067
|
SENSITIVE: []
|
|
@@ -1076,6 +1226,28 @@ module Aws::ECR
|
|
|
1076
1226
|
SENSITIVE: []
|
|
1077
1227
|
end
|
|
1078
1228
|
|
|
1229
|
+
class SigningConfiguration
|
|
1230
|
+
attr_accessor rules: ::Array[Types::SigningRule]
|
|
1231
|
+
SENSITIVE: []
|
|
1232
|
+
end
|
|
1233
|
+
|
|
1234
|
+
class SigningConfigurationNotFoundException
|
|
1235
|
+
attr_accessor message: ::String
|
|
1236
|
+
SENSITIVE: []
|
|
1237
|
+
end
|
|
1238
|
+
|
|
1239
|
+
class SigningRepositoryFilter
|
|
1240
|
+
attr_accessor filter: ::String
|
|
1241
|
+
attr_accessor filter_type: ("WILDCARD_MATCH")
|
|
1242
|
+
SENSITIVE: []
|
|
1243
|
+
end
|
|
1244
|
+
|
|
1245
|
+
class SigningRule
|
|
1246
|
+
attr_accessor signing_profile_arn: ::String
|
|
1247
|
+
attr_accessor repository_filters: ::Array[Types::SigningRepositoryFilter]
|
|
1248
|
+
SENSITIVE: []
|
|
1249
|
+
end
|
|
1250
|
+
|
|
1079
1251
|
class StartImageScanRequest
|
|
1080
1252
|
attr_accessor registry_id: ::String
|
|
1081
1253
|
attr_accessor repository_name: ::String
|
|
@@ -1106,6 +1278,11 @@ module Aws::ECR
|
|
|
1106
1278
|
SENSITIVE: []
|
|
1107
1279
|
end
|
|
1108
1280
|
|
|
1281
|
+
class SubjectIdentifier
|
|
1282
|
+
attr_accessor image_digest: ::String
|
|
1283
|
+
SENSITIVE: []
|
|
1284
|
+
end
|
|
1285
|
+
|
|
1109
1286
|
class Tag
|
|
1110
1287
|
attr_accessor key: ::String
|
|
1111
1288
|
attr_accessor value: ::String
|
|
@@ -1136,6 +1313,12 @@ module Aws::ECR
|
|
|
1136
1313
|
SENSITIVE: []
|
|
1137
1314
|
end
|
|
1138
1315
|
|
|
1316
|
+
class TransitioningImageTotalCount
|
|
1317
|
+
attr_accessor target_storage_class: ("ARCHIVE")
|
|
1318
|
+
attr_accessor image_total_count: ::Integer
|
|
1319
|
+
SENSITIVE: []
|
|
1320
|
+
end
|
|
1321
|
+
|
|
1139
1322
|
class UnableToAccessSecretException
|
|
1140
1323
|
attr_accessor message: ::String
|
|
1141
1324
|
SENSITIVE: []
|
|
@@ -1175,6 +1358,22 @@ module Aws::ECR
|
|
|
1175
1358
|
class UntagResourceResponse < Aws::EmptyStructure
|
|
1176
1359
|
end
|
|
1177
1360
|
|
|
1361
|
+
class UpdateImageStorageClassRequest
|
|
1362
|
+
attr_accessor registry_id: ::String
|
|
1363
|
+
attr_accessor repository_name: ::String
|
|
1364
|
+
attr_accessor image_id: Types::ImageIdentifier
|
|
1365
|
+
attr_accessor target_storage_class: ("STANDARD" | "ARCHIVE")
|
|
1366
|
+
SENSITIVE: []
|
|
1367
|
+
end
|
|
1368
|
+
|
|
1369
|
+
class UpdateImageStorageClassResponse
|
|
1370
|
+
attr_accessor registry_id: ::String
|
|
1371
|
+
attr_accessor repository_name: ::String
|
|
1372
|
+
attr_accessor image_id: Types::ImageIdentifier
|
|
1373
|
+
attr_accessor image_status: ("ACTIVE" | "ARCHIVED" | "ACTIVATING")
|
|
1374
|
+
SENSITIVE: []
|
|
1375
|
+
end
|
|
1376
|
+
|
|
1178
1377
|
class UpdatePullThroughCacheRuleRequest
|
|
1179
1378
|
attr_accessor registry_id: ::String
|
|
1180
1379
|
attr_accessor ecr_repository_prefix: ::String
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ecr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.115.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|