aws-sdk-entityresolution 1.5.0 → 1.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '098da1f6657726654729f4ca544dd40c560606b402d4ad92ffdf20555e78defd'
4
- data.tar.gz: 7dffbacdf1d860194074120b74f1aad2516934a488f8b24e64de39588ec48596
3
+ metadata.gz: 1dba34c6f3d0464db2903619ed4dd57af28d55d8f75e023734a3a082fad3ec7e
4
+ data.tar.gz: a2f71b24575415d69987e992362bb6be4361fd1f64643e131cd890f674af7c96
5
5
  SHA512:
6
- metadata.gz: 3b47e41558dc7ca97f5b6ff30f213f720ee4b1c9b62bdb8d6aefe38f2cb8aaeffab7f5f33ff3cc1336ca72340bcf7e355c09b650a015e8f7c67982f0aabfd7e9
7
- data.tar.gz: cb2e1f6046ee7206e153cc75b52fac9388b17fc3480a7d23d3f963ae397c6f64e88c3b7bd34e2103c1b14f911499fe800e8ceaa21b3b03e769dd987f78110118
6
+ metadata.gz: 11437ad592cebaf655403493ebe7cd5d6a831b5d6c16d57a24e086d7836bc131e7758945abe5434a4f505c190cd3be84feda90c3a2a3999c102ddbbcd4f356b8
7
+ data.tar.gz: 1074626f7eb5d8d1ed6551cff0a6511ea3fa6367dacefd87f99f4c8cc566cba00731f5a111c1f378790a1a4b3d5d2dab1c72605b9e918b2f9361e06f446ebe07
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.6.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.5.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.0
1
+ 1.6.0
@@ -1842,7 +1842,7 @@ module Aws::EntityResolution
1842
1842
  params: params,
1843
1843
  config: config)
1844
1844
  context[:gem_name] = 'aws-sdk-entityresolution'
1845
- context[:gem_version] = '1.5.0'
1845
+ context[:gem_version] = '1.6.0'
1846
1846
  Seahorse::Client::Request.new(handlers, context)
1847
1847
  end
1848
1848
 
@@ -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 '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-entityresolution/customizations'
52
52
  # @!group service
53
53
  module Aws::EntityResolution
54
54
 
