aws-sdk-cleanrooms 1.7.0 → 1.9.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 +479 -18
- data/lib/aws-sdk-cleanrooms/client_api.rb +333 -0
- data/lib/aws-sdk-cleanrooms/endpoints.rb +112 -0
- data/lib/aws-sdk-cleanrooms/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-cleanrooms/types.rb +726 -16
- data/lib/aws-sdk-cleanrooms.rb +2 -2
- metadata +2 -2
@@ -12,6 +12,20 @@ module Aws::CleanRooms
|
|
12
12
|
# @api private
|
13
13
|
module Endpoints
|
14
14
|
|
15
|
+
class BatchGetCollaborationAnalysisTemplate
|
16
|
+
def self.build(context)
|
17
|
+
unless context.config.regional_endpoint
|
18
|
+
endpoint = context.config.endpoint.to_s
|
19
|
+
end
|
20
|
+
Aws::CleanRooms::EndpointParameters.new(
|
21
|
+
region: context.config.region,
|
22
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
23
|
+
use_fips: context.config.use_fips_endpoint,
|
24
|
+
endpoint: endpoint,
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
15
29
|
class BatchGetSchema
|
16
30
|
def self.build(context)
|
17
31
|
unless context.config.regional_endpoint
|
@@ -26,6 +40,20 @@ module Aws::CleanRooms
|
|
26
40
|
end
|
27
41
|
end
|
28
42
|
|
43
|
+
class CreateAnalysisTemplate
|
44
|
+
def self.build(context)
|
45
|
+
unless context.config.regional_endpoint
|
46
|
+
endpoint = context.config.endpoint.to_s
|
47
|
+
end
|
48
|
+
Aws::CleanRooms::EndpointParameters.new(
|
49
|
+
region: context.config.region,
|
50
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
51
|
+
use_fips: context.config.use_fips_endpoint,
|
52
|
+
endpoint: endpoint,
|
53
|
+
)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
29
57
|
class CreateCollaboration
|
30
58
|
def self.build(context)
|
31
59
|
unless context.config.regional_endpoint
|
@@ -96,6 +124,20 @@ module Aws::CleanRooms
|
|
96
124
|
end
|
97
125
|
end
|
98
126
|
|
127
|
+
class DeleteAnalysisTemplate
|
128
|
+
def self.build(context)
|
129
|
+
unless context.config.regional_endpoint
|
130
|
+
endpoint = context.config.endpoint.to_s
|
131
|
+
end
|
132
|
+
Aws::CleanRooms::EndpointParameters.new(
|
133
|
+
region: context.config.region,
|
134
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
135
|
+
use_fips: context.config.use_fips_endpoint,
|
136
|
+
endpoint: endpoint,
|
137
|
+
)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
99
141
|
class DeleteCollaboration
|
100
142
|
def self.build(context)
|
101
143
|
unless context.config.regional_endpoint
|
@@ -180,6 +222,20 @@ module Aws::CleanRooms
|
|
180
222
|
end
|
181
223
|
end
|
182
224
|
|
225
|
+
class GetAnalysisTemplate
|
226
|
+
def self.build(context)
|
227
|
+
unless context.config.regional_endpoint
|
228
|
+
endpoint = context.config.endpoint.to_s
|
229
|
+
end
|
230
|
+
Aws::CleanRooms::EndpointParameters.new(
|
231
|
+
region: context.config.region,
|
232
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
233
|
+
use_fips: context.config.use_fips_endpoint,
|
234
|
+
endpoint: endpoint,
|
235
|
+
)
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
183
239
|
class GetCollaboration
|
184
240
|
def self.build(context)
|
185
241
|
unless context.config.regional_endpoint
|
@@ -194,6 +250,20 @@ module Aws::CleanRooms
|
|
194
250
|
end
|
195
251
|
end
|
196
252
|
|
253
|
+
class GetCollaborationAnalysisTemplate
|
254
|
+
def self.build(context)
|
255
|
+
unless context.config.regional_endpoint
|
256
|
+
endpoint = context.config.endpoint.to_s
|
257
|
+
end
|
258
|
+
Aws::CleanRooms::EndpointParameters.new(
|
259
|
+
region: context.config.region,
|
260
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
261
|
+
use_fips: context.config.use_fips_endpoint,
|
262
|
+
endpoint: endpoint,
|
263
|
+
)
|
264
|
+
end
|
265
|
+
end
|
266
|
+
|
197
267
|
class GetConfiguredTable
|
198
268
|
def self.build(context)
|
199
269
|
unless context.config.regional_endpoint
|
@@ -292,6 +362,34 @@ module Aws::CleanRooms
|
|
292
362
|
end
|
293
363
|
end
|
294
364
|
|
365
|
+
class ListAnalysisTemplates
|
366
|
+
def self.build(context)
|
367
|
+
unless context.config.regional_endpoint
|
368
|
+
endpoint = context.config.endpoint.to_s
|
369
|
+
end
|
370
|
+
Aws::CleanRooms::EndpointParameters.new(
|
371
|
+
region: context.config.region,
|
372
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
373
|
+
use_fips: context.config.use_fips_endpoint,
|
374
|
+
endpoint: endpoint,
|
375
|
+
)
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
379
|
+
class ListCollaborationAnalysisTemplates
|
380
|
+
def self.build(context)
|
381
|
+
unless context.config.regional_endpoint
|
382
|
+
endpoint = context.config.endpoint.to_s
|
383
|
+
end
|
384
|
+
Aws::CleanRooms::EndpointParameters.new(
|
385
|
+
region: context.config.region,
|
386
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
387
|
+
use_fips: context.config.use_fips_endpoint,
|
388
|
+
endpoint: endpoint,
|
389
|
+
)
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
295
393
|
class ListCollaborations
|
296
394
|
def self.build(context)
|
297
395
|
unless context.config.regional_endpoint
|
@@ -446,6 +544,20 @@ module Aws::CleanRooms
|
|
446
544
|
end
|
447
545
|
end
|
448
546
|
|
547
|
+
class UpdateAnalysisTemplate
|
548
|
+
def self.build(context)
|
549
|
+
unless context.config.regional_endpoint
|
550
|
+
endpoint = context.config.endpoint.to_s
|
551
|
+
end
|
552
|
+
Aws::CleanRooms::EndpointParameters.new(
|
553
|
+
region: context.config.region,
|
554
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
555
|
+
use_fips: context.config.use_fips_endpoint,
|
556
|
+
endpoint: endpoint,
|
557
|
+
)
|
558
|
+
end
|
559
|
+
end
|
560
|
+
|
449
561
|
class UpdateCollaboration
|
450
562
|
def self.build(context)
|
451
563
|
unless context.config.regional_endpoint
|
@@ -56,8 +56,12 @@ module Aws::CleanRooms
|
|
56
56
|
|
57
57
|
def parameters_for_operation(context)
|
58
58
|
case context.operation_name
|
59
|
+
when :batch_get_collaboration_analysis_template
|
60
|
+
Aws::CleanRooms::Endpoints::BatchGetCollaborationAnalysisTemplate.build(context)
|
59
61
|
when :batch_get_schema
|
60
62
|
Aws::CleanRooms::Endpoints::BatchGetSchema.build(context)
|
63
|
+
when :create_analysis_template
|
64
|
+
Aws::CleanRooms::Endpoints::CreateAnalysisTemplate.build(context)
|
61
65
|
when :create_collaboration
|
62
66
|
Aws::CleanRooms::Endpoints::CreateCollaboration.build(context)
|
63
67
|
when :create_configured_table
|
@@ -68,6 +72,8 @@ module Aws::CleanRooms
|
|
68
72
|
Aws::CleanRooms::Endpoints::CreateConfiguredTableAssociation.build(context)
|
69
73
|
when :create_membership
|
70
74
|
Aws::CleanRooms::Endpoints::CreateMembership.build(context)
|
75
|
+
when :delete_analysis_template
|
76
|
+
Aws::CleanRooms::Endpoints::DeleteAnalysisTemplate.build(context)
|
71
77
|
when :delete_collaboration
|
72
78
|
Aws::CleanRooms::Endpoints::DeleteCollaboration.build(context)
|
73
79
|
when :delete_configured_table
|
@@ -80,8 +86,12 @@ module Aws::CleanRooms
|
|
80
86
|
Aws::CleanRooms::Endpoints::DeleteMember.build(context)
|
81
87
|
when :delete_membership
|
82
88
|
Aws::CleanRooms::Endpoints::DeleteMembership.build(context)
|
89
|
+
when :get_analysis_template
|
90
|
+
Aws::CleanRooms::Endpoints::GetAnalysisTemplate.build(context)
|
83
91
|
when :get_collaboration
|
84
92
|
Aws::CleanRooms::Endpoints::GetCollaboration.build(context)
|
93
|
+
when :get_collaboration_analysis_template
|
94
|
+
Aws::CleanRooms::Endpoints::GetCollaborationAnalysisTemplate.build(context)
|
85
95
|
when :get_configured_table
|
86
96
|
Aws::CleanRooms::Endpoints::GetConfiguredTable.build(context)
|
87
97
|
when :get_configured_table_analysis_rule
|
@@ -96,6 +106,10 @@ module Aws::CleanRooms
|
|
96
106
|
Aws::CleanRooms::Endpoints::GetSchema.build(context)
|
97
107
|
when :get_schema_analysis_rule
|
98
108
|
Aws::CleanRooms::Endpoints::GetSchemaAnalysisRule.build(context)
|
109
|
+
when :list_analysis_templates
|
110
|
+
Aws::CleanRooms::Endpoints::ListAnalysisTemplates.build(context)
|
111
|
+
when :list_collaboration_analysis_templates
|
112
|
+
Aws::CleanRooms::Endpoints::ListCollaborationAnalysisTemplates.build(context)
|
99
113
|
when :list_collaborations
|
100
114
|
Aws::CleanRooms::Endpoints::ListCollaborations.build(context)
|
101
115
|
when :list_configured_table_associations
|
@@ -118,6 +132,8 @@ module Aws::CleanRooms
|
|
118
132
|
Aws::CleanRooms::Endpoints::TagResource.build(context)
|
119
133
|
when :untag_resource
|
120
134
|
Aws::CleanRooms::Endpoints::UntagResource.build(context)
|
135
|
+
when :update_analysis_template
|
136
|
+
Aws::CleanRooms::Endpoints::UpdateAnalysisTemplate.build(context)
|
121
137
|
when :update_collaboration
|
122
138
|
Aws::CleanRooms::Endpoints::UpdateCollaboration.build(context)
|
123
139
|
when :update_configured_table
|