aws-sdk-imagebuilder 1.57.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f71fcb7ea5c5f4f09402a6d8fe4de8f0fe9b7e04886caef5a3dbdf280230a52b
4
- data.tar.gz: e0bad9f988d68af5e1380c21ef544a6e0661601d36b68f56d958542a9bb23136
3
+ metadata.gz: 4fc440179e3f9509f96b77fc4f7b9c5f5462c4cdd889623079e8eaad628dc2ee
4
+ data.tar.gz: 4e0fbce2dbfaebf1037ff86e3b3f6f74c1fcb696b5ab5477d5f679e8854be3ca
5
5
  SHA512:
6
- metadata.gz: 7f8c2b7c6adcf6bdc0d02d4035c430d89fcc36b318fc9a76679e761192566e324ab1aa44776e9cb249e03b05a230d2002ab3d8072414a07b997758de2914f240
7
- data.tar.gz: 47a5c01806f9feec63bdce4763142588bd99584d3d44e1e925b370e92ef02e775bdc391c536db3469407e94e559469b2bf58bae72d6842bcff401643a70dbb2e
6
+ metadata.gz: cca0d980df0994889f8e1349919d9102e30a04a0d21940a3c798198fd3318051edb538354823c69090df2dab9954beffdf60f61b4b58cb6aa8a6de10649a1604
7
+ data.tar.gz: d924c08db7cb69ab7cd74a6499f7e85f2219e6ad2015228e12e1b72242292cb0b9cceb855cb62e439027252f442ff7479a63285fed3b3478e26414ad629adb5c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.58.0 (2024-03-06)
10
+ ------------------
11
+
12
+ * Feature - Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response.
13
+
4
14
  1.57.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.59.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::Imagebuilder
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::Imagebuilder
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::Imagebuilder
337
346
  # @option options [Aws::Imagebuilder::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Imagebuilder::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -2633,7 +2657,7 @@ module Aws::Imagebuilder
2633
2657
  # resp.lifecycle_execution.lifecycle_execution_id #=> String
2634
2658
  # resp.lifecycle_execution.lifecycle_policy_arn #=> String
2635
2659
  # resp.lifecycle_execution.resources_impacted_summary.has_impacted_resources #=> Boolean
2636
- # resp.lifecycle_execution.state.status #=> String, one of "IN_PROGRESS", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS"
2660
+ # resp.lifecycle_execution.state.status #=> String, one of "IN_PROGRESS", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS", "PENDING"
2637
2661
  # resp.lifecycle_execution.state.reason #=> String
2638
2662
  # resp.lifecycle_execution.start_time #=> Time
2639
2663
  # resp.lifecycle_execution.end_time #=> Time
@@ -4160,7 +4184,7 @@ module Aws::Imagebuilder
4160
4184
  # @example Response structure
4161
4185
  #
4162
4186
  # resp.lifecycle_execution_id #=> String
4163
- # resp.lifecycle_execution_state.status #=> String, one of "IN_PROGRESS", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS"
4187
+ # resp.lifecycle_execution_state.status #=> String, one of "IN_PROGRESS", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS", "PENDING"
4164
4188
  # resp.lifecycle_execution_state.reason #=> String
4165
4189
  # resp.resources #=> Array
4166
4190
  # resp.resources[0].account_id #=> String
@@ -4176,6 +4200,8 @@ module Aws::Imagebuilder
4176
4200
  # resp.resources[0].snapshots[0].state.reason #=> String
4177
4201
  # resp.resources[0].image_uris #=> Array
4178
4202
  # resp.resources[0].image_uris[0] #=> String
4203
+ # resp.resources[0].start_time #=> Time
4204
+ # resp.resources[0].end_time #=> Time
4179
4205
  # resp.next_token #=> String
4180
4206
  #
4181
4207
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListLifecycleExecutionResources AWS API Documentation
@@ -4221,7 +4247,7 @@ module Aws::Imagebuilder
4221
4247
  # resp.lifecycle_executions[0].lifecycle_execution_id #=> String
4222
4248
  # resp.lifecycle_executions[0].lifecycle_policy_arn #=> String
4223
4249
  # resp.lifecycle_executions[0].resources_impacted_summary.has_impacted_resources #=> Boolean
4224
- # resp.lifecycle_executions[0].state.status #=> String, one of "IN_PROGRESS", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS"
4250
+ # resp.lifecycle_executions[0].state.status #=> String, one of "IN_PROGRESS", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS", "PENDING"
4225
4251
  # resp.lifecycle_executions[0].state.reason #=> String
4226
4252
  # resp.lifecycle_executions[0].start_time #=> Time
4227
4253
  # resp.lifecycle_executions[0].end_time #=> Time
@@ -5537,7 +5563,7 @@ module Aws::Imagebuilder
5537
5563
  params: params,
5538
5564
  config: config)
