@cube-dev/platform-client 0.3.0 → 0.4.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/CHANGELOG.md +57 -0
- package/dist/schema.d.ts +1765 -241
- package/dist/schema.d.ts.map +1 -1
- package/package.json +6 -7
package/dist/schema.d.ts
CHANGED
|
@@ -207,7 +207,10 @@ export interface paths {
|
|
|
207
207
|
};
|
|
208
208
|
/** Get deployment */
|
|
209
209
|
get: operations["DeploymentsPublicController.getDeployment"];
|
|
210
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* Update a deployment
|
|
212
|
+
* @description Update any subset of a deployment’s settings — everything the console’s Settings pages own — and read the full settings back. Fields you omit are left alone, and `templateVariables` is merged key-by-key rather than replaced, so setting one configuration flag never clears the others. `releaseChannelVersion` must be one of the versions `GET /:deploymentId/versions` lists for the target channel (in any of the forms it reports) — anything else is a 400, and the container image is resolved from the version rather than sent. Choosing a version that is not the channel’s latest also sets `releaseChannelVersionHold` unless you send it explicitly, so auto-upgrade does not undo the pin.
|
|
213
|
+
*/
|
|
211
214
|
put: operations["DeploymentsPublicController.updateDeployment"];
|
|
212
215
|
post?: never;
|
|
213
216
|
/** Delete deployment */
|
|
@@ -309,7 +312,8 @@ export interface paths {
|
|
|
309
312
|
path?: never;
|
|
310
313
|
cookie?: never;
|
|
311
314
|
};
|
|
312
|
-
|
|
315
|
+
/** List dbt syncs for a deployment */
|
|
316
|
+
get: operations["DbtSyncPublicController.listDbtSyncs"];
|
|
313
317
|
put?: never;
|
|
314
318
|
/** Start a dbt sync for a deployment */
|
|
315
319
|
post: operations["DbtSyncPublicController.startDbtSync"];
|
|
@@ -319,6 +323,58 @@ export interface paths {
|
|
|
319
323
|
patch?: never;
|
|
320
324
|
trace?: never;
|
|
321
325
|
};
|
|
326
|
+
"/api/v1/deployments/{deploymentId}/dbt-sync/{syncJobId}": {
|
|
327
|
+
parameters: {
|
|
328
|
+
query?: never;
|
|
329
|
+
header?: never;
|
|
330
|
+
path?: never;
|
|
331
|
+
cookie?: never;
|
|
332
|
+
};
|
|
333
|
+
/** Get the status of a dbt sync */
|
|
334
|
+
get: operations["DbtSyncPublicController.getDbtSyncStatus"];
|
|
335
|
+
put?: never;
|
|
336
|
+
post?: never;
|
|
337
|
+
/** Cancel a running dbt sync */
|
|
338
|
+
delete: operations["DbtSyncPublicController.cancelDbtSync"];
|
|
339
|
+
options?: never;
|
|
340
|
+
head?: never;
|
|
341
|
+
patch?: never;
|
|
342
|
+
trace?: never;
|
|
343
|
+
};
|
|
344
|
+
"/api/v1/deployments/{deploymentId}/dbt-sync/{syncJobId}/logs": {
|
|
345
|
+
parameters: {
|
|
346
|
+
query?: never;
|
|
347
|
+
header?: never;
|
|
348
|
+
path?: never;
|
|
349
|
+
cookie?: never;
|
|
350
|
+
};
|
|
351
|
+
/** Get the log of a dbt sync */
|
|
352
|
+
get: operations["DbtSyncPublicController.getDbtSyncLogs"];
|
|
353
|
+
put?: never;
|
|
354
|
+
post?: never;
|
|
355
|
+
delete?: never;
|
|
356
|
+
options?: never;
|
|
357
|
+
head?: never;
|
|
358
|
+
patch?: never;
|
|
359
|
+
trace?: never;
|
|
360
|
+
};
|
|
361
|
+
"/api/v1/deployments/{deploymentId}/dbt-sync/{syncJobId}/result": {
|
|
362
|
+
parameters: {
|
|
363
|
+
query?: never;
|
|
364
|
+
header?: never;
|
|
365
|
+
path?: never;
|
|
366
|
+
cookie?: never;
|
|
367
|
+
};
|
|
368
|
+
/** Get the result of a completed dbt sync */
|
|
369
|
+
get: operations["DbtSyncPublicController.getDbtSyncResult"];
|
|
370
|
+
put?: never;
|
|
371
|
+
post?: never;
|
|
372
|
+
delete?: never;
|
|
373
|
+
options?: never;
|
|
374
|
+
head?: never;
|
|
375
|
+
patch?: never;
|
|
376
|
+
trace?: never;
|
|
377
|
+
};
|
|
322
378
|
"/api/v1/deployments/{deploymentId}/env-vars": {
|
|
323
379
|
parameters: {
|
|
324
380
|
query?: never;
|
|
@@ -328,12 +384,12 @@ export interface paths {
|
|
|
328
384
|
};
|
|
329
385
|
/**
|
|
330
386
|
* Get env variables
|
|
331
|
-
* @description Lists the deployment environment variables
|
|
387
|
+
* @description Lists the deployment environment variables, cursor-paginated via `first`/`after`. Values of secret-named variables (containing PASS, SECRET, TOKEN, KEY, or CREDENTIAL) are returned as `[ENCRYPTED]`.
|
|
332
388
|
*/
|
|
333
389
|
get: operations["EnvVariablesPublicController.getEnvVariables"];
|
|
334
390
|
/**
|
|
335
391
|
* Set env variables
|
|
336
|
-
* @description Upserts deployment environment variables by name; variables not included keep their existing values. Passing the `[ENCRYPTED]` placeholder (the masked read value) is rejected — omit variables you do not intend to change.
|
|
392
|
+
* @description Upserts deployment environment variables by name; variables not included keep their existing values. Passing the `[ENCRYPTED]` placeholder (the masked read value) is rejected — omit variables you do not intend to change. New variable names must be POSIX identifiers (`^[A-Za-z_][A-Za-z0-9_]*$`); names already stored on the deployment may be resent unchanged so a legacy name can still be updated or removed.
|
|
337
393
|
*/
|
|
338
394
|
put: operations["EnvVariablesPublicController.setEnvVariables"];
|
|
339
395
|
post?: never;
|
|
@@ -628,7 +684,10 @@ export interface paths {
|
|
|
628
684
|
path?: never;
|
|
629
685
|
cookie?: never;
|
|
630
686
|
};
|
|
631
|
-
/**
|
|
687
|
+
/**
|
|
688
|
+
* List report folders
|
|
689
|
+
* @description List the report folders in a deployment, scoped to the folders the calling user can access, cursor-paginated via `first`/`after` (pass the previous response's `pageInfo.endCursor` as `after` to fetch the next page).
|
|
690
|
+
*/
|
|
632
691
|
get: operations["ReportsPublicController.getReportFolders"];
|
|
633
692
|
put?: never;
|
|
634
693
|
post?: never;
|
|
@@ -752,7 +811,36 @@ export interface paths {
|
|
|
752
811
|
*/
|
|
753
812
|
put: operations["ReportsPublicController.connectReportToWorkbook"];
|
|
754
813
|
post?: never;
|
|
755
|
-
|
|
814
|
+
/**
|
|
815
|
+
* Disconnect a report from one spot in a spreadsheet
|
|
816
|
+
* @description Remove a single placement of a report — one sheet + anchor in one
|
|
817
|
+
* spreadsheet — leaving every other placement, in this workbook and in others, alone.
|
|
818
|
+
*
|
|
819
|
+
* Address the placement by `placementId`, or (for placements recorded before ids
|
|
820
|
+
* existed) by `externalWorkbookId` plus `sheetName` and `anchorCell` — or a
|
|
821
|
+
* `resultLocation` naming both. Neither the sheet name nor the anchor is optional in
|
|
822
|
+
* that form: matching is by sheet + anchor, and a target missing either addresses
|
|
823
|
+
* nothing.
|
|
824
|
+
*
|
|
825
|
+
* `sheetId` is an optional extra, not a substitute for `sheetName`: a placement
|
|
826
|
+
* written before that field existed has only a name, and no id the server could
|
|
827
|
+
* resolve to it, so an id-only address would match nothing while looking correct.
|
|
828
|
+
*
|
|
829
|
+
* Send a `sheetId` only when you know it is the one the placement was stored with.
|
|
830
|
+
* It NARROWS the target — a placement recorded under a different id is not matched,
|
|
831
|
+
* even when the sheet name and anchor agree, because the stored name may belong to a
|
|
832
|
+
* tab that has since been renamed and the id is the only stable identity. If your id
|
|
833
|
+
* may have moved on (a tab deleted and recreated under the same name reports a new
|
|
834
|
+
* one), address the placement by `placementId`, or by sheet name with no
|
|
835
|
+
* `sheetId` at all.
|
|
836
|
+
*
|
|
837
|
+
* A target that matches no placement succeeds and changes nothing, so retrying is
|
|
838
|
+
* safe.
|
|
839
|
+
*
|
|
840
|
+
* Like connecting, this records nothing about the report's definition and so requires
|
|
841
|
+
* only read access: unplacing a report from your own sheet is not an edit to the report.
|
|
842
|
+
*/
|
|
843
|
+
delete: operations["ReportsPublicController.disconnectReportFromWorkbook"];
|
|
756
844
|
options?: never;
|
|
757
845
|
head?: never;
|
|
758
846
|
patch?: never;
|
|
@@ -775,6 +863,26 @@ export interface paths {
|
|
|
775
863
|
patch?: never;
|
|
776
864
|
trace?: never;
|
|
777
865
|
};
|
|
866
|
+
"/api/v1/deployments/{deploymentId}/settings": {
|
|
867
|
+
parameters: {
|
|
868
|
+
query?: never;
|
|
869
|
+
header?: never;
|
|
870
|
+
path?: never;
|
|
871
|
+
cookie?: never;
|
|
872
|
+
};
|
|
873
|
+
/**
|
|
874
|
+
* Get deployment settings
|
|
875
|
+
* @description Every setting of a deployment in one payload — the full contents of the console Settings pages (general, configuration flags, deploy, launchpad, Cube Store private storage), plus the read-only values displayed alongside them. Secrets are excluded; read environment variables through `/env-vars` instead. Writes go to `PUT /:deploymentId`, which accepts the same fields and returns this payload.
|
|
876
|
+
*/
|
|
877
|
+
get: operations["DeploymentsPublicController.getDeploymentSettings"];
|
|
878
|
+
put?: never;
|
|
879
|
+
post?: never;
|
|
880
|
+
delete?: never;
|
|
881
|
+
options?: never;
|
|
882
|
+
head?: never;
|
|
883
|
+
patch?: never;
|
|
884
|
+
trace?: never;
|
|
885
|
+
};
|
|
778
886
|
"/api/v1/deployments/{deploymentId}/shared-workspace": {
|
|
779
887
|
parameters: {
|
|
780
888
|
query?: never;
|
|
@@ -816,6 +924,26 @@ export interface paths {
|
|
|
816
924
|
patch?: never;
|
|
817
925
|
trace?: never;
|
|
818
926
|
};
|
|
927
|
+
"/api/v1/deployments/{deploymentId}/versions": {
|
|
928
|
+
parameters: {
|
|
929
|
+
query?: never;
|
|
930
|
+
header?: never;
|
|
931
|
+
path?: never;
|
|
932
|
+
cookie?: never;
|
|
933
|
+
};
|
|
934
|
+
/**
|
|
935
|
+
* List available Cube versions
|
|
936
|
+
* @description Every Cube version this deployment can be switched to — the same set the console’s version picker offers: the head of each release channel, plus the older versions the tenant has run before (its release history). Pass a listed `releaseChannelVersion` to `PUT /:deploymentId`; anything else is rejected. The container image is resolved server-side and is not part of the write surface.
|
|
937
|
+
*/
|
|
938
|
+
get: operations["DeploymentsPublicController.listDeploymentVersions"];
|
|
939
|
+
put?: never;
|
|
940
|
+
post?: never;
|
|
941
|
+
delete?: never;
|
|
942
|
+
options?: never;
|
|
943
|
+
head?: never;
|
|
944
|
+
patch?: never;
|
|
945
|
+
trace?: never;
|
|
946
|
+
};
|
|
819
947
|
"/api/v1/deployments/{deploymentId}/workbooks": {
|
|
820
948
|
parameters: {
|
|
821
949
|
query?: never;
|
|
@@ -909,23 +1037,6 @@ export interface paths {
|
|
|
909
1037
|
patch?: never;
|
|
910
1038
|
trace?: never;
|
|
911
1039
|
};
|
|
912
|
-
"/api/v1/deployments/{deploymentId}/workbooks/{workbookId}/dashboard/ai-widget-thread": {
|
|
913
|
-
parameters: {
|
|
914
|
-
query?: never;
|
|
915
|
-
header?: never;
|
|
916
|
-
path?: never;
|
|
917
|
-
cookie?: never;
|
|
918
|
-
};
|
|
919
|
-
get?: never;
|
|
920
|
-
put?: never;
|
|
921
|
-
/** Update published dashboard ai widget thread */
|
|
922
|
-
post: operations["WorkbooksPublicController.updatePublishedDashboardAiWidgetThread"];
|
|
923
|
-
delete?: never;
|
|
924
|
-
options?: never;
|
|
925
|
-
head?: never;
|
|
926
|
-
patch?: never;
|
|
927
|
-
trace?: never;
|
|
928
|
-
};
|
|
929
1040
|
"/api/v1/deployments/{deploymentId}/workbooks/{workbookId}/duplicate": {
|
|
930
1041
|
parameters: {
|
|
931
1042
|
query?: never;
|
|
@@ -1269,6 +1380,32 @@ export interface paths {
|
|
|
1269
1380
|
patch?: never;
|
|
1270
1381
|
trace?: never;
|
|
1271
1382
|
};
|
|
1383
|
+
"/api/v1/embed-tenants/{embedTenantName}/user": {
|
|
1384
|
+
parameters: {
|
|
1385
|
+
query?: never;
|
|
1386
|
+
header?: never;
|
|
1387
|
+
path?: never;
|
|
1388
|
+
cookie?: never;
|
|
1389
|
+
};
|
|
1390
|
+
get?: never;
|
|
1391
|
+
put?: never;
|
|
1392
|
+
/**
|
|
1393
|
+
* Provision an embed user
|
|
1394
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
1395
|
+
*
|
|
1396
|
+
* Creates or updates one embed user from the identity your own system knows. An embed user is otherwise created the first time they generate a session, so this is how an integration puts its own directory into Cube up front: a user provisioned here is immediately addressable — listable, searchable, assignable to groups, and selectable wherever the product offers a choice of users — before they have ever opened the embed.
|
|
1397
|
+
*
|
|
1398
|
+
* Idempotent, and the body is the desired state: provisioning an `externalId` that already exists updates it rather than failing. `email`, `userProfile.displayName` and `userProfile.picture` are overwritten when supplied and preserved when omitted; each group lane is REPLACED when supplied, preserved when omitted, and cleared by `[]`. The embed tenant itself is created on demand, so it need not exist yet.
|
|
1399
|
+
*
|
|
1400
|
+
* Everything set here is exactly what `generate-session` would have set, and a later session for the same `externalId` re-applies whatever it carries — so provisioning changes when a user exists, never what their session grants them.
|
|
1401
|
+
*/
|
|
1402
|
+
post: operations["EmbedTenantAdminPublicController.provisionEmbedUser"];
|
|
1403
|
+
delete?: never;
|
|
1404
|
+
options?: never;
|
|
1405
|
+
head?: never;
|
|
1406
|
+
patch?: never;
|
|
1407
|
+
trace?: never;
|
|
1408
|
+
};
|
|
1272
1409
|
"/api/v1/embed-tenants/{embedTenantName}/users": {
|
|
1273
1410
|
parameters: {
|
|
1274
1411
|
query?: never;
|
|
@@ -1284,7 +1421,19 @@ export interface paths {
|
|
|
1284
1421
|
*/
|
|
1285
1422
|
get: operations["EmbedTenantAdminPublicController.listEmbedUsers"];
|
|
1286
1423
|
put?: never;
|
|
1287
|
-
|
|
1424
|
+
/**
|
|
1425
|
+
* Provision embed users in bulk
|
|
1426
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
1427
|
+
*
|
|
1428
|
+
* Provisions up to 100 embed users in one request, each exactly as `POST /embed-tenants/{embedTenantName}/user` would. Use it to load a user directory into an embed tenant, and send further requests to cover a directory larger than one batch.
|
|
1429
|
+
*
|
|
1430
|
+
* **This endpoint is partially successful.** It returns `200` whenever the request itself is well formed, and reports each user separately:
|
|
1431
|
+
* - `succeeded` — the users that were provisioned, in the order requested.
|
|
1432
|
+
* - `failed` — the entries that were not, each with the `externalId` and an `error` carrying the `status` and `message` the single-user endpoint would have returned (`400` for a group name that does not exist, `429` once the tenant is at its embed-user limit).
|
|
1433
|
+
*
|
|
1434
|
+
* Users are applied one at a time in the order given, and earlier ones are not rolled back when a later one fails. Since provisioning is idempotent, resending the whole batch after fixing the failures is safe. A repeated `externalId` within one batch is applied once per entry, so the last one wins.
|
|
1435
|
+
*/
|
|
1436
|
+
post: operations["EmbedTenantAdminPublicController.provisionEmbedUsers"];
|
|
1288
1437
|
delete?: never;
|
|
1289
1438
|
options?: never;
|
|
1290
1439
|
head?: never;
|
|
@@ -1587,25 +1736,41 @@ export interface paths {
|
|
|
1587
1736
|
path?: never;
|
|
1588
1737
|
cookie?: never;
|
|
1589
1738
|
};
|
|
1590
|
-
/**
|
|
1739
|
+
/**
|
|
1740
|
+
* List regions
|
|
1741
|
+
* @description Lists the regions available to the account, cursor-paginated via `first`/`after`. The legacy `data` field returns the full, unpaginated list and is deprecated — use `items` + `pageInfo` instead.
|
|
1742
|
+
*/
|
|
1591
1743
|
get: operations["RegionsPublicController.listRegions"];
|
|
1592
1744
|
put?: never;
|
|
1593
|
-
|
|
1745
|
+
/**
|
|
1746
|
+
* Create a region
|
|
1747
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1748
|
+
*
|
|
1749
|
+
* Creates the region, its provisioner stack and both Private APIs in one transaction, and returns immediately. **No cloud infrastructure exists yet** — the rows describe what will be built, and `POST /api/v1/regions/{regionId}/apply` is what builds it.
|
|
1750
|
+
*
|
|
1751
|
+
* The name is derived (`<cloudProvider>-<cloudProviderRegion>-t-<tenantId>[-<label>]`) and is unique, so one account can hold one region per cloud region per `label`. Repeating a create is rejected rather than silently returning the existing region.
|
|
1752
|
+
*/
|
|
1753
|
+
post: operations["RegionsPublicController.createRegion"];
|
|
1594
1754
|
delete?: never;
|
|
1595
1755
|
options?: never;
|
|
1596
1756
|
head?: never;
|
|
1597
1757
|
patch?: never;
|
|
1598
1758
|
trace?: never;
|
|
1599
1759
|
};
|
|
1600
|
-
"/api/v1/
|
|
1760
|
+
"/api/v1/regions/cloud-provider-catalog": {
|
|
1601
1761
|
parameters: {
|
|
1602
1762
|
query?: never;
|
|
1603
1763
|
header?: never;
|
|
1604
1764
|
path?: never;
|
|
1605
1765
|
cookie?: never;
|
|
1606
1766
|
};
|
|
1607
|
-
/**
|
|
1608
|
-
|
|
1767
|
+
/**
|
|
1768
|
+
* List the clouds and cloud regions a region can be provisioned in
|
|
1769
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1770
|
+
*
|
|
1771
|
+
* The accepted values for `cloudProvider` and `cloudProviderRegion` when creating a region — ask rather than guess, since an unsupported cloud region is rejected. `availabilityZones` is informational: the zones a region will span are allocated, not chosen.
|
|
1772
|
+
*/
|
|
1773
|
+
get: operations["RegionsPublicController.listCloudProviderCatalog"];
|
|
1609
1774
|
put?: never;
|
|
1610
1775
|
post?: never;
|
|
1611
1776
|
delete?: never;
|
|
@@ -1614,24 +1779,43 @@ export interface paths {
|
|
|
1614
1779
|
patch?: never;
|
|
1615
1780
|
trace?: never;
|
|
1616
1781
|
};
|
|
1617
|
-
"/api/v1/
|
|
1782
|
+
"/api/v1/regions/{regionId}": {
|
|
1618
1783
|
parameters: {
|
|
1619
1784
|
query?: never;
|
|
1620
1785
|
header?: never;
|
|
1621
1786
|
path?: never;
|
|
1622
1787
|
cookie?: never;
|
|
1623
1788
|
};
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1789
|
+
/**
|
|
1790
|
+
* Get one region
|
|
1791
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1792
|
+
*
|
|
1793
|
+
* Answers `404` for a region another account owns — the same response as for a region that does not exist, so the API never confirms the existence of infrastructure belonging to someone else.
|
|
1794
|
+
*/
|
|
1795
|
+
get: operations["RegionsPublicController.getRegion"];
|
|
1796
|
+
/**
|
|
1797
|
+
* Update a region's title and path-based-routing overrides
|
|
1798
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1799
|
+
*
|
|
1800
|
+
* Only the fields present in the body are written; send an empty string on an override to clear it. The region's `name` is not editable — it is the prefix every cloud resource in the region is named from, so changing it would orphan infrastructure rather than rename it.
|
|
1801
|
+
*/
|
|
1802
|
+
put: operations["RegionsPublicController.updateRegion"];
|
|
1627
1803
|
post?: never;
|
|
1628
|
-
|
|
1804
|
+
/**
|
|
1805
|
+
* Destroy a region
|
|
1806
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1807
|
+
*
|
|
1808
|
+
* Queues a teardown of the whole region and returns a job to poll. **The region is not gone when this returns** — a destroy runs 15–25 minutes, and the rows disappear only when the job succeeds. Poll `GET /api/v1/regions/{regionId}/provisioning-status` until the provisioning status stops resolving or the run reaches a terminal state.
|
|
1809
|
+
*
|
|
1810
|
+
* `jobId` is `null` when there was nothing to enqueue — a repeat call while a teardown is already in flight, or a region already torn down. That is not an error, and it is not "never provisioned": a region that was never applied gets a real job.
|
|
1811
|
+
*/
|
|
1812
|
+
delete: operations["RegionsPublicController.destroyRegion"];
|
|
1629
1813
|
options?: never;
|
|
1630
1814
|
head?: never;
|
|
1631
1815
|
patch?: never;
|
|
1632
1816
|
trace?: never;
|
|
1633
1817
|
};
|
|
1634
|
-
"/api/v1/
|
|
1818
|
+
"/api/v1/regions/{regionId}/apply": {
|
|
1635
1819
|
parameters: {
|
|
1636
1820
|
query?: never;
|
|
1637
1821
|
header?: never;
|
|
@@ -1639,59 +1823,108 @@ export interface paths {
|
|
|
1639
1823
|
cookie?: never;
|
|
1640
1824
|
};
|
|
1641
1825
|
get?: never;
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1826
|
+
put?: never;
|
|
1827
|
+
/**
|
|
1828
|
+
* Apply a region — build or converge its infrastructure
|
|
1829
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1830
|
+
*
|
|
1831
|
+
* Queues the run that reconciles the cloud with the intent recorded on the region, and returns a job to poll. Apply is what actually spends money, and it is idempotent in the Pulumi sense: running it on an unchanged region converges to the same state.
|
|
1832
|
+
*
|
|
1833
|
+
* Call it after creating a region, and again after any PrivateLink change — editing a PrivateLink records intent and touches nothing in AWS until the next apply.
|
|
1834
|
+
*/
|
|
1835
|
+
post: operations["RegionsPublicController.applyRegion"];
|
|
1645
1836
|
delete?: never;
|
|
1646
1837
|
options?: never;
|
|
1647
1838
|
head?: never;
|
|
1648
1839
|
patch?: never;
|
|
1649
1840
|
trace?: never;
|
|
1650
1841
|
};
|
|
1651
|
-
"/api/v1/
|
|
1842
|
+
"/api/v1/regions/{regionId}/private-links/": {
|
|
1652
1843
|
parameters: {
|
|
1653
1844
|
query?: never;
|
|
1654
1845
|
header?: never;
|
|
1655
1846
|
path?: never;
|
|
1656
1847
|
cookie?: never;
|
|
1657
1848
|
};
|
|
1658
|
-
/**
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1849
|
+
/**
|
|
1850
|
+
* List a region's PrivateLinks
|
|
1851
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1852
|
+
*
|
|
1853
|
+
* Cursor-paginated via `first`/`after`. Each entry carries the `status` the row is in, not the state of AWS: a link edited since the last apply reports what was asked for.
|
|
1854
|
+
*
|
|
1855
|
+
* Answers `404` for a region another account owns.
|
|
1856
|
+
*/
|
|
1857
|
+
get: operations["RegionPrivateLinksPublicController.listPrivateLinks"];
|
|
1858
|
+
put?: never;
|
|
1859
|
+
/**
|
|
1860
|
+
* Create a PrivateLink
|
|
1861
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1862
|
+
*
|
|
1863
|
+
* Records the intent to open an endpoint into a service you publish. **Nothing is created in AWS until the next apply** — call `POST /api/v1/regions/{regionId}/apply` afterwards, and the row stays `pending` until that run reaches it.
|
|
1864
|
+
*
|
|
1865
|
+
* `ports` is required and must list at least one port: they become the ingress rules of the endpoint's security group, so an endpoint with none is one nothing in the region can reach.
|
|
1866
|
+
*
|
|
1867
|
+
* Expect `pending_acceptance` once the endpoint exists: the acceptance happens in **your own AWS account**, so that state is not a failure and not something Cube can clear. Accept the endpoint connection there and the status moves on.
|
|
1868
|
+
*/
|
|
1869
|
+
post: operations["RegionPrivateLinksPublicController.createPrivateLink"];
|
|
1663
1870
|
delete?: never;
|
|
1664
1871
|
options?: never;
|
|
1665
1872
|
head?: never;
|
|
1666
1873
|
patch?: never;
|
|
1667
1874
|
trace?: never;
|
|
1668
1875
|
};
|
|
1669
|
-
"/api/v1/
|
|
1876
|
+
"/api/v1/regions/{regionId}/private-links/{privateLinkId}": {
|
|
1670
1877
|
parameters: {
|
|
1671
1878
|
query?: never;
|
|
1672
1879
|
header?: never;
|
|
1673
1880
|
path?: never;
|
|
1674
1881
|
cookie?: never;
|
|
1675
1882
|
};
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1883
|
+
/**
|
|
1884
|
+
* Get one PrivateLink
|
|
1885
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1886
|
+
*
|
|
1887
|
+
* Answers `404` when the PrivateLink does not exist, or belongs to a different region than the one in the path — an id from another region is not silently honoured.
|
|
1888
|
+
*/
|
|
1889
|
+
get: operations["RegionPrivateLinksPublicController.getPrivateLink"];
|
|
1890
|
+
/**
|
|
1891
|
+
* Update a PrivateLink
|
|
1892
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1893
|
+
*
|
|
1894
|
+
* Every field is optional; only what is sent is written. Like the create, this changes intent and nothing else — the AWS endpoint follows on the next apply, which means a link can sit in a state that no longer matches this row until then.
|
|
1895
|
+
*/
|
|
1896
|
+
put: operations["RegionPrivateLinksPublicController.updatePrivateLink"];
|
|
1897
|
+
post?: never;
|
|
1898
|
+
/**
|
|
1899
|
+
* Mark a PrivateLink for removal
|
|
1900
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1901
|
+
*
|
|
1902
|
+
* Removes the PrivateLink — and **`pendingApply` says whether that is already finished**, so read it rather than assuming.
|
|
1903
|
+
*
|
|
1904
|
+
* `pendingApply: false` means the endpoint had never been realized in AWS, so the row was deleted outright and there is nothing left to do. `pendingApply: true` means a live VPC endpoint exists: the row moves to `deleting` and the endpoint disappears on the next apply. Neither answers `204 No Content`, because in the second case a response that read as "gone" would be wrong for however long that run takes.
|
|
1905
|
+
*/
|
|
1906
|
+
delete: operations["RegionPrivateLinksPublicController.removePrivateLink"];
|
|
1681
1907
|
options?: never;
|
|
1682
1908
|
head?: never;
|
|
1683
1909
|
patch?: never;
|
|
1684
1910
|
trace?: never;
|
|
1685
1911
|
};
|
|
1686
|
-
"/api/v1/
|
|
1912
|
+
"/api/v1/regions/{regionId}/provisioning-status": {
|
|
1687
1913
|
parameters: {
|
|
1688
1914
|
query?: never;
|
|
1689
1915
|
header?: never;
|
|
1690
1916
|
path?: never;
|
|
1691
1917
|
cookie?: never;
|
|
1692
1918
|
};
|
|
1693
|
-
/**
|
|
1694
|
-
|
|
1919
|
+
/**
|
|
1920
|
+
* The region's latest provisioning run
|
|
1921
|
+
* @description **🔒 Cube super admin only.** Requires Cube staff privileges — a tenant administrator cannot call this endpoint. It provisions or destroys real cloud infrastructure, which is why the bar is higher than for the rest of the API.
|
|
1922
|
+
*
|
|
1923
|
+
* The state of the most recent apply or destroy — this is the poll half of every write on this surface.
|
|
1924
|
+
*
|
|
1925
|
+
* Answers `204 No Content` when there is no run to report, which is a state and not an error: it means either that the region has never been applied, or that the provisioner does not manage it at all. The two are indistinguishable here by design; the run log and the engine diagnostics behind it are operator surfaces and are not exposed.
|
|
1926
|
+
*/
|
|
1927
|
+
get: operations["RegionsPublicController.getRegionProvisioningStatus"];
|
|
1695
1928
|
put?: never;
|
|
1696
1929
|
post?: never;
|
|
1697
1930
|
delete?: never;
|
|
@@ -1700,25 +1933,24 @@ export interface paths {
|
|
|
1700
1933
|
patch?: never;
|
|
1701
1934
|
trace?: never;
|
|
1702
1935
|
};
|
|
1703
|
-
"/api/v1/
|
|
1936
|
+
"/api/v1/resource-policies/": {
|
|
1704
1937
|
parameters: {
|
|
1705
1938
|
query?: never;
|
|
1706
1939
|
header?: never;
|
|
1707
1940
|
path?: never;
|
|
1708
1941
|
cookie?: never;
|
|
1709
1942
|
};
|
|
1710
|
-
/** Get
|
|
1711
|
-
get: operations["
|
|
1943
|
+
/** Get policies */
|
|
1944
|
+
get: operations["ResourcePoliciesPublicController.getPolicies"];
|
|
1712
1945
|
put?: never;
|
|
1713
|
-
|
|
1714
|
-
post: operations["UserAttributesPublicController.createUserAttribute"];
|
|
1946
|
+
post?: never;
|
|
1715
1947
|
delete?: never;
|
|
1716
1948
|
options?: never;
|
|
1717
1949
|
head?: never;
|
|
1718
1950
|
patch?: never;
|
|
1719
1951
|
trace?: never;
|
|
1720
1952
|
};
|
|
1721
|
-
"/api/v1/
|
|
1953
|
+
"/api/v1/resource-policies/group": {
|
|
1722
1954
|
parameters: {
|
|
1723
1955
|
query?: never;
|
|
1724
1956
|
header?: never;
|
|
@@ -1726,26 +1958,25 @@ export interface paths {
|
|
|
1726
1958
|
cookie?: never;
|
|
1727
1959
|
};
|
|
1728
1960
|
get?: never;
|
|
1729
|
-
/** Update
|
|
1730
|
-
put: operations["
|
|
1961
|
+
/** Update group policy */
|
|
1962
|
+
put: operations["ResourcePoliciesPublicController.updateGroupPolicy"];
|
|
1731
1963
|
post?: never;
|
|
1732
|
-
|
|
1733
|
-
delete: operations["UserAttributesPublicController.deleteUserAttribute"];
|
|
1964
|
+
delete?: never;
|
|
1734
1965
|
options?: never;
|
|
1735
1966
|
head?: never;
|
|
1736
1967
|
patch?: never;
|
|
1737
1968
|
trace?: never;
|
|
1738
1969
|
};
|
|
1739
|
-
"/api/v1/
|
|
1970
|
+
"/api/v1/resource-policies/user": {
|
|
1740
1971
|
parameters: {
|
|
1741
1972
|
query?: never;
|
|
1742
1973
|
header?: never;
|
|
1743
1974
|
path?: never;
|
|
1744
1975
|
cookie?: never;
|
|
1745
1976
|
};
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
put
|
|
1977
|
+
get?: never;
|
|
1978
|
+
/** Update user policy */
|
|
1979
|
+
put: operations["ResourcePoliciesPublicController.updateUserPolicy"];
|
|
1749
1980
|
post?: never;
|
|
1750
1981
|
delete?: never;
|
|
1751
1982
|
options?: never;
|
|
@@ -1753,15 +1984,18 @@ export interface paths {
|
|
|
1753
1984
|
patch?: never;
|
|
1754
1985
|
trace?: never;
|
|
1755
1986
|
};
|
|
1756
|
-
"/api/v1/
|
|
1987
|
+
"/api/v1/spec": {
|
|
1757
1988
|
parameters: {
|
|
1758
1989
|
query?: never;
|
|
1759
1990
|
header?: never;
|
|
1760
1991
|
path?: never;
|
|
1761
1992
|
cookie?: never;
|
|
1762
1993
|
};
|
|
1763
|
-
/**
|
|
1764
|
-
|
|
1994
|
+
/**
|
|
1995
|
+
* Get the OpenAPI specification
|
|
1996
|
+
* @description The full OpenAPI 3.1 document for this API, as served by the build handling the request — every path, parameter, request body and schema. Intended for runtime discovery by clients and agents; `cube spec` wraps it with filtering.
|
|
1997
|
+
*/
|
|
1998
|
+
get: operations["OpenApiSpecPublicController.getSpec"];
|
|
1765
1999
|
put?: never;
|
|
1766
2000
|
post?: never;
|
|
1767
2001
|
delete?: never;
|
|
@@ -1770,25 +2004,25 @@ export interface paths {
|
|
|
1770
2004
|
patch?: never;
|
|
1771
2005
|
trace?: never;
|
|
1772
2006
|
};
|
|
1773
|
-
"/api/v1/
|
|
2007
|
+
"/api/v1/tenant/settings": {
|
|
1774
2008
|
parameters: {
|
|
1775
2009
|
query?: never;
|
|
1776
2010
|
header?: never;
|
|
1777
2011
|
path?: never;
|
|
1778
2012
|
cookie?: never;
|
|
1779
2013
|
};
|
|
1780
|
-
/** Get
|
|
1781
|
-
get: operations["
|
|
1782
|
-
|
|
2014
|
+
/** Get tenant settings */
|
|
2015
|
+
get: operations["TenantSettingsPublicController.getTenantSettings"];
|
|
2016
|
+
/** Update tenant settings */
|
|
2017
|
+
put: operations["TenantSettingsPublicController.updateTenantSettings"];
|
|
1783
2018
|
post?: never;
|
|
1784
|
-
|
|
1785
|
-
delete: operations["UserOAuthTokensPublicController.revokeUserOAuthToken"];
|
|
2019
|
+
delete?: never;
|
|
1786
2020
|
options?: never;
|
|
1787
2021
|
head?: never;
|
|
1788
2022
|
patch?: never;
|
|
1789
2023
|
trace?: never;
|
|
1790
2024
|
};
|
|
1791
|
-
"/api/v1/user-
|
|
2025
|
+
"/api/v1/user-attribute-values/": {
|
|
1792
2026
|
parameters: {
|
|
1793
2027
|
query?: never;
|
|
1794
2028
|
header?: never;
|
|
@@ -1797,24 +2031,155 @@ export interface paths {
|
|
|
1797
2031
|
};
|
|
1798
2032
|
get?: never;
|
|
1799
2033
|
put?: never;
|
|
1800
|
-
/**
|
|
1801
|
-
post: operations["
|
|
2034
|
+
/** Upsert user attribute value */
|
|
2035
|
+
post: operations["UserAttributeValuesPublicController.upsertUserAttributeValue"];
|
|
1802
2036
|
delete?: never;
|
|
1803
2037
|
options?: never;
|
|
1804
2038
|
head?: never;
|
|
1805
2039
|
patch?: never;
|
|
1806
2040
|
trace?: never;
|
|
1807
2041
|
};
|
|
1808
|
-
"/api/v1/
|
|
2042
|
+
"/api/v1/user-attribute-values/{userId}": {
|
|
1809
2043
|
parameters: {
|
|
1810
2044
|
query?: never;
|
|
1811
2045
|
header?: never;
|
|
1812
2046
|
path?: never;
|
|
1813
2047
|
cookie?: never;
|
|
1814
2048
|
};
|
|
1815
|
-
/** Get
|
|
1816
|
-
get: operations["
|
|
1817
|
-
put?: never;
|
|
2049
|
+
/** Get user attribute values */
|
|
2050
|
+
get: operations["UserAttributeValuesPublicController.getUserAttributeValues"];
|
|
2051
|
+
put?: never;
|
|
2052
|
+
post?: never;
|
|
2053
|
+
delete?: never;
|
|
2054
|
+
options?: never;
|
|
2055
|
+
head?: never;
|
|
2056
|
+
patch?: never;
|
|
2057
|
+
trace?: never;
|
|
2058
|
+
};
|
|
2059
|
+
"/api/v1/user-attributes/": {
|
|
2060
|
+
parameters: {
|
|
2061
|
+
query?: never;
|
|
2062
|
+
header?: never;
|
|
2063
|
+
path?: never;
|
|
2064
|
+
cookie?: never;
|
|
2065
|
+
};
|
|
2066
|
+
/**
|
|
2067
|
+
* Get user attributes
|
|
2068
|
+
* @description List user attributes, newest first, cursor-paginated via `first`/`after`. The legacy `offset`/`limit` query params and the `data`/`count` response fields are deprecated — use `items` + `pageInfo` instead.
|
|
2069
|
+
*/
|
|
2070
|
+
get: operations["UserAttributesPublicController.getUserAttributes"];
|
|
2071
|
+
put?: never;
|
|
2072
|
+
/** Create user attribute */
|
|
2073
|
+
post: operations["UserAttributesPublicController.createUserAttribute"];
|
|
2074
|
+
delete?: never;
|
|
2075
|
+
options?: never;
|
|
2076
|
+
head?: never;
|
|
2077
|
+
patch?: never;
|
|
2078
|
+
trace?: never;
|
|
2079
|
+
};
|
|
2080
|
+
"/api/v1/user-attributes/{id}": {
|
|
2081
|
+
parameters: {
|
|
2082
|
+
query?: never;
|
|
2083
|
+
header?: never;
|
|
2084
|
+
path?: never;
|
|
2085
|
+
cookie?: never;
|
|
2086
|
+
};
|
|
2087
|
+
get?: never;
|
|
2088
|
+
/** Update user attribute */
|
|
2089
|
+
put: operations["UserAttributesPublicController.updateUserAttribute"];
|
|
2090
|
+
post?: never;
|
|
2091
|
+
/** Delete user attribute */
|
|
2092
|
+
delete: operations["UserAttributesPublicController.deleteUserAttribute"];
|
|
2093
|
+
options?: never;
|
|
2094
|
+
head?: never;
|
|
2095
|
+
patch?: never;
|
|
2096
|
+
trace?: never;
|
|
2097
|
+
};
|
|
2098
|
+
"/api/v1/user-groups/": {
|
|
2099
|
+
parameters: {
|
|
2100
|
+
query?: never;
|
|
2101
|
+
header?: never;
|
|
2102
|
+
path?: never;
|
|
2103
|
+
cookie?: never;
|
|
2104
|
+
};
|
|
2105
|
+
/**
|
|
2106
|
+
* List groups
|
|
2107
|
+
* @description List user groups, newest first, cursor-paginated via `first`/`after`. Pass `search` for a case-insensitive substring match on the group name — pickers must use it rather than filtering a single page client-side, which cannot reach groups beyond the first page on tenants with many groups.
|
|
2108
|
+
*/
|
|
2109
|
+
get: operations["UserGroupsPublicController.listGroups"];
|
|
2110
|
+
put?: never;
|
|
2111
|
+
post?: never;
|
|
2112
|
+
delete?: never;
|
|
2113
|
+
options?: never;
|
|
2114
|
+
head?: never;
|
|
2115
|
+
patch?: never;
|
|
2116
|
+
trace?: never;
|
|
2117
|
+
};
|
|
2118
|
+
"/api/v1/user-oauth-tokens/": {
|
|
2119
|
+
parameters: {
|
|
2120
|
+
query?: never;
|
|
2121
|
+
header?: never;
|
|
2122
|
+
path?: never;
|
|
2123
|
+
cookie?: never;
|
|
2124
|
+
};
|
|
2125
|
+
/** List user o auth tokens */
|
|
2126
|
+
get: operations["UserOAuthTokensPublicController.listUserOAuthTokens"];
|
|
2127
|
+
put?: never;
|
|
2128
|
+
post?: never;
|
|
2129
|
+
delete?: never;
|
|
2130
|
+
options?: never;
|
|
2131
|
+
head?: never;
|
|
2132
|
+
patch?: never;
|
|
2133
|
+
trace?: never;
|
|
2134
|
+
};
|
|
2135
|
+
"/api/v1/user-oauth-tokens/{integrationId}": {
|
|
2136
|
+
parameters: {
|
|
2137
|
+
query?: never;
|
|
2138
|
+
header?: never;
|
|
2139
|
+
path?: never;
|
|
2140
|
+
cookie?: never;
|
|
2141
|
+
};
|
|
2142
|
+
/** Get user o auth token */
|
|
2143
|
+
get: operations["UserOAuthTokensPublicController.getUserOAuthToken"];
|
|
2144
|
+
put?: never;
|
|
2145
|
+
post?: never;
|
|
2146
|
+
/** Revoke user o auth token */
|
|
2147
|
+
delete: operations["UserOAuthTokensPublicController.revokeUserOAuthToken"];
|
|
2148
|
+
options?: never;
|
|
2149
|
+
head?: never;
|
|
2150
|
+
patch?: never;
|
|
2151
|
+
trace?: never;
|
|
2152
|
+
};
|
|
2153
|
+
"/api/v1/user-oauth-tokens/{integrationId}/initiate": {
|
|
2154
|
+
parameters: {
|
|
2155
|
+
query?: never;
|
|
2156
|
+
header?: never;
|
|
2157
|
+
path?: never;
|
|
2158
|
+
cookie?: never;
|
|
2159
|
+
};
|
|
2160
|
+
get?: never;
|
|
2161
|
+
put?: never;
|
|
2162
|
+
/** Initiate o auth flow */
|
|
2163
|
+
post: operations["UserOAuthTokensPublicController.initiateOAuthFlow"];
|
|
2164
|
+
delete?: never;
|
|
2165
|
+
options?: never;
|
|
2166
|
+
head?: never;
|
|
2167
|
+
patch?: never;
|
|
2168
|
+
trace?: never;
|
|
2169
|
+
};
|
|
2170
|
+
"/api/v1/users/": {
|
|
2171
|
+
parameters: {
|
|
2172
|
+
query?: never;
|
|
2173
|
+
header?: never;
|
|
2174
|
+
path?: never;
|
|
2175
|
+
cookie?: never;
|
|
2176
|
+
};
|
|
2177
|
+
/**
|
|
2178
|
+
* Get users
|
|
2179
|
+
* @description List users, newest first, cursor-paginated via `first`/`after`. Pass `search` for a case-insensitive substring match on first name, username or email — pickers must use it rather than filtering a single page client-side, which cannot reach users beyond the first page on large tenants.
|
|
2180
|
+
*/
|
|
2181
|
+
get: operations["UsersPublicController.getUsers"];
|
|
2182
|
+
put?: never;
|
|
1818
2183
|
/** Create user */
|
|
1819
2184
|
post: operations["UsersAdminPublicController.createUser"];
|
|
1820
2185
|
delete?: never;
|
|
@@ -1945,6 +2310,34 @@ export interface paths {
|
|
|
1945
2310
|
put?: never;
|
|
1946
2311
|
/** Create a branch (optionally entering dev mode on it) */
|
|
1947
2312
|
post: operations["DataModelPublicController.createBranch"];
|
|
2313
|
+
/**
|
|
2314
|
+
* Delete a branch
|
|
2315
|
+
* @description Deletes the branch and its git ref — the API-side counterpart of pruning a branch in Cube Cloud, for callers that create branches per run (a CI job syncing dbt on every pull request, say) and would otherwise accumulate them forever. Child branches are re-parented onto the deleted branch’s own parent, and anyone viewing the branch in dev mode is moved back to the default branch, so a branch that is currently open is deleted rather than refused. The deploy branch cannot be deleted (400) and an unknown branch is a 404.
|
|
2316
|
+
*
|
|
2317
|
+
* `removeOnUpstream=true` additionally deletes the branch on the connected git provider (GitHub/GitLab). It defaults to `false`, so by default the branch is removed from Cube Cloud only and the ref on your own remote is left alone — a CI job cleaning up branches it created itself should opt in explicitly.
|
|
2318
|
+
*
|
|
2319
|
+
* `branchName` is a query parameter rather than a path segment because branch names contain slashes (`dbt-sync/main-20260817120000-a1b2c3d4`).
|
|
2320
|
+
*/
|
|
2321
|
+
delete: operations["DataModelPublicController.removeBranch"];
|
|
2322
|
+
options?: never;
|
|
2323
|
+
head?: never;
|
|
2324
|
+
patch?: never;
|
|
2325
|
+
trace?: never;
|
|
2326
|
+
};
|
|
2327
|
+
"/build/api/v1/deployments/{deploymentId}/branches/staging-environment": {
|
|
2328
|
+
parameters: {
|
|
2329
|
+
query?: never;
|
|
2330
|
+
header?: never;
|
|
2331
|
+
path?: never;
|
|
2332
|
+
cookie?: never;
|
|
2333
|
+
};
|
|
2334
|
+
get?: never;
|
|
2335
|
+
/**
|
|
2336
|
+
* Enable or disable a branch’s staging environment
|
|
2337
|
+
* @description Enabling a branch keeps its staging environment always active and accessible at `<deploymentUrl>/dev-mode/{branchName}/cubejs-api/v1`; disabled (the default) it is only active while the branch is viewed in Cube Cloud. Enabled branches are the ones listed by `GET /api/v1/deployments/{deploymentId}/environments?type=staging`. Only shared branches qualify — personal dev branches and the deploy branch are rejected.
|
|
2338
|
+
*/
|
|
2339
|
+
put: operations["DataModelPublicController.setBranchStagingEnvironment"];
|
|
2340
|
+
post?: never;
|
|
1948
2341
|
delete?: never;
|
|
1949
2342
|
options?: never;
|
|
1950
2343
|
head?: never;
|
|
@@ -1992,7 +2385,10 @@ export interface paths {
|
|
|
1992
2385
|
path?: never;
|
|
1993
2386
|
cookie?: never;
|
|
1994
2387
|
};
|
|
1995
|
-
/**
|
|
2388
|
+
/**
|
|
2389
|
+
* List the data-model source files for a deployment
|
|
2390
|
+
* @description Returns the data-model file tree. `first`/`after` (from the shared cursor params) paginate the **top-level** tree nodes only — a single node can carry a large subtree, so this bounds the number of roots returned, not the total file count. Omit `first` to get the whole tree.
|
|
2391
|
+
*/
|
|
1996
2392
|
get: operations["DataModelPublicController.listFiles"];
|
|
1997
2393
|
/** Create or overwrite data-model source files */
|
|
1998
2394
|
put: operations["DataModelPublicController.updateFiles"];
|
|
@@ -2072,6 +2468,26 @@ export interface paths {
|
|
|
2072
2468
|
patch?: never;
|
|
2073
2469
|
trace?: never;
|
|
2074
2470
|
};
|
|
2471
|
+
"/build/api/v1/deployments/{deploymentId}/data-model/validate": {
|
|
2472
|
+
parameters: {
|
|
2473
|
+
query?: never;
|
|
2474
|
+
header?: never;
|
|
2475
|
+
path?: never;
|
|
2476
|
+
cookie?: never;
|
|
2477
|
+
};
|
|
2478
|
+
/**
|
|
2479
|
+
* Compile a deployment's data model and report compilation errors
|
|
2480
|
+
* @description Asks the branch's own Cube runtime for `GET /cubejs-api/v1/meta` — the same call the console makes in dev mode — so the verdict is the one that branch's API would give. With neither parameter it validates the deploy branch (production). `branchName` validates a named branch, and `devMode=true` validates the caller's active dev-mode branch; the two are mutually exclusive. Answers 200 with `valid: false` and the compiler's errors when the model doesn't compile — a broken model is a result, not a request error.
|
|
2481
|
+
*/
|
|
2482
|
+
get: operations["DataModelPublicController.validateDataModel"];
|
|
2483
|
+
put?: never;
|
|
2484
|
+
post?: never;
|
|
2485
|
+
delete?: never;
|
|
2486
|
+
options?: never;
|
|
2487
|
+
head?: never;
|
|
2488
|
+
patch?: never;
|
|
2489
|
+
trace?: never;
|
|
2490
|
+
};
|
|
2075
2491
|
"/build/api/v1/deployments/{deploymentId}/dev-mode": {
|
|
2076
2492
|
parameters: {
|
|
2077
2493
|
query?: never;
|
|
@@ -2171,9 +2587,12 @@ export interface components {
|
|
|
2171
2587
|
agentsConfigCredentials?: components["schemas"]["AIEngineerCubeCredentialsDTO"] | null;
|
|
2172
2588
|
chatThreadPolicies?: components["schemas"]["ChatThreadPolicy"][] | null;
|
|
2173
2589
|
cubeCredentials?: components["schemas"]["AIEngineerCubeCredentialsDTO"] | null;
|
|
2590
|
+
deployBranchName?: string | null;
|
|
2174
2591
|
graphqlToken?: string | null;
|
|
2175
2592
|
hasAgentAccess?: any | null;
|
|
2176
2593
|
mcpToken?: string | null;
|
|
2594
|
+
resolvedTimezone?: string | null;
|
|
2595
|
+
timezoneSettings?: components["schemas"]["TimezoneSettings"] | null;
|
|
2177
2596
|
token: string;
|
|
2178
2597
|
url: string;
|
|
2179
2598
|
};
|
|
@@ -2243,12 +2662,14 @@ export interface components {
|
|
|
2243
2662
|
createdAt?: (string) | null;
|
|
2244
2663
|
id: number;
|
|
2245
2664
|
name?: string | null;
|
|
2665
|
+
scopeDeploymentId?: number | null;
|
|
2246
2666
|
spaceConfigName?: string | null;
|
|
2247
2667
|
updatedAt?: (string) | null;
|
|
2248
2668
|
userId?: number | null;
|
|
2249
2669
|
};
|
|
2250
2670
|
AgentSpaceConfigDto: {
|
|
2251
2671
|
name?: string | null;
|
|
2672
|
+
scopeDeploymentId?: number | null;
|
|
2252
2673
|
spaceConfigName?: string | null;
|
|
2253
2674
|
};
|
|
2254
2675
|
AppConfigResponse: {
|
|
@@ -2257,6 +2678,7 @@ export interface components {
|
|
|
2257
2678
|
creatorMode?: components["schemas"]["CreatorMode"] | null;
|
|
2258
2679
|
embedding?: components["schemas"]["EmbedSettings"] | null;
|
|
2259
2680
|
sheetsUi?: components["schemas"]["SheetsUiSettings"] | null;
|
|
2681
|
+
timezoneSettings?: components["schemas"]["TimezoneSettings"] | null;
|
|
2260
2682
|
};
|
|
2261
2683
|
AppTheme: {
|
|
2262
2684
|
dark: components["schemas"]["AppThemeScheme"];
|
|
@@ -2287,12 +2709,19 @@ export interface components {
|
|
|
2287
2709
|
};
|
|
2288
2710
|
BranchResponse: {
|
|
2289
2711
|
id: number;
|
|
2712
|
+
isStagingEnvironmentEnabled?: boolean | null;
|
|
2290
2713
|
lastHash?: string | null;
|
|
2291
2714
|
name: string;
|
|
2292
2715
|
parentBranch?: string | null;
|
|
2293
2716
|
};
|
|
2294
2717
|
BranchesListResponse: {
|
|
2718
|
+
/**
|
|
2719
|
+
* @deprecated
|
|
2720
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
2721
|
+
*/
|
|
2295
2722
|
data: components["schemas"]["BranchResponse"][];
|
|
2723
|
+
items: components["schemas"]["BranchResponse"][];
|
|
2724
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
2296
2725
|
};
|
|
2297
2726
|
BuildStatusResponse: {
|
|
2298
2727
|
branchName: string;
|
|
@@ -2372,10 +2801,18 @@ export interface components {
|
|
|
2372
2801
|
private?: boolean | null;
|
|
2373
2802
|
};
|
|
2374
2803
|
ConnectReportToWorkbookInput: {
|
|
2804
|
+
anchorCell?: string | null;
|
|
2375
2805
|
endResultCell?: string | null;
|
|
2376
2806
|
externalWorkbookId: string;
|
|
2807
|
+
host?: components["schemas"]["ConnectReportToWorkbookInputHost"] | null;
|
|
2808
|
+
placementId?: string | null;
|
|
2377
2809
|
resultLocation: string;
|
|
2810
|
+
sheetId?: string | null;
|
|
2811
|
+
sheetName?: string | null;
|
|
2812
|
+
workbookName?: string | null;
|
|
2378
2813
|
};
|
|
2814
|
+
/** @enum {string} */
|
|
2815
|
+
ConnectReportToWorkbookInputHost: "GOOGLE_SHEETS" | "EXCEL";
|
|
2379
2816
|
ControlThemeBorderSectionInput: {
|
|
2380
2817
|
color?: string | null;
|
|
2381
2818
|
radius?: string | null;
|
|
@@ -2480,6 +2917,7 @@ export interface components {
|
|
|
2480
2917
|
endResultCell?: string | null;
|
|
2481
2918
|
externalWorkbookId?: string | null;
|
|
2482
2919
|
folderId?: number | null;
|
|
2920
|
+
host?: components["schemas"]["CreateReportInputHost"] | null;
|
|
2483
2921
|
jsonQuery?: string | null;
|
|
2484
2922
|
meta?: {
|
|
2485
2923
|
[key: string]: any;
|
|
@@ -2488,12 +2926,16 @@ export interface components {
|
|
|
2488
2926
|
pivotItems?: components["schemas"]["PivotItemsInput"] | null;
|
|
2489
2927
|
publicId?: string | null;
|
|
2490
2928
|
resultLocation?: string | null;
|
|
2929
|
+
sheetId?: string | null;
|
|
2491
2930
|
source?: components["schemas"]["CreateReportInputSource"] | null;
|
|
2492
2931
|
sqlQuery?: string | null;
|
|
2493
2932
|
title?: string | null;
|
|
2494
2933
|
workbookId?: number | null;
|
|
2934
|
+
workbookName?: string | null;
|
|
2495
2935
|
};
|
|
2496
2936
|
/** @enum {string} */
|
|
2937
|
+
CreateReportInputHost: "GOOGLE_SHEETS" | "EXCEL";
|
|
2938
|
+
/** @enum {string} */
|
|
2497
2939
|
CreateReportInputSource: "GOOGLE_SHEETS" | "EXCEL" | "PLAYGROUND" | "D3";
|
|
2498
2940
|
CreateWorkbookInput: {
|
|
2499
2941
|
folderId?: number | null;
|
|
@@ -2511,6 +2953,21 @@ export interface components {
|
|
|
2511
2953
|
showWorkspaceTitle?: boolean | null;
|
|
2512
2954
|
workspaceTitle?: string | null;
|
|
2513
2955
|
};
|
|
2956
|
+
CspsConfig: {
|
|
2957
|
+
awsRoleArn?: string | null;
|
|
2958
|
+
azureClientId?: string | null;
|
|
2959
|
+
azureContainer?: string | null;
|
|
2960
|
+
azureStorageAccount?: string | null;
|
|
2961
|
+
azureTenantId?: string | null;
|
|
2962
|
+
enabled: boolean;
|
|
2963
|
+
gcpServiceAccountEmail?: string | null;
|
|
2964
|
+
gcpWorkloadIdentityProvider?: string | null;
|
|
2965
|
+
gcsBucket?: string | null;
|
|
2966
|
+
s3Bucket?: string | null;
|
|
2967
|
+
s3Region?: string | null;
|
|
2968
|
+
s3Sse?: string | null;
|
|
2969
|
+
storageProvider: string;
|
|
2970
|
+
};
|
|
2514
2971
|
CspsConfigInput: {
|
|
2515
2972
|
awsRoleArn?: string | null;
|
|
2516
2973
|
azureClientId?: string | null;
|
|
@@ -2658,9 +3115,9 @@ export interface components {
|
|
|
2658
3115
|
value?: (string | number | boolean | unknown[]) | null;
|
|
2659
3116
|
};
|
|
2660
3117
|
/** @enum {string} */
|
|
2661
|
-
DashboardFilterInputOperator: "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_null" | "is_not_null" | "between" | "custom";
|
|
3118
|
+
DashboardFilterInputOperator: "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty" | "between" | "custom";
|
|
2662
3119
|
/** @enum {string} */
|
|
2663
|
-
DashboardFilterOperator: "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_null" | "is_not_null" | "between" | "custom";
|
|
3120
|
+
DashboardFilterOperator: "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty" | "between" | "custom";
|
|
2664
3121
|
DashboardLayout: {
|
|
2665
3122
|
breakpoints?: components["schemas"]["DashboardBreakpoints"] | null;
|
|
2666
3123
|
cols?: components["schemas"]["DashboardBreakpointCols"] | null;
|
|
@@ -2725,7 +3182,7 @@ export interface components {
|
|
|
2725
3182
|
type: components["schemas"]["DashboardWidgetDtoType"];
|
|
2726
3183
|
};
|
|
2727
3184
|
/** @enum {string} */
|
|
2728
|
-
DashboardWidgetDtoType: "CHART" | "TEXT" | "FILTER" | "AI" | "
|
|
3185
|
+
DashboardWidgetDtoType: "CHART" | "TEXT" | "FILTER" | "AI" | "TIME_GRAIN" | "PARENT" | "SPACER" | "DIVIDER" | "CONTAINER";
|
|
2729
3186
|
DashboardWidgetInput: {
|
|
2730
3187
|
config?: {
|
|
2731
3188
|
[key: string]: any;
|
|
@@ -2739,7 +3196,7 @@ export interface components {
|
|
|
2739
3196
|
type: components["schemas"]["DashboardWidgetInputType"];
|
|
2740
3197
|
};
|
|
2741
3198
|
/** @enum {string} */
|
|
2742
|
-
DashboardWidgetInputType: "CHART" | "TEXT" | "FILTER" | "AI" | "
|
|
3199
|
+
DashboardWidgetInputType: "CHART" | "TEXT" | "FILTER" | "AI" | "TIME_GRAIN" | "PARENT" | "SPACER" | "DIVIDER" | "CONTAINER";
|
|
2743
3200
|
DashboardWidgetPosition: {
|
|
2744
3201
|
h: number;
|
|
2745
3202
|
w: number;
|
|
@@ -2763,14 +3220,135 @@ export interface components {
|
|
|
2763
3220
|
newPath: string;
|
|
2764
3221
|
path: string;
|
|
2765
3222
|
};
|
|
3223
|
+
DataModelValidationError: {
|
|
3224
|
+
fileName?: string | null;
|
|
3225
|
+
message: string;
|
|
3226
|
+
};
|
|
3227
|
+
DataModelValidationResponse: {
|
|
3228
|
+
branchName: string;
|
|
3229
|
+
cubesCount?: number | null;
|
|
3230
|
+
deploymentId: number;
|
|
3231
|
+
errors: components["schemas"]["DataModelValidationError"][];
|
|
3232
|
+
mode: components["schemas"]["DataModelValidationResponseMode"];
|
|
3233
|
+
valid: boolean;
|
|
3234
|
+
};
|
|
3235
|
+
/** @enum {string} */
|
|
3236
|
+
DataModelValidationResponseMode: "production" | "dev_mode";
|
|
2766
3237
|
DataModelWriteResponse: {
|
|
2767
3238
|
success: boolean;
|
|
2768
3239
|
};
|
|
3240
|
+
DbtSyncCancelResponse: {
|
|
3241
|
+
message: string;
|
|
3242
|
+
};
|
|
3243
|
+
DbtSyncGeneratedFile: {
|
|
3244
|
+
/** @description Path of the generated file within the data model project. */
|
|
3245
|
+
path: string;
|
|
3246
|
+
};
|
|
3247
|
+
DbtSyncLogEntriesListResponse: {
|
|
3248
|
+
items: components["schemas"]["DbtSyncLogEntry"][];
|
|
3249
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
3250
|
+
};
|
|
3251
|
+
DbtSyncLogEntry: {
|
|
3252
|
+
durationMs?: number | null;
|
|
3253
|
+
/** @description info or error. */
|
|
3254
|
+
level: string;
|
|
3255
|
+
message: string;
|
|
3256
|
+
phase?: string | null;
|
|
3257
|
+
/** @description Always "system" in this version. "stdout" and "stderr" join it once dbt’s own output is captured, so treat this as an open set. */
|
|
3258
|
+
stream: string;
|
|
3259
|
+
/** @description When the line was produced, as an ISO 8601 timestamp. */
|
|
3260
|
+
timestamp: string;
|
|
3261
|
+
};
|
|
3262
|
+
DbtSyncManifestStats: {
|
|
3263
|
+
macros: number;
|
|
3264
|
+
models: number;
|
|
3265
|
+
sources: number;
|
|
3266
|
+
};
|
|
3267
|
+
DbtSyncProgress: {
|
|
3268
|
+
message?: string | null;
|
|
3269
|
+
/** @description Rough completion percentage derived from the stage. Progress reporting only — do not gate on it; gate on the status reaching COMPLETED or FAILED. */
|
|
3270
|
+
percentComplete: number;
|
|
3271
|
+
/** @description The stage the sync is currently in, from the same set of values as the sync status. */
|
|
3272
|
+
stage: string;
|
|
3273
|
+
};
|
|
2769
3274
|
DbtSyncResponse: {
|
|
2770
3275
|
branchName: string;
|
|
2771
3276
|
syncJobId: string;
|
|
2772
3277
|
workflowId: string;
|
|
2773
3278
|
};
|
|
3279
|
+
DbtSyncResultResponse: {
|
|
3280
|
+
/** @description When the sync finished, as an ISO 8601 timestamp. */
|
|
3281
|
+
completedAt: string;
|
|
3282
|
+
/** @description How many cubes the sync generated from the dbt manifest. */
|
|
3283
|
+
cubeCount: number;
|
|
3284
|
+
/** @description End-to-end sync duration in milliseconds. */
|
|
3285
|
+
durationMs: number;
|
|
3286
|
+
/** @description The cube files this sync generated and committed to the branch it created. */
|
|
3287
|
+
generatedFiles: components["schemas"]["DbtSyncGeneratedFile"][];
|
|
3288
|
+
manifestStats: components["schemas"]["DbtSyncManifestStats"];
|
|
3289
|
+
syncJobId: string;
|
|
3290
|
+
};
|
|
3291
|
+
DbtSyncRun: {
|
|
3292
|
+
/** @description The Cube branch this sync wrote its generated cubes to. */
|
|
3293
|
+
branchName: string;
|
|
3294
|
+
completedAt?: string | null;
|
|
3295
|
+
deploymentId: number;
|
|
3296
|
+
durationMs?: number | null;
|
|
3297
|
+
errorMessage?: string | null;
|
|
3298
|
+
failedPhase?: string | null;
|
|
3299
|
+
gitRef?: string | null;
|
|
3300
|
+
lastStage?: string | null;
|
|
3301
|
+
phases?: components["schemas"]["DbtSyncRunPhase"][] | null;
|
|
3302
|
+
/** @description When the sync started, as an ISO 8601 timestamp. See completedAt before comparing the two. */
|
|
3303
|
+
startedAt: string;
|
|
3304
|
+
stats?: components["schemas"]["DbtSyncRunStats"] | null;
|
|
3305
|
+
/** @description RUNNING, COMPLETED, FAILED, CANCELLED or UNKNOWN. UNKNOWN means the outcome could not be established (the run’s record was lost and the workflow engine no longer knows the workflow) and is deliberately distinct from FAILED. Treat an unrecognized value as non-terminal. */
|
|
3306
|
+
status: string;
|
|
3307
|
+
syncJobId: string;
|
|
3308
|
+
/** @description What started the sync: manual (the Cube Cloud UI), api (this REST API), webhook (a push to the dbt repository), agent (Cube AI), or unknown. */
|
|
3309
|
+
trigger: string;
|
|
3310
|
+
triggerContext?: components["schemas"]["DbtSyncRunTriggerContext"] | null;
|
|
3311
|
+
userId?: number | null;
|
|
3312
|
+
};
|
|
3313
|
+
DbtSyncRunListResponse: {
|
|
3314
|
+
items: components["schemas"]["DbtSyncRun"][];
|
|
3315
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
3316
|
+
};
|
|
3317
|
+
DbtSyncRunPhase: {
|
|
3318
|
+
/** @description How long the phase took, in milliseconds. */
|
|
3319
|
+
durationMs: number;
|
|
3320
|
+
/** @description ok or failed. */
|
|
3321
|
+
outcome: string;
|
|
3322
|
+
/** @description Phase token, e.g. repo-clone, dbt-deps, dbt-compile. */
|
|
3323
|
+
phase: string;
|
|
3324
|
+
/** @description When the phase began, in milliseconds after the sync started. */
|
|
3325
|
+
startedOffsetMs: number;
|
|
3326
|
+
};
|
|
3327
|
+
DbtSyncRunStats: {
|
|
3328
|
+
cubeCount?: number | null;
|
|
3329
|
+
generatedFileCount?: number | null;
|
|
3330
|
+
macros?: number | null;
|
|
3331
|
+
models?: number | null;
|
|
3332
|
+
sources?: number | null;
|
|
3333
|
+
};
|
|
3334
|
+
DbtSyncRunTriggerContext: {
|
|
3335
|
+
headSha?: string | null;
|
|
3336
|
+
pushedBranch?: string | null;
|
|
3337
|
+
targetBranch?: string | null;
|
|
3338
|
+
};
|
|
3339
|
+
/** @enum {string} */
|
|
3340
|
+
DbtSyncRunsQueryStatus: "RUNNING" | "COMPLETED" | "FAILED" | "CANCELLED" | "UNKNOWN";
|
|
3341
|
+
/** @enum {string} */
|
|
3342
|
+
DbtSyncRunsQueryTrigger: "manual" | "api" | "webhook" | "agent" | "unknown";
|
|
3343
|
+
DbtSyncStatusResponse: {
|
|
3344
|
+
error?: string | null;
|
|
3345
|
+
progress: components["schemas"]["DbtSyncProgress"];
|
|
3346
|
+
/** @description One of INITIALIZING, CREATING_SANDBOX, UPLOADING_PROJECT, INSTALLING_DEPENDENCIES, RUNNING_DBT_DEPS, COMPILING_DBT, PROCESSING_MANIFEST, WRITING_CUBE_FILES, FINALIZING, COMPLETED, FAILED. COMPLETED and FAILED are the only terminal values: poll until one of them, then read the result. Treat any unrecognized value as still running. */
|
|
3347
|
+
status: string;
|
|
3348
|
+
syncJobId: string;
|
|
3349
|
+
/** @description When this status was last updated, as an ISO 8601 timestamp. */
|
|
3350
|
+
updatedAt: string;
|
|
3351
|
+
};
|
|
2774
3352
|
Deployment: {
|
|
2775
3353
|
creationStep: components["schemas"]["CreationStep"];
|
|
2776
3354
|
deploymentUrl: string;
|
|
@@ -2809,14 +3387,26 @@ export interface components {
|
|
|
2809
3387
|
data: components["schemas"]["DeploymentEnvironmentToken"];
|
|
2810
3388
|
};
|
|
2811
3389
|
DeploymentEnvironmentTokensListResponse: {
|
|
3390
|
+
/**
|
|
3391
|
+
* @deprecated
|
|
3392
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
3393
|
+
*/
|
|
2812
3394
|
data: components["schemas"]["DeploymentEnvironmentToken"][];
|
|
2813
|
-
|
|
3395
|
+
items: components["schemas"]["DeploymentEnvironmentToken"][];
|
|
3396
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3397
|
+
pagination?: components["schemas"]["DeploymentsPagination"] | null;
|
|
2814
3398
|
};
|
|
2815
3399
|
/** @enum {string} */
|
|
2816
3400
|
DeploymentEnvironmentType: "production" | "staging" | "development";
|
|
2817
3401
|
DeploymentEnvironmentsListResponse: {
|
|
3402
|
+
/**
|
|
3403
|
+
* @deprecated
|
|
3404
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
3405
|
+
*/
|
|
2818
3406
|
data: components["schemas"]["DeploymentEnvironment"][];
|
|
2819
|
-
|
|
3407
|
+
items: components["schemas"]["DeploymentEnvironment"][];
|
|
3408
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3409
|
+
pagination?: components["schemas"]["DeploymentsPagination"] | null;
|
|
2820
3410
|
};
|
|
2821
3411
|
DeploymentLogLine: {
|
|
2822
3412
|
date: string;
|
|
@@ -2829,6 +3419,7 @@ export interface components {
|
|
|
2829
3419
|
DeploymentLogsQuerySource: "production" | "dev";
|
|
2830
3420
|
DeploymentLogsResponse: {
|
|
2831
3421
|
items: components["schemas"]["DeploymentLogLine"][];
|
|
3422
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
2832
3423
|
};
|
|
2833
3424
|
DeploymentPod: {
|
|
2834
3425
|
containers?: string[] | null;
|
|
@@ -2840,16 +3431,84 @@ export interface components {
|
|
|
2840
3431
|
};
|
|
2841
3432
|
DeploymentPodsResponse: {
|
|
2842
3433
|
items: components["schemas"]["DeploymentPod"][];
|
|
3434
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3435
|
+
};
|
|
3436
|
+
DeploymentSettings: {
|
|
3437
|
+
autoDomain?: string | null;
|
|
3438
|
+
cloudProvider: components["schemas"]["DeploymentSettingsCloudProvider"];
|
|
3439
|
+
creationMethod?: components["schemas"]["DeploymentSettingsCreationMethod"] | null;
|
|
3440
|
+
creationStep: components["schemas"]["CreationStep"];
|
|
3441
|
+
cspsConfig?: components["schemas"]["CspsConfig"] | null;
|
|
3442
|
+
cubeImageCloud?: string | null;
|
|
3443
|
+
cubeImageVersion?: string | null;
|
|
3444
|
+
customDomain?: string | null;
|
|
3445
|
+
defaultLaunchpadViewGroup?: string | null;
|
|
3446
|
+
deployBranchMergeAllowed: boolean;
|
|
3447
|
+
deployBranchName: string;
|
|
3448
|
+
deployBranchReadOnly: boolean;
|
|
3449
|
+
deployMode?: components["schemas"]["DeploymentSettingsDeployMode"] | null;
|
|
3450
|
+
deployProjectRoot: string;
|
|
3451
|
+
deploymentUrl: string;
|
|
3452
|
+
id: number;
|
|
3453
|
+
isCold?: boolean | null;
|
|
3454
|
+
isCubeSqlEnabled: boolean;
|
|
3455
|
+
isManaged?: boolean | null;
|
|
3456
|
+
isSupportPreAggregations: boolean;
|
|
3457
|
+
launchpadTabs?: string[] | null;
|
|
3458
|
+
name: string;
|
|
3459
|
+
region?: string | null;
|
|
3460
|
+
releaseChannel: components["schemas"]["DeploymentSettingsReleaseChannel"];
|
|
3461
|
+
releaseChannelVersion?: string | null;
|
|
3462
|
+
releaseChannelVersionHold?: boolean | null;
|
|
3463
|
+
repoType?: components["schemas"]["DeploymentSettingsRepoType"] | null;
|
|
3464
|
+
targetPlatform?: string | null;
|
|
3465
|
+
template: components["schemas"]["DeploymentSettingsTemplate"];
|
|
3466
|
+
templateVariables?: {
|
|
3467
|
+
[key: string]: any;
|
|
3468
|
+
} | null;
|
|
2843
3469
|
};
|
|
3470
|
+
/** @enum {string} */
|
|
3471
|
+
DeploymentSettingsCloudProvider: "cubecloud" | "aws" | "gcp";
|
|
3472
|
+
/** @enum {string} */
|
|
3473
|
+
DeploymentSettingsCreationMethod: "upload" | "cubecloud" | "github" | "ssh";
|
|
3474
|
+
/** @enum {string} */
|
|
3475
|
+
DeploymentSettingsDeployMode: "git" | "cli";
|
|
3476
|
+
/** @enum {string} */
|
|
3477
|
+
DeploymentSettingsReleaseChannel: "latest" | "release";
|
|
3478
|
+
/** @enum {string} */
|
|
3479
|
+
DeploymentSettingsRepoType: "git" | "deployRepo";
|
|
3480
|
+
/** @enum {string} */
|
|
3481
|
+
DeploymentSettingsTemplate: "single" | "simpleCluster" | "multiCluster";
|
|
2844
3482
|
DeploymentTokenResponse: {
|
|
2845
3483
|
cubeApiToken: string;
|
|
2846
3484
|
};
|
|
3485
|
+
DeploymentVersion: {
|
|
3486
|
+
isCurrent: boolean;
|
|
3487
|
+
isLatestInChannel: boolean;
|
|
3488
|
+
releaseChannel: components["schemas"]["DeploymentVersionReleaseChannel"];
|
|
3489
|
+
releaseChannelVersion: string;
|
|
3490
|
+
version: string;
|
|
3491
|
+
};
|
|
3492
|
+
/** @enum {string} */
|
|
3493
|
+
DeploymentVersionReleaseChannel: "latest" | "release";
|
|
3494
|
+
DeploymentVersionsResponse: {
|
|
3495
|
+
items: components["schemas"]["DeploymentVersion"][];
|
|
3496
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3497
|
+
};
|
|
2847
3498
|
DeploymentsListResponse: {
|
|
2848
3499
|
count?: number | null;
|
|
3500
|
+
/**
|
|
3501
|
+
* @deprecated
|
|
3502
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
3503
|
+
*/
|
|
2849
3504
|
data: components["schemas"]["Deployment"][];
|
|
2850
3505
|
items: components["schemas"]["Deployment"][];
|
|
2851
3506
|
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
2852
|
-
|
|
3507
|
+
/**
|
|
3508
|
+
* @deprecated
|
|
3509
|
+
* @description Deprecated: use `pageInfo` instead. Kept for backward compatibility.
|
|
3510
|
+
*/
|
|
3511
|
+
pagination: components["schemas"]["DeploymentsPagination"];
|
|
2853
3512
|
totalCount?: number | null;
|
|
2854
3513
|
};
|
|
2855
3514
|
DeploymentsPagination: {
|
|
@@ -2862,6 +3521,14 @@ export interface components {
|
|
|
2862
3521
|
branchName?: string | null;
|
|
2863
3522
|
parentBranch?: string | null;
|
|
2864
3523
|
};
|
|
3524
|
+
DisconnectReportFromWorkbookInput: {
|
|
3525
|
+
anchorCell?: string | null;
|
|
3526
|
+
externalWorkbookId?: string | null;
|
|
3527
|
+
placementId?: string | null;
|
|
3528
|
+
resultLocation?: string | null;
|
|
3529
|
+
sheetId?: string | null;
|
|
3530
|
+
sheetName?: string | null;
|
|
3531
|
+
};
|
|
2865
3532
|
DuplicateWorkbookInput: {
|
|
2866
3533
|
shared?: boolean | null;
|
|
2867
3534
|
};
|
|
@@ -2902,11 +3569,13 @@ export interface components {
|
|
|
2902
3569
|
sqlQuery: string;
|
|
2903
3570
|
};
|
|
2904
3571
|
EmbedSessionSettings: {
|
|
3572
|
+
allowChatWorkspaceAuthoring?: boolean | null;
|
|
2905
3573
|
showDashboardChat?: boolean | null;
|
|
2906
3574
|
};
|
|
2907
3575
|
EmbedSettings: {
|
|
2908
3576
|
locale?: string | null;
|
|
2909
3577
|
showDashboardChat?: boolean | null;
|
|
3578
|
+
timezone?: string | null;
|
|
2910
3579
|
};
|
|
2911
3580
|
EmbedTenant: {
|
|
2912
3581
|
createdAt?: (string) | null;
|
|
@@ -2961,7 +3630,13 @@ export interface components {
|
|
|
2961
3630
|
value: string;
|
|
2962
3631
|
};
|
|
2963
3632
|
EnvVariablesListResponse: {
|
|
3633
|
+
/**
|
|
3634
|
+
* @deprecated
|
|
3635
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
3636
|
+
*/
|
|
2964
3637
|
data: components["schemas"]["EnvVariableItem"][];
|
|
3638
|
+
items: components["schemas"]["EnvVariableItem"][];
|
|
3639
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
2965
3640
|
};
|
|
2966
3641
|
FileHash: {
|
|
2967
3642
|
hash: string;
|
|
@@ -3054,7 +3729,13 @@ export interface components {
|
|
|
3054
3729
|
name: string;
|
|
3055
3730
|
};
|
|
3056
3731
|
GitHubBranchesListResponse: {
|
|
3732
|
+
/**
|
|
3733
|
+
* @deprecated
|
|
3734
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
3735
|
+
*/
|
|
3057
3736
|
data: components["schemas"]["GitHubBranchResponse"][];
|
|
3737
|
+
items: components["schemas"]["GitHubBranchResponse"][];
|
|
3738
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3058
3739
|
};
|
|
3059
3740
|
GitHubConnectStatusResponse: {
|
|
3060
3741
|
connected: boolean;
|
|
@@ -3068,7 +3749,13 @@ export interface components {
|
|
|
3068
3749
|
login: string;
|
|
3069
3750
|
};
|
|
3070
3751
|
GitHubInstallationsListResponse: {
|
|
3752
|
+
/**
|
|
3753
|
+
* @deprecated
|
|
3754
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
3755
|
+
*/
|
|
3071
3756
|
data: components["schemas"]["GitHubInstallationResponse"][];
|
|
3757
|
+
items: components["schemas"]["GitHubInstallationResponse"][];
|
|
3758
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3072
3759
|
};
|
|
3073
3760
|
GitHubRepoResponse: {
|
|
3074
3761
|
htmlUrl: string;
|
|
@@ -3076,7 +3763,13 @@ export interface components {
|
|
|
3076
3763
|
name: string;
|
|
3077
3764
|
};
|
|
3078
3765
|
GitHubReposListResponse: {
|
|
3766
|
+
/**
|
|
3767
|
+
* @deprecated
|
|
3768
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
3769
|
+
*/
|
|
3079
3770
|
data: components["schemas"]["GitHubRepoResponse"][];
|
|
3771
|
+
items: components["schemas"]["GitHubRepoResponse"][];
|
|
3772
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3080
3773
|
};
|
|
3081
3774
|
GroupDefinition: {
|
|
3082
3775
|
description?: string | null;
|
|
@@ -3085,7 +3778,9 @@ export interface components {
|
|
|
3085
3778
|
InheritedGroupPolicyDto: {
|
|
3086
3779
|
action: components["schemas"]["InheritedGroupPolicyDtoAction"];
|
|
3087
3780
|
groupId: number;
|
|
3781
|
+
name?: string | null;
|
|
3088
3782
|
sourceFolder?: components["schemas"]["Folder"] | null;
|
|
3783
|
+
userCount?: number | null;
|
|
3089
3784
|
};
|
|
3090
3785
|
/** @enum {string} */
|
|
3091
3786
|
InheritedGroupPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "SecretsManage" | "DownloadData" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
@@ -3262,17 +3957,66 @@ export interface components {
|
|
|
3262
3957
|
columns: string[];
|
|
3263
3958
|
filters: string[];
|
|
3264
3959
|
measures: string[];
|
|
3960
|
+
measuresAxis?: components["schemas"]["PivotItemsMeasuresAxis"] | null;
|
|
3961
|
+
measuresPosition?: components["schemas"]["PivotItemsMeasuresPosition"] | null;
|
|
3265
3962
|
rows: string[];
|
|
3266
3963
|
};
|
|
3267
3964
|
PivotItemsInput: {
|
|
3268
3965
|
columns: string[];
|
|
3269
3966
|
filters: string[];
|
|
3270
3967
|
measures: string[];
|
|
3968
|
+
measuresAxis?: components["schemas"]["PivotItemsInputMeasuresAxis"] | null;
|
|
3969
|
+
measuresPosition?: components["schemas"]["PivotItemsInputMeasuresPosition"] | null;
|
|
3271
3970
|
rows: string[];
|
|
3272
3971
|
};
|
|
3972
|
+
/** @enum {string} */
|
|
3973
|
+
PivotItemsInputMeasuresAxis: "columns" | "rows";
|
|
3974
|
+
/** @enum {string} */
|
|
3975
|
+
PivotItemsInputMeasuresPosition: "before" | "after";
|
|
3976
|
+
/** @enum {string} */
|
|
3977
|
+
PivotItemsMeasuresAxis: "columns" | "rows";
|
|
3978
|
+
/** @enum {string} */
|
|
3979
|
+
PivotItemsMeasuresPosition: "before" | "after";
|
|
3273
3980
|
PostTokenBySessionIdInput: {
|
|
3274
3981
|
sessionId: string;
|
|
3275
3982
|
};
|
|
3983
|
+
ProvisionEmbedUserFailure: {
|
|
3984
|
+
error: components["schemas"]["BulkActionError"];
|
|
3985
|
+
/** @description The `externalId` of the entry that failed, normalized the same way a successful one is. */
|
|
3986
|
+
externalId: string;
|
|
3987
|
+
};
|
|
3988
|
+
ProvisionEmbedUserInput: {
|
|
3989
|
+
email?: string | null;
|
|
3990
|
+
/** @description The id your own system knows this user by — the same `externalId` you will pass to `generate-session`. Trimmed and lowercased before it is stored, so casing never produces a second user. */
|
|
3991
|
+
externalId: string;
|
|
3992
|
+
groups?: string[] | null;
|
|
3993
|
+
tenantGroups?: string[] | null;
|
|
3994
|
+
userProfile?: components["schemas"]["EmbedUserProfile"] | null;
|
|
3995
|
+
};
|
|
3996
|
+
ProvisionEmbedUsersInput: {
|
|
3997
|
+
/** @description Embed users to provision (1–100 per request). */
|
|
3998
|
+
users: components["schemas"]["ProvisionEmbedUserInput"][];
|
|
3999
|
+
};
|
|
4000
|
+
ProvisionEmbedUsersResponse: {
|
|
4001
|
+
/** @description The entries that were not applied, each with the reason. */
|
|
4002
|
+
failed: components["schemas"]["ProvisionEmbedUserFailure"][];
|
|
4003
|
+
/** @description The users that were provisioned, in the order they were requested. */
|
|
4004
|
+
succeeded: components["schemas"]["EmbedUser"][];
|
|
4005
|
+
};
|
|
4006
|
+
ProvisionedRegionResponse: {
|
|
4007
|
+
availabilityZones?: string[] | null;
|
|
4008
|
+
cloudProvider?: string | null;
|
|
4009
|
+
cloudProviderRegion?: string | null;
|
|
4010
|
+
id: number;
|
|
4011
|
+
isDedicated?: boolean | null;
|
|
4012
|
+
isPublic?: boolean | null;
|
|
4013
|
+
label?: string | null;
|
|
4014
|
+
lifecycleStatus?: string | null;
|
|
4015
|
+
name: string;
|
|
4016
|
+
provider?: string | null;
|
|
4017
|
+
subnetNumber?: number | null;
|
|
4018
|
+
title?: string | null;
|
|
4019
|
+
};
|
|
3276
4020
|
PublishDashboardInput: {
|
|
3277
4021
|
allowEmbed?: boolean | null;
|
|
3278
4022
|
config?: components["schemas"]["DashboardConfigInput"] | null;
|
|
@@ -3295,6 +4039,76 @@ export interface components {
|
|
|
3295
4039
|
stderr: string;
|
|
3296
4040
|
stdout: string;
|
|
3297
4041
|
};
|
|
4042
|
+
RefreshReportInput: {
|
|
4043
|
+
anchorCell?: string | null;
|
|
4044
|
+
externalWorkbookId?: string | null;
|
|
4045
|
+
placementId?: string | null;
|
|
4046
|
+
resultLocation?: string | null;
|
|
4047
|
+
sheetId?: string | null;
|
|
4048
|
+
sheetName?: string | null;
|
|
4049
|
+
};
|
|
4050
|
+
RegionCloudProviderCatalogListResponse: {
|
|
4051
|
+
items: components["schemas"]["RegionCloudProviderCatalogResponse"][];
|
|
4052
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
4053
|
+
};
|
|
4054
|
+
RegionCloudProviderCatalogResponse: {
|
|
4055
|
+
cloudProvider: string;
|
|
4056
|
+
regions: components["schemas"]["RegionCloudProviderRegionResponse"][];
|
|
4057
|
+
};
|
|
4058
|
+
RegionCloudProviderRegionResponse: {
|
|
4059
|
+
availabilityZones: string[];
|
|
4060
|
+
code: string;
|
|
4061
|
+
title: string;
|
|
4062
|
+
};
|
|
4063
|
+
RegionCreateRequest: {
|
|
4064
|
+
cloudProvider: string;
|
|
4065
|
+
cloudProviderRegion: string;
|
|
4066
|
+
label?: string | null;
|
|
4067
|
+
};
|
|
4068
|
+
RegionPrivateLinkCreateRequest: {
|
|
4069
|
+
dnsName?: string | null;
|
|
4070
|
+
endpointServiceName: string;
|
|
4071
|
+
name: string;
|
|
4072
|
+
ports: number[];
|
|
4073
|
+
serviceRegion?: string | null;
|
|
4074
|
+
};
|
|
4075
|
+
RegionPrivateLinkRemoveResponse: {
|
|
4076
|
+
markedForRemoval: boolean;
|
|
4077
|
+
pendingApply: boolean;
|
|
4078
|
+
};
|
|
4079
|
+
RegionPrivateLinkResponse: {
|
|
4080
|
+
dnsName?: string | null;
|
|
4081
|
+
endpointId?: string | null;
|
|
4082
|
+
endpointServiceName: string;
|
|
4083
|
+
id: number;
|
|
4084
|
+
name: string;
|
|
4085
|
+
ports: number[];
|
|
4086
|
+
regionId: number;
|
|
4087
|
+
serviceRegion?: string | null;
|
|
4088
|
+
status: string;
|
|
4089
|
+
};
|
|
4090
|
+
RegionPrivateLinkUpdateRequest: {
|
|
4091
|
+
dnsName?: string | null;
|
|
4092
|
+
endpointServiceName?: string | null;
|
|
4093
|
+
name?: string | null;
|
|
4094
|
+
ports?: number[] | null;
|
|
4095
|
+
serviceRegion?: string | null;
|
|
4096
|
+
};
|
|
4097
|
+
RegionPrivateLinksListResponse: {
|
|
4098
|
+
items: components["schemas"]["RegionPrivateLinkResponse"][];
|
|
4099
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
4100
|
+
};
|
|
4101
|
+
RegionProvisioningRunResponse: {
|
|
4102
|
+
action: string;
|
|
4103
|
+
jobId?: number | null;
|
|
4104
|
+
};
|
|
4105
|
+
RegionProvisioningStatusResponse: {
|
|
4106
|
+
action: string;
|
|
4107
|
+
finishedAt?: string | null;
|
|
4108
|
+
id: number;
|
|
4109
|
+
startedAt?: string | null;
|
|
4110
|
+
state: string;
|
|
4111
|
+
};
|
|
3298
4112
|
RegionResponse: {
|
|
3299
4113
|
id: number;
|
|
3300
4114
|
isDedicated?: boolean | null;
|
|
@@ -3305,8 +4119,19 @@ export interface components {
|
|
|
3305
4119
|
title?: string | null;
|
|
3306
4120
|
useAiEngineer?: boolean | null;
|
|
3307
4121
|
};
|
|
4122
|
+
RegionUpdateRequest: {
|
|
4123
|
+
pathBasedRoutingDomainOverride?: string | null;
|
|
4124
|
+
pathBasedRoutingSQLDomainOverride?: string | null;
|
|
4125
|
+
title?: string | null;
|
|
4126
|
+
};
|
|
3308
4127
|
RegionsListResponse: {
|
|
4128
|
+
/**
|
|
4129
|
+
* @deprecated
|
|
4130
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
4131
|
+
*/
|
|
3309
4132
|
data: components["schemas"]["RegionResponse"][];
|
|
4133
|
+
items: components["schemas"]["RegionResponse"][];
|
|
4134
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3310
4135
|
};
|
|
3311
4136
|
RemoveDataModelFilesInput: {
|
|
3312
4137
|
branchId?: number;
|
|
@@ -3375,17 +4200,37 @@ export interface components {
|
|
|
3375
4200
|
reportsCount?: number | null;
|
|
3376
4201
|
};
|
|
3377
4202
|
ReportFoldersFindAllResult: {
|
|
4203
|
+
count?: number | null;
|
|
4204
|
+
/**
|
|
4205
|
+
* @deprecated
|
|
4206
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
4207
|
+
*/
|
|
3378
4208
|
data: components["schemas"]["ReportFolder"][];
|
|
4209
|
+
items: components["schemas"]["ReportFolder"][];
|
|
4210
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3379
4211
|
};
|
|
3380
4212
|
ReportPlacement: {
|
|
4213
|
+
anchorCell?: string | null;
|
|
3381
4214
|
endResultCell?: string | null;
|
|
4215
|
+
host?: components["schemas"]["ReportPlacementHost"] | null;
|
|
4216
|
+
id?: string | null;
|
|
4217
|
+
placedAt?: string | null;
|
|
4218
|
+
placedByUserId?: number | null;
|
|
4219
|
+
refreshedAt?: string | null;
|
|
4220
|
+
refreshedByUserId?: number | null;
|
|
3382
4221
|
resultLocation: string;
|
|
4222
|
+
sheetId?: string | null;
|
|
4223
|
+
sheetName?: string | null;
|
|
3383
4224
|
workbookId: string;
|
|
4225
|
+
workbookName?: string | null;
|
|
3384
4226
|
};
|
|
4227
|
+
/** @enum {string} */
|
|
4228
|
+
ReportPlacementHost: "GOOGLE_SHEETS" | "EXCEL";
|
|
3385
4229
|
ReportSnapshot: {
|
|
3386
4230
|
description?: string | null;
|
|
3387
4231
|
fillMissingRows?: components["schemas"]["FillMissingRows"] | null;
|
|
3388
4232
|
id: number;
|
|
4233
|
+
isSourceReport?: boolean | null;
|
|
3389
4234
|
kind?: components["schemas"]["ReportSnapshotDtoKind"] | null;
|
|
3390
4235
|
meta?: {
|
|
3391
4236
|
[key: string]: any;
|
|
@@ -3393,6 +4238,7 @@ export interface components {
|
|
|
3393
4238
|
name?: string | null;
|
|
3394
4239
|
periodComparisons?: components["schemas"]["PeriodComparison"][] | null;
|
|
3395
4240
|
preferences?: components["schemas"]["ReportSnapshotPreferences"] | null;
|
|
4241
|
+
pythonCode?: string | null;
|
|
3396
4242
|
reportId: number;
|
|
3397
4243
|
spec?: (string | Record<string, never>) | null;
|
|
3398
4244
|
sqlQuery?: string | null;
|
|
@@ -3419,6 +4265,8 @@ export interface components {
|
|
|
3419
4265
|
ResourceGroupPolicyDto: {
|
|
3420
4266
|
action: components["schemas"]["ResourceGroupPolicyDtoAction"];
|
|
3421
4267
|
groupId: number;
|
|
4268
|
+
name?: string | null;
|
|
4269
|
+
userCount?: number | null;
|
|
3422
4270
|
};
|
|
3423
4271
|
/** @enum {string} */
|
|
3424
4272
|
ResourceGroupPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "SecretsManage" | "DownloadData" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
@@ -3448,6 +4296,14 @@ export interface components {
|
|
|
3448
4296
|
id: number;
|
|
3449
4297
|
name: string;
|
|
3450
4298
|
};
|
|
4299
|
+
SetBranchStagingEnvironmentRequest: {
|
|
4300
|
+
branchId?: number | null;
|
|
4301
|
+
branchName?: string | null;
|
|
4302
|
+
enabled: boolean;
|
|
4303
|
+
};
|
|
4304
|
+
SetBranchStagingEnvironmentResponse: {
|
|
4305
|
+
data: components["schemas"]["BranchResponse"];
|
|
4306
|
+
};
|
|
3451
4307
|
SetEnvVariablesInput: {
|
|
3452
4308
|
env_variables: components["schemas"]["EnvVariableItem"][];
|
|
3453
4309
|
};
|
|
@@ -3455,12 +4311,21 @@ export interface components {
|
|
|
3455
4311
|
showAppliedFilters?: boolean | null;
|
|
3456
4312
|
};
|
|
3457
4313
|
SourceTreeResponse: {
|
|
4314
|
+
/**
|
|
4315
|
+
* @deprecated
|
|
4316
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
4317
|
+
*/
|
|
3458
4318
|
data: {
|
|
3459
4319
|
[key: string]: any;
|
|
3460
4320
|
}[];
|
|
4321
|
+
items: {
|
|
4322
|
+
[key: string]: any;
|
|
4323
|
+
}[];
|
|
4324
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3461
4325
|
};
|
|
3462
4326
|
StartDbtSyncInput: {
|
|
3463
4327
|
branchName?: string | null;
|
|
4328
|
+
ref?: string | null;
|
|
3464
4329
|
};
|
|
3465
4330
|
StartDevModeRequest: {
|
|
3466
4331
|
branchName?: string | null;
|
|
@@ -3496,6 +4361,11 @@ export interface components {
|
|
|
3496
4361
|
name?: string | null;
|
|
3497
4362
|
url: string;
|
|
3498
4363
|
};
|
|
4364
|
+
TimezoneSettings: {
|
|
4365
|
+
allowUserOverride?: boolean | null;
|
|
4366
|
+
enabled?: boolean | null;
|
|
4367
|
+
timezone?: string | null;
|
|
4368
|
+
};
|
|
3499
4369
|
UpdateDashboardEmbeddingInput: {
|
|
3500
4370
|
/** @description Whether customer-signed embedding is allowed for this dashboard ("Allow signed embedding" in the UI). `true` lets embed sessions fetch the dashboard via `GET /api/v1/embed/dashboard/{publicId}`; `false` makes that fetch return `403`. Does not affect creator-mode sessions or dashboards shared with all embed users. */
|
|
3501
4371
|
allowEmbed: boolean;
|
|
@@ -3506,20 +4376,37 @@ export interface components {
|
|
|
3506
4376
|
files: components["schemas"]["DataModelFileContent"][];
|
|
3507
4377
|
};
|
|
3508
4378
|
UpdateDeploymentInput: {
|
|
4379
|
+
cloudProvider?: components["schemas"]["UpdateDeploymentInputCloudProvider"] | null;
|
|
3509
4380
|
creationMethod?: components["schemas"]["UpdateDeploymentInputCreationMethod"] | null;
|
|
3510
4381
|
cspsConfig?: components["schemas"]["CspsConfigInput"] | null;
|
|
3511
4382
|
customDomain?: string | null;
|
|
4383
|
+
defaultLaunchpadViewGroup?: string | null;
|
|
3512
4384
|
deployBranchMergeAllowed?: boolean | null;
|
|
3513
4385
|
deployBranchName?: string | null;
|
|
3514
4386
|
deployBranchReadOnly?: boolean | null;
|
|
3515
4387
|
deployMode?: components["schemas"]["UpdateDeploymentInputDeployMode"] | null;
|
|
3516
4388
|
deployProjectRoot?: string | null;
|
|
4389
|
+
launchpadTabs?: string[] | null;
|
|
3517
4390
|
name?: string | null;
|
|
4391
|
+
region?: string | null;
|
|
4392
|
+
releaseChannel?: components["schemas"]["UpdateDeploymentInputReleaseChannel"] | null;
|
|
4393
|
+
releaseChannelVersion?: string | null;
|
|
4394
|
+
releaseChannelVersionHold?: boolean | null;
|
|
4395
|
+
template?: components["schemas"]["UpdateDeploymentInputTemplate"] | null;
|
|
4396
|
+
templateVariables?: {
|
|
4397
|
+
[key: string]: any;
|
|
4398
|
+
} | null;
|
|
3518
4399
|
};
|
|
3519
4400
|
/** @enum {string} */
|
|
4401
|
+
UpdateDeploymentInputCloudProvider: "cubecloud" | "aws" | "gcp";
|
|
4402
|
+
/** @enum {string} */
|
|
3520
4403
|
UpdateDeploymentInputCreationMethod: "upload" | "cubecloud" | "github" | "ssh";
|
|
3521
4404
|
/** @enum {string} */
|
|
3522
4405
|
UpdateDeploymentInputDeployMode: "git" | "cli";
|
|
4406
|
+
/** @enum {string} */
|
|
4407
|
+
UpdateDeploymentInputReleaseChannel: "latest" | "release";
|
|
4408
|
+
/** @enum {string} */
|
|
4409
|
+
UpdateDeploymentInputTemplate: "single" | "simpleCluster" | "multiCluster";
|
|
3523
4410
|
UpdateEmbedAccessInput: {
|
|
3524
4411
|
action?: components["schemas"]["UpdateEmbedAccessInputAction"] | null;
|
|
3525
4412
|
allEmbedUsers?: boolean | null;
|
|
@@ -3577,27 +4464,28 @@ export interface components {
|
|
|
3577
4464
|
subFormat?: string | null;
|
|
3578
4465
|
targetEnvVar?: string | null;
|
|
3579
4466
|
};
|
|
3580
|
-
UpdatePublishedAiWidgetThreadInput: {
|
|
3581
|
-
checksum?: string | null;
|
|
3582
|
-
threadId: string;
|
|
3583
|
-
widgetId: string;
|
|
3584
|
-
};
|
|
3585
4467
|
UpdateReportInput: {
|
|
3586
4468
|
endResultCell?: string | null;
|
|
3587
4469
|
externalWorkbookId?: string | null;
|
|
3588
4470
|
folderId?: number | null;
|
|
4471
|
+
host?: components["schemas"]["UpdateReportInputHost"] | null;
|
|
3589
4472
|
jsonQuery?: string | null;
|
|
3590
4473
|
meta?: {
|
|
3591
4474
|
[key: string]: any;
|
|
3592
4475
|
} | null;
|
|
3593
4476
|
name?: string | null;
|
|
3594
4477
|
pivotItems?: components["schemas"]["PivotItems"] | null;
|
|
4478
|
+
placementId?: string | null;
|
|
3595
4479
|
publicId?: string | null;
|
|
3596
4480
|
resultLocation?: string | null;
|
|
4481
|
+
sheetId?: string | null;
|
|
3597
4482
|
sqlQuery?: string | null;
|
|
3598
4483
|
title?: string | null;
|
|
3599
4484
|
workbookId?: number | null;
|
|
4485
|
+
workbookName?: string | null;
|
|
3600
4486
|
};
|
|
4487
|
+
/** @enum {string} */
|
|
4488
|
+
UpdateReportInputHost: "GOOGLE_SHEETS" | "EXCEL";
|
|
3601
4489
|
UpdateResourceGroupPolicyBody: {
|
|
3602
4490
|
action?: components["schemas"]["UpdateResourceGroupPolicyBodyAction"] | null;
|
|
3603
4491
|
groupId: number;
|
|
@@ -3724,8 +4612,18 @@ export interface components {
|
|
|
3724
4612
|
/** @enum {string} */
|
|
3725
4613
|
UserAttributeValueType: "string" | "number" | "boolean" | "string_array" | "number_array";
|
|
3726
4614
|
UserAttributesListResponse: {
|
|
4615
|
+
/**
|
|
4616
|
+
* @deprecated
|
|
4617
|
+
* @description Deprecated: total number of user attributes, ignoring pagination. Kept for backward compatibility.
|
|
4618
|
+
*/
|
|
3727
4619
|
count: number;
|
|
4620
|
+
/**
|
|
4621
|
+
* @deprecated
|
|
4622
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
4623
|
+
*/
|
|
3728
4624
|
data: components["schemas"]["UserAttribute"][];
|
|
4625
|
+
items: components["schemas"]["UserAttribute"][];
|
|
4626
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
3729
4627
|
};
|
|
3730
4628
|
UserCreateInput: {
|
|
3731
4629
|
defaultRoles?: string[] | null;
|
|
@@ -3852,6 +4750,10 @@ export interface components {
|
|
|
3852
4750
|
WorkbookDtoType: "FOLDER" | "WORKBOOK" | "REPORT";
|
|
3853
4751
|
WorkbooksListResponse: {
|
|
3854
4752
|
count?: number | null;
|
|
4753
|
+
/**
|
|
4754
|
+
* @deprecated
|
|
4755
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
4756
|
+
*/
|
|
3855
4757
|
data: components["schemas"]["Workbook"][];
|
|
3856
4758
|
items: components["schemas"]["Workbook"][];
|
|
3857
4759
|
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
@@ -4310,10 +5212,8 @@ export interface operations {
|
|
|
4310
5212
|
creationStep?: components["schemas"]["CreationStep"] | components["schemas"]["CreationStep"][];
|
|
4311
5213
|
offset?: number | null;
|
|
4312
5214
|
limit?: number | null;
|
|
4313
|
-
/** @description Page size for cursor-based pagination */
|
|
4314
|
-
first?: number;
|
|
4315
|
-
/** @description Cursor for fetching the next page */
|
|
4316
5215
|
after?: string;
|
|
5216
|
+
first?: number;
|
|
4317
5217
|
};
|
|
4318
5218
|
header?: never;
|
|
4319
5219
|
path?: never;
|
|
@@ -4373,7 +5273,7 @@ export interface operations {
|
|
|
4373
5273
|
[name: string]: any;
|
|
4374
5274
|
};
|
|
4375
5275
|
content: {
|
|
4376
|
-
"application/json": components["schemas"]["
|
|
5276
|
+
"application/json": components["schemas"]["DeploymentSettings"];
|
|
4377
5277
|
};
|
|
4378
5278
|
};
|
|
4379
5279
|
};
|
|
@@ -4516,6 +5416,32 @@ export interface operations {
|
|
|
4516
5416
|
};
|
|
4517
5417
|
};
|
|
4518
5418
|
};
|
|
5419
|
+
"DbtSyncPublicController.listDbtSyncs": {
|
|
5420
|
+
parameters: {
|
|
5421
|
+
query?: {
|
|
5422
|
+
status?: components["schemas"]["DbtSyncRunsQueryStatus"] | null;
|
|
5423
|
+
trigger?: components["schemas"]["DbtSyncRunsQueryTrigger"] | null;
|
|
5424
|
+
after?: string;
|
|
5425
|
+
first?: number;
|
|
5426
|
+
};
|
|
5427
|
+
header?: never;
|
|
5428
|
+
path: {
|
|
5429
|
+
deploymentId: number;
|
|
5430
|
+
};
|
|
5431
|
+
cookie?: never;
|
|
5432
|
+
};
|
|
5433
|
+
requestBody?: never;
|
|
5434
|
+
responses: {
|
|
5435
|
+
200: {
|
|
5436
|
+
headers: {
|
|
5437
|
+
[name: string]: any;
|
|
5438
|
+
};
|
|
5439
|
+
content: {
|
|
5440
|
+
"application/json": components["schemas"]["DbtSyncRunListResponse"];
|
|
5441
|
+
};
|
|
5442
|
+
};
|
|
5443
|
+
};
|
|
5444
|
+
};
|
|
4519
5445
|
"DbtSyncPublicController.startDbtSync": {
|
|
4520
5446
|
parameters: {
|
|
4521
5447
|
query?: never;
|
|
@@ -4542,10 +5468,101 @@ export interface operations {
|
|
|
4542
5468
|
};
|
|
4543
5469
|
};
|
|
4544
5470
|
};
|
|
4545
|
-
"
|
|
5471
|
+
"DbtSyncPublicController.getDbtSyncStatus": {
|
|
5472
|
+
parameters: {
|
|
5473
|
+
query?: never;
|
|
5474
|
+
header?: never;
|
|
5475
|
+
path: {
|
|
5476
|
+
deploymentId: number;
|
|
5477
|
+
syncJobId: string;
|
|
5478
|
+
};
|
|
5479
|
+
cookie?: never;
|
|
5480
|
+
};
|
|
5481
|
+
requestBody?: never;
|
|
5482
|
+
responses: {
|
|
5483
|
+
200: {
|
|
5484
|
+
headers: {
|
|
5485
|
+
[name: string]: any;
|
|
5486
|
+
};
|
|
5487
|
+
content: {
|
|
5488
|
+
"application/json": components["schemas"]["DbtSyncStatusResponse"];
|
|
5489
|
+
};
|
|
5490
|
+
};
|
|
5491
|
+
};
|
|
5492
|
+
};
|
|
5493
|
+
"DbtSyncPublicController.cancelDbtSync": {
|
|
5494
|
+
parameters: {
|
|
5495
|
+
query?: never;
|
|
5496
|
+
header?: never;
|
|
5497
|
+
path: {
|
|
5498
|
+
deploymentId: number;
|
|
5499
|
+
syncJobId: string;
|
|
5500
|
+
};
|
|
5501
|
+
cookie?: never;
|
|
5502
|
+
};
|
|
5503
|
+
requestBody?: never;
|
|
5504
|
+
responses: {
|
|
5505
|
+
200: {
|
|
5506
|
+
headers: {
|
|
5507
|
+
[name: string]: any;
|
|
5508
|
+
};
|
|
5509
|
+
content: {
|
|
5510
|
+
"application/json": components["schemas"]["DbtSyncCancelResponse"];
|
|
5511
|
+
};
|
|
5512
|
+
};
|
|
5513
|
+
};
|
|
5514
|
+
};
|
|
5515
|
+
"DbtSyncPublicController.getDbtSyncLogs": {
|
|
5516
|
+
parameters: {
|
|
5517
|
+
query?: never;
|
|
5518
|
+
header?: never;
|
|
5519
|
+
path: {
|
|
5520
|
+
deploymentId: number;
|
|
5521
|
+
syncJobId: string;
|
|
5522
|
+
};
|
|
5523
|
+
cookie?: never;
|
|
5524
|
+
};
|
|
5525
|
+
requestBody?: never;
|
|
5526
|
+
responses: {
|
|
5527
|
+
200: {
|
|
5528
|
+
headers: {
|
|
5529
|
+
[name: string]: any;
|
|
5530
|
+
};
|
|
5531
|
+
content: {
|
|
5532
|
+
"application/json": components["schemas"]["DbtSyncLogEntriesListResponse"];
|
|
5533
|
+
};
|
|
5534
|
+
};
|
|
5535
|
+
};
|
|
5536
|
+
};
|
|
5537
|
+
"DbtSyncPublicController.getDbtSyncResult": {
|
|
4546
5538
|
parameters: {
|
|
4547
5539
|
query?: never;
|
|
4548
5540
|
header?: never;
|
|
5541
|
+
path: {
|
|
5542
|
+
deploymentId: number;
|
|
5543
|
+
syncJobId: string;
|
|
5544
|
+
};
|
|
5545
|
+
cookie?: never;
|
|
5546
|
+
};
|
|
5547
|
+
requestBody?: never;
|
|
5548
|
+
responses: {
|
|
5549
|
+
200: {
|
|
5550
|
+
headers: {
|
|
5551
|
+
[name: string]: any;
|
|
5552
|
+
};
|
|
5553
|
+
content: {
|
|
5554
|
+
"application/json": components["schemas"]["DbtSyncResultResponse"];
|
|
5555
|
+
};
|
|
5556
|
+
};
|
|
5557
|
+
};
|
|
5558
|
+
};
|
|
5559
|
+
"EnvVariablesPublicController.getEnvVariables": {
|
|
5560
|
+
parameters: {
|
|
5561
|
+
query?: {
|
|
5562
|
+
after?: string | null;
|
|
5563
|
+
first?: number | null;
|
|
5564
|
+
};
|
|
5565
|
+
header?: never;
|
|
4549
5566
|
path: {
|
|
4550
5567
|
deploymentId: number;
|
|
4551
5568
|
};
|
|
@@ -4595,6 +5612,8 @@ export interface operations {
|
|
|
4595
5612
|
type?: "production" | "staging" | "development";
|
|
4596
5613
|
offset?: number | null;
|
|
4597
5614
|
limit?: number | null;
|
|
5615
|
+
after?: string;
|
|
5616
|
+
first?: number;
|
|
4598
5617
|
};
|
|
4599
5618
|
header?: never;
|
|
4600
5619
|
path: {
|
|
@@ -4619,6 +5638,8 @@ export interface operations {
|
|
|
4619
5638
|
query?: {
|
|
4620
5639
|
offset?: number | null;
|
|
4621
5640
|
limit?: number | null;
|
|
5641
|
+
after?: string;
|
|
5642
|
+
first?: number;
|
|
4622
5643
|
};
|
|
4623
5644
|
header?: never;
|
|
4624
5645
|
path: {
|
|
@@ -4822,6 +5843,8 @@ export interface operations {
|
|
|
4822
5843
|
source?: components["schemas"]["DeploymentLogsQuerySource"] | null;
|
|
4823
5844
|
pod?: string | null;
|
|
4824
5845
|
container?: components["schemas"]["DeploymentLogsQueryContainer"] | null;
|
|
5846
|
+
after?: string;
|
|
5847
|
+
first?: number;
|
|
4825
5848
|
};
|
|
4826
5849
|
header?: never;
|
|
4827
5850
|
path: {
|
|
@@ -4844,22 +5867,14 @@ export interface operations {
|
|
|
4844
5867
|
"NotificationsPublicController.getNotifications": {
|
|
4845
5868
|
parameters: {
|
|
4846
5869
|
query?: {
|
|
4847
|
-
/** @description Optional filter: only return notifications for this numeric dashboard id. Provide this OR `dashboardPublicId`, not both. */
|
|
4848
5870
|
dashboardId?: number | null;
|
|
4849
|
-
/** @description Optional filter: only return notifications for this dashboard public id. Provide this OR `dashboardId`, not both. */
|
|
4850
5871
|
dashboardPublicId?: string | null;
|
|
4851
|
-
/** @description Optional filter: only return notifications received by this user, by user id. Mutually exclusive with `recipientEmail` and the embed-user filter. */
|
|
4852
5872
|
recipientUserId?: number | null;
|
|
4853
|
-
/** @description Optional filter: only return notifications received by this user, by email. Mutually exclusive with `recipientUserId` and the embed-user filter. */
|
|
4854
5873
|
recipientEmail?: string | null;
|
|
4855
|
-
/** @description Optional filter: only return notifications received by this embed user. Required together with `recipientExternalId`; mutually exclusive with the user filters. */
|
|
4856
5874
|
recipientEmbedTenantName?: string | null;
|
|
4857
|
-
/** @description Optional filter: only return notifications received by this embed user. Required together with `recipientEmbedTenantName`; mutually exclusive with the user filters. */
|
|
4858
5875
|
recipientExternalId?: string | null;
|
|
4859
|
-
/** @description Page size for cursor pagination (default 100, max 200). */
|
|
4860
|
-
first?: number;
|
|
4861
|
-
/** @description Opaque cursor for the next page; pass the previous response's `pageInfo.endCursor`. */
|
|
4862
5876
|
after?: string;
|
|
5877
|
+
first?: number;
|
|
4863
5878
|
};
|
|
4864
5879
|
header?: never;
|
|
4865
5880
|
path: {
|
|
@@ -4995,10 +6010,8 @@ export interface operations {
|
|
|
4995
6010
|
"NotificationsPublicController.getRecipients": {
|
|
4996
6011
|
parameters: {
|
|
4997
6012
|
query?: {
|
|
4998
|
-
|
|
4999
|
-
first?: number |
|
|
5000
|
-
/** @description Opaque cursor for the next page; pass the previous response's `pageInfo.endCursor`. */
|
|
5001
|
-
after?: string | number | null;
|
|
6013
|
+
after?: string | null;
|
|
6014
|
+
first?: number | null;
|
|
5002
6015
|
};
|
|
5003
6016
|
header?: never;
|
|
5004
6017
|
path: {
|
|
@@ -5089,7 +6102,10 @@ export interface operations {
|
|
|
5089
6102
|
};
|
|
5090
6103
|
"DeploymentsPublicController.pods": {
|
|
5091
6104
|
parameters: {
|
|
5092
|
-
query?:
|
|
6105
|
+
query?: {
|
|
6106
|
+
after?: string | null;
|
|
6107
|
+
first?: number | null;
|
|
6108
|
+
};
|
|
5093
6109
|
header?: never;
|
|
5094
6110
|
path: {
|
|
5095
6111
|
deploymentId: number;
|
|
@@ -5110,7 +6126,10 @@ export interface operations {
|
|
|
5110
6126
|
};
|
|
5111
6127
|
"ReportsPublicController.getReportFolders": {
|
|
5112
6128
|
parameters: {
|
|
5113
|
-
query?:
|
|
6129
|
+
query?: {
|
|
6130
|
+
after?: string | null;
|
|
6131
|
+
first?: number | null;
|
|
6132
|
+
};
|
|
5114
6133
|
header?: never;
|
|
5115
6134
|
path: {
|
|
5116
6135
|
deploymentId: number;
|
|
@@ -5313,7 +6332,7 @@ export interface operations {
|
|
|
5313
6332
|
};
|
|
5314
6333
|
};
|
|
5315
6334
|
};
|
|
5316
|
-
"ReportsPublicController.
|
|
6335
|
+
"ReportsPublicController.disconnectReportFromWorkbook": {
|
|
5317
6336
|
parameters: {
|
|
5318
6337
|
query?: never;
|
|
5319
6338
|
header?: never;
|
|
@@ -5323,7 +6342,12 @@ export interface operations {
|
|
|
5323
6342
|
};
|
|
5324
6343
|
cookie?: never;
|
|
5325
6344
|
};
|
|
5326
|
-
|
|
6345
|
+
/** @description DisconnectReportFromWorkbookInput */
|
|
6346
|
+
requestBody?: {
|
|
6347
|
+
content: {
|
|
6348
|
+
"application/json": components["schemas"]["DisconnectReportFromWorkbookInput"];
|
|
6349
|
+
};
|
|
6350
|
+
};
|
|
5327
6351
|
responses: {
|
|
5328
6352
|
200: {
|
|
5329
6353
|
headers: {
|
|
@@ -5335,9 +6359,57 @@ export interface operations {
|
|
|
5335
6359
|
};
|
|
5336
6360
|
};
|
|
5337
6361
|
};
|
|
5338
|
-
"
|
|
6362
|
+
"ReportsPublicController.refreshReport": {
|
|
5339
6363
|
parameters: {
|
|
5340
|
-
query?:
|
|
6364
|
+
query?: never;
|
|
6365
|
+
header?: never;
|
|
6366
|
+
path: {
|
|
6367
|
+
deploymentId: number;
|
|
6368
|
+
reportId: number;
|
|
6369
|
+
};
|
|
6370
|
+
cookie?: never;
|
|
6371
|
+
};
|
|
6372
|
+
/** @description RefreshReportInput */
|
|
6373
|
+
requestBody?: {
|
|
6374
|
+
content: {
|
|
6375
|
+
"application/json": components["schemas"]["RefreshReportInput"];
|
|
6376
|
+
};
|
|
6377
|
+
};
|
|
6378
|
+
responses: {
|
|
6379
|
+
200: {
|
|
6380
|
+
headers: {
|
|
6381
|
+
[name: string]: any;
|
|
6382
|
+
};
|
|
6383
|
+
content: {
|
|
6384
|
+
"application/json": components["schemas"]["Report"];
|
|
6385
|
+
};
|
|
6386
|
+
};
|
|
6387
|
+
};
|
|
6388
|
+
};
|
|
6389
|
+
"DeploymentsPublicController.getDeploymentSettings": {
|
|
6390
|
+
parameters: {
|
|
6391
|
+
query?: never;
|
|
6392
|
+
header?: never;
|
|
6393
|
+
path: {
|
|
6394
|
+
deploymentId: number;
|
|
6395
|
+
};
|
|
6396
|
+
cookie?: never;
|
|
6397
|
+
};
|
|
6398
|
+
requestBody?: never;
|
|
6399
|
+
responses: {
|
|
6400
|
+
200: {
|
|
6401
|
+
headers: {
|
|
6402
|
+
[name: string]: any;
|
|
6403
|
+
};
|
|
6404
|
+
content: {
|
|
6405
|
+
"application/json": components["schemas"]["DeploymentSettings"];
|
|
6406
|
+
};
|
|
6407
|
+
};
|
|
6408
|
+
};
|
|
6409
|
+
};
|
|
6410
|
+
"WorkspacePublicController.sharedWorkspaceObjects": {
|
|
6411
|
+
parameters: {
|
|
6412
|
+
query?: {
|
|
5341
6413
|
folderId?: number | null;
|
|
5342
6414
|
types?: ("FOLDER" | "WORKBOOK" | "REPORT")[] | null;
|
|
5343
6415
|
orderByField?: components["schemas"]["GetWorkspaceObjectsQueryOrderByField"] | null;
|
|
@@ -5385,6 +6457,30 @@ export interface operations {
|
|
|
5385
6457
|
};
|
|
5386
6458
|
};
|
|
5387
6459
|
};
|
|
6460
|
+
"DeploymentsPublicController.listDeploymentVersions": {
|
|
6461
|
+
parameters: {
|
|
6462
|
+
query?: {
|
|
6463
|
+
after?: string | null;
|
|
6464
|
+
first?: number | null;
|
|
6465
|
+
};
|
|
6466
|
+
header?: never;
|
|
6467
|
+
path: {
|
|
6468
|
+
deploymentId: number;
|
|
6469
|
+
};
|
|
6470
|
+
cookie?: never;
|
|
6471
|
+
};
|
|
6472
|
+
requestBody?: never;
|
|
6473
|
+
responses: {
|
|
6474
|
+
200: {
|
|
6475
|
+
headers: {
|
|
6476
|
+
[name: string]: any;
|
|
6477
|
+
};
|
|
6478
|
+
content: {
|
|
6479
|
+
"application/json": components["schemas"]["DeploymentVersionsResponse"];
|
|
6480
|
+
};
|
|
6481
|
+
};
|
|
6482
|
+
};
|
|
6483
|
+
};
|
|
5388
6484
|
"WorkbooksPublicController.getWorkbooks": {
|
|
5389
6485
|
parameters: {
|
|
5390
6486
|
query?: {
|
|
@@ -5563,33 +6659,6 @@ export interface operations {
|
|
|
5563
6659
|
};
|
|
5564
6660
|
};
|
|
5565
6661
|
};
|
|
5566
|
-
"WorkbooksPublicController.updatePublishedDashboardAiWidgetThread": {
|
|
5567
|
-
parameters: {
|
|
5568
|
-
query?: never;
|
|
5569
|
-
header?: never;
|
|
5570
|
-
path: {
|
|
5571
|
-
deploymentId: number;
|
|
5572
|
-
workbookId: number;
|
|
5573
|
-
};
|
|
5574
|
-
cookie?: never;
|
|
5575
|
-
};
|
|
5576
|
-
/** @description UpdatePublishedAiWidgetThreadInput */
|
|
5577
|
-
requestBody?: {
|
|
5578
|
-
content: {
|
|
5579
|
-
"application/json": components["schemas"]["UpdatePublishedAiWidgetThreadInput"];
|
|
5580
|
-
};
|
|
5581
|
-
};
|
|
5582
|
-
responses: {
|
|
5583
|
-
200: {
|
|
5584
|
-
headers: {
|
|
5585
|
-
[name: string]: any;
|
|
5586
|
-
};
|
|
5587
|
-
content: {
|
|
5588
|
-
"application/json": components["schemas"]["Dashboard"];
|
|
5589
|
-
};
|
|
5590
|
-
};
|
|
5591
|
-
};
|
|
5592
|
-
};
|
|
5593
6662
|
"WorkbooksPublicController.duplicateWorkbook": {
|
|
5594
6663
|
parameters: {
|
|
5595
6664
|
query?: never;
|
|
@@ -6083,6 +7152,33 @@ export interface operations {
|
|
|
6083
7152
|
};
|
|
6084
7153
|
};
|
|
6085
7154
|
};
|
|
7155
|
+
"EmbedTenantAdminPublicController.provisionEmbedUser": {
|
|
7156
|
+
parameters: {
|
|
7157
|
+
query?: never;
|
|
7158
|
+
header?: never;
|
|
7159
|
+
path: {
|
|
7160
|
+
/** @description Name of the embed tenant (the `embedTenantName` used to generate embed sessions). */
|
|
7161
|
+
embedTenantName: string;
|
|
7162
|
+
};
|
|
7163
|
+
cookie?: never;
|
|
7164
|
+
};
|
|
7165
|
+
/** @description ProvisionEmbedUserInput */
|
|
7166
|
+
requestBody?: {
|
|
7167
|
+
content: {
|
|
7168
|
+
"application/json": components["schemas"]["ProvisionEmbedUserInput"];
|
|
7169
|
+
};
|
|
7170
|
+
};
|
|
7171
|
+
responses: {
|
|
7172
|
+
200: {
|
|
7173
|
+
headers: {
|
|
7174
|
+
[name: string]: any;
|
|
7175
|
+
};
|
|
7176
|
+
content: {
|
|
7177
|
+
"application/json": components["schemas"]["EmbedUser"];
|
|
7178
|
+
};
|
|
7179
|
+
};
|
|
7180
|
+
};
|
|
7181
|
+
};
|
|
6086
7182
|
"EmbedTenantAdminPublicController.listEmbedUsers": {
|
|
6087
7183
|
parameters: {
|
|
6088
7184
|
query?: {
|
|
@@ -6109,6 +7205,33 @@ export interface operations {
|
|
|
6109
7205
|
};
|
|
6110
7206
|
};
|
|
6111
7207
|
};
|
|
7208
|
+
"EmbedTenantAdminPublicController.provisionEmbedUsers": {
|
|
7209
|
+
parameters: {
|
|
7210
|
+
query?: never;
|
|
7211
|
+
header?: never;
|
|
7212
|
+
path: {
|
|
7213
|
+
/** @description Name of the embed tenant (the `embedTenantName` used to generate embed sessions). */
|
|
7214
|
+
embedTenantName: string;
|
|
7215
|
+
};
|
|
7216
|
+
cookie?: never;
|
|
7217
|
+
};
|
|
7218
|
+
/** @description ProvisionEmbedUsersInput */
|
|
7219
|
+
requestBody?: {
|
|
7220
|
+
content: {
|
|
7221
|
+
"application/json": components["schemas"]["ProvisionEmbedUsersInput"];
|
|
7222
|
+
};
|
|
7223
|
+
};
|
|
7224
|
+
responses: {
|
|
7225
|
+
200: {
|
|
7226
|
+
headers: {
|
|
7227
|
+
[name: string]: any;
|
|
7228
|
+
};
|
|
7229
|
+
content: {
|
|
7230
|
+
"application/json": components["schemas"]["ProvisionEmbedUsersResponse"];
|
|
7231
|
+
};
|
|
7232
|
+
};
|
|
7233
|
+
};
|
|
7234
|
+
};
|
|
6112
7235
|
"EmbedPublicController.getDashboard": {
|
|
6113
7236
|
parameters: {
|
|
6114
7237
|
query?: never;
|
|
@@ -6206,55 +7329,329 @@ export interface operations {
|
|
|
6206
7329
|
};
|
|
6207
7330
|
};
|
|
6208
7331
|
};
|
|
6209
|
-
"EmbedPublicController.postTokenBySessionId": {
|
|
7332
|
+
"EmbedPublicController.postTokenBySessionId": {
|
|
7333
|
+
parameters: {
|
|
7334
|
+
query?: never;
|
|
7335
|
+
header?: never;
|
|
7336
|
+
path?: never;
|
|
7337
|
+
cookie?: never;
|
|
7338
|
+
};
|
|
7339
|
+
/** @description PostTokenBySessionIdInputDTO */
|
|
7340
|
+
requestBody?: {
|
|
7341
|
+
content: {
|
|
7342
|
+
"application/json": components["schemas"]["PostTokenBySessionIdInput"];
|
|
7343
|
+
};
|
|
7344
|
+
};
|
|
7345
|
+
responses: {
|
|
7346
|
+
200: {
|
|
7347
|
+
headers: {
|
|
7348
|
+
[name: string]: any;
|
|
7349
|
+
};
|
|
7350
|
+
content: {
|
|
7351
|
+
"application/json": components["schemas"]["GenerateEmbedTokenResponse"];
|
|
7352
|
+
};
|
|
7353
|
+
};
|
|
7354
|
+
};
|
|
7355
|
+
};
|
|
7356
|
+
"GitHubPublicController.installations": {
|
|
7357
|
+
parameters: {
|
|
7358
|
+
query?: {
|
|
7359
|
+
after?: string | null;
|
|
7360
|
+
first?: number | null;
|
|
7361
|
+
};
|
|
7362
|
+
header?: never;
|
|
7363
|
+
path?: never;
|
|
7364
|
+
cookie?: never;
|
|
7365
|
+
};
|
|
7366
|
+
requestBody?: never;
|
|
7367
|
+
responses: {
|
|
7368
|
+
200: {
|
|
7369
|
+
headers: {
|
|
7370
|
+
[name: string]: any;
|
|
7371
|
+
};
|
|
7372
|
+
content: {
|
|
7373
|
+
"application/json": components["schemas"]["GitHubInstallationsListResponse"];
|
|
7374
|
+
};
|
|
7375
|
+
};
|
|
7376
|
+
};
|
|
7377
|
+
};
|
|
7378
|
+
"GitHubPublicController.repositories": {
|
|
7379
|
+
parameters: {
|
|
7380
|
+
query?: {
|
|
7381
|
+
after?: string | null;
|
|
7382
|
+
first?: number | null;
|
|
7383
|
+
};
|
|
7384
|
+
header?: never;
|
|
7385
|
+
path: {
|
|
7386
|
+
installationId: number;
|
|
7387
|
+
};
|
|
7388
|
+
cookie?: never;
|
|
7389
|
+
};
|
|
7390
|
+
requestBody?: never;
|
|
7391
|
+
responses: {
|
|
7392
|
+
200: {
|
|
7393
|
+
headers: {
|
|
7394
|
+
[name: string]: any;
|
|
7395
|
+
};
|
|
7396
|
+
content: {
|
|
7397
|
+
"application/json": components["schemas"]["GitHubReposListResponse"];
|
|
7398
|
+
};
|
|
7399
|
+
};
|
|
7400
|
+
};
|
|
7401
|
+
};
|
|
7402
|
+
"GitHubPublicController.branches": {
|
|
7403
|
+
parameters: {
|
|
7404
|
+
query: {
|
|
7405
|
+
installationId: number;
|
|
7406
|
+
after?: string | null;
|
|
7407
|
+
first?: number | null;
|
|
7408
|
+
};
|
|
7409
|
+
header?: never;
|
|
7410
|
+
path: {
|
|
7411
|
+
owner: string;
|
|
7412
|
+
repo: string;
|
|
7413
|
+
};
|
|
7414
|
+
cookie?: never;
|
|
7415
|
+
};
|
|
7416
|
+
requestBody?: never;
|
|
7417
|
+
responses: {
|
|
7418
|
+
200: {
|
|
7419
|
+
headers: {
|
|
7420
|
+
[name: string]: any;
|
|
7421
|
+
};
|
|
7422
|
+
content: {
|
|
7423
|
+
"application/json": components["schemas"]["GitHubBranchesListResponse"];
|
|
7424
|
+
};
|
|
7425
|
+
};
|
|
7426
|
+
};
|
|
7427
|
+
};
|
|
7428
|
+
"GitHubPublicController.status": {
|
|
7429
|
+
parameters: {
|
|
7430
|
+
query?: never;
|
|
7431
|
+
header?: never;
|
|
7432
|
+
path?: never;
|
|
7433
|
+
cookie?: never;
|
|
7434
|
+
};
|
|
7435
|
+
requestBody?: never;
|
|
7436
|
+
responses: {
|
|
7437
|
+
200: {
|
|
7438
|
+
headers: {
|
|
7439
|
+
[name: string]: any;
|
|
7440
|
+
};
|
|
7441
|
+
content: {
|
|
7442
|
+
"application/json": components["schemas"]["GitHubConnectStatusResponse"];
|
|
7443
|
+
};
|
|
7444
|
+
};
|
|
7445
|
+
};
|
|
7446
|
+
};
|
|
7447
|
+
"GroupsPublicController.deleteGroup": {
|
|
7448
|
+
parameters: {
|
|
7449
|
+
query?: never;
|
|
7450
|
+
header?: never;
|
|
7451
|
+
path: {
|
|
7452
|
+
id: number;
|
|
7453
|
+
};
|
|
7454
|
+
cookie?: never;
|
|
7455
|
+
};
|
|
7456
|
+
requestBody?: never;
|
|
7457
|
+
responses: {
|
|
7458
|
+
/** @description Successful response */
|
|
7459
|
+
200: {
|
|
7460
|
+
headers: {
|
|
7461
|
+
[name: string]: any;
|
|
7462
|
+
};
|
|
7463
|
+
content: {
|
|
7464
|
+
"application/json": any;
|
|
7465
|
+
};
|
|
7466
|
+
};
|
|
7467
|
+
};
|
|
7468
|
+
};
|
|
7469
|
+
"MetadataPublicController.getMetadata": {
|
|
7470
|
+
parameters: {
|
|
7471
|
+
query?: never;
|
|
7472
|
+
header?: never;
|
|
7473
|
+
path?: never;
|
|
7474
|
+
cookie?: never;
|
|
7475
|
+
};
|
|
7476
|
+
/** @description MetadataRequest */
|
|
7477
|
+
requestBody?: {
|
|
7478
|
+
content: {
|
|
7479
|
+
"application/json": components["schemas"]["MetadataRequest"];
|
|
7480
|
+
};
|
|
7481
|
+
};
|
|
7482
|
+
responses: {
|
|
7483
|
+
/** @description Successful response */
|
|
7484
|
+
200: {
|
|
7485
|
+
headers: {
|
|
7486
|
+
[name: string]: any;
|
|
7487
|
+
};
|
|
7488
|
+
content: {
|
|
7489
|
+
"application/json": any;
|
|
7490
|
+
};
|
|
7491
|
+
};
|
|
7492
|
+
};
|
|
7493
|
+
};
|
|
7494
|
+
"OAuthIntegrationsPublicController.listOAuthIntegrations": {
|
|
7495
|
+
parameters: {
|
|
7496
|
+
query?: never;
|
|
7497
|
+
header?: never;
|
|
7498
|
+
path?: never;
|
|
7499
|
+
cookie?: never;
|
|
7500
|
+
};
|
|
7501
|
+
requestBody?: never;
|
|
7502
|
+
responses: {
|
|
7503
|
+
200: {
|
|
7504
|
+
headers: {
|
|
7505
|
+
[name: string]: any;
|
|
7506
|
+
};
|
|
7507
|
+
content: {
|
|
7508
|
+
"application/json": components["schemas"]["OAuthIntegration"][];
|
|
7509
|
+
};
|
|
7510
|
+
};
|
|
7511
|
+
};
|
|
7512
|
+
};
|
|
7513
|
+
"OAuthIntegrationsPublicController.createOAuthIntegration": {
|
|
7514
|
+
parameters: {
|
|
7515
|
+
query?: never;
|
|
7516
|
+
header?: never;
|
|
7517
|
+
path?: never;
|
|
7518
|
+
cookie?: never;
|
|
7519
|
+
};
|
|
7520
|
+
/** @description CreateOAuthIntegrationInput */
|
|
7521
|
+
requestBody?: {
|
|
7522
|
+
content: {
|
|
7523
|
+
"application/json": components["schemas"]["CreateOAuthIntegrationInput"];
|
|
7524
|
+
};
|
|
7525
|
+
};
|
|
7526
|
+
responses: {
|
|
7527
|
+
200: {
|
|
7528
|
+
headers: {
|
|
7529
|
+
[name: string]: any;
|
|
7530
|
+
};
|
|
7531
|
+
content: {
|
|
7532
|
+
"application/json": components["schemas"]["OAuthIntegration"];
|
|
7533
|
+
};
|
|
7534
|
+
};
|
|
7535
|
+
};
|
|
7536
|
+
};
|
|
7537
|
+
"OAuthIntegrationsPublicController.getOAuthIntegration": {
|
|
7538
|
+
parameters: {
|
|
7539
|
+
query?: never;
|
|
7540
|
+
header?: never;
|
|
7541
|
+
path: {
|
|
7542
|
+
id: number;
|
|
7543
|
+
};
|
|
7544
|
+
cookie?: never;
|
|
7545
|
+
};
|
|
7546
|
+
requestBody?: never;
|
|
7547
|
+
responses: {
|
|
7548
|
+
200: {
|
|
7549
|
+
headers: {
|
|
7550
|
+
[name: string]: any;
|
|
7551
|
+
};
|
|
7552
|
+
content: {
|
|
7553
|
+
"application/json": components["schemas"]["OAuthIntegration"];
|
|
7554
|
+
};
|
|
7555
|
+
};
|
|
7556
|
+
};
|
|
7557
|
+
};
|
|
7558
|
+
"OAuthIntegrationsPublicController.updateOAuthIntegration": {
|
|
7559
|
+
parameters: {
|
|
7560
|
+
query?: never;
|
|
7561
|
+
header?: never;
|
|
7562
|
+
path: {
|
|
7563
|
+
id: number;
|
|
7564
|
+
};
|
|
7565
|
+
cookie?: never;
|
|
7566
|
+
};
|
|
7567
|
+
/** @description UpdateOAuthIntegrationInput */
|
|
7568
|
+
requestBody?: {
|
|
7569
|
+
content: {
|
|
7570
|
+
"application/json": components["schemas"]["UpdateOAuthIntegrationInput"];
|
|
7571
|
+
};
|
|
7572
|
+
};
|
|
7573
|
+
responses: {
|
|
7574
|
+
200: {
|
|
7575
|
+
headers: {
|
|
7576
|
+
[name: string]: any;
|
|
7577
|
+
};
|
|
7578
|
+
content: {
|
|
7579
|
+
"application/json": components["schemas"]["OAuthIntegration"];
|
|
7580
|
+
};
|
|
7581
|
+
};
|
|
7582
|
+
};
|
|
7583
|
+
};
|
|
7584
|
+
"OAuthIntegrationsPublicController.deleteOAuthIntegration": {
|
|
7585
|
+
parameters: {
|
|
7586
|
+
query?: never;
|
|
7587
|
+
header?: never;
|
|
7588
|
+
path: {
|
|
7589
|
+
id: number;
|
|
7590
|
+
};
|
|
7591
|
+
cookie?: never;
|
|
7592
|
+
};
|
|
7593
|
+
requestBody?: never;
|
|
7594
|
+
responses: {
|
|
7595
|
+
/** @description Successful response */
|
|
7596
|
+
200: {
|
|
7597
|
+
headers: {
|
|
7598
|
+
[name: string]: any;
|
|
7599
|
+
};
|
|
7600
|
+
content: {
|
|
7601
|
+
"application/json": any;
|
|
7602
|
+
};
|
|
7603
|
+
};
|
|
7604
|
+
};
|
|
7605
|
+
};
|
|
7606
|
+
"OidcTokenConfigsPublicController.listOidcTokenConfigs": {
|
|
6210
7607
|
parameters: {
|
|
6211
7608
|
query?: never;
|
|
6212
7609
|
header?: never;
|
|
6213
7610
|
path?: never;
|
|
6214
7611
|
cookie?: never;
|
|
6215
7612
|
};
|
|
6216
|
-
|
|
6217
|
-
requestBody?: {
|
|
6218
|
-
content: {
|
|
6219
|
-
"application/json": components["schemas"]["PostTokenBySessionIdInput"];
|
|
6220
|
-
};
|
|
6221
|
-
};
|
|
7613
|
+
requestBody?: never;
|
|
6222
7614
|
responses: {
|
|
6223
7615
|
200: {
|
|
6224
7616
|
headers: {
|
|
6225
7617
|
[name: string]: any;
|
|
6226
7618
|
};
|
|
6227
7619
|
content: {
|
|
6228
|
-
"application/json": components["schemas"]["
|
|
7620
|
+
"application/json": components["schemas"]["OidcTokenConfig"][];
|
|
6229
7621
|
};
|
|
6230
7622
|
};
|
|
6231
7623
|
};
|
|
6232
7624
|
};
|
|
6233
|
-
"
|
|
7625
|
+
"OidcTokenConfigsPublicController.createOidcTokenConfig": {
|
|
6234
7626
|
parameters: {
|
|
6235
7627
|
query?: never;
|
|
6236
7628
|
header?: never;
|
|
6237
7629
|
path?: never;
|
|
6238
7630
|
cookie?: never;
|
|
6239
7631
|
};
|
|
6240
|
-
|
|
7632
|
+
/** @description CreateOidcTokenConfigInput */
|
|
7633
|
+
requestBody?: {
|
|
7634
|
+
content: {
|
|
7635
|
+
"application/json": components["schemas"]["CreateOidcTokenConfigInput"];
|
|
7636
|
+
};
|
|
7637
|
+
};
|
|
6241
7638
|
responses: {
|
|
6242
7639
|
200: {
|
|
6243
7640
|
headers: {
|
|
6244
7641
|
[name: string]: any;
|
|
6245
7642
|
};
|
|
6246
7643
|
content: {
|
|
6247
|
-
"application/json": components["schemas"]["
|
|
7644
|
+
"application/json": components["schemas"]["OidcTokenConfig"];
|
|
6248
7645
|
};
|
|
6249
7646
|
};
|
|
6250
7647
|
};
|
|
6251
7648
|
};
|
|
6252
|
-
"
|
|
7649
|
+
"OidcTokenConfigsPublicController.getOidcTokenConfig": {
|
|
6253
7650
|
parameters: {
|
|
6254
7651
|
query?: never;
|
|
6255
7652
|
header?: never;
|
|
6256
7653
|
path: {
|
|
6257
|
-
|
|
7654
|
+
id: number;
|
|
6258
7655
|
};
|
|
6259
7656
|
cookie?: never;
|
|
6260
7657
|
};
|
|
@@ -6265,103 +7662,111 @@ export interface operations {
|
|
|
6265
7662
|
[name: string]: any;
|
|
6266
7663
|
};
|
|
6267
7664
|
content: {
|
|
6268
|
-
"application/json": components["schemas"]["
|
|
7665
|
+
"application/json": components["schemas"]["OidcTokenConfig"];
|
|
6269
7666
|
};
|
|
6270
7667
|
};
|
|
6271
7668
|
};
|
|
6272
7669
|
};
|
|
6273
|
-
"
|
|
7670
|
+
"OidcTokenConfigsPublicController.updateOidcTokenConfig": {
|
|
6274
7671
|
parameters: {
|
|
6275
|
-
query?:
|
|
6276
|
-
installationId?: number;
|
|
6277
|
-
};
|
|
7672
|
+
query?: never;
|
|
6278
7673
|
header?: never;
|
|
6279
7674
|
path: {
|
|
6280
|
-
|
|
7675
|
+
id: number;
|
|
6281
7676
|
};
|
|
6282
7677
|
cookie?: never;
|
|
6283
7678
|
};
|
|
6284
|
-
|
|
7679
|
+
/** @description UpdateOidcTokenConfigInput */
|
|
7680
|
+
requestBody?: {
|
|
7681
|
+
content: {
|
|
7682
|
+
"application/json": components["schemas"]["UpdateOidcTokenConfigInput"];
|
|
7683
|
+
};
|
|
7684
|
+
};
|
|
6285
7685
|
responses: {
|
|
6286
7686
|
200: {
|
|
6287
7687
|
headers: {
|
|
6288
7688
|
[name: string]: any;
|
|
6289
7689
|
};
|
|
6290
7690
|
content: {
|
|
6291
|
-
"application/json": components["schemas"]["
|
|
7691
|
+
"application/json": components["schemas"]["OidcTokenConfig"];
|
|
6292
7692
|
};
|
|
6293
7693
|
};
|
|
6294
7694
|
};
|
|
6295
7695
|
};
|
|
6296
|
-
"
|
|
7696
|
+
"OidcTokenConfigsPublicController.deleteOidcTokenConfig": {
|
|
6297
7697
|
parameters: {
|
|
6298
7698
|
query?: never;
|
|
6299
7699
|
header?: never;
|
|
6300
|
-
path
|
|
7700
|
+
path: {
|
|
7701
|
+
id: number;
|
|
7702
|
+
};
|
|
6301
7703
|
cookie?: never;
|
|
6302
7704
|
};
|
|
6303
7705
|
requestBody?: never;
|
|
6304
7706
|
responses: {
|
|
7707
|
+
/** @description Successful response */
|
|
6305
7708
|
200: {
|
|
6306
7709
|
headers: {
|
|
6307
7710
|
[name: string]: any;
|
|
6308
7711
|
};
|
|
6309
7712
|
content: {
|
|
6310
|
-
"application/json":
|
|
7713
|
+
"application/json": any;
|
|
6311
7714
|
};
|
|
6312
7715
|
};
|
|
6313
7716
|
};
|
|
6314
7717
|
};
|
|
6315
|
-
"
|
|
7718
|
+
"RegionsPublicController.listRegions": {
|
|
6316
7719
|
parameters: {
|
|
6317
|
-
query?:
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
id: number;
|
|
7720
|
+
query?: {
|
|
7721
|
+
after?: string | null;
|
|
7722
|
+
first?: number | null;
|
|
6321
7723
|
};
|
|
7724
|
+
header?: never;
|
|
7725
|
+
path?: never;
|
|
6322
7726
|
cookie?: never;
|
|
6323
7727
|
};
|
|
6324
7728
|
requestBody?: never;
|
|
6325
7729
|
responses: {
|
|
6326
|
-
/** @description Successful response */
|
|
6327
7730
|
200: {
|
|
6328
7731
|
headers: {
|
|
6329
7732
|
[name: string]: any;
|
|
6330
7733
|
};
|
|
6331
7734
|
content: {
|
|
6332
|
-
"application/json":
|
|
7735
|
+
"application/json": components["schemas"]["RegionsListResponse"];
|
|
6333
7736
|
};
|
|
6334
7737
|
};
|
|
6335
7738
|
};
|
|
6336
7739
|
};
|
|
6337
|
-
"
|
|
7740
|
+
"RegionsPublicController.createRegion": {
|
|
6338
7741
|
parameters: {
|
|
6339
7742
|
query?: never;
|
|
6340
7743
|
header?: never;
|
|
6341
7744
|
path?: never;
|
|
6342
7745
|
cookie?: never;
|
|
6343
7746
|
};
|
|
6344
|
-
/** @description
|
|
7747
|
+
/** @description RegionCreateRequest */
|
|
6345
7748
|
requestBody?: {
|
|
6346
7749
|
content: {
|
|
6347
|
-
"application/json": components["schemas"]["
|
|
7750
|
+
"application/json": components["schemas"]["RegionCreateRequest"];
|
|
6348
7751
|
};
|
|
6349
7752
|
};
|
|
6350
7753
|
responses: {
|
|
6351
|
-
/** @description Successful response */
|
|
6352
7754
|
200: {
|
|
6353
7755
|
headers: {
|
|
6354
7756
|
[name: string]: any;
|
|
6355
7757
|
};
|
|
6356
7758
|
content: {
|
|
6357
|
-
"application/json":
|
|
7759
|
+
"application/json": components["schemas"]["ProvisionedRegionResponse"];
|
|
6358
7760
|
};
|
|
6359
7761
|
};
|
|
6360
7762
|
};
|
|
6361
7763
|
};
|
|
6362
|
-
"
|
|
7764
|
+
"RegionsPublicController.listCloudProviderCatalog": {
|
|
6363
7765
|
parameters: {
|
|
6364
|
-
query?:
|
|
7766
|
+
query?: {
|
|
7767
|
+
after?: string | null;
|
|
7768
|
+
first?: number | null;
|
|
7769
|
+
};
|
|
6365
7770
|
header?: never;
|
|
6366
7771
|
path?: never;
|
|
6367
7772
|
cookie?: never;
|
|
@@ -6373,109 +7778,110 @@ export interface operations {
|
|
|
6373
7778
|
[name: string]: any;
|
|
6374
7779
|
};
|
|
6375
7780
|
content: {
|
|
6376
|
-
"application/json": components["schemas"]["
|
|
7781
|
+
"application/json": components["schemas"]["RegionCloudProviderCatalogListResponse"];
|
|
6377
7782
|
};
|
|
6378
7783
|
};
|
|
6379
7784
|
};
|
|
6380
7785
|
};
|
|
6381
|
-
"
|
|
7786
|
+
"RegionsPublicController.getRegion": {
|
|
6382
7787
|
parameters: {
|
|
6383
7788
|
query?: never;
|
|
6384
7789
|
header?: never;
|
|
6385
|
-
path
|
|
6386
|
-
|
|
6387
|
-
};
|
|
6388
|
-
/** @description CreateOAuthIntegrationInput */
|
|
6389
|
-
requestBody?: {
|
|
6390
|
-
content: {
|
|
6391
|
-
"application/json": components["schemas"]["CreateOAuthIntegrationInput"];
|
|
7790
|
+
path: {
|
|
7791
|
+
regionId: number;
|
|
6392
7792
|
};
|
|
7793
|
+
cookie?: never;
|
|
6393
7794
|
};
|
|
7795
|
+
requestBody?: never;
|
|
6394
7796
|
responses: {
|
|
6395
7797
|
200: {
|
|
6396
7798
|
headers: {
|
|
6397
7799
|
[name: string]: any;
|
|
6398
7800
|
};
|
|
6399
7801
|
content: {
|
|
6400
|
-
"application/json": components["schemas"]["
|
|
7802
|
+
"application/json": components["schemas"]["ProvisionedRegionResponse"];
|
|
6401
7803
|
};
|
|
6402
7804
|
};
|
|
6403
7805
|
};
|
|
6404
7806
|
};
|
|
6405
|
-
"
|
|
7807
|
+
"RegionsPublicController.updateRegion": {
|
|
6406
7808
|
parameters: {
|
|
6407
7809
|
query?: never;
|
|
6408
7810
|
header?: never;
|
|
6409
7811
|
path: {
|
|
6410
|
-
|
|
7812
|
+
regionId: number;
|
|
6411
7813
|
};
|
|
6412
7814
|
cookie?: never;
|
|
6413
7815
|
};
|
|
6414
|
-
|
|
7816
|
+
/** @description RegionUpdateRequest */
|
|
7817
|
+
requestBody?: {
|
|
7818
|
+
content: {
|
|
7819
|
+
"application/json": components["schemas"]["RegionUpdateRequest"];
|
|
7820
|
+
};
|
|
7821
|
+
};
|
|
6415
7822
|
responses: {
|
|
6416
7823
|
200: {
|
|
6417
7824
|
headers: {
|
|
6418
7825
|
[name: string]: any;
|
|
6419
7826
|
};
|
|
6420
7827
|
content: {
|
|
6421
|
-
"application/json": components["schemas"]["
|
|
7828
|
+
"application/json": components["schemas"]["ProvisionedRegionResponse"];
|
|
6422
7829
|
};
|
|
6423
7830
|
};
|
|
6424
7831
|
};
|
|
6425
7832
|
};
|
|
6426
|
-
"
|
|
7833
|
+
"RegionsPublicController.destroyRegion": {
|
|
6427
7834
|
parameters: {
|
|
6428
7835
|
query?: never;
|
|
6429
7836
|
header?: never;
|
|
6430
7837
|
path: {
|
|
6431
|
-
|
|
7838
|
+
regionId: number;
|
|
6432
7839
|
};
|
|
6433
7840
|
cookie?: never;
|
|
6434
7841
|
};
|
|
6435
|
-
|
|
6436
|
-
requestBody?: {
|
|
6437
|
-
content: {
|
|
6438
|
-
"application/json": components["schemas"]["UpdateOAuthIntegrationInput"];
|
|
6439
|
-
};
|
|
6440
|
-
};
|
|
7842
|
+
requestBody?: never;
|
|
6441
7843
|
responses: {
|
|
6442
7844
|
200: {
|
|
6443
7845
|
headers: {
|
|
6444
7846
|
[name: string]: any;
|
|
6445
7847
|
};
|
|
6446
7848
|
content: {
|
|
6447
|
-
"application/json": components["schemas"]["
|
|
7849
|
+
"application/json": components["schemas"]["RegionProvisioningRunResponse"];
|
|
6448
7850
|
};
|
|
6449
7851
|
};
|
|
6450
7852
|
};
|
|
6451
7853
|
};
|
|
6452
|
-
"
|
|
7854
|
+
"RegionsPublicController.applyRegion": {
|
|
6453
7855
|
parameters: {
|
|
6454
7856
|
query?: never;
|
|
6455
7857
|
header?: never;
|
|
6456
7858
|
path: {
|
|
6457
|
-
|
|
7859
|
+
regionId: number;
|
|
6458
7860
|
};
|
|
6459
7861
|
cookie?: never;
|
|
6460
7862
|
};
|
|
6461
7863
|
requestBody?: never;
|
|
6462
7864
|
responses: {
|
|
6463
|
-
/** @description Successful response */
|
|
6464
7865
|
200: {
|
|
6465
7866
|
headers: {
|
|
6466
7867
|
[name: string]: any;
|
|
6467
7868
|
};
|
|
6468
7869
|
content: {
|
|
6469
|
-
"application/json":
|
|
7870
|
+
"application/json": components["schemas"]["RegionProvisioningRunResponse"];
|
|
6470
7871
|
};
|
|
6471
7872
|
};
|
|
6472
7873
|
};
|
|
6473
7874
|
};
|
|
6474
|
-
"
|
|
7875
|
+
"RegionPrivateLinksPublicController.listPrivateLinks": {
|
|
6475
7876
|
parameters: {
|
|
6476
|
-
query?:
|
|
7877
|
+
query?: {
|
|
7878
|
+
after?: string | null;
|
|
7879
|
+
first?: number | null;
|
|
7880
|
+
};
|
|
6477
7881
|
header?: never;
|
|
6478
|
-
path
|
|
7882
|
+
path: {
|
|
7883
|
+
regionId: number;
|
|
7884
|
+
};
|
|
6479
7885
|
cookie?: never;
|
|
6480
7886
|
};
|
|
6481
7887
|
requestBody?: never;
|
|
@@ -6485,22 +7891,24 @@ export interface operations {
|
|
|
6485
7891
|
[name: string]: any;
|
|
6486
7892
|
};
|
|
6487
7893
|
content: {
|
|
6488
|
-
"application/json": components["schemas"]["
|
|
7894
|
+
"application/json": components["schemas"]["RegionPrivateLinksListResponse"];
|
|
6489
7895
|
};
|
|
6490
7896
|
};
|
|
6491
7897
|
};
|
|
6492
7898
|
};
|
|
6493
|
-
"
|
|
7899
|
+
"RegionPrivateLinksPublicController.createPrivateLink": {
|
|
6494
7900
|
parameters: {
|
|
6495
7901
|
query?: never;
|
|
6496
7902
|
header?: never;
|
|
6497
|
-
path
|
|
7903
|
+
path: {
|
|
7904
|
+
regionId: number;
|
|
7905
|
+
};
|
|
6498
7906
|
cookie?: never;
|
|
6499
7907
|
};
|
|
6500
|
-
/** @description
|
|
7908
|
+
/** @description RegionPrivateLinkCreateRequest */
|
|
6501
7909
|
requestBody?: {
|
|
6502
7910
|
content: {
|
|
6503
|
-
"application/json": components["schemas"]["
|
|
7911
|
+
"application/json": components["schemas"]["RegionPrivateLinkCreateRequest"];
|
|
6504
7912
|
};
|
|
6505
7913
|
};
|
|
6506
7914
|
responses: {
|
|
@@ -6509,17 +7917,18 @@ export interface operations {
|
|
|
6509
7917
|
[name: string]: any;
|
|
6510
7918
|
};
|
|
6511
7919
|
content: {
|
|
6512
|
-
"application/json": components["schemas"]["
|
|
7920
|
+
"application/json": components["schemas"]["RegionPrivateLinkResponse"];
|
|
6513
7921
|
};
|
|
6514
7922
|
};
|
|
6515
7923
|
};
|
|
6516
7924
|
};
|
|
6517
|
-
"
|
|
7925
|
+
"RegionPrivateLinksPublicController.getPrivateLink": {
|
|
6518
7926
|
parameters: {
|
|
6519
7927
|
query?: never;
|
|
6520
7928
|
header?: never;
|
|
6521
7929
|
path: {
|
|
6522
|
-
|
|
7930
|
+
regionId: number;
|
|
7931
|
+
privateLinkId: number;
|
|
6523
7932
|
};
|
|
6524
7933
|
cookie?: never;
|
|
6525
7934
|
};
|
|
@@ -6530,24 +7939,25 @@ export interface operations {
|
|
|
6530
7939
|
[name: string]: any;
|
|
6531
7940
|
};
|
|
6532
7941
|
content: {
|
|
6533
|
-
"application/json": components["schemas"]["
|
|
7942
|
+
"application/json": components["schemas"]["RegionPrivateLinkResponse"];
|
|
6534
7943
|
};
|
|
6535
7944
|
};
|
|
6536
7945
|
};
|
|
6537
7946
|
};
|
|
6538
|
-
"
|
|
7947
|
+
"RegionPrivateLinksPublicController.updatePrivateLink": {
|
|
6539
7948
|
parameters: {
|
|
6540
7949
|
query?: never;
|
|
6541
7950
|
header?: never;
|
|
6542
7951
|
path: {
|
|
6543
|
-
|
|
7952
|
+
regionId: number;
|
|
7953
|
+
privateLinkId: number;
|
|
6544
7954
|
};
|
|
6545
7955
|
cookie?: never;
|
|
6546
7956
|
};
|
|
6547
|
-
/** @description
|
|
7957
|
+
/** @description RegionPrivateLinkUpdateRequest */
|
|
6548
7958
|
requestBody?: {
|
|
6549
7959
|
content: {
|
|
6550
|
-
"application/json": components["schemas"]["
|
|
7960
|
+
"application/json": components["schemas"]["RegionPrivateLinkUpdateRequest"];
|
|
6551
7961
|
};
|
|
6552
7962
|
};
|
|
6553
7963
|
responses: {
|
|
@@ -6556,38 +7966,40 @@ export interface operations {
|
|
|
6556
7966
|
[name: string]: any;
|
|
6557
7967
|
};
|
|
6558
7968
|
content: {
|
|
6559
|
-
"application/json": components["schemas"]["
|
|
7969
|
+
"application/json": components["schemas"]["RegionPrivateLinkResponse"];
|
|
6560
7970
|
};
|
|
6561
7971
|
};
|
|
6562
7972
|
};
|
|
6563
7973
|
};
|
|
6564
|
-
"
|
|
7974
|
+
"RegionPrivateLinksPublicController.removePrivateLink": {
|
|
6565
7975
|
parameters: {
|
|
6566
7976
|
query?: never;
|
|
6567
7977
|
header?: never;
|
|
6568
7978
|
path: {
|
|
6569
|
-
|
|
7979
|
+
regionId: number;
|
|
7980
|
+
privateLinkId: number;
|
|
6570
7981
|
};
|
|
6571
7982
|
cookie?: never;
|
|
6572
7983
|
};
|
|
6573
7984
|
requestBody?: never;
|
|
6574
7985
|
responses: {
|
|
6575
|
-
/** @description Successful response */
|
|
6576
7986
|
200: {
|
|
6577
7987
|
headers: {
|
|
6578
7988
|
[name: string]: any;
|
|
6579
7989
|
};
|
|
6580
7990
|
content: {
|
|
6581
|
-
"application/json":
|
|
7991
|
+
"application/json": components["schemas"]["RegionPrivateLinkRemoveResponse"];
|
|
6582
7992
|
};
|
|
6583
7993
|
};
|
|
6584
7994
|
};
|
|
6585
7995
|
};
|
|
6586
|
-
"RegionsPublicController.
|
|
7996
|
+
"RegionsPublicController.getRegionProvisioningStatus": {
|
|
6587
7997
|
parameters: {
|
|
6588
7998
|
query?: never;
|
|
6589
7999
|
header?: never;
|
|
6590
|
-
path
|
|
8000
|
+
path: {
|
|
8001
|
+
regionId: number;
|
|
8002
|
+
};
|
|
6591
8003
|
cookie?: never;
|
|
6592
8004
|
};
|
|
6593
8005
|
requestBody?: never;
|
|
@@ -6597,8 +8009,15 @@ export interface operations {
|
|
|
6597
8009
|
[name: string]: any;
|
|
6598
8010
|
};
|
|
6599
8011
|
content: {
|
|
6600
|
-
"application/json": components["schemas"]["
|
|
8012
|
+
"application/json": components["schemas"]["RegionProvisioningStatusResponse"];
|
|
8013
|
+
};
|
|
8014
|
+
};
|
|
8015
|
+
/** @description No provisioning run to report — the region has never been applied, or the provisioner does not manage it. A state, not an error. */
|
|
8016
|
+
204: {
|
|
8017
|
+
headers: {
|
|
8018
|
+
[name: string]: any;
|
|
6601
8019
|
};
|
|
8020
|
+
content?: never;
|
|
6602
8021
|
};
|
|
6603
8022
|
};
|
|
6604
8023
|
};
|
|
@@ -6674,6 +8093,28 @@ export interface operations {
|
|
|
6674
8093
|
};
|
|
6675
8094
|
};
|
|
6676
8095
|
};
|
|
8096
|
+
"OpenApiSpecPublicController.getSpec": {
|
|
8097
|
+
parameters: {
|
|
8098
|
+
query?: never;
|
|
8099
|
+
header?: never;
|
|
8100
|
+
path?: never;
|
|
8101
|
+
cookie?: never;
|
|
8102
|
+
};
|
|
8103
|
+
requestBody?: never;
|
|
8104
|
+
responses: {
|
|
8105
|
+
/** @description The OpenAPI 3.1 document */
|
|
8106
|
+
200: {
|
|
8107
|
+
headers: {
|
|
8108
|
+
[name: string]: any;
|
|
8109
|
+
};
|
|
8110
|
+
content: {
|
|
8111
|
+
"application/json": {
|
|
8112
|
+
[key: string]: any;
|
|
8113
|
+
};
|
|
8114
|
+
};
|
|
8115
|
+
};
|
|
8116
|
+
};
|
|
8117
|
+
};
|
|
6677
8118
|
"TenantSettingsPublicController.getTenantSettings": {
|
|
6678
8119
|
parameters: {
|
|
6679
8120
|
query?: never;
|
|
@@ -6769,6 +8210,8 @@ export interface operations {
|
|
|
6769
8210
|
limit?: number | null;
|
|
6770
8211
|
name?: string | null;
|
|
6771
8212
|
type?: components["schemas"]["GetUserAttributesQueryType"] | null;
|
|
8213
|
+
after?: string;
|
|
8214
|
+
first?: number;
|
|
6772
8215
|
};
|
|
6773
8216
|
header?: never;
|
|
6774
8217
|
path?: never;
|
|
@@ -6861,8 +8304,9 @@ export interface operations {
|
|
|
6861
8304
|
"UserGroupsPublicController.listGroups": {
|
|
6862
8305
|
parameters: {
|
|
6863
8306
|
query?: {
|
|
6864
|
-
|
|
6865
|
-
|
|
8307
|
+
search?: string | null;
|
|
8308
|
+
after?: string;
|
|
8309
|
+
first?: number;
|
|
6866
8310
|
};
|
|
6867
8311
|
header?: never;
|
|
6868
8312
|
path?: never;
|
|
@@ -6967,8 +8411,9 @@ export interface operations {
|
|
|
6967
8411
|
"UsersPublicController.getUsers": {
|
|
6968
8412
|
parameters: {
|
|
6969
8413
|
query?: {
|
|
6970
|
-
|
|
6971
|
-
|
|
8414
|
+
search?: string | null;
|
|
8415
|
+
after?: string;
|
|
8416
|
+
first?: number;
|
|
6972
8417
|
};
|
|
6973
8418
|
header?: never;
|
|
6974
8419
|
path?: never;
|
|
@@ -7146,7 +8591,10 @@ export interface operations {
|
|
|
7146
8591
|
};
|
|
7147
8592
|
"DataModelPublicController.listBranches": {
|
|
7148
8593
|
parameters: {
|
|
7149
|
-
query?:
|
|
8594
|
+
query?: {
|
|
8595
|
+
after?: string | null;
|
|
8596
|
+
first?: number | null;
|
|
8597
|
+
};
|
|
7150
8598
|
header?: never;
|
|
7151
8599
|
path: {
|
|
7152
8600
|
deploymentId: number;
|
|
@@ -7191,6 +8639,56 @@ export interface operations {
|
|
|
7191
8639
|
};
|
|
7192
8640
|
};
|
|
7193
8641
|
};
|
|
8642
|
+
"DataModelPublicController.removeBranch": {
|
|
8643
|
+
parameters: {
|
|
8644
|
+
query: {
|
|
8645
|
+
branchName: string;
|
|
8646
|
+
removeOnUpstream?: boolean;
|
|
8647
|
+
};
|
|
8648
|
+
header?: never;
|
|
8649
|
+
path: {
|
|
8650
|
+
deploymentId: number;
|
|
8651
|
+
};
|
|
8652
|
+
cookie?: never;
|
|
8653
|
+
};
|
|
8654
|
+
requestBody?: never;
|
|
8655
|
+
responses: {
|
|
8656
|
+
200: {
|
|
8657
|
+
headers: {
|
|
8658
|
+
[name: string]: any;
|
|
8659
|
+
};
|
|
8660
|
+
content: {
|
|
8661
|
+
"application/json": components["schemas"]["DataModelWriteResponse"];
|
|
8662
|
+
};
|
|
8663
|
+
};
|
|
8664
|
+
};
|
|
8665
|
+
};
|
|
8666
|
+
"DataModelPublicController.setBranchStagingEnvironment": {
|
|
8667
|
+
parameters: {
|
|
8668
|
+
query?: never;
|
|
8669
|
+
header?: never;
|
|
8670
|
+
path: {
|
|
8671
|
+
deploymentId: number;
|
|
8672
|
+
};
|
|
8673
|
+
cookie?: never;
|
|
8674
|
+
};
|
|
8675
|
+
/** @description SetBranchStagingEnvironmentRequest */
|
|
8676
|
+
requestBody?: {
|
|
8677
|
+
content: {
|
|
8678
|
+
"application/json": components["schemas"]["SetBranchStagingEnvironmentRequest"];
|
|
8679
|
+
};
|
|
8680
|
+
};
|
|
8681
|
+
responses: {
|
|
8682
|
+
200: {
|
|
8683
|
+
headers: {
|
|
8684
|
+
[name: string]: any;
|
|
8685
|
+
};
|
|
8686
|
+
content: {
|
|
8687
|
+
"application/json": components["schemas"]["SetBranchStagingEnvironmentResponse"];
|
|
8688
|
+
};
|
|
8689
|
+
};
|
|
8690
|
+
};
|
|
8691
|
+
};
|
|
7194
8692
|
"DataModelPublicController.commitChanges": {
|
|
7195
8693
|
parameters: {
|
|
7196
8694
|
query?: never;
|
|
@@ -7251,6 +8749,8 @@ export interface operations {
|
|
|
7251
8749
|
withContent?: boolean;
|
|
7252
8750
|
branchName?: string;
|
|
7253
8751
|
showLastCLIUpload?: boolean;
|
|
8752
|
+
after?: string | null;
|
|
8753
|
+
first?: number | null;
|
|
7254
8754
|
};
|
|
7255
8755
|
header?: never;
|
|
7256
8756
|
path: {
|
|
@@ -7436,6 +8936,30 @@ export interface operations {
|
|
|
7436
8936
|
};
|
|
7437
8937
|
};
|
|
7438
8938
|
};
|
|
8939
|
+
"DataModelPublicController.validateDataModel": {
|
|
8940
|
+
parameters: {
|
|
8941
|
+
query?: {
|
|
8942
|
+
branchName?: string;
|
|
8943
|
+
devMode?: boolean;
|
|
8944
|
+
};
|
|
8945
|
+
header?: never;
|
|
8946
|
+
path: {
|
|
8947
|
+
deploymentId: number;
|
|
8948
|
+
};
|
|
8949
|
+
cookie?: never;
|
|
8950
|
+
};
|
|
8951
|
+
requestBody?: never;
|
|
8952
|
+
responses: {
|
|
8953
|
+
200: {
|
|
8954
|
+
headers: {
|
|
8955
|
+
[name: string]: any;
|
|
8956
|
+
};
|
|
8957
|
+
content: {
|
|
8958
|
+
"application/json": components["schemas"]["DataModelValidationResponse"];
|
|
8959
|
+
};
|
|
8960
|
+
};
|
|
8961
|
+
};
|
|
8962
|
+
};
|
|
7439
8963
|
"DataModelPublicController.startDevMode": {
|
|
7440
8964
|
parameters: {
|
|
7441
8965
|
query?: never;
|