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.cjs
CHANGED
|
@@ -5194,7 +5194,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5194
5194
|
* @summary Create a named sandbox
|
|
5195
5195
|
* @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown.
|
|
5196
5196
|
* @link /v2/sandboxes
|
|
5197
|
-
*/ async function
|
|
5197
|
+
*/ async function createSandboxesV2({ queryParams, config } = {}) {
|
|
5198
5198
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
5199
5199
|
const data = await request({
|
|
5200
5200
|
method: "POST",
|
|
@@ -5688,6 +5688,23 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5688
5688
|
});
|
|
5689
5689
|
return data;
|
|
5690
5690
|
}
|
|
5691
|
+
/**
|
|
5692
|
+
* @summary Create a named sandbox
|
|
5693
|
+
* @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.
|
|
5694
|
+
* @link /v3/sandboxes
|
|
5695
|
+
*/ async function createSandboxesV3({ queryParams, config } = {}) {
|
|
5696
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
5697
|
+
const data = await request({
|
|
5698
|
+
method: "POST",
|
|
5699
|
+
url: `/v3/sandboxes`,
|
|
5700
|
+
queryParams,
|
|
5701
|
+
...requestConfig,
|
|
5702
|
+
headers: {
|
|
5703
|
+
...requestConfig.headers
|
|
5704
|
+
}
|
|
5705
|
+
});
|
|
5706
|
+
return data;
|
|
5707
|
+
}
|
|
5691
5708
|
/**
|
|
5692
5709
|
* @summary Update Attack Challenge mode
|
|
5693
5710
|
* @description Update the setting for determining if the project has Attack Challenge mode enabled.
|
|
@@ -5931,6 +5948,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5931
5948
|
return data;
|
|
5932
5949
|
}
|
|
5933
5950
|
/**
|
|
5951
|
+
* @summary Get a store
|
|
5934
5952
|
* @link /storage/stores/{id}
|
|
5935
5953
|
*/ async function getStorageStoresById({ pathParams, queryParams, config } = {}) {
|
|
5936
5954
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -5949,6 +5967,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5949
5967
|
return data;
|
|
5950
5968
|
}
|
|
5951
5969
|
/**
|
|
5970
|
+
* @summary Create a Blob store
|
|
5952
5971
|
* @link /storage/stores/blob
|
|
5953
5972
|
*/ async function createStorageStoresBlob({ config } = {}) {
|
|
5954
5973
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -5963,6 +5982,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
5963
5982
|
return data;
|
|
5964
5983
|
}
|
|
5965
5984
|
/**
|
|
5985
|
+
* @summary Delete a Blob store
|
|
5966
5986
|
* @link /storage/stores/blob/{id}
|
|
5967
5987
|
*/ async function deleteStorageStoresBlobById({ pathParams, config } = {}) {
|
|
5968
5988
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -6537,6 +6557,86 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
6537
6557
|
});
|
|
6538
6558
|
return data;
|
|
6539
6559
|
}
|
|
6560
|
+
/**
|
|
6561
|
+
* @summary Add a repository permission
|
|
6562
|
+
* @description Grant a team access to a VCR repository. Sharing applies to the whole repository.
|
|
6563
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
6564
|
+
*/ async function addRepositoryPermission({ pathParams, queryParams, config } = {}) {
|
|
6565
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6566
|
+
if (!pathParams.idOrName) {
|
|
6567
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6568
|
+
}
|
|
6569
|
+
const data = await request({
|
|
6570
|
+
method: "POST",
|
|
6571
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
|
|
6572
|
+
queryParams,
|
|
6573
|
+
...requestConfig,
|
|
6574
|
+
headers: {
|
|
6575
|
+
...requestConfig.headers
|
|
6576
|
+
}
|
|
6577
|
+
});
|
|
6578
|
+
return data;
|
|
6579
|
+
}
|
|
6580
|
+
/**
|
|
6581
|
+
* @summary Remove a repository permission
|
|
6582
|
+
* @description Revoke a team's access to a VCR repository.
|
|
6583
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
6584
|
+
*/ async function removeRepositoryPermission({ pathParams, queryParams, config } = {}) {
|
|
6585
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6586
|
+
if (!pathParams.idOrName) {
|
|
6587
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6588
|
+
}
|
|
6589
|
+
const data = await request({
|
|
6590
|
+
method: "DELETE",
|
|
6591
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
|
|
6592
|
+
queryParams,
|
|
6593
|
+
...requestConfig,
|
|
6594
|
+
headers: {
|
|
6595
|
+
...requestConfig.headers
|
|
6596
|
+
}
|
|
6597
|
+
});
|
|
6598
|
+
return data;
|
|
6599
|
+
}
|
|
6600
|
+
/**
|
|
6601
|
+
* @summary List repository permissions
|
|
6602
|
+
* @description List the teams a VCR repository is shared with.
|
|
6603
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
6604
|
+
*/ async function listRepositoryPermissions({ pathParams, queryParams, config } = {}) {
|
|
6605
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6606
|
+
if (!pathParams.idOrName) {
|
|
6607
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6608
|
+
}
|
|
6609
|
+
const data = await request({
|
|
6610
|
+
method: "GET",
|
|
6611
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
|
|
6612
|
+
queryParams,
|
|
6613
|
+
...requestConfig,
|
|
6614
|
+
headers: {
|
|
6615
|
+
...requestConfig.headers
|
|
6616
|
+
}
|
|
6617
|
+
});
|
|
6618
|
+
return data;
|
|
6619
|
+
}
|
|
6620
|
+
/**
|
|
6621
|
+
* @summary Clear all repository permissions
|
|
6622
|
+
* @description Revoke every team's access to a VCR repository. Clearing an unshared repository is a no-op.
|
|
6623
|
+
* @link /v1/vcr/repository/{idOrName}/permissions/all
|
|
6624
|
+
*/ async function clearRepositoryPermissions({ pathParams, queryParams, config } = {}) {
|
|
6625
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6626
|
+
if (!pathParams.idOrName) {
|
|
6627
|
+
throw new Error(`Missing required path parameter: idOrName`);
|
|
6628
|
+
}
|
|
6629
|
+
const data = await request({
|
|
6630
|
+
method: "DELETE",
|
|
6631
|
+
url: `/v1/vcr/repository/${pathParams.idOrName}/permissions/all`,
|
|
6632
|
+
queryParams,
|
|
6633
|
+
...requestConfig,
|
|
6634
|
+
headers: {
|
|
6635
|
+
...requestConfig.headers
|
|
6636
|
+
}
|
|
6637
|
+
});
|
|
6638
|
+
return data;
|
|
6639
|
+
}
|
|
6540
6640
|
/**
|
|
6541
6641
|
* @summary List repository tags
|
|
6542
6642
|
* @description List a repository's tags.
|
|
@@ -6626,6 +6726,327 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
6626
6726
|
});
|
|
6627
6727
|
return data;
|
|
6628
6728
|
}
|
|
6729
|
+
/**
|
|
6730
|
+
* @summary Check registry API version support
|
|
6731
|
+
* @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.
|
|
6732
|
+
* @link /v2/
|
|
6733
|
+
*/ async function getRoot({ config } = {}) {
|
|
6734
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6735
|
+
const data = await request({
|
|
6736
|
+
method: "GET",
|
|
6737
|
+
url: `/v2/`,
|
|
6738
|
+
...requestConfig,
|
|
6739
|
+
headers: {
|
|
6740
|
+
...requestConfig.headers
|
|
6741
|
+
}
|
|
6742
|
+
});
|
|
6743
|
+
return data;
|
|
6744
|
+
}
|
|
6745
|
+
/**
|
|
6746
|
+
* @summary Download a blob
|
|
6747
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Fetch a blob by digest.
|
|
6748
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
6749
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config } = {}) {
|
|
6750
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6751
|
+
if (!pathParams.teamSlug) {
|
|
6752
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6753
|
+
}
|
|
6754
|
+
if (!pathParams.projectSlug) {
|
|
6755
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6756
|
+
}
|
|
6757
|
+
if (!pathParams.repositoryName) {
|
|
6758
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6759
|
+
}
|
|
6760
|
+
if (!pathParams.digest) {
|
|
6761
|
+
throw new Error(`Missing required path parameter: digest`);
|
|
6762
|
+
}
|
|
6763
|
+
const data = await request({
|
|
6764
|
+
method: "GET",
|
|
6765
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/${pathParams.digest}`,
|
|
6766
|
+
...requestConfig,
|
|
6767
|
+
headers: {
|
|
6768
|
+
...requestConfig.headers
|
|
6769
|
+
}
|
|
6770
|
+
});
|
|
6771
|
+
return data;
|
|
6772
|
+
}
|
|
6773
|
+
/**
|
|
6774
|
+
* @summary Delete a blob
|
|
6775
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Blob deletion is intentionally not supported. Matches the behaviour of most public registries.
|
|
6776
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
6777
|
+
*/ async function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config } = {}) {
|
|
6778
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6779
|
+
if (!pathParams.teamSlug) {
|
|
6780
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6781
|
+
}
|
|
6782
|
+
if (!pathParams.projectSlug) {
|
|
6783
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6784
|
+
}
|
|
6785
|
+
if (!pathParams.repositoryName) {
|
|
6786
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6787
|
+
}
|
|
6788
|
+
if (!pathParams.digest) {
|
|
6789
|
+
throw new Error(`Missing required path parameter: digest`);
|
|
6790
|
+
}
|
|
6791
|
+
const data = await request({
|
|
6792
|
+
method: "DELETE",
|
|
6793
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/${pathParams.digest}`,
|
|
6794
|
+
...requestConfig,
|
|
6795
|
+
headers: {
|
|
6796
|
+
...requestConfig.headers
|
|
6797
|
+
}
|
|
6798
|
+
});
|
|
6799
|
+
return data;
|
|
6800
|
+
}
|
|
6801
|
+
/**
|
|
6802
|
+
* @summary Get blob upload status
|
|
6803
|
+
* @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.
|
|
6804
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6805
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
|
|
6806
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6807
|
+
if (!pathParams.teamSlug) {
|
|
6808
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6809
|
+
}
|
|
6810
|
+
if (!pathParams.projectSlug) {
|
|
6811
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6812
|
+
}
|
|
6813
|
+
if (!pathParams.repositoryName) {
|
|
6814
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6815
|
+
}
|
|
6816
|
+
if (!pathParams.uuid) {
|
|
6817
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6818
|
+
}
|
|
6819
|
+
const data = await request({
|
|
6820
|
+
method: "GET",
|
|
6821
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6822
|
+
...requestConfig,
|
|
6823
|
+
headers: {
|
|
6824
|
+
...requestConfig.headers
|
|
6825
|
+
}
|
|
6826
|
+
});
|
|
6827
|
+
return data;
|
|
6828
|
+
}
|
|
6829
|
+
/**
|
|
6830
|
+
* @summary Cancel a blob upload
|
|
6831
|
+
* @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.
|
|
6832
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6833
|
+
*/ async function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
|
|
6834
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6835
|
+
if (!pathParams.teamSlug) {
|
|
6836
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6837
|
+
}
|
|
6838
|
+
if (!pathParams.projectSlug) {
|
|
6839
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6840
|
+
}
|
|
6841
|
+
if (!pathParams.repositoryName) {
|
|
6842
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6843
|
+
}
|
|
6844
|
+
if (!pathParams.uuid) {
|
|
6845
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6846
|
+
}
|
|
6847
|
+
const data = await request({
|
|
6848
|
+
method: "DELETE",
|
|
6849
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6850
|
+
...requestConfig,
|
|
6851
|
+
headers: {
|
|
6852
|
+
...requestConfig.headers
|
|
6853
|
+
}
|
|
6854
|
+
});
|
|
6855
|
+
return data;
|
|
6856
|
+
}
|
|
6857
|
+
/**
|
|
6858
|
+
* @summary Upload a blob chunk
|
|
6859
|
+
* @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.
|
|
6860
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6861
|
+
*/ async function updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
|
|
6862
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6863
|
+
if (!pathParams.teamSlug) {
|
|
6864
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6865
|
+
}
|
|
6866
|
+
if (!pathParams.projectSlug) {
|
|
6867
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6868
|
+
}
|
|
6869
|
+
if (!pathParams.repositoryName) {
|
|
6870
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6871
|
+
}
|
|
6872
|
+
if (!pathParams.uuid) {
|
|
6873
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6874
|
+
}
|
|
6875
|
+
const data = await request({
|
|
6876
|
+
method: "PATCH",
|
|
6877
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6878
|
+
...requestConfig,
|
|
6879
|
+
headers: {
|
|
6880
|
+
...requestConfig.headers
|
|
6881
|
+
}
|
|
6882
|
+
});
|
|
6883
|
+
return data;
|
|
6884
|
+
}
|
|
6885
|
+
/**
|
|
6886
|
+
* @summary Complete a blob upload
|
|
6887
|
+
* @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.
|
|
6888
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
6889
|
+
*/ async function replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, queryParams, config } = {}) {
|
|
6890
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6891
|
+
if (!pathParams.teamSlug) {
|
|
6892
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6893
|
+
}
|
|
6894
|
+
if (!pathParams.projectSlug) {
|
|
6895
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6896
|
+
}
|
|
6897
|
+
if (!pathParams.repositoryName) {
|
|
6898
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6899
|
+
}
|
|
6900
|
+
if (!pathParams.uuid) {
|
|
6901
|
+
throw new Error(`Missing required path parameter: uuid`);
|
|
6902
|
+
}
|
|
6903
|
+
const data = await request({
|
|
6904
|
+
method: "PUT",
|
|
6905
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
|
|
6906
|
+
queryParams,
|
|
6907
|
+
...requestConfig,
|
|
6908
|
+
headers: {
|
|
6909
|
+
...requestConfig.headers
|
|
6910
|
+
}
|
|
6911
|
+
});
|
|
6912
|
+
return data;
|
|
6913
|
+
}
|
|
6914
|
+
/**
|
|
6915
|
+
* @summary Start a blob upload
|
|
6916
|
+
* @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.
|
|
6917
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/
|
|
6918
|
+
*/ async function createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads({ pathParams, queryParams, config } = {}) {
|
|
6919
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6920
|
+
if (!pathParams.teamSlug) {
|
|
6921
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6922
|
+
}
|
|
6923
|
+
if (!pathParams.projectSlug) {
|
|
6924
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6925
|
+
}
|
|
6926
|
+
if (!pathParams.repositoryName) {
|
|
6927
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6928
|
+
}
|
|
6929
|
+
const data = await request({
|
|
6930
|
+
method: "POST",
|
|
6931
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/`,
|
|
6932
|
+
queryParams,
|
|
6933
|
+
...requestConfig,
|
|
6934
|
+
headers: {
|
|
6935
|
+
...requestConfig.headers
|
|
6936
|
+
}
|
|
6937
|
+
});
|
|
6938
|
+
return data;
|
|
6939
|
+
}
|
|
6940
|
+
/**
|
|
6941
|
+
* @summary Push an image manifest
|
|
6942
|
+
* @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.
|
|
6943
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
6944
|
+
*/ async function replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
|
|
6945
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6946
|
+
if (!pathParams.teamSlug) {
|
|
6947
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6948
|
+
}
|
|
6949
|
+
if (!pathParams.projectSlug) {
|
|
6950
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6951
|
+
}
|
|
6952
|
+
if (!pathParams.repositoryName) {
|
|
6953
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6954
|
+
}
|
|
6955
|
+
if (!pathParams.reference) {
|
|
6956
|
+
throw new Error(`Missing required path parameter: reference`);
|
|
6957
|
+
}
|
|
6958
|
+
const data = await request({
|
|
6959
|
+
method: "PUT",
|
|
6960
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
|
|
6961
|
+
...requestConfig,
|
|
6962
|
+
headers: {
|
|
6963
|
+
...requestConfig.headers
|
|
6964
|
+
}
|
|
6965
|
+
});
|
|
6966
|
+
return data;
|
|
6967
|
+
}
|
|
6968
|
+
/**
|
|
6969
|
+
* @summary Pull an image manifest
|
|
6970
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Fetch a manifest by tag or digest.
|
|
6971
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
6972
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
|
|
6973
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
6974
|
+
if (!pathParams.teamSlug) {
|
|
6975
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
6976
|
+
}
|
|
6977
|
+
if (!pathParams.projectSlug) {
|
|
6978
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
6979
|
+
}
|
|
6980
|
+
if (!pathParams.repositoryName) {
|
|
6981
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
6982
|
+
}
|
|
6983
|
+
if (!pathParams.reference) {
|
|
6984
|
+
throw new Error(`Missing required path parameter: reference`);
|
|
6985
|
+
}
|
|
6986
|
+
const data = await request({
|
|
6987
|
+
method: "GET",
|
|
6988
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
|
|
6989
|
+
...requestConfig,
|
|
6990
|
+
headers: {
|
|
6991
|
+
...requestConfig.headers
|
|
6992
|
+
}
|
|
6993
|
+
});
|
|
6994
|
+
return data;
|
|
6995
|
+
}
|
|
6996
|
+
/**
|
|
6997
|
+
* @summary Delete an image manifest
|
|
6998
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Reference must be a digest.
|
|
6999
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
7000
|
+
*/ async function deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
|
|
7001
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
7002
|
+
if (!pathParams.teamSlug) {
|
|
7003
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
7004
|
+
}
|
|
7005
|
+
if (!pathParams.projectSlug) {
|
|
7006
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
7007
|
+
}
|
|
7008
|
+
if (!pathParams.repositoryName) {
|
|
7009
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
7010
|
+
}
|
|
7011
|
+
if (!pathParams.reference) {
|
|
7012
|
+
throw new Error(`Missing required path parameter: reference`);
|
|
7013
|
+
}
|
|
7014
|
+
const data = await request({
|
|
7015
|
+
method: "DELETE",
|
|
7016
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
|
|
7017
|
+
...requestConfig,
|
|
7018
|
+
headers: {
|
|
7019
|
+
...requestConfig.headers
|
|
7020
|
+
}
|
|
7021
|
+
});
|
|
7022
|
+
return data;
|
|
7023
|
+
}
|
|
7024
|
+
/**
|
|
7025
|
+
* @summary List image tags
|
|
7026
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/tags/list List the tags in a repository.
|
|
7027
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list
|
|
7028
|
+
*/ async function getByTeamSlugByProjectSlugByRepositoryNameTagsList({ pathParams, queryParams, config } = {}) {
|
|
7029
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
7030
|
+
if (!pathParams.teamSlug) {
|
|
7031
|
+
throw new Error(`Missing required path parameter: teamSlug`);
|
|
7032
|
+
}
|
|
7033
|
+
if (!pathParams.projectSlug) {
|
|
7034
|
+
throw new Error(`Missing required path parameter: projectSlug`);
|
|
7035
|
+
}
|
|
7036
|
+
if (!pathParams.repositoryName) {
|
|
7037
|
+
throw new Error(`Missing required path parameter: repositoryName`);
|
|
7038
|
+
}
|
|
7039
|
+
const data = await request({
|
|
7040
|
+
method: "GET",
|
|
7041
|
+
url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/tags/list`,
|
|
7042
|
+
queryParams,
|
|
7043
|
+
...requestConfig,
|
|
7044
|
+
headers: {
|
|
7045
|
+
...requestConfig.headers
|
|
7046
|
+
}
|
|
7047
|
+
});
|
|
7048
|
+
return data;
|
|
7049
|
+
}
|
|
6629
7050
|
/**
|
|
6630
7051
|
* @link /web/insights/toggle
|
|
6631
7052
|
*/ async function createWebInsightsToggle({ queryParams, config } = {}) {
|
|
@@ -7330,7 +7751,7 @@ const operationsByPath = {
|
|
|
7330
7751
|
"POST /v1/projects/{projectId}/pause": pauseProject,
|
|
7331
7752
|
"POST /v1/projects/{projectId}/unpause": unpauseProject,
|
|
7332
7753
|
"GET /v2/sandboxes": listSandboxes,
|
|
7333
|
-
"POST /v2/sandboxes":
|
|
7754
|
+
"POST /v2/sandboxes": createSandboxesV2,
|
|
7334
7755
|
"GET /v2/sandboxes/drives": listDrives,
|
|
7335
7756
|
"POST /v2/sandboxes/drives/{name}": getOrCreateDrive,
|
|
7336
7757
|
"DELETE /v2/sandboxes/drives/{name}": deleteDrive,
|
|
@@ -7355,6 +7776,7 @@ const operationsByPath = {
|
|
|
7355
7776
|
"POST /v2/sandboxes/sessions/{sessionId}/fs/write": writeSessionFiles,
|
|
7356
7777
|
"POST /v2/sandboxes/sessions/{sessionId}/snapshot": createSessionSnapshot,
|
|
7357
7778
|
"POST /v2/sandboxes/{name}/fork": createSandboxesByNameFork,
|
|
7779
|
+
"POST /v3/sandboxes": createSandboxesV3,
|
|
7358
7780
|
"POST /v1/security/attack-mode": updateAttackChallengeMode,
|
|
7359
7781
|
"GET /v1/security/firewall/config": getSecurityFirewallConfig,
|
|
7360
7782
|
"PUT /v1/security/firewall/config": putFirewallConfig,
|
|
@@ -7401,10 +7823,26 @@ const operationsByPath = {
|
|
|
7401
7823
|
"GET /v1/vcr/repository/{idOrName}": getRepository,
|
|
7402
7824
|
"DELETE /v1/vcr/repository/{idOrName}": deleteRepository,
|
|
7403
7825
|
"GET /v1/vcr/repository/{idOrName}/images": listRepositoryImages,
|
|
7826
|
+
"POST /v1/vcr/repository/{idOrName}/permissions": addRepositoryPermission,
|
|
7827
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions": removeRepositoryPermission,
|
|
7828
|
+
"GET /v1/vcr/repository/{idOrName}/permissions": listRepositoryPermissions,
|
|
7829
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions/all": clearRepositoryPermissions,
|
|
7404
7830
|
"GET /v1/vcr/repository/{idOrName}/tags": listRepositoryTags,
|
|
7405
7831
|
"GET /v1/vcr/repository/{idOrName}/tags/{tag}": getRepositoryTag,
|
|
7406
7832
|
"GET /v1/vcr/repository/{idOrName}/images/{imageIdOrDigest}": getRepositoryImage,
|
|
7407
7833
|
"DELETE /v1/vcr/repository/{idOrName}/images/{imageId}": deleteRepositoryImage,
|
|
7834
|
+
"GET /v2/": getRoot,
|
|
7835
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
7836
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
7837
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7838
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7839
|
+
"PATCH /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7840
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
7841
|
+
"POST /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/": createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads,
|
|
7842
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
7843
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
7844
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
7845
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list": getByTeamSlugByProjectSlugByRepositoryNameTagsList,
|
|
7408
7846
|
"POST /web/insights/toggle": createWebInsightsToggle,
|
|
7409
7847
|
"GET /v1/query/web-analytics/visits/aggregate": aggregatePageviews,
|
|
7410
7848
|
"GET /v1/query/web-analytics/events/aggregate": aggregateEvents,
|
|
@@ -7761,7 +8199,7 @@ const operationsByTag = {
|
|
|
7761
8199
|
},
|
|
7762
8200
|
sandboxes: {
|
|
7763
8201
|
listSandboxes,
|
|
7764
|
-
|
|
8202
|
+
createSandboxesV2,
|
|
7765
8203
|
listDrives,
|
|
7766
8204
|
getOrCreateDrive,
|
|
7767
8205
|
deleteDrive,
|
|
@@ -7785,7 +8223,8 @@ const operationsByTag = {
|
|
|
7785
8223
|
createSessionDirectory,
|
|
7786
8224
|
writeSessionFiles,
|
|
7787
8225
|
createSessionSnapshot,
|
|
7788
|
-
createSandboxesByNameFork
|
|
8226
|
+
createSandboxesByNameFork,
|
|
8227
|
+
createSandboxesV3
|
|
7789
8228
|
},
|
|
7790
8229
|
security: {
|
|
7791
8230
|
updateAttackChallengeMode,
|
|
@@ -7802,6 +8241,11 @@ const operationsByTag = {
|
|
|
7802
8241
|
getSecurityFirewallEvents,
|
|
7803
8242
|
generateFirewallRule
|
|
7804
8243
|
},
|
|
8244
|
+
storage: {
|
|
8245
|
+
getStorageStoresById,
|
|
8246
|
+
createStorageStoresBlob,
|
|
8247
|
+
deleteStorageStoresBlobById
|
|
8248
|
+
},
|
|
7805
8249
|
teams: {
|
|
7806
8250
|
getTeamMembers,
|
|
7807
8251
|
inviteUserToTeam,
|
|
@@ -7826,10 +8270,26 @@ const operationsByTag = {
|
|
|
7826
8270
|
getRepository,
|
|
7827
8271
|
deleteRepository,
|
|
7828
8272
|
listRepositoryImages,
|
|
8273
|
+
addRepositoryPermission,
|
|
8274
|
+
removeRepositoryPermission,
|
|
8275
|
+
listRepositoryPermissions,
|
|
8276
|
+
clearRepositoryPermissions,
|
|
7829
8277
|
listRepositoryTags,
|
|
7830
8278
|
getRepositoryTag,
|
|
7831
8279
|
getRepositoryImage,
|
|
7832
|
-
deleteRepositoryImage
|
|
8280
|
+
deleteRepositoryImage,
|
|
8281
|
+
getRoot,
|
|
8282
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
8283
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
|
|
8284
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8285
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8286
|
+
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8287
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
|
|
8288
|
+
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads,
|
|
8289
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
8290
|
+
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
8291
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
|
|
8292
|
+
getByTeamSlugByProjectSlugByRepositoryNameTagsList
|
|
7833
8293
|
},
|
|
7834
8294
|
webAnalytics: {
|
|
7835
8295
|
aggregatePageviews,
|
|
@@ -8410,7 +8870,7 @@ const tagDictionary = {
|
|
|
8410
8870
|
"getSessionCommandLogs"
|
|
8411
8871
|
],
|
|
8412
8872
|
POST: [
|
|
8413
|
-
"
|
|
8873
|
+
"createSandboxesV2",
|
|
8414
8874
|
"getOrCreateDrive",
|
|
8415
8875
|
"runSessionCommand",
|
|
8416
8876
|
"killSessionCommand",
|
|
@@ -8421,7 +8881,8 @@ const tagDictionary = {
|
|
|
8421
8881
|
"createSessionDirectory",
|
|
8422
8882
|
"writeSessionFiles",
|
|
8423
8883
|
"createSessionSnapshot",
|
|
8424
|
-
"createSandboxesByNameFork"
|
|
8884
|
+
"createSandboxesByNameFork",
|
|
8885
|
+
"createSandboxesV3"
|
|
8425
8886
|
],
|
|
8426
8887
|
DELETE: [
|
|
8427
8888
|
"deleteDrive",
|
|
@@ -8457,6 +8918,17 @@ const tagDictionary = {
|
|
|
8457
8918
|
"removeBypassIp"
|
|
8458
8919
|
]
|
|
8459
8920
|
},
|
|
8921
|
+
storage: {
|
|
8922
|
+
GET: [
|
|
8923
|
+
"getStorageStoresById"
|
|
8924
|
+
],
|
|
8925
|
+
POST: [
|
|
8926
|
+
"createStorageStoresBlob"
|
|
8927
|
+
],
|
|
8928
|
+
DELETE: [
|
|
8929
|
+
"deleteStorageStoresBlobById"
|
|
8930
|
+
]
|
|
8931
|
+
},
|
|
8460
8932
|
teams: {
|
|
8461
8933
|
GET: [
|
|
8462
8934
|
"getTeamMembers",
|
|
@@ -8485,19 +8957,39 @@ const tagDictionary = {
|
|
|
8485
8957
|
},
|
|
8486
8958
|
vcr: {
|
|
8487
8959
|
POST: [
|
|
8488
|
-
"createRepository"
|
|
8960
|
+
"createRepository",
|
|
8961
|
+
"addRepositoryPermission",
|
|
8962
|
+
"createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads"
|
|
8489
8963
|
],
|
|
8490
8964
|
GET: [
|
|
8491
8965
|
"listRepositories",
|
|
8492
8966
|
"getRepository",
|
|
8493
8967
|
"listRepositoryImages",
|
|
8968
|
+
"listRepositoryPermissions",
|
|
8494
8969
|
"listRepositoryTags",
|
|
8495
8970
|
"getRepositoryTag",
|
|
8496
|
-
"getRepositoryImage"
|
|
8971
|
+
"getRepositoryImage",
|
|
8972
|
+
"getRoot",
|
|
8973
|
+
"getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest",
|
|
8974
|
+
"getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
|
|
8975
|
+
"getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference",
|
|
8976
|
+
"getByTeamSlugByProjectSlugByRepositoryNameTagsList"
|
|
8497
8977
|
],
|
|
8498
8978
|
DELETE: [
|
|
8499
8979
|
"deleteRepository",
|
|
8500
|
-
"
|
|
8980
|
+
"removeRepositoryPermission",
|
|
8981
|
+
"clearRepositoryPermissions",
|
|
8982
|
+
"deleteRepositoryImage",
|
|
8983
|
+
"deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest",
|
|
8984
|
+
"deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
|
|
8985
|
+
"deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"
|
|
8986
|
+
],
|
|
8987
|
+
PATCH: [
|
|
8988
|
+
"updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid"
|
|
8989
|
+
],
|
|
8990
|
+
PUT: [
|
|
8991
|
+
"replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
|
|
8992
|
+
"replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"
|
|
8501
8993
|
]
|
|
8502
8994
|
},
|
|
8503
8995
|
webAnalytics: {
|
|
@@ -8557,6 +9049,7 @@ exports.acceptProjectTransferRequest = acceptProjectTransferRequest;
|
|
|
8557
9049
|
exports.addBypassIp = addBypassIp;
|
|
8558
9050
|
exports.addProjectDomain = addProjectDomain;
|
|
8559
9051
|
exports.addProjectMember = addProjectMember;
|
|
9052
|
+
exports.addRepositoryPermission = addRepositoryPermission;
|
|
8560
9053
|
exports.addRoute = addRoute;
|
|
8561
9054
|
exports.aggregateEvents = aggregateEvents;
|
|
8562
9055
|
exports.aggregatePageviews = aggregatePageviews;
|
|
@@ -8569,6 +9062,7 @@ exports.buyDomains = buyDomains;
|
|
|
8569
9062
|
exports.buySingleDomain = buySingleDomain;
|
|
8570
9063
|
exports.cancelDeployment = cancelDeployment;
|
|
8571
9064
|
exports.claimDomainOwnership = claimDomainOwnership;
|
|
9065
|
+
exports.clearRepositoryPermissions = clearRepositoryPermissions;
|
|
8572
9066
|
exports.completeRollingRelease = completeRollingRelease;
|
|
8573
9067
|
exports.connectIntegrationResourceToProject = connectIntegrationResourceToProject;
|
|
8574
9068
|
exports.countEvents = countEvents;
|
|
@@ -8578,6 +9072,7 @@ exports.createAccessGroupProject = createAccessGroupProject;
|
|
|
8578
9072
|
exports.createAiGatewayRule = createAiGatewayRule;
|
|
8579
9073
|
exports.createApiKeys = createApiKeys;
|
|
8580
9074
|
exports.createAuthToken = createAuthToken;
|
|
9075
|
+
exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
8581
9076
|
exports.createCheck = createCheck;
|
|
8582
9077
|
exports.createConfigurableLogDrain = createConfigurableLogDrain;
|
|
8583
9078
|
exports.createConnector = createConnector;
|
|
@@ -8605,8 +9100,9 @@ exports.createProjectEnv = createProjectEnv;
|
|
|
8605
9100
|
exports.createProjectTransferRequest = createProjectTransferRequest;
|
|
8606
9101
|
exports.createRecord = createRecord;
|
|
8607
9102
|
exports.createRepository = createRepository;
|
|
8608
|
-
exports.createSandboxes = createSandboxes;
|
|
8609
9103
|
exports.createSandboxesByNameFork = createSandboxesByNameFork;
|
|
9104
|
+
exports.createSandboxesV2 = createSandboxesV2;
|
|
9105
|
+
exports.createSandboxesV3 = createSandboxesV3;
|
|
8610
9106
|
exports.createSdkKey = createSdkKey;
|
|
8611
9107
|
exports.createSecurityFirewallConfigByConfigVersionActivate = createSecurityFirewallConfigByConfigVersionActivate;
|
|
8612
9108
|
exports.createSessionDirectory = createSessionDirectory;
|
|
@@ -8626,6 +9122,9 @@ exports.deleteAiGatewayRule = deleteAiGatewayRule;
|
|
|
8626
9122
|
exports.deleteAlias = deleteAlias;
|
|
8627
9123
|
exports.deleteAllArtifacts = deleteAllArtifacts;
|
|
8628
9124
|
exports.deleteAuthToken = deleteAuthToken;
|
|
9125
|
+
exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
9126
|
+
exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
9127
|
+
exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
8629
9128
|
exports.deleteConfigurableLogDrain = deleteConfigurableLogDrain;
|
|
8630
9129
|
exports.deleteConfiguration = deleteConfiguration;
|
|
8631
9130
|
exports.deleteDeployment = deleteDeployment;
|
|
@@ -8677,6 +9176,10 @@ exports.getAuthToken = getAuthToken;
|
|
|
8677
9176
|
exports.getAuthUser = getAuthUser;
|
|
8678
9177
|
exports.getBillingPlans = getBillingPlans;
|
|
8679
9178
|
exports.getBulkAvailability = getBulkAvailability;
|
|
9179
|
+
exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
9180
|
+
exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
9181
|
+
exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
9182
|
+
exports.getByTeamSlugByProjectSlugByRepositoryNameTagsList = getByTeamSlugByProjectSlugByRepositoryNameTagsList;
|
|
8680
9183
|
exports.getBypassIp = getBypassIp;
|
|
8681
9184
|
exports.getCertById = getCertById;
|
|
8682
9185
|
exports.getCerts = getCerts;
|
|
@@ -8754,6 +9257,7 @@ exports.getRepositoryTag = getRepositoryTag;
|
|
|
8754
9257
|
exports.getRollingRelease = getRollingRelease;
|
|
8755
9258
|
exports.getRollingReleaseBillingStatus = getRollingReleaseBillingStatus;
|
|
8756
9259
|
exports.getRollingReleaseConfig = getRollingReleaseConfig;
|
|
9260
|
+
exports.getRoot = getRoot;
|
|
8757
9261
|
exports.getRouteVersions = getRouteVersions;
|
|
8758
9262
|
exports.getRoutes = getRoutes;
|
|
8759
9263
|
exports.getRuntimeLogs = getRuntimeLogs;
|
|
@@ -8808,6 +9312,7 @@ exports.listProjectChecks = listProjectChecks;
|
|
|
8808
9312
|
exports.listPromoteAliases = listPromoteAliases;
|
|
8809
9313
|
exports.listRepositories = listRepositories;
|
|
8810
9314
|
exports.listRepositoryImages = listRepositoryImages;
|
|
9315
|
+
exports.listRepositoryPermissions = listRepositoryPermissions;
|
|
8811
9316
|
exports.listRepositoryTags = listRepositoryTags;
|
|
8812
9317
|
exports.listSandboxes = listSandboxes;
|
|
8813
9318
|
exports.listSessionCommands = listSessionCommands;
|
|
@@ -8841,8 +9346,11 @@ exports.removeProjectDomain = removeProjectDomain;
|
|
|
8841
9346
|
exports.removeProjectEnv = removeProjectEnv;
|
|
8842
9347
|
exports.removeProjectMember = removeProjectMember;
|
|
8843
9348
|
exports.removeRecord = removeRecord;
|
|
9349
|
+
exports.removeRepositoryPermission = removeRepositoryPermission;
|
|
8844
9350
|
exports.removeTeamMember = removeTeamMember;
|
|
8845
9351
|
exports.renewDomain = renewDomain;
|
|
9352
|
+
exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
9353
|
+
exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
8846
9354
|
exports.replaceDomainsByDomainRecords = replaceDomainsByDomainRecords;
|
|
8847
9355
|
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
8848
9356
|
exports.requestAccessToTeam = requestAccessToTeam;
|
|
@@ -8871,6 +9379,7 @@ exports.updateAccessGroup = updateAccessGroup;
|
|
|
8871
9379
|
exports.updateAccessGroupProject = updateAccessGroupProject;
|
|
8872
9380
|
exports.updateAiGatewayRule = updateAiGatewayRule;
|
|
8873
9381
|
exports.updateAttackChallengeMode = updateAttackChallengeMode;
|
|
9382
|
+
exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
8874
9383
|
exports.updateCheck = updateCheck;
|
|
8875
9384
|
exports.updateCustomEnvironment = updateCustomEnvironment;
|
|
8876
9385
|
exports.updateDeploymentCheckRun = updateDeploymentCheckRun;
|