aws-sdk-cleanrooms 1.24.0 → 1.26.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 +783 -80
- data/lib/aws-sdk-cleanrooms/client_api.rb +511 -1
- data/lib/aws-sdk-cleanrooms/endpoints.rb +182 -0
- data/lib/aws-sdk-cleanrooms/plugins/endpoints.rb +26 -0
- data/lib/aws-sdk-cleanrooms/types.rb +1338 -145
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +173 -3
- data/sig/types.rbs +348 -12
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -36,7 +36,7 @@ module Aws::CleanRooms
|
|
36
36
|
|
37
37
|
class AnalysisRule
|
38
38
|
attr_accessor collaboration_id: ::String
|
39
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
39
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
40
40
|
attr_accessor name: ::String
|
41
41
|
attr_accessor create_time: ::Time
|
42
42
|
attr_accessor update_time: ::Time
|
@@ -62,6 +62,13 @@ module Aws::CleanRooms
|
|
62
62
|
SENSITIVE: []
|
63
63
|
end
|
64
64
|
|
65
|
+
class AnalysisRuleIdMappingTable
|
66
|
+
attr_accessor join_columns: ::Array[::String]
|
67
|
+
attr_accessor query_constraints: ::Array[Types::QueryConstraint]
|
68
|
+
attr_accessor dimension_columns: ::Array[::String]
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
65
72
|
class AnalysisRuleList
|
66
73
|
attr_accessor join_columns: ::Array[::String]
|
67
74
|
attr_accessor allowed_join_operators: ::Array[("OR" | "AND")]
|
@@ -84,6 +91,7 @@ module Aws::CleanRooms
|
|
84
91
|
attr_accessor list: Types::AnalysisRuleList
|
85
92
|
attr_accessor aggregation: Types::AnalysisRuleAggregation
|
86
93
|
attr_accessor custom: Types::AnalysisRuleCustom
|
94
|
+
attr_accessor id_mapping_table: Types::AnalysisRuleIdMappingTable
|
87
95
|
attr_accessor unknown: untyped
|
88
96
|
SENSITIVE: []
|
89
97
|
|
@@ -93,6 +101,8 @@ module Aws::CleanRooms
|
|
93
101
|
end
|
94
102
|
class Custom < AnalysisRulePolicyV1
|
95
103
|
end
|
104
|
+
class IdMappingTable < AnalysisRulePolicyV1
|
105
|
+
end
|
96
106
|
class Unknown < AnalysisRulePolicyV1
|
97
107
|
end
|
98
108
|
end
|
@@ -179,7 +189,7 @@ module Aws::CleanRooms
|
|
179
189
|
|
180
190
|
class BatchGetSchemaAnalysisRuleError
|
181
191
|
attr_accessor name: ::String
|
182
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
192
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
183
193
|
attr_accessor code: ::String
|
184
194
|
attr_accessor message: ::String
|
185
195
|
SENSITIVE: []
|
@@ -291,6 +301,37 @@ module Aws::CleanRooms
|
|
291
301
|
SENSITIVE: []
|
292
302
|
end
|
293
303
|
|
304
|
+
class CollaborationIdNamespaceAssociation
|
305
|
+
attr_accessor id: ::String
|
306
|
+
attr_accessor arn: ::String
|
307
|
+
attr_accessor collaboration_id: ::String
|
308
|
+
attr_accessor collaboration_arn: ::String
|
309
|
+
attr_accessor name: ::String
|
310
|
+
attr_accessor description: ::String
|
311
|
+
attr_accessor creator_account_id: ::String
|
312
|
+
attr_accessor create_time: ::Time
|
313
|
+
attr_accessor update_time: ::Time
|
314
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
315
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferenceProperties
|
316
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class CollaborationIdNamespaceAssociationSummary
|
321
|
+
attr_accessor arn: ::String
|
322
|
+
attr_accessor create_time: ::Time
|
323
|
+
attr_accessor id: ::String
|
324
|
+
attr_accessor update_time: ::Time
|
325
|
+
attr_accessor collaboration_arn: ::String
|
326
|
+
attr_accessor collaboration_id: ::String
|
327
|
+
attr_accessor creator_account_id: ::String
|
328
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
329
|
+
attr_accessor name: ::String
|
330
|
+
attr_accessor description: ::String
|
331
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferencePropertiesSummary
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
294
335
|
class CollaborationPrivacyBudgetSummary
|
295
336
|
attr_accessor id: ::String
|
296
337
|
attr_accessor privacy_budget_template_id: ::String
|
@@ -571,6 +612,36 @@ module Aws::CleanRooms
|
|
571
612
|
SENSITIVE: []
|
572
613
|
end
|
573
614
|
|
615
|
+
class CreateIdMappingTableInput
|
616
|
+
attr_accessor membership_identifier: ::String
|
617
|
+
attr_accessor name: ::String
|
618
|
+
attr_accessor description: ::String
|
619
|
+
attr_accessor input_reference_config: Types::IdMappingTableInputReferenceConfig
|
620
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
621
|
+
attr_accessor kms_key_arn: ::String
|
622
|
+
SENSITIVE: []
|
623
|
+
end
|
624
|
+
|
625
|
+
class CreateIdMappingTableOutput
|
626
|
+
attr_accessor id_mapping_table: Types::IdMappingTable
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class CreateIdNamespaceAssociationInput
|
631
|
+
attr_accessor membership_identifier: ::String
|
632
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
633
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
634
|
+
attr_accessor name: ::String
|
635
|
+
attr_accessor description: ::String
|
636
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class CreateIdNamespaceAssociationOutput
|
641
|
+
attr_accessor id_namespace_association: Types::IdNamespaceAssociation
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
574
645
|
class CreateMembershipInput
|
575
646
|
attr_accessor collaboration_identifier: ::String
|
576
647
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
@@ -659,6 +730,24 @@ module Aws::CleanRooms
|
|
659
730
|
class DeleteConfiguredTableOutput < Aws::EmptyStructure
|
660
731
|
end
|
661
732
|
|
733
|
+
class DeleteIdMappingTableInput
|
734
|
+
attr_accessor id_mapping_table_identifier: ::String
|
735
|
+
attr_accessor membership_identifier: ::String
|
736
|
+
SENSITIVE: []
|
737
|
+
end
|
738
|
+
|
739
|
+
class DeleteIdMappingTableOutput < Aws::EmptyStructure
|
740
|
+
end
|
741
|
+
|
742
|
+
class DeleteIdNamespaceAssociationInput
|
743
|
+
attr_accessor id_namespace_association_identifier: ::String
|
744
|
+
attr_accessor membership_identifier: ::String
|
745
|
+
SENSITIVE: []
|
746
|
+
end
|
747
|
+
|
748
|
+
class DeleteIdNamespaceAssociationOutput < Aws::EmptyStructure
|
749
|
+
end
|
750
|
+
|
662
751
|
class DeleteMemberInput
|
663
752
|
attr_accessor collaboration_identifier: ::String
|
664
753
|
attr_accessor account_id: ::String
|
@@ -790,6 +879,17 @@ module Aws::CleanRooms
|
|
790
879
|
SENSITIVE: []
|
791
880
|
end
|
792
881
|
|
882
|
+
class GetCollaborationIdNamespaceAssociationInput
|
883
|
+
attr_accessor collaboration_identifier: ::String
|
884
|
+
attr_accessor id_namespace_association_identifier: ::String
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class GetCollaborationIdNamespaceAssociationOutput
|
889
|
+
attr_accessor collaboration_id_namespace_association: Types::CollaborationIdNamespaceAssociation
|
890
|
+
SENSITIVE: []
|
891
|
+
end
|
892
|
+
|
793
893
|
class GetCollaborationInput
|
794
894
|
attr_accessor collaboration_identifier: ::String
|
795
895
|
SENSITIVE: []
|
@@ -854,6 +954,28 @@ module Aws::CleanRooms
|
|
854
954
|
SENSITIVE: []
|
855
955
|
end
|
856
956
|
|
957
|
+
class GetIdMappingTableInput
|
958
|
+
attr_accessor id_mapping_table_identifier: ::String
|
959
|
+
attr_accessor membership_identifier: ::String
|
960
|
+
SENSITIVE: []
|
961
|
+
end
|
962
|
+
|
963
|
+
class GetIdMappingTableOutput
|
964
|
+
attr_accessor id_mapping_table: Types::IdMappingTable
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class GetIdNamespaceAssociationInput
|
969
|
+
attr_accessor id_namespace_association_identifier: ::String
|
970
|
+
attr_accessor membership_identifier: ::String
|
971
|
+
SENSITIVE: []
|
972
|
+
end
|
973
|
+
|
974
|
+
class GetIdNamespaceAssociationOutput
|
975
|
+
attr_accessor id_namespace_association: Types::IdNamespaceAssociation
|
976
|
+
SENSITIVE: []
|
977
|
+
end
|
978
|
+
|
857
979
|
class GetMembershipInput
|
858
980
|
attr_accessor membership_identifier: ::String
|
859
981
|
SENSITIVE: []
|
@@ -889,7 +1011,7 @@ module Aws::CleanRooms
|
|
889
1011
|
class GetSchemaAnalysisRuleInput
|
890
1012
|
attr_accessor collaboration_identifier: ::String
|
891
1013
|
attr_accessor name: ::String
|
892
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1014
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
893
1015
|
SENSITIVE: []
|
894
1016
|
end
|
895
1017
|
|
@@ -915,6 +1037,115 @@ module Aws::CleanRooms
|
|
915
1037
|
SENSITIVE: []
|
916
1038
|
end
|
917
1039
|
|
1040
|
+
class IdMappingConfig
|
1041
|
+
attr_accessor allow_use_as_dimension_column: bool
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class IdMappingTable
|
1046
|
+
attr_accessor id: ::String
|
1047
|
+
attr_accessor arn: ::String
|
1048
|
+
attr_accessor input_reference_config: Types::IdMappingTableInputReferenceConfig
|
1049
|
+
attr_accessor membership_id: ::String
|
1050
|
+
attr_accessor membership_arn: ::String
|
1051
|
+
attr_accessor collaboration_id: ::String
|
1052
|
+
attr_accessor collaboration_arn: ::String
|
1053
|
+
attr_accessor description: ::String
|
1054
|
+
attr_accessor name: ::String
|
1055
|
+
attr_accessor create_time: ::Time
|
1056
|
+
attr_accessor update_time: ::Time
|
1057
|
+
attr_accessor input_reference_properties: Types::IdMappingTableInputReferenceProperties
|
1058
|
+
attr_accessor kms_key_arn: ::String
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class IdMappingTableInputReferenceConfig
|
1063
|
+
attr_accessor input_reference_arn: ::String
|
1064
|
+
attr_accessor manage_resource_policies: bool
|
1065
|
+
SENSITIVE: []
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class IdMappingTableInputReferenceProperties
|
1069
|
+
attr_accessor id_mapping_table_input_source: ::Array[Types::IdMappingTableInputSource]
|
1070
|
+
SENSITIVE: []
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class IdMappingTableInputSource
|
1074
|
+
attr_accessor id_namespace_association_id: ::String
|
1075
|
+
attr_accessor type: ("SOURCE" | "TARGET")
|
1076
|
+
SENSITIVE: []
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
class IdMappingTableSchemaTypeProperties
|
1080
|
+
attr_accessor id_mapping_table_input_source: ::Array[Types::IdMappingTableInputSource]
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class IdMappingTableSummary
|
1085
|
+
attr_accessor collaboration_arn: ::String
|
1086
|
+
attr_accessor collaboration_id: ::String
|
1087
|
+
attr_accessor membership_id: ::String
|
1088
|
+
attr_accessor membership_arn: ::String
|
1089
|
+
attr_accessor create_time: ::Time
|
1090
|
+
attr_accessor update_time: ::Time
|
1091
|
+
attr_accessor id: ::String
|
1092
|
+
attr_accessor arn: ::String
|
1093
|
+
attr_accessor description: ::String
|
1094
|
+
attr_accessor input_reference_config: Types::IdMappingTableInputReferenceConfig
|
1095
|
+
attr_accessor name: ::String
|
1096
|
+
SENSITIVE: []
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class IdNamespaceAssociation
|
1100
|
+
attr_accessor id: ::String
|
1101
|
+
attr_accessor arn: ::String
|
1102
|
+
attr_accessor membership_id: ::String
|
1103
|
+
attr_accessor membership_arn: ::String
|
1104
|
+
attr_accessor collaboration_id: ::String
|
1105
|
+
attr_accessor collaboration_arn: ::String
|
1106
|
+
attr_accessor name: ::String
|
1107
|
+
attr_accessor description: ::String
|
1108
|
+
attr_accessor create_time: ::Time
|
1109
|
+
attr_accessor update_time: ::Time
|
1110
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
1111
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferenceProperties
|
1112
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
1113
|
+
SENSITIVE: []
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class IdNamespaceAssociationInputReferenceConfig
|
1117
|
+
attr_accessor input_reference_arn: ::String
|
1118
|
+
attr_accessor manage_resource_policies: bool
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
class IdNamespaceAssociationInputReferenceProperties
|
1123
|
+
attr_accessor id_namespace_type: ("SOURCE" | "TARGET")
|
1124
|
+
attr_accessor id_mapping_workflows_supported: ::Array[untyped]
|
1125
|
+
SENSITIVE: []
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class IdNamespaceAssociationInputReferencePropertiesSummary
|
1129
|
+
attr_accessor id_namespace_type: ("SOURCE" | "TARGET")
|
1130
|
+
SENSITIVE: []
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class IdNamespaceAssociationSummary
|
1134
|
+
attr_accessor membership_id: ::String
|
1135
|
+
attr_accessor membership_arn: ::String
|
1136
|
+
attr_accessor collaboration_arn: ::String
|
1137
|
+
attr_accessor collaboration_id: ::String
|
1138
|
+
attr_accessor create_time: ::Time
|
1139
|
+
attr_accessor update_time: ::Time
|
1140
|
+
attr_accessor id: ::String
|
1141
|
+
attr_accessor arn: ::String
|
1142
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
1143
|
+
attr_accessor name: ::String
|
1144
|
+
attr_accessor description: ::String
|
1145
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferencePropertiesSummary
|
1146
|
+
SENSITIVE: []
|
1147
|
+
end
|
1148
|
+
|
918
1149
|
class InternalServerException
|
919
1150
|
attr_accessor message: ::String
|
920
1151
|
SENSITIVE: []
|
@@ -959,6 +1190,19 @@ module Aws::CleanRooms
|
|
959
1190
|
SENSITIVE: []
|
960
1191
|
end
|
961
1192
|
|
1193
|
+
class ListCollaborationIdNamespaceAssociationsInput
|
1194
|
+
attr_accessor collaboration_identifier: ::String
|
1195
|
+
attr_accessor next_token: ::String
|
1196
|
+
attr_accessor max_results: ::Integer
|
1197
|
+
SENSITIVE: []
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class ListCollaborationIdNamespaceAssociationsOutput
|
1201
|
+
attr_accessor next_token: ::String
|
1202
|
+
attr_accessor collaboration_id_namespace_association_summaries: ::Array[Types::CollaborationIdNamespaceAssociationSummary]
|
1203
|
+
SENSITIVE: []
|
1204
|
+
end
|
1205
|
+
|
962
1206
|
class ListCollaborationPrivacyBudgetTemplatesInput
|
963
1207
|
attr_accessor collaboration_identifier: ::String
|
964
1208
|
attr_accessor next_token: ::String
|
@@ -1037,6 +1281,32 @@ module Aws::CleanRooms
|
|
1037
1281
|
SENSITIVE: []
|
1038
1282
|
end
|
1039
1283
|
|
1284
|
+
class ListIdMappingTablesInput
|
1285
|
+
attr_accessor membership_identifier: ::String
|
1286
|
+
attr_accessor next_token: ::String
|
1287
|
+
attr_accessor max_results: ::Integer
|
1288
|
+
SENSITIVE: []
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
class ListIdMappingTablesOutput
|
1292
|
+
attr_accessor id_mapping_table_summaries: ::Array[Types::IdMappingTableSummary]
|
1293
|
+
attr_accessor next_token: ::String
|
1294
|
+
SENSITIVE: []
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
class ListIdNamespaceAssociationsInput
|
1298
|
+
attr_accessor membership_identifier: ::String
|
1299
|
+
attr_accessor next_token: ::String
|
1300
|
+
attr_accessor max_results: ::Integer
|
1301
|
+
SENSITIVE: []
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
class ListIdNamespaceAssociationsOutput
|
1305
|
+
attr_accessor next_token: ::String
|
1306
|
+
attr_accessor id_namespace_association_summaries: ::Array[Types::IdNamespaceAssociationSummary]
|
1307
|
+
SENSITIVE: []
|
1308
|
+
end
|
1309
|
+
|
1040
1310
|
class ListMembersInput
|
1041
1311
|
attr_accessor collaboration_identifier: ::String
|
1042
1312
|
attr_accessor next_token: ::String
|
@@ -1106,7 +1376,7 @@ module Aws::CleanRooms
|
|
1106
1376
|
|
1107
1377
|
class ListSchemasInput
|
1108
1378
|
attr_accessor collaboration_identifier: ::String
|
1109
|
-
attr_accessor schema_type: ("TABLE")
|
1379
|
+
attr_accessor schema_type: ("TABLE" | "ID_MAPPING_TABLE")
|
1110
1380
|
attr_accessor next_token: ::String
|
1111
1381
|
attr_accessor max_results: ::Integer
|
1112
1382
|
SENSITIVE: []
|
@@ -1215,6 +1485,17 @@ module Aws::CleanRooms
|
|
1215
1485
|
SENSITIVE: []
|
1216
1486
|
end
|
1217
1487
|
|
1488
|
+
class PopulateIdMappingTableInput
|
1489
|
+
attr_accessor id_mapping_table_identifier: ::String
|
1490
|
+
attr_accessor membership_identifier: ::String
|
1491
|
+
SENSITIVE: []
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
class PopulateIdMappingTableOutput
|
1495
|
+
attr_accessor id_mapping_job_id: ::String
|
1496
|
+
SENSITIVE: []
|
1497
|
+
end
|
1498
|
+
|
1218
1499
|
class PreviewPrivacyImpactInput
|
1219
1500
|
attr_accessor membership_identifier: ::String
|
1220
1501
|
attr_accessor parameters: Types::PreviewPrivacyImpactParametersInput
|
@@ -1434,6 +1715,22 @@ module Aws::CleanRooms
|
|
1434
1715
|
SENSITIVE: []
|
1435
1716
|
end
|
1436
1717
|
|
1718
|
+
class QueryConstraint
|
1719
|
+
attr_accessor require_overlap: Types::QueryConstraintRequireOverlap
|
1720
|
+
attr_accessor unknown: untyped
|
1721
|
+
SENSITIVE: []
|
1722
|
+
|
1723
|
+
class RequireOverlap < QueryConstraint
|
1724
|
+
end
|
1725
|
+
class Unknown < QueryConstraint
|
1726
|
+
end
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
class QueryConstraintRequireOverlap
|
1730
|
+
attr_accessor columns: ::Array[::String]
|
1731
|
+
SENSITIVE: []
|
1732
|
+
end
|
1733
|
+
|
1437
1734
|
class ResourceNotFoundException
|
1438
1735
|
attr_accessor message: ::String
|
1439
1736
|
attr_accessor resource_id: ::String
|
@@ -1444,7 +1741,7 @@ module Aws::CleanRooms
|
|
1444
1741
|
class Schema
|
1445
1742
|
attr_accessor columns: ::Array[Types::Column]
|
1446
1743
|
attr_accessor partition_keys: ::Array[Types::Column]
|
1447
|
-
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
1744
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")]
|
1448
1745
|
attr_accessor analysis_method: ("DIRECT_QUERY")
|
1449
1746
|
attr_accessor creator_account_id: ::String
|
1450
1747
|
attr_accessor name: ::String
|
@@ -1453,44 +1750,56 @@ module Aws::CleanRooms
|
|
1453
1750
|
attr_accessor description: ::String
|
1454
1751
|
attr_accessor create_time: ::Time
|
1455
1752
|
attr_accessor update_time: ::Time
|
1456
|
-
attr_accessor type: ("TABLE")
|
1753
|
+
attr_accessor type: ("TABLE" | "ID_MAPPING_TABLE")
|
1457
1754
|
attr_accessor schema_status_details: ::Array[Types::SchemaStatusDetail]
|
1755
|
+
attr_accessor schema_type_properties: Types::SchemaTypeProperties
|
1458
1756
|
SENSITIVE: []
|
1459
1757
|
end
|
1460
1758
|
|
1461
1759
|
class SchemaAnalysisRuleRequest
|
1462
1760
|
attr_accessor name: ::String
|
1463
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1761
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
1464
1762
|
SENSITIVE: []
|
1465
1763
|
end
|
1466
1764
|
|
1467
1765
|
class SchemaStatusDetail
|
1468
1766
|
attr_accessor status: ("READY" | "NOT_READY")
|
1469
1767
|
attr_accessor reasons: ::Array[Types::SchemaStatusReason]
|
1470
|
-
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1471
|
-
attr_accessor configurations: ::Array[("DIFFERENTIAL_PRIVACY")]
|
1768
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
1769
|
+
attr_accessor configurations: ::Array[("DIFFERENTIAL_PRIVACY" | "CUSTOM_ANALYSIS_NOT_ALLOWED" | "NO_MEMBER_ACCOUNT_ALLOWED_TO_PROVIDE_ANALYSIS" | "DIFFERENTIAL_PRIVACY_BUDGET_NOT_CONFIGURED" | "ID_MAPPING_TABLE_NOT_POPULATED")]
|
1472
1770
|
SENSITIVE: []
|
1473
1771
|
end
|
1474
1772
|
|
1475
1773
|
class SchemaStatusReason
|
1476
|
-
attr_accessor code: ("ANALYSIS_RULE_MISSING" | "ANALYSIS_TEMPLATES_NOT_CONFIGURED" | "ANALYSIS_PROVIDERS_NOT_CONFIGURED" | "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED")
|
1774
|
+
attr_accessor code: ("ANALYSIS_RULE_MISSING" | "ANALYSIS_TEMPLATES_NOT_CONFIGURED" | "ANALYSIS_PROVIDERS_NOT_CONFIGURED" | "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED" | "ID_MAPPING_TABLE_NOT_POPULATED")
|
1477
1775
|
attr_accessor message: ::String
|
1478
1776
|
SENSITIVE: []
|
1479
1777
|
end
|
1480
1778
|
|
1481
1779
|
class SchemaSummary
|
1482
1780
|
attr_accessor name: ::String
|
1483
|
-
attr_accessor type: ("TABLE")
|
1781
|
+
attr_accessor type: ("TABLE" | "ID_MAPPING_TABLE")
|
1484
1782
|
attr_accessor creator_account_id: ::String
|
1485
1783
|
attr_accessor create_time: ::Time
|
1486
1784
|
attr_accessor update_time: ::Time
|
1487
1785
|
attr_accessor collaboration_id: ::String
|
1488
1786
|
attr_accessor collaboration_arn: ::String
|
1489
|
-
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
1787
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")]
|
1490
1788
|
attr_accessor analysis_method: ("DIRECT_QUERY")
|
1491
1789
|
SENSITIVE: []
|
1492
1790
|
end
|
1493
1791
|
|
1792
|
+
class SchemaTypeProperties
|
1793
|
+
attr_accessor id_mapping_table: Types::IdMappingTableSchemaTypeProperties
|
1794
|
+
attr_accessor unknown: untyped
|
1795
|
+
SENSITIVE: []
|
1796
|
+
|
1797
|
+
class IdMappingTable < SchemaTypeProperties
|
1798
|
+
end
|
1799
|
+
class Unknown < SchemaTypeProperties
|
1800
|
+
end
|
1801
|
+
end
|
1802
|
+
|
1494
1803
|
class ServiceQuotaExceededException
|
1495
1804
|
attr_accessor message: ::String
|
1496
1805
|
attr_accessor quota_name: ::String
|
@@ -1619,6 +1928,33 @@ module Aws::CleanRooms
|
|
1619
1928
|
SENSITIVE: []
|
1620
1929
|
end
|
1621
1930
|
|
1931
|
+
class UpdateIdMappingTableInput
|
1932
|
+
attr_accessor id_mapping_table_identifier: ::String
|
1933
|
+
attr_accessor membership_identifier: ::String
|
1934
|
+
attr_accessor description: ::String
|
1935
|
+
attr_accessor kms_key_arn: ::String
|
1936
|
+
SENSITIVE: []
|
1937
|
+
end
|
1938
|
+
|
1939
|
+
class UpdateIdMappingTableOutput
|
1940
|
+
attr_accessor id_mapping_table: Types::IdMappingTable
|
1941
|
+
SENSITIVE: []
|
1942
|
+
end
|
1943
|
+
|
1944
|
+
class UpdateIdNamespaceAssociationInput
|
1945
|
+
attr_accessor id_namespace_association_identifier: ::String
|
1946
|
+
attr_accessor membership_identifier: ::String
|
1947
|
+
attr_accessor name: ::String
|
1948
|
+
attr_accessor description: ::String
|
1949
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
1950
|
+
SENSITIVE: []
|
1951
|
+
end
|
1952
|
+
|
1953
|
+
class UpdateIdNamespaceAssociationOutput
|
1954
|
+
attr_accessor id_namespace_association: Types::IdNamespaceAssociation
|
1955
|
+
SENSITIVE: []
|
1956
|
+
end
|
1957
|
+
|
1622
1958
|
class UpdateMembershipInput
|
1623
1959
|
attr_accessor membership_identifier: ::String
|
1624
1960
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
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.26.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-07-
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS Clean Rooms Service. This gem is part of
|
48
48
|
the AWS SDK for Ruby.
|
49
49
|
email:
|