55
- GEM_VERSION = '1.5.0'
55
+ GEM_VERSION = '1.6.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,605 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module EntityResolution
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateIdMappingWorkflowResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateIdMappingWorkflowOutput]
77
+ def description: () -> ::String
78
+ def id_mapping_techniques: () -> Types::IdMappingTechniques
79
+ def input_source_config: () -> ::Array[Types::IdMappingWorkflowInputSource]
80
+ def output_source_config: () -> ::Array[Types::IdMappingWorkflowOutputSource]
81
+ def role_arn: () -> ::String
82
+ def workflow_arn: () -> ::String
83
+ def workflow_name: () -> ::String
84
+ end
85
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#create_id_mapping_workflow-instance_method
86
+ def create_id_mapping_workflow: (
87
+ ?description: ::String,
88
+ id_mapping_techniques: {
89
+ id_mapping_type: ("PROVIDER"),
90
+ provider_properties: {
91
+ intermediate_source_configuration: {
92
+ intermediate_s3_path: ::String
93
+ }?,
94
+ provider_configuration: {
95
+ }?,
96
+ provider_service_arn: ::String
97
+ }
98
+ },
99
+ input_source_config: Array[
100
+ {
101
+ input_source_arn: ::String,
102
+ schema_name: ::String
103
+ },
104
+ ],
105
+ output_source_config: Array[
106
+ {
107
+ kms_arn: ::String?,
108
+ output_s3_path: ::String
109
+ },
110
+ ],
111
+ role_arn: ::String,
112
+ ?tags: Hash[::String, ::String],
113
+ workflow_name: ::String
114
+ ) -> _CreateIdMappingWorkflowResponseSuccess
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIdMappingWorkflowResponseSuccess
116
+
117
+ interface _CreateMatchingWorkflowResponseSuccess
118
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMatchingWorkflowOutput]
119
+ def description: () -> ::String
120
+ def incremental_run_config: () -> Types::IncrementalRunConfig
121
+ def input_source_config: () -> ::Array[Types::InputSource]
122
+ def output_source_config: () -> ::Array[Types::OutputSource]
123
+ def resolution_techniques: () -> Types::ResolutionTechniques
124
+ def role_arn: () -> ::String
125
+ def workflow_arn: () -> ::String
126
+ def workflow_name: () -> ::String
127
+ end
128
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#create_matching_workflow-instance_method
129
+ def create_matching_workflow: (
130
+ ?description: ::String,
131
+ ?incremental_run_config: {
132
+ incremental_run_type: ("IMMEDIATE")?
133
+ },
134
+ input_source_config: Array[
135
+ {
136
+ apply_normalization: bool?,
137
+ input_source_arn: ::String,
138
+ schema_name: ::String
139
+ },
140
+ ],
141
+ output_source_config: Array[
142
+ {
143
+ kms_arn: ::String?,
144
+ apply_normalization: bool?,
145
+ output: Array[
146
+ {
147
+ hashed: bool?,
148
+ name: ::String
149
+ },
150
+ ],
151
+ output_s3_path: ::String
152
+ },
153
+ ],
154
+ resolution_techniques: {
155
+ provider_properties: {
156
+ intermediate_source_configuration: {
157
+ intermediate_s3_path: ::String
158
+ }?,
159
+ provider_configuration: {
160
+ }?,
161
+ provider_service_arn: ::String
162
+ }?,
163
+ resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER"),
164
+ rule_based_properties: {
165
+ attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
166
+ rules: Array[
167
+ {
168
+ matching_keys: Array[::String],
169
+ rule_name: ::String
170
+ },
171
+ ]
172
+ }?
173
+ },
174
+ role_arn: ::String,
175
+ ?tags: Hash[::String, ::String],
176
+ workflow_name: ::String
177
+ ) -> _CreateMatchingWorkflowResponseSuccess
178
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMatchingWorkflowResponseSuccess
179
+
180
+ interface _CreateSchemaMappingResponseSuccess
181
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSchemaMappingOutput]
182
+ def description: () -> ::String
183
+ def mapped_input_fields: () -> ::Array[Types::SchemaInputAttribute]
184
+ def schema_arn: () -> ::String
185
+ def schema_name: () -> ::String
186
+ end
187
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#create_schema_mapping-instance_method
188
+ def create_schema_mapping: (
189
+ ?description: ::String,
190
+ mapped_input_fields: Array[
191
+ {
192
+ field_name: ::String,
193
+ group_name: ::String?,
194
+ match_key: ::String?,
195
+ sub_type: ::String?,
196
+ type: ("NAME" | "NAME_FIRST" | "NAME_MIDDLE" | "NAME_LAST" | "ADDRESS" | "ADDRESS_STREET1" | "ADDRESS_STREET2" | "ADDRESS_STREET3" | "ADDRESS_CITY" | "ADDRESS_STATE" | "ADDRESS_COUNTRY" | "ADDRESS_POSTALCODE" | "PHONE" | "PHONE_NUMBER" | "PHONE_COUNTRYCODE" | "EMAIL_ADDRESS" | "UNIQUE_ID" | "DATE" | "STRING" | "PROVIDER_ID")
197
+ },
198
+ ],
199
+ schema_name: ::String,
200
+ ?tags: Hash[::String, ::String]
201
+ ) -> _CreateSchemaMappingResponseSuccess
202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSchemaMappingResponseSuccess
203
+
204
+ interface _DeleteIdMappingWorkflowResponseSuccess
205
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIdMappingWorkflowOutput]
206
+ def message: () -> ::String
207
+ end
208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#delete_id_mapping_workflow-instance_method
209
+ def delete_id_mapping_workflow: (
210
+ workflow_name: ::String
211
+ ) -> _DeleteIdMappingWorkflowResponseSuccess
212
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdMappingWorkflowResponseSuccess
213
+
214
+ interface _DeleteMatchingWorkflowResponseSuccess
215
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMatchingWorkflowOutput]
216
+ def message: () -> ::String
217
+ end
218
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#delete_matching_workflow-instance_method
219
+ def delete_matching_workflow: (
220
+ workflow_name: ::String
221
+ ) -> _DeleteMatchingWorkflowResponseSuccess
222
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMatchingWorkflowResponseSuccess
223
+
224
+ interface _DeleteSchemaMappingResponseSuccess
225
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSchemaMappingOutput]
226
+ def message: () -> ::String
227
+ end
228
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#delete_schema_mapping-instance_method
229
+ def delete_schema_mapping: (
230
+ schema_name: ::String
231
+ ) -> _DeleteSchemaMappingResponseSuccess
232
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSchemaMappingResponseSuccess
233
+
234
+ interface _GetIdMappingJobResponseSuccess
235
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIdMappingJobOutput]
236
+ def end_time: () -> ::Time
237
+ def error_details: () -> Types::ErrorDetails
238
+ def job_id: () -> ::String
239
+ def metrics: () -> Types::IdMappingJobMetrics
240
+ def start_time: () -> ::Time
241
+ def status: () -> ("RUNNING" | "SUCCEEDED" | "FAILED" | "QUEUED")
242
+ end
243
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_id_mapping_job-instance_method
244
+ def get_id_mapping_job: (
245
+ job_id: ::String,
246
+ workflow_name: ::String
247
+ ) -> _GetIdMappingJobResponseSuccess
248
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdMappingJobResponseSuccess
249
+
250
+ interface _GetIdMappingWorkflowResponseSuccess
251
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIdMappingWorkflowOutput]
252
+ def created_at: () -> ::Time
253
+ def description: () -> ::String
254
+ def id_mapping_techniques: () -> Types::IdMappingTechniques
255
+ def input_source_config: () -> ::Array[Types::IdMappingWorkflowInputSource]
256
+ def output_source_config: () -> ::Array[Types::IdMappingWorkflowOutputSource]
257
+ def role_arn: () -> ::String
258
+ def tags: () -> ::Hash[::String, ::String]
259
+ def updated_at: () -> ::Time
260
+ def workflow_arn: () -> ::String
261
+ def workflow_name: () -> ::String
262
+ end
263
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_id_mapping_workflow-instance_method
264
+ def get_id_mapping_workflow: (
265
+ workflow_name: ::String
266
+ ) -> _GetIdMappingWorkflowResponseSuccess
267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdMappingWorkflowResponseSuccess
268
+
269
+ interface _GetMatchIdResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMatchIdOutput]
271
+ def match_id: () -> ::String
272
+ end
273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_match_id-instance_method
274
+ def get_match_id: (
275
+ record: Hash[::String, ::String],
276
+ workflow_name: ::String
277
+ ) -> _GetMatchIdResponseSuccess
278
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMatchIdResponseSuccess
279
+
280
+ interface _GetMatchingJobResponseSuccess
281
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMatchingJobOutput]
282
+ def end_time: () -> ::Time
283
+ def error_details: () -> Types::ErrorDetails
284
+ def job_id: () -> ::String
285
+ def metrics: () -> Types::JobMetrics
286
+ def start_time: () -> ::Time
287
+ def status: () -> ("RUNNING" | "SUCCEEDED" | "FAILED" | "QUEUED")
288
+ end
289
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_matching_job-instance_method
290
+ def get_matching_job: (
291
+ job_id: ::String,
292
+ workflow_name: ::String
293
+ ) -> _GetMatchingJobResponseSuccess
294
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMatchingJobResponseSuccess
295
+
296
+ interface _GetMatchingWorkflowResponseSuccess
297
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMatchingWorkflowOutput]
298
+ def created_at: () -> ::Time
299
+ def description: () -> ::String
300
+ def incremental_run_config: () -> Types::IncrementalRunConfig
301
+ def input_source_config: () -> ::Array[Types::InputSource]
302
+ def output_source_config: () -> ::Array[Types::OutputSource]
303
+ def resolution_techniques: () -> Types::ResolutionTechniques
304
+ def role_arn: () -> ::String
305
+ def tags: () -> ::Hash[::String, ::String]
306
+ def updated_at: () -> ::Time
307
+ def workflow_arn: () -> ::String
308
+ def workflow_name: () -> ::String
309
+ end
310
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_matching_workflow-instance_method
311
+ def get_matching_workflow: (
312
+ workflow_name: ::String
313
+ ) -> _GetMatchingWorkflowResponseSuccess
314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMatchingWorkflowResponseSuccess
315
+
316
+ interface _GetProviderServiceResponseSuccess
317
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProviderServiceOutput]
318
+ def anonymized_output: () -> bool
319
+ def provider_configuration_definition: () -> untyped
320
+ def provider_endpoint_configuration: () -> Types::ProviderEndpointConfiguration
321
+ def provider_entity_output_definition: () -> untyped
322
+ def provider_intermediate_data_access_configuration: () -> Types::ProviderIntermediateDataAccessConfiguration
323
+ def provider_name: () -> ::String
324
+ def provider_service_arn: () -> ::String
325
+ def provider_service_display_name: () -> ::String
326
+ def provider_service_name: () -> ::String
327
+ def provider_service_type: () -> ("ASSIGNMENT" | "ID_MAPPING")
328
+ end
329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_provider_service-instance_method
330
+ def get_provider_service: (
331
+ provider_name: ::String,
332
+ provider_service_name: ::String
333
+ ) -> _GetProviderServiceResponseSuccess
334
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProviderServiceResponseSuccess
335
+
336
+ interface _GetSchemaMappingResponseSuccess
337
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSchemaMappingOutput]
338
+ def created_at: () -> ::Time
339
+ def description: () -> ::String
340
+ def has_workflows: () -> bool
341
+ def mapped_input_fields: () -> ::Array[Types::SchemaInputAttribute]
342
+ def schema_arn: () -> ::String
343
+ def schema_name: () -> ::String
344
+ def tags: () -> ::Hash[::String, ::String]
345
+ def updated_at: () -> ::Time
346
+ end
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#get_schema_mapping-instance_method
348
+ def get_schema_mapping: (
349
+ schema_name: ::String
350
+ ) -> _GetSchemaMappingResponseSuccess
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSchemaMappingResponseSuccess
352
+
353
+ interface _ListIdMappingJobsResponseSuccess
354
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListIdMappingJobsOutput]
355
+ def jobs: () -> ::Array[Types::JobSummary]
356
+ def next_token: () -> ::String
357
+ end
358
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#list_id_mapping_jobs-instance_method
359
+ def list_id_mapping_jobs: (
360
+ ?max_results: ::Integer,
361
+ ?next_token: ::String,
362
+ workflow_name: ::String
363
+ ) -> _ListIdMappingJobsResponseSuccess
364
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdMappingJobsResponseSuccess
365
+
366
+ interface _ListIdMappingWorkflowsResponseSuccess
367
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListIdMappingWorkflowsOutput]
368
+ def next_token: () -> ::String
369
+ def workflow_summaries: () -> ::Array[Types::IdMappingWorkflowSummary]
370
+ end
371
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#list_id_mapping_workflows-instance_method
372
+ def list_id_mapping_workflows: (
373
+ ?max_results: ::Integer,
374
+ ?next_token: ::String
375
+ ) -> _ListIdMappingWorkflowsResponseSuccess
376
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdMappingWorkflowsResponseSuccess
377
+
378
+ interface _ListMatchingJobsResponseSuccess
379
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMatchingJobsOutput]
380
+ def jobs: () -> ::Array[Types::JobSummary]
381
+ def next_token: () -> ::String
382
+ end
383
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#list_matching_jobs-instance_method
384
+ def list_matching_jobs: (
385
+ ?max_results: ::Integer,
386
+ ?next_token: ::String,
387
+ workflow_name: ::String
388
+ ) -> _ListMatchingJobsResponseSuccess
389
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMatchingJobsResponseSuccess
390
+
391
+ interface _ListMatchingWorkflowsResponseSuccess
392
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMatchingWorkflowsOutput]
393
+ def next_token: () -> ::String
394
+ def workflow_summaries: () -> ::Array[Types::MatchingWorkflowSummary]
395
+ end
396
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#list_matching_workflows-instance_method
397
+ def list_matching_workflows: (
398
+ ?max_results: ::Integer,
399
+ ?next_token: ::String
400
+ ) -> _ListMatchingWorkflowsResponseSuccess
401
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMatchingWorkflowsResponseSuccess
402
+
403
+ interface _ListProviderServicesResponseSuccess
404
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProviderServicesOutput]
405
+ def next_token: () -> ::String
406
+ def provider_service_summaries: () -> ::Array[Types::ProviderServiceSummary]
407
+ end
408
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#list_provider_services-instance_method
409
+ def list_provider_services: (
410
+ ?max_results: ::Integer,
411
+ ?next_token: ::String,
412
+ ?provider_name: ::String
413
+ ) -> _ListProviderServicesResponseSuccess
414
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProviderServicesResponseSuccess
415
+
416
+ interface _ListSchemaMappingsResponseSuccess
417
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSchemaMappingsOutput]
418
+ def next_token: () -> ::String
419
+ def schema_list: () -> ::Array[Types::SchemaMappingSummary]
420
+ end
421
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#list_schema_mappings-instance_method
422
+ def list_schema_mappings: (
423
+ ?max_results: ::Integer,
424
+ ?next_token: ::String
425
+ ) -> _ListSchemaMappingsResponseSuccess
426
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSchemaMappingsResponseSuccess
427
+
428
+ interface _ListTagsForResourceResponseSuccess
429
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
430
+ def tags: () -> ::Hash[::String, ::String]
431
+ end
432
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#list_tags_for_resource-instance_method
433
+ def list_tags_for_resource: (
434
+ resource_arn: ::String
435
+ ) -> _ListTagsForResourceResponseSuccess
436
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
437
+
438
+ interface _StartIdMappingJobResponseSuccess
439
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartIdMappingJobOutput]
440
+ def job_id: () -> ::String
441
+ end
442
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#start_id_mapping_job-instance_method
443
+ def start_id_mapping_job: (
444
+ workflow_name: ::String
445
+ ) -> _StartIdMappingJobResponseSuccess
446
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartIdMappingJobResponseSuccess
447
+
448
+ interface _StartMatchingJobResponseSuccess
449
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMatchingJobOutput]
450
+ def job_id: () -> ::String
451
+ end
452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#start_matching_job-instance_method
453
+ def start_matching_job: (
454
+ workflow_name: ::String
455
+ ) -> _StartMatchingJobResponseSuccess
456
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMatchingJobResponseSuccess
457
+
458
+ interface _TagResourceResponseSuccess
459
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
460
+ end
461
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#tag_resource-instance_method
462
+ def tag_resource: (
463
+ resource_arn: ::String,
464
+ tags: Hash[::String, ::String]
465
+ ) -> _TagResourceResponseSuccess
466
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
467
+
468
+ interface _UntagResourceResponseSuccess
469
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
470
+ end
471
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#untag_resource-instance_method
472
+ def untag_resource: (
473
+ resource_arn: ::String,
474
+ tag_keys: Array[::String]
475
+ ) -> _UntagResourceResponseSuccess
476
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
477
+
478
+ interface _UpdateIdMappingWorkflowResponseSuccess
479
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIdMappingWorkflowOutput]
480
+ def description: () -> ::String
481
+ def id_mapping_techniques: () -> Types::IdMappingTechniques
482
+ def input_source_config: () -> ::Array[Types::IdMappingWorkflowInputSource]
483
+ def output_source_config: () -> ::Array[Types::IdMappingWorkflowOutputSource]
484
+ def role_arn: () -> ::String
485
+ def workflow_arn: () -> ::String
486
+ def workflow_name: () -> ::String
487
+ end
488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#update_id_mapping_workflow-instance_method
489
+ def update_id_mapping_workflow: (
490
+ ?description: ::String,
491
+ id_mapping_techniques: {
492
+ id_mapping_type: ("PROVIDER"),
493
+ provider_properties: {
494
+ intermediate_source_configuration: {
495
+ intermediate_s3_path: ::String
496
+ }?,
497
+ provider_configuration: {
498
+ }?,
499
+ provider_service_arn: ::String
500
+ }
501
+ },
502
+ input_source_config: Array[
503
+ {
504
+ input_source_arn: ::String,
505
+ schema_name: ::String
506
+ },
507
+ ],
508
+ output_source_config: Array[
509
+ {
510
+ kms_arn: ::String?,
511
+ output_s3_path: ::String
512
+ },
513
+ ],
514
+ role_arn: ::String,
515
+ workflow_name: ::String
516
+ ) -> _UpdateIdMappingWorkflowResponseSuccess
517
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdMappingWorkflowResponseSuccess
518
+
519
+ interface _UpdateMatchingWorkflowResponseSuccess
520
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMatchingWorkflowOutput]
521
+ def description: () -> ::String
522
+ def incremental_run_config: () -> Types::IncrementalRunConfig
523
+ def input_source_config: () -> ::Array[Types::InputSource]
524
+ def output_source_config: () -> ::Array[Types::OutputSource]
525
+ def resolution_techniques: () -> Types::ResolutionTechniques
526
+ def role_arn: () -> ::String
527
+ def workflow_name: () -> ::String
528
+ end
529
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#update_matching_workflow-instance_method
530
+ def update_matching_workflow: (
531
+ ?description: ::String,
532
+ ?incremental_run_config: {
533
+ incremental_run_type: ("IMMEDIATE")?
534
+ },
535
+ input_source_config: Array[
536
+ {
537
+ apply_normalization: bool?,
538
+ input_source_arn: ::String,
539
+ schema_name: ::String
540
+ },
541
+ ],
542
+ output_source_config: Array[
543
+ {
544
+ kms_arn: ::String?,
545
+ apply_normalization: bool?,
546
+ output: Array[
547
+ {
548
+ hashed: bool?,
549
+ name: ::String
550
+ },
551
+ ],
552
+ output_s3_path: ::String
553
+ },
554
+ ],
555
+ resolution_techniques: {
556
+ provider_properties: {
557
+ intermediate_source_configuration: {
558
+ intermediate_s3_path: ::String
559
+ }?,
560
+ provider_configuration: {
561
+ }?,
562
+ provider_service_arn: ::String
563
+ }?,
564
+ resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER"),
565
+ rule_based_properties: {
566
+ attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
567
+ rules: Array[
568
+ {
569
+ matching_keys: Array[::String],
570
+ rule_name: ::String
571
+ },
572
+ ]
573
+ }?
574
+ },
575
+ role_arn: ::String,
576
+ workflow_name: ::String
577
+ ) -> _UpdateMatchingWorkflowResponseSuccess
578
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMatchingWorkflowResponseSuccess
579
+
580
+ interface _UpdateSchemaMappingResponseSuccess
581
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSchemaMappingOutput]
582
+ def description: () -> ::String
583
+ def mapped_input_fields: () -> ::Array[Types::SchemaInputAttribute]
584
+ def schema_arn: () -> ::String
585
+ def schema_name: () -> ::String
586
+ end
587
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EntityResolution/Client.html#update_schema_mapping-instance_method
588
+ def update_schema_mapping: (
589
+ ?description: ::String,
590
+ mapped_input_fields: Array[
591
+ {
592
+ field_name: ::String,
593
+ group_name: ::String?,
594
+ match_key: ::String?,
595
+ sub_type: ::String?,
596
+ type: ("NAME" | "NAME_FIRST" | "NAME_MIDDLE" | "NAME_LAST" | "ADDRESS" | "ADDRESS_STREET1" | "ADDRESS_STREET2" | "ADDRESS_STREET3" | "ADDRESS_CITY" | "ADDRESS_STATE" | "ADDRESS_COUNTRY" | "ADDRESS_POSTALCODE" | "PHONE" | "PHONE_NUMBER" | "PHONE_COUNTRYCODE" | "EMAIL_ADDRESS" | "UNIQUE_ID" | "DATE" | "STRING" | "PROVIDER_ID")
597
+ },
598
+ ],
599
+ schema_name: ::String
600
+ ) -> _UpdateSchemaMappingResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSchemaMappingResponseSuccess
602
+ end
603
+ end
604
+ end
605
+