aws-sdk-ecr 1.115.0 → 1.116.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d76dc3bb42ba99299095adb52b65168019835603da25a342ea78bde07e1285a
4
- data.tar.gz: ee3090c78e7cb66e1a9ac75583044b9d3c32db2416da399c4be5c6e23b0e2ab8
3
+ metadata.gz: '0809f9e8c2125196c9597ca960f2fc54f40ff124e4405e691fb055a3dc49d248'
4
+ data.tar.gz: 1a1f6a027d2bb6b9a2af70301139a2974ba3a680949fc89c496021442a55633f
5
5
  SHA512:
6
- metadata.gz: f73d401bad1203447ab591bb53414a269ea40ed95982221414c2790741453ef27bba72eac10968b7fc190d2d4f4b9d3373fd1f9f5a5d7b92d9f0fe11347ca0df
7
- data.tar.gz: df77bae38ce730095c265499fec28df9f5b7241fb63d861373720c7f691b34b7240d6322356b1789780d35bff7e2dc44c3832e509111c97c125012e8132a38f5
6
+ metadata.gz: 9f105427f6082a237f27b12c512b20cc5d536e54a03f9e1b35611e81195ba00dc497ac59c2e3a68a37114f979a04bd09c77976c2b54bb9dbcccefdc1dc4267f0
7
+ data.tar.gz: a24a3a0d91ba4aeee84ebdf873ef91cc0b2857c69d5950c037216cd7ad59e4d047400a0a44957f7d723190bdc1de6633a33680305c4727debc6a690a22d72f65
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2025-12-18)
5
+ ------------------
6
+
7
+ * Feature - Adds support for ECR Create On Push
8
+
4
9
  1.115.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.115.0
1
+ 1.116.0
@@ -1128,8 +1128,9 @@ module Aws::ECR
1128
1128
  #
1129
1129
  # @option params [required, Array<String>] :applied_for
1130
1130
  # A list of enumerable strings representing the Amazon ECR repository
1131
- # creation scenarios that this template will apply towards. The two
1132
- # supported scenarios are `PULL_THROUGH_CACHE` and `REPLICATION`
1131
+ # creation scenarios that this template will apply towards. The
1132
+ # supported scenarios are `PULL_THROUGH_CACHE`, `REPLICATION`, and
1133
+ # `CREATE_ON_PUSH`
1133
1134
  #
1134
1135
  # @option params [String] :custom_role_arn
1135
1136
  # The ARN of the role to be assumed by Amazon ECR. This role must be in
@@ -1152,6 +1153,7 @@ module Aws::ECR
1152
1153
  # applied_for: [
1153
1154
  # "REPLICATION",
1154
1155
  # "PULL_THROUGH_CACHE",
1156
+ # "CREATE_ON_PUSH",
1155
1157
  # ],
1156
1158
  # description: "Repos for testing images",
1157
1159
  # encryption_configuration: {
@@ -1176,6 +1178,7 @@ module Aws::ECR
1176
1178
  # applied_for: [
1177
1179
  # "REPLICATION",
1178
1180
  # "PULL_THROUGH_CACHE",
1181
+ # "CREATE_ON_PUSH",
1179
1182
  # ],
1180
1183
  # created_at: Time.parse("2023-12-16T17:29:02-07:00"),
1181
1184
  # description: "Repos for testing images",
@@ -1220,7 +1223,7 @@ module Aws::ECR
1220
1223
  # ],
1221
1224
  # repository_policy: "RepositoryPolicyText",
1222
1225
  # lifecycle_policy: "LifecyclePolicyTextForRepositoryCreationTemplate",
1223
- # applied_for: ["REPLICATION"], # required, accepts REPLICATION, PULL_THROUGH_CACHE
1226
+ # applied_for: ["REPLICATION"], # required, accepts REPLICATION, PULL_THROUGH_CACHE, CREATE_ON_PUSH
1224
1227
  # custom_role_arn: "CustomRoleArn",
1225
1228
  # })
1226
1229
  #
@@ -1241,7 +1244,7 @@ module Aws::ECR
1241
1244
  # resp.repository_creation_template.repository_policy #=> String
1242
1245
  # resp.repository_creation_template.lifecycle_policy #=> String
1243
1246
  # resp.repository_creation_template.applied_for #=> Array
1244
- # resp.repository_creation_template.applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE"
1247
+ # resp.repository_creation_template.applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE", "CREATE_ON_PUSH"
1245
1248
  # resp.repository_creation_template.custom_role_arn #=> String
1246
1249
  # resp.repository_creation_template.created_at #=> Time
1247
1250
  # resp.repository_creation_template.updated_at #=> Time
@@ -1494,7 +1497,7 @@ module Aws::ECR
1494
1497
  # resp.repository_creation_template.repository_policy #=> String
1495
1498
  # resp.repository_creation_template.lifecycle_policy #=> String
1496
1499
  # resp.repository_creation_template.applied_for #=> Array
