aws-sdk-cleanrooms 1.52.0 → 1.54.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: '09b9458d0c95aff6685f7d3606259ecfa864024b72471e85ce25cd0a0f301ed5'
4
- data.tar.gz: 91691fc422f3dc0af849b302e9d8e1bee998230ca80056184afb16a44f32b270
3
+ metadata.gz: 3d406e1796ee192f1334469963a05819995175e2525bd33b0fdf2be5cb65dca8
4
+ data.tar.gz: cf7a5c8682adef0e4095a1b97c1d21ca269e4f0e0ddede62d2b8ff0d3facc198
5
5
  SHA512:
6
- metadata.gz: c879dae2295c00b87553a5cbc3de05105b0544e2b643befaa69db4994125426e5acbab63deaa868f98847a227cef236c31901c77aab6921ec353c2111a86f97e
7
- data.tar.gz: cab8d4dd7e979043ce9fb586b5ce1567ee1e498d9933cb7a538442592ae03e73d5a74e2de8404cfc6747d314e26ff32bbec29cf33832f3a34af07e33f11bfea2
6
+ metadata.gz: 236ea5245673a190006a1496fe57464ce461e9e248f1950b3dc6a484defbe022f8eb81ff3d67a9c045397da405c4f7a6634ad7c4e8c5668df63581fd93597718
7
+ data.tar.gz: 76cd825181ef72e4203eb034f0689f303884ecdbe862961b36d91bf03aabe2153559f6e1f2503a123f87fb35ffdc948cb1fa6eec6103a61dd8d918da7a78f4d0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2025-09-04)
5
+ ------------------
6
+
7
+ * Feature - Add support for configurable compute sizes for PySpark jobs.
8
+
9
+ 1.53.0 (2025-09-03)
10
+ ------------------
11
+
12
+ * Feature - Added support for adding new data provider members to an existing collaboration.
13
+
4
14
  1.52.0 (2025-08-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -959,6 +959,10 @@ module Aws::CleanRooms
959
959
  #
960
960
  # </note>
961
961
  #
962
+ # @option params [Array<String>] :auto_approved_change_request_types
963
+ # The types of change requests that are automatically approved for this
964
+ # collaboration.
965
+ #
962
966
  # @return [Types::CreateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
963
967
  #
964
968
  # * {Types::CreateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -1027,6 +1031,7 @@ module Aws::CleanRooms
1027
1031
  # },
1028
1032
  # },
1029
1033
  # analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
1034
+ # auto_approved_change_request_types: ["ADD_MEMBER"], # accepts ADD_MEMBER
1030
1035
  # })
1031
1036
  #
1032
1037
  # @example Response structure
@@ -1049,6 +1054,8 @@ module Aws::CleanRooms
1049
1054
  # resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
1050
1055
  # resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
1051
1056
  # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
1057
+ # resp.collaboration.auto_approved_change_types #=> Array
1058
+ # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
1052
1059
  #
1053
1060
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaboration AWS API Documentation
1054
1061
  #
@@ -1059,6 +1066,67 @@ module Aws::CleanRooms
1059
1066
  req.send_request(options)
1060
1067
  end
1061
1068
 
1069
+ # Creates a new change request to modify an existing collaboration. This
1070
+ # enables post-creation modifications to collaborations through a
1071
+ # structured API-driven approach.
1072
+ #
1073
+ # @option params [required, String] :collaboration_identifier
1074
+ # The identifier of the collaboration that the change request is made
1075
+ # against.
1076
+ #
1077
+ # @option params [required, Array<Types::ChangeInput>] :changes
1078
+ # The list of changes to apply to the collaboration. Each change
1079
+ # specifies the type of modification and the details of what should be
1080
+ # changed.
1081
+ #
1082
+ # @return [Types::CreateCollaborationChangeRequestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1083
+ #
1084
+ # * {Types::CreateCollaborationChangeRequestOutput#collaboration_change_request #collaboration_change_request} => Types::CollaborationChangeRequest
1085
+ #
1086
+ # @example Request syntax with placeholder values
1087
+ #
1088
+ # resp = client.create_collaboration_change_request({
1089
+ # collaboration_identifier: "CollaborationIdentifier", # required
1090
+ # changes: [ # required
1091
+ # {
1092
+ # specification_type: "MEMBER", # required, accepts MEMBER
1093
+ # specification: { # required
1094
+ # member: {
1095
+ # account_id: "AccountId", # required
1096
+ # member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS, CAN_RUN_JOB
1097
+ # display_name: "DisplayName",
1098
+ # },
1099
+ # },
1100
+ # },
1101
+ # ],
1102
+ # })
1103
+ #
1104
+ # @example Response structure
1105
+ #
1106
+ # resp.collaboration_change_request.id #=> String
1107
+ # resp.collaboration_change_request.collaboration_id #=> String
1108
+ # resp.collaboration_change_request.create_time #=> Time
1109
+ # resp.collaboration_change_request.update_time #=> Time
1110
+ # resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
1111
+ # resp.collaboration_change_request.is_auto_approved #=> Boolean
1112
+ # resp.collaboration_change_request.changes #=> Array
1113
+ # resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
1114
+ # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
1115
+ # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
1116
+ # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
1117
+ # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
1118
+ # resp.collaboration_change_request.changes[0].types #=> Array
1119
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
1120
+ #
1121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationChangeRequest AWS API Documentation
1122
+ #
1123
+ # @overload create_collaboration_change_request(params = {})
1124
+ # @param [Hash] params ({})
1125
+ def create_collaboration_change_request(params = {}, options = {})
1126
+ req = build_request(:create_collaboration_change_request, params)
1127
+ req.send_request(options)
1128
+ end
1129
+
1062
1130
  # Provides the details necessary to create a configured audience model
1063
1131
  # association.
1064
1132
  #
@@ -2308,6 +2376,8 @@ module Aws::CleanRooms
2308
2376
  # resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
2309
2377
  # resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
2310
2378
  # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
2379
+ # resp.collaboration.auto_approved_change_types #=> Array
2380
+ # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
2311
2381
  #
2312
2382
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaboration AWS API Documentation
2313
2383
  #
@@ -2383,6 +2453,53 @@ module Aws::CleanRooms
2383
2453
  req.send_request(options)
2384
2454
  end
2385
2455
 
2456
+ # Retrieves detailed information about a specific collaboration change
2457
+ # request.
2458
+ #
2459
+ # @option params [required, String] :collaboration_identifier
2460
+ # The identifier of the collaboration that the change request is made
2461
+ # against.
2462
+ #
2463
+ # @option params [required, String] :change_request_identifier
2464
+ # A unique identifier for the change request to retrieve.
2465
+ #
2466
+ # @return [Types::GetCollaborationChangeRequestOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2467
+ #
2468
+ # * {Types::GetCollaborationChangeRequestOutput#collaboration_change_request #collaboration_change_request} => Types::CollaborationChangeRequest
2469
+ #
2470
+ # @example Request syntax with placeholder values
2471
+ #
2472
+ # resp = client.get_collaboration_change_request({
2473
+ # collaboration_identifier: "CollaborationIdentifier", # required
2474
+ # change_request_identifier: "CollaborationChangeRequestIdentifier", # required
2475
+ # })
2476
+ #
2477
+ # @example Response structure
2478
+ #
2479
+ # resp.collaboration_change_request.id #=> String
2480
+ # resp.collaboration_change_request.collaboration_id #=> String
2481
+ # resp.collaboration_change_request.create_time #=> Time
2482
+ # resp.collaboration_change_request.update_time #=> Time
2483
+ # resp.collaboration_change_request.status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
2484
+ # resp.collaboration_change_request.is_auto_approved #=> Boolean
2485
+ # resp.collaboration_change_request.changes #=> Array
2486
+ # resp.collaboration_change_request.changes[0].specification_type #=> String, one of "MEMBER"
2487
+ # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
2488
+ # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
2489
+ # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
2490
+ # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
2491
+ # resp.collaboration_change_request.changes[0].types #=> Array
2492
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER"
2493
+ #
2494
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationChangeRequest AWS API Documentation
2495
+ #
2496
+ # @overload get_collaboration_change_request(params = {})
2497
+ # @param [Hash] params ({})
2498
+ def get_collaboration_change_request(params = {}, options = {})
2499
+ req = build_request(:get_collaboration_change_request, params)
2500
+ req.send_request(options)
2501
+ end
2502
+
2386
2503
  # Retrieves a configured audience model association within a
2387
2504
  # collaboration.
2388
2505
  #
@@ -3023,6 +3140,8 @@ module Aws::CleanRooms
3023
3140
  # resp.protected_job.result.output.member_list[0].account_id #=> String
3024
3141
  # resp.protected_job.error.message #=> String
3025
3142
  # resp.protected_job.error.code #=> String
3143
+ # resp.protected_job.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
3144
+ # resp.protected_job.compute_configuration.worker.number #=> Integer
3026
3145
  #
3027
3146
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetProtectedJob AWS API Documentation
3028
3147
  #
@@ -3413,6 +3532,67 @@ module Aws::CleanRooms
3413
3532
  req.send_request(options)
3414
3533
  end
3415
3534
 
3535
+ # Lists all change requests for a collaboration with pagination support.
3536
+ # Returns change requests sorted by creation time.
3537
+ #
3538
+ # @option params [required, String] :collaboration_identifier
3539
+ # The identifier of the collaboration that the change request is made
3540
+ # against.
3541
+ #
3542
+ # @option params [String] :status
3543
+ # A filter to only return change requests with the specified status.
3544
+ #
3545
+ # @option params [String] :next_token
3546
+ # The pagination token that's used to fetch the next set of results.
3547
+ #
3548
+ # @option params [Integer] :max_results
3549
+ # The maximum number of results that are returned for an API request
3550
+ # call.
3551
+ #
3552
+ # @return [Types::ListCollaborationChangeRequestsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3553
+ #
3554
+ # * {Types::ListCollaborationChangeRequestsOutput#collaboration_change_request_summaries #collaboration_change_request_summaries} => Array&lt;Types::CollaborationChangeRequestSummary&gt;
3555
+ # * {Types::ListCollaborationChangeRequestsOutput#next_token #next_token} => String
3556
+ #
3557
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3558
+ #
3559
+ # @example Request syntax with placeholder values
3560
+ #
3561
+ # resp = client.list_collaboration_change_requests({
3562
+ # collaboration_identifier: "CollaborationIdentifier", # required
3563
+ # status: "PENDING", # accepts PENDING, APPROVED, CANCELLED, DENIED, COMMITTED
3564
+ # next_token: "PaginationToken",
3565
+ # max_results: 1,
3566
+ # })
3567
+ #
3568
+ # @example Response structure
3569
+ #
3570
+ # resp.collaboration_change_request_summaries #=> Array
3571
+ # resp.collaboration_change_request_summaries[0].id #=> String
3572
+ # resp.collaboration_change_request_summaries[0].collaboration_id #=> String
3573
+ # resp.collaboration_change_request_summaries[0].create_time #=> Time
3574
+ # resp.collaboration_change_request_summaries[0].update_time #=> Time
3575
+ # resp.collaboration_change_request_summaries[0].status #=> String, one of "PENDING", "APPROVED", "CANCELLED", "DENIED", "COMMITTED"
3576
+ # resp.collaboration_change_request_summaries[0].is_auto_approved #=> Boolean
3577
+ # resp.collaboration_change_request_summaries[0].changes #=> Array
3578
+ # resp.collaboration_change_request_summaries[0].changes[0].specification_type #=> String, one of "MEMBER"
3579
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.account_id #=> String
3580
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities #=> Array
3581
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
3582
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.display_name #=> String
3583
+ # resp.collaboration_change_request_summaries[0].changes[0].types #=> Array
3584
+ # resp.collaboration_change_request_summaries[0].changes[0].types[0] #=> String, one of "ADD_MEMBER"
3585
+ # resp.next_token #=> String
3586
+ #
3587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationChangeRequests AWS API Documentation
3588
+ #
3589
+ # @overload list_collaboration_change_requests(params = {})
3590
+ # @param [Hash] params ({})
3591
+ def list_collaboration_change_requests(params = {}, options = {})
3592
+ req = build_request(:list_collaboration_change_requests, params)
3593
+ req.send_request(options)
3594
+ end
3595
+
3416
3596
  # Lists configured audience model associations within a collaboration.
3417
3597
  #
3418
3598
  # @option params [required, String] :collaboration_identifier
@@ -4493,6 +4673,9 @@ module Aws::CleanRooms
4493
4673
  # @option params [Types::ProtectedJobResultConfigurationInput] :result_configuration
4494
4674
  # The details needed to write the job results.
4495
4675
  #
4676
+ # @option params [Types::ProtectedJobComputeConfiguration] :compute_configuration
4677
+ # The compute configuration for the protected job.
4678
+ #
4496
4679
  # @return [Types::StartProtectedJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4497
4680
  #
4498
4681
  # * {Types::StartProtectedJobOutput#protected_job #protected_job} => Types::ProtectedJob
@@ -4512,6 +4695,12 @@ module Aws::CleanRooms
4512
4695
  # },
4513
4696
  # },
4514
4697
  # },
4698
+ # compute_configuration: {
4699
+ # worker: {
4700
+ # type: "CR.1X", # required, accepts CR.1X, CR.4X
4701
+ # number: 1, # required
4702
+ # },
4703
+ # },
4515
4704
  # })
4516
4705
  #
4517
4706
  # @example Response structure
@@ -4532,6 +4721,8 @@ module Aws::CleanRooms
4532
4721
  # resp.protected_job.result.output.member_list[0].account_id #=> String
4533
4722
  # resp.protected_job.error.message #=> String
4534
4723
  # resp.protected_job.error.code #=> String
4724
+ # resp.protected_job.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
4725
+ # resp.protected_job.compute_configuration.worker.number #=> Integer
4535
4726
  #
4536
4727
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedJob AWS API Documentation
4537
4728
  #
@@ -4840,6 +5031,8 @@ module Aws::CleanRooms
4840
5031
  # resp.collaboration.query_log_status #=> String, one of "ENABLED", "DISABLED"
4841
5032
  # resp.collaboration.job_log_status #=> String, one of "ENABLED", "DISABLED"
4842
5033
  # resp.collaboration.analytics_engine #=> String, one of "SPARK", "CLEAN_ROOMS_SQL"
5034
+ # resp.collaboration.auto_approved_change_types #=> Array
5035
+ # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER"
4843
5036
  #
4844
5037
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaboration AWS API Documentation
4845
5038
  #
@@ -5586,6 +5779,8 @@ module Aws::CleanRooms
5586
5779
  # resp.protected_job.result.output.member_list[0].account_id #=> String
5587
5780
  # resp.protected_job.error.message #=> String
5588
5781
  # resp.protected_job.error.code #=> String
5782
+ # resp.protected_job.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
5783
+ # resp.protected_job.compute_configuration.worker.number #=> Integer
5589
5784
  #
5590
5785
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateProtectedJob AWS API Documentation
5591
5786
  #
@@ -5688,7 +5883,7 @@ module Aws::CleanRooms
5688
5883
  tracer: tracer
5689
5884
  )
5690
5885
  context[:gem_name] = 'aws-sdk-cleanrooms'
5691
- context[:gem_version] = '1.52.0'
5886
+ context[:gem_version] = '1.54.0'
5692
5887
  Seahorse::Client::Request.new(handlers, context)
5693
5888
  end
5694
5889