aws-sdk-cloudfront 1.96.0 → 1.102.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +35 -8
- data/lib/aws-sdk-cloudfront/client_api.rb +1 -0
- data/lib/aws-sdk-cloudfront/customizations.rb +7 -3
- data/lib/aws-sdk-cloudfront/endpoints.rb +111 -444
- data/lib/aws-sdk-cloudfront/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-cloudfront/types.rb +1 -0
- data/lib/aws-sdk-cloudfront.rb +16 -12
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
@@ -15,11 +15,11 @@ module Aws::CloudFront
|
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::CloudFront::EndpointProvider',
|
17
17
|
rbs_type: 'untyped',
|
18
|
-
docstring:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
21
|
+
`Aws::CloudFront::EndpointParameters`.
|
22
|
+
DOCS
|
23
23
|
Aws::CloudFront::EndpointProvider.new
|
24
24
|
end
|
25
25
|
|
@@ -40,11 +40,23 @@ module Aws::CloudFront
|
|
40
40
|
context[:auth_scheme] =
|
41
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
42
42
|
|
43
|
-
@handler.call(context)
|
43
|
+
with_metrics(context) { @handler.call(context) }
|
44
44
|
end
|
45
45
|
|
46
46
|
private
|
47
47
|
|
48
|
+
def with_metrics(context, &block)
|
49
|
+
metrics = []
|
50
|
+
metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
|
51
|
+
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
|
+
metrics << 'SIGV4A_SIGNING'
|
53
|
+
end
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
56
|
+
end
|
57
|
+
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
58
|
+
end
|
59
|
+
|
48
60
|
def apply_endpoint_headers(context, headers)
|
49
61
|
headers.each do |key, values|
|
50
62
|
value = values
|
@@ -13268,3 +13268,4 @@ module Aws::CloudFront
|
|
13268
13268
|
|
13269
13269
|
end
|
13270
13270
|
end
|
13271
|
+
|
data/lib/aws-sdk-cloudfront.rb
CHANGED
@@ -11,17 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-cloudfront/client_api'
|
16
|
-
require_relative 'aws-sdk-cloudfront/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-cloudfront/client'
|
18
|
-
require_relative 'aws-sdk-cloudfront/errors'
|
19
|
-
require_relative 'aws-sdk-cloudfront/waiters'
|
20
|
-
require_relative 'aws-sdk-cloudfront/resource'
|
21
|
-
require_relative 'aws-sdk-cloudfront/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-cloudfront/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-cloudfront/endpoints'
|
24
|
-
require_relative 'aws-sdk-cloudfront/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudfront)
|
25
15
|
|
26
16
|
# This module provides support for Amazon CloudFront. This module is available in the
|
27
17
|
# `aws-sdk-cloudfront` gem.
|
@@ -52,7 +42,21 @@ require_relative 'aws-sdk-cloudfront/customizations'
|
|
52
42
|
#
|
53
43
|
# @!group service
|
54
44
|
module Aws::CloudFront
|
45
|
+
autoload :Types, 'aws-sdk-cloudfront/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-cloudfront/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-cloudfront/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-cloudfront/client'
|
51
|
+
autoload :Errors, 'aws-sdk-cloudfront/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-cloudfront/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-cloudfront/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-cloudfront/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-cloudfront/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-cloudfront/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.102.0'
|
57
59
|
|
58
60
|
end
|
61
|
+
|
62
|
+
require_relative 'aws-sdk-cloudfront/customizations'
|
data/sig/client.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -50,6 +51,7 @@ module Aws
|
|
50
51
|
?session_token: String,
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
55
|
?token_provider: untyped,
|
54
56
|
?use_dualstack_endpoint: bool,
|
55
57
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -50,6 +51,7 @@ module Aws
|
|
50
51
|
?session_token: String,
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
55
|
?token_provider: untyped,
|
54
56
|
?use_dualstack_endpoint: bool,
|
55
57
|
?use_fips_endpoint: bool,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudfront
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.102.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-
|
11
|
+
date: 2024-09-24 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.
|
22
|
+
version: 3.207.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.
|
32
|
+
version: 3.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|