aws-sdk-outposts 1.50.0 → 1.52.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: 7649b97bc526ae9c1fae87857751df672c550cf4fe6cef68032d65e303da6a40
4
- data.tar.gz: afcf0e523150857bd04d7d79d689eff59e942638d50debd210b2342f4ebdd1c9
3
+ metadata.gz: c64c9fcaeba59e3e6d6a6dacead7f8a1591aa030b721f2d862507a05370330fa
4
+ data.tar.gz: 8f95e8e0618f79c0af1242569b497ec58e54c63322aa7a64e856dc89dfef1fb7
5
5
  SHA512:
6
- metadata.gz: e16a7f50b451d020e5a6bffcbfd211989036241893ac7010b4d48438dbd5821e870a8f701d64194589e19c94b582a3060f84172296b5e989156a9164a39519bb
7
- data.tar.gz: 8ae92b5d0d6d48d05fcbe30467ecf10a7be59cc6096f2ff9578a7024e9aeef06c249fe5c25536532acbe73264ab27b789172cba3a4418e28bfc59aab570eaa2f
6
+ metadata.gz: c296706b550ed60e25b048f12279801a4ac3d96e56bbf090ab37959da8497c9c1e6178930c16a025e614b207bab3b42486d6404e5624c40cd1f597db8cfdb1f9
7
+ data.tar.gz: 043ae78f1b164c7f933d186744acaaee2f3152b38538b3d3078d4650c169d7f39a8a5ae9e079a042c0b3cabba5ea531699edd19e4a90d192a12e3268ecb91139
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2024-01-24)
5
+ ------------------
6
+
7
+ * Feature - DeviceSerialNumber parameter is now optional in StartConnection API
8
+
9
+ 1.51.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.50.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.52.0
@@ -1388,7 +1388,7 @@ module Aws::Outposts
1388
1388
  # [1]: https://docs.aws.amazon.com/outposts/latest/userguide/security-iam-awsmanpol.html
1389
1389
  # [2]: https://docs.aws.amazon.com/outposts/latest/userguide/logging-using-cloudtrail.html
1390
1390
  #
1391
- # @option params [required, String] :device_serial_number
1391
+ # @option params [String] :device_serial_number
1392
1392
  # The serial number of the dongle.
1393
1393
  #
1394
1394
  # @option params [required, String] :asset_id
@@ -1408,7 +1408,7 @@ module Aws::Outposts
1408
1408
  # @example Request syntax with placeholder values
1409
1409
  #
1410
1410
  # resp = client.start_connection({
1411
- # device_serial_number: "DeviceSerialNumber", # required
1411
+ # device_serial_number: "DeviceSerialNumber",
1412
1412
  # asset_id: "AssetId", # required
1413
1413
  # client_public_key: "WireGuardPublicKey", # required
1414
1414
  # network_interface_device_index: 1, # required
@@ -1833,7 +1833,7 @@ module Aws::Outposts
1833
1833
  params: params,
1834
1834
  config: config)
1835
1835
  context[:gem_name] = 'aws-sdk-outposts'
1836
- context[:gem_version] = '1.50.0'
1836
+ context[:gem_version] = '1.52.0'
1837
1837
  Seahorse::Client::Request.new(handlers, context)
1838
1838
  end
1839
1839
 
@@ -550,7 +550,7 @@ module Aws::Outposts
550
550
  Site.add_member(:rack_physical_properties, Shapes::ShapeRef.new(shape: RackPhysicalProperties, location_name: "RackPhysicalProperties"))
551
551
  Site.struct_class = Types::Site
552
552
 
553
- StartConnectionRequest.add_member(:device_serial_number, Shapes::ShapeRef.new(shape: DeviceSerialNumber, required: true, location_name: "DeviceSerialNumber"))
553
+ StartConnectionRequest.add_member(:device_serial_number, Shapes::ShapeRef.new(shape: DeviceSerialNumber, location_name: "DeviceSerialNumber"))
554
554
  StartConnectionRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetId"))
555
555
  StartConnectionRequest.add_member(:client_public_key, Shapes::ShapeRef.new(shape: WireGuardPublicKey, required: true, location_name: "ClientPublicKey"))
556
556
  StartConnectionRequest.add_member(:network_interface_device_index, Shapes::ShapeRef.new(shape: NetworkInterfaceDeviceIndex, required: true, location_name: "NetworkInterfaceDeviceIndex"))
@@ -32,8 +32,8 @@ module Aws::Outposts
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://outposts.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
39
  return Aws::Endpoints::Endpoint.new(url: "https://outposts-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -25,16 +25,17 @@ module Aws::Outposts
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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-outposts/customizations'
52
52
  # @!group service
53
53
  module Aws::Outposts
54
54
 
55
- GEM_VERSION = '1.50.0'
55
+ GEM_VERSION = '1.52.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-outposts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.52.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-24 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-outposts
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-outposts/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 - Outposts
94
94
  test_files: []