aws-sdk-entityresolution 1.5.0 → 1.7.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.
@@ -12,6 +12,20 @@ module Aws::EntityResolution
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
+ class AddPolicyStatement
16
+ def self.build(context)
17
+ unless context.config.regional_endpoint
18
+ endpoint = context.config.endpoint.to_s
19
+ end
20
+ Aws::EntityResolution::EndpointParameters.new(
21
+ region: context.config.region,
22
+ use_dual_stack: context.config.use_dualstack_endpoint,
23
+ use_fips: context.config.use_fips_endpoint,
24
+ endpoint: endpoint,
25
+ )
26
+ end
27
+ end
28
+
15
29
  class CreateIdMappingWorkflow
16
30
  def self.build(context)
17
31
  unless context.config.regional_endpoint
@@ -26,6 +40,20 @@ module Aws::EntityResolution
26
40
  end
27
41
  end
28
42
 
43
+ class CreateIdNamespace
44
+ def self.build(context)
45
+ unless context.config.regional_endpoint
46
+ endpoint = context.config.endpoint.to_s
47
+ end
48
+ Aws::EntityResolution::EndpointParameters.new(
49
+ region: context.config.region,
50
+ use_dual_stack: context.config.use_dualstack_endpoint,
51
+ use_fips: context.config.use_fips_endpoint,
52
+ endpoint: endpoint,
53
+ )
54
+ end
55
+ end
56
+
29
57
  class CreateMatchingWorkflow
30
58
  def self.build(context)
31
59
  unless context.config.regional_endpoint
@@ -68,6 +96,20 @@ module Aws::EntityResolution
68
96
  end
69
97
  end
70
98
 
99
+ class DeleteIdNamespace
100
+ def self.build(context)
101
+ unless context.config.regional_endpoint
102
+ endpoint = context.config.endpoint.to_s
103
+ end
104
+ Aws::EntityResolution::EndpointParameters.new(
105
+ region: context.config.region,
106
+ use_dual_stack: context.config.use_dualstack_endpoint,
107
+ use_fips: context.config.use_fips_endpoint,
108
+ endpoint: endpoint,
109
+ )
110
+ end
111
+ end
112
+
71
113
  class DeleteMatchingWorkflow
72
114
  def self.build(context)
73
115
  unless context.config.regional_endpoint
@@ -82,6 +124,20 @@ module Aws::EntityResolution
82
124
  end
83
125
  end
84
126
 
127
+ class DeletePolicyStatement
128
+ def self.build(context)
129
+ unless context.config.regional_endpoint
130
+ endpoint = context.config.endpoint.to_s
131
+ end
132
+ Aws::EntityResolution::EndpointParameters.new(
133
+ region: context.config.region,
134
+ use_dual_stack: context.config.use_dualstack_endpoint,
135
+ use_fips: context.config.use_fips_endpoint,
136
+ endpoint: endpoint,
137
+ )
138
+ end
139
+ end
140
+
85
141
  class DeleteSchemaMapping
86
142
  def self.build(context)
87
143
  unless context.config.regional_endpoint
@@ -124,6 +180,20 @@ module Aws::EntityResolution
124
180
  end
125
181
  end
126
182
 
183
+ class GetIdNamespace
184
+ def self.build(context)
185
+ unless context.config.regional_endpoint
186
+ endpoint = context.config.endpoint.to_s
187
+ end
188
+ Aws::EntityResolution::EndpointParameters.new(
189
+ region: context.config.region,
190
+ use_dual_stack: context.config.use_dualstack_endpoint,
191
+ use_fips: context.config.use_fips_endpoint,
192
+ endpoint: endpoint,
193
+ )
194
+ end
195
+ end
196
+
127
197
  class GetMatchId
128
198
  def self.build(context)
129
199
  unless context.config.regional_endpoint
@@ -166,6 +236,20 @@ module Aws::EntityResolution
166
236
  end
167
237
  end
168
238
 
239
+ class GetPolicy
240
+ def self.build(context)
241
+ unless context.config.regional_endpoint
242
+ endpoint = context.config.endpoint.to_s
243
+ end
244
+ Aws::EntityResolution::EndpointParameters.new(
245
+ region: context.config.region,
246
+ use_dual_stack: context.config.use_dualstack_endpoint,
247
+ use_fips: context.config.use_fips_endpoint,
248
+ endpoint: endpoint,
249
+ )
250
+ end
251
+ end
252
+
169
253
  class GetProviderService
170
254
  def self.build(context)
171
255
  unless context.config.regional_endpoint
@@ -222,6 +306,20 @@ module Aws::EntityResolution
222
306
  end
223
307
  end
224
308
 
309
+ class ListIdNamespaces
310
+ def self.build(context)
311
+ unless context.config.regional_endpoint
312
+ endpoint = context.config.endpoint.to_s
313
+ end
314
+ Aws::EntityResolution::EndpointParameters.new(
315
+ region: context.config.region,
316
+ use_dual_stack: context.config.use_dualstack_endpoint,
317
+ use_fips: context.config.use_fips_endpoint,
318
+ endpoint: endpoint,
319
+ )
320
+ end
321
+ end
322
+
225
323
  class ListMatchingJobs
226
324
  def self.build(context)
227
325
  unless context.config.regional_endpoint
@@ -292,6 +390,20 @@ module Aws::EntityResolution
292
390
  end
293
391
  end
294
392
 
