@salesforce/lds-adapters-cdp-data-clean-room 1.354.0-dev4 → 1.354.0-dev6
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.
- package/dist/es/es2018/cdp-data-clean-room.js +2147 -111
- package/dist/es/es2018/types/src/generated/adapters/acceptDataCleanRoomInvitation.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomCollaboration.d.ts +21 -0
- package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomSpecification.d.ts +22 -0
- package/dist/es/es2018/types/src/generated/adapters/getAllDataCleanRoomsPaginated.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataCleanRoomProvidersPaginated.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/adapters/getDataCleanRoomSpecificationsPaginated.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataCleanRoomTemplatePaginated.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/rejectDataCleanRoomInvitation.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +7 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCleanRoomCollaborations.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCleanRoomProviders.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCleanRoomSpecifications.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCleanRoomTemplates.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborations.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomSpecifications.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotDataCleanRoomCollaborationsActionsAcceptInvitationByCollaborationIdOrApiName.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotDataCleanRoomCollaborationsActionsRejectInvitationByCollaborationIdOrApiName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/types/CdpUserRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomAcceptInvitationInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationCollectionRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationInputRepresentation.d.ts +46 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationRepresentation.d.ts +81 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationInputRepresentation.d.ts +49 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationRepresentation.d.ts +84 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberRepresentation.d.ts +58 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomRejectInvitationInputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomSpecificationCollectionRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomTemplateCollectionRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomTemplateRepresentation.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMappingAttributeRepresentation.d.ts +69 -0
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMappingPathAttributeRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMappingRepresentation.d.ts +60 -0
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMappingSubjectAttributeRepresentation.d.ts +37 -0
- package/package.json +3 -3
- package/sfdc/index.js +2347 -266
- package/src/raml/api.raml +635 -33
- package/src/raml/luvio.raml +51 -7
package/src/raml/api.raml
CHANGED
|
@@ -29,7 +29,7 @@ types:
|
|
|
29
29
|
description: Represents a user
|
|
30
30
|
type: object
|
|
31
31
|
properties:
|
|
32
|
-
id
|
|
32
|
+
id?:
|
|
33
33
|
description: The 18 character user ID
|
|
34
34
|
type: string
|
|
35
35
|
name?:
|
|
@@ -165,40 +165,642 @@ types:
|
|
|
165
165
|
type: array
|
|
166
166
|
items:
|
|
167
167
|
type: string
|
|
168
|
+
UseCaseTemplateMappingAttributeRepresentation:
|
|
169
|
+
description: Represents Cdp Data Clean Room Mapping details
|
|
170
|
+
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
171
|
+
# type: CdpAssetBaseRepresentation
|
|
172
|
+
properties:
|
|
173
|
+
createdBy?:
|
|
174
|
+
description: Created by
|
|
175
|
+
type: CdpUserRepresentation
|
|
176
|
+
createdDate?:
|
|
177
|
+
description: Created date
|
|
178
|
+
type: string
|
|
179
|
+
dataMapping?:
|
|
180
|
+
description: Data Clean Room Data Mapping
|
|
181
|
+
type: UseCaseTemplateMappingRepresentation
|
|
182
|
+
id?:
|
|
183
|
+
description: The 18 character ID of the asset
|
|
184
|
+
type: string
|
|
185
|
+
label?:
|
|
186
|
+
description: Label of the asset
|
|
187
|
+
type: string
|
|
188
|
+
lastModifiedBy?:
|
|
189
|
+
description: Last modified by
|
|
190
|
+
type: CdpUserRepresentation
|
|
191
|
+
lastModifiedDate?:
|
|
192
|
+
description: Last modified date
|
|
193
|
+
type: string
|
|
194
|
+
name?:
|
|
195
|
+
description: Name of the asset
|
|
196
|
+
type: string
|
|
197
|
+
namespace?:
|
|
198
|
+
description: Namespace of the asset
|
|
199
|
+
type: string
|
|
200
|
+
url?:
|
|
201
|
+
description: Url
|
|
202
|
+
type: string
|
|
203
|
+
alias:
|
|
204
|
+
description: Attribute Alias
|
|
205
|
+
type: string
|
|
206
|
+
attributeId:
|
|
207
|
+
description: Attribute Id
|
|
208
|
+
type: string
|
|
209
|
+
required: false
|
|
210
|
+
path:
|
|
211
|
+
description: Attribute Path
|
|
212
|
+
type: array
|
|
213
|
+
items:
|
|
214
|
+
type: UseCaseTemplateMappingPathAttributeRepresentation
|
|
215
|
+
subjectAttribute:
|
|
216
|
+
description: Subject Attribute
|
|
217
|
+
type: UseCaseTemplateMappingSubjectAttributeRepresentation
|
|
218
|
+
UseCaseTemplateMappingPathAttributeRepresentation:
|
|
219
|
+
description: Data Clean Room UseCase Template Mapping Path Attribute Config
|
|
220
|
+
type: object
|
|
221
|
+
properties:
|
|
222
|
+
sourceAttribute:
|
|
223
|
+
description: Source attribute details in path component
|
|
224
|
+
type: any
|
|
225
|
+
targetAttribute:
|
|
226
|
+
description: Target attribute details in path component
|
|
227
|
+
type: any
|
|
228
|
+
UseCaseTemplateMappingRepresentation:
|
|
229
|
+
description: Represents Cdp Data Clean Room Mapping details
|
|
230
|
+
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
231
|
+
# type: CdpAssetBaseRepresentation
|
|
232
|
+
properties:
|
|
233
|
+
createdBy?:
|
|
234
|
+
description: Created by
|
|
235
|
+
type: CdpUserRepresentation
|
|
236
|
+
createdDate?:
|
|
237
|
+
description: Created date
|
|
238
|
+
type: string
|
|
239
|
+
id?:
|
|
240
|
+
description: The 18 character ID of the asset
|
|
241
|
+
type: string
|
|
242
|
+
label?:
|
|
243
|
+
description: Label of the asset
|
|
244
|
+
type: string
|
|
245
|
+
lastModifiedBy?:
|
|
246
|
+
description: Last modified by
|
|
247
|
+
type: CdpUserRepresentation
|
|
248
|
+
lastModifiedDate?:
|
|
249
|
+
description: Last modified date
|
|
250
|
+
type: string
|
|
251
|
+
name?:
|
|
252
|
+
description: Name of the asset
|
|
253
|
+
type: string
|
|
254
|
+
namespace?:
|
|
255
|
+
description: Namespace of the asset
|
|
256
|
+
type: string
|
|
257
|
+
url?:
|
|
258
|
+
description: Url
|
|
259
|
+
type: string
|
|
260
|
+
attributes:
|
|
261
|
+
description: UseCase Template Mapping attributes
|
|
262
|
+
type: array
|
|
263
|
+
items:
|
|
264
|
+
type: UseCaseTemplateMappingAttributeRepresentation
|
|
265
|
+
collaborationEntity:
|
|
266
|
+
description: UseCase Template Collaboration Entity for Mapping
|
|
267
|
+
type: string
|
|
268
|
+
UseCaseTemplateMappingSubjectAttributeRepresentation:
|
|
269
|
+
description: Data Clean Room UseCase Template Mapping Subject Attribute Config
|
|
270
|
+
type: object
|
|
271
|
+
properties:
|
|
272
|
+
fieldLabel:
|
|
273
|
+
description: Label of mapping field
|
|
274
|
+
type: string
|
|
275
|
+
fieldName:
|
|
276
|
+
description: Name of mapping field
|
|
277
|
+
type: string
|
|
278
|
+
objectLabel:
|
|
279
|
+
description: Label of mapping object
|
|
280
|
+
type: string
|
|
281
|
+
objectName:
|
|
282
|
+
description: Name of mapping object
|
|
283
|
+
type: string
|
|
284
|
+
DataCleanRoomDataSpecificationInputRepresentation:
|
|
285
|
+
description: Represents Cdp Data clean room Specification input
|
|
286
|
+
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpObjectBaseInputRepresentation
|
|
287
|
+
# type: CdpObjectBaseInputRepresentation
|
|
288
|
+
type: object
|
|
289
|
+
properties:
|
|
290
|
+
dataMapping:
|
|
291
|
+
description: Data Mapping details for the data clean room member
|
|
292
|
+
type: any
|
|
293
|
+
memberType:
|
|
294
|
+
description: Type of the data clean room member
|
|
295
|
+
type: string
|
|
296
|
+
ownerOrgId:
|
|
297
|
+
description: Data cloud orgId where the mapping is created
|
|
298
|
+
type: string
|
|
299
|
+
templateName:
|
|
300
|
+
description: Name of the use case template for which mapping is provided
|
|
301
|
+
type: string
|
|
302
|
+
name:
|
|
303
|
+
description: name
|
|
304
|
+
type: string
|
|
305
|
+
required: false
|
|
306
|
+
label:
|
|
307
|
+
description: label
|
|
308
|
+
type: string
|
|
309
|
+
required: true
|
|
310
|
+
description:
|
|
311
|
+
description: description
|
|
312
|
+
type: string
|
|
313
|
+
required: true
|
|
314
|
+
dataspaceName:
|
|
315
|
+
description: dataspaceName
|
|
316
|
+
type: string
|
|
317
|
+
required: false
|
|
318
|
+
DataCleanRoomDataSpecificationRepresentation:
|
|
319
|
+
description: Represents Cdp Data Clean Room Specification
|
|
320
|
+
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
321
|
+
# type: CdpAssetBaseRepresentation
|
|
322
|
+
properties:
|
|
323
|
+
createdBy?:
|
|
324
|
+
description: Created by
|
|
325
|
+
type: CdpUserRepresentation
|
|
326
|
+
createdDate?:
|
|
327
|
+
description: Created date
|
|
328
|
+
type: string
|
|
329
|
+
dataMapping:
|
|
330
|
+
description: Data Clean Room Data Mapping
|
|
331
|
+
type: UseCaseTemplateMappingRepresentation
|
|
332
|
+
id:
|
|
333
|
+
description: The 18 character ID of the asset
|
|
334
|
+
type: string
|
|
335
|
+
label?:
|
|
336
|
+
description: Label of the asset
|
|
337
|
+
type: string
|
|
338
|
+
lastModifiedBy?:
|
|
339
|
+
description: Last modified by
|
|
340
|
+
type: CdpUserRepresentation
|
|
341
|
+
lastModifiedDate?:
|
|
342
|
+
description: Last modified date
|
|
343
|
+
type: string
|
|
344
|
+
name?:
|
|
345
|
+
description: Name of the asset
|
|
346
|
+
type: string
|
|
347
|
+
namespace?:
|
|
348
|
+
description: Namespace of the asset
|
|
349
|
+
type: string
|
|
350
|
+
url?:
|
|
351
|
+
description: Url
|
|
352
|
+
type: string
|
|
353
|
+
dataSpaceName:
|
|
354
|
+
description: Data Clean Room Specification DataSpace
|
|
355
|
+
type: string
|
|
356
|
+
description:
|
|
357
|
+
description: Data Clean Room Specification Description
|
|
358
|
+
type: string
|
|
359
|
+
memberType:
|
|
360
|
+
description: Data Clean Room Member Type
|
|
361
|
+
type: string
|
|
362
|
+
enum:
|
|
363
|
+
- Consumer
|
|
364
|
+
- Provider
|
|
365
|
+
ownerOrgId?:
|
|
366
|
+
description: Data Clean Room Specification Owner Org ID
|
|
367
|
+
type: string
|
|
368
|
+
status:
|
|
369
|
+
description: Data Clean Room Data Specification Status
|
|
370
|
+
type: string
|
|
371
|
+
enum:
|
|
372
|
+
- Active
|
|
373
|
+
- Inactive
|
|
374
|
+
templateName:
|
|
375
|
+
description: Data Clean Room UseCase Template name
|
|
376
|
+
type: string
|
|
377
|
+
DataCleanRoomMemberRepresentation:
|
|
378
|
+
description: Represents Cdp Data Clean Room Members
|
|
379
|
+
type: object
|
|
380
|
+
properties:
|
|
381
|
+
invitationId:
|
|
382
|
+
description: Id of the invitation that enabled the member to be part of collaboration
|
|
383
|
+
type: string
|
|
384
|
+
invitationStatus:
|
|
385
|
+
description: Status of the invitation
|
|
386
|
+
type: string
|
|
387
|
+
enum:
|
|
388
|
+
- Accepted
|
|
389
|
+
- Pending
|
|
390
|
+
- Rejected
|
|
391
|
+
- Sent
|
|
392
|
+
- SentError
|
|
393
|
+
memberId:
|
|
394
|
+
description: Id of collaborating member
|
|
395
|
+
type: string
|
|
396
|
+
memberOrgId:
|
|
397
|
+
description: Id of the member org
|
|
398
|
+
type: string
|
|
399
|
+
memberStatus:
|
|
400
|
+
description: Status of the collaboration member
|
|
401
|
+
type: string
|
|
402
|
+
enum:
|
|
403
|
+
- Active
|
|
404
|
+
- Inactive
|
|
405
|
+
- Mapping_Incomplete
|
|
406
|
+
memberType:
|
|
407
|
+
description: Type of Member
|
|
408
|
+
type: string
|
|
409
|
+
enum:
|
|
410
|
+
- Consumer
|
|
411
|
+
- Provider
|
|
412
|
+
providerId:
|
|
413
|
+
description: Reference key to DataCleanRoomProvider record
|
|
414
|
+
type: string
|
|
415
|
+
specificationId?:
|
|
416
|
+
description: Reference key to DataCleanRoomDataSpecification
|
|
417
|
+
type: string
|
|
418
|
+
DataCleanRoomSpecificationCollectionRepresentation:
|
|
419
|
+
description: Represents Data Clean Room Specification Collection
|
|
420
|
+
# TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
|
|
421
|
+
# type: CdpPaginatedResponseBaseRepresentation
|
|
422
|
+
properties:
|
|
423
|
+
currentPageUrl:
|
|
424
|
+
description: Current page url
|
|
425
|
+
type: string
|
|
426
|
+
required: false
|
|
427
|
+
nextPageUrl:
|
|
428
|
+
description: Next page url if it exists
|
|
429
|
+
type: string | nil
|
|
430
|
+
required: false
|
|
431
|
+
totalSize:
|
|
432
|
+
description: Total size of collection
|
|
433
|
+
type: integer
|
|
434
|
+
required: false
|
|
435
|
+
cleanroomSpecifications:
|
|
436
|
+
description: List of data clean room specifications
|
|
437
|
+
type: array
|
|
438
|
+
items:
|
|
439
|
+
type: DataCleanRoomDataSpecificationRepresentation
|
|
440
|
+
limit:
|
|
441
|
+
description: Number of records present in this response
|
|
442
|
+
type: integer
|
|
443
|
+
offset:
|
|
444
|
+
description: Start offset of the next batch
|
|
445
|
+
type: integer
|
|
446
|
+
DataCleanRoomCollaborationInputRepresentation:
|
|
447
|
+
description: Represents Cdp Data clean room collaboration input
|
|
448
|
+
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpObjectBaseInputRepresentation
|
|
449
|
+
# type: CdpObjectBaseInputRepresentation
|
|
450
|
+
properties:
|
|
451
|
+
apiKey?:
|
|
452
|
+
description: Api key for collaboration
|
|
453
|
+
type: string
|
|
454
|
+
dataCloudOrgId:
|
|
455
|
+
description: Core org ID where Data cloud clean room is enabled
|
|
456
|
+
type: string
|
|
457
|
+
dataSpaceName?:
|
|
458
|
+
description: Name of data space where data clean is created
|
|
459
|
+
type: string
|
|
460
|
+
providerDevName:
|
|
461
|
+
description: Developer name of provider definition
|
|
462
|
+
type: string
|
|
463
|
+
specificationDevName:
|
|
464
|
+
description: Developer Name of DataCleanRoomSpecification
|
|
465
|
+
type: string
|
|
466
|
+
templateName:
|
|
467
|
+
description: Developer name of use case template that the collaboration will
|
|
468
|
+
support
|
|
469
|
+
type: string
|
|
470
|
+
label:
|
|
471
|
+
description: Label of the asset
|
|
472
|
+
type: string
|
|
473
|
+
DataCleanRoomCollaborationRepresentation:
|
|
474
|
+
description: Represents Cdp Data Clean Room Collaboration
|
|
475
|
+
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
476
|
+
# type: CdpAssetBaseRepresentation
|
|
477
|
+
properties:
|
|
478
|
+
createdBy?:
|
|
479
|
+
description: Created by
|
|
480
|
+
type: CdpUserRepresentation
|
|
481
|
+
createdDate?:
|
|
482
|
+
description: Created date
|
|
483
|
+
type: string
|
|
484
|
+
id:
|
|
485
|
+
description: The 18 character ID of the asset
|
|
486
|
+
type: string
|
|
487
|
+
label?:
|
|
488
|
+
description: Label of the asset
|
|
489
|
+
type: string
|
|
490
|
+
lastModifiedBy?:
|
|
491
|
+
description: Last modified by
|
|
492
|
+
type: CdpUserRepresentation
|
|
493
|
+
lastModifiedDate?:
|
|
494
|
+
description: Last modified date
|
|
495
|
+
type: string
|
|
496
|
+
name?:
|
|
497
|
+
description: Name of the asset
|
|
498
|
+
type: string
|
|
499
|
+
namespace?:
|
|
500
|
+
description: Namespace of the asset
|
|
501
|
+
type: string
|
|
502
|
+
url?:
|
|
503
|
+
description: Url
|
|
504
|
+
type: string
|
|
505
|
+
dataSpaceName?:
|
|
506
|
+
description: DataSpace dev name of data clean room
|
|
507
|
+
type: string
|
|
508
|
+
description?:
|
|
509
|
+
description: Description of data clean room
|
|
510
|
+
type: string
|
|
511
|
+
members:
|
|
512
|
+
description: List of all members
|
|
513
|
+
type: array
|
|
514
|
+
items:
|
|
515
|
+
type: DataCleanRoomMemberRepresentation
|
|
516
|
+
status:
|
|
517
|
+
description: Enum for status of data clean room
|
|
518
|
+
type: string
|
|
519
|
+
enum:
|
|
520
|
+
- Active
|
|
521
|
+
- Inactive
|
|
522
|
+
templateVersion:
|
|
523
|
+
description: Template Version Info for which data clean room is created
|
|
524
|
+
type: DataCleanRoomTemplateRepresentation
|
|
525
|
+
apiKey?:
|
|
526
|
+
description: Api key for collaboration
|
|
527
|
+
type: string
|
|
528
|
+
DataCleanRoomTemplateRepresentation:
|
|
529
|
+
description: Represents Cdp Data Clean Room Template
|
|
530
|
+
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
531
|
+
# type: CdpAssetBaseRepresentation
|
|
532
|
+
properties:
|
|
533
|
+
createdBy?:
|
|
534
|
+
description: Created by
|
|
535
|
+
type: CdpUserRepresentation
|
|
536
|
+
createdDate?:
|
|
537
|
+
description: Created date
|
|
538
|
+
type: string
|
|
539
|
+
id?:
|
|
540
|
+
description: The 18 character ID of the asset
|
|
541
|
+
type: string
|
|
542
|
+
label?:
|
|
543
|
+
description: Label of the asset
|
|
544
|
+
type: string
|
|
545
|
+
lastModifiedBy?:
|
|
546
|
+
description: Last modified by
|
|
547
|
+
type: CdpUserRepresentation
|
|
548
|
+
lastModifiedDate?:
|
|
549
|
+
description: Last modified date
|
|
550
|
+
type: string
|
|
551
|
+
name?:
|
|
552
|
+
description: Name of the asset
|
|
553
|
+
type: string
|
|
554
|
+
namespace?:
|
|
555
|
+
description: Namespace of the asset
|
|
556
|
+
type: string
|
|
557
|
+
url?:
|
|
558
|
+
description: Url
|
|
559
|
+
type: string
|
|
560
|
+
configuration:
|
|
561
|
+
description: Configuration for use case template
|
|
562
|
+
type: any
|
|
563
|
+
description:
|
|
564
|
+
description: Description of use case template
|
|
565
|
+
type: string
|
|
566
|
+
queryTemplate:
|
|
567
|
+
description: Defined Query template for use case template
|
|
568
|
+
type: any
|
|
569
|
+
DataCleanRoomCollaborationCollectionRepresentation:
|
|
570
|
+
description: Represents Data Clean Room Collaboration Collection
|
|
571
|
+
# TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
|
|
572
|
+
# type: CdpPaginatedResponseBaseRepresentation
|
|
573
|
+
properties:
|
|
574
|
+
currentPageUrl?:
|
|
575
|
+
description: Current page url
|
|
576
|
+
type: string
|
|
577
|
+
nextPageUrl?:
|
|
578
|
+
description: Next page url if it exists
|
|
579
|
+
type: string | nil
|
|
580
|
+
totalSize?:
|
|
581
|
+
description: Total size of collection
|
|
582
|
+
type: integer
|
|
583
|
+
collaborations:
|
|
584
|
+
description: List of Data Clean Rooms Collaborations
|
|
585
|
+
type: array
|
|
586
|
+
items:
|
|
587
|
+
type: DataCleanRoomCollaborationRepresentation
|
|
588
|
+
limit:
|
|
589
|
+
description: Number of records present in this response
|
|
590
|
+
type: integer
|
|
591
|
+
offset:
|
|
592
|
+
description: Number of records to skip for the next request
|
|
593
|
+
type: integer
|
|
594
|
+
DataCleanRoomTemplateCollectionRepresentation:
|
|
595
|
+
description: Represents Cdp Data Clean Room Template Collection
|
|
596
|
+
# TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
|
|
597
|
+
# type: CdpPaginatedResponseBaseRepresentation
|
|
598
|
+
properties:
|
|
599
|
+
currentPageUrl:
|
|
600
|
+
description: Current page url
|
|
601
|
+
type: string
|
|
602
|
+
required: false
|
|
603
|
+
nextPageUrl:
|
|
604
|
+
description: Next page url if it exists
|
|
605
|
+
type: string | nil
|
|
606
|
+
required: false
|
|
607
|
+
totalSize:
|
|
608
|
+
description: Total size of collection
|
|
609
|
+
type: integer
|
|
610
|
+
required: false
|
|
611
|
+
limit:
|
|
612
|
+
description: Number of records present in this response
|
|
613
|
+
type: integer
|
|
614
|
+
offset:
|
|
615
|
+
description: Number of records to skip for the next request
|
|
616
|
+
type: integer
|
|
617
|
+
templates:
|
|
618
|
+
description: List of Templates
|
|
619
|
+
type: array
|
|
620
|
+
items:
|
|
621
|
+
type: DataCleanRoomTemplateRepresentation
|
|
622
|
+
|
|
623
|
+
DataCleanRoomAcceptInvitationInputRepresentation:
|
|
624
|
+
description: Represents Cdp Data clean room Accept invitation input
|
|
625
|
+
type: object
|
|
626
|
+
properties:
|
|
627
|
+
invitationId:
|
|
628
|
+
description: Record Id of DataCleanRoomInvitation
|
|
629
|
+
type: string
|
|
630
|
+
specificationId:
|
|
631
|
+
description: Record Id of DataCleanRoomSpecification
|
|
632
|
+
type: string
|
|
633
|
+
|
|
634
|
+
DataCleanRoomRejectInvitationInputRepresentation:
|
|
635
|
+
description: Represents Cdp Data clean room Reject invitation input
|
|
636
|
+
type: object
|
|
637
|
+
properties:
|
|
638
|
+
invitationId:
|
|
639
|
+
description: Record Id of DataCleanRoomInvitation
|
|
640
|
+
type: string
|
|
641
|
+
|
|
168
642
|
/ssot:
|
|
169
|
-
/data-clean-room
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
643
|
+
/data-clean-room:
|
|
644
|
+
/providers:
|
|
645
|
+
get:
|
|
646
|
+
displayName: getCdpDataCleanRoomProviderCollection
|
|
647
|
+
description: Gets the paginated list of all providers
|
|
648
|
+
responses:
|
|
649
|
+
'200':
|
|
650
|
+
description: Success
|
|
651
|
+
body:
|
|
652
|
+
application/json:
|
|
653
|
+
type: DataCleanRoomProviderCollectionRepresentation
|
|
654
|
+
queryParameters:
|
|
655
|
+
filters:
|
|
656
|
+
type: string
|
|
657
|
+
required: false
|
|
658
|
+
limit:
|
|
659
|
+
type: integer
|
|
660
|
+
required: false
|
|
661
|
+
offset:
|
|
662
|
+
type: integer
|
|
663
|
+
required: false
|
|
664
|
+
orderBy:
|
|
665
|
+
type: string
|
|
666
|
+
required: false
|
|
667
|
+
post:
|
|
668
|
+
displayName: postCdpDataCleanRoomProviderCollection
|
|
669
|
+
description: Creates a new Data Clean Room Provider
|
|
670
|
+
responses:
|
|
671
|
+
'200':
|
|
672
|
+
description: Success
|
|
673
|
+
body:
|
|
674
|
+
application/json:
|
|
675
|
+
type: DataCleanRoomProviderRepresentation
|
|
676
|
+
body:
|
|
677
|
+
application/json:
|
|
678
|
+
type: DataCleanRoomProviderInputRepresentation
|
|
679
|
+
(oas-body-name): input
|
|
680
|
+
/specifications:
|
|
681
|
+
get:
|
|
682
|
+
displayName: getCdpDataCleanRoomDataSpecificationCollection
|
|
683
|
+
description: Gets the paginated list of all Data Clean Room Specifications
|
|
684
|
+
responses:
|
|
685
|
+
'200':
|
|
686
|
+
description: Success
|
|
687
|
+
body:
|
|
688
|
+
application/json:
|
|
689
|
+
type: DataCleanRoomSpecificationCollectionRepresentation
|
|
690
|
+
queryParameters:
|
|
691
|
+
filters:
|
|
692
|
+
type: string
|
|
693
|
+
required: false
|
|
694
|
+
limit:
|
|
695
|
+
type: integer
|
|
696
|
+
required: false
|
|
697
|
+
offset:
|
|
698
|
+
type: integer
|
|
699
|
+
required: false
|
|
700
|
+
orderBy:
|
|
701
|
+
type: string
|
|
702
|
+
required: false
|
|
703
|
+
post:
|
|
704
|
+
displayName: postCdpDataCleanRoomDataSpecificationCollection
|
|
705
|
+
description: Creates a new Data Clean Room Specification.
|
|
706
|
+
responses:
|
|
707
|
+
'200':
|
|
708
|
+
description: Success
|
|
709
|
+
body:
|
|
710
|
+
application/json:
|
|
711
|
+
type: DataCleanRoomDataSpecificationRepresentation
|
|
712
|
+
body:
|
|
713
|
+
application/json:
|
|
714
|
+
type: DataCleanRoomDataSpecificationInputRepresentation
|
|
715
|
+
(oas-body-name): input
|
|
716
|
+
/collaborations:
|
|
717
|
+
get:
|
|
718
|
+
displayName: getCdpDataCleanRoomCollaborationCollection
|
|
719
|
+
description: Gets a list of data clean rooms
|
|
720
|
+
responses:
|
|
721
|
+
'200':
|
|
722
|
+
description: Success
|
|
723
|
+
body:
|
|
724
|
+
application/json:
|
|
725
|
+
type: DataCleanRoomCollaborationCollectionRepresentation
|
|
726
|
+
queryParameters:
|
|
727
|
+
filters:
|
|
728
|
+
type: string
|
|
729
|
+
required: false
|
|
730
|
+
limit:
|
|
731
|
+
type: integer
|
|
732
|
+
required: false
|
|
733
|
+
offset:
|
|
734
|
+
type: integer
|
|
735
|
+
required: false
|
|
736
|
+
orderBy:
|
|
737
|
+
type: string
|
|
738
|
+
required: false
|
|
739
|
+
post:
|
|
740
|
+
displayName: postCdpDataCleanRoomCollaborationCollection
|
|
741
|
+
description: Creates a new data clean room collaboration
|
|
742
|
+
responses:
|
|
743
|
+
'200':
|
|
744
|
+
description: Success
|
|
745
|
+
body:
|
|
746
|
+
application/json:
|
|
747
|
+
type: DataCleanRoomCollaborationRepresentation
|
|
748
|
+
body:
|
|
749
|
+
application/json:
|
|
750
|
+
type: DataCleanRoomCollaborationInputRepresentation
|
|
751
|
+
(oas-body-name): input
|
|
752
|
+
/templates:
|
|
753
|
+
get:
|
|
754
|
+
displayName: getCdpDataCleanRoomTemplateCollection
|
|
755
|
+
description: Gets the paginated list of all template
|
|
756
|
+
responses:
|
|
757
|
+
'200':
|
|
758
|
+
description: Success
|
|
759
|
+
body:
|
|
760
|
+
application/json:
|
|
761
|
+
type: DataCleanRoomTemplateCollectionRepresentation
|
|
762
|
+
queryParameters:
|
|
763
|
+
limit:
|
|
764
|
+
type: integer
|
|
765
|
+
required: false
|
|
766
|
+
offset:
|
|
767
|
+
type: integer
|
|
768
|
+
required: false
|
|
769
|
+
orderBy:
|
|
770
|
+
type: string
|
|
771
|
+
required: false
|
|
772
|
+
/collaborations/{collaborationIdOrApiName}/actions:
|
|
773
|
+
/accept-invitation:
|
|
774
|
+
put:
|
|
775
|
+
displayName: putCdpDataCleanRoomCollaboration
|
|
776
|
+
description: Handles invitation acceptance for a given Data Clean Room
|
|
777
|
+
responses:
|
|
778
|
+
'200':
|
|
779
|
+
description: Success
|
|
780
|
+
body:
|
|
781
|
+
application/json:
|
|
782
|
+
type: DataCleanRoomMemberRepresentation
|
|
176
783
|
body:
|
|
177
784
|
application/json:
|
|
178
|
-
type:
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
displayName: postCdpDataCleanRoomProviderCollection
|
|
194
|
-
description: Creates a new Data Clean Room Provider
|
|
195
|
-
responses:
|
|
196
|
-
'200':
|
|
197
|
-
description: Success
|
|
785
|
+
type: DataCleanRoomAcceptInvitationInputRepresentation
|
|
786
|
+
(oas-body-name): input
|
|
787
|
+
uriParameters:
|
|
788
|
+
collaborationIdOrApiName:
|
|
789
|
+
type: string
|
|
790
|
+
/reject-invitation:
|
|
791
|
+
put:
|
|
792
|
+
displayName: putCdpDataCleanRoomRejectInvitation
|
|
793
|
+
description: Handles invitation rejection for a given Data Clean Room
|
|
794
|
+
responses:
|
|
795
|
+
'200':
|
|
796
|
+
description: Success
|
|
797
|
+
body:
|
|
798
|
+
application/json:
|
|
799
|
+
type: DataCleanRoomMemberRepresentation
|
|
198
800
|
body:
|
|
199
801
|
application/json:
|
|
200
|
-
type:
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
802
|
+
type: DataCleanRoomRejectInvitationInputRepresentation
|
|
803
|
+
(oas-body-name): input
|
|
804
|
+
uriParameters:
|
|
805
|
+
collaborationIdOrApiName:
|
|
806
|
+
type: string
|