@salesforce/lds-adapters-cdp-data-clean-room 1.404.0-dev2 → 1.404.0-dev21

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.
Files changed (43) hide show
  1. package/dist/es/es2018/cdp-data-clean-room.js +616 -90
  2. package/dist/es/es2018/types/src/generated/adapters/acceptDataCleanRoomInvitation.d.ts +4 -1
  3. package/dist/es/es2018/types/src/generated/adapters/createProvider.d.ts +2 -0
  4. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborationsActionsAcceptInvitationByCollaborationIdOrApiName.d.ts +4 -1
  5. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomProviders.d.ts +2 -0
  6. package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateColumnRepresentation.d.ts +4 -1
  7. package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateInputRepresentation.d.ts +9 -1
  8. package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateQueryConfig.d.ts +8 -7
  9. package/dist/es/es2018/types/src/generated/types/DataCleanRoomAcceptInvitationInputRepresentation.d.ts +9 -3
  10. package/dist/es/es2018/types/src/generated/types/DataCleanRoomAwsS3ConnectionAttributesRepresentation.d.ts +34 -0
  11. package/dist/es/es2018/types/src/generated/types/DataCleanRoomConnectionAttributesRepresentation.d.ts +28 -0
  12. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMatchBoostOutputBridgeTablePathAttributeRepresentation.d.ts +31 -0
  13. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMatchBoostOutputBridgeTablePathRepresentation.d.ts +30 -0
  14. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMatchBoostOutputBridgeTableRepresentation.d.ts +28 -0
  15. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMatchBoostOutputObjectConfigRepresentation.d.ts +34 -0
  16. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMatchBoostOutputObjectRepresentation.d.ts +29 -0
  17. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMatchBoostOutputRelatedTableRepresentation.d.ts +32 -0
  18. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMatchBoostUsecaseConfigRepresentation.d.ts +34 -0
  19. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberConfigRepresentation.d.ts +40 -0
  20. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberRepresentation.d.ts +8 -1
  21. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMetadataConfigurationRepresentation.d.ts +32 -0
  22. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMetadataMemberConfigRepresentation.d.ts +43 -0
  23. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMetadataOutputConfigRepresentation.d.ts +31 -0
  24. package/dist/es/es2018/types/src/generated/types/DataCleanRoomOutputConfigurationRepresentation.d.ts +34 -0
  25. package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderInputRepresentation.d.ts +7 -1
  26. package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderRepresentation.d.ts +7 -1
  27. package/dist/es/es2018/types/src/generated/types/DataCleanRoomSnowflakeConnectionAttributesRepresentation.d.ts +43 -0
  28. package/dist/es/es2018/types/src/generated/types/DataCleanRoomTemplateRepresentation.d.ts +7 -4
  29. package/dist/es/es2018/types/src/generated/types/DataCleanRoomUsecaseConfigInputRepresentation.d.ts +28 -0
  30. package/dist/es/es2018/types/src/generated/types/DataCleanRoomUsecaseConfigRepresentation.d.ts +28 -0
  31. package/dist/es/es2018/types/src/generated/types/MatchBoostOutputBridgeTableInputRepresentation.d.ts +28 -0
  32. package/dist/es/es2018/types/src/generated/types/MatchBoostOutputBridgeTablePathAttributeInputRepresentation.d.ts +31 -0
  33. package/dist/es/es2018/types/src/generated/types/MatchBoostOutputBridgeTablePathInputRepresentation.d.ts +30 -0
  34. package/dist/es/es2018/types/src/generated/types/MatchBoostOutputObjectConfigRepresentation.d.ts +34 -0
  35. package/dist/es/es2018/types/src/generated/types/MatchBoostOutputObjectInputRepresentation.d.ts +29 -0
  36. package/dist/es/es2018/types/src/generated/types/MatchBoostOutputRelatedTableInputRepresentation.d.ts +32 -0
  37. package/dist/es/es2018/types/src/generated/types/MatchBoostUsecaseConfigInputRepresentation.d.ts +34 -0
  38. package/dist/es/es2018/types/src/generated/types/UseCaseTemplateAttributeConfigRepresentation.d.ts +52 -0
  39. package/dist/es/es2018/types/src/generated/types/UseCaseTemplateConfigRepresentation.d.ts +29 -0
  40. package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMemberConfigRepresentation.d.ts +32 -0
  41. package/package.json +3 -3
  42. package/sfdc/index.js +601 -75
  43. package/src/raml/api.raml +497 -6
