@cloudfleet/sdk 0.0.1-5753ad1 → 0.0.1-5aba3bd
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/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +39 -8
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/types.gen.d.ts +4 -11
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +1 -1
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +10 -12
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +1 -3
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts.map +1 -1
- package/dist/core/auth.gen.js.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +16 -8
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/params.gen.d.ts +10 -0
- package/dist/core/params.gen.d.ts.map +1 -1
- package/dist/core/params.gen.js +18 -6
- package/dist/core/params.gen.js.map +1 -1
- package/dist/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/core/pathSerializer.gen.js +3 -11
- package/dist/core/pathSerializer.gen.js.map +1 -1
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
- package/dist/core/queryKeySerializer.gen.js +4 -11
- package/dist/core/queryKeySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +5 -7
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +1 -1
- package/dist/core/types.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +397 -70
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +933 -149
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +37 -5
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +74 -127
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +406 -41
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +520 -561
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +313 -445
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -4
package/dist/types.gen.d.ts
CHANGED
|
@@ -169,13 +169,13 @@ export type ClusterCreateInput = {
|
|
|
169
169
|
*/
|
|
170
170
|
tier: 'basic' | 'pro';
|
|
171
171
|
/**
|
|
172
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
172
|
+
* Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
173
173
|
*/
|
|
174
|
-
region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
174
|
+
region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
175
175
|
/**
|
|
176
176
|
* Version of the kubernetes cluster.
|
|
177
177
|
*/
|
|
178
|
-
version_channel?:
|
|
178
|
+
version_channel?: '1.x.x-cfke.x' | '1.31.x-cfke.x' | '1.32.x-cfke.x' | '1.33.x-cfke.x';
|
|
179
179
|
};
|
|
180
180
|
export type ClusterJoinInformation = {
|
|
181
181
|
/**
|
|
@@ -186,6 +186,10 @@ export type ClusterJoinInformation = {
|
|
|
186
186
|
* Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
|
|
187
187
|
*/
|
|
188
188
|
endpoint: string;
|
|
189
|
+
/**
|
|
190
|
+
* Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
|
|
191
|
+
*/
|
|
192
|
+
cluster_dns: string;
|
|
189
193
|
/**
|
|
190
194
|
* Authentication key for the cluster.
|
|
191
195
|
*/
|
|
@@ -243,13 +247,9 @@ export type Cluster = {
|
|
|
243
247
|
*/
|
|
244
248
|
tier: 'basic' | 'pro';
|
|
245
249
|
/**
|
|
246
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
247
|
-
*/
|
|
248
|
-
region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
249
|
-
/**
|
|
250
|
-
* Version of the kubernetes cluster.
|
|
250
|
+
* Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
251
251
|
*/
|
|
252
|
-
|
|
252
|
+
region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
253
253
|
/**
|
|
254
254
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
255
255
|
*/
|
|
@@ -279,6 +279,10 @@ export type Cluster = {
|
|
|
279
279
|
* Indicates if the cluster is ready to be used.
|
|
280
280
|
*/
|
|
281
281
|
ready?: boolean;
|
|
282
|
+
/**
|
|
283
|
+
* Version of the kubernetes cluster.
|
|
284
|
+
*/
|
|
285
|
+
version_channel?: string;
|
|
282
286
|
};
|
|
283
287
|
export type ClusterUpdateInput = {
|
|
284
288
|
/**
|
|
@@ -422,7 +426,7 @@ export type Invite = {
|
|
|
422
426
|
};
|
|
423
427
|
export type Invoice = {
|
|
424
428
|
/**
|
|
425
|
-
* Unique identifier of the invoice.
|
|
429
|
+
* Unique identifier of the invoice.
|
|
426
430
|
*/
|
|
427
431
|
id?: string;
|
|
428
432
|
number?: string;
|
|
@@ -452,50 +456,91 @@ export type Invoice = {
|
|
|
452
456
|
period_end: string;
|
|
453
457
|
invoice_pdf?: string;
|
|
454
458
|
};
|
|
455
|
-
export type
|
|
459
|
+
export type MarketplaceListingFiles = {
|
|
456
460
|
/**
|
|
457
|
-
*
|
|
461
|
+
* Raw Chart.yaml content from the Helm chart
|
|
458
462
|
*/
|
|
459
|
-
|
|
463
|
+
chartYaml?: string;
|
|
460
464
|
/**
|
|
461
|
-
*
|
|
465
|
+
* Raw values.yaml content from the Helm chart
|
|
462
466
|
*/
|
|
463
|
-
|
|
467
|
+
valuesYaml?: string;
|
|
464
468
|
/**
|
|
465
|
-
*
|
|
469
|
+
* JSON schema for values.yaml as a string
|
|
466
470
|
*/
|
|
467
|
-
|
|
471
|
+
valuesSchemaJson?: string;
|
|
472
|
+
};
|
|
473
|
+
export type MarketplaceListing = {
|
|
468
474
|
/**
|
|
469
|
-
*
|
|
475
|
+
* Name of the chart
|
|
470
476
|
*/
|
|
471
|
-
|
|
477
|
+
name: string;
|
|
472
478
|
/**
|
|
473
|
-
*
|
|
479
|
+
* Available versions of the chart
|
|
474
480
|
*/
|
|
475
|
-
|
|
481
|
+
versions: Array<string>;
|
|
476
482
|
/**
|
|
477
|
-
*
|
|
483
|
+
* Version channels for the chart
|
|
478
484
|
*/
|
|
479
|
-
|
|
485
|
+
version_channels: Array<string>;
|
|
480
486
|
/**
|
|
481
|
-
*
|
|
487
|
+
* Latest version of the chart
|
|
482
488
|
*/
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
489
|
+
latestVersion: string;
|
|
490
|
+
/**
|
|
491
|
+
* Chart metadata
|
|
492
|
+
*/
|
|
493
|
+
metadata?: {
|
|
486
494
|
/**
|
|
487
|
-
*
|
|
495
|
+
* Chart name from metadata
|
|
496
|
+
*/
|
|
497
|
+
name: string;
|
|
498
|
+
/**
|
|
499
|
+
* Chart version from metadata
|
|
488
500
|
*/
|
|
489
501
|
version: string;
|
|
490
502
|
/**
|
|
491
|
-
*
|
|
503
|
+
* Chart description
|
|
492
504
|
*/
|
|
493
|
-
|
|
505
|
+
description?: string;
|
|
494
506
|
/**
|
|
495
|
-
*
|
|
507
|
+
* Application version
|
|
496
508
|
*/
|
|
497
|
-
|
|
498
|
-
|
|
509
|
+
appVersion?: string;
|
|
510
|
+
/**
|
|
511
|
+
* Helm API version
|
|
512
|
+
*/
|
|
513
|
+
apiVersion?: string;
|
|
514
|
+
/**
|
|
515
|
+
* Chart keywords
|
|
516
|
+
*/
|
|
517
|
+
keywords?: Array<string>;
|
|
518
|
+
/**
|
|
519
|
+
* Chart home URL
|
|
520
|
+
*/
|
|
521
|
+
home?: string;
|
|
522
|
+
/**
|
|
523
|
+
* A URL to an SVG or PNG image to be used as an icon
|
|
524
|
+
*/
|
|
525
|
+
icon?: string;
|
|
526
|
+
/**
|
|
527
|
+
* Chart source URLs
|
|
528
|
+
*/
|
|
529
|
+
sources?: Array<string>;
|
|
530
|
+
/**
|
|
531
|
+
* Chart maintainers
|
|
532
|
+
*/
|
|
533
|
+
maintainers?: Array<{
|
|
534
|
+
/**
|
|
535
|
+
* Maintainer name
|
|
536
|
+
*/
|
|
537
|
+
name: string;
|
|
538
|
+
/**
|
|
539
|
+
* Maintainer email
|
|
540
|
+
*/
|
|
541
|
+
email?: string;
|
|
542
|
+
}>;
|
|
543
|
+
};
|
|
499
544
|
};
|
|
500
545
|
export type OrganizationCreateInput = {
|
|
501
546
|
/**
|
|
@@ -577,6 +622,18 @@ export type Organization = {
|
|
|
577
622
|
*/
|
|
578
623
|
label: string;
|
|
579
624
|
}>;
|
|
625
|
+
/**
|
|
626
|
+
* User-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
627
|
+
*/
|
|
628
|
+
copilot_user_hourly_tokens: number;
|
|
629
|
+
/**
|
|
630
|
+
* Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
631
|
+
*/
|
|
632
|
+
copilot_organization_hourly_tokens: number;
|
|
633
|
+
/**
|
|
634
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
635
|
+
*/
|
|
636
|
+
cfcr_storage_gb: number;
|
|
580
637
|
};
|
|
581
638
|
/**
|
|
582
639
|
* Status of the organization. Can be `active` or `closed`, or `suspended`.
|
|
@@ -655,6 +712,166 @@ export type PlatformQuota = {
|
|
|
655
712
|
*/
|
|
656
713
|
label: string;
|
|
657
714
|
}>;
|
|
715
|
+
/**
|
|
716
|
+
* User-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
717
|
+
*/
|
|
718
|
+
copilot_user_hourly_tokens: number;
|
|
719
|
+
/**
|
|
720
|
+
* Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
|
|
721
|
+
*/
|
|
722
|
+
copilot_organization_hourly_tokens: number;
|
|
723
|
+
/**
|
|
724
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
725
|
+
*/
|
|
726
|
+
cfcr_storage_gb: number;
|
|
727
|
+
};
|
|
728
|
+
export type RegistryRepository = {
|
|
729
|
+
/**
|
|
730
|
+
* Repository name.
|
|
731
|
+
*/
|
|
732
|
+
name: string;
|
|
733
|
+
/**
|
|
734
|
+
* Registry region.
|
|
735
|
+
*/
|
|
736
|
+
region: string;
|
|
737
|
+
/**
|
|
738
|
+
* Full URI of the repository.
|
|
739
|
+
*/
|
|
740
|
+
uri: string;
|
|
741
|
+
};
|
|
742
|
+
export type RegistryRepositoryWithTags = {
|
|
743
|
+
/**
|
|
744
|
+
* Repository name.
|
|
745
|
+
*/
|
|
746
|
+
name: string;
|
|
747
|
+
/**
|
|
748
|
+
* Registry region.
|
|
749
|
+
*/
|
|
750
|
+
region: string;
|
|
751
|
+
/**
|
|
752
|
+
* Full URI of the repository.
|
|
753
|
+
*/
|
|
754
|
+
uri: string;
|
|
755
|
+
/**
|
|
756
|
+
* Array of tags in the repository.
|
|
757
|
+
*/
|
|
758
|
+
tags: Array<{
|
|
759
|
+
/**
|
|
760
|
+
* Tag name.
|
|
761
|
+
*/
|
|
762
|
+
name: string;
|
|
763
|
+
/**
|
|
764
|
+
* Size of the tag in bytes.
|
|
765
|
+
*/
|
|
766
|
+
size: number;
|
|
767
|
+
/**
|
|
768
|
+
* Media type of the manifest.
|
|
769
|
+
*/
|
|
770
|
+
mediaType?: string;
|
|
771
|
+
/**
|
|
772
|
+
* Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
|
|
773
|
+
*/
|
|
774
|
+
platforms?: Array<string>;
|
|
775
|
+
}>;
|
|
776
|
+
/**
|
|
777
|
+
* Total size of all tags in the repository in bytes.
|
|
778
|
+
*/
|
|
779
|
+
totalSize: number;
|
|
780
|
+
};
|
|
781
|
+
export type RegistryTag = {
|
|
782
|
+
/**
|
|
783
|
+
* Tag name.
|
|
784
|
+
*/
|
|
785
|
+
name: string;
|
|
786
|
+
/**
|
|
787
|
+
* Manifest digest for pulling by digest.
|
|
788
|
+
*/
|
|
789
|
+
digest: string;
|
|
790
|
+
/**
|
|
791
|
+
* Media type of the manifest.
|
|
792
|
+
*/
|
|
793
|
+
mediaType?: string;
|
|
794
|
+
/**
|
|
795
|
+
* Manifest config metadata.
|
|
796
|
+
*/
|
|
797
|
+
config?: {
|
|
798
|
+
/**
|
|
799
|
+
* Size of the config in bytes.
|
|
800
|
+
*/
|
|
801
|
+
size: number;
|
|
802
|
+
};
|
|
803
|
+
/**
|
|
804
|
+
* Array of layer metadata.
|
|
805
|
+
*/
|
|
806
|
+
layers?: Array<{
|
|
807
|
+
/**
|
|
808
|
+
* Digest of the layer.
|
|
809
|
+
*/
|
|
810
|
+
digest?: string;
|
|
811
|
+
/**
|
|
812
|
+
* Size of the layer in bytes.
|
|
813
|
+
*/
|
|
814
|
+
size: number;
|
|
815
|
+
}>;
|
|
816
|
+
/**
|
|
817
|
+
* Array of manifests for multi-arch images.
|
|
818
|
+
*/
|
|
819
|
+
manifests?: Array<{
|
|
820
|
+
/**
|
|
821
|
+
* Digest of the manifest.
|
|
822
|
+
*/
|
|
823
|
+
digest: string;
|
|
824
|
+
/**
|
|
825
|
+
* Platform information for the manifest.
|
|
826
|
+
*/
|
|
827
|
+
platform?: {
|
|
828
|
+
/**
|
|
829
|
+
* Architecture of the platform.
|
|
830
|
+
*/
|
|
831
|
+
architecture: string;
|
|
832
|
+
/**
|
|
833
|
+
* Operating system of the platform.
|
|
834
|
+
*/
|
|
835
|
+
os: string;
|
|
836
|
+
/**
|
|
837
|
+
* Variant of the platform (e.g., v7, v8 for ARM).
|
|
838
|
+
*/
|
|
839
|
+
variant?: string;
|
|
840
|
+
};
|
|
841
|
+
/**
|
|
842
|
+
* Layers for this platform.
|
|
843
|
+
*/
|
|
844
|
+
layers?: Array<{
|
|
845
|
+
/**
|
|
846
|
+
* Digest of the layer.
|
|
847
|
+
*/
|
|
848
|
+
digest?: string;
|
|
849
|
+
/**
|
|
850
|
+
* Size of the layer in bytes.
|
|
851
|
+
*/
|
|
852
|
+
size: number;
|
|
853
|
+
}>;
|
|
854
|
+
/**
|
|
855
|
+
* Total size of this platform manifest in bytes.
|
|
856
|
+
*/
|
|
857
|
+
size?: number;
|
|
858
|
+
}>;
|
|
859
|
+
/**
|
|
860
|
+
* Total size of the tag in bytes.
|
|
861
|
+
*/
|
|
862
|
+
size: number;
|
|
863
|
+
/**
|
|
864
|
+
* Registry region.
|
|
865
|
+
*/
|
|
866
|
+
region: string;
|
|
867
|
+
/**
|
|
868
|
+
* Repository name.
|
|
869
|
+
*/
|
|
870
|
+
repository: string;
|
|
871
|
+
/**
|
|
872
|
+
* Full URI of the tag.
|
|
873
|
+
*/
|
|
874
|
+
uri: string;
|
|
658
875
|
};
|
|
659
876
|
export type TokenCreateInput = {
|
|
660
877
|
/**
|
|
@@ -1470,24 +1687,34 @@ export type ListMarketplaceChartsResponses = {
|
|
|
1470
1687
|
200: Array<MarketplaceListing>;
|
|
1471
1688
|
};
|
|
1472
1689
|
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
1473
|
-
export type
|
|
1690
|
+
export type GetMarketplaceChartFilesData = {
|
|
1474
1691
|
body?: never;
|
|
1475
1692
|
path: {
|
|
1476
1693
|
/**
|
|
1477
|
-
*
|
|
1694
|
+
* Name of the chart in the marketplace.
|
|
1695
|
+
*/
|
|
1696
|
+
chart_name: string;
|
|
1697
|
+
/**
|
|
1698
|
+
* Version channel pattern to match (e.g., "1.31.x-cfke.x" for latest 1.31 patch, "1.x.x-cfke.x" for latest 1.x minor).
|
|
1478
1699
|
*/
|
|
1479
|
-
|
|
1700
|
+
version_channel: string;
|
|
1480
1701
|
};
|
|
1481
1702
|
query?: never;
|
|
1482
|
-
url: '/marketplace/{
|
|
1703
|
+
url: '/marketplace/{chart_name}/files/{version_channel}';
|
|
1483
1704
|
};
|
|
1484
|
-
export type
|
|
1705
|
+
export type GetMarketplaceChartFilesErrors = {
|
|
1485
1706
|
/**
|
|
1486
|
-
*
|
|
1707
|
+
* Chart not found or no version matches the channel
|
|
1487
1708
|
*/
|
|
1488
|
-
|
|
1709
|
+
404: unknown;
|
|
1489
1710
|
};
|
|
1490
|
-
export type
|
|
1711
|
+
export type GetMarketplaceChartFilesResponses = {
|
|
1712
|
+
/**
|
|
1713
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1714
|
+
*/
|
|
1715
|
+
200: MarketplaceListingFiles;
|
|
1716
|
+
};
|
|
1717
|
+
export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
|
|
1491
1718
|
export type PostMcpData = {
|
|
1492
1719
|
/**
|
|
1493
1720
|
* JSON-RPC 2.0 request payload
|
|
@@ -1555,6 +1782,144 @@ export type CreateOrganizationResponses = {
|
|
|
1555
1782
|
*/
|
|
1556
1783
|
200: unknown;
|
|
1557
1784
|
};
|
|
1785
|
+
export type ListRepositoriesData = {
|
|
1786
|
+
body?: never;
|
|
1787
|
+
path?: never;
|
|
1788
|
+
query?: never;
|
|
1789
|
+
url: '/registry';
|
|
1790
|
+
};
|
|
1791
|
+
export type ListRepositoriesErrors = {
|
|
1792
|
+
/**
|
|
1793
|
+
* Not authenticated
|
|
1794
|
+
*/
|
|
1795
|
+
401: unknown;
|
|
1796
|
+
/**
|
|
1797
|
+
* Internal server error
|
|
1798
|
+
*/
|
|
1799
|
+
500: unknown;
|
|
1800
|
+
};
|
|
1801
|
+
export type ListRepositoriesResponses = {
|
|
1802
|
+
/**
|
|
1803
|
+
* List of repositories
|
|
1804
|
+
*/
|
|
1805
|
+
200: Array<RegistryRepository>;
|
|
1806
|
+
};
|
|
1807
|
+
export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
|
|
1808
|
+
export type ListTagsData = {
|
|
1809
|
+
body?: never;
|
|
1810
|
+
path: {
|
|
1811
|
+
/**
|
|
1812
|
+
* Region where the repository is located
|
|
1813
|
+
*/
|
|
1814
|
+
region: string;
|
|
1815
|
+
/**
|
|
1816
|
+
* Name of the repository
|
|
1817
|
+
*/
|
|
1818
|
+
repository: string;
|
|
1819
|
+
};
|
|
1820
|
+
query?: never;
|
|
1821
|
+
url: '/registry/{region}/{repository}';
|
|
1822
|
+
};
|
|
1823
|
+
export type ListTagsErrors = {
|
|
1824
|
+
/**
|
|
1825
|
+
* Not authenticated
|
|
1826
|
+
*/
|
|
1827
|
+
401: unknown;
|
|
1828
|
+
/**
|
|
1829
|
+
* Repository not found
|
|
1830
|
+
*/
|
|
1831
|
+
404: unknown;
|
|
1832
|
+
/**
|
|
1833
|
+
* Internal server error
|
|
1834
|
+
*/
|
|
1835
|
+
500: unknown;
|
|
1836
|
+
};
|
|
1837
|
+
export type ListTagsResponses = {
|
|
1838
|
+
/**
|
|
1839
|
+
* Repository with tags
|
|
1840
|
+
*/
|
|
1841
|
+
200: RegistryRepositoryWithTags;
|
|
1842
|
+
};
|
|
1843
|
+
export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
|
|
1844
|
+
export type DeleteTagData = {
|
|
1845
|
+
body?: never;
|
|
1846
|
+
path: {
|
|
1847
|
+
/**
|
|
1848
|
+
* Region where the repository is located
|
|
1849
|
+
*/
|
|
1850
|
+
region: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* Name of the repository
|
|
1853
|
+
*/
|
|
1854
|
+
repository: string;
|
|
1855
|
+
/**
|
|
1856
|
+
* Name of the tag
|
|
1857
|
+
*/
|
|
1858
|
+
tag: string;
|
|
1859
|
+
};
|
|
1860
|
+
query?: never;
|
|
1861
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1862
|
+
};
|
|
1863
|
+
export type DeleteTagErrors = {
|
|
1864
|
+
/**
|
|
1865
|
+
* Not authenticated
|
|
1866
|
+
*/
|
|
1867
|
+
401: unknown;
|
|
1868
|
+
/**
|
|
1869
|
+
* Tag not found
|
|
1870
|
+
*/
|
|
1871
|
+
404: unknown;
|
|
1872
|
+
/**
|
|
1873
|
+
* Internal server error
|
|
1874
|
+
*/
|
|
1875
|
+
500: unknown;
|
|
1876
|
+
};
|
|
1877
|
+
export type DeleteTagResponses = {
|
|
1878
|
+
/**
|
|
1879
|
+
* Tag successfully deleted
|
|
1880
|
+
*/
|
|
1881
|
+
200: unknown;
|
|
1882
|
+
};
|
|
1883
|
+
export type GetTagData = {
|
|
1884
|
+
body?: never;
|
|
1885
|
+
path: {
|
|
1886
|
+
/**
|
|
1887
|
+
* Region where the repository is located
|
|
1888
|
+
*/
|
|
1889
|
+
region: string;
|
|
1890
|
+
/**
|
|
1891
|
+
* Name of the repository
|
|
1892
|
+
*/
|
|
1893
|
+
repository: string;
|
|
1894
|
+
/**
|
|
1895
|
+
* Name of the tag
|
|
1896
|
+
*/
|
|
1897
|
+
tag: string;
|
|
1898
|
+
};
|
|
1899
|
+
query?: never;
|
|
1900
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1901
|
+
};
|
|
1902
|
+
export type GetTagErrors = {
|
|
1903
|
+
/**
|
|
1904
|
+
* Not authenticated
|
|
1905
|
+
*/
|
|
1906
|
+
401: unknown;
|
|
1907
|
+
/**
|
|
1908
|
+
* Tag not found
|
|
1909
|
+
*/
|
|
1910
|
+
404: unknown;
|
|
1911
|
+
/**
|
|
1912
|
+
* Internal server error
|
|
1913
|
+
*/
|
|
1914
|
+
500: unknown;
|
|
1915
|
+
};
|
|
1916
|
+
export type GetTagResponses = {
|
|
1917
|
+
/**
|
|
1918
|
+
* Tag details
|
|
1919
|
+
*/
|
|
1920
|
+
200: RegistryTag;
|
|
1921
|
+
};
|
|
1922
|
+
export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
|
|
1558
1923
|
export type ListTokensData = {
|
|
1559
1924
|
body?: never;
|
|
1560
1925
|
path?: never;
|