@salesforce/lds-adapters-analytics-unifiedanalytics 1.332.0-dev17 → 1.332.0-dev19

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 (50) hide show
  1. package/dist/es/es2018/analytics-unifiedanalytics.js +1267 -675
  2. package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +1 -0
  3. package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +27 -0
  4. package/dist/es/es2018/types/src/generated/adapters/createVisualization.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getDashboardByName.d.ts +1 -0
  6. package/dist/es/es2018/types/src/generated/adapters/getDashboards.d.ts +1 -0
  7. package/dist/es/es2018/types/src/generated/adapters/getVisualization.d.ts +1 -0
  8. package/dist/es/es2018/types/src/generated/adapters/getVisualizationBundle.d.ts +1 -0
  9. package/dist/es/es2018/types/src/generated/adapters/getVisualizations.d.ts +1 -0
  10. package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +1 -0
  11. package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +28 -0
  12. package/dist/es/es2018/types/src/generated/adapters/updateFollowedAsset.d.ts +20 -0
  13. package/dist/es/es2018/types/src/generated/adapters/updateVisualization.d.ts +1 -0
  14. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
  15. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -1
  16. package/dist/es/es2018/types/src/generated/resources/getTableauDashboards.d.ts +1 -0
  17. package/dist/es/es2018/types/src/generated/resources/getTableauDashboardsByDashboardIdOrApiName.d.ts +3 -0
  18. package/dist/es/es2018/types/src/generated/resources/getTableauVisualizations.d.ts +1 -0
  19. package/dist/es/es2018/types/src/generated/resources/getTableauVisualizationsBundleByVisualizationIdOrApiName.d.ts +3 -0
  20. package/dist/es/es2018/types/src/generated/resources/getTableauVisualizationsByVisualizationIdOrApiName.d.ts +3 -0
  21. package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +3 -0
  22. package/dist/es/es2018/types/src/generated/resources/patchTableauFollowFollowersFollowsByFollowerId.d.ts +19 -0
  23. package/dist/es/es2018/types/src/generated/resources/patchTableauVisualizationsByVisualizationIdOrApiName.d.ts +3 -0
  24. package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +3 -0
  25. package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +26 -0
  26. package/dist/es/es2018/types/src/generated/resources/postTableauVisualizations.d.ts +3 -0
  27. package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +29 -0
  28. package/dist/es/es2018/types/src/generated/types/DataAlertConditionInputRepresentation.d.ts +38 -0
  29. package/dist/es/es2018/types/src/generated/types/DataAlertContentInputRepresentation.d.ts +33 -0
  30. package/dist/es/es2018/types/src/generated/types/DataAlertCronScheduleInputRepresentation.d.ts +30 -0
  31. package/dist/es/es2018/types/src/generated/types/DataAlertDailyScheduleInputRepresentation.d.ts +26 -0
  32. package/dist/es/es2018/types/src/generated/types/DataAlertDeliveryConfigurationInputRepresentation.d.ts +30 -0
  33. package/dist/es/es2018/types/src/generated/types/DataAlertInputRepresentation.d.ts +47 -0
  34. package/dist/es/es2018/types/src/generated/types/DataAlertMetricContentInputRepresentation.d.ts +33 -0
  35. package/dist/es/es2018/types/src/generated/types/DataAlertMetricValueInputRepresentation.d.ts +55 -0
  36. package/dist/es/es2018/types/src/generated/types/DataAlertNotificationRecipientsInputRepresentation.d.ts +30 -0
  37. package/dist/es/es2018/types/src/generated/types/DataAlertRawValueInputRepresentation.d.ts +33 -0
  38. package/dist/es/es2018/types/src/generated/types/DataAlertReceiversInputRepresentation.d.ts +33 -0
  39. package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +38 -0
  40. package/dist/es/es2018/types/src/generated/types/DataAlertScheduleInputRepresentation.d.ts +38 -0
  41. package/dist/es/es2018/types/src/generated/types/DataAlertThresholdsInputRepresentation.d.ts +32 -0
  42. package/dist/es/es2018/types/src/generated/types/DataAlertValueInputRepresentation.d.ts +34 -0
  43. package/dist/es/es2018/types/src/generated/types/DataAlertValueRightOperandInputRepresentation.d.ts +28 -0
  44. package/dist/es/es2018/types/src/generated/types/DataAlertWeeklyScheduleInputRepresentation.d.ts +30 -0
  45. package/dist/es/es2018/types/src/generated/types/UnifiedFilterInputRepresentation.d.ts +33 -0
  46. package/dist/es/es2018/types/src/generated/types/UpdateFollowedAssetInputRepresentation.d.ts +38 -0
  47. package/package.json +3 -3
  48. package/sfdc/index.js +1858 -1254
  49. package/src/raml/api.raml +431 -0
  50. package/src/raml/luvio.raml +18 -0