package/src/raml/api.raml CHANGED
@@ -150,6 +150,14 @@ types:
150
150
  description: Other source related configuration DC/AWS
151
151
  type: any
152
152
  required: false
153
+ packageType:
154
+ description: Dictates the type of the package
155
+ type: string
156
+ required: false
157
+ providerDataSource:
158
+ description: The source of provider data
159
+ type: string
160
+ required: false
153
161
  DataCleanRoomProviderRepresentation:
154
162
  description: Represents Cdp Data Clean Room Provider
155
163
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -228,6 +236,14 @@ types:
228
236
  description: Dictates whether useCase provided is of type Overlap/Activation/Custom
229
237
  type: DataCleanRoomUseCaseTypeRepresentation
230
238
  required: false
239
+ packageType:
240
+ description: Dictates the type of the package
241
+ type: string
242
+ required: false
243
+ providerDataSource:
244
+ description: The source of provider data
245
+ type: string
246
+ required: false
231
247
  UseCaseTemplateMappingAttributeRepresentation:
232
248
  description: Represents Cdp Data Clean Room Mapping details
233
249
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -499,6 +515,16 @@ types:
499
515
  specificationId?:
500
516
  description: Reference key to DataCleanRoomDataSpecification
501
517
  type: string
518
+ memberDomainUrl:
519
+ description: Member org domain URL
520
+ type: string
521
+ required: false
522
+ memberConfigs:
523
+ description: Member configs assocaited with the template
524
+ type: array
525
+ items:
526
+ type: DataCleanRoomMemberConfigRepresentation
527
+ required: false
502
528
  DataCleanRoomSpecificationCollectionRepresentation:
503
529
  description: Represents Data Clean Room Specification Collection
504
530
  # TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
@@ -651,7 +677,8 @@ types:
651
677
  type: string
652
678
  configuration:
653
679
  description: Configuration for use case template
654
- type: any
680
+ type: UseCaseTemplateConfigRepresentation
681
+ required: false
655
682
  description:
656
683
  description: Description of use case template
657
684
  type: string
@@ -674,6 +701,10 @@ types:
674
701
  description: Reference key to DataCleanRoomProvider record
675
702
  type: string
676
703
  required: false
704
+ metadataConfiguration:
705
+ description: metadata configuration for the template
706
+ type: DataCleanRoomMetadataConfigurationRepresentation
707
+ required: false
677
708
  DataCleanRoomCollaborationCollectionRepresentation:
678
709
  description: Represents Data Clean Room Collaboration Collection
679
710
  # TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
@@ -737,7 +768,92 @@ types:
737
768
  type: string
738
769
  specificationId:
739
770
  description: Record Id of DataCleanRoomSpecification
771
+ type: string | nil
772
+ required: false
773
+ outputConfiguration:
774
+ description: Output configuration for the collaboration involved
775
+ type: DataCleanRoomOutputConfigurationRepresentation
776
+ required: false
777
+ dataSpaceName:
778
+ description: Name of data space to which the collaboration is associated
740
779
  type: string