5539
5565
  context[:gem_name] = 'aws-sdk-imagebuilder'
5540
- context[:gem_version] = '1.57.0'
5566
+ context[:gem_version] = '1.59.0'
5541
5567
  Seahorse::Client::Request.new(handlers, context)
5542
5568
  end
5543
5569
 
@@ -1395,6 +1395,8 @@ module Aws::Imagebuilder
1395
1395
  LifecycleExecutionResource.add_member(:region, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "region"))
1396
1396
  LifecycleExecutionResource.add_member(:snapshots, Shapes::ShapeRef.new(shape: LifecycleExecutionSnapshotResourceList, location_name: "snapshots"))
1397
1397
  LifecycleExecutionResource.add_member(:image_uris, Shapes::ShapeRef.new(shape: StringList, location_name: "imageUris"))
1398
+ LifecycleExecutionResource.add_member(:start_time, Shapes::ShapeRef.new(shape: DateTimeTimestamp, location_name: "startTime"))
1399
+ LifecycleExecutionResource.add_member(:end_time, Shapes::ShapeRef.new(shape: DateTimeTimestamp, location_name: "endTime"))
1398
1400
  LifecycleExecutionResource.struct_class = Types::LifecycleExecutionResource
1399
1401
 
1400
1402
  LifecycleExecutionResourceAction.add_member(:name, Shapes::ShapeRef.new(shape: LifecycleExecutionResourceActionName, location_name: "name"))
@@ -4933,6 +4933,16 @@ module Aws::Imagebuilder
4933
4933
  # associated container images distributed to ECR repositories.
4934
4934
  # @return [Array<String>]
4935
4935
  #
4936
+ # @!attribute [rw] start_time
4937
+ # The starting timestamp from the lifecycle action that was applied to
4938
+ # the resource.
4939
+ # @return [Time]
4940
+ #
4941
+ # @!attribute [rw] end_time
4942
+ # The ending timestamp from the lifecycle action that was applied to
4943
+ # the resource.
4944
+ # @return [Time]
4945
+ #
4936
4946
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/LifecycleExecutionResource AWS API Documentation
4937
4947
  #
4938
4948
  class LifecycleExecutionResource < Struct.new(
@@ -4942,7 +4952,9 @@ module Aws::Imagebuilder
4942
4952
  :action,
4943
4953
  :region,
4944
4954
  :snapshots,
4945
- :image_uris)
4955
+ :image_uris,
4956
+ :start_time,
4957
+ :end_time)
4946
4958
  SENSITIVE = []
4947
4959
  include Aws::Structure
4948
4960
  end
@@ -5196,7 +5208,7 @@ module Aws::Imagebuilder
5196
5208
  #
5197
5209
  # @!attribute [rw] tag_map
5198
5210
  # Contains a list of tags that Image Builder uses to skip lifecycle
5199
- # actions for resources that have them.
5211
+ # actions for Image Builder image resources that have them.
5200
5212
  # @return [Hash<String,String>]
5201
5213
  #
5202
5214
  # @!attribute [rw] amis
@@ -5325,8 +5337,8 @@ module Aws::Imagebuilder
5325
5337
  # @return [Array<Types::LifecyclePolicyResourceSelectionRecipe>]
5326
5338
  #
5327
5339
  # @!attribute [rw] tag_map
5328
- # A list of tags that are used as selection criteria for the resources
5329
- # that the lifecycle policy applies to.
5340
+ # A list of tags that are used as selection criteria for the Image
5341
+ # Builder image resources that the lifecycle policy applies to.
5330
5342
  # @return [Hash<String,String>]
5331
5343
  #
5332
5344
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/LifecyclePolicyResourceSelection AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-imagebuilder/customizations'
52
52
  # @!group service
53
53
  module Aws::Imagebuilder
54
54
 
55
- GEM_VERSION = '1.57.0'
55
+ GEM_VERSION = '1.59.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -1160,6 +1160,8 @@ module Aws::Imagebuilder
1160
1160
  attr_accessor region: ::String
1161
1161
  attr_accessor snapshots: ::Array[Types::LifecycleExecutionSnapshotResource]
1162
1162
  attr_accessor image_uris: ::Array[::String]
1163
+ attr_accessor start_time: ::Time
1164
+ attr_accessor end_time: ::Time
1163
1165
  SENSITIVE: []
1164
1166
  end
1165
1167
 
@@ -1187,7 +1189,7 @@ module Aws::Imagebuilder
1187
1189
  end
1188
1190
 
1189
1191
  class LifecycleExecutionState
1190
- attr_accessor status: ("IN_PROGRESS" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS")
1192
+ attr_accessor status: ("IN_PROGRESS" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "PENDING")
1191
1193
  attr_accessor reason: ::String
1192
1194
  SENSITIVE: []
1193
1195
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-imagebuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.57.0
4
+ version: 1.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement