aws-sdk-core 3.181.0 → 3.190.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +84 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-core/ecs_credentials.rb +76 -10
  5. data/lib/aws-sdk-core/endpoints/matchers.rb +13 -9
  6. data/lib/aws-sdk-core/endpoints.rb +1 -1
  7. data/lib/aws-sdk-core/errors.rb +1 -1
  8. data/lib/aws-sdk-core/instance_profile_credentials.rb +52 -30
  9. data/lib/aws-sdk-core/json/handler.rb +8 -1
  10. data/lib/aws-sdk-core/json/parser.rb +27 -2
  11. data/lib/aws-sdk-core/param_validator.rb +2 -2
  12. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +4 -2
  13. data/lib/aws-sdk-core/plugins/http_checksum.rb +2 -1
  14. data/lib/aws-sdk-core/plugins/sign.rb +15 -10
  15. data/lib/aws-sdk-core/refreshing_credentials.rb +12 -6
  16. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +43 -29
  17. data/lib/aws-sdk-core/shared_config.rb +2 -0
  18. data/lib/aws-sdk-sso/client.rb +1 -1
  19. data/lib/aws-sdk-sso/endpoint_provider.rb +30 -24
  20. data/lib/aws-sdk-sso/plugins/endpoints.rb +3 -2
  21. data/lib/aws-sdk-sso.rb +1 -1
  22. data/lib/aws-sdk-ssooidc/client.rb +338 -29
  23. data/lib/aws-sdk-ssooidc/client_api.rb +56 -1
  24. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +30 -24
  25. data/lib/aws-sdk-ssooidc/endpoints.rb +14 -0
  26. data/lib/aws-sdk-ssooidc/errors.rb +31 -0
  27. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +5 -2
  28. data/lib/aws-sdk-ssooidc/types.rb +302 -49
  29. data/lib/aws-sdk-ssooidc.rb +1 -1
  30. data/lib/aws-sdk-sts/client.rb +11 -3
  31. data/lib/aws-sdk-sts/client_api.rb +2 -1
  32. data/lib/aws-sdk-sts/endpoint_provider.rb +2 -2
  33. data/lib/aws-sdk-sts/plugins/endpoints.rb +3 -2
  34. data/lib/aws-sdk-sts/presigner.rb +1 -1
  35. data/lib/aws-sdk-sts/types.rb +18 -4
  36. data/lib/aws-sdk-sts.rb +1 -1
  37. data/lib/seahorse/client/net_http/patches.rb +1 -4
  38. data/lib/seahorse/client/plugins/h2.rb +3 -3
  39. metadata +7 -7
@@ -767,7 +767,15 @@ module Aws::STS
767
767
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html
768
768
  #
769
769
  # @option params [Array<Types::ProvidedContext>] :provided_contexts
770
- # Reserved for future use.
770
+ # A list of previously acquired trusted context assertions in the format
771
+ # of a JSON array. The trusted context assertion is signed and encrypted
772
+ # by Amazon Web Services STS.
773
+ #
774
+ # The following is an example of a `ProvidedContext` value that includes
775
+ # a single trusted context assertion and the ARN of the context provider
776
+ # from which the trusted context assertion was generated.
777
+ #
778
+ # `[\{"ProviderArn":"arn:aws:iam::aws:contextProvider/IdentityCenter","ContextAssertion":"trusted-context-assertion"\}]`
771
779
  #
772
780
  # @return [Types::AssumeRoleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
773
781
  #
@@ -829,7 +837,7 @@ module Aws::STS
829
837
  # arn: "arnType",
830
838
  # },
831
839
  # ],
832
- # policy: "sessionPolicyDocumentType",
840
+ # policy: "unrestrictedSessionPolicyDocumentType",
833
841
  # duration_seconds: 1,
834
842
  # tags: [
835
843
  # {
@@ -2344,7 +2352,7 @@ module Aws::STS
2344
2352
  params: params,
2345
2353
  config: config)
2346
2354
  context[:gem_name] = 'aws-sdk-core'
2347
- context[:gem_version] = '3.181.0'
2355
+ context[:gem_version] = '3.190.0'
2348
2356
  Seahorse::Client::Request.new(handlers, context)