780
+ required: false
781
+
782
+ DataCleanRoomOutputConfigurationRepresentation:
783
+ description: Represents data clean room output configuration representation
784
+ type: object
785
+ properties:
786
+ outputDestinationType:
787
+ description: Output destination type
788
+ type: string
789
+ required: true
790
+ externalId:
791
+ description: unique Id for the output configuration
792
+ type: string
793
+ required: false
794
+ connectionAttributes:
795
+ description: Connection attributes for the output configuration
796
+ type: DataCleanRoomConnectionAttributesRepresentation
797
+ required: false
798
+
799
+ DataCleanRoomConnectionAttributesRepresentation:
800
+ description: Base representation for clean room connection attributes - extended by connector specific implementations. This is an abstract base class. Structure varies by connectorType. Concrete implementations (e.g., DataCleanRoomAwsS3ConnectionAttributesRepresentation) will extend this class.
801
+ type: object
802
+ properties:
803
+ connectorType:
804
+ description: Type of the connector
805
+ type: string
806
+ required: true
807
+
808
+ DataCleanRoomAwsS3ConnectionAttributesRepresentation:
809
+ description: Represents AWS S3 connection attributes for data clean room, extends DataCleanRoomConnectionAttributesRepresentation
810
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomConnectionAttributesRepresentation
811
+ # type: DataCleanRoomConnectionAttributesRepresentation
812
+ type: object
813
+ properties:
814
+ connectorType:
815
+ description: Type of the connector
816
+ type: string
817
+ required: true
818
+ roleArn:
819
+ description: IAM role used to connect to the s3 url provided
820
+ type: string
821
+ required: true
822
+ s3Url:
823
+ description: Full path of the s3 bucket with folders where the user wants the data to be shared
824
+ type: string
825
+ required: true
826
+
827
+ DataCleanRoomSnowflakeConnectionAttributesRepresentation:
828
+ description: Represents Snowflake connection attributes for data clean room, extends DataCleanRoomConnectionAttributesRepresentation
829
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomConnectionAttributesRepresentation
830
+ # type: DataCleanRoomConnectionAttributesRepresentation
831
+ type: object
832
+ properties:
833
+ connectorType:
834
+ description: Type of the connector
835
+ type: string
836
+ required: true
837
+ accountUrl:
838
+ description: Snowflake account url of the provider's account
839
+ type: string
840
+ required: true
841
+ schemaName:
842
+ description: Schema name of the provider's the final dataset
843
+ type: string
844
+ required: true
845
+ databaseName:
846
+ description: Database name of the provider's the final dataset
847
+ type: string
848
+ required: true
849
+ warehouseName:
850
+ description: Warehouse name of the provider's the final dataset
851
+ type: string
852
+ required: true
853
+ serviceUser:
854
+ description: Service user with the relevant access to the provided database and warehouse
855
+ type: string
856
+ required: true
741
857
 
742
858
  DataCleanRoomRejectInvitationInputRepresentation:
743
859
  description: Represents Cdp Data clean room Reject invitation input
@@ -899,6 +1015,120 @@ types:
899
1015
  description: List of queries defined in the template
900
1016
  type: CustomUseCaseTemplateQueryInputRepresentation
901
1017
  required: true
1018
+ useCaseConfigs:
1019
+ description: Map of use case type to usecase specific configs
1020
+ type: object
1021
+ required: false
1022
+ properties:
1023
+ //:
1024
+ type: DataCleanRoomUsecaseConfigInputRepresentation
1025
+
1026
+ DataCleanRoomUsecaseConfigInputRepresentation:
1027
+ description: Represents data clean room use case config input representation.
1028
+ properties:
1029
+ useCaseType:
1030
+ description: Type of the use case
1031
+ type: string
1032
+ required: true
1033
+
1034
+ MatchBoostUsecaseConfigInputRepresentation:
1035
+ description: Represents match boost use case config input, extends DataCleanRoomUseCaseConfigInputRepresentation
1036
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomUseCaseConfigInputRepresentation
1037
+ # type: DataCleanRoomUseCaseConfigInputRepresentation
1038
+ type: object
1039
+ properties:
1040
+ useCaseType:
1041
+ description: Type of the use case
1042
+ type: string
1043
+ required: true
1044
+ supportedContactPoints:
1045
+ description: List of contact points supported by the Provider
1046
+ type: array
1047
+ required: true
1048
+ items:
1049
+ type: any
1050
+ outputObjects:
1051
+ description: List of objects having output enriched dataset
1052
+ type: MatchBoostOutputObjectInputRepresentation
1053
+ required: true
1054
+
1055
+ MatchBoostOutputObjectInputRepresentation:
1056
+ description: Represents match boost output object input
1057
+ type: object
1058
+ properties:
1059
+ outputObjectConfigs:
1060
+ description: List of output object configs
1061
+ type: array
1062
+ required: true
1063
+ items:
1064
+ type: MatchBoostOutputObjectConfigRepresentation
1065
+
1066
+ MatchBoostOutputObjectConfigRepresentation:
1067
+ description: Represents match boost output object config
1068
+ type: object
1069
+ properties:
1070
+ objectName:
1071
+ description: Unique name of the entity
1072
+ type: string
1073
+ required: true
1074
+ bridgeTable:
1075
+ description: Details if this entity is a bridge table
1076
+ type: MatchBoostOutputBridgeTableInputRepresentation
1077
+ required: false
1078
+ relatedTable:
1079
+ description: Details for a non-bridge table entity
1080
+ type: MatchBoostOutputRelatedTableInputRepresentation
1081
+ required: false
1082
+
1083
+ MatchBoostOutputBridgeTableInputRepresentation:
1084
+ description: Represents match boost output bridge table input
1085
+ type: object
1086
+ properties:
1087
+ sourceIdFieldName:
1088
+ description: Column name corresponding to the equivalent column in the shared data
1089
+ type: string
1090
+ required: false
1091
+
1092
+ MatchBoostOutputRelatedTableInputRepresentation:
1093
+ description: Represents match boost output related table input
1094
+ type: object
1095
+ properties:
1096
+ sourceObjectName:
1097
+ description: Equivalent ssot object name
1098
+ type: string
1099
+ required: false
1100
+ pathFromBridgeTable:
1101
+ description: Path details identifying the relationship between bridge table and this entity
1102
+ type: array
1103
+ required: false
1104
+ items:
1105
+ type: MatchBoostOutputBridgeTablePathInputRepresentation
1106
+
1107
+ MatchBoostOutputBridgeTablePathInputRepresentation:
1108
+ description: Represents match boost output bridge table path input
1109
+ type: object
1110
+ properties:
1111
+ sourceAttribute:
1112
+ description: Source attribute of the path
1113
+ type: MatchBoostOutputBridgeTablePathAttributeInputRepresentation
1114
+ required: false
1115
+ targetAttribute:
1116
+ description: Target attribute of the path
1117
+ type: MatchBoostOutputBridgeTablePathAttributeInputRepresentation
1118
+ required: false
1119
+
1120
+ MatchBoostOutputBridgeTablePathAttributeInputRepresentation:
1121
+ description: Represents match boost output bridge table path attribute input
1122
+ type: object
1123
+ properties:
1124
+ objectName:
1125
+ description: Unique name of the entity
1126
+ type: string
1127
+ required: false
1128
+ fieldName:
1129
+ description: Unique field name of the entity
1130
+ type: string
1131
+ required: false
902
1132
 
