aws-sdk-cleanrooms 1.50.0 → 1.52.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 +17 -1
- data/lib/aws-sdk-cleanrooms/client_api.rb +8 -0
- data/lib/aws-sdk-cleanrooms/types.rb +55 -3
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +8 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09b9458d0c95aff6685f7d3606259ecfa864024b72471e85ce25cd0a0f301ed5'
|
4
|
+
data.tar.gz: 91691fc422f3dc0af849b302e9d8e1bee998230ca80056184afb16a44f32b270
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c879dae2295c00b87553a5cbc3de05105b0544e2b643befaa69db4994125426e5acbab63deaa868f98847a227cef236c31901c77aab6921ec353c2111a86f97e
|
7
|
+
data.tar.gz: cab8d4dd7e979043ce9fb586b5ce1567ee1e498d9933cb7a538442592ae03e73d5a74e2de8404cfc6747d314e26ff32bbec29cf33832f3a34af07e33f11bfea2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.52.0 (2025-08-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Remove incorrect endpoint tests
|
8
|
+
|
9
|
+
1.51.0 (2025-08-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Support error message configuration for analysis templates
|
13
|
+
|
4
14
|
1.50.0 (2025-08-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.0
|
@@ -533,6 +533,7 @@ module Aws::CleanRooms
|
|
533
533
|
# resp.collaboration_analysis_templates[0].validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
534
534
|
# resp.collaboration_analysis_templates[0].validations[0].reasons #=> Array
|
535
535
|
# resp.collaboration_analysis_templates[0].validations[0].reasons[0].message #=> String
|
536
|
+
# resp.collaboration_analysis_templates[0].error_message_configuration.type #=> String, one of "DETAILED"
|
536
537
|
# resp.errors #=> Array
|
537
538
|
# resp.errors[0].arn #=> String
|
538
539
|
# resp.errors[0].code #=> String
|
@@ -793,6 +794,14 @@ module Aws::CleanRooms
|
|
793
794
|
# @option params [Types::AnalysisSchema] :schema
|
794
795
|
# A relation within an analysis.
|
795
796
|
#
|
797
|
+
# @option params [Types::ErrorMessageConfiguration] :error_message_configuration
|
798
|
+
# The configuration that specifies the level of detail in error messages
|
799
|
+
# returned by analyses using this template. When set to `DETAILED`,
|
800
|
+
# error messages include more information to help troubleshoot issues
|
801
|
+
# with PySpark jobs. Detailed error messages may expose underlying data,
|
802
|
+
# including sensitive information. Recommended for faster
|
803
|
+
# troubleshooting in development and testing environments.
|
804
|
+
#
|
796
805
|
# @return [Types::CreateAnalysisTemplateOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
797
806
|
#
|
798
807
|
# * {Types::CreateAnalysisTemplateOutput#analysis_template #analysis_template} => Types::AnalysisTemplate
|
@@ -837,6 +846,9 @@ module Aws::CleanRooms
|
|
837
846
|
# schema: {
|
838
847
|
# referenced_tables: ["TableAlias"],
|
839
848
|
# },
|
849
|
+
# error_message_configuration: {
|
850
|
+
# type: "DETAILED", # required, accepts DETAILED
|
851
|
+
# },
|
840
852
|
# })
|
841
853
|
#
|
842
854
|
# @example Response structure
|
@@ -873,6 +885,7 @@ module Aws::CleanRooms
|
|
873
885
|
# resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
874
886
|
# resp.analysis_template.validations[0].reasons #=> Array
|
875
887
|
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
888
|
+
# resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
876
889
|
#
|
877
890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplate AWS API Documentation
|
878
891
|
#
|
@@ -2249,6 +2262,7 @@ module Aws::CleanRooms
|
|
2249
2262
|
# resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
2250
2263
|
# resp.analysis_template.validations[0].reasons #=> Array
|
2251
2264
|
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
2265
|
+
# resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
2252
2266
|
#
|
2253
2267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetAnalysisTemplate AWS API Documentation
|
2254
2268
|
#
|
@@ -2358,6 +2372,7 @@ module Aws::CleanRooms
|
|
2358
2372
|
# resp.collaboration_analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
2359
2373
|
# resp.collaboration_analysis_template.validations[0].reasons #=> Array
|
2360
2374
|
# resp.collaboration_analysis_template.validations[0].reasons[0].message #=> String
|
2375
|
+
# resp.collaboration_analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
2361
2376
|
#
|
2362
2377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationAnalysisTemplate AWS API Documentation
|
2363
2378
|
#
|
@@ -4760,6 +4775,7 @@ module Aws::CleanRooms
|
|
4760
4775
|
# resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
|
4761
4776
|
# resp.analysis_template.validations[0].reasons #=> Array
|
4762
4777
|
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
4778
|
+
# resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
4763
4779
|
#
|
4764
4780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateAnalysisTemplate AWS API Documentation
|
4765
4781
|
#
|
@@ -5672,7 +5688,7 @@ module Aws::CleanRooms
|
|
5672
5688
|
tracer: tracer
|
5673
5689
|
)
|
5674
5690
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
5675
|
-
context[:gem_version] = '1.
|
5691
|
+
context[:gem_version] = '1.52.0'
|
5676
5692
|
Seahorse::Client::Request.new(handlers, context)
|
5677
5693
|
end
|
5678
5694
|
|
@@ -240,6 +240,8 @@ module Aws::CleanRooms
|
|
240
240
|
Document = Shapes::DocumentShape.new(name: 'Document', document: true)
|
241
241
|
Double = Shapes::FloatShape.new(name: 'Double')
|
242
242
|
Epsilon = Shapes::IntegerShape.new(name: 'Epsilon')
|
243
|
+
ErrorMessageConfiguration = Shapes::StructureShape.new(name: 'ErrorMessageConfiguration')
|
244
|
+
ErrorMessageType = Shapes::StringShape.new(name: 'ErrorMessageType')
|
243
245
|
FilterableMemberStatus = Shapes::StringShape.new(name: 'FilterableMemberStatus')
|
244
246
|
Float = Shapes::FloatShape.new(name: 'Float')
|
245
247
|
GenericResourceName = Shapes::StringShape.new(name: 'GenericResourceName')
|
@@ -703,6 +705,7 @@ module Aws::CleanRooms
|
|
703
705
|
AnalysisTemplate.add_member(:source_metadata, Shapes::ShapeRef.new(shape: AnalysisSourceMetadata, location_name: "sourceMetadata"))
|
704
706
|
AnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
705
707
|
AnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
|
708
|
+
AnalysisTemplate.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
|
706
709
|
AnalysisTemplate.struct_class = Types::AnalysisTemplate
|
707
710
|
|
708
711
|
AnalysisTemplateArnList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateArn)
|
@@ -837,6 +840,7 @@ module Aws::CleanRooms
|
|
837
840
|
CollaborationAnalysisTemplate.add_member(:source_metadata, Shapes::ShapeRef.new(shape: AnalysisSourceMetadata, location_name: "sourceMetadata"))
|
838
841
|
CollaborationAnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
839
842
|
CollaborationAnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
|
843
|
+
CollaborationAnalysisTemplate.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
|
840
844
|
CollaborationAnalysisTemplate.struct_class = Types::CollaborationAnalysisTemplate
|
841
845
|
|
842
846
|
CollaborationAnalysisTemplateList.member = Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplate)
|
@@ -1192,6 +1196,7 @@ module Aws::CleanRooms
|
|
1192
1196
|
CreateAnalysisTemplateInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1193
1197
|
CreateAnalysisTemplateInput.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
1194
1198
|
CreateAnalysisTemplateInput.add_member(:schema, Shapes::ShapeRef.new(shape: AnalysisSchema, location_name: "schema"))
|
1199
|
+
CreateAnalysisTemplateInput.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
|
1195
1200
|
CreateAnalysisTemplateInput.struct_class = Types::CreateAnalysisTemplateInput
|
1196
1201
|
|
1197
1202
|
CreateAnalysisTemplateOutput.add_member(:analysis_template, Shapes::ShapeRef.new(shape: AnalysisTemplate, required: true, location_name: "analysisTemplate"))
|
@@ -1446,6 +1451,9 @@ module Aws::CleanRooms
|
|
1446
1451
|
DirectAnalysisConfigurationDetails.add_member(:receiver_account_ids, Shapes::ShapeRef.new(shape: ReceiverAccountIds, location_name: "receiverAccountIds"))
|
1447
1452
|
DirectAnalysisConfigurationDetails.struct_class = Types::DirectAnalysisConfigurationDetails
|
1448
1453
|
|
1454
|
+
ErrorMessageConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: ErrorMessageType, required: true, location_name: "type"))
|
1455
|
+
ErrorMessageConfiguration.struct_class = Types::ErrorMessageConfiguration
|
1456
|
+
|
1449
1457
|
GetAnalysisTemplateInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
|
1450
1458
|
GetAnalysisTemplateInput.add_member(:analysis_template_identifier, Shapes::ShapeRef.new(shape: AnalysisTemplateIdentifier, required: true, location: "uri", location_name: "analysisTemplateIdentifier"))
|
1451
1459
|
GetAnalysisTemplateInput.struct_class = Types::GetAnalysisTemplateInput
|
@@ -521,6 +521,15 @@ module Aws::CleanRooms
|
|
521
521
|
# template.
|
522
522
|
# @return [Array<Types::AnalysisTemplateValidationStatusDetail>]
|
523
523
|
#
|
524
|
+
# @!attribute [rw] error_message_configuration
|
525
|
+
# The configuration that specifies the level of detail in error
|
526
|
+
# messages returned by analyses using this template. When set to
|
527
|
+
# `DETAILED`, error messages include more information to help
|
528
|
+
# troubleshoot issues with PySpark jobs. Detailed error messages may
|
529
|
+
# expose underlying data, including sensitive information. Recommended
|
530
|
+
# for faster troubleshooting in development and testing environments.
|
531
|
+
# @return [Types::ErrorMessageConfiguration]
|
532
|
+
#
|
524
533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisTemplate AWS API Documentation
|
525
534
|
#
|
526
535
|
class AnalysisTemplate < Struct.new(
|
@@ -539,7 +548,8 @@ module Aws::CleanRooms
|
|
539
548
|
:source,
|
540
549
|
:source_metadata,
|
541
550
|
:analysis_parameters,
|
542
|
-
:validations
|
551
|
+
:validations,
|
552
|
+
:error_message_configuration)
|
543
553
|
SENSITIVE = [:analysis_parameters]
|
544
554
|
include Aws::Structure
|
545
555
|
end
|
@@ -1136,6 +1146,15 @@ module Aws::CleanRooms
|
|
1136
1146
|
# The validations that were performed.
|
1137
1147
|
# @return [Array<Types::AnalysisTemplateValidationStatusDetail>]
|
1138
1148
|
#
|
1149
|
+
# @!attribute [rw] error_message_configuration
|
1150
|
+
# The configuration that specifies the level of detail in error
|
1151
|
+
# messages returned by analyses using this template. When set to
|
1152
|
+
# `DETAILED`, error messages include more information to help
|
1153
|
+
# troubleshoot issues with PySpark jobs. Detailed error messages may
|
1154
|
+
# expose underlying data, including sensitive information. Recommended
|
1155
|
+
# for faster troubleshooting in development and testing environments.
|
1156
|
+
# @return [Types::ErrorMessageConfiguration]
|
1157
|
+
#
|
1139
1158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationAnalysisTemplate AWS API Documentation
|
1140
1159
|
#
|
1141
1160
|
class CollaborationAnalysisTemplate < Struct.new(
|
@@ -1153,7 +1172,8 @@ module Aws::CleanRooms
|
|
1153
1172
|
:source,
|
1154
1173
|
:source_metadata,
|
1155
1174
|
:analysis_parameters,
|
1156
|
-
:validations
|
1175
|
+
:validations,
|
1176
|
+
:error_message_configuration)
|
1157
1177
|
SENSITIVE = [:analysis_parameters]
|
1158
1178
|
include Aws::Structure
|
1159
1179
|
end
|
@@ -2794,6 +2814,15 @@ module Aws::CleanRooms
|
|
2794
2814
|
# A relation within an analysis.
|
2795
2815
|
# @return [Types::AnalysisSchema]
|
2796
2816
|
#
|
2817
|
+
# @!attribute [rw] error_message_configuration
|
2818
|
+
# The configuration that specifies the level of detail in error
|
2819
|
+
# messages returned by analyses using this template. When set to
|
2820
|
+
# `DETAILED`, error messages include more information to help
|
2821
|
+
# troubleshoot issues with PySpark jobs. Detailed error messages may
|
2822
|
+
# expose underlying data, including sensitive information. Recommended
|
2823
|
+
# for faster troubleshooting in development and testing environments.
|
2824
|
+
# @return [Types::ErrorMessageConfiguration]
|
2825
|
+
#
|
2797
2826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplateInput AWS API Documentation
|
2798
2827
|
#
|
2799
2828
|
class CreateAnalysisTemplateInput < Struct.new(
|
@@ -2804,7 +2833,8 @@ module Aws::CleanRooms
|
|
2804
2833
|
:source,
|
2805
2834
|
:tags,
|
2806
2835
|
:analysis_parameters,
|
2807
|
-
:schema
|
2836
|
+
:schema,
|
2837
|
+
:error_message_configuration)
|
2808
2838
|
SENSITIVE = [:analysis_parameters]
|
2809
2839
|
include Aws::Structure
|
2810
2840
|
end
|
@@ -4005,6 +4035,28 @@ module Aws::CleanRooms
|
|
4005
4035
|
include Aws::Structure
|
4006
4036
|
end
|
4007
4037
|
|
4038
|
+
# A structure that defines the level of detail included in error
|
4039
|
+
# messages returned by PySpark jobs. This configuration allows you to
|
4040
|
+
# control the verbosity of error messages to help with troubleshooting
|
4041
|
+
# PySpark jobs while maintaining appropriate security controls.
|
4042
|
+
#
|
4043
|
+
# @!attribute [rw] type
|
4044
|
+
# The level of detail for error messages returned by the PySpark job.
|
4045
|
+
# When set to DETAILED, error messages include more information to
|
4046
|
+
# help troubleshoot issues with your PySpark job.
|
4047
|
+
#
|
4048
|
+
# Because this setting may expose sensitive data, it is recommended
|
4049
|
+
# for development and testing environments.
|
4050
|
+
# @return [String]
|
4051
|
+
#
|
4052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ErrorMessageConfiguration AWS API Documentation
|
4053
|
+
#
|
4054
|
+
class ErrorMessageConfiguration < Struct.new(
|
4055
|
+
:type)
|
4056
|
+
SENSITIVE = []
|
4057
|
+
include Aws::Structure
|
4058
|
+
end
|
4059
|
+
|
4008
4060
|
# @!attribute [rw] membership_identifier
|
4009
4061
|
# The identifier for a membership resource.
|
4010
4062
|
# @return [String]
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -159,6 +159,9 @@ module Aws
|
|
159
159
|
],
|
160
160
|
?schema: {
|
161
161
|
referenced_tables: Array[::String]?
|
162
|
+
},
|
163
|
+
?error_message_configuration: {
|
164
|
+
type: ("DETAILED")
|
162
165
|
}
|
163
166
|
) -> _CreateAnalysisTemplateResponseSuccess
|
164
167
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnalysisTemplateResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -160,6 +160,7 @@ module Aws::CleanRooms
|
|
160
160
|
attr_accessor source_metadata: Types::AnalysisSourceMetadata
|
161
161
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
162
162
|
attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
|
163
|
+
attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
|
163
164
|
SENSITIVE: []
|
164
165
|
end
|
165
166
|
|
@@ -318,6 +319,7 @@ module Aws::CleanRooms
|
|
318
319
|
attr_accessor source_metadata: Types::AnalysisSourceMetadata
|
319
320
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
320
321
|
attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
|
322
|
+
attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
|
321
323
|
SENSITIVE: []
|
322
324
|
end
|
323
325
|
|
@@ -737,6 +739,7 @@ module Aws::CleanRooms
|
|
737
739
|
attr_accessor tags: ::Hash[::String, ::String]
|
738
740
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
739
741
|
attr_accessor schema: Types::AnalysisSchema
|
742
|
+
attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
|
740
743
|
SENSITIVE: []
|
741
744
|
end
|
742
745
|
|
@@ -1088,6 +1091,11 @@ module Aws::CleanRooms
|
|
1088
1091
|
SENSITIVE: []
|
1089
1092
|
end
|
1090
1093
|
|
1094
|
+
class ErrorMessageConfiguration
|
1095
|
+
attr_accessor type: ("DETAILED")
|
1096
|
+
SENSITIVE: []
|
1097
|
+
end
|
1098
|
+
|
1091
1099
|
class GetAnalysisTemplateInput
|
1092
1100
|
attr_accessor membership_identifier: ::String
|
1093
1101
|
attr_accessor analysis_template_identifier: ::String
|
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.
|
4
|
+
version: 1.52.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.231.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.231.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|