Skip to content

Commit 34bbdea

Browse files
author
AWS
committed
AWS Clean Rooms Service Update: This release decouples member abilities in a collaboration. With this change, the member who can run queries no longer needs to be the same as the member who can receive results.
1 parent 39ae55c commit 34bbdea

File tree

3 files changed

+128
-50
lines changed

3 files changed

+128
-50
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Clean Rooms Service",
4+
"contributor": "",
5+
"description": "This release decouples member abilities in a collaboration. With this change, the member who can run queries no longer needs to be the same as the member who can receive results."
6+
}

services/cleanrooms/src/main/resources/codegen-resources/endpoint-tests.json

Lines changed: 60 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
{
22
"testCases": [
33
{
4-
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled",
4+
"documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
55
"expect": {
66
"endpoint": {
7-
"url": "https://cleanrooms-fips.us-gov-east-1.api.aws"
7+
"url": "https://cleanrooms-fips.us-east-1.api.aws"
88
}
99
},
1010
"params": {
11-
"Region": "us-gov-east-1",
11+
"Region": "us-east-1",
1212
"UseFIPS": true,
1313
"UseDualStack": true
1414
}
1515
},
1616
{
17-
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack disabled",
17+
"documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
1818
"expect": {
1919
"endpoint": {
20-
"url": "https://cleanrooms-fips.us-gov-east-1.amazonaws.com"
20+
"url": "https://cleanrooms-fips.us-east-1.amazonaws.com"
2121
}
2222
},
2323
"params": {
24-
"Region": "us-gov-east-1",
24+
"Region": "us-east-1",
2525
"UseFIPS": true,
2626
"UseDualStack": false
2727
}
2828
},
2929
{
30-
"documentation": "For region us-gov-east-1 with FIPS disabled and DualStack enabled",
30+
"documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
3131
"expect": {
3232
"endpoint": {
33-
"url": "https://cleanrooms.us-gov-east-1.api.aws"
33+
"url": "https://cleanrooms.us-east-1.api.aws"
3434
}
3535
},
3636
"params": {
37-
"Region": "us-gov-east-1",
37+
"Region": "us-east-1",
3838
"UseFIPS": false,
3939
"UseDualStack": true
4040
}
4141
},
4242
{
43-
"documentation": "For region us-gov-east-1 with FIPS disabled and DualStack disabled",
43+
"documentation": "For region us-east-1 with FIPS disabled and DualStack disabled",
4444
"expect": {
4545
"endpoint": {
46-
"url": "https://cleanrooms.us-gov-east-1.amazonaws.com"
46+
"url": "https://cleanrooms.us-east-1.amazonaws.com"
4747
}
4848
},
4949
"params": {
50-
"Region": "us-gov-east-1",
50+
"Region": "us-east-1",
5151
"UseFIPS": false,
5252
"UseDualStack": false
5353
}
@@ -105,101 +105,101 @@
105105
}
106106
},
107107
{
108-
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled",
108+
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled",
109109
"expect": {
110-
"error": "FIPS and DualStack are enabled, but this partition does not support one or both"
110+
"endpoint": {
111+
"url": "https://cleanrooms-fips.us-gov-east-1.api.aws"
112+
}
111113
},
112114
"params": {
113-
"Region": "us-iso-east-1",
115+
"Region": "us-gov-east-1",
114116
"UseFIPS": true,
115117
"UseDualStack": true
116118
}
117119
},
118120
{
119-
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
121+
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack disabled",
120122
"expect": {
121123
"endpoint": {
122-
"url": "https://cleanrooms-fips.us-iso-east-1.c2s.ic.gov"
124+
"url": "https://cleanrooms-fips.us-gov-east-1.amazonaws.com"
123125
}
124126
},
125127
"params": {
126-
"Region": "us-iso-east-1",
128+
"Region": "us-gov-east-1",
127129
"UseFIPS": true,
128130
"UseDualStack": false
129131
}
130132
},
131133
{
132-
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack enabled",
134+
"documentation": "For region us-gov-east-1 with FIPS disabled and DualStack enabled",
133135
"expect": {
134-
"error": "DualStack is enabled but this partition does not support DualStack"
136+
"endpoint": {
137+
"url": "https://cleanrooms.us-gov-east-1.api.aws"
138+
}
135139
},
136140
"params": {
137-
"Region": "us-iso-east-1",
141+
"Region": "us-gov-east-1",
138142
"UseFIPS": false,
139143
"UseDualStack": true
140144
}
141145
},
142146
{
143-
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
147+
"documentation": "For region us-gov-east-1 with FIPS disabled and DualStack disabled",
144148
"expect": {
145149
"endpoint": {
146-
"url": "https://cleanrooms.us-iso-east-1.c2s.ic.gov"
150+
"url": "https://cleanrooms.us-gov-east-1.amazonaws.com"
147151
}
148152
},
149153
"params": {
150-
"Region": "us-iso-east-1",
154+
"Region": "us-gov-east-1",
151155
"UseFIPS": false,
152156
"UseDualStack": false
153157
}
154158
},
155159
{
156-
"documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
160+
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled",
157161
"expect": {
158-
"endpoint": {
159-
"url": "https://cleanrooms-fips.us-east-1.api.aws"
160-
}
162+
"error": "FIPS and DualStack are enabled, but this partition does not support one or both"
161163
},
162164
"params": {
163-
"Region": "us-east-1",
165+
"Region": "us-iso-east-1",
164166
"UseFIPS": true,
165167
"UseDualStack": true
166168
}
167169
},
168170
{
169-
"documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
171+
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
170172
"expect": {
171173
"endpoint": {
172-
"url": "https://cleanrooms-fips.us-east-1.amazonaws.com"
174+
"url": "https://cleanrooms-fips.us-iso-east-1.c2s.ic.gov"
173175
}
174176
},
175177
"params": {
176-
"Region": "us-east-1",
178+
"Region": "us-iso-east-1",
177179
"UseFIPS": true,
178180
"UseDualStack": false
179181
}
180182
},
181183
{
182-
"documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
184+
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack enabled",
183185
"expect": {
184-
"endpoint": {
185-
"url": "https://cleanrooms.us-east-1.api.aws"
186-
}
186+
"error": "DualStack is enabled but this partition does not support DualStack"
187187
},
188188
"params": {
189-
"Region": "us-east-1",
189+
"Region": "us-iso-east-1",
190190
"UseFIPS": false,
191191
"UseDualStack": true
192192
}
193193
},
194194
{
195-
"documentation": "For region us-east-1 with FIPS disabled and DualStack disabled",
195+
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
196196
"expect": {
197197
"endpoint": {
198-
"url": "https://cleanrooms.us-east-1.amazonaws.com"
198+
"url": "https://cleanrooms.us-iso-east-1.c2s.ic.gov"
199199
}
200200
},
201201
"params": {
202-
"Region": "us-east-1",
202+
"Region": "us-iso-east-1",
203203
"UseFIPS": false,
204204
"UseDualStack": false
205205
}
@@ -253,7 +253,7 @@
253253
}
254254
},
255255
{
256-
"documentation": "For custom endpoint with fips disabled and dualstack disabled",
256+
"documentation": "For custom endpoint with region set and fips disabled and dualstack disabled",
257257
"expect": {
258258
"endpoint": {
259259
"url": "https://example.com"
@@ -266,6 +266,19 @@
266266
"Endpoint": "https://example.com"
267267
}
268268
},
269+
{
270+
"documentation": "For custom endpoint with region not set and fips disabled and dualstack disabled",
271+
"expect": {
272+
"endpoint": {
273+
"url": "https://example.com"
274+
}
275+
},
276+
"params": {
277+
"UseFIPS": false,
278+
"UseDualStack": false,
279+
"Endpoint": "https://example.com"
280+
}
281+
},
269282
{
270283
"documentation": "For custom endpoint with fips enabled and dualstack disabled",
271284
"expect": {
@@ -289,6 +302,12 @@
289302
"UseDualStack": true,
290303
"Endpoint": "https://example.com"
291304
}
305+
},
306+
{
307+
"documentation": "Missing region",
308+
"expect": {
309+
"error": "Invalid Configuration: Missing Region"
310+
}
292311
}
293312
],
294313
"version": "1.0"

0 commit comments

Comments
 (0)