package/src/raml/api.raml CHANGED
@@ -340,6 +340,31 @@ types:
340
340
  description: Time Range filter representation
341
341
  type: FollowedTimeRangeRepresentation
342
342
  required: false
343
+ UpdateFollowedAssetInputRepresentation:
344
+ description: Update followed asset input representation in unified analytics.
345
+ type: object
346
+ properties:
347
+ assetId:
348
+ description: Asset ID
349
+ type: string
350
+ assetType:
351
+ description: Followed asset type
352
+ type: string
353
+ enum:
354
+ - SemanticMetricDefinition
355
+ - SemanticSubMetric
356
+ required: false
357
+ followerType:
358
+ description: Follower type
359
+ type: string
360
+ enum:
361
+ - Group
362
+ - User
363
+ required: false
364
+ followedTimeRange:
365
+ description: Time Range filter representation
366
+ type: FollowedTimeRangeRepresentation | nil
367
+ required: false
343
368
  FollowedAssetCollectionRepresentation:
344
369
  description: Collection of Followed Assets
345
370
  type: object
@@ -994,6 +1019,323 @@ types:
994
1019
  count:
995
1020
  description: Count of data asset requests
996
1021
  type: integer
1022
+ DataAlertValueInputRepresentation:
1023
+ description: Abstract input representation for operands
1024
+ type: object
1025
+ discriminator: type
1026
+ properties:
1027
+ type:
1028
+ description: type of operand
1029
+ type: string
1030
+ enum:
1031
+ - Insights
1032
+ - RawValue
1033
+ DataAlertValueRightOperandInputRepresentation:
1034
+ description: Abstract input representation for operands
1035
+ type: object
1036
+ discriminator: type
1037
+ properties:
1038
+ type:
1039
+ description: type of operand
1040
+ type: string
1041
+ enum:
1042
+ - Insights
1043
+ - RawValue
1044
+ DataAlertRawValueInputRepresentation:
1045
+ description: Abstract input representation for raw value operands
1046
+ type: DataAlertValueInputRepresentation
1047
+ discriminatorValue: RawValue
1048
+ properties:
1049
+ dataType:
1050
+ description: 'data types for the raw value: percentage, currency etc. '
1051
+ type: string
1052
+ enum:
1053
+ - Number
1054
+ - Currency
1055
+ - Percentage
1056
+ value:
1057
+ description: raw value of the operand
1058
+ type: string
1059
+ DataAlertMetricValueInputRepresentation:
1060
+ description: Input representation for metric operands
1061
+ type: DataAlertValueInputRepresentation
1062
+ discriminatorValue: Insights
1063
+ properties:
1064
+ metricId:
1065
+ description: metric or sub-metric Id
1066
+ type: string
1067
+ insightType:
1068
+ description: type of insight
1069
+ type: string
1070
+ enum:
1071
+ - GoalProgress
1072
+ - Popc
1073
+ - RecordLevelOutliers
1074
+ - RiskyMonopoly
1075
+ - Unspecified
1076
+ - UnusualChange
1077
+ params:
1078
+ description: additional metric params
1079
+ type: object
1080
+ properties:
1081
+ //:
1082
+ type: string
1083
+ factKey:
1084
+ description: fact key
1085
+ type: string
1086
+ timeContext:
1087
+ description: time filter
1088
+ type: UnifiedFilterInputRepresentation # TODO Hand-rolled @W-17927490
1089
+ filterContext:
1090
+ description: filter context
1091
+ type: array
1092
+ items:
1093
+ type: UnifiedFilterInputRepresentation # TODO Hand-rolled @W-17927490
1094
+ modelApiNameOrId:
1095
+ description: Id or API name of the semantic data model
1096
+ type: string
1097
+ sdmId:
1098
+ description: SDM ID of the semantic data model
1099
+ type: string
1100
+ UnifiedFilterInputRepresentation:
1101
+ description: Message representing the Unified Filter.
1102
+ type: object
1103
+ properties:
1104
+ fieldName:
1105
+ description: FieldName
1106
+ type: string
1107
+ required: false
1108
+ operator:
1109
+ enum:
1110
+ - Equals
1111
+ - DoesNotEquals
1112
+ - EqualsIgnoreCase
1113
+ - DoesNotEqualsIgnoreCase
1114
+ - Between
1115
+ - LessThan
1116
+ - LessThanOrEqualTo
1117
+ - GreaterThan
1118
+ - GreaterThanOrEqualTo
1119
+ - IsEmpty
1120
+ - IsNotEmpty
1121
+ - Contains
1122
+ - ContainsIgnoreCase
1123
+ - NotContains
1124
+ - NotContainsIgnoreCase
1125
+ - StartsWith
1126
+ - StartsWithIgnoreCase
1127
+ - DoesNotStartWith
1128
+ - DoesNotStartWithIgnoreCase
1129
+ - EndsWith
1130
+ - EndsWithIgnoreCase
1131
+ - DoesNotEndWith
1132
+ - DoesNotEndWithIgnoreCase
1133
+ - IsNull
1134
+ - IsNotNull
1135
+ - LastNDays
1136
+ - NextNDays
1137
+ - PreviousWeek
1138
+ - CurrentWeek
1139
+ - NextWeek
1140
+ - PreviousMonth
1141
+ - CurrentMonth
1142
+ - NextMonth
1143
+ - PreviousQuarter
1144
+ - CurrentQuarter
1145
+ - NextQuarter
1146
+ - PreviousYear
1147
+ - CurrentYear
1148
+ - NextYear
1149
+ - PreviousFiscalQuarter
1150
+ - CurrentFiscalQuarter
1151
+ - NextFiscalQuarter
1152
+ - PreviousFiscalYear
1153
+ - CurrentFiscalYear
1154
+ - NextFiscalYear
1155
+ - PreviousMonthToDate
1156
+ - CurrentMonthToDate
1157
+ - PreviousQuarterToDate
1158
+ - CurrentQuarterToDate
1159
+ - PreviousYearToDate
1160
+ - CurrentYearToDate
1161
+ - PreviousFiscalQuarterToDate
1162
+ - CurrentFiscalQuarterToDate
1163
+ - PreviousFiscalYearToDate
1164
+ - CurrentFiscalYearToDate
1165
+ - Values
1166
+ type: string
1167
+ (amf-format): enum
1168
+ required: false
1169
+ values:
1170
+ description: An array of values. All values must be of the same type. We support strings, numbers, and booleans.
1171
+ type: array
1172
+ items:
1173
+ (amf-xone):
1174
+ - type: number
1175
+ - type: string
1176
+ - type: boolean
1177
+ type: any
1178
+ required: false
1179
+ DataAlertConditionInputRepresentation:
1180
+ description: A single condition representation
1181
+ type: object
1182
+ properties:
1183
+ leftOperand:
1184
+ description: Left operand of the condition
1185
+ type: DataAlertValueInputRepresentation # TODO Hand-rolled @W-17927490
1186
+ rightOperand:
1187
+ description: Right operand of the condition
1188
+ type: DataAlertValueRightOperandInputRepresentation # TODO Hand-rolled @W-17927490
1189
+ operator:
1190
+ description: operator of the condition
1191
+ type: string
1192
+ enum:
1193
+ - Equals
1194
+ - GreaterOrEqual
1195
+ - GreaterThan
1196
+ - LessOrEqual
1197
+ - LessThan
1198
+ - NotEqual
1199
+ DataAlertWeeklyScheduleInputRepresentation:
1200
+ description: Input representation for weekly alert alert schedule
1201
+ type: DataAlertScheduleInputRepresentation
1202
+ discriminatorValue: Weekly
1203
+ properties:
1204
+ daysOfWeek:
1205
+ description: days of the week to receive data alerts
1206
+ type: array
1207
+ items:
1208
+ type: string
1209
+ enum:
1210
+ - Friday
1211
+ - Monday
1212
+ - Saturday
1213
+ - Sunday
1214
+ - Thursday
1215
+ - Tuesday
1216
+ - Wednesday
1217
+ DataAlertContentInputRepresentation:
1218
+ description: Input representation for data alert content
1219
+ type: object
1220
+ discriminator: type
1221
+ properties:
1222
+ type:
1223
+ description: content type
1224
+ type: string
1225
+ enum:
1226
+ - Metric
1227
+ DataAlertMetricContentInputRepresentation:
1228
+ description: Input representation for content based on metric value
1229
+ type: DataAlertContentInputRepresentation
1230
+ discriminatorValue: Metric
1231
+ properties:
1232
+ instruction:
1233
+ description: input string instruction
1234
+ type: string
1235
+ modelApiNameOrId:
1236
+ description: Id or API name of the semantic data model
1237
+ type: array
1238
+ items:
1239
+ type: string
1240
+ DataAlertCronScheduleInputRepresentation:
1241
+ description: Input representation for cron based data alert schedule
1242
+ type: DataAlertScheduleInputRepresentation
1243
+ discriminatorValue: Cron
1244
+ properties:
1245
+ cronExpression:
1246
+ description: cron expression
1247
+ type: string
1248
+ DataAlertDailyScheduleInputRepresentation:
1249
+ description: Input representation for daily alert schedule
1250
+ type: DataAlertScheduleInputRepresentation
1251
+ discriminatorValue: Daily
1252
+ properties: {}
1253
+ DataAlertDeliveryConfigurationInputRepresentation:
1254
+ description: Delivery configuration for data alerts.
1255
+ type: object
1256
+ properties:
1257
+ receivers:
1258
+ description: list of recipients to be notified.
1259
+ type: array
1260
+ items:
1261
+ type: DataAlertReceiversInputRepresentation
1262
+ DataAlertRepresentation:
1263
+ description: Output of Data Alert
1264
+ type: object
1265
+ properties:
1266
+ id:
1267
+ description: Database record id of the data alert.
1268
+ type: string
1269
+ DataAlertInputRepresentation:
1270
+ description: A top level data alert metadata representation.
1271
+ type: object
1272
+ properties:
1273
+ analysisUtterance:
1274
+ description: user entered utterance for generating analysis.
1275
+ type: string
1276
+ content:
1277
+ type: DataAlertContentInputRepresentation # TODO Hand-rolled @W-17927490
1278
+ deliveryConfigurations:
1279
+ type: DataAlertDeliveryConfigurationInputRepresentation # TODO Hand-rolled @W-17927490
1280
+ schedule:
1281
+ description: data alert schedule
1282
+ type: DataAlertScheduleInputRepresentation # TODO Hand-rolled @W-17927490
1283
+ thresholds:
1284
+ description: thresholds to be evaluated
1285
+ type: DataAlertThresholdsInputRepresentation # TODO Hand-rolled @W-17927490
1286
+ utterance:
1287
+ description: user entered utterance
1288
+ type: string
1289
+ DataAlertNotificationRecipientsInputRepresentation:
1290
+ description: 'List of UNS recipients for Data alerts. May contain user or group
1291
+ Ids. '
1292
+ type: DataAlertReceiversInputRepresentation
1293
+ discriminatorValue: Notification
1294
+ properties:
1295
+ recipients:
1296
+ description: group or user Ids
1297
+ type: array
1298
+ items:
1299
+ type: string
1300
+ DataAlertReceiversInputRepresentation:
1301
+ description: Input representation for data alert recipients
1302
+ type: object
1303
+ discriminator: type
1304
+ properties:
1305
+ type:
1306
+ description: delivery type
1307
+ type: string
1308
+ enum:
1309
+ - Notification
1310
+ DataAlertScheduleInputRepresentation:
1311
+ description: Input representation for data alert schedule
1312
+ discriminator: type
1313
+ type: object
1314
+ properties:
1315
+ hoursOfDay:
1316
+ description: schedule time
1317
+ type: array
1318
+ items:
1319
+ type: integer
1320
+ type:
1321
+ description: schedule type
1322
+ type: string
1323
+ enum:
1324
+ - Cron
1325
+ - Daily
1326
+ - Weekly
1327
+ DataAlertThresholdsInputRepresentation:
1328
+ description: Data alert thresholds input representation.
1329
+ type: object
1330
+ properties:
1331
+ conditions:
1332
+ description: list of conditions to be evaluated.
1333
+ type: array
1334
+ items:
1335
+ type: DataAlertConditionInputRepresentation
1336
+ customLogicalOperation:
1337
+ description: logical operations between conditions
1338
+ type: string
997
1339
  DataAssetRequestInputRepresentation:
