aws-sdk-cleanrooms 1.17.0 → 1.19.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +95 -46
- data/lib/aws-sdk-cleanrooms/client_api.rb +20 -0
- data/lib/aws-sdk-cleanrooms/types.rb +65 -2
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/types.rbs +14 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a258775b3d0704b638816c2bea2ff9ce80f369e2df2634ef2bce33b33e6b28ed
|
4
|
+
data.tar.gz: bb348df564a9b59c7bcd5829715397000887fffa85d306fcf640debb0a114fdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d656828916aefd027011cc7fe3cc22b9178f056bb4ca3ef5964d9e45e95aba40b78296019795f4db76674469d44224904eeae130c86d0e08c4701292535d4db
|
7
|
+
data.tar.gz: 3a350e80a0b54d96cf29c6c36f71e57be9c768b278956263a7fb390d47bb00873eb62844be528e4d957c65b1e9ad193b54347b50ca4fa3cf65d2b67e502ea530
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.19.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.18.0 (2024-04-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Clean Rooms Differential Privacy is now fully available. Differential privacy protects against user-identification attempts.
|
13
|
+
|
4
14
|
1.17.0 (2024-04-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::CleanRooms
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::CleanRooms
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::CleanRooms
|
|
337
346
|
# @option options [Aws::CleanRooms::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CleanRooms::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
365
399
|
#
|
366
|
-
# @option options [
|
367
|
-
#
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
368
402
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
372
405
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
378
|
-
#
|
379
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
380
|
-
# directory that contains the unbundled SSL certificate
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -431,6 +455,11 @@ module Aws::CleanRooms
|
|
431
455
|
# resp.collaboration_analysis_templates[0].analysis_parameters[0].name #=> String
|
432
456
|
# resp.collaboration_analysis_templates[0].analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
|
433
457
|
# resp.collaboration_analysis_templates[0].analysis_parameters[0].default_value #=> String
|
458
|
+
# resp.collaboration_analysis_templates[0].validations #=> Array
|
459
|
+
# resp.collaboration_analysis_templates[0].validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
|
460
|
+
# resp.collaboration_analysis_templates[0].validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
461
|
+
# resp.collaboration_analysis_templates[0].validations[0].reasons #=> Array
|
462
|
+
# resp.collaboration_analysis_templates[0].validations[0].reasons[0].message #=> String
|
434
463
|
# resp.errors #=> Array
|
435
464
|
# resp.errors[0].arn #=> String
|
436
465
|
# resp.errors[0].code #=> String
|
@@ -659,6 +688,11 @@ module Aws::CleanRooms
|
|
659
688
|
# resp.analysis_template.analysis_parameters[0].name #=> String
|
660
689
|
# resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
|
661
690
|
# resp.analysis_template.analysis_parameters[0].default_value #=> String
|
691
|
+
# resp.analysis_template.validations #=> Array
|
692
|
+
# resp.analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
|
693
|
+
# resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
694
|
+
# resp.analysis_template.validations[0].reasons #=> Array
|
695
|
+
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
662
696
|
#
|
663
697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplate AWS API Documentation
|
664
698
|
#
|
@@ -1551,6 +1585,11 @@ module Aws::CleanRooms
|
|
1551
1585
|
# resp.analysis_template.analysis_parameters[0].name #=> String
|
1552
1586
|
# resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
|
1553
1587
|
# resp.analysis_template.analysis_parameters[0].default_value #=> String
|
1588
|
+
# resp.analysis_template.validations #=> Array
|
1589
|
+
# resp.analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
|
1590
|
+
# resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
1591
|
+
# resp.analysis_template.validations[0].reasons #=> Array
|
1592
|
+
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
1554
1593
|
#
|
1555
1594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetAnalysisTemplate AWS API Documentation
|
1556
1595
|
#
|
@@ -1644,6 +1683,11 @@ module Aws::CleanRooms
|
|
1644
1683
|
# resp.collaboration_analysis_template.analysis_parameters[0].name #=> String
|
1645
1684
|
# resp.collaboration_analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
|
1646
1685
|
# resp.collaboration_analysis_template.analysis_parameters[0].default_value #=> String
|
1686
|
+
# resp.collaboration_analysis_template.validations #=> Array
|
1687
|
+
# resp.collaboration_analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
|
1688
|
+
# resp.collaboration_analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
1689
|
+
# resp.collaboration_analysis_template.validations[0].reasons #=> Array
|
1690
|
+
# resp.collaboration_analysis_template.validations[0].reasons[0].message #=> String
|
1647
1691
|
#
|
1648
1692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationAnalysisTemplate AWS API Documentation
|
1649
1693
|
#
|
@@ -3266,6 +3310,11 @@ module Aws::CleanRooms
|
|
3266
3310
|
# resp.analysis_template.analysis_parameters[0].name #=> String
|
3267
3311
|
# resp.analysis_template.analysis_parameters[0].type #=> String, one of "SMALLINT", "INTEGER", "BIGINT", "DECIMAL", "REAL", "DOUBLE_PRECISION", "BOOLEAN", "CHAR", "VARCHAR", "DATE", "TIMESTAMP", "TIMESTAMPTZ", "TIME", "TIMETZ", "VARBYTE"
|
3268
3312
|
# resp.analysis_template.analysis_parameters[0].default_value #=> String
|
3313
|
+
# resp.analysis_template.validations #=> Array
|
3314
|
+
# resp.analysis_template.validations[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
|
3315
|
+
# resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
3316
|
+
# resp.analysis_template.validations[0].reasons #=> Array
|
3317
|
+
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
3269
3318
|
#
|
3270
3319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateAnalysisTemplate AWS API Documentation
|
3271
3320
|
#
|
@@ -3793,7 +3842,7 @@ module Aws::CleanRooms
|
|
3793
3842
|
params: params,
|
3794
3843
|
config: config)
|
3795
3844
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
3796
|
-
context[:gem_version] = '1.
|
3845
|
+
context[:gem_version] = '1.19.0'
|
3797
3846
|
Seahorse::Client::Request.new(handlers, context)
|
3798
3847
|
end
|
3799
3848
|
|
@@ -52,6 +52,12 @@ module Aws::CleanRooms
|
|
52
52
|
AnalysisTemplateSummary = Shapes::StructureShape.new(name: 'AnalysisTemplateSummary')
|
53
53
|
AnalysisTemplateSummaryList = Shapes::ListShape.new(name: 'AnalysisTemplateSummaryList')
|
54
54
|
AnalysisTemplateText = Shapes::StringShape.new(name: 'AnalysisTemplateText')
|
55
|
+
AnalysisTemplateValidationStatus = Shapes::StringShape.new(name: 'AnalysisTemplateValidationStatus')
|
56
|
+
AnalysisTemplateValidationStatusDetail = Shapes::StructureShape.new(name: 'AnalysisTemplateValidationStatusDetail')
|
57
|
+
AnalysisTemplateValidationStatusDetailList = Shapes::ListShape.new(name: 'AnalysisTemplateValidationStatusDetailList')
|
58
|
+
AnalysisTemplateValidationStatusReason = Shapes::StructureShape.new(name: 'AnalysisTemplateValidationStatusReason')
|
59
|
+
AnalysisTemplateValidationStatusReasonList = Shapes::ListShape.new(name: 'AnalysisTemplateValidationStatusReasonList')
|
60
|
+
AnalysisTemplateValidationType = Shapes::StringShape.new(name: 'AnalysisTemplateValidationType')
|
55
61
|
BatchGetCollaborationAnalysisTemplateError = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateError')
|
56
62
|
BatchGetCollaborationAnalysisTemplateErrorList = Shapes::ListShape.new(name: 'BatchGetCollaborationAnalysisTemplateErrorList')
|
57
63
|
BatchGetCollaborationAnalysisTemplateInput = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateInput')
|
@@ -480,6 +486,7 @@ module Aws::CleanRooms
|
|
480
486
|
AnalysisTemplate.add_member(:format, Shapes::ShapeRef.new(shape: AnalysisFormat, required: true, location_name: "format"))
|
481
487
|
AnalysisTemplate.add_member(:source, Shapes::ShapeRef.new(shape: AnalysisSource, required: true, location_name: "source"))
|
482
488
|
AnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
489
|
+
AnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
|
483
490
|
AnalysisTemplate.struct_class = Types::AnalysisTemplate
|
484
491
|
|
485
492
|
AnalysisTemplateArnList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateArn)
|
@@ -498,6 +505,18 @@ module Aws::CleanRooms
|
|
498
505
|
|
499
506
|
AnalysisTemplateSummaryList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateSummary)
|
500
507
|
|
508
|
+
AnalysisTemplateValidationStatusDetail.add_member(:type, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationType, required: true, location_name: "type"))
|
509
|
+
AnalysisTemplateValidationStatusDetail.add_member(:status, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatus, required: true, location_name: "status"))
|
510
|
+
AnalysisTemplateValidationStatusDetail.add_member(:reasons, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusReasonList, location_name: "reasons"))
|
511
|
+
AnalysisTemplateValidationStatusDetail.struct_class = Types::AnalysisTemplateValidationStatusDetail
|
512
|
+
|
513
|
+
AnalysisTemplateValidationStatusDetailList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetail)
|
514
|
+
|
515
|
+
AnalysisTemplateValidationStatusReason.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
516
|
+
AnalysisTemplateValidationStatusReason.struct_class = Types::AnalysisTemplateValidationStatusReason
|
517
|
+
|
518
|
+
AnalysisTemplateValidationStatusReasonList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusReason)
|
519
|
+
|
501
520
|
BatchGetCollaborationAnalysisTemplateError.add_member(:arn, Shapes::ShapeRef.new(shape: AnalysisTemplateArn, required: true, location_name: "arn"))
|
502
521
|
BatchGetCollaborationAnalysisTemplateError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
|
503
522
|
BatchGetCollaborationAnalysisTemplateError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
@@ -572,6 +591,7 @@ module Aws::CleanRooms
|
|
572
591
|
CollaborationAnalysisTemplate.add_member(:format, Shapes::ShapeRef.new(shape: AnalysisFormat, required: true, location_name: "format"))
|
573
592
|
CollaborationAnalysisTemplate.add_member(:source, Shapes::ShapeRef.new(shape: AnalysisSource, required: true, location_name: "source"))
|
574
593
|
CollaborationAnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
594
|
+
CollaborationAnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
|
575
595
|
CollaborationAnalysisTemplate.struct_class = Types::CollaborationAnalysisTemplate
|
576
596
|
|
577
597
|
CollaborationAnalysisTemplateList.member = Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplate)
|
@@ -414,6 +414,11 @@ module Aws::CleanRooms
|
|
414
414
|
# The parameters of the analysis template.
|
415
415
|
# @return [Array<Types::AnalysisParameter>]
|
416
416
|
#
|
417
|
+
# @!attribute [rw] validations
|
418
|
+
# Information about the validations performed on the analysis
|
419
|
+
# template.
|
420
|
+
# @return [Array<Types::AnalysisTemplateValidationStatusDetail>]
|
421
|
+
#
|
417
422
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisTemplate AWS API Documentation
|
418
423
|
#
|
419
424
|
class AnalysisTemplate < Struct.new(
|
@@ -430,7 +435,8 @@ module Aws::CleanRooms
|
|
430
435
|
:schema,
|
431
436
|
:format,
|
432
437
|
:source,
|
433
|
-
:analysis_parameters
|
438
|
+
:analysis_parameters,
|
439
|
+
:validations)
|
434
440
|
SENSITIVE = [:source]
|
435
441
|
include Aws::Structure
|
436
442
|
end
|
@@ -497,6 +503,58 @@ module Aws::CleanRooms
|
|
497
503
|
include Aws::Structure
|
498
504
|
end
|
499
505
|
|
506
|
+
# The status details of the analysis template validation. Clean Rooms
|
507
|
+
# Differential Privacy uses a general-purpose query structure to support
|
508
|
+
# complex SQL queries and validates whether an analysis template fits
|
509
|
+
# that general-purpose query structure. Validation is performed when
|
510
|
+
# analysis templates are created and fetched. Because analysis templates
|
511
|
+
# are immutable by design, we recommend that you create analysis
|
512
|
+
# templates after you associate the configured tables with their
|
513
|
+
# analysis rule to your collaboration.
|
514
|
+
#
|
515
|
+
# For more information, see
|
516
|
+
# [https://docs.aws.amazon.com/clean-rooms/latest/userguide/analysis-rules-custom.html#custom-diff-privacy][1].
|
517
|
+
#
|
518
|
+
#
|
519
|
+
#
|
520
|
+
# [1]: https://docs.aws.amazon.com/clean-rooms/latest/userguide/analysis-rules-custom.html#custom-diff-privacy
|
521
|
+
#
|
522
|
+
# @!attribute [rw] type
|
523
|
+
# The type of validation that was performed.
|
524
|
+
# @return [String]
|
525
|
+
#
|
526
|
+
# @!attribute [rw] status
|
527
|
+
# The status of the validation.
|
528
|
+
# @return [String]
|
529
|
+
#
|
530
|
+
# @!attribute [rw] reasons
|
531
|
+
# The reasons for the validation results.
|
532
|
+
# @return [Array<Types::AnalysisTemplateValidationStatusReason>]
|
533
|
+
#
|
534
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisTemplateValidationStatusDetail AWS API Documentation
|
535
|
+
#
|
536
|
+
class AnalysisTemplateValidationStatusDetail < Struct.new(
|
537
|
+
:type,
|
538
|
+
:status,
|
539
|
+
:reasons)
|
540
|
+
SENSITIVE = []
|
541
|
+
include Aws::Structure
|
542
|
+
end
|
543
|
+
|
544
|
+
# The reasons for the validation results.
|
545
|
+
#
|
546
|
+
# @!attribute [rw] message
|
547
|
+
# The validation message.
|
548
|
+
# @return [String]
|
549
|
+
#
|
550
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisTemplateValidationStatusReason AWS API Documentation
|
551
|
+
#
|
552
|
+
class AnalysisTemplateValidationStatusReason < Struct.new(
|
553
|
+
:message)
|
554
|
+
SENSITIVE = []
|
555
|
+
include Aws::Structure
|
556
|
+
end
|
557
|
+
|
500
558
|
# Details of errors thrown by the call to retrieve multiple analysis
|
501
559
|
# templates within a collaboration by their identifiers.
|
502
560
|
#
|
@@ -824,6 +882,10 @@ module Aws::CleanRooms
|
|
824
882
|
# template.
|
825
883
|
# @return [Array<Types::AnalysisParameter>]
|
826
884
|
#
|
885
|
+
# @!attribute [rw] validations
|
886
|
+
# The validations that were performed.
|
887
|
+
# @return [Array<Types::AnalysisTemplateValidationStatusDetail>]
|
888
|
+
#
|
827
889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationAnalysisTemplate AWS API Documentation
|
828
890
|
#
|
829
891
|
class CollaborationAnalysisTemplate < Struct.new(
|
@@ -839,7 +901,8 @@ module Aws::CleanRooms
|
|
839
901
|
:schema,
|
840
902
|
:format,
|
841
903
|
:source,
|
842
|
-
:analysis_parameters
|
904
|
+
:analysis_parameters,
|
905
|
+
:validations)
|
843
906
|
SENSITIVE = [:source]
|
844
907
|
include Aws::Structure
|
845
908
|
end
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -128,6 +128,7 @@ module Aws::CleanRooms
|
|
128
128
|
attr_accessor format: ("SQL")
|
129
129
|
attr_accessor source: Types::AnalysisSource
|
130
130
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
131
|
+
attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
|
131
132
|
SENSITIVE: [:source]
|
132
133
|
end
|
133
134
|
|
@@ -145,6 +146,18 @@ module Aws::CleanRooms
|
|
145
146
|
SENSITIVE: []
|
146
147
|
end
|
147
148
|
|
149
|
+
class AnalysisTemplateValidationStatusDetail
|
150
|
+
attr_accessor type: ("DIFFERENTIAL_PRIVACY")
|
151
|
+
attr_accessor status: ("VALID" | "INVALID" | "UNABLE_TO_VALIDATE")
|
152
|
+
attr_accessor reasons: ::Array[Types::AnalysisTemplateValidationStatusReason]
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class AnalysisTemplateValidationStatusReason
|
157
|
+
attr_accessor message: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
148
161
|
class BatchGetCollaborationAnalysisTemplateError
|
149
162
|
attr_accessor arn: ::String
|
150
163
|
attr_accessor code: ::String
|
@@ -234,6 +247,7 @@ module Aws::CleanRooms
|
|
234
247
|
attr_accessor format: ("SQL")
|
235
248
|
attr_accessor source: Types::AnalysisSource
|
236
249
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
250
|
+
attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
|
237
251
|
SENSITIVE: [:source]
|
238
252
|
end
|
239
253
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cleanrooms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.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-04-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|