aws-sdk-entityresolution 1.52.0 → 1.53.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-entityresolution/client.rb +15 -10
- data/lib/aws-sdk-entityresolution/client_api.rb +4 -0
- data/lib/aws-sdk-entityresolution.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af1ea594afa14e4f1e4b5d1cbddd595afd72d6b4f7705ae4f520169f575718dc
|
|
4
|
+
data.tar.gz: 85401586c1cf80fe25a0c9d83d63718536470b50bf9ba81cecfe30d141746ddd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a41eff0eccd0b761c55ba5f8737ea29187d39a9270d031cf3bb5764d750af3adecfe92402c2db313bd52ed42c1fb40f0c147dfd31edfae963b9e90562b8f3cb
|
|
7
|
+
data.tar.gz: 3524d1935a474cd828b00a12c66f57ed31cef463886c652d9c6ce044c7d4ea9ef2895483aaf3daf3856b6c5b929860278c639fafbf1335d0a25519a20004a618
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.53.0 (2026-08-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added ResourceNotFoundException to DeleteSchemaMapping, DeleteMatchingWorkflow, DeleteIdMappingWorkflow, and DeleteIdNamespace. These operations now return a 404 ResourceNotFoundException (previously a 200 Success) when the target resource does not exist.
|
|
8
|
+
|
|
4
9
|
1.52.0 (2026-07-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.53.0
|
|
@@ -1077,8 +1077,9 @@ module Aws::EntityResolution
|
|
|
1077
1077
|
req.send_request(options)
|
|
1078
1078
|
end
|
|
1079
1079
|
|
|
1080
|
-
# Deletes the `IdMappingWorkflow` with a given name. This operation
|
|
1081
|
-
#
|
|
1080
|
+
# Deletes the `IdMappingWorkflow` with a given name. This operation
|
|
1081
|
+
# returns a `ResourceNotFoundException` if a workflow with the given
|
|
1082
|
+
# name does not exist.
|
|
1082
1083
|
#
|
|
1083
1084
|
# @option params [required, String] :workflow_name
|
|
1084
1085
|
# The name of the workflow to be deleted.
|
|
@@ -1106,7 +1107,9 @@ module Aws::EntityResolution
|
|
|
1106
1107
|
req.send_request(options)
|
|
1107
1108
|
end
|
|
1108
1109
|
|
|
1109
|
-
# Deletes the `IdNamespace` with a given name.
|
|
1110
|
+
# Deletes the `IdNamespace` with a given name. This operation returns a
|
|
1111
|
+
# `ResourceNotFoundException` if an ID namespace with the given name
|
|
1112
|
+
# does not exist.
|
|
1110
1113
|
#
|
|
1111
1114
|
# @option params [required, String] :id_namespace_name
|
|
1112
1115
|
# The name of the ID namespace.
|
|
@@ -1134,8 +1137,9 @@ module Aws::EntityResolution
|
|
|
1134
1137
|
req.send_request(options)
|
|
1135
1138
|
end
|
|
1136
1139
|
|
|
1137
|
-
# Deletes the `MatchingWorkflow` with a given name. This operation
|
|
1138
|
-
#
|
|
1140
|
+
# Deletes the `MatchingWorkflow` with a given name. This operation
|
|
1141
|
+
# returns a `ResourceNotFoundException` if a workflow with the given
|
|
1142
|
+
# name does not exist.
|
|
1139
1143
|
#
|
|
1140
1144
|
# @option params [required, String] :workflow_name
|
|
1141
1145
|
# The name of the workflow to be retrieved.
|
|
@@ -1200,10 +1204,11 @@ module Aws::EntityResolution
|
|
|
1200
1204
|
req.send_request(options)
|
|
1201
1205
|
end
|
|
1202
1206
|
|
|
1203
|
-
# Deletes the `SchemaMapping` with a given name. This operation
|
|
1204
|
-
#
|
|
1205
|
-
# operation will fail if there is a `MatchingWorkflow`
|
|
1206
|
-
# references the `SchemaMapping` in the workflow's
|
|
1207
|
+
# Deletes the `SchemaMapping` with a given name. This operation returns
|
|
1208
|
+
# a `ResourceNotFoundException` if a schema with the given name does not
|
|
1209
|
+
# exist. This operation will fail if there is a `MatchingWorkflow`
|
|
1210
|
+
# object that references the `SchemaMapping` in the workflow's
|
|
1211
|
+
# `InputSourceConfig`.
|
|
1207
1212
|
#
|
|
1208
1213
|
# @option params [required, String] :schema_name
|
|
1209
1214
|
# The name of the schema to delete.
|
|
@@ -2833,7 +2838,7 @@ module Aws::EntityResolution
|
|
|
2833
2838
|
tracer: tracer
|
|
2834
2839
|
)
|
|
2835
2840
|
context[:gem_name] = 'aws-sdk-entityresolution'
|
|
2836
|
-
context[:gem_version] = '1.
|
|
2841
|
+
context[:gem_version] = '1.53.0'
|
|
2837
2842
|
Seahorse::Client::Request.new(handlers, context)
|
|
2838
2843
|
end
|
|
2839
2844
|
|
|
@@ -1159,6 +1159,7 @@ module Aws::EntityResolution
|
|
|
1159
1159
|
o.output = Shapes::ShapeRef.new(shape: DeleteIdMappingWorkflowOutput)
|
|
1160
1160
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1161
1161
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1162
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1162
1163
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1163
1164
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1164
1165
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
@@ -1172,6 +1173,7 @@ module Aws::EntityResolution
|
|
|
1172
1173
|
o.output = Shapes::ShapeRef.new(shape: DeleteIdNamespaceOutput)
|
|
1173
1174
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1174
1175
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1176
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1175
1177
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1176
1178
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1177
1179
|
end)
|
|
@@ -1184,6 +1186,7 @@ module Aws::EntityResolution
|
|
|
1184
1186
|
o.output = Shapes::ShapeRef.new(shape: DeleteMatchingWorkflowOutput)
|
|
1185
1187
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1186
1188
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1189
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1187
1190
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1188
1191
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1189
1192
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
@@ -1211,6 +1214,7 @@ module Aws::EntityResolution
|
|
|
1211
1214
|
o.output = Shapes::ShapeRef.new(shape: DeleteSchemaMappingOutput)
|
|
1212
1215
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1213
1216
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1217
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1214
1218
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1215
1219
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1216
1220
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|