1497
- # resp.repository_creation_template.applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE"
1500
+ # resp.repository_creation_template.applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE", "CREATE_ON_PUSH"
1498
1501
  # resp.repository_creation_template.custom_role_arn #=> String
1499
1502
  # resp.repository_creation_template.created_at #=> Time
1500
1503
  # resp.repository_creation_template.updated_at #=> Time
@@ -2303,6 +2306,7 @@ module Aws::ECR
2303
2306
  # applied_for: [
2304
2307
  # "PULL_THROUGH_CACHE",
2305
2308
  # "REPLICATION",
2309
+ # "CREATE_ON_PUSH",
2306
2310
  # ],
2307
2311
  # created_at: Time.parse("2023-12-16T17:29:02-07:00"),
2308
2312
  # encryption_configuration: {
@@ -2353,7 +2357,7 @@ module Aws::ECR
2353
2357
  # resp.repository_creation_templates[0].repository_policy #=> String
2354
2358
  # resp.repository_creation_templates[0].lifecycle_policy #=> String
2355
2359
  # resp.repository_creation_templates[0].applied_for #=> Array
2356
- # resp.repository_creation_templates[0].applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE"
2360
+ # resp.repository_creation_templates[0].applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE", "CREATE_ON_PUSH"
2357
2361
  # resp.repository_creation_templates[0].custom_role_arn #=> String
2358
2362
  # resp.repository_creation_templates[0].created_at #=> Time
2359
2363
  # resp.repository_creation_templates[0].updated_at #=> Time
@@ -4261,7 +4265,8 @@ module Aws::ECR
4261
4265
  # @option params [Array<String>] :applied_for
4262
4266
  # Updates the list of enumerable strings representing the Amazon ECR
4263
4267
  # repository creation scenarios that this template will apply towards.
4264
- # The two supported scenarios are `PULL_THROUGH_CACHE` and `REPLICATION`
4268
+ # The supported scenarios are `PULL_THROUGH_CACHE`, `REPLICATION`, and
4269
+ # `CREATE_ON_PUSH`
4265
4270
  #
4266
4271
  # @option params [String] :custom_role_arn
4267
4272
  # The ARN of the role to be assumed by Amazon ECR. This role must be in
@@ -4343,7 +4348,7 @@ module Aws::ECR
4343
4348
  # ],
4344
4349
  # repository_policy: "RepositoryPolicyText",
4345
4350
  # lifecycle_policy: "LifecyclePolicyTextForRepositoryCreationTemplate",
4346
- # applied_for: ["REPLICATION"], # accepts REPLICATION, PULL_THROUGH_CACHE
4351
+ # applied_for: ["REPLICATION"], # accepts REPLICATION, PULL_THROUGH_CACHE, CREATE_ON_PUSH
4347
4352
  # custom_role_arn: "CustomRoleArn",
4348
4353
  # })
4349
4354
  #
@@ -4364,7 +4369,7 @@ module Aws::ECR
4364
4369
  # resp.repository_creation_template.repository_policy #=> String
4365
4370
  # resp.repository_creation_template.lifecycle_policy #=> String
4366
4371
  # resp.repository_creation_template.applied_for #=> Array
4367
- # resp.repository_creation_template.applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE"
4372
+ # resp.repository_creation_template.applied_for[0] #=> String, one of "REPLICATION", "PULL_THROUGH_CACHE", "CREATE_ON_PUSH"
4368
4373
  # resp.repository_creation_template.custom_role_arn #=> String
4369
4374
  # resp.repository_creation_template.created_at #=> Time
4370
4375
  # resp.repository_creation_template.updated_at #=> Time
@@ -4518,7 +4523,7 @@ module Aws::ECR
4518
4523
  tracer: tracer
4519
4524
  )
4520
4525
  context[:gem_name] = 'aws-sdk-ecr'
4521
- context[:gem_version] = '1.115.0'
4526
+ context[:gem_version] = '1.116.0'
4522
4527
  Seahorse::Client::Request.new(handlers, context)
4523
4528
  end
4524
4529
 
@@ -555,8 +555,9 @@ module Aws::ECR
555
555
  #
556
556
  # @!attribute [rw] applied_for
557
557
  # A list of enumerable strings representing the Amazon ECR repository
558
- # creation scenarios that this template will apply towards. The two
559
- # supported scenarios are `PULL_THROUGH_CACHE` and `REPLICATION`
558
+ # creation scenarios that this template will apply towards. The
559
+ # supported scenarios are `PULL_THROUGH_CACHE`, `REPLICATION`, and
560
+ # `CREATE_ON_PUSH`
560
561
  # @return [Array<String>]
561
562
  #
562
563
  # @!attribute [rw] custom_role_arn
@@ -4281,8 +4282,9 @@ module Aws::ECR
4281
4282
  #
4282
4283
  # @!attribute [rw] applied_for
4283
4284
  # A list of enumerable Strings representing the repository creation
