aws-sdk-cleanroomsml 1.19.0 → 1.20.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: a1ddac2c7e486a0aaaa5745e62640d3e145829db7168b317f23eee5b800e3bea
4
- data.tar.gz: 92807a2f49829446ff4a2d96bf216464adac2af481017aae78eef7e4421a7247
3
+ metadata.gz: 95533f904bcedace4f8fd0b790d2e1040b330710338699611a2fd8f5d00722a7
4
+ data.tar.gz: bed7c7eaa1857023365a18770d91b7c61f37bed997d05a52b18a2eee4685a7f9
5
5
  SHA512:
6
- metadata.gz: bdc14712ed55011879f65bf755e875ef4e9b752790de60ad33b22261edfb6872b36448b20ec9ddd54bf7d3cbb73a157c6bf2cd92e9307561446b9a028af93778
7
- data.tar.gz: 332fdb4a7c76ef652a1448d844f6e3a31aa8a3130133b5e7299ccbe76c775f21e37ceaae67b13919ff709ce5756324c6845f48d31d63c2b3c2e006eee36f0b1d
6
+ metadata.gz: d0d6f0a23398ed934013b161665ecc1bd6697dda5c5e1ded8a80d9e33943908b09274c5048011f07585a3675b7ec2a2920ba54853675118aac888000e7869380
7
+ data.tar.gz: 58bc402d1bae627f17b442523e9683354eb69d6b617c45f0917df13c97fdf09dc8a184aeb745f8338442d25880d63e3c540d1969532b9d2c8a605c4a83c53c60
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2024-12-17)
5
+ ------------------
6
+
7
+ * Feature - Add support for SQL compute configuration for StartAudienceGenerationJob API.
8
+
4
9
  1.19.0 (2024-11-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -1570,6 +1570,8 @@ module Aws::CleanRoomsML
1570
1570
  # resp.seed_audience.sql_parameters.analysis_template_arn #=> String
1571
1571
  # resp.seed_audience.sql_parameters.parameters #=> Hash
1572
1572
  # resp.seed_audience.sql_parameters.parameters["ParameterKey"] #=> String
1573
+ # resp.seed_audience.sql_compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
1574
+ # resp.seed_audience.sql_compute_configuration.worker.number #=> Integer
1573
1575
  # resp.include_seed_in_output #=> Boolean
1574
1576
  # resp.collaboration_id #=> String
1575
1577
  # resp.metrics.relevance_metrics #=> Array
@@ -3400,6 +3402,12 @@ module Aws::CleanRoomsML
3400
3402
  # "ParameterKey" => "ParameterValue",
3401
3403
  # },
3402
3404
  # },
3405
+ # sql_compute_configuration: {
3406
+ # worker: {
3407
+ # type: "CR.1X", # accepts CR.1X, CR.4X
3408
+ # number: 1,
3409
+ # },
3410
+ # },
3403
3411
  # },
3404
3412
  # include_seed_in_output: false,
3405
3413
  # collaboration_id: "UUID",
@@ -3496,7 +3504,7 @@ module Aws::CleanRoomsML
3496
3504
  # inference job.
3497
3505
  #
3498
3506
  # @option params [required, Types::ModelInferenceDataSource] :data_source
3499
- # Defines he data source that is used for the trained model inference
3507
+ # Defines the data source that is used for the trained model inference
3500
3508
  # job.
3501
3509
  #
3502
3510
  # @option params [String] :description
@@ -3767,7 +3775,7 @@ module Aws::CleanRoomsML
3767
3775
  tracer: tracer
3768
3776
  )
3769
3777
  context[:gem_name] = 'aws-sdk-cleanroomsml'
3770
- context[:gem_version] = '1.19.0'
3778
+ context[:gem_version] = '1.20.0'
3771
3779
  Seahorse::Client::Request.new(handlers, context)
3772
3780
  end
3773
3781
 
@@ -336,6 +336,7 @@ module Aws::CleanRoomsML
336
336
  AudienceGenerationJobDataSource.add_member(:data_source, Shapes::ShapeRef.new(shape: S3ConfigMap, location_name: "dataSource"))
337
337
  AudienceGenerationJobDataSource.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "roleArn"))
338
338
  AudienceGenerationJobDataSource.add_member(:sql_parameters, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParameters, location_name: "sqlParameters"))
339
+ AudienceGenerationJobDataSource.add_member(:sql_compute_configuration, Shapes::ShapeRef.new(shape: ComputeConfiguration, location_name: "sqlComputeConfiguration"))
339
340
  AudienceGenerationJobDataSource.struct_class = Types::AudienceGenerationJobDataSource
340
341
 
341
342
  AudienceGenerationJobList.member = Shapes::ShapeRef.new(shape: AudienceGenerationJobSummary)
@@ -117,12 +117,18 @@ module Aws::CleanRoomsML
117
117
  # The protected SQL query parameters.
118
118
  # @return [Types::ProtectedQuerySQLParameters]
119
119
  #
120
+ # @!attribute [rw] sql_compute_configuration
121
+ # Provides configuration information for the instances that will
122
+ # perform the compute work.
123
+ # @return [Types::ComputeConfiguration]
124
+ #
120
125
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/AudienceGenerationJobDataSource AWS API Documentation
121
126
  #
122
127
  class AudienceGenerationJobDataSource < Struct.new(
123
128
  :data_source,
124
129
  :role_arn,
125
- :sql_parameters)
130
+ :sql_parameters,
131
+ :sql_compute_configuration)
126
132
  SENSITIVE = [:sql_parameters]
127
133
  include Aws::Structure
128
134
  end
@@ -4676,7 +4682,7 @@ module Aws::CleanRoomsML
4676
4682
  # @return [Types::InferenceOutputConfiguration]
4677
4683
  #
4678
4684
  # @!attribute [rw] data_source
4679
- # Defines he data source that is used for the trained model inference
4685
+ # Defines the data source that is used for the trained model inference
4680
4686
  # job.
4681
4687
  # @return [Types::ModelInferenceDataSource]
4682
4688
  #
@@ -55,7 +55,7 @@ module Aws::CleanRoomsML
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanroomsml/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanroomsml/endpoints'
57
57
 
58
- GEM_VERSION = '1.19.0'
58
+ GEM_VERSION = '1.20.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -944,6 +944,12 @@ module Aws
944
944
  query_string: ::String?,
945
945
  analysis_template_arn: ::String?,
946
946
  parameters: Hash[::String, ::String]?
947
+ }?,
948
+ sql_compute_configuration: {
949
+ worker: {
950
+ type: ("CR.1X" | "CR.4X")?,
951
+ number: ::Integer?
952
+ }?
947
953
  }?
948
954
  },
949
955
  ?include_seed_in_output: bool,
data/sig/types.rbs CHANGED
@@ -35,6 +35,7 @@ module Aws::CleanRoomsML
35
35
  attr_accessor data_source: Types::S3ConfigMap
36
36
  attr_accessor role_arn: ::String
37
37
  attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
38
+ attr_accessor sql_compute_configuration: Types::ComputeConfiguration
38
39
  SENSITIVE: [:sql_parameters]
39
40
  end
40
41
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanroomsml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.20.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-07 00:00:00.000000000 Z
11
+ date: 2024-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core