aws-sdk-cleanrooms 1.54.0 → 1.55.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: 3d406e1796ee192f1334469963a05819995175e2525bd33b0fdf2be5cb65dca8
4
- data.tar.gz: cf7a5c8682adef0e4095a1b97c1d21ca269e4f0e0ddede62d2b8ff0d3facc198
3
+ metadata.gz: ab8f01e88e41c674467b35716f271f8c79456d71c525b21a68c55ef5b64fe2f7
4
+ data.tar.gz: bf88de20c5ed5af9ef73e81bf3a9b15aaafe046230314cf6414030bcdc799f4a
5
5
  SHA512:
6
- metadata.gz: 236ea5245673a190006a1496fe57464ce461e9e248f1950b3dc6a484defbe022f8eb81ff3d67a9c045397da405c4f7a6634ad7c4e8c5668df63581fd93597718
7
- data.tar.gz: 76cd825181ef72e4203eb034f0689f303884ecdbe862961b36d91bf03aabe2153559f6e1f2503a123f87fb35ffdc948cb1fa6eec6103a61dd8d918da7a78f4d0
6
+ metadata.gz: 4771784e5cc9f66116e6f51ec9748d5fcb11a1f3963d495fc1f2a4d499b9d87581e0eb24b83aaa145441c52749801f123685b09a9dbc751d482b0cce37cc256a
7
+ data.tar.gz: 28b1d5ac148c37bab1bdea82dcb8dd60d4abdbb565ca1ef720a13cc9ba3c4dd3d4090b0b685721f9446169578def5255e09987ffcefa02924b09249724adba61
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2025-09-23)
5
+ ------------------
6
+
7
+ * Feature - Added support for running incremental ID mapping for rule-based workflows.
8
+
4
9
  1.54.0 (2025-09-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.55.0
@@ -4593,6 +4593,28 @@ module Aws::CleanRooms
4593
4593
  # The unique identifier of the membership that contains the ID mapping
4594
4594
  # table that you want to populate.
4595
4595
  #
4596
+ # @option params [String] :job_type
4597
+ # The job type of the rule-based ID mapping job. Valid values include:
4598
+ #
4599
+ # `INCREMENTAL`: Processes only new or changed data since the last job
4600
+ # run. This is the default job type if the ID mapping workflow was
4601
+ # created in Entity Resolution with `incrementalRunConfig` specified.
4602
+ #
4603
+ # `BATCH`: Processes all data from the input source, regardless of
4604
+ # previous job runs. This is the default job type if the ID mapping
4605
+ # workflow was created in Entity Resolution but `incrementalRunConfig`
4606
+ # wasn't specified.
4607
+ #
4608
+ # `DELETE_ONLY`: Processes only deletion requests from
4609
+ # `BatchDeleteUniqueId`, which is set in Entity Resolution.
4610
+ #
4611
+ # For more information about `incrementalRunConfig` and
4612
+ # `BatchDeleteUniqueId`, see the [Entity Resolution API Reference][1].
4613
+ #
4614
+ #
4615
+ #
4616
+ # [1]: https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html
4617
+ #
4596
4618
  # @return [Types::PopulateIdMappingTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4597
4619
  #
4598
4620
  # * {Types::PopulateIdMappingTableOutput#id_mapping_job_id #id_mapping_job_id} => String
@@ -4602,6 +4624,7 @@ module Aws::CleanRooms
4602
4624
  # resp = client.populate_id_mapping_table({
4603
4625
  # id_mapping_table_identifier: "UUID", # required
4604
4626
  # membership_identifier: "MembershipIdentifier", # required
4627
+ # job_type: "BATCH", # accepts BATCH, INCREMENTAL, DELETE_ONLY
4605
4628
  # })
4606
4629
  #
4607
4630
  # @example Response structure
@@ -5883,7 +5906,7 @@ module Aws::CleanRooms
5883
5906
  tracer: tracer
5884
5907
  )
5885
5908
  context[:gem_name] = 'aws-sdk-cleanrooms'
5886
- context[:gem_version] = '1.54.0'
5909
+ context[:gem_version] = '1.55.0'
5887
5910
  Seahorse::Client::Request.new(handlers, context)
5888
5911
  end
5889
5912
 
@@ -331,6 +331,7 @@ module Aws::CleanRooms
331
331
  IdNamespaceType = Shapes::StringShape.new(name: 'IdNamespaceType')
