aws-sdk-cleanrooms 1.65.0 → 1.66.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: 126a6faa8710429f554e4ae60ca3a1f74256285b026df5ed0c4297ebc4db0c91
4
- data.tar.gz: 4c592d1798ffd2d099388d25ca044f46cf2b50815c0a09f9f1a656cd9ab7edfd
3
+ metadata.gz: 5216cea093dce2ac76fa86b97ab18bf454f2249a811df4296446e6da243113b4
4
+ data.tar.gz: 4f62bb78127fdc6f37194de7f724ef1c61d35966c7549cc6dc3e95495f905e05
5
5
  SHA512:
6
- metadata.gz: 8f60cdc761cf84249fb5428cde49e95c3a28ee27ba17ebb0e9c7d183c723729022f4a239f185090f675963c5f9c3d93778c4789ee67943fe7f741b2f0bc43af9
7
- data.tar.gz: a81031dab4d540036367d03f7987bee27e0f6da076c9043012e97841b3633eeb11491baa1842ebb10047368cd75981f286f6a724e4bb051d7b5ae6450c7086e0
6
+ metadata.gz: 26c10c0089f296c38acdcfeed256227060af87d0459a6b84ef98daa0461cba047d2a6d91f94f446945a6be135046a2158aaac1e3ecfd3ceca7046040b9191c3b
7
+ data.tar.gz: 3155233cd96378b7e472807d3b2cac6b156234ca152aef309e5f16722184565f0aaceea5b5bcc0027b8a8b0996a82fa3d7a4620a45baba4f1c8fa066e86bf911
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2026-01-15)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for parameters in PySpark analysis templates.
8
+
4
9
  1.65.0 (2026-01-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -3263,6 +3263,8 @@ module Aws::CleanRooms
3263
3263
  # resp.protected_job.membership_arn #=> String
3264
3264
  # resp.protected_job.create_time #=> Time
3265
3265
  # resp.protected_job.job_parameters.analysis_template_arn #=> String
3266
+ # resp.protected_job.job_parameters.parameters #=> Hash
3267
+ # resp.protected_job.job_parameters.parameters["JobParameterName"] #=> String
3266
3268
  # resp.protected_job.status #=> String, one of "SUBMITTED", "STARTED", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS"
3267
3269
  # resp.protected_job.result_configuration.output_configuration.s3.bucket #=> String
3268
3270
  # resp.protected_job.result_configuration.output_configuration.s3.key_prefix #=> String
@@ -4884,6 +4886,9 @@ module Aws::CleanRooms
4884
4886
  # membership_identifier: "MembershipIdentifier", # required
4885
4887
  # job_parameters: { # required
4886
4888
  # analysis_template_arn: "AnalysisTemplateArn", # required
4889
+ # parameters: {
4890
+ # "JobParameterName" => "JobParameterValue",
4891
+ # },
4887
4892
  # },
4888
4893
  # result_configuration: {
4889
4894
  # output_configuration: { # required
@@ -4907,6 +4912,8 @@ module Aws::CleanRooms
4907
4912
  # resp.protected_job.membership_arn #=> String
4908
4913
  # resp.protected_job.create_time #=> Time
4909
4914
  # resp.protected_job.job_parameters.analysis_template_arn #=> String
4915
+ # resp.protected_job.job_parameters.parameters #=> Hash
4916
+ # resp.protected_job.job_parameters.parameters["JobParameterName"] #=> String
4910
4917
  # resp.protected_job.status #=> String, one of "SUBMITTED", "STARTED", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS"
4911
4918
  # resp.protected_job.result_configuration.output_configuration.s3.bucket #=> String
4912
4919
  # resp.protected_job.result_configuration.output_configuration.s3.key_prefix #=> String
@@ -6068,6 +6075,8 @@ module Aws::CleanRooms
6068
6075
  # resp.protected_job.membership_arn #=> String
6069
6076
  # resp.protected_job.create_time #=> Time
6070
6077
  # resp.protected_job.job_parameters.analysis_template_arn #=> String
6078
+ # resp.protected_job.job_parameters.parameters #=> Hash
6079
+ # resp.protected_job.job_parameters.parameters["JobParameterName"] #=> String
6071
6080
  # resp.protected_job.status #=> String, one of "SUBMITTED", "STARTED", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS"
6072
6081
  # resp.protected_job.result_configuration.output_configuration.s3.bucket #=> String
6073
6082
  # resp.protected_job.result_configuration.output_configuration.s3.key_prefix #=> String
@@ -6185,7 +6194,7 @@ module Aws::CleanRooms
6185
6194
  tracer: tracer
6186
6195
  )
6187
6196
  context[:gem_name] = 'aws-sdk-cleanrooms'
6188
- context[:gem_version] = '1.65.0'
6197
+ context[:gem_version] = '1.66.0'
6189
6198
  Seahorse::Client::Request.new(handlers, context)