2349
2357
  end
2350
2358
 
@@ -84,6 +84,7 @@ module Aws::STS
84
84
  tagValueType = Shapes::StringShape.new(name: 'tagValueType')
85
85
  tokenCodeType = Shapes::StringShape.new(name: 'tokenCodeType')
86
86
  tokenType = Shapes::StringShape.new(name: 'tokenType')
87
+ unrestrictedSessionPolicyDocumentType = Shapes::StringShape.new(name: 'unrestrictedSessionPolicyDocumentType')
87
88
  urlType = Shapes::StringShape.new(name: 'urlType')
88
89
  userIdType = Shapes::StringShape.new(name: 'userIdType')
89
90
  userNameType = Shapes::StringShape.new(name: 'userNameType')
@@ -92,7 +93,7 @@ module Aws::STS
92
93
  AssumeRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: arnType, required: true, location_name: "RoleArn"))
93
94
  AssumeRoleRequest.add_member(:role_session_name, Shapes::ShapeRef.new(shape: roleSessionNameType, required: true, location_name: "RoleSessionName"))
94
95
  AssumeRoleRequest.add_member(:policy_arns, Shapes::ShapeRef.new(shape: policyDescriptorListType, location_name: "PolicyArns"))
95
- AssumeRoleRequest.add_member(:policy, Shapes::ShapeRef.new(shape: sessionPolicyDocumentType, location_name: "Policy"))
96
+ AssumeRoleRequest.add_member(:policy, Shapes::ShapeRef.new(shape: unrestrictedSessionPolicyDocumentType, location_name: "Policy"))
96
97
  AssumeRoleRequest.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: roleDurationSecondsType, location_name: "DurationSeconds"))
97
98
  AssumeRoleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: tagListType, location_name: "Tags"))
98
99
  AssumeRoleRequest.add_member(:transitive_tag_keys, Shapes::ShapeRef.new(shape: tagKeyListType, location_name: "TransitiveTagKeys"))
@@ -84,8 +84,8 @@ module Aws::STS
84
84
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
85
85
  end
86
86
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
87
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
88
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
87
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
88
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
89
89
  return Aws::Endpoints::Endpoint.new(url: "https://sts.#{region}.amazonaws.com", headers: {}, properties: {})
90
90
  end
