aws-sdk-accessanalyzer 1.42.0 → 1.44.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.
@@ -25,16 +25,17 @@ module Aws::AccessAnalyzer
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
 
@@ -60,6 +61,10 @@ module Aws::AccessAnalyzer
60
61
  Aws::AccessAnalyzer::Endpoints::ApplyArchiveRule.build(context)
61
62
  when :cancel_policy_generation
62
63
  Aws::AccessAnalyzer::Endpoints::CancelPolicyGeneration.build(context)
64
+ when :check_access_not_granted
65
+ Aws::AccessAnalyzer::Endpoints::CheckAccessNotGranted.build(context)
66
+ when :check_no_new_access
67
+ Aws::AccessAnalyzer::Endpoints::CheckNoNewAccess.build(context)
63
68
  when :create_access_preview
64
69
  Aws::AccessAnalyzer::Endpoints::CreateAccessPreview.build(context)
65
70
  when :create_analyzer
@@ -80,6 +85,8 @@ module Aws::AccessAnalyzer
80
85
  Aws::AccessAnalyzer::Endpoints::GetArchiveRule.build(context)
81
86
  when :get_finding
82
87
  Aws::AccessAnalyzer::Endpoints::GetFinding.build(context)
88
+ when :get_finding_v2
89
+ Aws::AccessAnalyzer::Endpoints::GetFindingV2.build(context)
83
90
  when :get_generated_policy
84
91
  Aws::AccessAnalyzer::Endpoints::GetGeneratedPolicy.build(context)
85
92
  when :list_access_preview_findings
@@ -94,6 +101,8 @@ module Aws::AccessAnalyzer
94
101
  Aws::AccessAnalyzer::Endpoints::ListArchiveRules.build(context)
95
102
  when :list_findings
96
103
  Aws::AccessAnalyzer::Endpoints::ListFindings.build(context)
104
+ when :list_findings_v2
105
+ Aws::AccessAnalyzer::Endpoints::ListFindingsV2.build(context)
97
106
  when :list_policy_generations
98
107
  Aws::AccessAnalyzer::Endpoints::ListPolicyGenerations.build(context)
99
108
  when :list_tags_for_resource