4284
- # scenarios that this template will apply towards. The two supported
4285
- # scenarios are PULL\_THROUGH\_CACHE and REPLICATION
4285
+ # scenarios that this template will apply towards. The supported
4286
+ # scenarios are PULL\_THROUGH\_CACHE, REPLICATION, and
4287
+ # CREATE\_ON\_PUSH
4286
4288
  # @return [Array<String>]
4287
4289
  #
4288
4290
  # @!attribute [rw] custom_role_arn
@@ -5270,8 +5272,8 @@ module Aws::ECR
5270
5272
  # @!attribute [rw] applied_for
5271
5273
  # Updates the list of enumerable strings representing the Amazon ECR
5272
5274
  # repository creation scenarios that this template will apply towards.
5273
- # The two supported scenarios are `PULL_THROUGH_CACHE` and
5274
- # `REPLICATION`
5275
+ # The supported scenarios are `PULL_THROUGH_CACHE`, `REPLICATION`, and
5276
+ # `CREATE_ON_PUSH`
5275
5277
  # @return [Array<String>]
5276
5278
  #
5277
5279
  # @!attribute [rw] custom_role_arn
data/lib/aws-sdk-ecr.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::ECR
55
55
  autoload :EndpointProvider, 'aws-sdk-ecr/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecr/endpoints'
57
57
 
58
- GEM_VERSION = '1.115.0'
58
+ GEM_VERSION = '1.116.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -238,7 +238,7 @@ module Aws
238
238
  ],
239
239
  ?repository_policy: ::String,
240
240
  ?lifecycle_policy: ::String,
241
- applied_for: Array[("REPLICATION" | "PULL_THROUGH_CACHE")],
241
+ applied_for: Array[("REPLICATION" | "PULL_THROUGH_CACHE" | "CREATE_ON_PUSH")],
242
242
  ?custom_role_arn: ::String
243
243
  ) -> _CreateRepositoryCreationTemplateResponseSuccess
244
244
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRepositoryCreationTemplateResponseSuccess
@@ -973,7 +973,7 @@ module Aws
973
973
  ],
974
974
  ?repository_policy: ::String,
975
975
  ?lifecycle_policy: ::String,
976
- ?applied_for: Array[("REPLICATION" | "PULL_THROUGH_CACHE")],
976
+ ?applied_for: Array[("REPLICATION" | "PULL_THROUGH_CACHE" | "CREATE_ON_PUSH")],
977
977
  ?custom_role_arn: ::String
978
978
  ) -> _UpdateRepositoryCreationTemplateResponseSuccess
979
979
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRepositoryCreationTemplateResponseSuccess
data/sig/types.rbs CHANGED
@@ -139,7 +139,7 @@ module Aws::ECR
139
139
  attr_accessor image_tag_mutability_exclusion_filters: ::Array[Types::ImageTagMutabilityExclusionFilter]
140
140
  attr_accessor repository_policy: ::String
141
141
  attr_accessor lifecycle_policy: ::String
142
- attr_accessor applied_for: ::Array[("REPLICATION" | "PULL_THROUGH_CACHE")]
142
+ attr_accessor applied_for: ::Array[("REPLICATION" | "PULL_THROUGH_CACHE" | "CREATE_ON_PUSH")]
143
143
  attr_accessor custom_role_arn: ::String
144
144
  SENSITIVE: []
145
145
  end
@@ -1128,7 +1128,7 @@ module Aws::ECR
1128
1128
  attr_accessor image_tag_mutability_exclusion_filters: ::Array[Types::ImageTagMutabilityExclusionFilter]
1129
1129
  attr_accessor repository_policy: ::String
1130
1130
  attr_accessor lifecycle_policy: ::String
1131
- attr_accessor applied_for: ::Array[("REPLICATION" | "PULL_THROUGH_CACHE")]
1131
+ attr_accessor applied_for: ::Array[("REPLICATION" | "PULL_THROUGH_CACHE" | "CREATE_ON_PUSH")]
1132
1132
  attr_accessor custom_role_arn: ::String
1133
1133
  attr_accessor created_at: ::Time
1134
1134
  attr_accessor updated_at: ::Time
@@ -1401,7 +1401,7 @@ module Aws::ECR
1401
1401
  attr_accessor image_tag_mutability_exclusion_filters: ::Array[Types::ImageTagMutabilityExclusionFilter]
1402
1402
  attr_accessor repository_policy: ::String
1403
1403
  attr_accessor lifecycle_policy: ::String
1404
- attr_accessor applied_for: ::Array[("REPLICATION" | "PULL_THROUGH_CACHE")]
1404
+ attr_accessor applied_for: ::Array[("REPLICATION" | "PULL_THROUGH_CACHE" | "CREATE_ON_PUSH")]
1405
1405
  attr_accessor custom_role_arn: ::String
1406
1406
  SENSITIVE: []
1407
1407
  end
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.115.0
4
+ version: 1.116.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services