aws-sdk-ecr 1.112.0 → 1.114.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 +512 -20
- data/lib/aws-sdk-ecr/client_api.rb +202 -0
- data/lib/aws-sdk-ecr/endpoint_parameters.rb +9 -9
- data/lib/aws-sdk-ecr/endpoint_provider.rb +98 -23
- data/lib/aws-sdk-ecr/errors.rb +80 -0
- data/lib/aws-sdk-ecr/types.rb +509 -37
- data/lib/aws-sdk-ecr.rb +1 -1
- data/sig/client.rbs +77 -2
- data/sig/errors.rbs +15 -0
- data/sig/types.rbs +130 -4
- metadata +1 -1
|
@@ -21,41 +21,116 @@ module Aws::ECR
|
|
|
21
21
|
end
|
|
22
22
|
if Aws::Endpoints::Matchers.set?(parameters.region)
|
|
23
23
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
|
24
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
26
|
+
end
|
|
27
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
28
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
29
|
+
end
|
|
30
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
31
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
32
|
+
end
|
|
33
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
34
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
35
|
+
end
|
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
38
|
+
end
|
|
39
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
40
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
41
|
+
end
|
|
42
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
43
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
44
|
+
end
|
|
45
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
47
|
+
end
|
|
48
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
50
|
+
end
|
|
51
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
52
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
53
|
+
end
|
|
54
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
55
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
56
|
+
end
|
|
57
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
58
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
59
|
+
end
|
|
60
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
61
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
62
|
+
end
|
|
63
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
64
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
65
|
+
end
|
|
66
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
67
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
68
|
+
end
|
|
69
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
70
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
71
|
+
end
|
|
72
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
73
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
74
|
+
end
|
|
75
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
76
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
77
|
+
end
|
|
78
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
79
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
80
|
+
end
|
|
81
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
82
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
83
|
+
end
|
|
84
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-e") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
85
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
86
|
+
end
|
|
87
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-e") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
88
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
89
|
+
end
|
|
90
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-e") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
91
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
92
|
+
end
|
|
93
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-e") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
94
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
95
|
+
end
|
|
96
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
97
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
98
|
+
end
|
|
99
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
100
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
101
|
+
end
|
|
102
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
103
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
104
|
+
end
|
|
105
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
106
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
107
|
+
end
|
|
108
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
109
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
110
|
+
end
|
|
111
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
112
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
113
|
+
end
|
|
114
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
115
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
116
|
+
end
|
|
117
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
118
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
119
|
+
end
|
|
24
120
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
25
121
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
26
|
-
if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
27
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.api.aws", headers: {}, properties: {})
|
|
28
|
-
end
|
|
29
|
-
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
30
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.api.aws", headers: {}, properties: {})
|
|
31
|
-
end
|
|
32
122
|
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
33
123
|
end
|
|
34
124
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
35
125
|
end
|
|
36
|
-
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
|
126
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
|
|
37
127
|
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
38
|
-
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
|
|
39
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
|
|
40
|
-
end
|
|
41
|
-
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
|
|
43
|
-
end
|
|
44
128
|
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
45
129
|
end
|
|
46
130
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
47
131
|
end
|
|
48
|
-
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
132
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
|
49
133
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
50
|
-
if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
51
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.api.aws", headers: {}, properties: {})
|
|
52
|
-
end
|
|
53
|
-
if Aws::Endpoints::Matchers.string_equals?("aws-cn", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
54
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.api.amazonwebservices.com.cn", headers: {}, properties: {})
|
|
55
|
-
end
|
|
56
|
-
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
57
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{parameters.region}.api.aws", headers: {}, properties: {})
|
|
58
|
-
end
|
|
59
134
|
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
60
135
|
end
|
|
61
136
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
data/lib/aws-sdk-ecr/errors.rb
CHANGED
|
@@ -27,10 +27,15 @@ module Aws::ECR
|
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
|
28
28
|
#
|
|
29
29
|
# ## Error Classes
|
|
30
|
+
# * {BlockedByOrganizationPolicyException}
|
|
30
31
|
# * {EmptyUploadException}
|
|
32
|
+
# * {ExclusionAlreadyExistsException}
|
|
33
|
+
# * {ExclusionNotFoundException}
|
|
31
34
|
# * {ImageAlreadyExistsException}
|
|
35
|
+
# * {ImageArchivedException}
|
|
32
36
|
# * {ImageDigestDoesNotMatchException}
|
|
33
37
|
# * {ImageNotFoundException}
|
|
38
|
+
# * {ImageStorageClassUpdateNotSupportedException}
|
|
34
39
|
# * {ImageTagAlreadyExistsException}
|
|
35
40
|
# * {InvalidLayerException}
|
|
36
41
|
# * {InvalidLayerPartException}
|
|
@@ -74,6 +79,21 @@ module Aws::ECR
|
|
|
74
79
|
|
|
75
80
|
extend Aws::Errors::DynamicErrors
|
|
76
81
|
|
|
82
|
+
class BlockedByOrganizationPolicyException < ServiceError
|
|
83
|
+
|
|
84
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
85
|
+
# @param [String] message
|
|
86
|
+
# @param [Aws::ECR::Types::BlockedByOrganizationPolicyException] data
|
|
87
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
88
|
+
super(context, message, data)
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# @return [String]
|
|
92
|
+
def message
|
|
93
|
+
@message || @data[:message]
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
|
|
77
97
|
class EmptyUploadException < ServiceError
|
|
78
98
|
|
|
79
99
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -89,6 +109,36 @@ module Aws::ECR
|
|
|
89
109
|
end
|
|
90
110
|
end
|
|
91
111
|
|
|
112
|
+
class ExclusionAlreadyExistsException < ServiceError
|
|
113
|
+
|
|
114
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
115
|
+
# @param [String] message
|
|
116
|
+
# @param [Aws::ECR::Types::ExclusionAlreadyExistsException] data
|
|
117
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
118
|
+
super(context, message, data)
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# @return [String]
|
|
122
|
+
def message
|
|
123
|
+
@message || @data[:message]
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
class ExclusionNotFoundException < ServiceError
|
|
128
|
+
|
|
129
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
130
|
+
# @param [String] message
|
|
131
|
+
# @param [Aws::ECR::Types::ExclusionNotFoundException] data
|
|
132
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
133
|
+
super(context, message, data)
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# @return [String]
|
|
137
|
+
def message
|
|
138
|
+
@message || @data[:message]
|
|
139
|
+
end
|
|
140
|
+
end
|
|
141
|
+
|
|
92
142
|
class ImageAlreadyExistsException < ServiceError
|
|
93
143
|
|
|
94
144
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -104,6 +154,21 @@ module Aws::ECR
|
|
|
104
154
|
end
|
|
105
155
|
end
|
|
106
156
|
|
|
157
|
+
class ImageArchivedException < ServiceError
|
|
158
|
+
|
|
159
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
160
|
+
# @param [String] message
|
|
161
|
+
# @param [Aws::ECR::Types::ImageArchivedException] data
|
|
162
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
163
|
+
super(context, message, data)
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
# @return [String]
|
|
167
|
+
def message
|
|
168
|
+
@message || @data[:message]
|
|
169
|
+
end
|
|
170
|
+
end
|
|
171
|
+
|
|
107
172
|
class ImageDigestDoesNotMatchException < ServiceError
|
|
108
173
|
|
|
109
174
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -134,6 +199,21 @@ module Aws::ECR
|
|
|
134
199
|
end
|
|
135
200
|
end
|
|
136
201
|
|
|
202
|
+
class ImageStorageClassUpdateNotSupportedException < ServiceError
|
|
203
|
+
|
|
204
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
205
|
+
# @param [String] message
|
|
206
|
+
# @param [Aws::ECR::Types::ImageStorageClassUpdateNotSupportedException] data
|
|
207
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
208
|
+
super(context, message, data)
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
# @return [String]
|
|
212
|
+
def message
|
|
213
|
+
@message || @data[:message]
|
|
214
|
+
end
|
|
215
|
+
end
|
|
216
|
+
|
|
137
217
|
class ImageTagAlreadyExistsException < ServiceError
|
|
138
218
|
|
|
139
219
|
# @param [Seahorse::Client::RequestContext] context
|