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
@@ -138,6 +138,34 @@ module Aws::CleanRooms
|
|
138
138
|
end
|
139
139
|
end
|
140
140
|
|
141
|
+
class CreateIdMappingTable
|
142
|
+
def self.build(context)
|
143
|
+
unless context.config.regional_endpoint
|
144
|
+
endpoint = context.config.endpoint.to_s
|
145
|
+
end
|
146
|
+
Aws::CleanRooms::EndpointParameters.new(
|
147
|
+
region: context.config.region,
|
148
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
149
|
+
use_fips: context.config.use_fips_endpoint,
|
150
|
+
endpoint: endpoint,
|
151
|
+
)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateIdNamespaceAssociation
|
156
|
+
def self.build(context)
|
157
|
+
unless context.config.regional_endpoint
|
158
|
+
endpoint = context.config.endpoint.to_s
|
159
|
+
end
|
160
|
+
Aws::CleanRooms::EndpointParameters.new(
|
161
|
+
region: context.config.region,
|
162
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
163
|
+
use_fips: context.config.use_fips_endpoint,
|
164
|
+
endpoint: endpoint,
|
165
|
+
)
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
141
169
|
class CreateMembership
|
142
170
|
def self.build(context)
|
143
171
|
unless context.config.regional_endpoint
|
@@ -250,6 +278,34 @@ module Aws::CleanRooms
|
|
250
278
|
end
|
251
279
|
end
|
252
280
|
|
281
|
+
class DeleteIdMappingTable
|
282
|
+
def self.build(context)
|
283
|
+
unless context.config.regional_endpoint
|
284
|
+
endpoint = context.config.endpoint.to_s
|
285
|
+
end
|
286
|
+
Aws::CleanRooms::EndpointParameters.new(
|
287
|
+
region: context.config.region,
|
288
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
289
|
+
use_fips: context.config.use_fips_endpoint,
|
290
|
+
endpoint: endpoint,
|
291
|
+
)
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
class DeleteIdNamespaceAssociation
|
296
|
+
def self.build(context)
|
297
|
+
unless context.config.regional_endpoint
|
298
|
+
endpoint = context.config.endpoint.to_s
|
299
|
+
end
|
300
|
+
Aws::CleanRooms::EndpointParameters.new(
|
301
|
+
region: context.config.region,
|
302
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
303
|
+
use_fips: context.config.use_fips_endpoint,
|
304
|
+
endpoint: endpoint,
|
305
|
+
)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
253
309
|
class DeleteMember
|
254
310
|
def self.build(context)
|
255
311
|
unless context.config.regional_endpoint
|
@@ -348,6 +404,20 @@ module Aws::CleanRooms
|
|
348
404
|
end
|
349
405
|
end
|
350
406
|
|
407
|
+
class GetCollaborationIdNamespaceAssociation
|
408
|
+
def self.build(context)
|
409
|
+
unless context.config.regional_endpoint
|
410
|
+
endpoint = context.config.endpoint.to_s
|
411
|
+
end
|
412
|
+
Aws::CleanRooms::EndpointParameters.new(
|
413
|
+
region: context.config.region,
|
414
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
415
|
+
use_fips: context.config.use_fips_endpoint,
|
416
|
+
endpoint: endpoint,
|
417
|
+
)
|
418
|
+
end
|
419
|
+
end
|
420
|
+
|
351
421
|
class GetCollaborationPrivacyBudgetTemplate
|
352
422
|
def self.build(context)
|
353
423
|
unless context.config.regional_endpoint
|
@@ -418,6 +488,34 @@ module Aws::CleanRooms
|
|
418
488
|
end
|
419
489
|
end
|
420
490
|
|
491
|
+
class GetIdMappingTable
|
492
|
+
def self.build(context)
|
493
|
+
unless context.config.regional_endpoint
|
494
|
+
endpoint = context.config.endpoint.to_s
|
495
|
+
end
|
496
|
+
Aws::CleanRooms::EndpointParameters.new(
|
497
|
+
region: context.config.region,
|
498
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
499
|
+
use_fips: context.config.use_fips_endpoint,
|
500
|
+
endpoint: endpoint,
|
501
|
+
)
|
502
|
+
end
|
503
|
+
end
|
504
|
+
|
505
|
+
class GetIdNamespaceAssociation
|
506
|
+
def self.build(context)
|
507
|
+
unless context.config.regional_endpoint
|
508
|
+
endpoint = context.config.endpoint.to_s
|
509
|
+
end
|
510
|
+
Aws::CleanRooms::EndpointParameters.new(
|
511
|
+
region: context.config.region,
|
512
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
513
|
+
use_fips: context.config.use_fips_endpoint,
|
514
|
+
endpoint: endpoint,
|
515
|
+
)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
421
519
|
class GetMembership
|
422
520
|
def self.build(context)
|
423
521
|
unless context.config.regional_endpoint
|
@@ -530,6 +628,20 @@ module Aws::CleanRooms
|
|
530
628
|
end
|
531
629
|
end
|
532
630
|
|
631
|
+
class ListCollaborationIdNamespaceAssociations
|
632
|
+
def self.build(context)
|
633
|
+
unless context.config.regional_endpoint
|
634
|
+
endpoint = context.config.endpoint.to_s
|
635
|
+
end
|
636
|
+
Aws::CleanRooms::EndpointParameters.new(
|
637
|
+
region: context.config.region,
|
638
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
639
|
+
use_fips: context.config.use_fips_endpoint,
|
640
|
+
endpoint: endpoint,
|
641
|
+
)
|
642
|
+
end
|
643
|
+
end
|
644
|
+
|
533
645
|
class ListCollaborationPrivacyBudgetTemplates
|
534
646
|
def self.build(context)
|
535
647
|
unless context.config.regional_endpoint
|
@@ -614,6 +726,34 @@ module Aws::CleanRooms
|
|
614
726
|
end
|
615
727
|
end
|
616
728
|
|
729
|
+
class ListIdMappingTables
|
730
|
+
def self.build(context)
|
731
|
+
unless context.config.regional_endpoint
|
732
|
+
endpoint = context.config.endpoint.to_s
|
733
|
+
end
|
734
|
+
Aws::CleanRooms::EndpointParameters.new(
|
735
|
+
region: context.config.region,
|
736
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
737
|
+
use_fips: context.config.use_fips_endpoint,
|
738
|
+
endpoint: endpoint,
|
739
|
+
)
|
740
|
+
end
|
741
|
+
end
|
742
|
+
|
743
|
+
class ListIdNamespaceAssociations
|
744
|
+
def self.build(context)
|
745
|
+
unless context.config.regional_endpoint
|
746
|
+
endpoint = context.config.endpoint.to_s
|
747
|
+
end
|
748
|
+
Aws::CleanRooms::EndpointParameters.new(
|
749
|
+
region: context.config.region,
|
750
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
751
|
+
use_fips: context.config.use_fips_endpoint,
|
752
|
+
endpoint: endpoint,
|
753
|
+
)
|
754
|
+
end
|
755
|
+
end
|
756
|
+
|
617
757
|
class ListMembers
|
618
758
|
def self.build(context)
|
619
759
|
unless context.config.regional_endpoint
|
@@ -712,6 +852,20 @@ module Aws::CleanRooms
|
|
712
852
|
end
|
713
853
|
end
|
714
854
|
|
855
|
+
class PopulateIdMappingTable
|
856
|
+
def self.build(context)
|
857
|
+
unless context.config.regional_endpoint
|
858
|
+
endpoint = context.config.endpoint.to_s
|
859
|
+
end
|
860
|
+
Aws::CleanRooms::EndpointParameters.new(
|
861
|
+
region: context.config.region,
|
862
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
863
|
+
use_fips: context.config.use_fips_endpoint,
|
864
|
+
endpoint: endpoint,
|
865
|
+
)
|
866
|
+
end
|
867
|
+
end
|
868
|
+
|
715
869
|
class PreviewPrivacyImpact
|
716
870
|
def self.build(context)
|
717
871
|
unless context.config.regional_endpoint
|
@@ -852,6 +1006,34 @@ module Aws::CleanRooms
|
|
852
1006
|
end
|
853
1007
|
end
|
854
1008
|
|
1009
|
+
class UpdateIdMappingTable
|
1010
|
+
def self.build(context)
|
1011
|
+
unless context.config.regional_endpoint
|
1012
|
+
endpoint = context.config.endpoint.to_s
|
1013
|
+
end
|
1014
|
+
Aws::CleanRooms::EndpointParameters.new(
|
1015
|
+
region: context.config.region,
|
1016
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1017
|
+
use_fips: context.config.use_fips_endpoint,
|
1018
|
+
endpoint: endpoint,
|
1019
|
+
)
|
1020
|
+
end
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class UpdateIdNamespaceAssociation
|
1024
|
+
def self.build(context)
|
1025
|
+
unless context.config.regional_endpoint
|
1026
|
+
endpoint = context.config.endpoint.to_s
|
1027
|
+
end
|
1028
|
+
Aws::CleanRooms::EndpointParameters.new(
|
1029
|
+
region: context.config.region,
|
1030
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1031
|
+
use_fips: context.config.use_fips_endpoint,
|
1032
|
+
endpoint: endpoint,
|
1033
|
+
)
|
1034
|
+
end
|
1035
|
+
end
|
1036
|
+
|
855
1037
|
class UpdateMembership
|
856
1038
|
def self.build(context)
|
857
1039
|
unless context.config.regional_endpoint
|
@@ -76,6 +76,10 @@ module Aws::CleanRooms
|
|
76
76
|
Aws::CleanRooms::Endpoints::CreateConfiguredTableAnalysisRule.build(context)
|
77
77
|
when :create_configured_table_association
|
78
78
|
Aws::CleanRooms::Endpoints::CreateConfiguredTableAssociation.build(context)
|
79
|
+
when :create_id_mapping_table
|
80
|
+
Aws::CleanRooms::Endpoints::CreateIdMappingTable.build(context)
|
81
|
+
when :create_id_namespace_association
|
82
|
+
Aws::CleanRooms::Endpoints::CreateIdNamespaceAssociation.build(context)
|
79
83
|
when :create_membership
|
80
84
|
Aws::CleanRooms::Endpoints::CreateMembership.build(context)
|
81
85
|
when :create_privacy_budget_template
|
@@ -92,6 +96,10 @@ module Aws::CleanRooms
|
|
92
96
|
Aws::CleanRooms::Endpoints::DeleteConfiguredTableAnalysisRule.build(context)
|
93
97
|
when :delete_configured_table_association
|
94
98
|
Aws::CleanRooms::Endpoints::DeleteConfiguredTableAssociation.build(context)
|
99
|
+
when :delete_id_mapping_table
|
100
|
+
Aws::CleanRooms::Endpoints::DeleteIdMappingTable.build(context)
|
101
|
+
when :delete_id_namespace_association
|
102
|
+
Aws::CleanRooms::Endpoints::DeleteIdNamespaceAssociation.build(context)
|
95
103
|
when :delete_member
|
96
104
|
Aws::CleanRooms::Endpoints::DeleteMember.build(context)
|
97
105
|
when :delete_membership
|
@@ -106,6 +114,8 @@ module Aws::CleanRooms
|
|
106
114
|
Aws::CleanRooms::Endpoints::GetCollaborationAnalysisTemplate.build(context)
|
107
115
|
when :get_collaboration_configured_audience_model_association
|
108
116
|
Aws::CleanRooms::Endpoints::GetCollaborationConfiguredAudienceModelAssociation.build(context)
|
117
|
+
when :get_collaboration_id_namespace_association
|
118
|
+
Aws::CleanRooms::Endpoints::GetCollaborationIdNamespaceAssociation.build(context)
|
109
119
|
when :get_collaboration_privacy_budget_template
|
110
120
|
Aws::CleanRooms::Endpoints::GetCollaborationPrivacyBudgetTemplate.build(context)
|
111
121
|
when :get_configured_audience_model_association
|
@@ -116,6 +126,10 @@ module Aws::CleanRooms
|
|
116
126
|
Aws::CleanRooms::Endpoints::GetConfiguredTableAnalysisRule.build(context)
|
117
127
|
when :get_configured_table_association
|
118
128
|
Aws::CleanRooms::Endpoints::GetConfiguredTableAssociation.build(context)
|
129
|
+
when :get_id_mapping_table
|
130
|
+
Aws::CleanRooms::Endpoints::GetIdMappingTable.build(context)
|
131
|
+
when :get_id_namespace_association
|
132
|
+
Aws::CleanRooms::Endpoints::GetIdNamespaceAssociation.build(context)
|
119
133
|
when :get_membership
|
120
134
|
Aws::CleanRooms::Endpoints::GetMembership.build(context)
|
121
135
|
when :get_privacy_budget_template
|
@@ -132,6 +146,8 @@ module Aws::CleanRooms
|
|
132
146
|
Aws::CleanRooms::Endpoints::ListCollaborationAnalysisTemplates.build(context)
|
133
147
|
when :list_collaboration_configured_audience_model_associations
|
134
148
|
Aws::CleanRooms::Endpoints::ListCollaborationConfiguredAudienceModelAssociations.build(context)
|
149
|
+
when :list_collaboration_id_namespace_associations
|
150
|
+
Aws::CleanRooms::Endpoints::ListCollaborationIdNamespaceAssociations.build(context)
|
135
151
|
when :list_collaboration_privacy_budget_templates
|
136
152
|
Aws::CleanRooms::Endpoints::ListCollaborationPrivacyBudgetTemplates.build(context)
|
137
153
|
when :list_collaboration_privacy_budgets
|
@@ -144,6 +160,10 @@ module Aws::CleanRooms
|
|
144
160
|
Aws::CleanRooms::Endpoints::ListConfiguredTableAssociations.build(context)
|
145
161
|
when :list_configured_tables
|
146
162
|
Aws::CleanRooms::Endpoints::ListConfiguredTables.build(context)
|
163
|
+
when :list_id_mapping_tables
|
164
|
+
Aws::CleanRooms::Endpoints::ListIdMappingTables.build(context)
|
165
|
+
when :list_id_namespace_associations
|
166
|
+
Aws::CleanRooms::Endpoints::ListIdNamespaceAssociations.build(context)
|
147
167
|
when :list_members
|
148
168
|
Aws::CleanRooms::Endpoints::ListMembers.build(context)
|
149
169
|
when :list_memberships
|
@@ -158,6 +178,8 @@ module Aws::CleanRooms
|
|
158
178
|
Aws::CleanRooms::Endpoints::ListSchemas.build(context)
|
159
179
|
when :list_tags_for_resource
|
160
180
|
Aws::CleanRooms::Endpoints::ListTagsForResource.build(context)
|
181
|
+
when :populate_id_mapping_table
|
182
|
+
Aws::CleanRooms::Endpoints::PopulateIdMappingTable.build(context)
|
161
183
|
when :preview_privacy_impact
|
162
184
|
Aws::CleanRooms::Endpoints::PreviewPrivacyImpact.build(context)
|
163
185
|
when :start_protected_query
|
@@ -178,6 +200,10 @@ module Aws::CleanRooms
|
|
178
200
|
Aws::CleanRooms::Endpoints::UpdateConfiguredTableAnalysisRule.build(context)
|
179
201
|
when :update_configured_table_association
|
180
202
|
Aws::CleanRooms::Endpoints::UpdateConfiguredTableAssociation.build(context)
|
203
|
+
when :update_id_mapping_table
|
204
|
+
Aws::CleanRooms::Endpoints::UpdateIdMappingTable.build(context)
|
205
|
+
when :update_id_namespace_association
|
206
|
+
Aws::CleanRooms::Endpoints::UpdateIdNamespaceAssociation.build(context)
|
181
207
|
when :update_membership
|
182
208
|
Aws::CleanRooms::Endpoints::UpdateMembership.build(context)
|
183
209
|
when :update_privacy_budget_template
|