393
+ class PutPolicy
394
+ def self.build(context)
395
+ unless context.config.regional_endpoint
396
+ endpoint = context.config.endpoint.to_s
397
+ end
398
+ Aws::EntityResolution::EndpointParameters.new(
399
+ region: context.config.region,
400
+ use_dual_stack: context.config.use_dualstack_endpoint,
401
+ use_fips: context.config.use_fips_endpoint,
402
+ endpoint: endpoint,
403
+ )
404
+ end
405
+ end
406
+
295
407
  class StartIdMappingJob
296
408
  def self.build(context)
297
409
  unless context.config.regional_endpoint
@@ -362,6 +474,20 @@ module Aws::EntityResolution
362
474
  end
363
475
  end
364
476
 
477
+ class UpdateIdNamespace
478
+ def self.build(context)
479
+ unless context.config.regional_endpoint
480
+ endpoint = context.config.endpoint.to_s
481
+ end
482
+ Aws::EntityResolution::EndpointParameters.new(
483
+ region: context.config.region,
484
+ use_dual_stack: context.config.use_dualstack_endpoint,
485
+ use_fips: context.config.use_fips_endpoint,
486
+ endpoint: endpoint,
487
+ )
488
+ end
489
+ end
490
+
365
491
  class UpdateMatchingWorkflow
366
492
  def self.build(context)
367
493
  unless context.config.regional_endpoint
@@ -14,6 +14,7 @@ module Aws::EntityResolution
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::EntityResolution::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -57,28 +58,40 @@ module Aws::EntityResolution
57
58
 
58
59
  def parameters_for_operation(context)
59
60
  case context.operation_name
61
+ when :add_policy_statement
62
+ Aws::EntityResolution::Endpoints::AddPolicyStatement.build(context)
60
63
  when :create_id_mapping_workflow
61
64
  Aws::EntityResolution::Endpoints::CreateIdMappingWorkflow.build(context)
65
+ when :create_id_namespace
66
+ Aws::EntityResolution::Endpoints::CreateIdNamespace.build(context)
62
67
  when :create_matching_workflow
63
68
  Aws::EntityResolution::Endpoints::CreateMatchingWorkflow.build(context)
64
69
  when :create_schema_mapping
65
70
  Aws::EntityResolution::Endpoints::CreateSchemaMapping.build(context)
66
71
  when :delete_id_mapping_workflow
67
72
  Aws::EntityResolution::Endpoints::DeleteIdMappingWorkflow.build(context)
73
+ when :delete_id_namespace
74
+ Aws::EntityResolution::Endpoints::DeleteIdNamespace.build(context)
68
75
  when :delete_matching_workflow
69
76
  Aws::EntityResolution::Endpoints::DeleteMatchingWorkflow.build(context)
77
+ when :delete_policy_statement
78
+ Aws::EntityResolution::Endpoints::DeletePolicyStatement.build(context)
70
79
  when :delete_schema_mapping
71
80
  Aws::EntityResolution::Endpoints::DeleteSchemaMapping.build(context)
72
81
  when :get_id_mapping_job
73
82
  Aws::EntityResolution::Endpoints::GetIdMappingJob.build(context)
74
83
  when :get_id_mapping_workflow
75
84
  Aws::EntityResolution::Endpoints::GetIdMappingWorkflow.build(context)
85
+ when :get_id_namespace
86
+ Aws::EntityResolution::Endpoints::GetIdNamespace.build(context)
76
87
  when :get_match_id
77
88
  Aws::EntityResolution::Endpoints::GetMatchId.build(context)
78
89
  when :get_matching_job
79
90
  Aws::EntityResolution::Endpoints::GetMatchingJob.build(context)
80
91
  when :get_matching_workflow
81
92
  Aws::EntityResolution::Endpoints::GetMatchingWorkflow.build(context)
93
+ when :get_policy
94
+ Aws::EntityResolution::Endpoints::GetPolicy.build(context)
82
95
  when :get_provider_service
83
96
  Aws::EntityResolution::Endpoints::GetProviderService.build(context)
84
97
  when :get_schema_mapping
@@ -87,6 +100,8 @@ module Aws::EntityResolution
87
100
  Aws::EntityResolution::Endpoints::ListIdMappingJobs.build(context)
88
101
  when :list_id_mapping_workflows
89
102
  Aws::EntityResolution::Endpoints::ListIdMappingWorkflows.build(context)
103
+ when :list_id_namespaces
104
+ Aws::EntityResolution::Endpoints::ListIdNamespaces.build(context)
90
105
  when :list_matching_jobs
91
106
  Aws::EntityResolution::Endpoints::ListMatchingJobs.build(context)
92
107
  when :list_matching_workflows
@@ -97,6 +112,8 @@ module Aws::EntityResolution
97
112
  Aws::EntityResolution::Endpoints::ListSchemaMappings.build(context)
98
113
  when :list_tags_for_resource
99
114
  Aws::EntityResolution::Endpoints::ListTagsForResource.build(context)
115
+ when :put_policy
116
+ Aws::EntityResolution::Endpoints::PutPolicy.build(context)
100
117
  when :start_id_mapping_job
101
118
  Aws::EntityResolution::Endpoints::StartIdMappingJob.build(context)
102
119
  when :start_matching_job
@@ -107,6 +124,8 @@ module Aws::EntityResolution
107
124
  Aws::EntityResolution::Endpoints::UntagResource.build(context)
108
125
  when :update_id_mapping_workflow
109
126
  Aws::EntityResolution::Endpoints::UpdateIdMappingWorkflow.build(context)
127
+ when :update_id_namespace
128
+ Aws::EntityResolution::Endpoints::UpdateIdNamespace.build(context)
110
129
  when :update_matching_workflow
111
130
  Aws::EntityResolution::Endpoints::UpdateMatchingWorkflow.build(context)
112
131
  when :update_schema_mapping