@neon/sdk 1.5.0 → 2.0.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/README.md +194 -28
- package/dist/client/client/client.gen.js +1 -3
- package/dist/client/client/client.gen.js.map +1 -1
- package/dist/client/client/utils.gen.js +1 -3
- package/dist/client/client/utils.gen.js.map +1 -1
- package/dist/client/index.d.ts +3 -3
- package/dist/client/index.js +2 -2
- package/dist/client/raw.gen.d.ts +146 -16
- package/dist/client/raw.gen.d.ts.map +1 -1
- package/dist/client/raw.gen.js +8 -3
- package/dist/client/raw.gen.js.map +1 -1
- package/dist/client/sdk.gen.d.ts +137 -78
- package/dist/client/sdk.gen.d.ts.map +1 -1
- package/dist/client/sdk.gen.js +258 -96
- package/dist/client/sdk.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +1397 -315
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/neon/client.d.ts +2 -0
- package/dist/neon/client.d.ts.map +1 -1
- package/dist/neon/client.js +2 -0
- package/dist/neon/client.js.map +1 -1
- package/dist/neon/context.js +2 -1
- package/dist/neon/context.js.map +1 -1
- package/dist/neon/coverage.d.ts.map +1 -1
- package/dist/neon/coverage.js +12 -2
- package/dist/neon/coverage.js.map +1 -1
- package/dist/neon/paginate.d.ts.map +1 -1
- package/dist/neon/paginate.js +5 -2
- package/dist/neon/paginate.js.map +1 -1
- package/dist/neon/resources/branches.d.ts +0 -7
- package/dist/neon/resources/branches.d.ts.map +1 -1
- package/dist/neon/resources/branches.js +6 -15
- package/dist/neon/resources/branches.js.map +1 -1
- package/dist/neon/resources/logs.d.ts +76 -0
- package/dist/neon/resources/logs.d.ts.map +1 -0
- package/dist/neon/resources/logs.js +90 -0
- package/dist/neon/resources/logs.js.map +1 -0
- package/dist/neon/resources/postgres.js +2 -1
- package/dist/neon/resources/postgres.js.map +1 -1
- package/dist/neon/resources/projects.d.ts +61 -4
- package/dist/neon/resources/projects.d.ts.map +1 -1
- package/dist/neon/resources/projects.js +71 -5
- package/dist/neon/resources/projects.js.map +1 -1
- package/dist/raw.d.ts +3 -3
- package/dist/raw.js +8 -3
- package/package.json +1 -1
package/dist/client/sdk.gen.js
CHANGED
|
@@ -191,7 +191,7 @@ const listProjects = (options) => (options?.client ?? client).get({
|
|
|
191
191
|
* For more information, see [Manage projects](https://neon.com/docs/manage/projects/).
|
|
192
192
|
*
|
|
193
193
|
* You can specify a region and Postgres version in the request body.
|
|
194
|
-
* Neon
|
|
194
|
+
* Neon supports Postgres 14 through 18, with 19 rolling out to enabled regions.
|
|
195
195
|
* For supported regions and `region_id` values, see [Regions](https://neon.com/docs/introduction/regions/).
|
|
196
196
|
*
|
|
197
197
|
*/
|
|
@@ -448,6 +448,94 @@ const grantPermissionToProject = (options) => (options.client ?? client).post({
|
|
|
448
448
|
}
|
|
449
449
|
});
|
|
450
450
|
/**
|
|
451
|
+
* List org members and their project roles
|
|
452
|
+
*
|
|
453
|
+
* Lists organization members and their per-project roles for an org-owned project.
|
|
454
|
+
* Returns 404 when the project is not org-owned, per-project role management is disabled,
|
|
455
|
+
* or the caller has no access. Callers with VIEWER or EDITOR see members with
|
|
456
|
+
* effective project access. Callers with ADMIN also see unassigned org members.
|
|
457
|
+
*
|
|
458
|
+
*/
|
|
459
|
+
const listProjectMembers = (options) => (options.client ?? client).get({
|
|
460
|
+
security: [
|
|
461
|
+
{
|
|
462
|
+
scheme: "bearer",
|
|
463
|
+
type: "http"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
in: "cookie",
|
|
467
|
+
name: "zenith",
|
|
468
|
+
type: "apiKey"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
in: "cookie",
|
|
472
|
+
name: "keycloak_token",
|
|
473
|
+
type: "apiKey"
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
url: "/projects/{project_id}/members",
|
|
477
|
+
...options
|
|
478
|
+
});
|
|
479
|
+
/**
|
|
480
|
+
* Remove an org member's role on a project
|
|
481
|
+
*
|
|
482
|
+
* Idempotently removes the explicit project grant. The member's organization-role
|
|
483
|
+
* default project permission still applies. Self-DELETE requires
|
|
484
|
+
* `confirm_self_lockout=true` when effective manage access would be lost.
|
|
485
|
+
*
|
|
486
|
+
*/
|
|
487
|
+
const removeProjectMemberRole = (options) => (options.client ?? client).delete({
|
|
488
|
+
security: [
|
|
489
|
+
{
|
|
490
|
+
scheme: "bearer",
|
|
491
|
+
type: "http"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
in: "cookie",
|
|
495
|
+
name: "zenith",
|
|
496
|
+
type: "apiKey"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
in: "cookie",
|
|
500
|
+
name: "keycloak_token",
|
|
501
|
+
type: "apiKey"
|
|
502
|
+
}
|
|
503
|
+
],
|
|
504
|
+
url: "/projects/{project_id}/members/{member_id}/role",
|
|
505
|
+
...options
|
|
506
|
+
});
|
|
507
|
+
/**
|
|
508
|
+
* Set an org member's role on a project
|
|
509
|
+
*
|
|
510
|
+
* Idempotently sets or updates the explicit project grant of the specified org member.
|
|
511
|
+
* Self-demotion requires `confirm_self_demotion=true`.
|
|
512
|
+
*
|
|
513
|
+
*/
|
|
514
|
+
const setProjectMemberRole = (options) => (options.client ?? client).put({
|
|
515
|
+
security: [
|
|
516
|
+
{
|
|
517
|
+
scheme: "bearer",
|
|
518
|
+
type: "http"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
in: "cookie",
|
|
522
|
+
name: "zenith",
|
|
523
|
+
type: "apiKey"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
in: "cookie",
|
|
527
|
+
name: "keycloak_token",
|
|
528
|
+
type: "apiKey"
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
url: "/projects/{project_id}/members/{member_id}/role",
|
|
532
|
+
...options,
|
|
533
|
+
headers: {
|
|
534
|
+
"Content-Type": "application/json",
|
|
535
|
+
...options.headers
|
|
536
|
+
}
|
|
537
|
+
});
|
|
538
|
+
/**
|
|
451
539
|
* Revoke project access
|
|
452
540
|
*
|
|
453
541
|
* Revokes project access from the user associated with the specified permission `id`. You can retrieve a user's permission `id` by listing project access.
|
|
@@ -779,7 +867,7 @@ const createProjectBranchDataApi = (options) => (options.client ?? client).post(
|
|
|
779
867
|
/**
|
|
780
868
|
* Create Neon Auth integration
|
|
781
869
|
*
|
|
782
|
-
*
|
|
870
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth` instead. Removal scheduled for March 1, 2026.
|
|
783
871
|
* Use this endpoint if the frontend integration flow can't be used.
|
|
784
872
|
*
|
|
785
873
|
*
|
|
@@ -904,7 +992,7 @@ const createNeonAuth = (options) => (options.client ?? client).post({
|
|
|
904
992
|
/**
|
|
905
993
|
* Delete trusted redirect URI domain
|
|
906
994
|
*
|
|
907
|
-
*
|
|
995
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/domains` instead. Removal scheduled for March 1, 2026.
|
|
908
996
|
*
|
|
909
997
|
*
|
|
910
998
|
* @deprecated
|
|
@@ -936,7 +1024,7 @@ const deleteNeonAuthDomainFromRedirectUriWhitelist = (options) => (options.clien
|
|
|
936
1024
|
/**
|
|
937
1025
|
* List trusted redirect URI domains
|
|
938
1026
|
*
|
|
939
|
-
*
|
|
1027
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/domains` instead. Removal scheduled for March 1, 2026.
|
|
940
1028
|
*
|
|
941
1029
|
*
|
|
942
1030
|
* @deprecated
|
|
@@ -964,7 +1052,7 @@ const listNeonAuthRedirectUriWhitelistDomains = (options) => (options.client ??
|
|
|
964
1052
|
/**
|
|
965
1053
|
* Add trusted redirect URI domain
|
|
966
1054
|
*
|
|
967
|
-
*
|
|
1055
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/domains` instead. Removal scheduled for March 1, 2026.
|
|
968
1056
|
*
|
|
969
1057
|
*
|
|
970
1058
|
* @deprecated
|
|
@@ -1116,7 +1204,7 @@ const createNeonAuthProviderSdkKeys = (options) => (options.client ?? client).po
|
|
|
1116
1204
|
/**
|
|
1117
1205
|
* Create new auth user
|
|
1118
1206
|
*
|
|
1119
|
-
*
|
|
1207
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/users` instead. Removal scheduled for March 1, 2026.
|
|
1120
1208
|
* The user will be created in your neon_auth.users_sync table and automatically propagated to your auth project, whether Neon-managed or provider-owned.
|
|
1121
1209
|
*
|
|
1122
1210
|
*
|
|
@@ -1239,7 +1327,7 @@ const updateNeonAuthUserRole = (options) => (options.client ?? client).put({
|
|
|
1239
1327
|
/**
|
|
1240
1328
|
* Delete auth user
|
|
1241
1329
|
*
|
|
1242
|
-
*
|
|
1330
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/users/{auth_user_id}` instead. Removal scheduled for March 1, 2026.
|
|
1243
1331
|
*
|
|
1244
1332
|
*
|
|
1245
1333
|
* @deprecated
|
|
@@ -1297,7 +1385,7 @@ const transferNeonAuthProviderProject = (options) => (options.client ?? client).
|
|
|
1297
1385
|
/**
|
|
1298
1386
|
* List active integrations with auth providers
|
|
1299
1387
|
*
|
|
1300
|
-
*
|
|
1388
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth` instead. Removal scheduled for March 1, 2026.
|
|
1301
1389
|
*
|
|
1302
1390
|
* @deprecated
|
|
1303
1391
|
*/
|
|
@@ -1324,7 +1412,7 @@ const listNeonAuthIntegrations = (options) => (options.client ?? client).get({
|
|
|
1324
1412
|
/**
|
|
1325
1413
|
* List OAuth providers
|
|
1326
1414
|
*
|
|
1327
|
-
*
|
|
1415
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/oauth_providers` instead. Removal scheduled for March 1, 2026.
|
|
1328
1416
|
*
|
|
1329
1417
|
*
|
|
1330
1418
|
* @deprecated
|
|
@@ -1352,8 +1440,7 @@ const listNeonAuthOauthProviders = (options) => (options.client ?? client).get({
|
|
|
1352
1440
|
/**
|
|
1353
1441
|
* Add an OAuth provider
|
|
1354
1442
|
*
|
|
1355
|
-
*
|
|
1356
|
-
* Adds an OAuth provider to the specified project.
|
|
1443
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/oauth_providers` instead. Removal scheduled for March 1, 2026.
|
|
1357
1444
|
*
|
|
1358
1445
|
*
|
|
1359
1446
|
* @deprecated
|
|
@@ -1442,7 +1529,7 @@ const addBranchNeonAuthOauthProvider = (options) => (options.client ?? client).p
|
|
|
1442
1529
|
/**
|
|
1443
1530
|
* Delete OAuth provider
|
|
1444
1531
|
*
|
|
1445
|
-
*
|
|
1532
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/oauth_providers/{oauth_provider_id}` instead. Removal scheduled for March 1, 2026.
|
|
1446
1533
|
*
|
|
1447
1534
|
*
|
|
1448
1535
|
* @deprecated
|
|
@@ -1470,7 +1557,7 @@ const deleteNeonAuthOauthProvider = (options) => (options.client ?? client).dele
|
|
|
1470
1557
|
/**
|
|
1471
1558
|
* Update OAuth provider
|
|
1472
1559
|
*
|
|
1473
|
-
*
|
|
1560
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/oauth_providers/{oauth_provider_id}` instead. Removal scheduled for March 1, 2026.
|
|
1474
1561
|
*
|
|
1475
1562
|
*
|
|
1476
1563
|
* @deprecated
|
|
@@ -1502,7 +1589,7 @@ const updateNeonAuthOauthProvider = (options) => (options.client ?? client).patc
|
|
|
1502
1589
|
/**
|
|
1503
1590
|
* Delete OAuth provider
|
|
1504
1591
|
*
|
|
1505
|
-
* Deletes
|
|
1592
|
+
* Deletes an OAuth provider from the specified project.
|
|
1506
1593
|
*
|
|
1507
1594
|
*/
|
|
1508
1595
|
const deleteBranchNeonAuthOauthProvider = (options) => (options.client ?? client).delete({
|
|
@@ -1528,7 +1615,7 @@ const deleteBranchNeonAuthOauthProvider = (options) => (options.client ?? client
|
|
|
1528
1615
|
/**
|
|
1529
1616
|
* Update OAuth provider
|
|
1530
1617
|
*
|
|
1531
|
-
* Updates
|
|
1618
|
+
* Updates an OAuth provider for the specified project.
|
|
1532
1619
|
*
|
|
1533
1620
|
*/
|
|
1534
1621
|
const updateBranchNeonAuthOauthProvider = (options) => (options.client ?? client).patch({
|
|
@@ -1558,7 +1645,7 @@ const updateBranchNeonAuthOauthProvider = (options) => (options.client ?? client
|
|
|
1558
1645
|
/**
|
|
1559
1646
|
* Retrieve email server configuration
|
|
1560
1647
|
*
|
|
1561
|
-
*
|
|
1648
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/email_provider` instead. Removal scheduled for March 1, 2026.
|
|
1562
1649
|
*
|
|
1563
1650
|
*
|
|
1564
1651
|
* @deprecated
|
|
@@ -1586,7 +1673,7 @@ const getNeonAuthEmailServer = (options) => (options.client ?? client).get({
|
|
|
1586
1673
|
/**
|
|
1587
1674
|
* Update email server configuration
|
|
1588
1675
|
*
|
|
1589
|
-
*
|
|
1676
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth/email_provider` instead. Removal scheduled for March 1, 2026.
|
|
1590
1677
|
*
|
|
1591
1678
|
*
|
|
1592
1679
|
* @deprecated
|
|
@@ -1766,7 +1853,7 @@ const updateNeonAuthEmailProvider = (options) => (options.client ?? client).patc
|
|
|
1766
1853
|
/**
|
|
1767
1854
|
* Delete integration with auth provider
|
|
1768
1855
|
*
|
|
1769
|
-
*
|
|
1856
|
+
* Deprecated. Use `/projects/{project_id}/branches/{branch_id}/auth` instead. Removal scheduled for March 1, 2026.
|
|
1770
1857
|
*
|
|
1771
1858
|
* @deprecated
|
|
1772
1859
|
*/
|
|
@@ -2382,7 +2469,7 @@ const restoreProjectBranch = (options) => (options.client ?? client).post({
|
|
|
2382
2469
|
/**
|
|
2383
2470
|
* Retrieve database schema
|
|
2384
2471
|
*
|
|
2385
|
-
* Retrieves the schema
|
|
2472
|
+
* Retrieves the database schema. Specify `lsn` or `timestamp` (not both) to read at a point in time; omit both to read from the database's head.
|
|
2386
2473
|
*/
|
|
2387
2474
|
const getProjectBranchSchema = (options) => (options.client ?? client).get({
|
|
2388
2475
|
security: [
|
|
@@ -2580,38 +2667,6 @@ const setDefaultProjectBranch = (options) => (options.client ?? client).post({
|
|
|
2580
2667
|
...options
|
|
2581
2668
|
});
|
|
2582
2669
|
/**
|
|
2583
|
-
* Recover a deleted branch
|
|
2584
|
-
*
|
|
2585
|
-
* Recovers a deleted branch within the 7-day deletion recovery period.
|
|
2586
|
-
* The branch must have been soft deleted and not yet permanently deleted.
|
|
2587
|
-
* Recovery restores the branch and its endpoints to an idle state.
|
|
2588
|
-
* Connection strings remain valid after recovery.
|
|
2589
|
-
* TTL branches become non-TTL branches after recovery.
|
|
2590
|
-
*
|
|
2591
|
-
* To list deleted branches available for recovery, use `GET /projects/{project_id}/branches?include_deleted=true`.
|
|
2592
|
-
*
|
|
2593
|
-
*/
|
|
2594
|
-
const recoverProjectBranch = (options) => (options.client ?? client).post({
|
|
2595
|
-
security: [
|
|
2596
|
-
{
|
|
2597
|
-
scheme: "bearer",
|
|
2598
|
-
type: "http"
|
|
2599
|
-
},
|
|
2600
|
-
{
|
|
2601
|
-
in: "cookie",
|
|
2602
|
-
name: "zenith",
|
|
2603
|
-
type: "apiKey"
|
|
2604
|
-
},
|
|
2605
|
-
{
|
|
2606
|
-
in: "cookie",
|
|
2607
|
-
name: "keycloak_token",
|
|
2608
|
-
type: "apiKey"
|
|
2609
|
-
}
|
|
2610
|
-
],
|
|
2611
|
-
url: "/projects/{project_id}/branches/{branch_id}/recover",
|
|
2612
|
-
...options
|
|
2613
|
-
});
|
|
2614
|
-
/**
|
|
2615
2670
|
* Finalize branch restore from snapshot
|
|
2616
2671
|
*
|
|
2617
2672
|
* Finalize the restore operation for a branch created from a snapshot.
|
|
@@ -2623,8 +2678,6 @@ const recoverProjectBranch = (options) => (options.client ?? client).post({
|
|
|
2623
2678
|
*
|
|
2624
2679
|
* This operation only applies to branches created using the `restoreSnapshot` endpoint with `finalize_restore: false`.
|
|
2625
2680
|
*
|
|
2626
|
-
* **Note**: This endpoint is currently in Beta.
|
|
2627
|
-
*
|
|
2628
2681
|
*/
|
|
2629
2682
|
const finalizeRestoreBranch = (options) => (options.client ?? client).post({
|
|
2630
2683
|
security: [
|
|
@@ -4076,7 +4129,7 @@ const getCurrentUserOrganizations = (options) => (options?.client ?? client).get
|
|
|
4076
4129
|
/**
|
|
4077
4130
|
* Transfer projects from personal account to organization
|
|
4078
4131
|
*
|
|
4079
|
-
*
|
|
4132
|
+
* Deprecated. Personal accounts have been migrated to organizations, so this operation no longer applies. Removal scheduled for July 1, 2026.
|
|
4080
4133
|
*
|
|
4081
4134
|
*
|
|
4082
4135
|
* @deprecated
|
|
@@ -4139,8 +4192,6 @@ const getAuthDetails = (options) => (options?.client ?? client).get({
|
|
|
4139
4192
|
* Creates a snapshot from the specified branch.
|
|
4140
4193
|
* This operation may initiate an asynchronous process.
|
|
4141
4194
|
*
|
|
4142
|
-
* **Note**: This endpoint is currently in Beta.
|
|
4143
|
-
*
|
|
4144
4195
|
*/
|
|
4145
4196
|
const createSnapshot = (options) => (options.client ?? client).post({
|
|
4146
4197
|
security: [
|
|
@@ -4168,8 +4219,6 @@ const createSnapshot = (options) => (options.client ?? client).post({
|
|
|
4168
4219
|
* Lists the snapshots for the specified project.
|
|
4169
4220
|
* Each snapshot represents a point-in-time backup of the project data.
|
|
4170
4221
|
*
|
|
4171
|
-
* **Note**: This endpoint is currently in Beta.
|
|
4172
|
-
*
|
|
4173
4222
|
*/
|
|
4174
4223
|
const listSnapshots = (options) => (options.client ?? client).get({
|
|
4175
4224
|
security: [
|
|
@@ -4196,8 +4245,6 @@ const listSnapshots = (options) => (options.client ?? client).get({
|
|
|
4196
4245
|
*
|
|
4197
4246
|
* Deletes the specified snapshot.
|
|
4198
4247
|
*
|
|
4199
|
-
* **Note**: This endpoint is currently in Beta.
|
|
4200
|
-
*
|
|
4201
4248
|
*/
|
|
4202
4249
|
const deleteSnapshot = (options) => (options.client ?? client).delete({
|
|
4203
4250
|
security: [
|
|
@@ -4224,8 +4271,6 @@ const deleteSnapshot = (options) => (options.client ?? client).delete({
|
|
|
4224
4271
|
*
|
|
4225
4272
|
* Updates the specified snapshot.
|
|
4226
4273
|
*
|
|
4227
|
-
* **Note**: This endpoint is currently in Beta.
|
|
4228
|
-
*
|
|
4229
4274
|
*/
|
|
4230
4275
|
const updateSnapshot = (options) => (options.client ?? client).patch({
|
|
4231
4276
|
security: [
|
|
@@ -4257,8 +4302,6 @@ const updateSnapshot = (options) => (options.client ?? client).patch({
|
|
|
4257
4302
|
* Restores the specified snapshot to a new branch,
|
|
4258
4303
|
* and optionally finalizes the restore operation to replace the original branch.
|
|
4259
4304
|
*
|
|
4260
|
-
* **Note**: This endpoint is currently in Beta.
|
|
4261
|
-
*
|
|
4262
4305
|
*/
|
|
4263
4306
|
const restoreSnapshot = (options) => (options.client ?? client).post({
|
|
4264
4307
|
security: [
|
|
@@ -4289,8 +4332,6 @@ const restoreSnapshot = (options) => (options.client ?? client).post({
|
|
|
4289
4332
|
*
|
|
4290
4333
|
* Returns the backup schedule for the specified branch, including the configured snapshot frequencies.
|
|
4291
4334
|
*
|
|
4292
|
-
* **Note**: This endpoint is currently in Beta.
|
|
4293
|
-
*
|
|
4294
4335
|
*/
|
|
4295
4336
|
const getSnapshotSchedule = (options) => (options.client ?? client).get({
|
|
4296
4337
|
security: [
|
|
@@ -4316,9 +4357,7 @@ const getSnapshotSchedule = (options) => (options.client ?? client).get({
|
|
|
4316
4357
|
* Update backup schedule
|
|
4317
4358
|
*
|
|
4318
4359
|
* Updates the backup schedule for the specified branch.
|
|
4319
|
-
* The schedule defines how often automatic snapshots are created (
|
|
4320
|
-
*
|
|
4321
|
-
* **Note**: This endpoint is currently in Beta.
|
|
4360
|
+
* The schedule defines how often automatic snapshots are created (for example, `daily` or `weekly`). Requires a paid plan.
|
|
4322
4361
|
*
|
|
4323
4362
|
*/
|
|
4324
4363
|
const setSnapshotSchedule = (options) => (options.client ?? client).put({
|
|
@@ -4348,10 +4387,10 @@ const setSnapshotSchedule = (options) => (options.client ?? client).put({
|
|
|
4348
4387
|
/**
|
|
4349
4388
|
* List buckets on the branch
|
|
4350
4389
|
*
|
|
4351
|
-
* Lists branchable object
|
|
4390
|
+
* Lists branchable object storage buckets visible on the specified branch,
|
|
4352
4391
|
* including those inherited from ancestor branches.
|
|
4353
4392
|
*
|
|
4354
|
-
* **Note**: This endpoint is currently in
|
|
4393
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4355
4394
|
*
|
|
4356
4395
|
*/
|
|
4357
4396
|
const listProjectBranchBuckets = (options) => (options.client ?? client).get({
|
|
@@ -4377,10 +4416,10 @@ const listProjectBranchBuckets = (options) => (options.client ?? client).get({
|
|
|
4377
4416
|
/**
|
|
4378
4417
|
* Create a bucket on the branch
|
|
4379
4418
|
*
|
|
4380
|
-
* Creates a new branchable object
|
|
4381
|
-
* Buckets are managed by the Neon Platform branchable
|
|
4419
|
+
* Creates a new branchable object storage bucket on the specified branch.
|
|
4420
|
+
* Buckets are managed by the Neon Platform branchable object storage service.
|
|
4382
4421
|
*
|
|
4383
|
-
* **Note**: This endpoint is currently in
|
|
4422
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4384
4423
|
*
|
|
4385
4424
|
*/
|
|
4386
4425
|
const createProjectBranchBucket = (options) => (options.client ?? client).post({
|
|
@@ -4412,7 +4451,7 @@ const createProjectBranchBucket = (options) => (options.client ?? client).post({
|
|
|
4412
4451
|
*
|
|
4413
4452
|
* Deletes the named bucket from the specified branch.
|
|
4414
4453
|
*
|
|
4415
|
-
* **Note**: This endpoint is currently in
|
|
4454
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4416
4455
|
*
|
|
4417
4456
|
*/
|
|
4418
4457
|
const deleteProjectBranchBucket = (options) => (options.client ?? client).delete({
|
|
@@ -4436,14 +4475,14 @@ const deleteProjectBranchBucket = (options) => (options.client ?? client).delete
|
|
|
4436
4475
|
...options
|
|
4437
4476
|
});
|
|
4438
4477
|
/**
|
|
4439
|
-
* Get branch storage state
|
|
4478
|
+
* Get branch object storage state
|
|
4440
4479
|
*
|
|
4441
|
-
* Returns whether branchable object
|
|
4442
|
-
* branch. A 200 response means the branch is registered in the storage
|
|
4480
|
+
* Returns whether branchable object storage is usable for the specified
|
|
4481
|
+
* branch. A 200 response means the branch is registered in the object storage
|
|
4443
4482
|
* service and the S3 data plane will accept requests for it. A 404
|
|
4444
|
-
* response includes a `reason` field indicating why storage is unavailable.
|
|
4483
|
+
* response includes a `reason` field indicating why object storage is unavailable.
|
|
4445
4484
|
*
|
|
4446
|
-
* **Note**: This endpoint is currently in
|
|
4485
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4447
4486
|
*
|
|
4448
4487
|
*/
|
|
4449
4488
|
const getProjectBranchStorage = (options) => (options.client ?? client).get({
|
|
@@ -4474,7 +4513,7 @@ const getProjectBranchStorage = (options) => (options.client ?? client).get({
|
|
|
4474
4513
|
* registered and this region serves the AI gateway. A 404 response
|
|
4475
4514
|
* includes a `reason` field indicating why the gateway is unavailable.
|
|
4476
4515
|
*
|
|
4477
|
-
* **Note**: This endpoint is currently in
|
|
4516
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4478
4517
|
*
|
|
4479
4518
|
*/
|
|
4480
4519
|
const getProjectBranchAiGateway = (options) => (options.client ?? client).get({
|
|
@@ -4498,6 +4537,129 @@ const getProjectBranchAiGateway = (options) => (options.client ?? client).get({
|
|
|
4498
4537
|
...options
|
|
4499
4538
|
});
|
|
4500
4539
|
/**
|
|
4540
|
+
* Query branch logs
|
|
4541
|
+
*
|
|
4542
|
+
* Returns logs emitted by services running on the specified branch,
|
|
4543
|
+
* ordered by timestamp according to `sort_order`.
|
|
4544
|
+
*
|
|
4545
|
+
* All supplied filters are combined with `AND`: a record is returned only
|
|
4546
|
+
* when it matches every filter. `minimum_severity` and `severity_text` are
|
|
4547
|
+
* independent filters, so setting both requires a record to clear the
|
|
4548
|
+
* severity floor *and* match the exact severity text.
|
|
4549
|
+
*
|
|
4550
|
+
* Supply `logql` instead of the structured filters to run a raw LogQL
|
|
4551
|
+
* expression. Combining it with any structured filter is rejected rather
|
|
4552
|
+
* than silently ignored; `limit`, `sort_order`, and the time window still
|
|
4553
|
+
* apply, because those bound the query rather than form part of the
|
|
4554
|
+
* expression.
|
|
4555
|
+
*
|
|
4556
|
+
* Give the window either as `since` — a duration ending at `end_time`, or
|
|
4557
|
+
* at the current time when `end_time` is omitted — or as an explicit
|
|
4558
|
+
* `start_time`. Supplying both is rejected.
|
|
4559
|
+
*
|
|
4560
|
+
* A single response holds at most 1,000 records. When `is_truncated` is
|
|
4561
|
+
* `true`, pass the returned `next_cursor` back as `cursor` to fetch the
|
|
4562
|
+
* next page, repeating the time range and every filter unchanged.
|
|
4563
|
+
*
|
|
4564
|
+
* If no time range is supplied, the query covers the previous hour. The
|
|
4565
|
+
* maximum supported time range is seven days. `end_time` is exclusive.
|
|
4566
|
+
*
|
|
4567
|
+
* **Note**: This endpoint is currently in Private Beta.
|
|
4568
|
+
*
|
|
4569
|
+
*/
|
|
4570
|
+
const queryProjectBranchLogs = (options) => (options.client ?? client).post({
|
|
4571
|
+
security: [
|
|
4572
|
+
{
|
|
4573
|
+
scheme: "bearer",
|
|
4574
|
+
type: "http"
|
|
4575
|
+
},
|
|
4576
|
+
{
|
|
4577
|
+
in: "cookie",
|
|
4578
|
+
name: "zenith",
|
|
4579
|
+
type: "apiKey"
|
|
4580
|
+
},
|
|
4581
|
+
{
|
|
4582
|
+
in: "cookie",
|
|
4583
|
+
name: "keycloak_token",
|
|
4584
|
+
type: "apiKey"
|
|
4585
|
+
}
|
|
4586
|
+
],
|
|
4587
|
+
url: "/projects/{project_id}/branches/{branch_id}/logs/query",
|
|
4588
|
+
...options,
|
|
4589
|
+
headers: {
|
|
4590
|
+
"Content-Type": "application/json",
|
|
4591
|
+
...options.headers
|
|
4592
|
+
}
|
|
4593
|
+
});
|
|
4594
|
+
/**
|
|
4595
|
+
* List branch log fields
|
|
4596
|
+
*
|
|
4597
|
+
* Lists the low-cardinality log fields observed on this branch whose
|
|
4598
|
+
* distinct values can be discovered with the log field-values endpoint.
|
|
4599
|
+
*
|
|
4600
|
+
* The set is computed per branch and grows as new fields are observed, so
|
|
4601
|
+
* treat it as data rather than a fixed list: discover a field here, then
|
|
4602
|
+
* pass it as `field_name` to the field-values endpoint.
|
|
4603
|
+
*
|
|
4604
|
+
* **Note**: This endpoint is currently in Private Beta.
|
|
4605
|
+
*
|
|
4606
|
+
*/
|
|
4607
|
+
const listProjectBranchLogFields = (options) => (options.client ?? client).get({
|
|
4608
|
+
security: [
|
|
4609
|
+
{
|
|
4610
|
+
scheme: "bearer",
|
|
4611
|
+
type: "http"
|
|
4612
|
+
},
|
|
4613
|
+
{
|
|
4614
|
+
in: "cookie",
|
|
4615
|
+
name: "zenith",
|
|
4616
|
+
type: "apiKey"
|
|
4617
|
+
},
|
|
4618
|
+
{
|
|
4619
|
+
in: "cookie",
|
|
4620
|
+
name: "keycloak_token",
|
|
4621
|
+
type: "apiKey"
|
|
4622
|
+
}
|
|
4623
|
+
],
|
|
4624
|
+
url: "/projects/{project_id}/branches/{branch_id}/logs/fields",
|
|
4625
|
+
...options
|
|
4626
|
+
});
|
|
4627
|
+
/**
|
|
4628
|
+
* List branch log field values
|
|
4629
|
+
*
|
|
4630
|
+
* Lists the distinct values observed for a low-cardinality log field in
|
|
4631
|
+
* the requested time range. Call the log fields endpoint first to learn
|
|
4632
|
+
* which `field_name` values this branch supports; a field that branch has
|
|
4633
|
+
* never emitted is rejected with `unknown_field`.
|
|
4634
|
+
*
|
|
4635
|
+
* Give the window either as `since` or as an explicit `start_time`;
|
|
4636
|
+
* supplying both is rejected. If neither is given, the previous six hours
|
|
4637
|
+
* are used. The maximum supported time range is seven days.
|
|
4638
|
+
*
|
|
4639
|
+
* **Note**: This endpoint is currently in Private Beta.
|
|
4640
|
+
*
|
|
4641
|
+
*/
|
|
4642
|
+
const listProjectBranchLogFieldValues = (options) => (options.client ?? client).get({
|
|
4643
|
+
security: [
|
|
4644
|
+
{
|
|
4645
|
+
scheme: "bearer",
|
|
4646
|
+
type: "http"
|
|
4647
|
+
},
|
|
4648
|
+
{
|
|
4649
|
+
in: "cookie",
|
|
4650
|
+
name: "zenith",
|
|
4651
|
+
type: "apiKey"
|
|
4652
|
+
},
|
|
4653
|
+
{
|
|
4654
|
+
in: "cookie",
|
|
4655
|
+
name: "keycloak_token",
|
|
4656
|
+
type: "apiKey"
|
|
4657
|
+
}
|
|
4658
|
+
],
|
|
4659
|
+
url: "/projects/{project_id}/branches/{branch_id}/logs/fields/{field_name}/values",
|
|
4660
|
+
...options
|
|
4661
|
+
});
|
|
4662
|
+
/**
|
|
4501
4663
|
* List objects in a bucket
|
|
4502
4664
|
*
|
|
4503
4665
|
* Lists objects visible in the named bucket on the specified branch,
|
|
@@ -4509,7 +4671,7 @@ const getProjectBranchAiGateway = (options) => (options.client ?? client).get({
|
|
|
4509
4671
|
* browser; keys that do not contain the delimiter after `prefix` are
|
|
4510
4672
|
* returned as `objects`.
|
|
4511
4673
|
*
|
|
4512
|
-
* **Note**: This endpoint is currently in
|
|
4674
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4513
4675
|
*
|
|
4514
4676
|
*/
|
|
4515
4677
|
const listProjectBranchBucketObjects = (options) => (options.client ?? client).get({
|
|
@@ -4538,7 +4700,7 @@ const listProjectBranchBucketObjects = (options) => (options.client ?? client).g
|
|
|
4538
4700
|
* Deletes the named object from the bucket on the specified branch.
|
|
4539
4701
|
* Served by the user's session (no customer S3 credentials required).
|
|
4540
4702
|
*
|
|
4541
|
-
* **Note**: This endpoint is currently in
|
|
4703
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4542
4704
|
*
|
|
4543
4705
|
*/
|
|
4544
4706
|
const deleteProjectBranchBucketObject = (options) => (options.client ?? client).delete({
|
|
@@ -4574,12 +4736,12 @@ const deleteProjectBranchBucketObject = (options) => (options.client ?? client).
|
|
|
4574
4736
|
*
|
|
4575
4737
|
* BINARY-STREAM EXCEPTION TO THE BUILD-GENERATED-TYPES RULE (#7029): the
|
|
4576
4738
|
* successful 200 body is the raw object stream, proxied verbatim from the
|
|
4577
|
-
* platform storage admin endpoint. It is modeled as an
|
|
4739
|
+
* platform object storage admin endpoint. It is modeled as an
|
|
4578
4740
|
* `application/octet-stream` binary body (not a JSON response schema) and
|
|
4579
4741
|
* is streamed without buffering the whole object in memory. Error
|
|
4580
4742
|
* responses still use the generated `GeneralError` shape.
|
|
4581
4743
|
*
|
|
4582
|
-
* **Note**: This endpoint is currently in
|
|
4744
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4583
4745
|
*
|
|
4584
4746
|
*/
|
|
4585
4747
|
const getProjectBranchBucketObject = (options) => (options.client ?? client).get({
|
|
@@ -4621,7 +4783,7 @@ const getProjectBranchBucketObject = (options) => (options.client ?? client).get
|
|
|
4621
4783
|
* inherited from an ancestor branch via copy-on-write (not materialized on
|
|
4622
4784
|
* this branch) are out of scope.
|
|
4623
4785
|
*
|
|
4624
|
-
* **Note**: This endpoint is currently in
|
|
4786
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4625
4787
|
*
|
|
4626
4788
|
*/
|
|
4627
4789
|
const deleteProjectBranchBucketObjectsByPrefix = (options) => (options.client ?? client).delete({
|
|
@@ -4663,7 +4825,7 @@ const deleteProjectBranchBucketObjectsByPrefix = (options) => (options.client ??
|
|
|
4663
4825
|
*
|
|
4664
4826
|
* Served by the user's session (no customer S3 credentials required).
|
|
4665
4827
|
*
|
|
4666
|
-
* **Note**: This endpoint is currently in
|
|
4828
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4667
4829
|
*
|
|
4668
4830
|
*/
|
|
4669
4831
|
const presignProjectBranchBucketObject = (options) => (options.client ?? client).post({
|
|
@@ -4696,7 +4858,7 @@ const presignProjectBranchBucketObject = (options) => (options.client ?? client)
|
|
|
4696
4858
|
* Returns metadata for customer-issued credentials on the branch.
|
|
4697
4859
|
* Secrets are never included.
|
|
4698
4860
|
*
|
|
4699
|
-
* **Note**: This endpoint is currently in
|
|
4861
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4700
4862
|
*
|
|
4701
4863
|
*/
|
|
4702
4864
|
const listCredentials = (options) => (options.client ?? client).get({
|
|
@@ -4726,7 +4888,7 @@ const listCredentials = (options) => (options.client ?? client).get({
|
|
|
4726
4888
|
* branch. The response carries `api_token` and `s3_secret_access_key`
|
|
4727
4889
|
* exactly once — they are not stored server-side.
|
|
4728
4890
|
*
|
|
4729
|
-
* **Note**: This endpoint is currently in
|
|
4891
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4730
4892
|
*
|
|
4731
4893
|
*/
|
|
4732
4894
|
const createCredential = (options) => (options.client ?? client).post({
|
|
@@ -4758,7 +4920,7 @@ const createCredential = (options) => (options.client ?? client).post({
|
|
|
4758
4920
|
*
|
|
4759
4921
|
* Soft-deletes the credential. Idempotent.
|
|
4760
4922
|
*
|
|
4761
|
-
* **Note**: This endpoint is currently in
|
|
4923
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4762
4924
|
*
|
|
4763
4925
|
*/
|
|
4764
4926
|
const revokeCredential = (options) => (options.client ?? client).delete({
|
|
@@ -4786,7 +4948,7 @@ const revokeCredential = (options) => (options.client ?? client).delete({
|
|
|
4786
4948
|
*
|
|
4787
4949
|
* Lists functions on the specified branch.
|
|
4788
4950
|
*
|
|
4789
|
-
* **Note**: This endpoint is currently in
|
|
4951
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4790
4952
|
*
|
|
4791
4953
|
*/
|
|
4792
4954
|
const listProjectBranchFunctions = (options) => (options.client ?? client).get({
|
|
@@ -4814,7 +4976,7 @@ const listProjectBranchFunctions = (options) => (options.client ?? client).get({
|
|
|
4814
4976
|
*
|
|
4815
4977
|
* Deletes the function identified by its slug.
|
|
4816
4978
|
*
|
|
4817
|
-
* **Note**: This endpoint is currently in
|
|
4979
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4818
4980
|
*
|
|
4819
4981
|
*/
|
|
4820
4982
|
const deleteProjectBranchFunction = (options) => (options.client ?? client).delete({
|
|
@@ -4842,7 +5004,7 @@ const deleteProjectBranchFunction = (options) => (options.client ?? client).dele
|
|
|
4842
5004
|
*
|
|
4843
5005
|
* Returns the function identified by its slug.
|
|
4844
5006
|
*
|
|
4845
|
-
* **Note**: This endpoint is currently in
|
|
5007
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4846
5008
|
*
|
|
4847
5009
|
*/
|
|
4848
5010
|
const getProjectBranchFunction = (options) => (options.client ?? client).get({
|
|
@@ -4878,7 +5040,7 @@ const getProjectBranchFunction = (options) => (options.client ?? client).get({
|
|
|
4878
5040
|
* branch: a branch forked before the rename keeps the name it had at
|
|
4879
5041
|
* fork time.
|
|
4880
5042
|
*
|
|
4881
|
-
* **Note**: This endpoint is currently in
|
|
5043
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4882
5044
|
*
|
|
4883
5045
|
*/
|
|
4884
5046
|
const updateProjectBranchFunction = (options) => (options.client ?? client).patch({
|
|
@@ -4914,7 +5076,7 @@ const updateProjectBranchFunction = (options) => (options.client ?? client).patc
|
|
|
4914
5076
|
* first deployment of a function must include zip. The newest deployment
|
|
4915
5077
|
* becomes active.
|
|
4916
5078
|
*
|
|
4917
|
-
* **Note**: This endpoint is currently in
|
|
5079
|
+
* **Note**: This endpoint is currently in Beta.
|
|
4918
5080
|
*
|
|
4919
5081
|
*/
|
|
4920
5082
|
const createProjectBranchFunctionDeployment = (options) => (options.client ?? client).post({
|
|
@@ -4943,6 +5105,6 @@ const createProjectBranchFunctionDeployment = (options) => (options.client ?? cl
|
|
|
4943
5105
|
}
|
|
4944
5106
|
});
|
|
4945
5107
|
//#endregion
|
|
4946
|
-
export { acceptProjectTransferRequest, addBranchNeonAuthOauthProvider, addBranchNeonAuthTrustedDomain, addNeonAuthDomainToRedirectUriWhitelist, addNeonAuthOauthProvider, addProjectJwks, assignOrganizationVpcEndpoint, assignProjectVpcEndpoint, countProjectBranches, createApiKey, createBranchNeonAuthNewUser, createCredential, createNeonAuth, createNeonAuthIntegration, createNeonAuthNewUser, createNeonAuthProviderSdkKeys, createOrgApiKey, createOrganizationInvitations, createProject, createProjectBranch, createProjectBranchAnonymized, createProjectBranchBucket, createProjectBranchDataApi, createProjectBranchDatabase, createProjectBranchFunctionDeployment, createProjectBranchRole, createProjectEndpoint, createProjectTransferRequest, createSnapshot, deleteBranchNeonAuthOauthProvider, deleteBranchNeonAuthTrustedDomain, deleteBranchNeonAuthUser, deleteNeonAuthDomainFromRedirectUriWhitelist, deleteNeonAuthIntegration, deleteNeonAuthOauthProvider, deleteNeonAuthUser, deleteOrganizationSpendingLimit, deleteOrganizationVpcEndpoint, deleteProject, deleteProjectBranch, deleteProjectBranchBucket, deleteProjectBranchBucketObject, deleteProjectBranchBucketObjectsByPrefix, deleteProjectBranchDataApi, deleteProjectBranchDatabase, deleteProjectBranchFunction, deleteProjectBranchRole, deleteProjectEndpoint, deleteProjectJwks, deleteProjectVpcEndpoint, deleteSnapshot, disableNeonAuth, finalizeRestoreBranch, getActiveRegions, getAnonymizedBranchStatus, getAuthDetails, getAvailablePreloadLibraries, getConnectionUri, getConsumptionHistoryPerBranchV2, getConsumptionHistoryPerProject, getConsumptionHistoryPerProjectV2, getCurrentUserInfo, getCurrentUserOrganizations, getMaskingRules, getNeonAuth, getNeonAuthAllowLocalhost, getNeonAuthEmailAndPasswordConfig, getNeonAuthEmailProvider, getNeonAuthEmailServer, getNeonAuthPhoneNumberPlugin, getNeonAuthPluginConfigs, getNeonAuthWebhookConfig, getOrganization, getOrganizationInvitations, getOrganizationMember, getOrganizationMembers, getOrganizationSpendingLimit, getOrganizationVpcEndpointDetails, getProject, getProjectAdvisorSecurityIssues, getProjectBranch, getProjectBranchAiGateway, getProjectBranchBucketObject, getProjectBranchDataApi, getProjectBranchDatabase, getProjectBranchFunction, getProjectBranchRole, getProjectBranchRolePassword, getProjectBranchSchema, getProjectBranchSchemaComparison, getProjectBranchStorage, getProjectEndpoint, getProjectJwks, getProjectOperation, getSnapshotSchedule, grantPermissionToProject, listApiKeys, listBranchNeonAuthOauthProviders, listBranchNeonAuthTrustedDomains, listCredentials, listNeonAuthIntegrations, listNeonAuthOauthProviders, listNeonAuthRedirectUriWhitelistDomains, listOrgApiKeys, listOrganizationVpcEndpoints, listOrganizationVpcEndpointsAllRegions, listProjectBranchBucketObjects, listProjectBranchBuckets, listProjectBranchDatabases, listProjectBranchEndpoints, listProjectBranchFunctions, listProjectBranchRoles, listProjectBranches, listProjectEndpoints, listProjectOperations, listProjectPermissions, listProjectVpcEndpoints, listProjects, listSharedProjects, listSnapshots, presignProjectBranchBucketObject,
|
|
5108
|
+
export { acceptProjectTransferRequest, addBranchNeonAuthOauthProvider, addBranchNeonAuthTrustedDomain, addNeonAuthDomainToRedirectUriWhitelist, addNeonAuthOauthProvider, addProjectJwks, assignOrganizationVpcEndpoint, assignProjectVpcEndpoint, countProjectBranches, createApiKey, createBranchNeonAuthNewUser, createCredential, createNeonAuth, createNeonAuthIntegration, createNeonAuthNewUser, createNeonAuthProviderSdkKeys, createOrgApiKey, createOrganizationInvitations, createProject, createProjectBranch, createProjectBranchAnonymized, createProjectBranchBucket, createProjectBranchDataApi, createProjectBranchDatabase, createProjectBranchFunctionDeployment, createProjectBranchRole, createProjectEndpoint, createProjectTransferRequest, createSnapshot, deleteBranchNeonAuthOauthProvider, deleteBranchNeonAuthTrustedDomain, deleteBranchNeonAuthUser, deleteNeonAuthDomainFromRedirectUriWhitelist, deleteNeonAuthIntegration, deleteNeonAuthOauthProvider, deleteNeonAuthUser, deleteOrganizationSpendingLimit, deleteOrganizationVpcEndpoint, deleteProject, deleteProjectBranch, deleteProjectBranchBucket, deleteProjectBranchBucketObject, deleteProjectBranchBucketObjectsByPrefix, deleteProjectBranchDataApi, deleteProjectBranchDatabase, deleteProjectBranchFunction, deleteProjectBranchRole, deleteProjectEndpoint, deleteProjectJwks, deleteProjectVpcEndpoint, deleteSnapshot, disableNeonAuth, finalizeRestoreBranch, getActiveRegions, getAnonymizedBranchStatus, getAuthDetails, getAvailablePreloadLibraries, getConnectionUri, getConsumptionHistoryPerBranchV2, getConsumptionHistoryPerProject, getConsumptionHistoryPerProjectV2, getCurrentUserInfo, getCurrentUserOrganizations, getMaskingRules, getNeonAuth, getNeonAuthAllowLocalhost, getNeonAuthEmailAndPasswordConfig, getNeonAuthEmailProvider, getNeonAuthEmailServer, getNeonAuthPhoneNumberPlugin, getNeonAuthPluginConfigs, getNeonAuthWebhookConfig, getOrganization, getOrganizationInvitations, getOrganizationMember, getOrganizationMembers, getOrganizationSpendingLimit, getOrganizationVpcEndpointDetails, getProject, getProjectAdvisorSecurityIssues, getProjectBranch, getProjectBranchAiGateway, getProjectBranchBucketObject, getProjectBranchDataApi, getProjectBranchDatabase, getProjectBranchFunction, getProjectBranchRole, getProjectBranchRolePassword, getProjectBranchSchema, getProjectBranchSchemaComparison, getProjectBranchStorage, getProjectEndpoint, getProjectJwks, getProjectOperation, getSnapshotSchedule, grantPermissionToProject, listApiKeys, listBranchNeonAuthOauthProviders, listBranchNeonAuthTrustedDomains, listCredentials, listNeonAuthIntegrations, listNeonAuthOauthProviders, listNeonAuthRedirectUriWhitelistDomains, listOrgApiKeys, listOrganizationVpcEndpoints, listOrganizationVpcEndpointsAllRegions, listProjectBranchBucketObjects, listProjectBranchBuckets, listProjectBranchDatabases, listProjectBranchEndpoints, listProjectBranchFunctions, listProjectBranchLogFieldValues, listProjectBranchLogFields, listProjectBranchRoles, listProjectBranches, listProjectEndpoints, listProjectMembers, listProjectOperations, listProjectPermissions, listProjectVpcEndpoints, listProjects, listSharedProjects, listSnapshots, presignProjectBranchBucketObject, queryProjectBranchLogs, recoverProject, removeOrganizationMember, removeProjectMemberRole, resetProjectBranchRolePassword, restartProjectEndpoint, restoreProjectBranch, restoreSnapshot, revokeApiKey, revokeCredential, revokeOrgApiKey, revokePermissionFromProject, sendNeonAuthTestEmail, setDefaultProjectBranch, setOrganizationSpendingLimit, setProjectMemberRole, setSnapshotSchedule, startAnonymization, startProjectEndpoint, suspendProjectEndpoint, transferNeonAuthProviderProject, transferProjectsFromOrgToOrg, transferProjectsFromUserToOrg, updateBranchNeonAuthOauthProvider, updateMaskingRules, updateNeonAuthAllowLocalhost, updateNeonAuthConfig, updateNeonAuthEmailAndPasswordConfig, updateNeonAuthEmailProvider, updateNeonAuthEmailServer, updateNeonAuthMagicLinkPlugin, updateNeonAuthOauthProvider, updateNeonAuthOrganizationPlugin, updateNeonAuthPhoneNumberPlugin, updateNeonAuthUserRole, updateNeonAuthWebhookConfig, updateOrganizationMember, updateProject, updateProjectBranch, updateProjectBranchDataApi, updateProjectBranchDatabase, updateProjectBranchFunction, updateProjectEndpoint, updateSnapshot };
|
|
4947
5109
|
|
|
4948
5110
|
//# sourceMappingURL=sdk.gen.js.map
|