998
1340
  description: DataAssetRequest input representation in unified analytics.
999
1341
  type: object
@@ -2151,6 +2493,9 @@ types:
2151
2493
  limit:
2152
2494
  type: integer
2153
2495
  required: false
2496
+ minorVersion:
2497
+ type: integer
2498
+ required: false
2154
2499
  offset:
2155
2500
  type: integer
2156
2501
  required: false
@@ -2163,6 +2508,10 @@ types:
2163
2508
  body:
2164
2509
  application/json:
2165
2510
  type: DashboardRepresentation
2511
+ queryParameters:
2512
+ minorVersion:
2513
+ type: integer
2514
+ required: false
2166
2515
  body:
2167
2516
  application/json:
2168
2517
  type: DashboardInputRepresentation
@@ -2183,6 +2532,10 @@ types:
2183
2532
  body:
2184
2533
  application/json:
2185
2534
  type: DashboardRepresentation
2535
+ queryParameters:
2536
+ minorVersion:
2537
+ type: integer
2538
+ required: false
2186
2539
  patch:
2187
2540
  displayName: patchDashboard
2188
2541
  description: Update Unified Analytics Dashboard Metadata by Id or Name.
@@ -2192,6 +2545,10 @@ types:
2192
2545
  body:
2193
2546
  application/json:
2194
2547
  type: DashboardRepresentation
2548
+ queryParameters:
2549
+ minorVersion:
2550
+ type: integer
2551
+ required: false
2195
2552
  body:
2196
2553
  application/json:
2197
2554
  type: DashboardInputRepresentation
@@ -2200,6 +2557,48 @@ types:
2200
2557
  dashboardIdOrApiName:
2201
2558
  type: string
2202
2559
  required: true
2560
+ /dataAlerts:
2561
+ post:
2562
+ displayName: postDataAlertCollection
2563
+ description: Create a new data alert.
2564
+ responses:
2565
+ '200':
2566
+ description: Success
2567
+ body:
2568
+ application/json:
2569
+ type: DataAlertRepresentation
2570
+ queryParameters:
2571
+ runNow:
2572
+ description: optional parameter to trigger data alert flow to run immediately.
2573
+ type: boolean
2574
+ required: false
2575
+ body:
2576
+ application/json:
2577
+ type: DataAlertInputRepresentation
2578
+ (oas-body-name): dataAlert
2579
+ /dataAlerts/{dataAlertId}:
2580
+ put:
2581
+ displayName: updateDataAlert
2582
+ description: update a data alert
2583
+ responses:
2584
+ '200':
2585
+ description: Success
2586
+ body:
2587
+ application/json:
2588
+ type: DataAlertRepresentation
2589
+ queryParameters:
2590
+ runNow:
2591
+ description: optional parameter to trigger data alert flow to run immediately.
2592
+ type: boolean
2593
+ required: false
2594
+ body:
2595
+ application/json:
2596
+ type: DataAlertInputRepresentation
2597
+ (oas-body-name): dataAlert
2598
+ uriParameters:
2599
+ dataAlertId:
2600
+ type: string
2601
+ required: true
2203
2602
  /data-assets:
2204
2603
  /requests:
2205
2604
  get:
@@ -2347,6 +2746,19 @@ types:
2347
2746
  application/json:
2348
2747
  type: FollowInputRepresentation
2349
2748
  (oas-body-name): followerAsset
2749
+ patch:
2750
+ displayName: patchFollow
2751
+ description: Update a followed asset
2752
+ responses:
2753
+ '200':
2754
+ description: Success
2755
+ body:
2756
+ application/json:
2757
+ type: FollowerAssetRepresentation
2758
+ body:
2759
+ application/json:
2760
+ type: UpdateFollowedAssetInputRepresentation
2761
+ (oas-body-name): followerAsset
2350
2762
  uriParameters:
2351
2763
  followerId:
2352
2764
  type: string
@@ -2604,6 +3016,9 @@ types:
2604
3016
  offset:
2605
3017
  type: integer
2606
3018
  required: false
3019
+ minorVersion:
3020
+ type: integer
3021
+ required: false
2607
3022
  post:
2608
3023
  displayName: postVisualization
2609
3024
  description: Creates a new Visualization.
@@ -2613,6 +3028,10 @@ types:
2613
3028
  body:
2614
3029
  application/json:
2615
3030
  type: VisualizationRepresentation
3031
+ queryParameters:
3032
+ minorVersion:
3033
+ type: integer
3034
+ required: false
2616
3035
  body:
2617
3036
  application/json:
2618
3037
  type: VisualizationInputRepresentation
@@ -2633,6 +3052,10 @@ types:
2633
3052
  body:
2634
3053
  application/json:
2635
3054
  type: VisualizationRepresentation
3055
+ queryParameters:
3056
+ minorVersion:
3057
+ type: integer
3058
+ required: false
2636
3059
  patch:
2637
3060
  displayName: patchVisualization
2638
3061
  description: Update Visualization Metadata by Id or Name.
@@ -2642,6 +3065,10 @@ types:
2642
3065
  body:
2643
3066
  application/json:
2644
3067
  type: VisualizationRepresentation
3068
+ queryParameters:
3069
+ minorVersion:
3070
+ type: integer
3071
+ required: false
2645
3072
  body:
2646
3073
  application/json:
2647
3074
  type: VisualizationInputRepresentation
@@ -2660,6 +3087,10 @@ types:
2660
3087
  body:
2661
3088
  application/json:
2662
3089
  type: VisualizationBundleRepresentation
3090
+ queryParameters:
3091
+ minorVersion:
3092
+ type: integer
3093
+ required: false
2663
3094
  uriParameters:
2664
3095
  visualizationIdOrApiName:
2665
3096
  type: string
@@ -34,6 +34,11 @@ types:
34
34
  DataAssetRequestCountRepresentation:
35
35
  (luvio.ttl): 500
36
36
  (luvio.opaque): true
37
+ DataAlertRepresentation:
38
+ (luvio.ttl): 500
39
+ (luvio.opaque): true
40
+ (luvio.key):
41
+ dataAlertId: id
37
42
  DataAssetRequestRepresentation:
38
43
  (luvio.ttl): 500
39
44
  (luvio.opaque): true
@@ -194,6 +199,9 @@ types:
194
199
  post:
195
200
  (luvio.adapter):
196
201
  name: follow
202
+ patch:
203
+ (luvio.adapter):
204
+ name: updateFollowedAsset
197
205
 
198
206
  /tableau/follow/followers/{followerId}/follows/{followedAssetId}:
199
207
  delete:
@@ -381,6 +389,16 @@ types:
381
389
  (luvio.adapter):
382
390
  name: getMarketplaceListingInstallationProgress
383
391
 
392
+ /tableau/dataAlerts:
393
+ post:
394
+ (luvio.adapter):
395
+ name: createDataAlert
396
+
397
+ /tableau/dataAlerts/{dataAlertId}:
398
+ put:
399
+ (luvio.adapter):
400
+ name: updateDataAlert
401
+
384
402
  /tableau/data-assets/requests:
385
403
  get:
386
404
  (luvio.adapter):