903
1133
  CustomUseCaseTemplateTableInputRepresentation:
904
1134
  description: Represents data clean room custom template table input
@@ -951,6 +1181,10 @@ types:
951
1181
  description: defaultValue of the custom template column
952
1182
  type: string
953
1183
  required: false
1184
+ tooltip:
1185
+ description: Text displayed in the UI when the user interacts with the Info icon.
1186
+ type: string
1187
+ required: false
954
1188
 
955
1189
  CustomUseCaseTemplateQueryInputRepresentation:
956
1190
  description: Represents data clean room custom template query input
@@ -979,15 +1213,15 @@ types:
979
1213
  required: false
980
1214
  type:
981
1215
  description: type of the custom template query
982
- type: string
983
- required: true
1216
+ type: string | nil
1217
+ required: false
984
1218
  source:
985
1219
  description: Actual Query to be executed
986
- type: string
987
- required: true
1220
+ type: string | nil
1221
+ required: false
988
1222
  queryParameters:
989
1223
  description: query parameters
990
- type: CustomUseCaseTemplateQueryParamRepresentation
1224
+ type: CustomUseCaseTemplateQueryParamRepresentation | nil
991
1225
  required: false
992
1226
  referencedTables:
993
1227
  description: List of tables referenced by the query
@@ -1054,6 +1288,263 @@ types:
1054
1288
  items:
1055
1289
  type: string
1056
1290
 