91
91
  return Aws::Endpoints::Endpoint.new(url: "https://sts-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -25,16 +25,17 @@ module Aws::STS
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
 
@@ -35,7 +35,7 @@ module Aws
35
35
  # )
36
36
  #
37
37
  # This can be easily converted to a token used by the EKS service:
38
- # {https://ruby-doc.org/stdlib-2.3.1/libdoc/base64/rdoc/Base64.html#method-i-encode64}
38
+ # {https://docs.ruby-lang.org/en/3.2/Base64.html#method-i-encode64}
39
39
  # "k8s-aws-v1." + Base64.urlsafe_encode64(url).chomp("==")
40
40
  def get_caller_identity_presigned_url(options = {})
41
41
  req = @client.build_request(:get_caller_identity, {})
@@ -288,7 +288,16 @@ module Aws::STS
288
288
  # @return [String]
289
289
  #
290
290
  # @!attribute [rw] provided_contexts
291
- # Reserved for future use.
291
+ # A list of previously acquired trusted context assertions in the
292
+ # format of a JSON array. The trusted context assertion is signed and
293
+ # encrypted by Amazon Web Services STS.
294
+ #
295
+ # The following is an example of a `ProvidedContext` value that
296
+ # includes a single trusted context assertion and the ARN of the
297
+ # context provider from which the trusted context assertion was
298
+ # generated.
299
+ #
300
+ # `[\{"ProviderArn":"arn:aws:iam::aws:contextProvider/IdentityCenter","ContextAssertion":"trusted-context-assertion"\}]`
292
301
  # @return [Array<Types::ProvidedContext>]
293
302
  #
294
303
  # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumeRoleRequest AWS API Documentation
@@ -1503,14 +1512,19 @@ module Aws::STS
1503
1512
  include Aws::Structure
1504
1513
  end
1505
1514
 
1506
- # Reserved for future use.
1515
+ # Contains information about the provided context. This includes the
1516
+ # signed and encrypted trusted context assertion and the context
1517
+ # provider ARN from which the trusted context assertion was generated.
1507
1518
  #
1508
1519
  # @!attribute [rw] provider_arn
1509
- # Reserved for future use.
1520
+ # The context provider ARN from which the trusted context assertion
1521
+ # was generated.
1510
1522
  # @return [String]
1511
1523
  #
1512
1524
  # @!attribute [rw] context_assertion
1513
- # Reserved for future use.
1525
+ # The signed and encrypted trusted context assertion generated by the
1526
+ # context provider. The trusted context assertion is signed and
1527
+ # encrypted by Amazon Web Services STS.
1514
1528
  # @return [String]
1515
1529
  #
1516
1530
  # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/ProvidedContext AWS API Documentation
data/lib/aws-sdk-sts.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sts/customizations'
54
54
  # @!group service
55
55
  module Aws::STS
56
56
 
57
- GEM_VERSION = '3.181.0'
57
+ GEM_VERSION = '3.190.0'
58
58
 
59
59
  end
@@ -12,12 +12,9 @@ module Seahorse
12
12
 
13
13
  def self.apply!
14
14
  Net::HTTPGenericRequest.prepend(PatchDefaultContentType)
15
- return unless RUBY_VERSION < '2.5'
16
-
17
- Net::HTTP::IDEMPOTENT_METHODS_.clear
18
15
  end
19
16
 
20
- # For requests with bodys, Net::HTTP sets a default content type of:
17
+ # For requests with bodies, Net::HTTP sets a default content type of:
21
18
  # 'application/x-www-form-urlencoded'
22
19
  # There are cases where we should not send content type at all.
23
20
  # Even when no body is supplied, Net::HTTP uses a default empty body
@@ -54,9 +54,9 @@ When `true`, HTTP2 debug output will be sent to the `:logger`.
54
54
  DOCS
55
55
 
56
56
  option(:enable_alpn, default: false, doc_type: 'Boolean', docstring: <<-DOCS)
57
- Setting to `true` to enable ALPN in HTTP2 over TLS, requires Ruby version >= 2.3 and
58
- Openssl version >= 1.0.2. Defaults to false. Note: not all service HTTP2 operations
59
- supports ALPN on server side, please refer to service documentation.
57
+ Set to `true` to enable ALPN in HTTP2 over TLS. Requires Openssl version >= 1.0.2.
58
+ Defaults to false. Note: not all service HTTP2 operations supports ALPN on server
59
+ side, please refer to service documentation.
60
60
  DOCS
61
61
 
62
62
  option(:logger)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.181.0
4
+ version: 3.190.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: 2023-08-22 00:00:00.000000000 Z
11
+ date: 2023-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -56,14 +56,14 @@ dependencies:
56
56
  requirements:
57
57
  - - "~>"
58
58
  - !ruby/object:Gem::Version
59
- version: '1.5'
59
+ version: '1.8'
60
60
  type: :runtime
61
61
  prerelease: false
62
62
  version_requirements: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - "~>"
65
65
  - !ruby/object:Gem::Version
66
- version: '1.5'
66
+ version: '1.8'
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: aws-eventstream
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -73,7 +73,7 @@ dependencies:
73
73
  version: '1'
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
- version: 1.0.2
76
+ version: 1.3.0
77
77
  type: :runtime
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
@@ -83,7 +83,7 @@ dependencies:
83
83
  version: '1'
84
84
  - - ">="
85
85
  - !ruby/object:Gem::Version
86
- version: 1.0.2
86
+ version: 1.3.0
87
87
  description: Provides API clients for AWS. This gem is part of the official AWS SDK
88
88
  for Ruby.
89
89
  email:
@@ -353,7 +353,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
353
353
  requirements:
354
354
  - - ">="
355
355
  - !ruby/object:Gem::Version
356
- version: '2.3'
356
+ version: '2.5'
357
357
  required_rubygems_version: !ruby/object:Gem::Requirement
358
358
  requirements:
359
359
  - - ">="