@salesforce/lds-adapters-cdp-data-clean-room 1.390.0 → 1.392.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.
- package/dist/es/es2018/cdp-data-clean-room.js +1011 -400
- package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomCollaboration.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomSpecification.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/adapters/createProvider.d.ts +13 -5
- package/dist/es/es2018/types/src/generated/adapters/executeDataCleanRoomQuery.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataCleanRoomTemplatePaginated.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataCleanRoomTemplatesByProviderIdPaginated.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCleanRoomProvidersTemplatesByProviderIdOrName.d.ts +21 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCleanRoomTemplates.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborations.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborationsActionsRunByCollaborationIdOrApiName.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomProviders.d.ts +13 -5
- package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomSpecifications.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateAnalysisConfigRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateColumnRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateInputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateQueryConfig.d.ts +49 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateQueryInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateQueryParamConfig.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateQueryParamRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateTableConfig.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateTableInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationInputRepresentation.d.ts +6 -3
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationInputRepresentation.d.ts +12 -3
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderInputRepresentation.d.ts +29 -11
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomProviderRepresentation.d.ts +26 -11
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomQueryJobInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomQueryJobRepresentation.d.ts +16 -4
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomTemplateRepresentation.d.ts +13 -1
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomUseCaseTypeInputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/DataCleanRoomUseCaseTypeRepresentation.d.ts +28 -0
- package/package.json +3 -3
- package/sfdc/index.js +1021 -399
- package/src/raml/api.raml +327 -9
- package/src/raml/luvio.raml +4 -0
package/src/raml/api.raml
CHANGED
|
@@ -95,21 +95,21 @@ types:
|
|
|
95
95
|
description:
|
|
96
96
|
description: description
|
|
97
97
|
type: string
|
|
98
|
-
required:
|
|
98
|
+
required: false
|
|
99
99
|
templateNames:
|
|
100
100
|
description: List of usecase templates that the provider supports
|
|
101
101
|
type: array
|
|
102
102
|
items:
|
|
103
103
|
type: string
|
|
104
|
-
required:
|
|
104
|
+
required: false
|
|
105
105
|
dataCloudOrgId:
|
|
106
106
|
description: Unique ID representing Data Cloud org
|
|
107
107
|
type: string
|
|
108
|
-
required:
|
|
108
|
+
required: false
|
|
109
109
|
domainUrl:
|
|
110
110
|
description: Domain URL of the provider
|
|
111
111
|
type: string
|
|
112
|
-
required:
|
|
112
|
+
required: false
|
|
113
113
|
dataspaceName:
|
|
114
114
|
description: dataspaceName
|
|
115
115
|
type: string
|
|
@@ -125,7 +125,31 @@ types:
|
|
|
125
125
|
offCoreTenantId:
|
|
126
126
|
description: Off Core Tenant Id of the provider
|
|
127
127
|
type: string
|
|
128
|
-
required:
|
|
128
|
+
required: false
|
|
129
|
+
source:
|
|
130
|
+
description: provider source like DataCloud, AWS, GCP
|
|
131
|
+
type: string
|
|
132
|
+
required: false
|
|
133
|
+
templateJson:
|
|
134
|
+
description: extensible template uploaded by user
|
|
135
|
+
type: CustomUseCaseTemplateInputRepresentation
|
|
136
|
+
required: false
|
|
137
|
+
templateType:
|
|
138
|
+
description: Dictates whether template provided is of type SALESFORCE/CUSTOM
|
|
139
|
+
type: string
|
|
140
|
+
required: false
|
|
141
|
+
useCaseTypeConfig:
|
|
142
|
+
description: Dictates whether useCase provided is of type Overlap/Activation/Custom
|
|
143
|
+
type: DataCleanRoomUseCaseTypeInputRepresentation
|
|
144
|
+
required: false
|
|
145
|
+
providerName:
|
|
146
|
+
description: Name of the Provider provided by user
|
|
147
|
+
type: string
|
|
148
|
+
required: false
|
|
149
|
+
sourceConfiguration:
|
|
150
|
+
description: Other source related configuration DC/AWS
|
|
151
|
+
type: any
|
|
152
|
+
required: false
|
|
129
153
|
DataCleanRoomProviderRepresentation:
|
|
130
154
|
description: Represents Cdp Data Clean Room Provider
|
|
131
155
|
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
@@ -161,12 +185,15 @@ types:
|
|
|
161
185
|
dataCloudOrgId:
|
|
162
186
|
description: Data Cloud Provider Org Id
|
|
163
187
|
type: string
|
|
188
|
+
required: false
|
|
164
189
|
description:
|
|
165
190
|
description: Data Clean Room Provider Description
|
|
166
191
|
type: string
|
|
192
|
+
required: false
|
|
167
193
|
domainUrl:
|
|
168
194
|
description: Data Clean Room Provider Domain Url
|
|
169
195
|
type: string
|
|
196
|
+
required: false
|
|
170
197
|
logoUrl:
|
|
171
198
|
description: Data Clean Room Provider Logo Url
|
|
172
199
|
type: string
|
|
@@ -174,11 +201,33 @@ types:
|
|
|
174
201
|
offCoreTenantId:
|
|
175
202
|
description: Data Clean Room Provider Off Core Tenant Id
|
|
176
203
|
type: string
|
|
204
|
+
required: false
|
|
177
205
|
templateNames:
|
|
178
206
|
description: Data Clean Room Provider Template Names
|
|
179
207
|
type: array
|
|
208
|
+
required: false
|
|
180
209
|
items:
|
|
181
210
|
type: string
|
|
211
|
+
creationType:
|
|
212
|
+
description: Defines how provider package is created in an org
|
|
213
|
+
type: string
|
|
214
|
+
required: false
|
|
215
|
+
source:
|
|
216
|
+
description: provider source like DataCloud, AWS, GCP
|
|
217
|
+
type: string
|
|
218
|
+
required: false
|
|
219
|
+
providerName:
|
|
220
|
+
description: Name of the Provider provided by user
|
|
221
|
+
type: string
|
|
222
|
+
required: false
|
|
223
|
+
sourceConfiguration:
|
|
224
|
+
description: Other source related configuration DC/AWS
|
|
225
|
+
type: any
|
|
226
|
+
required: false
|
|
227
|
+
useCaseTypeConfig:
|
|
228
|
+
description: Dictates whether useCase provided is of type Overlap/Activation/Custom
|
|
229
|
+
type: DataCleanRoomUseCaseTypeRepresentation
|
|
230
|
+
required: false
|
|
182
231
|
UseCaseTemplateMappingAttributeRepresentation:
|
|
183
232
|
description: Represents Cdp Data Clean Room Mapping details
|
|
184
233
|
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
@@ -316,6 +365,7 @@ types:
|
|
|
316
365
|
templateName:
|
|
317
366
|
description: Name of the use case template for which mapping is provided
|
|
318
367
|
type: string
|
|
368
|
+
required: false
|
|
319
369
|
name:
|
|
320
370
|
description: name
|
|
321
371
|
type: string
|
|
@@ -324,13 +374,26 @@ types:
|
|
|
324
374
|
description: label
|
|
325
375
|
type: string
|
|
326
376
|
required: true
|
|
327
|
-
description
|
|
377
|
+
description:
|
|
328
378
|
description: description
|
|
329
379
|
type: string
|
|
380
|
+
required: false
|
|
330
381
|
dataspaceName:
|
|
331
382
|
description: dataspaceName
|
|
332
383
|
type: string
|
|
333
384
|
required: false
|
|
385
|
+
templateVersionId:
|
|
386
|
+
description: Record Id from DataCleanRoomTemplateVersion entity
|
|
387
|
+
type: string
|
|
388
|
+
required: false
|
|
389
|
+
templateType:
|
|
390
|
+
description: Dictates whether template provided is of type SALESFORCE/CUSTOM
|
|
391
|
+
type: string
|
|
392
|
+
required: false
|
|
393
|
+
useCaseType:
|
|
394
|
+
description: Dictates whether useCase provided is of type Overlap/Activation/Custom
|
|
395
|
+
type: string
|
|
396
|
+
required: false
|
|
334
397
|
DataCleanRoomDataSpecificationRepresentation:
|
|
335
398
|
description: Represents Cdp Data Clean Room Specification
|
|
336
399
|
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
@@ -390,6 +453,10 @@ types:
|
|
|
390
453
|
templateVersion?:
|
|
391
454
|
description: Template Version Info for which data clean room is created
|
|
392
455
|
type: DataCleanRoomTemplateRepresentation
|
|
456
|
+
providerId:
|
|
457
|
+
description: Reference key to DataCleanRoomProvider record
|
|
458
|
+
type: string
|
|
459
|
+
required: false
|
|
393
460
|
DataCleanRoomMemberRepresentation:
|
|
394
461
|
description: Represents Cdp Data Clean Room Members
|
|
395
462
|
type: object
|
|
@@ -412,6 +479,7 @@ types:
|
|
|
412
479
|
memberOrgId:
|
|
413
480
|
description: Id of the member org
|
|
414
481
|
type: string
|
|
482
|
+
required: false
|
|
415
483
|
memberStatus:
|
|
416
484
|
description: Status of the collaboration member
|
|
417
485
|
type: string
|
|
@@ -483,12 +551,17 @@ types:
|
|
|
483
551
|
description: Developer name of use case template that the collaboration will
|
|
484
552
|
support
|
|
485
553
|
type: string
|
|
554
|
+
required: false
|
|
486
555
|
label:
|
|
487
556
|
description: Label of the asset
|
|
488
557
|
type: string
|
|
489
558
|
description?:
|
|
490
559
|
description: Description of data clean room
|
|
491
560
|
type: string
|
|
561
|
+
templateVersionId:
|
|
562
|
+
description: Id of the template version
|
|
563
|
+
type: string
|
|
564
|
+
required: false
|
|
492
565
|
DataCleanRoomCollaborationRepresentation:
|
|
493
566
|
description: Represents Cdp Data Clean Room Collaboration
|
|
494
567
|
# TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
|
|
@@ -585,6 +658,22 @@ types:
|
|
|
585
658
|
queryTemplate:
|
|
586
659
|
description: Defined Query template for use case template
|
|
587
660
|
type: any
|
|
661
|
+
useCaseType:
|
|
662
|
+
description: Type identifying whether its OOTB template or custom template
|
|
663
|
+
type: string
|
|
664
|
+
required: false
|
|
665
|
+
templateVersion:
|
|
666
|
+
description: version of the template
|
|
667
|
+
type: string
|
|
668
|
+
required: false
|
|
669
|
+
templateType:
|
|
670
|
+
description: Type identifying whether its OOTB template or custom template
|
|
671
|
+
type: string
|
|
672
|
+
required: false
|
|
673
|
+
providerId:
|
|
674
|
+
description: Reference key to DataCleanRoomProvider record
|
|
675
|
+
type: string
|
|
676
|
+
required: false
|
|
588
677
|
DataCleanRoomCollaborationCollectionRepresentation:
|
|
589
678
|
description: Represents Data Clean Room Collaboration Collection
|
|
590
679
|
# TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
|
|
@@ -683,6 +772,10 @@ types:
|
|
|
683
772
|
type: array
|
|
684
773
|
items:
|
|
685
774
|
type: string
|
|
775
|
+
queryParameters:
|
|
776
|
+
description: Map of query parameters along-with their values, required for the query to be executed
|
|
777
|
+
type: any
|
|
778
|
+
required: false
|
|
686
779
|
|
|
687
780
|
DataCleanRoomQueryJobRepresentation:
|
|
688
781
|
description: Represents Cdp Data Clean Room Query Job
|
|
@@ -719,9 +812,6 @@ types:
|
|
|
719
812
|
errorMessage?:
|
|
720
813
|
description: Error message specifying the query failure reason, if any
|
|
721
814
|
type: string
|
|
722
|
-
result?:
|
|
723
|
-
description: Number of records obtained as part of query run
|
|
724
|
-
type: integer
|
|
725
815
|
status:
|
|
726
816
|
description: Query Status of Query Job
|
|
727
817
|
type: string
|
|
@@ -738,6 +828,26 @@ types:
|
|
|
738
828
|
type: array
|
|
739
829
|
items:
|
|
740
830
|
type: string
|
|
831
|
+
queryParam:
|
|
832
|
+
description: Date time at which query was triggered
|
|
833
|
+
type: any
|
|
834
|
+
required: false
|
|
835
|
+
outputDMOName:
|
|
836
|
+
description: Result DMO developer name in case of Activation usecase; result report name in case of other usecases.
|
|
837
|
+
type: string
|
|
838
|
+
required: false
|
|
839
|
+
reportId:
|
|
840
|
+
description: Id of the report associated with output DMO
|
|
841
|
+
type: string
|
|
842
|
+
required: false
|
|
843
|
+
reportName:
|
|
844
|
+
description: Name of the report associated with output DMO
|
|
845
|
+
type: string
|
|
846
|
+
required: false
|
|
847
|
+
executedBy:
|
|
848
|
+
description: Name of the user who executed the query job
|
|
849
|
+
type: string
|
|
850
|
+
required: false
|
|
741
851
|
|
|
742
852
|
DataCleanRoomQueryJobHistoryCollectionRepresentation:
|
|
743
853
|
description: Represents Data Clean Room Job History Collection
|
|
@@ -765,6 +875,184 @@ types:
|
|
|
765
875
|
items:
|
|
766
876
|
type: DataCleanRoomQueryJobRepresentation
|
|
767
877
|
|
|
878
|
+
CustomUseCaseTemplateInputRepresentation:
|
|
879
|
+
description: Represents data clean room custom template
|
|
880
|
+
properties:
|
|
881
|
+
name:
|
|
882
|
+
description: Name of the custom template
|
|
883
|
+
type: string
|
|
884
|
+
required: true
|
|
885
|
+
description:
|
|
886
|
+
description: Description of the custom template
|
|
887
|
+
type: string
|
|
888
|
+
required: true
|
|
889
|
+
version:
|
|
890
|
+
description: version of the custom template
|
|
891
|
+
type: string
|
|
892
|
+
required: true
|
|
893
|
+
tables:
|
|
894
|
+
description: List of tables referenced in template queries
|
|
895
|
+
type: CustomUseCaseTemplateTableInputRepresentation
|
|
896
|
+
required: true
|
|
897
|
+
queries:
|
|
898
|
+
description: List of queries defined in the template
|
|
899
|
+
type: CustomUseCaseTemplateQueryInputRepresentation
|
|
900
|
+
required: true
|
|
901
|
+
|
|
902
|
+
CustomUseCaseTemplateTableInputRepresentation:
|
|
903
|
+
description: Represents data clean room custom template table input
|
|
904
|
+
properties:
|
|
905
|
+
tableConfigs:
|
|
906
|
+
description: List of table configs
|
|
907
|
+
type: array
|
|
908
|
+
items:
|
|
909
|
+
type: CustomUseCaseTemplateTableConfig
|
|
910
|
+
required: true
|
|
911
|
+
|
|
912
|
+
CustomUseCaseTemplateTableConfig:
|
|
913
|
+
description: Represents data clean room custom template table
|
|
914
|
+
properties:
|
|
915
|
+
name:
|
|
916
|
+
description: Name of the custom template table
|
|
917
|
+
type: string
|
|
918
|
+
required: true
|
|
919
|
+
description:
|
|
920
|
+
description: Description of the custom template table
|
|
921
|
+
type: string
|
|
922
|
+
required: true
|
|
923
|
+
role:
|
|
924
|
+
description: Role of the custom template
|
|
925
|
+
type: string
|
|
926
|
+
required: true
|
|
927
|
+
columns:
|
|
928
|
+
description: List of columns in the table
|
|
929
|
+
type: array
|
|
930
|
+
items:
|
|
931
|
+
type: CustomUseCaseTemplateColumnRepresentation
|
|
932
|
+
required: true
|
|
933
|
+
|
|
934
|
+
CustomUseCaseTemplateColumnRepresentation:
|
|
935
|
+
description: Represents data clean room custom template column
|
|
936
|
+
properties:
|
|
937
|
+
name:
|
|
938
|
+
description: Name of the custom template column
|
|
939
|
+
type: string
|
|
940
|
+
required: true
|
|
941
|
+
description:
|
|
942
|
+
description: Description of the custom template column
|
|
943
|
+
type: string
|
|
944
|
+
required: true
|
|
945
|
+
type:
|
|
946
|
+
description: type of the custom template column
|
|
947
|
+
type: string
|
|
948
|
+
required: true
|
|
949
|
+
defaultValue:
|
|
950
|
+
description: defaultValue of the custom template column
|
|
951
|
+
type: string
|
|
952
|
+
required: false
|
|
953
|
+
|
|
954
|
+
CustomUseCaseTemplateQueryInputRepresentation:
|
|
955
|
+
description: Represents data clean room custom template query input
|
|
956
|
+
properties:
|
|
957
|
+
queryConfigs:
|
|
958
|
+
description: List of query configs
|
|
959
|
+
type: array
|
|
960
|
+
items:
|
|
961
|
+
type: CustomUseCaseTemplateQueryConfig
|
|
962
|
+
required: true
|
|
963
|
+
|
|
964
|
+
CustomUseCaseTemplateQueryConfig:
|
|
965
|
+
description: Represents data clean room custom template query
|
|
966
|
+
properties:
|
|
967
|
+
name:
|
|
968
|
+
description: Name of the custom template query
|
|
969
|
+
type: string
|
|
970
|
+
required: true
|
|
971
|
+
description:
|
|
972
|
+
description: Description of the custom template query
|
|
973
|
+
type: string
|
|
974
|
+
required: true
|
|
975
|
+
usecase:
|
|
976
|
+
description: Name of the associated use case
|
|
977
|
+
type: string
|
|
978
|
+
required: false
|
|
979
|
+
type:
|
|
980
|
+
description: type of the custom template query
|
|
981
|
+
type: string
|
|
982
|
+
required: true
|
|
983
|
+
source:
|
|
984
|
+
description: Actual Query to be executed
|
|
985
|
+
type: string
|
|
986
|
+
required: true
|
|
987
|
+
queryParameters:
|
|
988
|
+
description: query parameters
|
|
989
|
+
type: CustomUseCaseTemplateQueryParamRepresentation
|
|
990
|
+
required: false
|
|
991
|
+
referencedTables:
|
|
992
|
+
description: List of tables referenced by the query
|
|
993
|
+
type: array
|
|
994
|
+
items:
|
|
995
|
+
type: string
|
|
996
|
+
required: true
|
|
997
|
+
analysisConfigs:
|
|
998
|
+
description: Additional configurations for the query
|
|
999
|
+
type: CustomUseCaseTemplateAnalysisConfigRepresentation
|
|
1000
|
+
required: false
|
|
1001
|
+
|
|
1002
|
+
CustomUseCaseTemplateQueryParamRepresentation:
|
|
1003
|
+
description: Represents data clean room custom template query parameter
|
|
1004
|
+
properties:
|
|
1005
|
+
queryParamConfigs:
|
|
1006
|
+
description: List of queries parameters defined in the template.
|
|
1007
|
+
type: array
|
|
1008
|
+
items:
|
|
1009
|
+
type: CustomUseCaseTemplateQueryParamConfig
|
|
1010
|
+
required: true
|
|
1011
|
+
|
|
1012
|
+
CustomUseCaseTemplateQueryParamConfig:
|
|
1013
|
+
description: Represents data clean room custom template query parameter
|
|
1014
|
+
properties:
|
|
1015
|
+
name:
|
|
1016
|
+
description: Name of the custom template query parameter
|
|
1017
|
+
type: string
|
|
1018
|
+
required: true
|
|
1019
|
+
description:
|
|
1020
|
+
description: Description of the custom template query parameter
|
|
1021
|
+
type: string
|
|
1022
|
+
required: true
|
|
1023
|
+
type:
|
|
1024
|
+
description: type of the custom template query parameter
|
|
1025
|
+
type: string
|
|
1026
|
+
required: true
|
|
1027
|
+
|
|
1028
|
+
CustomUseCaseTemplateAnalysisConfigRepresentation:
|
|
1029
|
+
description: Represents data clean room custom template analysis config
|
|
1030
|
+
properties:
|
|
1031
|
+
outputPath:
|
|
1032
|
+
description: output path for saving the result of the query
|
|
1033
|
+
type: string
|
|
1034
|
+
required: false
|
|
1035
|
+
|
|
1036
|
+
DataCleanRoomUseCaseTypeInputRepresentation:
|
|
1037
|
+
description: Represents Data Clean Room Use Case Type Input
|
|
1038
|
+
properties:
|
|
1039
|
+
useCaseTypes:
|
|
1040
|
+
description: Dictates whether useCase provided is of type Overlap/Activation/Custom
|
|
1041
|
+
type: array
|
|
1042
|
+
required: false
|
|
1043
|
+
items:
|
|
1044
|
+
type: string
|
|
1045
|
+
|
|
1046
|
+
DataCleanRoomUseCaseTypeRepresentation:
|
|
1047
|
+
description: Represents Data Clean Room Use Case Type output
|
|
1048
|
+
properties:
|
|
1049
|
+
useCaseTypes:
|
|
1050
|
+
description: Dictates whether useCase provided is of type Overlap/Activation/Custom
|
|
1051
|
+
type: array
|
|
1052
|
+
required: false
|
|
1053
|
+
items:
|
|
1054
|
+
type: string
|
|
1055
|
+
|
|
768
1056
|
/ssot:
|
|
769
1057
|
/data-clean-room:
|
|
770
1058
|
/providers:
|
|
@@ -895,6 +1183,9 @@ types:
|
|
|
895
1183
|
orderBy:
|
|
896
1184
|
type: string
|
|
897
1185
|
required: false
|
|
1186
|
+
filters:
|
|
1187
|
+
type: string
|
|
1188
|
+
required: false
|
|
898
1189
|
/collaborations/{collaborationIdOrApiName}/actions:
|
|
899
1190
|
/accept-invitation:
|
|
900
1191
|
put:
|
|
@@ -977,3 +1268,30 @@ types:
|
|
|
977
1268
|
collaborationIdOrApiName:
|
|
978
1269
|
type: string
|
|
979
1270
|
required: true
|
|
1271
|
+
/providers/{providerIdOrName}/templates:
|
|
1272
|
+
get:
|
|
1273
|
+
displayName: getDataCleanRoomTemplatesByProviderIdPaginated
|
|
1274
|
+
description: Gets the paginated list of all templates for a given provider ID
|
|
1275
|
+
responses:
|
|
1276
|
+
'200':
|
|
1277
|
+
description: Success
|
|
1278
|
+
body:
|
|
1279
|
+
application/json:
|
|
1280
|
+
type: DataCleanRoomTemplateCollectionRepresentation
|
|
1281
|
+
queryParameters:
|
|
1282
|
+
filters:
|
|
1283
|
+
type: string
|
|
1284
|
+
required: false
|
|
1285
|
+
limit:
|
|
1286
|
+
type: integer
|
|
1287
|
+
required: false
|
|
1288
|
+
offset:
|
|
1289
|
+
type: integer
|
|
1290
|
+
required: false
|
|
1291
|
+
orderBy:
|
|
1292
|
+
type: string
|
|
1293
|
+
required: false
|
|
1294
|
+
uriParameters:
|
|
1295
|
+
providerIdOrName:
|
|
1296
|
+
type: string
|
|
1297
|
+
required: true
|