aws-sdk-cloudfrontkeyvaluestore 1.1.0 → 1.3.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-cloudfrontkeyvaluestore/client.rb +5 -1
- data/lib/aws-sdk-cloudfrontkeyvaluestore/client_api.rb +2 -0
- data/lib/aws-sdk-cloudfrontkeyvaluestore/plugins/endpoints.rb +3 -2
- data/lib/aws-sdk-cloudfrontkeyvaluestore/types.rb +11 -1
- data/lib/aws-sdk-cloudfrontkeyvaluestore.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cc910b38c15934b9d786f2293fe0d4dde6b8af31430084ffd173dadb0b22150
|
4
|
+
data.tar.gz: 32489972ec27c0e152a87eb69cb7f9bd147d6a98fcb3d0207b6526716c59bc17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
+
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.
|
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
|
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.
|
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:
|
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.
|
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: []
|