aws-sdk-globalaccelerator 1.63.0 → 1.65.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-globalaccelerator/client.rb +19 -2
- data/lib/aws-sdk-globalaccelerator/client_api.rb +14 -0
- data/lib/aws-sdk-globalaccelerator.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0d750809a2bab4bf132c8e8d337c357a266a9a1583cf69c70936fc908a20386
|
4
|
+
data.tar.gz: 631fa090730ede2e2084cbd9eba0b6bb6ef8628edcf9112e95ea77c42c8ca0e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b8aa1fd41bc34febd5ce126ace780776a62debb9b599e9d4b0a7dc599c2804a3338a79560e2d5fe594ebc14c197eba6f966e4c69f0dd9ea39a95e1ffc4bf563
|
7
|
+
data.tar.gz: 85930688952fccdc1431464f7755e54986533036443d8773383f8b292b895170e52f101492f5437955d46dcb511f63d55ed02f7a94ec1076258ab17745e7b1ee
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.64.0 (2024-07-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This feature adds exceptions to the Customer API to avoid throwing Internal Service errors
|
13
|
+
|
4
14
|
1.63.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::GlobalAccelerator
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
88
90
|
add_plugin(Aws::GlobalAccelerator::Plugins::Endpoints)
|
@@ -337,6 +339,16 @@ module Aws::GlobalAccelerator
|
|
337
339
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
338
340
|
# requests are made, and retries are disabled.
|
339
341
|
#
|
342
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
343
|
+
# Allows you to provide a telemetry provider, which is used to
|
344
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
345
|
+
# will not record or emit any telemetry data. The SDK supports the
|
346
|
+
# following telemetry providers:
|
347
|
+
#
|
348
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
349
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
350
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
351
|
+
#
|
340
352
|
# @option options [Aws::TokenProvider] :token_provider
|
341
353
|
# A Bearer Token Provider. This can be an instance of any one of the
|
342
354
|
# following classes:
|
@@ -3614,14 +3626,19 @@ module Aws::GlobalAccelerator
|
|
3614
3626
|
# @api private
|
3615
3627
|
def build_request(operation_name, params = {})
|
3616
3628
|
handlers = @handlers.for(operation_name)
|
3629
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
3630
|
+
Aws::Telemetry.module_to_tracer_name('Aws::GlobalAccelerator')
|
3631
|
+
)
|
3617
3632
|
context = Seahorse::Client::RequestContext.new(
|
3618
3633
|
operation_name: operation_name,
|
3619
3634
|
operation: config.api.operation(operation_name),
|
3620
3635
|
client: self,
|
3621
3636
|
params: params,
|
3622
|
-
config: config
|
3637
|
+
config: config,
|
3638
|
+
tracer: tracer
|
3639
|
+
)
|
3623
3640
|
context[:gem_name] = 'aws-sdk-globalaccelerator'
|
3624
|
-
context[:gem_version] = '1.
|
3641
|
+
context[:gem_version] = '1.65.0'
|
3625
3642
|
Seahorse::Client::Request.new(handlers, context)
|
3626
3643
|
end
|
3627
3644
|
|
@@ -1027,6 +1027,8 @@ module Aws::GlobalAccelerator
|
|
1027
1027
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1028
1028
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1029
1029
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1030
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1031
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1030
1032
|
end)
|
1031
1033
|
|
1032
1034
|
api.add_operation(:create_cross_account_attachment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1052,6 +1054,7 @@ module Aws::GlobalAccelerator
|
|
1052
1054
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1053
1055
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1054
1056
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1057
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1055
1058
|
end)
|
1056
1059
|
|
1057
1060
|
api.add_operation(:create_custom_routing_endpoint_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1122,6 +1125,7 @@ module Aws::GlobalAccelerator
|
|
1122
1125
|
o.errors << Shapes::ShapeRef.new(shape: AssociatedListenerFoundException)
|
1123
1126
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1124
1127
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1128
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1125
1129
|
end)
|
1126
1130
|
|
1127
1131
|
api.add_operation(:delete_cross_account_attachment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1148,6 +1152,7 @@ module Aws::GlobalAccelerator
|
|
1148
1152
|
o.errors << Shapes::ShapeRef.new(shape: AssociatedListenerFoundException)
|
1149
1153
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1150
1154
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1155
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1151
1156
|
end)
|
1152
1157
|
|
1153
1158
|
api.add_operation(:delete_custom_routing_endpoint_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1535,6 +1540,9 @@ module Aws::GlobalAccelerator
|
|
1535
1540
|
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
1536
1541
|
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
1537
1542
|
o.errors << Shapes::ShapeRef.new(shape: AcceleratorNotFoundException)
|
1543
|
+
o.errors << Shapes::ShapeRef.new(shape: AttachmentNotFoundException)
|
1544
|
+
o.errors << Shapes::ShapeRef.new(shape: EndpointGroupNotFoundException)
|
1545
|
+
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
1538
1546
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1539
1547
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1540
1548
|
end)
|
@@ -1611,6 +1619,8 @@ module Aws::GlobalAccelerator
|
|
1611
1619
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1612
1620
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1613
1621
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1622
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1623
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1614
1624
|
end)
|
1615
1625
|
|
1616
1626
|
api.add_operation(:update_accelerator_attributes, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1623,6 +1633,7 @@ module Aws::GlobalAccelerator
|
|
1623
1633
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1624
1634
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1625
1635
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1636
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1626
1637
|
end)
|
1627
1638
|
|
1628
1639
|
api.add_operation(:update_cross_account_attachment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1648,6 +1659,8 @@ module Aws::GlobalAccelerator
|
|
1648
1659
|
o.errors << Shapes::ShapeRef.new(shape: AcceleratorNotFoundException)
|
1649
1660
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1650
1661
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1662
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1663
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1651
1664
|
end)
|
1652
1665
|
|
1653
1666
|
api.add_operation(:update_custom_routing_accelerator_attributes, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1660,6 +1673,7 @@ module Aws::GlobalAccelerator
|
|
1660
1673
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
1661
1674
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1662
1675
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1676
|
+
o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
|
1663
1677
|
end)
|
1664
1678
|
|
1665
1679
|
api.add_operation(:update_custom_routing_listener, Seahorse::Model::Operation.new.tap do |o|
|
data/sig/client.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-globalaccelerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.65.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-03 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.203.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.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|