vercel-api-js 1.15.0 → 1.16.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.
@@ -369,6 +369,66 @@ const resolveUrl = (url, queryParams = {})=>{
369
369
  });
370
370
  return data;
371
371
  }
372
+ /**
373
+ * @summary Get virtual model config
374
+ * @description Get a virtual model config by path slug
375
+ * @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
376
+ */ async function getAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config } = {}) {
377
+ const { client: request = client, ...requestConfig } = config ?? {};
378
+ if (!pathParams.vmcSlug) {
379
+ throw new Error(`Missing required path parameter: vmcSlug`);
380
+ }
381
+ const data = await request({
382
+ method: "GET",
383
+ url: `/v1/ai-gateway/virtual-model-configs/${pathParams.vmcSlug}`,
384
+ queryParams,
385
+ ...requestConfig,
386
+ headers: {
387
+ ...requestConfig.headers
388
+ }
389
+ });
390
+ return data;
391
+ }
392
+ /**
393
+ * @summary Update virtual model config
394
+ * @description Update a virtual model config by path slug
395
+ * @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
396
+ */ async function updateAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config } = {}) {
397
+ const { client: request = client, ...requestConfig } = config ?? {};
398
+ if (!pathParams.vmcSlug) {
399
+ throw new Error(`Missing required path parameter: vmcSlug`);
400
+ }
401
+ const data = await request({
402
+ method: "PATCH",
403
+ url: `/v1/ai-gateway/virtual-model-configs/${pathParams.vmcSlug}`,
404
+ queryParams,
405
+ ...requestConfig,
406
+ headers: {
407
+ ...requestConfig.headers
408
+ }
409
+ });
410
+ return data;
411
+ }
412
+ /**
413
+ * @summary Delete virtual model config
414
+ * @description Delete a virtual model config by path slug (soft delete)
415
+ * @link /v1/ai-gateway/virtual-model-configs/{vmcSlug}
416
+ */ async function deleteAiGatewayVirtualModelConfigBySlug({ pathParams, queryParams, config } = {}) {
417
+ const { client: request = client, ...requestConfig } = config ?? {};
418
+ if (!pathParams.vmcSlug) {
419
+ throw new Error(`Missing required path parameter: vmcSlug`);
420
+ }
421
+ const data = await request({
422
+ method: "DELETE",
423
+ url: `/v1/ai-gateway/virtual-model-configs/${pathParams.vmcSlug}`,
424
+ queryParams,
425
+ ...requestConfig,
426
+ headers: {
427
+ ...requestConfig.headers
428
+ }
429
+ });
430
+ return data;
431
+ }
372
432
  /**
373
433
  * @summary Create rule
374
434
  * @description Create a routing rule
@@ -1144,6 +1204,157 @@ const resolveUrl = (url, queryParams = {})=>{
1144
1204
  });
1145
1205
  return data;
1146
1206
  }
1207
+ /**
1208
+ * @summary Create a PrivateLink endpoint
1209
+ * @description Creates a PrivateLink endpoint for a project.
1210
+ * @link /v1/networking/privatelink/endpoints
1211
+ */ async function createPrivateLinkEndpoint({ queryParams, config } = {}) {
1212
+ const { client: request = client, ...requestConfig } = config ?? {};
1213
+ const data = await request({
1214
+ method: "POST",
1215
+ url: `/v1/networking/privatelink/endpoints`,
1216
+ queryParams,
1217
+ ...requestConfig,
1218
+ headers: {
1219
+ ...requestConfig.headers
1220
+ }
1221
+ });
1222
+ return data;
1223
+ }
1224
+ /**
1225
+ * @summary List PrivateLink endpoints
1226
+ * @description Lists all PrivateLink endpoints for a project.
1227
+ * @link /v1/networking/privatelink/endpoints
1228
+ */ async function listPrivateLinkEndpoints({ queryParams, config } = {}) {
1229
+ const { client: request = client, ...requestConfig } = config ?? {};
1230
+ const data = await request({
1231
+ method: "GET",
1232
+ url: `/v1/networking/privatelink/endpoints`,
1233
+ queryParams,
1234
+ ...requestConfig,
1235
+ headers: {
1236
+ ...requestConfig.headers
1237
+ }
1238
+ });
1239
+ return data;
1240
+ }
1241
+ /**
1242
+ * @summary Read a PrivateLink endpoint
1243
+ * @description Reads a single PrivateLink endpoint.
1244
+ * @link /v1/networking/privatelink/endpoints/{endpointId}
1245
+ */ async function readPrivateLinkEndpoint({ pathParams, queryParams, config } = {}) {
1246
+ const { client: request = client, ...requestConfig } = config ?? {};
1247
+ if (!pathParams.endpointId) {
1248
+ throw new Error(`Missing required path parameter: endpointId`);
1249
+ }
1250
+ const data = await request({
1251
+ method: "GET",
1252
+ url: `/v1/networking/privatelink/endpoints/${pathParams.endpointId}`,
1253
+ queryParams,
1254
+ ...requestConfig,
1255
+ headers: {
1256
+ ...requestConfig.headers
1257
+ }
1258
+ });
1259
+ return data;
1260
+ }
1261
+ /**
1262
+ * @summary Delete a PrivateLink endpoint
1263
+ * @description Deletes a PrivateLink endpoint.
1264
+ * @link /v1/networking/privatelink/endpoints/{endpointId}
1265
+ */ async function deletePrivateLinkEndpoint({ pathParams, queryParams, config } = {}) {
1266
+ const { client: request = client, ...requestConfig } = config ?? {};
1267
+ if (!pathParams.endpointId) {
1268
+ throw new Error(`Missing required path parameter: endpointId`);
1269
+ }
1270
+ const data = await request({
1271
+ method: "DELETE",
1272
+ url: `/v1/networking/privatelink/endpoints/${pathParams.endpointId}`,
1273
+ queryParams,
1274
+ ...requestConfig,
1275
+ headers: {
1276
+ ...requestConfig.headers
1277
+ }
1278
+ });
1279
+ return data;
1280
+ }
1281
+ /**
1282
+ * @summary Update a PrivateLink endpoint
1283
+ * @description Updates a PrivateLink endpoint (name, privateDns).
1284
+ * @link /v1/networking/privatelink/endpoints/{endpointId}
1285
+ */ async function updatePrivateLinkEndpoint({ pathParams, queryParams, config } = {}) {
1286
+ const { client: request = client, ...requestConfig } = config ?? {};
1287
+ if (!pathParams.endpointId) {
1288
+ throw new Error(`Missing required path parameter: endpointId`);
1289
+ }
1290
+ const data = await request({
1291
+ method: "PATCH",
1292
+ url: `/v1/networking/privatelink/endpoints/${pathParams.endpointId}`,
1293
+ queryParams,
1294
+ ...requestConfig,
1295
+ headers: {
1296
+ ...requestConfig.headers
1297
+ }
1298
+ });
1299
+ return data;
1300
+ }
1301
+ /**
1302
+ * @summary List connectors
1303
+ * @description List connectors that belong to a team.
1304
+ * @link /v2/connect/connectors
1305
+ */ async function listConnectors({ queryParams, config } = {}) {
1306
+ const { client: request = client, ...requestConfig } = config ?? {};
1307
+ const data = await request({
1308
+ method: "GET",
1309
+ url: `/v2/connect/connectors`,
1310
+ queryParams,
1311
+ ...requestConfig,
1312
+ headers: {
1313
+ ...requestConfig.headers
1314
+ }
1315
+ });
1316
+ return data;
1317
+ }
1318
+ /**
1319
+ * @summary Get a connector
1320
+ * @description Get the connector by ID. Accepts a dashboard/team requester or a deployment's project OIDC token; project requesters may only read connectors linked to their project and environment.
1321
+ * @link /v1/connect/connectors/{connector}
1322
+ */ async function getConnector({ pathParams, queryParams, config } = {}) {
1323
+ const { client: request = client, ...requestConfig } = config ?? {};
1324
+ if (!pathParams.connector) {
1325
+ throw new Error(`Missing required path parameter: connector`);
1326
+ }
1327
+ const data = await request({
1328
+ method: "GET",
1329
+ url: `/v1/connect/connectors/${pathParams.connector}`,
1330
+ queryParams,
1331
+ ...requestConfig,
1332
+ headers: {
1333
+ ...requestConfig.headers
1334
+ }
1335
+ });
1336
+ return data;
1337
+ }
1338
+ /**
1339
+ * @summary Delete a connector
1340
+ * @description Delete a connector, its project connections, and its installation records.
1341
+ * @link /v1/connect/connectors/{connector}
1342
+ */ async function deleteConnector({ pathParams, queryParams, config } = {}) {
1343
+ const { client: request = client, ...requestConfig } = config ?? {};
1344
+ if (!pathParams.connector) {
1345
+ throw new Error(`Missing required path parameter: connector`);
1346
+ }
1347
+ const data = await request({
1348
+ method: "DELETE",
1349
+ url: `/v1/connect/connectors/${pathParams.connector}`,
1350
+ queryParams,
1351
+ ...requestConfig,
1352
+ headers: {
1353
+ ...requestConfig.headers
1354
+ }
1355
+ });
1356
+ return data;
1357
+ }
1147
1358
  /**
1148
1359
  * @summary Create a connector
1149
1360
  * @description Create a connector and optionally link it to a project. Use `type` with complete provider data, or use `service` with `connectionMethod` so Connect can supply the type, endpoints, templates, and defaults.
@@ -1161,6 +1372,155 @@ const resolveUrl = (url, queryParams = {})=>{
1161
1372
  });
1162
1373
  return data;
1163
1374
  }
1375
+ /**
1376
+ * @summary Update a connector
1377
+ * @description Update a connector and return the connector with any service-side update signals that the caller must handle.
1378
+ * @link /v2/connect/connectors/{connector}
1379
+ */ async function updateConnector({ pathParams, queryParams, config } = {}) {
1380
+ const { client: request = client, ...requestConfig } = config ?? {};
1381
+ if (!pathParams.connector) {
1382
+ throw new Error(`Missing required path parameter: connector`);
1383
+ }
1384
+ const data = await request({
1385
+ method: "PATCH",
1386
+ url: `/v2/connect/connectors/${pathParams.connector}`,
1387
+ queryParams,
1388
+ ...requestConfig,
1389
+ headers: {
1390
+ ...requestConfig.headers
1391
+ }
1392
+ });
1393
+ return data;
1394
+ }
1395
+ /**
1396
+ * @summary Update connector trigger destinations
1397
+ * @description Replace the full set of destinations that receive trigger requests for a connector.
1398
+ * @link /v1/connect/connectors/{connector}/trigger-destinations
1399
+ */ async function replaceConnectorTriggerDestinations({ pathParams, queryParams, config } = {}) {
1400
+ const { client: request = client, ...requestConfig } = config ?? {};
1401
+ if (!pathParams.connector) {
1402
+ throw new Error(`Missing required path parameter: connector`);
1403
+ }
1404
+ const data = await request({
1405
+ method: "PATCH",
1406
+ url: `/v1/connect/connectors/${pathParams.connector}/trigger-destinations`,
1407
+ queryParams,
1408
+ ...requestConfig,
1409
+ headers: {
1410
+ ...requestConfig.headers
1411
+ }
1412
+ });
1413
+ return data;
1414
+ }
1415
+ /**
1416
+ * @summary List projects for a connector
1417
+ * @description List the projects connected to a connector and the environments where each connection is available.
1418
+ * @link /v2/connect/connectors/{connector}/projects
1419
+ */ async function listConnectorProjectConnections({ pathParams, queryParams, config } = {}) {
1420
+ const { client: request = client, ...requestConfig } = config ?? {};
1421
+ if (!pathParams.connector) {
1422
+ throw new Error(`Missing required path parameter: connector`);
1423
+ }
1424
+ const data = await request({
1425
+ method: "GET",
1426
+ url: `/v2/connect/connectors/${pathParams.connector}/projects`,
1427
+ queryParams,
1428
+ ...requestConfig,
1429
+ headers: {
1430
+ ...requestConfig.headers
1431
+ }
1432
+ });
1433
+ return data;
1434
+ }
1435
+ /**
1436
+ * @summary Get a connector project connection
1437
+ * @description Get the configuration that connects a connector to a project.
1438
+ * @link /v1/connect/connectors/{connector}/projects/{projectId}
1439
+ */ async function getConnectorProjectConnection({ pathParams, queryParams, config } = {}) {
1440
+ const { client: request = client, ...requestConfig } = config ?? {};
1441
+ if (!pathParams.connector) {
1442
+ throw new Error(`Missing required path parameter: connector`);
1443
+ }
1444
+ if (!pathParams.projectId) {
1445
+ throw new Error(`Missing required path parameter: projectId`);
1446
+ }
1447
+ const data = await request({
1448
+ method: "GET",
1449
+ url: `/v1/connect/connectors/${pathParams.connector}/projects/${pathParams.projectId}`,
1450
+ queryParams,
1451
+ ...requestConfig,
1452
+ headers: {
1453
+ ...requestConfig.headers
1454
+ }
1455
+ });
1456
+ return data;
1457
+ }
1458
+ /**
1459
+ * @summary Create or update a connector project connection
1460
+ * @description Connect a connector to a project, or replace the environments on an existing project connection.
1461
+ * @link /v1/connect/connectors/{connector}/projects/{projectId}
1462
+ */ async function upsertConnectorProjectConnection({ pathParams, queryParams, config } = {}) {
1463
+ const { client: request = client, ...requestConfig } = config ?? {};
1464
+ if (!pathParams.connector) {
1465
+ throw new Error(`Missing required path parameter: connector`);
1466
+ }
1467
+ if (!pathParams.projectId) {
1468
+ throw new Error(`Missing required path parameter: projectId`);
1469
+ }
1470
+ const data = await request({
1471
+ method: "POST",
1472
+ url: `/v1/connect/connectors/${pathParams.connector}/projects/${pathParams.projectId}`,
1473
+ queryParams,
1474
+ ...requestConfig,
1475
+ headers: {
1476
+ ...requestConfig.headers
1477
+ }
1478
+ });
1479
+ return data;
1480
+ }
1481
+ /**
1482
+ * @summary Disconnect a connector from a project
1483
+ * @description Disconnect a connector from a project.
1484
+ * @link /v1/connect/connectors/{connector}/projects/{projectId}
1485
+ */ async function deleteConnectorProjectConnection({ pathParams, queryParams, config } = {}) {
1486
+ const { client: request = client, ...requestConfig } = config ?? {};
1487
+ if (!pathParams.connector) {
1488
+ throw new Error(`Missing required path parameter: connector`);
1489
+ }
1490
+ if (!pathParams.projectId) {
1491
+ throw new Error(`Missing required path parameter: projectId`);
1492
+ }
1493
+ const data = await request({
1494
+ method: "DELETE",
1495
+ url: `/v1/connect/connectors/${pathParams.connector}/projects/${pathParams.projectId}`,
1496
+ queryParams,
1497
+ ...requestConfig,
1498
+ headers: {
1499
+ ...requestConfig.headers
1500
+ }
1501
+ });
1502
+ return data;
1503
+ }
1504
+ /**
1505
+ * @summary List connectors for a project
1506
+ * @description List the connectors connected to a project and the environments where each connection is available.
1507
+ * @link /v2/connect/projects/{projectId}/connectors
1508
+ */ async function listProjectConnectorConnections({ pathParams, queryParams, config } = {}) {
1509
+ const { client: request = client, ...requestConfig } = config ?? {};
1510
+ if (!pathParams.projectId) {
1511
+ throw new Error(`Missing required path parameter: projectId`);
1512
+ }
1513
+ const data = await request({
1514
+ method: "GET",
1515
+ url: `/v2/connect/projects/${pathParams.projectId}/connectors`,
1516
+ queryParams,
1517
+ ...requestConfig,
1518
+ headers: {
1519
+ ...requestConfig.headers
1520
+ }
1521
+ });
1522
+ return data;
1523
+ }
1164
1524
  /**
1165
1525
  * @summary Get a Connect token
1166
1526
  * @description Get an access token for a connector identified by the path parameter and scoped to the requester.
@@ -5531,7 +5891,7 @@ const resolveUrl = (url, queryParams = {})=>{
5531
5891
  * @summary List sandboxes
5532
5892
  * @description Retrieves a paginated list of named sandboxes belonging to a specific project. Results can be sorted by creation time or name, and optionally filtered by name prefix or status.
5533
5893
  * @link /v2/sandboxes
5534
- */ async function listSandboxes({ queryParams, config } = {}) {
5894
+ */ async function listNamedSandboxes({ queryParams, config } = {}) {
5535
5895
  const { client: request = client, ...requestConfig } = config ?? {};
5536
5896
  const data = await request({
5537
5897
  method: "GET",
@@ -7920,6 +8280,9 @@ const operationsByPath = {
7920
8280
  "PATCH /v1/ai-gateway/virtual-model-configs": updateAiGatewayVirtualModelConfig,
7921
8281
  "DELETE /v1/ai-gateway/virtual-model-configs": deleteAiGatewayVirtualModelConfig,
7922
8282
  "GET /v1/ai-gateway/virtual-model-configs/list": listAiGatewayVirtualModelConfigs,
8283
+ "GET /v1/ai-gateway/virtual-model-configs/{vmcSlug}": getAiGatewayVirtualModelConfigBySlug,
8284
+ "PATCH /v1/ai-gateway/virtual-model-configs/{vmcSlug}": updateAiGatewayVirtualModelConfigBySlug,
8285
+ "DELETE /v1/ai-gateway/virtual-model-configs/{vmcSlug}": deleteAiGatewayVirtualModelConfigBySlug,
7923
8286
  "POST /v1/ai-gateway/rules": createAiGatewayRule,
7924
8287
  "GET /v1/ai-gateway/rules": listAiGatewayRules,
7925
8288
  "PATCH /v1/ai-gateway/rules": updateAiGatewayRule,
@@ -7960,7 +8323,22 @@ const operationsByPath = {
7960
8323
  "DELETE /v1/connect/networks/{networkId}": deleteNetwork,
7961
8324
  "PATCH /v1/connect/networks/{networkId}": updateNetwork,
7962
8325
  "GET /v1/connect/networks/{networkId}": readNetwork,
8326
+ "POST /v1/networking/privatelink/endpoints": createPrivateLinkEndpoint,
8327
+ "GET /v1/networking/privatelink/endpoints": listPrivateLinkEndpoints,
8328
+ "GET /v1/networking/privatelink/endpoints/{endpointId}": readPrivateLinkEndpoint,
8329
+ "DELETE /v1/networking/privatelink/endpoints/{endpointId}": deletePrivateLinkEndpoint,
8330
+ "PATCH /v1/networking/privatelink/endpoints/{endpointId}": updatePrivateLinkEndpoint,
8331
+ "GET /v2/connect/connectors": listConnectors,
8332
+ "GET /v1/connect/connectors/{connector}": getConnector,
8333
+ "DELETE /v1/connect/connectors/{connector}": deleteConnector,
7963
8334
  "POST /v1/connect/connectors": createConnector,
8335
+ "PATCH /v2/connect/connectors/{connector}": updateConnector,
8336
+ "PATCH /v1/connect/connectors/{connector}/trigger-destinations": replaceConnectorTriggerDestinations,
8337
+ "GET /v2/connect/connectors/{connector}/projects": listConnectorProjectConnections,
8338
+ "GET /v1/connect/connectors/{connector}/projects/{projectId}": getConnectorProjectConnection,
8339
+ "POST /v1/connect/connectors/{connector}/projects/{projectId}": upsertConnectorProjectConnection,
8340
+ "DELETE /v1/connect/connectors/{connector}/projects/{projectId}": deleteConnectorProjectConnection,
8341
+ "GET /v2/connect/projects/{projectId}/connectors": listProjectConnectorConnections,
7964
8342
  "POST /v1/connect/token/{connector}": getConnectorToken,
7965
8343
  "POST /v1/connect/authorize/{connector}": createConnectorAuthorizationRequest,
7966
8344
  "GET /v3/deployments/{idOrUrl}/events": getDeploymentEvents,
@@ -8179,7 +8557,7 @@ const operationsByPath = {
8179
8557
  "GET /v1/projects/{projectId}/promote/aliases": listPromoteAliases,
8180
8558
  "POST /v1/projects/{projectId}/pause": pauseProject,
8181
8559
  "POST /v1/projects/{projectId}/unpause": unpauseProject,
8182
- "GET /v2/sandboxes": listSandboxes,
8560
+ "GET /v2/sandboxes": listNamedSandboxes,
8183
8561
  "POST /v2/sandboxes": createSandboxesV2,
8184
8562
  "GET /v2/sandboxes/drives": listDrives,
8185
8563
  "POST /v2/sandboxes/drives/{name}": getOrCreateDrive,
@@ -8319,7 +8697,10 @@ const operationsByTag = {
8319
8697
  getAiGatewayVirtualModelConfig,
8320
8698
  updateAiGatewayVirtualModelConfig,
8321
8699
  deleteAiGatewayVirtualModelConfig,
8322
- listAiGatewayVirtualModelConfigs
8700
+ listAiGatewayVirtualModelConfigs,
8701
+ getAiGatewayVirtualModelConfigBySlug,
8702
+ updateAiGatewayVirtualModelConfigBySlug,
8703
+ deleteAiGatewayVirtualModelConfigBySlug
8323
8704
  },
8324
8705
  aiGateway: {
8325
8706
  createAiGatewayRule,
@@ -8374,10 +8755,25 @@ const operationsByTag = {
8374
8755
  deleteNetwork,
8375
8756
  updateNetwork,
8376
8757
  readNetwork,
8758
+ createPrivateLinkEndpoint,
8759
+ listPrivateLinkEndpoints,
8760
+ readPrivateLinkEndpoint,
8761
+ deletePrivateLinkEndpoint,
8762
+ updatePrivateLinkEndpoint,
8377
8763
  updateStaticIps
8378
8764
  },
8379
8765
  connect: {
8766
+ listConnectors,
8767
+ getConnector,
8768
+ deleteConnector,
8380
8769
  createConnector,
8770
+ updateConnector,
8771
+ replaceConnectorTriggerDestinations,
8772
+ listConnectorProjectConnections,
8773
+ getConnectorProjectConnection,
8774
+ upsertConnectorProjectConnection,
8775
+ deleteConnectorProjectConnection,
8776
+ listProjectConnectorConnections,
8381
8777
  getConnectorToken,
8382
8778
  createConnectorAuthorizationRequest
8383
8779
  },
@@ -8652,7 +9048,7 @@ const operationsByTag = {
8652
9048
  completeRollingRelease
8653
9049
  },
8654
9050
  sandboxes: {
8655
- listSandboxes,
9051
+ listNamedSandboxes,
8656
9052
  createSandboxesV2,
8657
9053
  listDrives,
8658
9054
  getOrCreateDrive,
@@ -8804,13 +9200,16 @@ const tagDictionary = {
8804
9200
  ],
8805
9201
  GET: [
8806
9202
  "getAiGatewayVirtualModelConfig",
8807
- "listAiGatewayVirtualModelConfigs"
9203
+ "listAiGatewayVirtualModelConfigs",
9204
+ "getAiGatewayVirtualModelConfigBySlug"
8808
9205
  ],
8809
9206
  PATCH: [
8810
- "updateAiGatewayVirtualModelConfig"
9207
+ "updateAiGatewayVirtualModelConfig",
9208
+ "updateAiGatewayVirtualModelConfigBySlug"
8811
9209
  ],
8812
9210
  DELETE: [
8813
- "deleteAiGatewayVirtualModelConfig"
9211
+ "deleteAiGatewayVirtualModelConfig",
9212
+ "deleteAiGatewayVirtualModelConfigBySlug"
8814
9213
  ]
8815
9214
  },
8816
9215
  aiGateway: {
@@ -8907,24 +9306,45 @@ const tagDictionary = {
8907
9306
  networking: {
8908
9307
  GET: [
8909
9308
  "listNetworks",
8910
- "readNetwork"
9309
+ "readNetwork",
9310
+ "listPrivateLinkEndpoints",
9311
+ "readPrivateLinkEndpoint"
8911
9312
  ],
8912
9313
  POST: [
8913
- "createNetwork"
9314
+ "createNetwork",
9315
+ "createPrivateLinkEndpoint"
8914
9316
  ],
8915
9317
  DELETE: [
8916
- "deleteNetwork"
9318
+ "deleteNetwork",
9319
+ "deletePrivateLinkEndpoint"
8917
9320
  ],
8918
9321
  PATCH: [
8919
9322
  "updateNetwork",
9323
+ "updatePrivateLinkEndpoint",
8920
9324
  "updateStaticIps"
8921
9325
  ]
8922
9326
  },
8923
9327
  connect: {
9328
+ GET: [
9329
+ "listConnectors",
9330
+ "getConnector",
9331
+ "listConnectorProjectConnections",
9332
+ "getConnectorProjectConnection",
9333
+ "listProjectConnectorConnections"
9334
+ ],
9335
+ DELETE: [
9336
+ "deleteConnector",
9337
+ "deleteConnectorProjectConnection"
9338
+ ],
8924
9339
  POST: [
8925
9340
  "createConnector",
9341
+ "upsertConnectorProjectConnection",
8926
9342
  "getConnectorToken",
8927
9343
  "createConnectorAuthorizationRequest"
9344
+ ],
9345
+ PATCH: [
9346
+ "updateConnector",
9347
+ "replaceConnectorTriggerDestinations"
8928
9348
  ]
8929
9349
  },
8930
9350
  deployments: {
@@ -9353,7 +9773,7 @@ const tagDictionary = {
9353
9773
  },
9354
9774
  sandboxes: {
9355
9775
  GET: [
9356
- "listSandboxes",
9776
+ "listNamedSandboxes",
9357
9777
  "listDrives",
9358
9778
  "listSessionSnapshots",
9359
9779
  "getSessionSnapshot",
@@ -9597,6 +10017,7 @@ exports.createMicrofrontendsGroupWithApplications = createMicrofrontendsGroupWit
9597
10017
  exports.createNetwork = createNetwork;
9598
10018
  exports.createObservabilityQuery = createObservabilityQuery;
9599
10019
  exports.createOrTransferDomain = createOrTransferDomain;
10020
+ exports.createPrivateLinkEndpoint = createPrivateLinkEndpoint;
9600
10021
  exports.createProject = createProject;
9601
10022
  exports.createProjectCheck = createProjectCheck;
9602
10023
  exports.createProjectEnv = createProjectEnv;
@@ -9626,6 +10047,7 @@ exports.deleteAccessGroup = deleteAccessGroup;
9626
10047
  exports.deleteAccessGroupProject = deleteAccessGroupProject;
9627
10048
  exports.deleteAiGatewayRule = deleteAiGatewayRule;
9628
10049
  exports.deleteAiGatewayVirtualModelConfig = deleteAiGatewayVirtualModelConfig;
10050
+ exports.deleteAiGatewayVirtualModelConfigBySlug = deleteAiGatewayVirtualModelConfigBySlug;
9629
10051
  exports.deleteAlias = deleteAlias;
9630
10052
  exports.deleteAllArtifacts = deleteAllArtifacts;
9631
10053
  exports.deleteAuthToken = deleteAuthToken;
@@ -9634,6 +10056,8 @@ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = delete
9634
10056
  exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
9635
10057
  exports.deleteConfigurableLogDrain = deleteConfigurableLogDrain;
9636
10058
  exports.deleteConfiguration = deleteConfiguration;
10059
+ exports.deleteConnector = deleteConnector;
10060
+ exports.deleteConnectorProjectConnection = deleteConnectorProjectConnection;
9637
10061
  exports.deleteDeployment = deleteDeployment;
9638
10062
  exports.deleteDomain = deleteDomain;
9639
10063
  exports.deleteDrain = deleteDrain;
@@ -9650,6 +10074,7 @@ exports.deleteKmsIssuer = deleteKmsIssuer;
9650
10074
  exports.deleteKmsIssuerPolicy = deleteKmsIssuerPolicy;
9651
10075
  exports.deleteMicrofrontendsGroup = deleteMicrofrontendsGroup;
9652
10076
  exports.deleteNetwork = deleteNetwork;
10077
+ exports.deletePrivateLinkEndpoint = deletePrivateLinkEndpoint;
9653
10078
  exports.deleteProject = deleteProject;
9654
10079
  exports.deleteProjectCheck = deleteProjectCheck;
9655
10080
  exports.deleteRedirects = deleteRedirects;
@@ -9679,6 +10104,7 @@ exports.generateRoute = generateRoute;
9679
10104
  exports.getAccountInfo = getAccountInfo;
9680
10105
  exports.getActiveAttackStatus = getActiveAttackStatus;
9681
10106
  exports.getAiGatewayVirtualModelConfig = getAiGatewayVirtualModelConfig;
10107
+ exports.getAiGatewayVirtualModelConfigBySlug = getAiGatewayVirtualModelConfigBySlug;
9682
10108
  exports.getAlias = getAlias;
9683
10109
  exports.getAllChecks = getAllChecks;
9684
10110
  exports.getAllLogDrains = getAllLogDrains;
@@ -9698,6 +10124,8 @@ exports.getConfigurableLogDrain = getConfigurableLogDrain;
9698
10124
  exports.getConfiguration = getConfiguration;
9699
10125
  exports.getConfigurationProducts = getConfigurationProducts;
9700
10126
  exports.getConfigurations = getConfigurations;
10127
+ exports.getConnector = getConnector;
10128
+ exports.getConnectorProjectConnection = getConnectorProjectConnection;
9701
10129
  exports.getConnectorToken = getConnectorToken;
9702
10130
  exports.getContactInfoSchema = getContactInfoSchema;
9703
10131
  exports.getCustomEnvironment = getCustomEnvironment;
@@ -9808,6 +10236,8 @@ exports.listAliases = listAliases;
9808
10236
  exports.listAuthTokens = listAuthTokens;
9809
10237
  exports.listBillingCharges = listBillingCharges;
9810
10238
  exports.listCheckRuns = listCheckRuns;
10239
+ exports.listConnectorProjectConnections = listConnectorProjectConnections;
10240
+ exports.listConnectors = listConnectors;
9811
10241
  exports.listContractCommitments = listContractCommitments;
9812
10242
  exports.listDeploymentAliases = listDeploymentAliases;
9813
10243
  exports.listDeploymentCheckRuns = listDeploymentCheckRuns;
@@ -9819,14 +10249,16 @@ exports.listFlagVersions = listFlagVersions;
9819
10249
  exports.listFlags = listFlags;
9820
10250
  exports.listFlagsV2 = listFlagsV2;
9821
10251
  exports.listKmsIssuers = listKmsIssuers;
10252
+ exports.listNamedSandboxes = listNamedSandboxes;
9822
10253
  exports.listNetworks = listNetworks;
10254
+ exports.listPrivateLinkEndpoints = listPrivateLinkEndpoints;
9823
10255
  exports.listProjectChecks = listProjectChecks;
10256
+ exports.listProjectConnectorConnections = listProjectConnectorConnections;
9824
10257
  exports.listPromoteAliases = listPromoteAliases;
9825
10258
  exports.listRepositories = listRepositories;
9826
10259
  exports.listRepositoryImages = listRepositoryImages;
9827
10260
  exports.listRepositoryPermissions = listRepositoryPermissions;
9828
10261
  exports.listRepositoryTags = listRepositoryTags;
9829
- exports.listSandboxes = listSandboxes;
9830
10262
  exports.listSessionCommands = listSessionCommands;
9831
10263
  exports.listSessionSnapshots = listSessionSnapshots;
9832
10264
  exports.listSessions = listSessions;
@@ -9849,6 +10281,7 @@ exports.putFirewallConfig = putFirewallConfig;
9849
10281
  exports.readAccessGroup = readAccessGroup;
9850
10282
  exports.readAccessGroupProject = readAccessGroupProject;
9851
10283
  exports.readNetwork = readNetwork;
10284
+ exports.readPrivateLinkEndpoint = readPrivateLinkEndpoint;
9852
10285
  exports.readSessionFile = readSessionFile;
9853
10286
  exports.recordEvents = recordEvents;
9854
10287
  exports.removeBypassIp = removeBypassIp;
@@ -9863,6 +10296,7 @@ exports.removeTeamMember = removeTeamMember;
9863
10296
  exports.renewDomain = renewDomain;
9864
10297
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
9865
10298
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
10299
+ exports.replaceConnectorTriggerDestinations = replaceConnectorTriggerDestinations;
9866
10300
  exports.replaceDomainsByDomainRecords = replaceDomainsByDomainRecords;
9867
10301
  exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
9868
10302
  exports.requestAccessToTeam = requestAccessToTeam;
@@ -9896,9 +10330,11 @@ exports.updateAccessGroup = updateAccessGroup;
9896
10330
  exports.updateAccessGroupProject = updateAccessGroupProject;
9897
10331
  exports.updateAiGatewayRule = updateAiGatewayRule;
9898
10332
  exports.updateAiGatewayVirtualModelConfig = updateAiGatewayVirtualModelConfig;
10333
+ exports.updateAiGatewayVirtualModelConfigBySlug = updateAiGatewayVirtualModelConfigBySlug;
9899
10334
  exports.updateAttackChallengeMode = updateAttackChallengeMode;
9900
10335
  exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
9901
10336
  exports.updateCheck = updateCheck;
10337
+ exports.updateConnector = updateConnector;
9902
10338
  exports.updateCustomEnvironment = updateCustomEnvironment;
9903
10339
  exports.updateDeploymentCheckRun = updateDeploymentCheckRun;
9904
10340
  exports.updateDomainAutoRenew = updateDomainAutoRenew;
@@ -9919,6 +10355,7 @@ exports.updateMicrofrontends = updateMicrofrontends;
9919
10355
  exports.updateMicrofrontendsGroup = updateMicrofrontendsGroup;
9920
10356
  exports.updateNetwork = updateNetwork;
9921
10357
  exports.updateObservabilityConfigurationProject = updateObservabilityConfigurationProject;
10358
+ exports.updatePrivateLinkEndpoint = updatePrivateLinkEndpoint;
9922
10359
  exports.updateProject = updateProject;
9923
10360
  exports.updateProjectCheck = updateProjectCheck;
9924
10361
  exports.updateProjectDomain = updateProjectDomain;
@@ -9940,5 +10377,6 @@ exports.uploadArtifact = uploadArtifact;
9940
10377
  exports.uploadCert = uploadCert;
9941
10378
  exports.uploadFile = uploadFile;
9942
10379
  exports.uploadProjectAvatar = uploadProjectAvatar;
10380
+ exports.upsertConnectorProjectConnection = upsertConnectorProjectConnection;
9943
10381
  exports.verifyProjectDomain = verifyProjectDomain;
9944
10382
  exports.writeSessionFiles = writeSessionFiles;