aws-sdk-backup 1.80.0 → 1.82.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-backup/client.rb +2 -2
- data/lib/aws-sdk-backup/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-backup/endpoints.rb +2 -999
- data/lib/aws-sdk-backup/plugins/endpoints.rb +1 -188
- data/lib/aws-sdk-backup/types.rb +10 -11
- data/lib/aws-sdk-backup.rb +1 -1
- 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: cea51e2e4d820735232e5342eec8fd0324a696147ca301ac18b492abe0266cc4
|
4
|
+
data.tar.gz: 8052dfea0c39a3c2ca7d1f878ff128fd8fa23b65861296d580b3be345c2cf497
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efca17858d02be7ee8116673008977b10470c63cc931a1426d8bc6cb21c1213094f752f9a6e09ce62983443e1e175479cdd97f5cc35f5ada6f0fec31dc5a0c7f
|
7
|
+
data.tar.gz: 712636f2075b8612d8ca7d3da04b50819ff0353c17229ce182f19b7b85d5ac000504785f152f5ef4ebf32609c4b1768fe469944f37040049fc08d61712978341
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.82.0 (2024-11-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.81.0 (2024-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.80.0 (2024-09-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.82.0
|
@@ -5457,7 +5457,7 @@ module Aws::Backup
|
|
5457
5457
|
# Key-value pairs that are used to help organize your resources. You can
|
5458
5458
|
# assign your own metadata to the resources you create. For clarity,
|
5459
5459
|
# this is the structure to assign tags:
|
5460
|
-
# `[
|
5460
|
+
# `[{"Key":"string","Value":"string"}]`.
|
5461
5461
|
#
|
5462
5462
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5463
5463
|
#
|
@@ -6070,7 +6070,7 @@ module Aws::Backup
|
|
6070
6070
|
tracer: tracer
|
6071
6071
|
)
|
6072
6072
|
context[:gem_name] = 'aws-sdk-backup'
|
6073
|
-
context[:gem_version] = '1.
|
6073
|
+
context[:gem_version] = '1.82.0'
|
6074
6074
|
Seahorse::Client::Request.new(handlers, context)
|
6075
6075
|
end
|
6076
6076
|
|
@@ -52,15 +52,18 @@ module Aws::Backup
|
|
52
52
|
self[:region] = options[:region]
|
53
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
-
if self[:use_dual_stack].nil?
|
56
|
-
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
-
end
|
58
55
|
self[:use_fips] = options[:use_fips]
|
59
56
|
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
-
if self[:use_fips].nil?
|
61
|
-
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
-
end
|
63
57
|
self[:endpoint] = options[:endpoint]
|
64
58
|
end
|
59
|
+
|
60
|
+
def self.create(config, options={})
|
61
|
+
new({
|
62
|
+
region: config.region,
|
63
|
+
use_dual_stack: config.use_dualstack_endpoint,
|
64
|
+
use_fips: config.use_fips_endpoint,
|
65
|
+
endpoint: (config.endpoint.to_s unless config.regional_endpoint),
|
66
|
+
}.merge(options))
|
67
|
+
end
|
65
68
|
end
|
66
69
|
end
|