1291
+ DataCleanRoomMemberConfigRepresentation:
1292
+ description: Represents member configs associated with template
1293
+ type: object
1294
+ properties:
1295
+ id:
1296
+ description: Id of the member config
1297
+ type: string
1298
+ required: false
1299
+ templateVersionId:
1300
+ description: Reference key to DataCleanRoomTemplateVer
1301
+ type: string
1302
+ required: false
1303
+ outputDestinationId:
1304
+ description: Reference key to OutputDestination
1305
+ type: string
1306
+ required: false
1307
+ outputDestinationType:
1308
+ description: Output destination type
1309
+ type: string
1310
+ required: false
1311
+ externalId:
1312
+ description: Unique identifier for the output destination connection
1313
+ type: string
1314
+ required: false
1315
+
1316
+ DataCleanRoomMetadataConfigurationRepresentation:
1317
+ description: Represents metadata configruation associated with template
1318
+ type: object
1319
+ properties:
1320
+ memberConfig:
1321
+ description: list of member-specific metadata configurations
1322
+ type: array
1323
+ required: false
1324
+ items:
1325
+ type: DataCleanRoomMetadataMemberConfigRepresentation
1326
+ usecaseConfig:
1327
+ description: Use case specific configuration
1328
+ type: DataCleanRoomUsecaseConfigRepresentation
1329
+ required: false
1330
+
1331
+ DataCleanRoomMetadataMemberConfigRepresentation:
1332
+ description: Represents metadata member config associated with template
1333
+ type: object
1334
+ properties:
1335
+ type:
1336
+ description: Type of member (CONSUMER or PROVIDER)
1337
+ type: string
1338
+ required: false
1339
+ canTriggerQuery:
1340
+ description: Whether this member can trigger query execution
1341
+ type: boolean
1342
+ required: false
1343
+ canReceiveResult:
1344
+ description: Whether this member can receive query results
1345
+ type: boolean
1346
+ required: false
1347
+ paysForQueries:
1348
+ description: Whether this member pays for query execution
1349
+ type: boolean
1350
+ required: false
1351
+ contributesData:
1352
+ description: Whether this member contributes data to the clean room
1353
+ type: boolean
1354
+ required: false
1355
+ outputConfig:
1356
+ description: Output configuration for query results
1357
+ type: DataCleanRoomMetadataOutputConfigRepresentation
1358
+ required: false
1359
+
1360
+ DataCleanRoomMetadataOutputConfigRepresentation:
1361
+ description: Represents metadata output config for query results
1362
+ type: object
1363
+ properties:
1364
+ destinationType:
1365
+ description: Type of output destination
1366
+ type: any
1367
+ required: false
1368
+ connectorType:
1369
+ description: Type of connector
1370
+ type: any
1371
+ required: false
1372
+
1373
+ DataCleanRoomUsecaseConfigRepresentation:
1374
+ description: Base representation for use case specific configuration. This is an abstract base class. Structure varies by useCaseType.
1375
+ type: object
1376
+ properties:
1377
+ useCaseType:
1378
+ description: Type of the use case
1379
+ type: any
1380
+ required: false
1381
+
1382
+ DataCleanRoomMatchBoostUsecaseConfigRepresentation:
1383
+ description: Represents match boost use case config, extends DataCleanRoomUsecaseConfigRepresentation
1384
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomUsecaseConfigRepresentation
1385
+ # type: DataCleanRoomUsecaseConfigRepresentation
1386
+ type: object
1387
+ properties:
1388
+ useCaseType:
1389
+ description: Type of the use case
1390
+ type: any
1391
+ required: false
1392
+ supportedContactPoints:
1393
+ description: List of contact points supported by the Provider
1394
+ type: array
1395
+ required: false
1396
+ items:
1397
+ type: any
1398
+ outputObjects:
1399
+ description: List of objects having output enriched dataset
1400
+ type: DataCleanRoomMatchBoostOutputObjectRepresentation
1401
+ required: false
1402
+
1403
+ DataCleanRoomMatchBoostOutputObjectRepresentation:
1404
+ description: Represents match boost output object
1405
+ type: object
1406
+ properties:
1407
+ outputObjectConfigs:
1408
+ description: List of output object configs
1409
+ type: array
1410
+ required: false
1411
+ items:
1412
+ type: DataCleanRoomMatchBoostOutputObjectConfigRepresentation
1413
+
1414
+ DataCleanRoomMatchBoostOutputObjectConfigRepresentation:
1415
+ description: Represents match boost output object config
1416
+ type: object
1417
+ properties:
1418
+ objectName:
1419
+ description: Unique name of the entity
1420
+ type: string
1421
+ required: false
1422
+ bridgeTable:
1423
+ description: Details if this entity is a bridge table
1424
+ type: DataCleanRoomMatchBoostOutputBridgeTableRepresentation
1425
+ required: false
1426
+ relatedTable:
1427
+ description: Details for a non-bridge table entity
1428
+ type: DataCleanRoomMatchBoostOutputRelatedTableRepresentation
1429
+ required: false
1430
+
1431
+ DataCleanRoomMatchBoostOutputBridgeTableRepresentation:
1432
+ description: Represents match boost output bridge table
1433
+ type: object
1434
+ properties:
1435
+ sourceIdFieldName:
1436
+ description: Column name corresponding to the equivalent column in the shared data
1437
+ type: string
1438
+ required: false
1439
+
1440
+ DataCleanRoomMatchBoostOutputRelatedTableRepresentation:
1441
+ description: Represents match boost output related table
1442
+ type: object
1443
+ properties:
1444
+ sourceObjectName:
1445
+ description: Equivalent ssot object name
1446
+ type: string
1447
+ required: false
1448
+ pathFromBridgeTable:
1449
+ description: Path details identifying the relationship between bridge table and this entity
1450
+ type: array
1451
+ required: false
1452
+ items:
1453
+ type: DataCleanRoomMatchBoostOutputBridgeTablePathRepresentation
1454
+
1455
+ DataCleanRoomMatchBoostOutputBridgeTablePathRepresentation:
1456
+ description: Represents match boost output bridge table path
1457
+ type: object
1458
+ properties:
1459
+ sourceAttribute:
1460
+ description: Source attribute of the path
1461
+ type: DataCleanRoomMatchBoostOutputBridgeTablePathAttributeRepresentation
1462
+ required: false
1463
+ targetAttribute:
1464
+ description: Target attribute of the path
1465
+ type: DataCleanRoomMatchBoostOutputBridgeTablePathAttributeRepresentation
1466
+ required: false
1467
+
1468
+ DataCleanRoomMatchBoostOutputBridgeTablePathAttributeRepresentation:
1469
+ description: Represents match boost output bridge table path attribute
1470
+ type: object
1471
+ properties:
1472
+ objectName:
1473
+ description: Unique name of the entity
1474
+ type: string
1475
+ required: false
1476
+ fieldName:
1477
+ description: Unique field name of the entity
1478
+ type: string
1479
+ required: false
1480
+
1481
+ UseCaseTemplateConfigRepresentation:
1482
+ description: Represents usecase template configuration output representation
1483
+ type: object
1484
+ properties:
1485
+ memberConfigs:
1486
+ description: Usecase template member configurations
1487
+ type: array
1488
+ required: false
1489
+ items:
1490
+ type: UseCaseTemplateMemberConfigRepresentation
1491
+
1492
+ UseCaseTemplateMemberConfigRepresentation:
1493
+ description: Represents usecase template member configuration output representation
1494
+ type: object
1495
+ properties:
1496
+ memberType:
1497
+ description: Usecase member type
1498
+ type: any
1499
+ required: false
1500
+ attributeConfigs:
1501
+ description: Usecase template attribute configurations
1502
+ type: array
1503
+ required: false
1504
+ items:
1505
+ type: UseCaseTemplateAttributeConfigRepresentation
1506
+
1507
+ UseCaseTemplateAttributeConfigRepresentation:
1508
+ description: Represents usecase template attribute configuration output representation
1509
+ type: object
1510
+ properties:
1511
+ alias:
1512
+ description: UseCase Template Attribute alias
1513
+ type: string
1514
+ required: false
1515
+ description:
1516
+ description: UseCase Template Attribute description
1517
+ type: string
1518
+ required: false
1519
+ required:
1520
+ description: Captures whether the attribute is mandatory to be mapped or not
1521
+ type: boolean
1522
+ required: false
1523
+ id:
1524
+ description: UseCase Template Attribute id
1525
+ type: string
1526
+ required: false
1527
+ label:
1528
+ description: UseCase Template Attribute label
1529
+ type: string
1530
+ required: false
1531
+ tableName:
1532
+ description: UseCase Template Attribute tableName
1533
+ type: string
1534
+ required: false
1535
+ defaultValue:
1536
+ description: UseCase Template Attribute defaultValue
1537
+ type: string
1538
+ required: false
1539
+ queryOptions:
1540
+ description: UseCase Template Attribute Query Configuration
1541
+ type: any
1542
+ required: false
1543
+ tooltip:
1544
+ description: Text displayed in the UI when the user interacts with the Info icon.
1545
+ type: string
1546
+ required: false
1547
+
1057
1548
  /ssot:
1058
1549
  /data-clean-room:
1059
1550
  /providers: