@salesforce/lds-adapters-cdp-data-clean-room 1.428.0-dev1 → 1.428.0-dev11

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 (25) hide show
  1. package/dist/es/es2018/cdp-data-clean-room.js +171 -81
  2. package/dist/es/es2018/types/src/generated/adapters/acceptDataCleanRoomInvitation.d.ts +1 -0
  3. package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomCollaboration.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomSpecification.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/adapters/executeDataCleanRoomQuery.d.ts +1 -0
  6. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborations.d.ts +1 -0
  7. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborationsActionsAcceptInvitationByCollaborationIdOrApiName.d.ts +1 -0
  8. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborationsActionsRunByCollaborationIdOrApiName.d.ts +1 -0
  9. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomSpecifications.d.ts +1 -0
  10. package/dist/es/es2018/types/src/generated/types/DataCleanRoomAcceptInvitationInputRepresentation.d.ts +4 -1
  11. package/dist/es/es2018/types/src/generated/types/DataCleanRoomAwsS3OutputDestinationConfigRepresentation.d.ts +34 -0
  12. package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationInputRepresentation.d.ts +4 -1
  13. package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationRepresentation.d.ts +4 -1
  14. package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationInputRepresentation.d.ts +4 -1
  15. package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationRepresentation.d.ts +4 -1
  16. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberConfigRepresentation.d.ts +5 -1
  17. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberRepresentation.d.ts +4 -1
  18. package/dist/es/es2018/types/src/generated/types/DataCleanRoomOutputDestinationConfigRepresentation.d.ts +28 -0
  19. package/dist/es/es2018/types/src/generated/types/DataCleanRoomQueryJobHistoryCollectionRepresentation.d.ts +4 -1
  20. package/dist/es/es2018/types/src/generated/types/DataCleanRoomQueryJobInputRepresentation.d.ts +4 -1
  21. package/dist/es/es2018/types/src/generated/types/DataCleanRoomQueryJobRepresentation.d.ts +8 -2
  22. package/dist/es/es2018/types/src/generated/types/DataCleanRoomSnowflakeOutputDestinationConfigRepresentation.d.ts +43 -0
  23. package/package.json +3 -3
  24. package/sfdc/index.js +100 -10
  25. package/src/raml/api.raml +108 -1
package/sfdc/index.js CHANGED
@@ -103,7 +103,7 @@ function createLink(ref) {
103
103
  };
104
104
  }
105
105
 
106
- function validate$C(obj, path = 'DataCleanRoomConnectionAttributesRepresentation') {
106
+ function validate$D(obj, path = 'DataCleanRoomConnectionAttributesRepresentation') {
107
107
  const v_error = (() => {
108
108
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
109
109
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -117,7 +117,7 @@ function validate$C(obj, path = 'DataCleanRoomConnectionAttributesRepresentation
117
117
  return v_error === undefined ? null : v_error;
118
118
  }
119
119
 
120
- function validate$B(obj, path = 'DataCleanRoomOutputConfigurationRepresentation') {
120
+ function validate$C(obj, path = 'DataCleanRoomOutputConfigurationRepresentation') {
121
121
  const v_error = (() => {
122
122
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
123
123
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -125,7 +125,7 @@ function validate$B(obj, path = 'DataCleanRoomOutputConfigurationRepresentation'
125
125
  if (obj.connectionAttributes !== undefined) {
126
126
  const obj_connectionAttributes = obj.connectionAttributes;
127
127
  const path_connectionAttributes = path + '.connectionAttributes';
128
- const referencepath_connectionAttributesValidationError = validate$C(obj_connectionAttributes, path_connectionAttributes);
128
+ const referencepath_connectionAttributesValidationError = validate$D(obj_connectionAttributes, path_connectionAttributes);
129
129
  if (referencepath_connectionAttributesValidationError !== null) {
130
130
  let message = 'Object doesn\'t match DataCleanRoomConnectionAttributesRepresentation (at "' + path_connectionAttributes + '")\n';
131
131
  message += referencepath_connectionAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -148,6 +148,20 @@ function validate$B(obj, path = 'DataCleanRoomOutputConfigurationRepresentation'
148
148
  return v_error === undefined ? null : v_error;
149
149
  }
150
150
 
151
+ function validate$B(obj, path = 'DataCleanRoomOutputDestinationConfigRepresentation') {
152
+ const v_error = (() => {
153
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
154
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
155
+ }
156
+ const obj_connectorType = obj.connectorType;
157
+ const path_connectorType = path + '.connectorType';
158
+ if (typeof obj_connectorType !== 'string') {
159
+ return new TypeError('Expected "string" but received "' + typeof obj_connectorType + '" (at "' + path_connectorType + '")');
160
+ }
161
+ })();
162
+ return v_error === undefined ? null : v_error;
163
+ }
164
+
151
165
  function validate$A(obj, path = 'DataCleanRoomMemberConfigRepresentation') {
152
166
  const v_error = (() => {
153
167
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -167,6 +181,16 @@ function validate$A(obj, path = 'DataCleanRoomMemberConfigRepresentation') {
167
181
  return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
168
182
  }
169
183
  }
184
+ if (obj.outputDestinationConfig !== undefined) {
185
+ const obj_outputDestinationConfig = obj.outputDestinationConfig;
186
+ const path_outputDestinationConfig = path + '.outputDestinationConfig';
187
+ const referencepath_outputDestinationConfigValidationError = validate$B(obj_outputDestinationConfig, path_outputDestinationConfig);
188
+ if (referencepath_outputDestinationConfigValidationError !== null) {
189
+ let message = 'Object doesn\'t match DataCleanRoomOutputDestinationConfigRepresentation (at "' + path_outputDestinationConfig + '")\n';
190
+ message += referencepath_outputDestinationConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
191
+ return new TypeError(message);
192
+ }
193
+ }
170
194
  if (obj.outputDestinationId !== undefined) {
171
195
  const obj_outputDestinationId = obj.outputDestinationId;
172
196
  const path_outputDestinationId = path + '.outputDestinationId';
@@ -192,7 +216,7 @@ function validate$A(obj, path = 'DataCleanRoomMemberConfigRepresentation') {
192
216
  return v_error === undefined ? null : v_error;
193
217
  }
194
218
 
195
- const VERSION$9 = "cc5736f976c7c58026dd19879ac57f5c";
219
+ const VERSION$9 = "75f0d619e9f7670351ab7ddef20f4386";
196
220
  function validate$z(obj, path = 'DataCleanRoomMemberRepresentation') {
197
221
  const v_error = (() => {
198
222
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -225,6 +249,13 @@ function validate$z(obj, path = 'DataCleanRoomMemberRepresentation') {
225
249
  }
226
250
  }
227
251
  }
252
+ if (obj.memberDataCloudRegion !== undefined) {
253
+ const obj_memberDataCloudRegion = obj.memberDataCloudRegion;
254
+ const path_memberDataCloudRegion = path + '.memberDataCloudRegion';
255
+ if (typeof obj_memberDataCloudRegion !== 'string') {
256
+ return new TypeError('Expected "string" but received "' + typeof obj_memberDataCloudRegion + '" (at "' + path_memberDataCloudRegion + '")');
257
+ }
258
+ }
228
259
  if (obj.memberDomainUrl !== undefined) {
229
260
  const obj_memberDomainUrl = obj.memberDomainUrl;
230
261
  const path_memberDomainUrl = path + '.memberDomainUrl';
@@ -362,6 +393,7 @@ const acceptDataCleanRoomInvitation_ConfigPropertyMetadata = [
362
393
  generateParamConfigMetadata('specificationId', false, 2 /* Body */, 4 /* Unsupported */),
363
394
  generateParamConfigMetadata('outputConfiguration', false, 2 /* Body */, 4 /* Unsupported */),
364
395
  generateParamConfigMetadata('dataSpaceName', false, 2 /* Body */, 0 /* String */),
396
+ generateParamConfigMetadata('memberDataCloudRegion', false, 2 /* Body */, 0 /* String */),
365
397
  ];
366
398
  const acceptDataCleanRoomInvitation_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$b, acceptDataCleanRoomInvitation_ConfigPropertyMetadata);
367
399
  const createResourceParams$b = /*#__PURE__*/ createResourceParams$c(acceptDataCleanRoomInvitation_ConfigPropertyMetadata);
@@ -376,7 +408,7 @@ function typeCheckConfig$b(untrustedConfig) {
376
408
  config.specificationId = untrustedConfig_specificationId;
377
409
  }
378
410
  const untrustedConfig_outputConfiguration = untrustedConfig.outputConfiguration;
379
- const referenceDataCleanRoomOutputConfigurationRepresentationValidationError = validate$B(untrustedConfig_outputConfiguration);
411
+ const referenceDataCleanRoomOutputConfigurationRepresentationValidationError = validate$C(untrustedConfig_outputConfiguration);
380
412
  if (referenceDataCleanRoomOutputConfigurationRepresentationValidationError === null) {
381
413
  config.outputConfiguration = untrustedConfig_outputConfiguration;
382
414
  }
@@ -850,7 +882,7 @@ function validate$q(obj, path = 'DataCleanRoomTemplateRepresentation') {
850
882
  return v_error === undefined ? null : v_error;
851
883
  }
852
884
 
853
- const VERSION$8 = "f266e94d40f966349735e07b0c5e0721";
885
+ const VERSION$8 = "6523b521b58513f345e3ee51cfca270c";
854
886
  function validate$p(obj, path = 'DataCleanRoomCollaborationRepresentation') {
855
887
  const v_error = (() => {
856
888
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -972,6 +1004,23 @@ function validate$p(obj, path = 'DataCleanRoomCollaborationRepresentation') {
972
1004
  message += referencepath_templateVersionValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
973
1005
  return new TypeError(message);
974
1006
  }
1007
+ if (obj.templateVersions !== undefined) {
1008
+ const obj_templateVersions = obj.templateVersions;
1009
+ const path_templateVersions = path + '.templateVersions';
1010
+ if (!ArrayIsArray(obj_templateVersions)) {
1011
+ return new TypeError('Expected "array" but received "' + typeof obj_templateVersions + '" (at "' + path_templateVersions + '")');
1012
+ }
1013
+ for (let i = 0; i < obj_templateVersions.length; i++) {
1014
+ const obj_templateVersions_item = obj_templateVersions[i];
1015
+ const path_templateVersions_item = path_templateVersions + '[' + i + ']';
1016
+ const referencepath_templateVersions_itemValidationError = validate$q(obj_templateVersions_item, path_templateVersions_item);
1017
+ if (referencepath_templateVersions_itemValidationError !== null) {
1018
+ let message = 'Object doesn\'t match DataCleanRoomTemplateRepresentation (at "' + path_templateVersions_item + '")\n';
1019
+ message += referencepath_templateVersions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
1020
+ return new TypeError(message);
1021
+ }
1022
+ }
1023
+ }
975
1024
  if (obj.url !== undefined) {
976
1025
  const obj_url = obj.url;
977
1026
  const path_url = path + '.url';
@@ -1079,6 +1128,7 @@ const createDataCleanRoomCollaboration_ConfigPropertyMetadata = [
1079
1128
  generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
1080
1129
  generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
1081
1130
  generateParamConfigMetadata('templateVersionId', false, 2 /* Body */, 0 /* String */),
1131
+ generateParamConfigMetadata('useCaseType', false, 2 /* Body */, 0 /* String */),
1082
1132
  ];
1083
1133
  const createDataCleanRoomCollaboration_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$a, createDataCleanRoomCollaboration_ConfigPropertyMetadata);
1084
1134
  const createResourceParams$a = /*#__PURE__*/ createResourceParams$c(createDataCleanRoomCollaboration_ConfigPropertyMetadata);
@@ -1434,7 +1484,7 @@ function validate$k(obj, path = 'UseCaseTemplateMappingRepresentation') {
1434
1484
  return v_error === undefined ? null : v_error;
1435
1485
  }
1436
1486
 
1437
- const VERSION$7 = "d45438ed7dbe4f9f483ef33b3d47863e";
1487
+ const VERSION$7 = "daebc7b4442bf99b4d4b2a733554b01e";
1438
1488
  function validate$j(obj, path = 'DataCleanRoomDataSpecificationRepresentation') {
1439
1489
  const v_error = (() => {
1440
1490
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -1563,6 +1613,23 @@ function validate$j(obj, path = 'DataCleanRoomDataSpecificationRepresentation')
1563
1613
  return new TypeError(message);
1564
1614
  }
1565
1615
  }
1616
+ if (obj.templateVersions !== undefined) {
1617
+ const obj_templateVersions = obj.templateVersions;
1618
+ const path_templateVersions = path + '.templateVersions';
1619
+ if (!ArrayIsArray(obj_templateVersions)) {
1620
+ return new TypeError('Expected "array" but received "' + typeof obj_templateVersions + '" (at "' + path_templateVersions + '")');
1621
+ }
1622
+ for (let i = 0; i < obj_templateVersions.length; i++) {
1623
+ const obj_templateVersions_item = obj_templateVersions[i];
1624
+ const path_templateVersions_item = path_templateVersions + '[' + i + ']';
1625
+ const referencepath_templateVersions_itemValidationError = validate$q(obj_templateVersions_item, path_templateVersions_item);
1626
+ if (referencepath_templateVersions_itemValidationError !== null) {
1627
+ let message = 'Object doesn\'t match DataCleanRoomTemplateRepresentation (at "' + path_templateVersions_item + '")\n';
1628
+ message += referencepath_templateVersions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
1629
+ return new TypeError(message);
1630
+ }
1631
+ }
1632
+ }
1566
1633
  if (obj.url !== undefined) {
1567
1634
  const obj_url = obj.url;
1568
1635
  const path_url = path + '.url';
@@ -1672,6 +1739,7 @@ const createDataCleanRoomSpecification_ConfigPropertyMetadata = [
1672
1739
  generateParamConfigMetadata('templateVersionId', false, 2 /* Body */, 0 /* String */),
1673
1740
  generateParamConfigMetadata('templateType', false, 2 /* Body */, 0 /* String */),
1674
1741
  generateParamConfigMetadata('useCaseType', false, 2 /* Body */, 0 /* String */),
1742
+ generateParamConfigMetadata('providerName', false, 2 /* Body */, 0 /* String */),
1675
1743
  ];
1676
1744
  const createDataCleanRoomSpecification_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$9, createDataCleanRoomSpecification_ConfigPropertyMetadata);
1677
1745
  const createResourceParams$9 = /*#__PURE__*/ createResourceParams$c(createDataCleanRoomSpecification_ConfigPropertyMetadata);
@@ -2513,7 +2581,7 @@ const createProviderAdapterFactory = (luvio) => {
2513
2581
  };
2514
2582
  };
2515
2583
 
2516
- const VERSION$5 = "c88ad589b064cbc75394ed69083e8f5f";
2584
+ const VERSION$5 = "06f49647307cbb06986f97fb3ed203f9";
2517
2585
  function validate$5(obj, path = 'DataCleanRoomQueryJobRepresentation') {
2518
2586
  const v_error = (() => {
2519
2587
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -2607,6 +2675,13 @@ function validate$5(obj, path = 'DataCleanRoomQueryJobRepresentation') {
2607
2675
  return new TypeError('Expected "string" but received "' + typeof obj_outputDMOName + '" (at "' + path_outputDMOName + '")');
2608
2676
  }
2609
2677
  }
2678
+ if (obj.queryName !== undefined) {
2679
+ const obj_queryName = obj.queryName;
2680
+ const path_queryName = path + '.queryName';
2681
+ if (typeof obj_queryName !== 'string') {
2682
+ return new TypeError('Expected "string" but received "' + typeof obj_queryName + '" (at "' + path_queryName + '")');
2683
+ }
2684
+ }
2610
2685
  if (obj.queryParam !== undefined) {
2611
2686
  const obj_queryParam = obj.queryParam;
2612
2687
  const path_queryParam = path + '.queryParam';
@@ -2647,6 +2722,13 @@ function validate$5(obj, path = 'DataCleanRoomQueryJobRepresentation') {
2647
2722
  if (typeof obj_status !== 'string') {
2648
2723
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
2649
2724
  }
2725
+ if (obj.templateVersionId !== undefined) {
2726
+ const obj_templateVersionId = obj.templateVersionId;
2727
+ const path_templateVersionId = path + '.templateVersionId';
2728
+ if (typeof obj_templateVersionId !== 'string') {
2729
+ return new TypeError('Expected "string" but received "' + typeof obj_templateVersionId + '" (at "' + path_templateVersionId + '")');
2730
+ }
2731
+ }
2650
2732
  if (obj.triggeredDate !== undefined) {
2651
2733
  const obj_triggeredDate = obj.triggeredDate;
2652
2734
  const path_triggeredDate = path + '.triggeredDate';
@@ -2747,6 +2829,7 @@ const adapterName$7 = 'executeDataCleanRoomQuery';
2747
2829
  const executeDataCleanRoomQuery_ConfigPropertyMetadata = [
2748
2830
  generateParamConfigMetadata('collaborationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
2749
2831
  generateParamConfigMetadata('queryExecutionName', true, 2 /* Body */, 0 /* String */),
2832
+ generateParamConfigMetadata('templateVersionId', false, 2 /* Body */, 0 /* String */),
2750
2833
  generateParamConfigMetadata('segmentIds', false, 2 /* Body */, 0 /* String */, true),
2751
2834
  generateParamConfigMetadata('queryParameters', false, 2 /* Body */, 4 /* Unsupported */),
2752
2835
  ];
@@ -2801,7 +2884,7 @@ const executeDataCleanRoomQueryAdapterFactory = (luvio) => {
2801
2884
  };
2802
2885
  };
2803
2886
 
2804
- const VERSION$4 = "7aaafdce5d4ed7457442ab5701329217";
2887
+ const VERSION$4 = "406c8b91188a78aeb561c9615b2fb834";
2805
2888
  function validate$4(obj, path = 'DataCleanRoomQueryJobHistoryCollectionRepresentation') {
2806
2889
  const v_error = (() => {
2807
2890
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -2852,6 +2935,13 @@ function validate$4(obj, path = 'DataCleanRoomQueryJobHistoryCollectionRepresent
2852
2935
  if (typeof obj_offset !== 'number' || (typeof obj_offset === 'number' && Math.floor(obj_offset) !== obj_offset)) {
2853
2936
  return new TypeError('Expected "integer" but received "' + typeof obj_offset + '" (at "' + path_offset + '")');
2854
2937
  }
2938
+ if (obj.queryConcurrencyLimit !== undefined) {
2939
+ const obj_queryConcurrencyLimit = obj.queryConcurrencyLimit;
2940
+ const path_queryConcurrencyLimit = path + '.queryConcurrencyLimit';
2941
+ if (typeof obj_queryConcurrencyLimit !== 'number' || (typeof obj_queryConcurrencyLimit === 'number' && Math.floor(obj_queryConcurrencyLimit) !== obj_queryConcurrencyLimit)) {
2942
+ return new TypeError('Expected "integer" but received "' + typeof obj_queryConcurrencyLimit + '" (at "' + path_queryConcurrencyLimit + '")');
2943
+ }
2944
+ }
2855
2945
  const obj_queryJobs = obj.queryJobs;
2856
2946
  const path_queryJobs = path + '.queryJobs';
2857
2947
  if (!ArrayIsArray(obj_queryJobs)) {
@@ -4615,4 +4705,4 @@ withDefaultLuvio((luvio) => {
4615
4705
  });
4616
4706
 
4617
4707
  export { acceptDataCleanRoomInvitation, createDataCleanRoomCollaboration, createDataCleanRoomSpecification, createProvider, executeDataCleanRoomQuery, getAllDataCleanRoomQueryPaginated, getAllDataCleanRoomQueryPaginated_imperative, getAllDataCleanRoomsPaginated, getAllDataCleanRoomsPaginated_imperative, getDataCleanRoomProvidersPaginated, getDataCleanRoomProvidersPaginated_imperative, getDataCleanRoomSpecificationsPaginated, getDataCleanRoomSpecificationsPaginated_imperative, getDataCleanRoomTemplatePaginated, getDataCleanRoomTemplatePaginated_imperative, getDataCleanRoomTemplatesByProviderIdPaginated, getDataCleanRoomTemplatesByProviderIdPaginated_imperative, rejectDataCleanRoomInvitation };
4618
- // version: 1.428.0-dev1-52205c6c54
4708
+ // version: 1.428.0-dev11-659d2de2fa
package/src/raml/api.raml CHANGED
@@ -410,6 +410,10 @@ types:
410
410
  description: Dictates whether useCase provided is of type Overlap/Activation/Custom
411
411
  type: string
412
412
  required: false
413
+ providerName:
414
+ description: Provider package for which the mapping is associated to.
415
+ type: string
416
+ required: false
413
417
  DataCleanRoomDataSpecificationRepresentation:
414
418
  description: Represents Cdp Data Clean Room Specification
415
419
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -478,6 +482,12 @@ types:
478
482
  description: Reference key to DataCleanRoomProvider record
479
483
  type: string
480
484
  required: false
485
+ templateVersions:
486
+ description: List of template versions to which the collaboration is associated to
487
+ type: array
488
+ items:
489
+ type: DataCleanRoomTemplateRepresentation
490
+ required: false
481
491
  DataCleanRoomMemberRepresentation:
482
492
  description: Represents Cdp Data Clean Room Members
483
493
  type: object
@@ -530,6 +540,10 @@ types:
530
540
  items:
531
541
  type: DataCleanRoomMemberConfigRepresentation
532
542
  required: false
543
+ memberDataCloudRegion:
544
+ description: Consumer Datacloud region
545
+ type: string
546
+ required: false
533
547
  DataCleanRoomSpecificationCollectionRepresentation:
534
548
  description: Represents Data Clean Room Specification Collection
535
549
  # TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
@@ -593,6 +607,10 @@ types:
593
607
  description: Id of the template version
594
608
  type: string
595
609
  required: false
610
+ useCaseType:
611
+ description: useCaseType for which the collaboration is getting created.
612
+ type: string
613
+ required: false
596
614
  DataCleanRoomCollaborationRepresentation:
597
615
  description: Represents Cdp Data Clean Room Collaboration
598
616
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -653,6 +671,12 @@ types:
653
671
  apiKey?:
654
672
  description: Api key for collaboration
655
673
  type: string
674
+ templateVersions:
675
+ description: List of template versions to which the collaboration is associated to
676
+ type: array
677
+ items:
678
+ type: DataCleanRoomTemplateRepresentation
679
+ required: false
656
680
  DataCleanRoomTemplateRepresentation:
657
681
  description: Represents Cdp Data Clean Room Template
658
682
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -788,6 +812,10 @@ types:
788
812
  description: Name of data space to which the collaboration is associated
789
813
  type: string
790
814
  required: false
815
+ memberDataCloudRegion:
816
+ description: Consumer Datacloud region
817
+ type: string
818
+ required: false
791
819
 
792
820
  DataCleanRoomOutputConfigurationRepresentation:
793
821
  description: Represents data clean room output configuration representation
@@ -865,6 +893,65 @@ types:
865
893
  type: string
866
894
  required: true
867
895
 
896
+ DataCleanRoomOutputDestinationConfigRepresentation:
897
+ description: Output destination attributes based on the connector type. Base representation extended by connector-specific implementations (Connect API pattern). Structure varies by connectorType.
898
+ type: object
899
+ properties:
900
+ connectorType:
901
+ description: Type of the connector (MetadataConnectorTypeEnum)
902
+ type: string
903
+ required: true
904
+
905
+ DataCleanRoomAwsS3OutputDestinationConfigRepresentation:
906
+ description: AWS S3 output destination config for member config, extends DataCleanRoomOutputDestinationConfigRepresentation
907
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomOutputDestinationConfigRepresentation
908
+ # type: DataCleanRoomOutputDestinationConfigRepresentation
909
+ type: object
910
+ properties:
911
+ connectorType:
912
+ description: Type of the connector
913
+ type: string
914
+ required: true
915
+ roleArn:
916
+ description: IAM role used to connect to the s3 url provided
917
+ type: string
918
+ required: true
919
+ s3Url:
920
+ description: Full path of the s3 bucket with folders where the user wants the data to be shared
921
+ type: string
922
+ required: true
923
+
924
+ DataCleanRoomSnowflakeOutputDestinationConfigRepresentation:
925
+ description: Snowflake output destination config for member config, extends DataCleanRoomOutputDestinationConfigRepresentation
926
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomOutputDestinationConfigRepresentation
927
+ # type: DataCleanRoomOutputDestinationConfigRepresentation
928
+ type: object
929
+ properties:
930
+ connectorType:
931
+ description: Type of the connector
932
+ type: string
933
+ required: true
934
+ accountUrl:
935
+ description: Snowflake account url of the provider's account
936
+ type: string
937
+ required: true
938
+ schemaName:
939
+ description: Schema name of the provider's the final dataset
940
+ type: string
941
+ required: true
942
+ databaseName:
943
+ description: Database name of the provider's the final dataset
944
+ type: string
945
+ required: true
946
+ warehouseName:
947
+ description: Warehouse name of the provider's the final dataset
948
+ type: string
949
+ required: true
950
+ serviceUser:
951
+ description: Service user with the relevant access to the provided database and warehouse
952
+ type: string
953
+ required: true
954
+
868
955
  DataCleanRoomRejectInvitationInputRepresentation:
869
956
  description: Represents Cdp Data clean room Reject invitation input
870
957
  type: object
@@ -893,6 +980,10 @@ types:
893
980
  queryExecutionName:
894
981
  description: Name of the Query that would be executed
895
982
  type: string
983
+ templateVersionId:
984
+ description: Id of the template version to run the query with
985
+ type: string
986
+ required: false
896
987
  segmentIds:
897
988
  description: Segment IDs on which the query would be executed
898
989
  required: false
@@ -956,9 +1047,17 @@ types:
956
1047
  items:
957
1048
  type: string
958
1049
  queryParam:
959
- description: Date time at which query was triggered
1050
+ description: Map of query parameters along-with their values, required for the query to be executed
960
1051
  type: any
961
1052
  required: false
1053
+ templateVersionId:
1054
+ description: Reference key to DataCleanRoomTemplateVersion entity
1055
+ type: string
1056
+ required: false
1057
+ queryName:
1058
+ description: Name of the underlying query template version
1059
+ type: string
1060
+ required: false
962
1061
  outputDMOName:
963
1062
  description: Result DMO developer name in case of Activation usecase; result report name in case of other usecases.
964
1063
  type: string
@@ -1001,6 +1100,10 @@ types:
1001
1100
  type: array
1002
1101
  items:
1003
1102
  type: DataCleanRoomQueryJobRepresentation
1103
+ queryConcurrencyLimit:
1104
+ description: Maximum number of concurrent query jobs allowed
1105
+ type: integer
1106
+ required: false
1004
1107
 
1005
1108
  CustomUseCaseTemplateInputRepresentation:
1006
1109
  description: Represents data clean room custom template
@@ -1322,6 +1425,10 @@ types:
1322
1425
  description: Unique identifier for the output destination connection
1323
1426
  type: string
1324
1427
  required: false
1428
+ outputDestinationConfig:
1429
+ description: Output destination attributes for the connector type (260+)
1430
+ type: DataCleanRoomOutputDestinationConfigRepresentation
1431
+ required: false
1325
1432
 
1326
1433
  DataCleanRoomMetadataConfigurationRepresentation:
1327
1434
  description: Represents metadata configruation associated with template