aws-sdk-entityresolution 1.13.0 → 1.15.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-entityresolution/client.rb +145 -19
- data/lib/aws-sdk-entityresolution/client_api.rb +52 -5
- data/lib/aws-sdk-entityresolution/types.rb +241 -53
- data/lib/aws-sdk-entityresolution.rb +1 -1
- data/sig/client.rbs +55 -6
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +31 -2
- metadata +6 -6
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -118,7 +119,7 @@ module Aws
|
|
118
119
|
def create_id_mapping_workflow: (
|
119
120
|
?description: ::String,
|
120
121
|
id_mapping_techniques: {
|
121
|
-
id_mapping_type: ("PROVIDER"),
|
122
|
+
id_mapping_type: ("PROVIDER" | "RULE_BASED"),
|
122
123
|
provider_properties: {
|
123
124
|
intermediate_source_configuration: {
|
124
125
|
intermediate_s3_path: ::String
|
@@ -126,6 +127,17 @@ module Aws
|
|
126
127
|
provider_configuration: {
|
127
128
|
}?,
|
128
129
|
provider_service_arn: ::String
|
130
|
+
}?,
|
131
|
+
rule_based_properties: {
|
132
|
+
attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
|
133
|
+
record_matching_model: ("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET"),
|
134
|
+
rule_definition_type: ("SOURCE" | "TARGET"),
|
135
|
+
rules: Array[
|
136
|
+
{
|
137
|
+
matching_keys: Array[::String],
|
138
|
+
rule_name: ::String
|
139
|
+
},
|
140
|
+
]?
|
129
141
|
}?
|
130
142
|
},
|
131
143
|
input_source_config: Array[
|
@@ -141,7 +153,7 @@ module Aws
|
|
141
153
|
output_s3_path: ::String
|
142
154
|
},
|
143
155
|
],
|
144
|
-
role_arn: ::String,
|
156
|
+
?role_arn: ::String,
|
145
157
|
?tags: Hash[::String, ::String],
|
146
158
|
workflow_name: ::String
|
147
159
|
) -> _CreateIdMappingWorkflowResponseSuccess
|
@@ -165,11 +177,22 @@ module Aws
|
|
165
177
|
?description: ::String,
|
166
178
|
?id_mapping_workflow_properties: Array[
|
167
179
|
{
|
168
|
-
id_mapping_type: ("PROVIDER"),
|
180
|
+
id_mapping_type: ("PROVIDER" | "RULE_BASED"),
|
169
181
|
provider_properties: {
|
170
182
|
provider_configuration: {
|
171
183
|
}?,
|
172
184
|
provider_service_arn: ::String
|
185
|
+
}?,
|
186
|
+
rule_based_properties: {
|
187
|
+
attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")?,
|
188
|
+
record_matching_models: Array[("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")]?,
|
189
|
+
rule_definition_types: Array[("SOURCE" | "TARGET")]?,
|
190
|
+
rules: Array[
|
191
|
+
{
|
192
|
+
matching_keys: Array[::String],
|
193
|
+
rule_name: ::String
|
194
|
+
},
|
195
|
+
]?
|
173
196
|
}?
|
174
197
|
},
|
175
198
|
],
|
@@ -235,6 +258,7 @@ module Aws
|
|
235
258
|
resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER"),
|
236
259
|
rule_based_properties: {
|
237
260
|
attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
|
261
|
+
match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")?,
|
238
262
|
rules: Array[
|
239
263
|
{
|
240
264
|
matching_keys: Array[::String],
|
@@ -263,6 +287,7 @@ module Aws
|
|
263
287
|
{
|
264
288
|
field_name: ::String,
|
265
289
|
group_name: ::String?,
|
290
|
+
hashed: bool?,
|
266
291
|
match_key: ::String?,
|
267
292
|
sub_type: ::String?,
|
268
293
|
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")
|
@@ -656,7 +681,7 @@ module Aws
|
|
656
681
|
def update_id_mapping_workflow: (
|
657
682
|
?description: ::String,
|
658
683
|
id_mapping_techniques: {
|
659
|
-
id_mapping_type: ("PROVIDER"),
|
684
|
+
id_mapping_type: ("PROVIDER" | "RULE_BASED"),
|
660
685
|
provider_properties: {
|
661
686
|
intermediate_source_configuration: {
|
662
687
|
intermediate_s3_path: ::String
|
@@ -664,6 +689,17 @@ module Aws
|
|
664
689
|
provider_configuration: {
|
665
690
|
}?,
|
666
691
|
provider_service_arn: ::String
|
692
|
+
}?,
|
693
|
+
rule_based_properties: {
|
694
|
+
attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
|
695
|
+
record_matching_model: ("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET"),
|
696
|
+
rule_definition_type: ("SOURCE" | "TARGET"),
|
697
|
+
rules: Array[
|
698
|
+
{
|
699
|
+
matching_keys: Array[::String],
|
700
|
+
rule_name: ::String
|
701
|
+
},
|
702
|
+
]?
|
667
703
|
}?
|
668
704
|
},
|
669
705
|
input_source_config: Array[
|
@@ -679,7 +715,7 @@ module Aws
|
|
679
715
|
output_s3_path: ::String
|
680
716
|
},
|
681
717
|
],
|
682
|
-
role_arn: ::String,
|
718
|
+
?role_arn: ::String,
|
683
719
|
workflow_name: ::String
|
684
720
|
) -> _UpdateIdMappingWorkflowResponseSuccess
|
685
721
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdMappingWorkflowResponseSuccess
|
@@ -701,11 +737,22 @@ module Aws
|
|
701
737
|
?description: ::String,
|
702
738
|
?id_mapping_workflow_properties: Array[
|
703
739
|
{
|
704
|
-
id_mapping_type: ("PROVIDER"),
|
740
|
+
id_mapping_type: ("PROVIDER" | "RULE_BASED"),
|
705
741
|
provider_properties: {
|
706
742
|
provider_configuration: {
|
707
743
|
}?,
|
708
744
|
provider_service_arn: ::String
|
745
|
+
}?,
|
746
|
+
rule_based_properties: {
|
747
|
+
attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")?,
|
748
|
+
record_matching_models: Array[("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")]?,
|
749
|
+
rule_definition_types: Array[("SOURCE" | "TARGET")]?,
|
750
|
+
rules: Array[
|
751
|
+
{
|
752
|
+
matching_keys: Array[::String],
|
753
|
+
rule_name: ::String
|
754
|
+
},
|
755
|
+
]?
|
709
756
|
}?
|
710
757
|
},
|
711
758
|
],
|
@@ -768,6 +815,7 @@ module Aws
|
|
768
815
|
resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER"),
|
769
816
|
rule_based_properties: {
|
770
817
|
attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
|
818
|
+
match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")?,
|
771
819
|
rules: Array[
|
772
820
|
{
|
773
821
|
matching_keys: Array[::String],
|
@@ -795,6 +843,7 @@ module Aws
|
|
795
843
|
{
|
796
844
|
field_name: ::String,
|
797
845
|
group_name: ::String?,
|
846
|
+
hashed: bool?,
|
798
847
|
match_key: ::String?,
|
799
848
|
sub_type: ::String?,
|
800
849
|
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")
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -373,6 +373,9 @@ module Aws::EntityResolution
|
|
373
373
|
class IdMappingJobMetrics
|
374
374
|
attr_accessor input_records: ::Integer
|
375
375
|
attr_accessor records_not_processed: ::Integer
|
376
|
+
attr_accessor total_mapped_records: ::Integer
|
377
|
+
attr_accessor total_mapped_source_records: ::Integer
|
378
|
+
attr_accessor total_mapped_target_records: ::Integer
|
376
379
|
attr_accessor total_records_processed: ::Integer
|
377
380
|
SENSITIVE: []
|
378
381
|
end
|
@@ -384,9 +387,18 @@ module Aws::EntityResolution
|
|
384
387
|
SENSITIVE: []
|
385
388
|
end
|
386
389
|
|
390
|
+
class IdMappingRuleBasedProperties
|
391
|
+
attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
|
392
|
+
attr_accessor record_matching_model: ("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")
|
393
|
+
attr_accessor rule_definition_type: ("SOURCE" | "TARGET")
|
394
|
+
attr_accessor rules: ::Array[Types::Rule]
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
387
398
|
class IdMappingTechniques
|
388
|
-
attr_accessor id_mapping_type: ("PROVIDER")
|
399
|
+
attr_accessor id_mapping_type: ("PROVIDER" | "RULE_BASED")
|
389
400
|
attr_accessor provider_properties: Types::ProviderProperties
|
401
|
+
attr_accessor rule_based_properties: Types::IdMappingRuleBasedProperties
|
390
402
|
SENSITIVE: []
|
391
403
|
end
|
392
404
|
|
@@ -411,9 +423,15 @@ module Aws::EntityResolution
|
|
411
423
|
SENSITIVE: []
|
412
424
|
end
|
413
425
|
|
426
|
+
class IdNamespaceIdMappingWorkflowMetadata
|
427
|
+
attr_accessor id_mapping_type: ("PROVIDER" | "RULE_BASED")
|
428
|
+
SENSITIVE: []
|
429
|
+
end
|
430
|
+
|
414
431
|
class IdNamespaceIdMappingWorkflowProperties
|
415
|
-
attr_accessor id_mapping_type: ("PROVIDER")
|
432
|
+
attr_accessor id_mapping_type: ("PROVIDER" | "RULE_BASED")
|
416
433
|
attr_accessor provider_properties: Types::NamespaceProviderProperties
|
434
|
+
attr_accessor rule_based_properties: Types::NamespaceRuleBasedProperties
|
417
435
|
SENSITIVE: []
|
418
436
|
end
|
419
437
|
|
@@ -426,6 +444,7 @@ module Aws::EntityResolution
|
|
426
444
|
class IdNamespaceSummary
|
427
445
|
attr_accessor created_at: ::Time
|
428
446
|
attr_accessor description: ::String
|
447
|
+
attr_accessor id_mapping_workflow_properties: ::Array[Types::IdNamespaceIdMappingWorkflowMetadata]
|
429
448
|
attr_accessor id_namespace_arn: ::String
|
430
449
|
attr_accessor id_namespace_name: ::String
|
431
450
|
attr_accessor type: ("SOURCE" | "TARGET")
|
@@ -590,6 +609,14 @@ module Aws::EntityResolution
|
|
590
609
|
SENSITIVE: []
|
591
610
|
end
|
592
611
|
|
612
|
+
class NamespaceRuleBasedProperties
|
613
|
+
attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
|
614
|
+
attr_accessor record_matching_models: ::Array[("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")]
|
615
|
+
attr_accessor rule_definition_types: ::Array[("SOURCE" | "TARGET")]
|
616
|
+
attr_accessor rules: ::Array[Types::Rule]
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
593
620
|
class OutputAttribute
|
594
621
|
attr_accessor hashed: bool
|
595
622
|
attr_accessor name: ::String
|
@@ -700,6 +727,7 @@ module Aws::EntityResolution
|
|
700
727
|
|
701
728
|
class RuleBasedProperties
|
702
729
|
attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
|
730
|
+
attr_accessor match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")
|
703
731
|
attr_accessor rules: ::Array[Types::Rule]
|
704
732
|
SENSITIVE: []
|
705
733
|
end
|
@@ -707,6 +735,7 @@ module Aws::EntityResolution
|
|
707
735
|
class SchemaInputAttribute
|
708
736
|
attr_accessor field_name: ::String
|
709
737
|
attr_accessor group_name: ::String
|
738
|
+
attr_accessor hashed: bool
|
710
739
|
attr_accessor match_key: ::String
|
711
740
|
attr_accessor sub_type: ::String
|
712
741
|
attr_accessor 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")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-entityresolution
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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: 2024-
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS EntityResolution (AWSEntityResolution).
|
48
48
|
This gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|