vercel-api-js 1.8.2 → 1.9.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/dist/components.cjs +520 -11
- package/dist/components.d.mts +343 -10
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +503 -11
- package/dist/effect.cjs +465 -5
- package/dist/effect.d.mts +331 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +465 -5
- package/dist/index.cjs +1735 -91
- package/dist/index.d.ts +3443 -120
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1504 -76
- package/dist/schemas.cjs +1074 -72
- package/dist/schemas.d.mts +631 -41
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +849 -57
- package/dist/types.cjs +159 -9
- package/dist/types.d.mts +2453 -70
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +154 -10
- package/package.json +1 -1
package/dist/components.mjs
CHANGED
|
@@ -5192,7 +5192,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5192
5192
|
* @summary Create a named sandbox
|
|
5193
5193
|
* @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown.
|
|
5194
5194
|
* @link /v2/sandboxes
|
|
5195
|
-
*/ async function
|
|
5195
|
+
*/ async function createSandboxesV2({ queryParams, config } = {}) {
|
|
5196
5196
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
5197
5197
|
const data = await request({
|
|
5198
5198
|
method: "POST",
|
|
@@ -5686,6 +5686,23 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5686
5686
|
});
|
|
5687
5687
|
return data;
|
|
5688
5688
|
}
|
|
5689
|
+
/**
|
|
5690
|
+
* @summary Create a named sandbox
|
|
5691
|
+
* @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown. Unlike v2, this version has no `runtime` parameter: when no `image` is provided (and the sandbox is not restored from a snapshot), the sandbox is created from the default universal image.
|
|
5692
|
+
* @link /v3/sandboxes
|
|
5693
|
+
*/ async function createSandboxesV3({ queryParams, config } = {}) {
|
|
5694
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
5695
|
+
const data = await request({
|
|
5696
|
+
method: "POST",
|
|
5697
|
+
url: `/v3/sandboxes`,
|
|
5698
|
+
queryParams,
|
|
5699
|
+
...requestConfig,
|
|
5700
|
+
headers: {
|
|
5701
|
+
...requestConfig.headers
|
|
5702
|
+
}
|
|
5703
|
+
});
|
|
5704
|
+
return data;
|
|
5705
|
+
}
|
|
5689
5706
|
/**
|
|
5690
5707
|
* @summary Update Attack Challenge mode
|
|
5691
5708
|
* @description Update the setting for determining if the project has Attack Challenge mode enabled.
|
|
@@ -5929,6 +5946,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5929
5946
|
return data;
|
|
5930
5947
|
}
|
|
5931
5948
|
/**
|
|
5949
|
+
* @summary Get a store
|
|
5932
5950
|
* @link /storage/stores/{id}
|
|
5933
5951
|
*/ async function getStorageStoresById({ pathParams, queryParams, config } = {}) {
|
|
5934
5952
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -5947,6 +5965,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5947
5965
|
return data;
|
|
5948
5966
|
}
|
|
5949
5967
|
/**
|
|
5968
|
+
* @summary Create a Blob store
|
|
5950
5969
|
* @link /storage/stores/blob
|
|
5951
5970
|
*/ async function createStorageStoresBlob({ config } = {}) {
|
|
5952
5971
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -5961,6 +5980,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5961
5980
|
return data;
|
|
5962
5981
|
}
|
|
5963
5982
|
/**
|
|
5983
|
+
* @summary Delete a Blob store
|
|
5964
5984
|
* @link /storage/stores/blob/{id}
|
|
5965
5985
|
*/ async function deleteStorageStoresBlobById({ pathParams, config } = {}) {
|
|
5966
5986
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -6535,6 +6555,86 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
6535
6555
|
});
|
|
6536
6556
|
return data;
|
|
6537
6557
|
}
|
|
6558
|
+
/**
|
|
6559
|
+
* @summary Add a repository permission
|
|
6560
|
+
* @description Grant a team access to a VCR repository. Sharing applies to the whole repository.
|
|
6561
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
6562
|
+
*/ async function addRepositoryPermission({ pathParams, queryParams, config } = {}) {
|
|
6563
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6564
|
+
if (!pathParams.idOrName) {
|
|
6565
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6566
|
+
}
|
|
6567
|
+
const data = await request({
|
|
6568
|
+
method: "POST",
|
|
6569
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
|
|
6570
|
+
queryParams,
|
|
6571
|
+
...requestConfig,
|
|
6572
|
+
headers: {
|
|
6573
|
+
...requestConfig.headers
|
|
6574
|
+
}
|
|
6575
|
+
});
|
|
6576
|
+
return data;
|
|
6577
|
+
}
|
|
6578
|
+
/**
|
|
6579
|
+
* @summary Remove a repository permission
|
|
6580
|
+
* @description Revoke a team's access to a VCR repository.
|
|
6581
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
6582
|
+
*/ async function removeRepositoryPermission({ pathParams, queryParams, config } = {}) {
|
|
6583
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6584
|
+
if (!pathParams.idOrName) {
|
|
6585
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6586
|
+
}
|
|
6587
|
+
const data = await request({
|
|
6588
|
+
method: "DELETE",
|
|
6589
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
|
|
6590
|
+
queryParams,
|
|
6591
|
+
...requestConfig,
|
|
6592
|
+
headers: {
|
|
6593
|
+
...requestConfig.headers
|
|
6594
|
+
}
|
|
6595
|
+
});
|
|
6596
|
+
return data;
|
|
6597
|
+
}
|
|
6598
|
+
/**
|
|
6599
|
+
* @summary List repository permissions
|
|
6600
|
+
* @description List the teams a VCR repository is shared with.
|
|
6601
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
6602
|
+
*/ async function listRepositoryPermissions({ pathParams, queryParams, config } = {}) {
|
|
6603
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6604
|
+
if (!pathParams.idOrName) {
|
|
6605
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6606
|
+
}
|
|
6607
|
+
const data = await request({
|
|
6608
|
+
method: "GET",
|
|
6609
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
|
|
6610
|
+
queryParams,
|
|
6611
|
+
...requestConfig,
|
|
6612
|
+
headers: {
|
|
6613
|
+
...requestConfig.headers
|
|
6614
|
+
}
|
|
6615
|
+
});
|
|
6616
|
+
return data;
|
|
6617
|
+
}
|
|
6618
|
+
/**
|
|
6619
|
+
* @summary Clear all repository permissions
|
|
6620
|
+
* @description Revoke every team's access to a VCR repository. Clearing an unshared repository is a no-op.
|
|
6621
|
+
* @link /v1/vcr/repository/{idOrName}/permissions/all
|
|
6622
|
+
*/ async function clearRepositoryPermissions({ pathParams, queryParams, config } = {}) {
|
|
6623
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6624
|
+
if (!pathParams.idOrName) {
|
|
6625
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6626
|
+
}
|
|
6627
|
+
const data = await request({
|
|
6628
|
+
method: "DELETE",
|
|
6629
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions/all`,
|
|
6630
|
+
queryParams,
|
|
6631
|
+
...requestConfig,
|
|
6632
|
+
headers: {
|
|
6633
|
+
...requestConfig.headers
|
|
6634
|
+
}
|
|
6635
|
+
});
|
|
6636
|
+
return data;
|
|
6637
|
+
}
|
|
6538
6638
|
/**
|
|
6539
6639
|
* @summary List repository tags
|
|
6540
6640
|
* @description List a repository's tags.
|
|
@@ -6624,6 +6724,327 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
6624
6724
|
});
|
|
6625
6725
|
return data;
|
|
6626
6726
|
}
|
|
6727
|
+
/**
|
|
6728
|
+
* @summary Check registry API version support
|
|
6729
|
+
* @description GET /v2/ Docker Registry v2 version check. Returns a 401 challenge when no credentials are provided, prompting the Docker client to send auth. With valid credentials, returns 200 so the client can proceed.
|
|
6730
|
+
* @link /v2/
|
|
6731
|
+
*/ async function getRoot({ config } = {}) {
|
|
6732
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6733
|
+
const data = await request({
|
|
6734
|
+
method: "GET",
|
|
6735
|
+
url: `/v2/`,
|
|
6736
|
+
...requestConfig,
|
|
6737
|
+
headers: {
|
|
6738
|
+
...requestConfig.headers
|
|
6739
|
+
}
|
|
6740
|
+
});
|
|
6741
|
+
return data;
|
|
6742
|
+
}
|
|
6743
|
+
/**
|
|
6744
|
+
* @summary Download a blob
|
|
6745
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Fetch a blob by digest.
|
|
6746
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
6747
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config } = {}) {
|
|
6748
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6749
|
+
if (!pathParams.teamSlug) {
|
|
6750
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6751
|
+
}
|
|
6752
|
+
if (!pathParams.projectSlug) {
|
|
6753
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6754
|
+
}
|
|
6755
|
+
if (!pathParams.repositoryName) {
|
|
6756
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6757
|
+
}
|
|
6758
|
+
if (!pathParams.digest) {
|
|
6759
|
+
throw new Error(`Missing required path parameter: digest`);
|
|
6760
|
+
}
|
|
6761
|
+
const data = await request({
|
|
6762
|
+
method: "GET",
|
|
6763
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/${pathParams.digest}`,
|
|
6764
|
+
...requestConfig,
|
|
6765
|
+
headers: {
|
|
6766
|
+
...requestConfig.headers
|
|
6767
|
+
}
|
|
6768
|
+
});
|
|
6769
|
+
return data;
|
|
6770
|
+
}
|
|
6771
|
+
/**
|
|
6772
|
+
* @summary Delete a blob
|
|
6773
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Blob deletion is intentionally not supported. Matches the behaviour of most public registries.
|
|
6774
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
6775
|
+
*/ async function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config } = {}) {
|
|
6776
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6777
|
+
if (!pathParams.teamSlug) {
|
|
6778
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6779
|
+
}
|
|
6780
|
+
if (!pathParams.projectSlug) {
|
|
6781
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6782
|
+
}
|
|
6783
|
+
if (!pathParams.repositoryName) {
|
|
6784
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6785
|
+
}
|
|
6786
|
+
if (!pathParams.digest) {
|
|
6787
|
+
throw new Error(`Missing required path parameter: digest`);
|
|
6788
|
+
}
|
|
6789
|
+
const data = await request({
|
|
6790
|
+
method: "DELETE",
|
|
6791
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/${pathParams.digest}`,
|
|
6792
|
+
...requestConfig,
|
|
6793
|
+
headers: {
|
|
6794
|
+
...requestConfig.headers
|
|
6795
|
+
}
|
|
6796
|
+
});
|
|
6797
|
+
return data;
|
|
6798
|
+
}
|
|
6799
|
+
/**
|
|
6800
|
+
* @summary Get blob upload status
|
|
6801
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid Query the status of an in-progress blob upload. Used by clients to resume a partial upload after an interruption.
|
|
6802
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6803
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
|
|
6804
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6805
|
+
if (!pathParams.teamSlug) {
|
|
6806
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6807
|
+
}
|
|
6808
|
+
if (!pathParams.projectSlug) {
|
|
6809
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6810
|
+
}
|
|
6811
|
+
if (!pathParams.repositoryName) {
|
|
6812
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6813
|
+
}
|
|
6814
|
+
if (!pathParams.uuid) {
|
|
6815
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6816
|
+
}
|
|
6817
|
+
const data = await request({
|
|
6818
|
+
method: "GET",
|
|
6819
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6820
|
+
...requestConfig,
|
|
6821
|
+
headers: {
|
|
6822
|
+
...requestConfig.headers
|
|
6823
|
+
}
|
|
6824
|
+
});
|
|
6825
|
+
return data;
|
|
6826
|
+
}
|
|
6827
|
+
/**
|
|
6828
|
+
* @summary Cancel a blob upload
|
|
6829
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid Cancel an in-flight blob upload. Aborts the underlying S3 multipart upload (if one was started) and discards the session.
|
|
6830
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6831
|
+
*/ async function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
|
|
6832
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6833
|
+
if (!pathParams.teamSlug) {
|
|
6834
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6835
|
+
}
|
|
6836
|
+
if (!pathParams.projectSlug) {
|
|
6837
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6838
|
+
}
|
|
6839
|
+
if (!pathParams.repositoryName) {
|
|
6840
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6841
|
+
}
|
|
6842
|
+
if (!pathParams.uuid) {
|
|
6843
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6844
|
+
}
|
|
6845
|
+
const data = await request({
|
|
6846
|
+
method: "DELETE",
|
|
6847
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6848
|
+
...requestConfig,
|
|
6849
|
+
headers: {
|
|
6850
|
+
...requestConfig.headers
|
|
6851
|
+
}
|
|
6852
|
+
});
|
|
6853
|
+
return data;
|
|
6854
|
+
}
|
|
6855
|
+
/**
|
|
6856
|
+
* @summary Upload a blob chunk
|
|
6857
|
+
* @description PATCH /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid Upload a chunk of blob data. The request body is streamed directly to S3 as a multipart upload part while hashing incrementally. The client may call this multiple times for chunked uploads.
|
|
6858
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6859
|
+
*/ async function updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
|
|
6860
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6861
|
+
if (!pathParams.teamSlug) {
|
|
6862
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6863
|
+
}
|
|
6864
|
+
if (!pathParams.projectSlug) {
|
|
6865
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6866
|
+
}
|
|
6867
|
+
if (!pathParams.repositoryName) {
|
|
6868
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6869
|
+
}
|
|
6870
|
+
if (!pathParams.uuid) {
|
|
6871
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6872
|
+
}
|
|
6873
|
+
const data = await request({
|
|
6874
|
+
method: "PATCH",
|
|
6875
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6876
|
+
...requestConfig,
|
|
6877
|
+
headers: {
|
|
6878
|
+
...requestConfig.headers
|
|
6879
|
+
}
|
|
6880
|
+
});
|
|
6881
|
+
return data;
|
|
6882
|
+
}
|
|
6883
|
+
/**
|
|
6884
|
+
* @summary Complete a blob upload
|
|
6885
|
+
* @description PUT /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid?digest=<digest> Complete the blob upload. This may include a final chunk of data in the request body (monolithic upload) or just finalize a previous chunked upload.
|
|
6886
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6887
|
+
*/ async function replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, queryParams, config } = {}) {
|
|
6888
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6889
|
+
if (!pathParams.teamSlug) {
|
|
6890
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6891
|
+
}
|
|
6892
|
+
if (!pathParams.projectSlug) {
|
|
6893
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6894
|
+
}
|
|
6895
|
+
if (!pathParams.repositoryName) {
|
|
6896
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6897
|
+
}
|
|
6898
|
+
if (!pathParams.uuid) {
|
|
6899
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6900
|
+
}
|
|
6901
|
+
const data = await request({
|
|
6902
|
+
method: "PUT",
|
|
6903
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6904
|
+
queryParams,
|
|
6905
|
+
...requestConfig,
|
|
6906
|
+
headers: {
|
|
6907
|
+
...requestConfig.headers
|
|
6908
|
+
}
|
|
6909
|
+
});
|
|
6910
|
+
return data;
|
|
6911
|
+
}
|
|
6912
|
+
/**
|
|
6913
|
+
* @summary Start a blob upload
|
|
6914
|
+
* @description POST /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/[?mount=<digest>&from=<repo>] Initiate a blob upload. Returns a UUID in the Location header that the client uses for subsequent PATCH (chunk) and PUT (complete) requests.
|
|
6915
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/
|
|
6916
|
+
*/ async function createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads({ pathParams, queryParams, config } = {}) {
|
|
6917
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6918
|
+
if (!pathParams.teamSlug) {
|
|
6919
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6920
|
+
}
|
|
6921
|
+
if (!pathParams.projectSlug) {
|
|
6922
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6923
|
+
}
|
|
6924
|
+
if (!pathParams.repositoryName) {
|
|
6925
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6926
|
+
}
|
|
6927
|
+
const data = await request({
|
|
6928
|
+
method: "POST",
|
|
6929
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/`,
|
|
6930
|
+
queryParams,
|
|
6931
|
+
...requestConfig,
|
|
6932
|
+
headers: {
|
|
6933
|
+
...requestConfig.headers
|
|
6934
|
+
}
|
|
6935
|
+
});
|
|
6936
|
+
return data;
|
|
6937
|
+
}
|
|
6938
|
+
/**
|
|
6939
|
+
* @summary Push an image manifest
|
|
6940
|
+
* @description PUT /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Upload an image manifest. The digest is computed from the body and returned in the Docker-Content-Digest header.
|
|
6941
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
6942
|
+
*/ async function replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
|
|
6943
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6944
|
+
if (!pathParams.teamSlug) {
|
|
6945
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6946
|
+
}
|
|
6947
|
+
if (!pathParams.projectSlug) {
|
|
6948
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6949
|
+
}
|
|
6950
|
+
if (!pathParams.repositoryName) {
|
|
6951
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6952
|
+
}
|
|
6953
|
+
if (!pathParams.reference) {
|
|
6954
|
+
throw new Error(`Missing required path parameter: reference`);
|
|
6955
|
+
}
|
|
6956
|
+
const data = await request({
|
|
6957
|
+
method: "PUT",
|
|
6958
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
|
|
6959
|
+
...requestConfig,
|
|
6960
|
+
headers: {
|
|
6961
|
+
...requestConfig.headers
|
|
6962
|
+
}
|
|
6963
|
+
});
|
|
6964
|
+
return data;
|
|
6965
|
+
}
|
|
6966
|
+
/**
|
|
6967
|
+
* @summary Pull an image manifest
|
|
6968
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Fetch a manifest by tag or digest.
|
|
6969
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
6970
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
|
|
6971
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6972
|
+
if (!pathParams.teamSlug) {
|
|
6973
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6974
|
+
}
|
|
6975
|
+
if (!pathParams.projectSlug) {
|
|
6976
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6977
|
+
}
|
|
6978
|
+
if (!pathParams.repositoryName) {
|
|
6979
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6980
|
+
}
|
|
6981
|
+
if (!pathParams.reference) {
|
|
6982
|
+
throw new Error(`Missing required path parameter: reference`);
|
|
6983
|
+
}
|
|
6984
|
+
const data = await request({
|
|
6985
|
+
method: "GET",
|
|
6986
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
|
|
6987
|
+
...requestConfig,
|
|
6988
|
+
headers: {
|
|
6989
|
+
...requestConfig.headers
|
|
6990
|
+
}
|
|
6991
|
+
});
|
|
6992
|
+
return data;
|
|
6993
|
+
}
|
|
6994
|
+
/**
|
|
6995
|
+
* @summary Delete an image manifest
|
|
6996
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Reference must be a digest.
|
|
6997
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
6998
|
+
*/ async function deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
|
|
6999
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
7000
|
+
if (!pathParams.teamSlug) {
|
|
7001
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
7002
|
+
}
|
|
7003
|
+
if (!pathParams.projectSlug) {
|
|
7004
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
7005
|
+
}
|
|
7006
|
+
if (!pathParams.repositoryName) {
|
|
7007
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
7008
|
+
}
|
|
7009
|
+
if (!pathParams.reference) {
|
|
7010
|
+
throw new Error(`Missing required path parameter: reference`);
|
|
7011
|
+
}
|
|
7012
|
+
const data = await request({
|
|
7013
|
+
method: "DELETE",
|
|
7014
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
|
|
7015
|
+
...requestConfig,
|
|
7016
|
+
headers: {
|
|
7017
|
+
...requestConfig.headers
|
|
7018
|
+
}
|
|
7019
|
+
});
|
|
7020
|
+
return data;
|
|
7021
|
+
}
|
|
7022
|
+
/**
|
|
7023
|
+
* @summary List image tags
|
|
7024
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/tags/list List the tags in a repository.
|
|
7025
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list
|
|
7026
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameTagsList({ pathParams, queryParams, config } = {}) {
|
|
7027
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
7028
|
+
if (!pathParams.teamSlug) {
|
|
7029
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
7030
|
+
}
|
|
7031
|
+
if (!pathParams.projectSlug) {
|
|
7032
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
7033
|
+
}
|
|
7034
|
+
if (!pathParams.repositoryName) {
|
|
7035
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
7036
|
+
}
|
|
7037
|
+
const data = await request({
|
|
7038
|
+
method: "GET",
|
|
7039
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/tags/list`,
|
|
7040
|
+
queryParams,
|
|
7041
|
+
...requestConfig,
|
|
7042
|
+
headers: {
|
|
7043
|
+
...requestConfig.headers
|
|
7044
|
+
}
|
|
7045
|
+
});
|
|
7046
|
+
return data;
|
|
7047
|
+
}
|
|
6627
7048
|
/**
|
|
6628
7049
|
* @link /web/insights/toggle
|
|
6629
7050
|
*/ async function createWebInsightsToggle({ queryParams, config } = {}) {
|
|
@@ -7328,7 +7749,7 @@ const operationsByPath = {
|
|
|
7328
7749
|
"POST /v1/projects/{projectId}/pause": pauseProject,
|
|
7329
7750
|
"POST /v1/projects/{projectId}/unpause": unpauseProject,
|
|
7330
7751
|
"GET /v2/sandboxes": listSandboxes,
|
|
7331
|
-
"POST /v2/sandboxes":
|
|
7752
|
+
"POST /v2/sandboxes": createSandboxesV2,
|
|
7332
7753
|
"GET /v2/sandboxes/drives": listDrives,
|
|
7333
7754
|
"POST /v2/sandboxes/drives/{name}": getOrCreateDrive,
|
|
7334
7755
|
"DELETE /v2/sandboxes/drives/{name}": deleteDrive,
|
|
@@ -7353,6 +7774,7 @@ const operationsByPath = {
|
|
|
7353
7774
|
"POST /v2/sandboxes/sessions/{sessionId}/fs/write": writeSessionFiles,
|
|
7354
7775
|
"POST /v2/sandboxes/sessions/{sessionId}/snapshot": createSessionSnapshot,
|
|
7355
7776
|
"POST /v2/sandboxes/{name}/fork": createSandboxesByNameFork,
|
|
7777
|
+
"POST /v3/sandboxes": createSandboxesV3,
|
|
7356
7778
|
"POST /v1/security/attack-mode": updateAttackChallengeMode,
|
|
7357
7779
|
"GET /v1/security/firewall/config": getSecurityFirewallConfig,
|
|
7358
7780
|
"PUT /v1/security/firewall/config": putFirewallConfig,
|
|
@@ -7399,10 +7821,26 @@ const operationsByPath = {
|
|
|
7399
7821
|
"GET /v1/vcr/repository/{idOrName}": getRepository,
|
|
7400
7822
|
"DELETE /v1/vcr/repository/{idOrName}": deleteRepository,
|
|
7401
7823
|
"GET /v1/vcr/repository/{idOrName}/images": listRepositoryImages,
|
|
7824
|
+
"POST /v1/vcr/repository/{idOrName}/permissions": addRepositoryPermission,
|
|
7825
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions": removeRepositoryPermission,
|
|
7826
|
+
"GET /v1/vcr/repository/{idOrName}/permissions": listRepositoryPermissions,
|
|
7827
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions/all": clearRepositoryPermissions,
|
|
7402
7828
|
"GET /v1/vcr/repository/{idOrName}/tags": listRepositoryTags,
|
|
7403
7829
|
"GET /v1/vcr/repository/{idOrName}/tags/{tag}": getRepositoryTag,
|
|
7404
7830
|
"GET /v1/vcr/repository/{idOrName}/images/{imageIdOrDigest}": getRepositoryImage,
|
|
7405
7831
|
"DELETE /v1/vcr/repository/{idOrName}/images/{imageId}": deleteRepositoryImage,
|
|
7832
|
+
"GET /v2/": getRoot,
|
|
7833
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
7834
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
7835
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7836
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7837
|
+
"PATCH /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7838
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7839
|
+
"POST /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/": createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads,
|
|
7840
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
7841
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
7842
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
7843
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list": getByTeamSlugByProjectSlugByRepositoryNameTagsList,
|
|
7406
7844
|
"POST /web/insights/toggle": createWebInsightsToggle,
|
|
7407
7845
|
"GET /v1/query/web-analytics/visits/aggregate": aggregatePageviews,
|
|
7408
7846
|
"GET /v1/query/web-analytics/events/aggregate": aggregateEvents,
|
|
@@ -7759,7 +8197,7 @@ const operationsByTag = {
|
|
|
7759
8197
|
},
|
|
7760
8198
|
sandboxes: {
|
|
7761
8199
|
listSandboxes,
|
|
7762
|
-
|
|
8200
|
+
createSandboxesV2,
|
|
7763
8201
|
listDrives,
|
|
7764
8202
|
getOrCreateDrive,
|
|
7765
8203
|
deleteDrive,
|
|
@@ -7783,7 +8221,8 @@ const operationsByTag = {
|
|
|
7783
8221
|
createSessionDirectory,
|
|
7784
8222
|
writeSessionFiles,
|
|
7785
8223
|
createSessionSnapshot,
|
|
7786
|
-
createSandboxesByNameFork
|
|
8224
|
+
createSandboxesByNameFork,
|
|
8225
|
+
createSandboxesV3
|
|
7787
8226
|
},
|
|
7788
8227
|
security: {
|
|
7789
8228
|
updateAttackChallengeMode,
|
|
@@ -7800,6 +8239,11 @@ const operationsByTag = {
|
|
|
7800
8239
|
getSecurityFirewallEvents,
|
|
7801
8240
|
generateFirewallRule
|
|
7802
8241
|
},
|
|
8242
|
+
storage: {
|
|
8243
|
+
getStorageStoresById,
|
|
8244
|
+
createStorageStoresBlob,
|
|
8245
|
+
deleteStorageStoresBlobById
|
|
8246
|
+
},
|
|
7803
8247
|
teams: {
|
|
7804
8248
|
getTeamMembers,
|
|
7805
8249
|
inviteUserToTeam,
|
|
@@ -7824,10 +8268,26 @@ const operationsByTag = {
|
|
|
7824
8268
|
getRepository,
|
|
7825
8269
|
deleteRepository,
|
|
7826
8270
|
listRepositoryImages,
|
|
8271
|
+
addRepositoryPermission,
|
|
8272
|
+
removeRepositoryPermission,
|
|
8273
|
+
listRepositoryPermissions,
|
|
8274
|
+
clearRepositoryPermissions,
|
|
7827
8275
|
listRepositoryTags,
|
|
7828
8276
|
getRepositoryTag,
|
|
7829
8277
|
getRepositoryImage,
|
|
7830
|
-
deleteRepositoryImage
|
|
8278
|
+
deleteRepositoryImage,
|
|
8279
|
+
getRoot,
|
|
8280
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
8281
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
8282
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8283
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8284
|
+
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8285
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8286
|
+
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads,
|
|
8287
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
8288
|
+
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
8289
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
8290
|
+
getByTeamSlugByProjectSlugByRepositoryNameTagsList
|
|
7831
8291
|
},
|
|
7832
8292
|
webAnalytics: {
|
|
7833
8293
|
aggregatePageviews,
|
|
@@ -8408,7 +8868,7 @@ const tagDictionary = {
|
|
|
8408
8868
|
"getSessionCommandLogs"
|
|
8409
8869
|
],
|
|
8410
8870
|
POST: [
|
|
8411
|
-
"
|
|
8871
|
+
"createSandboxesV2",
|
|
8412
8872
|
"getOrCreateDrive",
|
|
8413
8873
|
"runSessionCommand",
|
|
8414
8874
|
"killSessionCommand",
|
|
@@ -8419,7 +8879,8 @@ const tagDictionary = {
|
|
|
8419
8879
|
"createSessionDirectory",
|
|
8420
8880
|
"writeSessionFiles",
|
|
8421
8881
|
"createSessionSnapshot",
|
|
8422
|
-
"createSandboxesByNameFork"
|
|
8882
|
+
"createSandboxesByNameFork",
|
|
8883
|
+
"createSandboxesV3"
|
|
8423
8884
|
],
|
|
8424
8885
|
DELETE: [
|
|
8425
8886
|
"deleteDrive",
|
|
@@ -8455,6 +8916,17 @@ const tagDictionary = {
|
|
|
8455
8916
|
"removeBypassIp"
|
|
8456
8917
|
]
|
|
8457
8918
|
},
|
|
8919
|
+
storage: {
|
|
8920
|
+
GET: [
|
|
8921
|
+
"getStorageStoresById"
|
|
8922
|
+
],
|
|
8923
|
+
POST: [
|
|
8924
|
+
"createStorageStoresBlob"
|
|
8925
|
+
],
|
|
8926
|
+
DELETE: [
|
|
8927
|
+
"deleteStorageStoresBlobById"
|
|
8928
|
+
]
|
|
8929
|
+
},
|
|
8458
8930
|
teams: {
|
|
8459
8931
|
GET: [
|
|
8460
8932
|
"getTeamMembers",
|
|
@@ -8483,19 +8955,39 @@ const tagDictionary = {
|
|
|
8483
8955
|
},
|
|
8484
8956
|
vcr: {
|
|
8485
8957
|
POST: [
|
|
8486
|
-
"createRepository"
|
|
8958
|
+
"createRepository",
|
|
8959
|
+
"addRepositoryPermission",
|
|
8960
|
+
"createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads"
|
|
8487
8961
|
],
|
|
8488
8962
|
GET: [
|
|
8489
8963
|
"listRepositories",
|
|
8490
8964
|
"getRepository",
|
|
8491
8965
|
"listRepositoryImages",
|
|
8966
|
+
"listRepositoryPermissions",
|
|
8492
8967
|
"listRepositoryTags",
|
|
8493
8968
|
"getRepositoryTag",
|
|
8494
|
-
"getRepositoryImage"
|
|
8969
|
+
"getRepositoryImage",
|
|
8970
|
+
"getRoot",
|
|
8971
|
+
"getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest",
|
|
8972
|
+
"getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
|
|
8973
|
+
"getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference",
|
|
8974
|
+
"getByTeamSlugByProjectSlugByRepositoryNameTagsList"
|
|
8495
8975
|
],
|
|
8496
8976
|
DELETE: [
|
|
8497
8977
|
"deleteRepository",
|
|
8498
|
-
"
|
|
8978
|
+
"removeRepositoryPermission",
|
|
8979
|
+
"clearRepositoryPermissions",
|
|
8980
|
+
"deleteRepositoryImage",
|
|
8981
|
+
"deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest",
|
|
8982
|
+
"deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
|
|
8983
|
+
"deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"
|
|
8984
|
+
],
|
|
8985
|
+
PATCH: [
|
|
8986
|
+
"updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid"
|
|
8987
|
+
],
|
|
8988
|
+
PUT: [
|
|
8989
|
+
"replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
|
|
8990
|
+
"replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"
|
|
8499
8991
|
]
|
|
8500
8992
|
},
|
|
8501
8993
|
webAnalytics: {
|
|
@@ -8551,4 +9043,4 @@ const tagDictionary = {
|
|
|
8551
9043
|
}
|
|
8552
9044
|
};
|
|
8553
9045
|
|
|
8554
|
-
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository,
|
|
9046
|
+
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRepositoryPermission, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, clearRepositoryPermissions, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameFork, createSandboxesV2, createSandboxesV3, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, getByTeamSlugByProjectSlugByRepositoryNameTagsList, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, getIntegrationLogDrains, getIntegrationResource, getIntegrationResources, getInvoice, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRoot, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importConnectorTokens, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listNetworks, listProjectChecks, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags, listSandboxes, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeRepositoryPermission, removeTeamMember, renewDomain, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, runSessionCommand, searchRepo, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAttackChallengeMode, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, updateCheck, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, verifyProjectDomain, writeSessionFiles };
|