6190
6199
  end
6191
6200
 
@@ -352,6 +352,9 @@ module Aws::CleanRooms
352
352
  IdNamespaceType = Shapes::StringShape.new(name: 'IdNamespaceType')
353
353
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
354
354
  JobComputePaymentConfig = Shapes::StructureShape.new(name: 'JobComputePaymentConfig')
355
+ JobParameterMap = Shapes::MapShape.new(name: 'JobParameterMap')
356
+ JobParameterName = Shapes::StringShape.new(name: 'JobParameterName')
357
+ JobParameterValue = Shapes::StringShape.new(name: 'JobParameterValue')
355
358
  JobType = Shapes::StringShape.new(name: 'JobType')
356
359
  JoinOperator = Shapes::StringShape.new(name: 'JoinOperator')
357
360
  JoinOperatorsList = Shapes::ListShape.new(name: 'JoinOperatorsList')
@@ -1884,6 +1887,9 @@ module Aws::CleanRooms
1884
1887
  JobComputePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
1885
1888
  JobComputePaymentConfig.struct_class = Types::JobComputePaymentConfig
1886
1889
 
1890
+ JobParameterMap.key = Shapes::ShapeRef.new(shape: JobParameterName)
1891
+ JobParameterMap.value = Shapes::ShapeRef.new(shape: JobParameterValue)
1892
+
1887
1893
  JoinOperatorsList.member = Shapes::ShapeRef.new(shape: JoinOperator)
1888
1894
 
1889
1895
  ListAnalysisTemplatesInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
@@ -2381,6 +2387,7 @@ module Aws::CleanRooms
2381
2387
  ProtectedJobOutputConfigurationOutput.struct_class = Types::ProtectedJobOutputConfigurationOutput
2382
2388
 
2383
2389
  ProtectedJobParameters.add_member(:analysis_template_arn, Shapes::ShapeRef.new(shape: AnalysisTemplateArn, required: true, location_name: "analysisTemplateArn"))
2390
+ ProtectedJobParameters.add_member(:parameters, Shapes::ShapeRef.new(shape: JobParameterMap, location_name: "parameters"))
2384
2391
  ProtectedJobParameters.struct_class = Types::ProtectedJobParameters
2385
2392
 
2386
2393
  ProtectedJobReceiverAccountIds.member = Shapes::ShapeRef.new(shape: AccountId)
@@ -240,9 +240,8 @@ module Aws::CleanRooms
240
240
  # literal data value in an analysis template.
241
241
  #
242
242
  # @!attribute [rw] name
243
- # The name of the parameter. The name must use only alphanumeric,
244
- # underscore (\_), or hyphen (-) characters but cannot start or end
245
- # with a hyphen.
243
+ # The name of the parameter. The name must use only alphanumeric or
244
+ # underscore (\_) characters.
246
245
  # @return [String]
247
246
  #
248
247
  # @!attribute [rw] type
@@ -8131,11 +8130,18 @@ module Aws::CleanRooms
8131
8130
  # The ARN of the analysis template.
8132
8131
  # @return [String]
8133
8132
  #
8133
+ # @!attribute [rw] parameters
8134
+ # Runtime configuration values passed to the PySpark analysis script.
8135
+ # Parameter names and types must match those defined in the analysis
8136
+ # template.
8137
+ # @return [Hash<String,String>]
8138
+ #
8134
8139
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJobParameters AWS API Documentation
8135
8140
  #
8136
8141
  class ProtectedJobParameters < Struct.new(
8137
- :analysis_template_arn)
8138
- SENSITIVE = []
8142
+ :analysis_template_arn,
8143
+ :parameters)
8144
+ SENSITIVE = [:parameters]
8139
8145
  include Aws::Structure
8140
8146
  end
8141
8147
 
@@ -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.65.0'
58
+ GEM_VERSION = '1.66.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1211,7 +1211,8 @@ module Aws
1211
1211
  type: ("PYSPARK"),
1212
1212
  membership_identifier: ::String,
1213
1213
  job_parameters: {
1214
- analysis_template_arn: ::String
1214
+ analysis_template_arn: ::String,
1215
+ parameters: Hash[::String, ::String]?
1215
1216
  },
1216
1217
  ?result_configuration: {
1217
1218
  output_configuration: {
data/sig/types.rbs CHANGED
@@ -2275,7 +2275,8 @@ module Aws::CleanRooms
2275
2275
 
2276
2276
  class ProtectedJobParameters
2277
2277
  attr_accessor analysis_template_arn: ::String
2278
- SENSITIVE: []
2278
+ attr_accessor parameters: ::Hash[::String, ::String]
2279
+ SENSITIVE: [:parameters]
2279
2280
  end
2280
2281
 
2281
2282
  class ProtectedJobReceiverConfiguration
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.65.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services