aws-sdk-cloudfrontkeyvaluestore 1.1.0 → 1.3.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: 83fc3060f8e4ad977ee059c19b046e1aa7757bb641e167fff0b423e16804d995
4
- data.tar.gz: b4c75f1da8a8d56d03f0870cfa6757e5c24a1fb5d00318c5dbc50332342d79ef
3
+ metadata.gz: 3cc910b38c15934b9d786f2293fe0d4dde6b8af31430084ffd173dadb0b22150
4
+ data.tar.gz: 32489972ec27c0e152a87eb69cb7f9bd147d6a98fcb3d0207b6526716c59bc17
5
5
  SHA512:
6
- metadata.gz: 6f0b4226b6f4885feffeda7ab0db1bd20f7fb2d11768d43d622472f1b49523ceb511b41de05d4bf54c37fce38871a59a38373dbf905e47ce76ed34d8b40f58f8
7
- data.tar.gz: 672eefe73bce010d426345c74b97198460d586caa691567d6650be725462801d2f6e58ab9af84f636aa5bd520a0d7f9702bcec731f47d9ade43d519302f6a636
6
+ metadata.gz: d99232fe6403809646ad34c697b4b3d9f994331f53bf8b0743ade6b93c319adf6ac447daa55f00b2b8332dea36e890f19df2cd399a752ab474b7c4fcfedab74f
7
+ data.tar.gz: 6ec2f2bc8ef4e1e2b161cef3e603f4830a32689ff6bf0313d49db60729b5ad7a2a4e39e3b8f9974ece377a3d579922c20ea39d075f6710b34946e0f3ebd5dae3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2024-01-22)
5
+ ------------------
6
+
7
+ * Feature - This release improves upon the DescribeKeyValueStore API by returning two additional fields, Status of the KeyValueStore and the FailureReason in case of failures during creation of KeyValueStore.
8
+
9
+ 1.2.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.1.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.3.0
@@ -442,6 +442,8 @@ module Aws::CloudFrontKeyValueStore
442
442
  # * {Types::DescribeKeyValueStoreResponse#created #created} => Time
443
443
  # * {Types::DescribeKeyValueStoreResponse#etag #etag} => String
444
444
  # * {Types::DescribeKeyValueStoreResponse#last_modified #last_modified} => Time
445
+ # * {Types::DescribeKeyValueStoreResponse#status #status} => String
446
+ # * {Types::DescribeKeyValueStoreResponse#failure_reason #failure_reason} => String
445
447
  #
446
448
  # @example Request syntax with placeholder values
447
449
  #
@@ -457,6 +459,8 @@ module Aws::CloudFrontKeyValueStore
457
459
  # resp.created #=> Time
458
460
  # resp.etag #=> String
459
461
  # resp.last_modified #=> Time
462
+ # resp.status #=> String
463
+ # resp.failure_reason #=> String
460
464
  #
461
465
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-keyvaluestore-2022-07-26/DescribeKeyValueStore AWS API Documentation
462
466
  #
@@ -663,7 +667,7 @@ module Aws::CloudFrontKeyValueStore
663
667
  params: params,
664
668
  config: config)
665
669
  context[:gem_name] = 'aws-sdk-cloudfrontkeyvaluestore'
666
- context[:gem_version] = '1.1.0'
670
+ context[:gem_version] = '1.3.0'
667
671
  Seahorse::Client::Request.new(handlers, context)
668
672
  end
669
673
 
@@ -77,6 +77,8 @@ module Aws::CloudFrontKeyValueStore
77
77
  DescribeKeyValueStoreResponse.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "Created"))
78
78
  DescribeKeyValueStoreResponse.add_member(:etag, Shapes::ShapeRef.new(shape: Etag, required: true, location: "header", location_name: "ETag"))
79
79
  DescribeKeyValueStoreResponse.add_member(:last_modified, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModified"))
80
+ DescribeKeyValueStoreResponse.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
81
+ DescribeKeyValueStoreResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "FailureReason"))
80
82
  DescribeKeyValueStoreResponse.struct_class = Types::DescribeKeyValueStoreResponse
81
83
 
82
84
  GetKeyRequest.add_member(:kvs_arn, Shapes::ShapeRef.new(shape: KvsARN, required: true, location: "uri", location_name: "KvsARN", metadata: {"contextParam"=>{"name"=>"KvsARN"}}))
@@ -25,16 +25,17 @@ module Aws::CloudFrontKeyValueStore
25
25
  # @api private
26
26
  class Handler < Seahorse::Client::Handler
27
27
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
28
  unless context[:discovered_endpoint]
30
29
  params = parameters_for_operation(context)
31
30
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
31
 
33
32
  context.http_request.endpoint = endpoint.url
34
33
  apply_endpoint_headers(context, endpoint.headers)
34
+
35
+ context[:endpoint_params] = params
36
+ context[:endpoint_properties] = endpoint.properties
35
37
  end
36
38
 
37
- context[:endpoint_params] = params
38
39
  context[:auth_scheme] =
39
40
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
41
 
@@ -140,6 +140,14 @@ module Aws::CloudFrontKeyValueStore
140
140
  # last modified.
141
141
  # @return [Time]
142
142
  #
143
+ # @!attribute [rw] status
144
+ # The current status of the Key Value Store.
145
+ # @return [String]
146
+ #
147
+ # @!attribute [rw] failure_reason
148
+ # The reason for Key Value Store creation failure.
149
+ # @return [String]
150
+ #
143
151
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-keyvaluestore-2022-07-26/DescribeKeyValueStoreResponse AWS API Documentation
144
152
  #
145
153
  class DescribeKeyValueStoreResponse < Struct.new(
@@ -148,7 +156,9 @@ module Aws::CloudFrontKeyValueStore
148
156
  :kvs_arn,
149
157
  :created,
150
158
  :etag,
151
- :last_modified)
159
+ :last_modified,
160
+ :status,
161
+ :failure_reason)
152
162
  SENSITIVE = []
153
163
  include Aws::Structure
154
164
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudfrontkeyvaluestore/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudFrontKeyValueStore
54
54
 
55
- GEM_VERSION = '1.1.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudfrontkeyvaluestore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudfrontkeyvaluestore
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudfrontkeyvaluestore/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon CloudFront KeyValueStore
94
94
  test_files: []