332
332
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
333
333
  JobComputePaymentConfig = Shapes::StructureShape.new(name: 'JobComputePaymentConfig')
334
+ JobType = Shapes::StringShape.new(name: 'JobType')
334
335
  JoinOperator = Shapes::StringShape.new(name: 'JoinOperator')
335
336
  JoinOperatorsList = Shapes::ListShape.new(name: 'JoinOperatorsList')
336
337
  JoinRequiredOption = Shapes::StringShape.new(name: 'JoinRequiredOption')
@@ -2102,6 +2103,7 @@ module Aws::CleanRooms
2102
2103
 
2103
2104
  PopulateIdMappingTableInput.add_member(:id_mapping_table_identifier, Shapes::ShapeRef.new(shape: UUID, required: true, location: "uri", location_name: "idMappingTableIdentifier"))
2104
2105
  PopulateIdMappingTableInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
2106
+ PopulateIdMappingTableInput.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "jobType"))
2105
2107
  PopulateIdMappingTableInput.struct_class = Types::PopulateIdMappingTableInput
2106
2108
 
2107
2109
  PopulateIdMappingTableOutput.add_member(:id_mapping_job_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "idMappingJobId"))
@@ -2940,6 +2942,7 @@ module Aws::CleanRooms
2940
2942
  o.input = Shapes::ShapeRef.new(shape: CreatePrivacyBudgetTemplateInput)
2941
2943
  o.output = Shapes::ShapeRef.new(shape: CreatePrivacyBudgetTemplateOutput)
2942
2944
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2945
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
2943
2946
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2944
2947
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2945
2948
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -7005,11 +7005,35 @@ module Aws::CleanRooms
7005
7005
  # table that you want to populate.
7006
7006
  # @return [String]
7007
7007
  #
7008
+ # @!attribute [rw] job_type
7009
+ # The job type of the rule-based ID mapping job. Valid values include:
7010
+ #
7011
+ # `INCREMENTAL`: Processes only new or changed data since the last job
7012
+ # run. This is the default job type if the ID mapping workflow was
7013
+ # created in Entity Resolution with `incrementalRunConfig` specified.
7014
+ #
7015
+ # `BATCH`: Processes all data from the input source, regardless of
7016
+ # previous job runs. This is the default job type if the ID mapping
7017
+ # workflow was created in Entity Resolution but `incrementalRunConfig`
7018
+ # wasn't specified.
7019
+ #
7020
+ # `DELETE_ONLY`: Processes only deletion requests from
7021
+ # `BatchDeleteUniqueId`, which is set in Entity Resolution.
7022
+ #
7023
+ # For more information about `incrementalRunConfig` and
7024
+ # `BatchDeleteUniqueId`, see the [Entity Resolution API Reference][1].
7025
+ #
7026
+ #
7027
+ #
7028
+ # [1]: https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html
7029
+ # @return [String]
7030
+ #
7008
7031
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTableInput AWS API Documentation
7009
7032
  #
7010
7033
  class PopulateIdMappingTableInput < Struct.new(
7011
7034
  :id_mapping_table_identifier,
7012
- :membership_identifier)
7035
+ :membership_identifier,
7036
+ :job_type)
7013
7037
  SENSITIVE = []
7014
7038
  include Aws::Structure
7015
7039
  end
@@ -55,7 +55,7 @@ module Aws::CleanRooms
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanrooms/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanrooms/endpoints'
57
57
 
58
- GEM_VERSION = '1.54.0'
58
+ GEM_VERSION = '1.55.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1137,7 +1137,8 @@ module Aws
1137
1137
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#populate_id_mapping_table-instance_method
1138
1138
  def populate_id_mapping_table: (
1139
1139
  id_mapping_table_identifier: ::String,
1140
- membership_identifier: ::String
1140
+ membership_identifier: ::String,
1141
+ ?job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
1141
1142
  ) -> _PopulateIdMappingTableResponseSuccess
1142
1143
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PopulateIdMappingTableResponseSuccess
1143
1144
 
data/sig/types.rbs CHANGED
@@ -1945,6 +1945,7 @@ module Aws::CleanRooms
1945
1945
  class PopulateIdMappingTableInput
1946
1946
  attr_accessor id_mapping_table_identifier: ::String
1947
1947
  attr_accessor membership_identifier: ::String
1948
+ attr_accessor job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
1948
1949
  SENSITIVE: []
1949
1950
  end
1950
1951
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.54.0
4
+ version: 1.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services