freestyle-sandboxes 0.1.8 → 0.1.9
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/index.cjs +1175 -1062
- package/index.d.cts +1045 -852
- package/index.d.mts +1045 -852
- package/index.mjs +1175 -1062
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -87,17 +87,24 @@ interface ResponseGetDomainsV1Domains400 {
|
|
|
87
87
|
type ResponseGetDomainsV1Mappings200 = {
|
|
88
88
|
id: string;
|
|
89
89
|
domain: string;
|
|
90
|
-
deploymentId
|
|
90
|
+
deploymentId?: string | null;
|
|
91
|
+
vmId?: string | null;
|
|
92
|
+
vmPort?: number | null;
|
|
91
93
|
ownershipId: string;
|
|
92
94
|
createdAt: string;
|
|
93
95
|
}[];
|
|
94
96
|
interface ResponsePostDomainsV1MappingsDomain200 {
|
|
95
97
|
id: string;
|
|
96
98
|
domain: string;
|
|
97
|
-
deploymentId
|
|
99
|
+
deploymentId?: string | null;
|
|
100
|
+
vmId?: string | null;
|
|
101
|
+
vmPort?: number | null;
|
|
98
102
|
ownershipId: string;
|
|
99
103
|
createdAt: string;
|
|
100
104
|
}
|
|
105
|
+
interface ResponsePostDomainsV1MappingsDomain400 {
|
|
106
|
+
message: string;
|
|
107
|
+
}
|
|
101
108
|
interface ResponsePostDomainsV1MappingsDomain401 {
|
|
102
109
|
message: string;
|
|
103
110
|
}
|
|
@@ -1639,11 +1646,11 @@ interface ResponsePostV1Vms500 {
|
|
|
1639
1646
|
interface ResponseGetV1VmsSnapshots200 {
|
|
1640
1647
|
snapshots: {
|
|
1641
1648
|
/**
|
|
1642
|
-
*
|
|
1649
|
+
* Short VM ID (5-character alphanumeric) - used for filesystem operations
|
|
1643
1650
|
*/
|
|
1644
1651
|
snapshotId: string;
|
|
1645
1652
|
/**
|
|
1646
|
-
*
|
|
1653
|
+
* Short VM ID (5-character alphanumeric) - used for filesystem operations
|
|
1647
1654
|
*/
|
|
1648
1655
|
sourceVmId: string;
|
|
1649
1656
|
/**
|
|
@@ -1994,6 +2001,26 @@ interface ResponsePostV1VmsVmIdStart200 {
|
|
|
1994
2001
|
domains: string[];
|
|
1995
2002
|
console_url?: string | null;
|
|
1996
2003
|
}
|
|
2004
|
+
interface ResponsePostV1VmsVmIdStart400 {
|
|
2005
|
+
/**
|
|
2006
|
+
* Error code in SCREAMING_SNAKE_CASE
|
|
2007
|
+
*/
|
|
2008
|
+
error: string;
|
|
2009
|
+
/**
|
|
2010
|
+
* Human-readable error message
|
|
2011
|
+
*/
|
|
2012
|
+
message: string;
|
|
2013
|
+
}
|
|
2014
|
+
interface ResponsePostV1VmsVmIdStart403 {
|
|
2015
|
+
/**
|
|
2016
|
+
* Error code in SCREAMING_SNAKE_CASE
|
|
2017
|
+
*/
|
|
2018
|
+
error: string;
|
|
2019
|
+
/**
|
|
2020
|
+
* Human-readable error message
|
|
2021
|
+
*/
|
|
2022
|
+
message: string;
|
|
2023
|
+
}
|
|
1997
2024
|
interface ResponsePostV1VmsVmIdStart410 {
|
|
1998
2025
|
/**
|
|
1999
2026
|
* Error code in SCREAMING_SNAKE_CASE
|
|
@@ -2339,6 +2366,7 @@ type responses_ResponsePostDnsV1Records500 = ResponsePostDnsV1Records500;
|
|
|
2339
2366
|
type responses_ResponsePostDomainsV1CertsDomainWildcard200 = ResponsePostDomainsV1CertsDomainWildcard200;
|
|
2340
2367
|
type responses_ResponsePostDomainsV1CertsDomainWildcard400 = ResponsePostDomainsV1CertsDomainWildcard400;
|
|
2341
2368
|
type responses_ResponsePostDomainsV1MappingsDomain200 = ResponsePostDomainsV1MappingsDomain200;
|
|
2369
|
+
type responses_ResponsePostDomainsV1MappingsDomain400 = ResponsePostDomainsV1MappingsDomain400;
|
|
2342
2370
|
type responses_ResponsePostDomainsV1MappingsDomain401 = ResponsePostDomainsV1MappingsDomain401;
|
|
2343
2371
|
type responses_ResponsePostDomainsV1MappingsDomain422 = ResponsePostDomainsV1MappingsDomain422;
|
|
2344
2372
|
type responses_ResponsePostDomainsV1MappingsDomain500 = ResponsePostDomainsV1MappingsDomain500;
|
|
@@ -2408,6 +2436,8 @@ type responses_ResponsePostV1VmsVmIdSnapshot200 = ResponsePostV1VmsVmIdSnapshot2
|
|
|
2408
2436
|
type responses_ResponsePostV1VmsVmIdSnapshot400 = ResponsePostV1VmsVmIdSnapshot400;
|
|
2409
2437
|
type responses_ResponsePostV1VmsVmIdSnapshot500 = ResponsePostV1VmsVmIdSnapshot500;
|
|
2410
2438
|
type responses_ResponsePostV1VmsVmIdStart200 = ResponsePostV1VmsVmIdStart200;
|
|
2439
|
+
type responses_ResponsePostV1VmsVmIdStart400 = ResponsePostV1VmsVmIdStart400;
|
|
2440
|
+
type responses_ResponsePostV1VmsVmIdStart403 = ResponsePostV1VmsVmIdStart403;
|
|
2411
2441
|
type responses_ResponsePostV1VmsVmIdStart410 = ResponsePostV1VmsVmIdStart410;
|
|
2412
2442
|
type responses_ResponsePostV1VmsVmIdStart500 = ResponsePostV1VmsVmIdStart500;
|
|
2413
2443
|
type responses_ResponsePostV1VmsVmIdStart504 = ResponsePostV1VmsVmIdStart504;
|
|
@@ -2436,7 +2466,7 @@ type responses_ResponsePutV1VmsVmIdFilesFilepath400 = ResponsePutV1VmsVmIdFilesF
|
|
|
2436
2466
|
type responses_ResponsePutV1VmsVmIdFilesFilepath404 = ResponsePutV1VmsVmIdFilesFilepath404;
|
|
2437
2467
|
type responses_ResponsePutV1VmsVmIdFilesFilepath500 = ResponsePutV1VmsVmIdFilesFilepath500;
|
|
2438
2468
|
declare namespace responses {
|
|
2439
|
-
export type { responses_ResponseDeleteDnsV1Records200 as ResponseDeleteDnsV1Records200, responses_ResponseDeleteDnsV1Records403 as ResponseDeleteDnsV1Records403, responses_ResponseDeleteDnsV1Records500 as ResponseDeleteDnsV1Records500, responses_ResponseDeleteDomainsV1MappingsDomain200 as ResponseDeleteDomainsV1MappingsDomain200, responses_ResponseDeleteDomainsV1MappingsDomain400 as ResponseDeleteDomainsV1MappingsDomain400, responses_ResponseDeleteDomainsV1MappingsDomain401 as ResponseDeleteDomainsV1MappingsDomain401, responses_ResponseDeleteDomainsV1MappingsDomain500 as ResponseDeleteDomainsV1MappingsDomain500, responses_ResponseDeleteDomainsV1MappingsDomain502 as ResponseDeleteDomainsV1MappingsDomain502, responses_ResponseDeleteDomainsV1Verifications200 as ResponseDeleteDomainsV1Verifications200, responses_ResponseDeleteDomainsV1Verifications400 as ResponseDeleteDomainsV1Verifications400, responses_ResponseDeleteGitV1IdentityIdentity200 as ResponseDeleteGitV1IdentityIdentity200, responses_ResponseDeleteGitV1IdentityIdentity403 as ResponseDeleteGitV1IdentityIdentity403, responses_ResponseDeleteGitV1IdentityIdentity404 as ResponseDeleteGitV1IdentityIdentity404, responses_ResponseDeleteGitV1IdentityIdentity500 as ResponseDeleteGitV1IdentityIdentity500, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo200 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo200, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo403 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo403, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo404 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo404, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo500 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo500, responses_ResponseDeleteGitV1IdentityIdentityTokens200 as ResponseDeleteGitV1IdentityIdentityTokens200, responses_ResponseDeleteGitV1IdentityIdentityTokens403 as ResponseDeleteGitV1IdentityIdentityTokens403, responses_ResponseDeleteGitV1IdentityIdentityTokens404 as ResponseDeleteGitV1IdentityIdentityTokens404, responses_ResponseDeleteGitV1IdentityIdentityTokens500 as ResponseDeleteGitV1IdentityIdentityTokens500, responses_ResponseDeleteGitV1RepoRepo200 as ResponseDeleteGitV1RepoRepo200, responses_ResponseDeleteGitV1RepoRepo403 as ResponseDeleteGitV1RepoRepo403, responses_ResponseDeleteGitV1RepoRepo500 as ResponseDeleteGitV1RepoRepo500, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger200 as ResponseDeleteGitV1RepoRepoTriggerTrigger200, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger400 as ResponseDeleteGitV1RepoRepoTriggerTrigger400, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger403 as ResponseDeleteGitV1RepoRepoTriggerTrigger403, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger404 as ResponseDeleteGitV1RepoRepoTriggerTrigger404, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger500 as ResponseDeleteGitV1RepoRepoTriggerTrigger500, responses_ResponseDeleteIdentityV1IdentitiesIdentity200 as ResponseDeleteIdentityV1IdentitiesIdentity200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200 as ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseGetDnsV1Records200 as ResponseGetDnsV1Records200, responses_ResponseGetDnsV1Records400 as ResponseGetDnsV1Records400, responses_ResponseGetDomainsV1Domains200 as ResponseGetDomainsV1Domains200, responses_ResponseGetDomainsV1Domains400 as ResponseGetDomainsV1Domains400, responses_ResponseGetDomainsV1Mappings200 as ResponseGetDomainsV1Mappings200, responses_ResponseGetDomainsV1Verifications200 as ResponseGetDomainsV1Verifications200, responses_ResponseGetDomainsV1Verifications400 as ResponseGetDomainsV1Verifications400, responses_ResponseGetEphemeralV1DevServersStatus200 as ResponseGetEphemeralV1DevServersStatus200, responses_ResponseGetExecuteV1Deployments200 as ResponseGetExecuteV1Deployments200, responses_ResponseGetExecuteV1Deployments500 as ResponseGetExecuteV1Deployments500, responses_ResponseGetExecuteV1DeploymentsDeployment200 as ResponseGetExecuteV1DeploymentsDeployment200, responses_ResponseGetExecuteV1DeploymentsDeployment401 as ResponseGetExecuteV1DeploymentsDeployment401, responses_ResponseGetExecuteV1DeploymentsDeployment404 as ResponseGetExecuteV1DeploymentsDeployment404, responses_ResponseGetExecuteV1DeploymentsDeployment500 as ResponseGetExecuteV1DeploymentsDeployment500, responses_ResponseGetGitV1Identity200 as ResponseGetGitV1Identity200, responses_ResponseGetGitV1IdentityIdentityPermissions200 as ResponseGetGitV1IdentityIdentityPermissions200, responses_ResponseGetGitV1IdentityIdentityPermissions403 as ResponseGetGitV1IdentityIdentityPermissions403, responses_ResponseGetGitV1IdentityIdentityPermissions404 as ResponseGetGitV1IdentityIdentityPermissions404, responses_ResponseGetGitV1IdentityIdentityPermissions500 as ResponseGetGitV1IdentityIdentityPermissions500, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo200 as ResponseGetGitV1IdentityIdentityPermissionsRepo200, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo403 as ResponseGetGitV1IdentityIdentityPermissionsRepo403, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo404 as ResponseGetGitV1IdentityIdentityPermissionsRepo404, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo500 as ResponseGetGitV1IdentityIdentityPermissionsRepo500, responses_ResponseGetGitV1IdentityIdentityTokens200 as ResponseGetGitV1IdentityIdentityTokens200, responses_ResponseGetGitV1IdentityIdentityTokens403 as ResponseGetGitV1IdentityIdentityTokens403, responses_ResponseGetGitV1IdentityIdentityTokens404 as ResponseGetGitV1IdentityIdentityTokens404, responses_ResponseGetGitV1IdentityIdentityTokens500 as ResponseGetGitV1IdentityIdentityTokens500, responses_ResponseGetGitV1Repo200 as ResponseGetGitV1Repo200, responses_ResponseGetGitV1Repo500 as ResponseGetGitV1Repo500, responses_ResponseGetGitV1RepoRepo200 as ResponseGetGitV1RepoRepo200, responses_ResponseGetGitV1RepoRepoCompare200 as ResponseGetGitV1RepoRepoCompare200, responses_ResponseGetGitV1RepoRepoContentsPath200 as ResponseGetGitV1RepoRepoContentsPath200, responses_ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive as ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive, responses_ResponseGetGitV1RepoRepoContentsPath200Directory as ResponseGetGitV1RepoRepoContentsPath200Directory, responses_ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry as ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry, responses_ResponseGetGitV1RepoRepoContentsPath200File as ResponseGetGitV1RepoRepoContentsPath200File, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry as ResponseGetGitV1RepoRepoContentsPath200FileEntry, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry1 as ResponseGetGitV1RepoRepoContentsPath200FileEntry1, responses_ResponseGetGitV1RepoRepoGitBlobsHash200 as ResponseGetGitV1RepoRepoGitBlobsHash200, responses_ResponseGetGitV1RepoRepoGitCommits200 as ResponseGetGitV1RepoRepoGitCommits200, responses_ResponseGetGitV1RepoRepoGitCommits200CommitsSelector as ResponseGetGitV1RepoRepoGitCommits200CommitsSelector, responses_ResponseGetGitV1RepoRepoGitCommits200Range as ResponseGetGitV1RepoRepoGitCommits200Range, responses_ResponseGetGitV1RepoRepoGitCommits200Since as ResponseGetGitV1RepoRepoGitCommits200Since, responses_ResponseGetGitV1RepoRepoGitCommits200Until as ResponseGetGitV1RepoRepoGitCommits200Until, responses_ResponseGetGitV1RepoRepoGitCommits403 as ResponseGetGitV1RepoRepoGitCommits403, responses_ResponseGetGitV1RepoRepoGitCommits500 as ResponseGetGitV1RepoRepoGitCommits500, responses_ResponseGetGitV1RepoRepoGitCommitsHash200 as ResponseGetGitV1RepoRepoGitCommitsHash200, responses_ResponseGetGitV1RepoRepoGitRefsHeads200 as ResponseGetGitV1RepoRepoGitRefsHeads200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch400 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch400, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch403 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch403, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch500 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch500, responses_ResponseGetGitV1RepoRepoGitRefsTags200 as ResponseGetGitV1RepoRepoGitRefsTags200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag200 as ResponseGetGitV1RepoRepoGitRefsTagsTag200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag400 as ResponseGetGitV1RepoRepoGitRefsTagsTag400, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag403 as ResponseGetGitV1RepoRepoGitRefsTagsTag403, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag500 as ResponseGetGitV1RepoRepoGitRefsTagsTag500, responses_ResponseGetGitV1RepoRepoGitTagsHash200 as ResponseGetGitV1RepoRepoGitTagsHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200 as ResponseGetGitV1RepoRepoGitTreesHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200Blob as ResponseGetGitV1RepoRepoGitTreesHash200Blob, responses_ResponseGetGitV1RepoRepoGitTreesHash200Tree as ResponseGetGitV1RepoRepoGitTreesHash200Tree, responses_ResponseGetGitV1RepoRepoIdDefaultBranch200 as ResponseGetGitV1RepoRepoIdDefaultBranch200, responses_ResponseGetGitV1RepoRepoIdDefaultBranch403 as ResponseGetGitV1RepoRepoIdDefaultBranch403, responses_ResponseGetGitV1RepoRepoIdDefaultBranch500 as ResponseGetGitV1RepoRepoIdDefaultBranch500, responses_ResponseGetGitV1RepoRepoIdDevServerConfiguration200 as ResponseGetGitV1RepoRepoIdDevServerConfiguration200, responses_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoTrigger200 as ResponseGetGitV1RepoRepoTrigger200, responses_ResponseGetGitV1RepoRepoTrigger400 as ResponseGetGitV1RepoRepoTrigger400, responses_ResponseGetGitV1RepoRepoTrigger403 as ResponseGetGitV1RepoRepoTrigger403, responses_ResponseGetGitV1RepoRepoTrigger404 as ResponseGetGitV1RepoRepoTrigger404, responses_ResponseGetGitV1RepoRepoTrigger500 as ResponseGetGitV1RepoRepoTrigger500, responses_ResponseGetIdentityV1Identities200 as ResponseGetIdentityV1Identities200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseGetIdentityV1IdentitiesIdentityTokens200 as ResponseGetIdentityV1IdentitiesIdentityTokens200, responses_ResponseGetObservabilityV1Logs200 as ResponseGetObservabilityV1Logs200, responses_ResponseGetV1Vms200 as ResponseGetV1Vms200, responses_ResponseGetV1Vms500 as ResponseGetV1Vms500, responses_ResponseGetV1VmsSnapshots200 as ResponseGetV1VmsSnapshots200, responses_ResponseGetV1VmsSnapshots400 as ResponseGetV1VmsSnapshots400, responses_ResponseGetV1VmsSnapshots500 as ResponseGetV1VmsSnapshots500, responses_ResponseGetV1VmsVmId200 as ResponseGetV1VmsVmId200, responses_ResponseGetV1VmsVmId500 as ResponseGetV1VmsVmId500, responses_ResponseGetV1VmsVmIdFilesFilepath200 as ResponseGetV1VmsVmIdFilesFilepath200, responses_ResponseGetV1VmsVmIdFilesFilepath400 as ResponseGetV1VmsVmIdFilesFilepath400, responses_ResponseGetV1VmsVmIdFilesFilepath404 as ResponseGetV1VmsVmIdFilesFilepath404, responses_ResponseGetV1VmsVmIdFilesFilepath500 as ResponseGetV1VmsVmIdFilesFilepath500, responses_ResponseGetV1VmsVmIdTerminals200 as ResponseGetV1VmsVmIdTerminals200, responses_ResponseGetV1VmsVmIdTerminals500 as ResponseGetV1VmsVmIdTerminals500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500, responses_ResponseGetWebV1Deployments200 as ResponseGetWebV1Deployments200, responses_ResponseGetWebV1Deployments500 as ResponseGetWebV1Deployments500, responses_ResponsePostDnsV1Records200 as ResponsePostDnsV1Records200, responses_ResponsePostDnsV1Records403 as ResponsePostDnsV1Records403, responses_ResponsePostDnsV1Records500 as ResponsePostDnsV1Records500, responses_ResponsePostDomainsV1CertsDomainWildcard200 as ResponsePostDomainsV1CertsDomainWildcard200, responses_ResponsePostDomainsV1CertsDomainWildcard400 as ResponsePostDomainsV1CertsDomainWildcard400, responses_ResponsePostDomainsV1MappingsDomain200 as ResponsePostDomainsV1MappingsDomain200, responses_ResponsePostDomainsV1MappingsDomain401 as ResponsePostDomainsV1MappingsDomain401, responses_ResponsePostDomainsV1MappingsDomain422 as ResponsePostDomainsV1MappingsDomain422, responses_ResponsePostDomainsV1MappingsDomain500 as ResponsePostDomainsV1MappingsDomain500, responses_ResponsePostDomainsV1MappingsDomain502 as ResponsePostDomainsV1MappingsDomain502, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostEphemeralV1DevServers200 as ResponsePostEphemeralV1DevServers200, responses_ResponsePostEphemeralV1DevServersExec200 as ResponsePostEphemeralV1DevServersExec200, responses_ResponsePostEphemeralV1DevServersGitCommitPush200 as ResponsePostEphemeralV1DevServersGitCommitPush200, responses_ResponsePostEphemeralV1DevServersGitCommitPush400 as ResponsePostEphemeralV1DevServersGitCommitPush400, responses_ResponsePostEphemeralV1DevServersGitCommitPush404 as ResponsePostEphemeralV1DevServersGitCommitPush404, responses_ResponsePostEphemeralV1DevServersGitCommitPush500 as ResponsePostEphemeralV1DevServersGitCommitPush500, responses_ResponsePostEphemeralV1DevServersLogs200 as ResponsePostEphemeralV1DevServersLogs200, responses_ResponsePostEphemeralV1DevServersRestart200 as ResponsePostEphemeralV1DevServersRestart200, responses_ResponsePostEphemeralV1DevServersShutdown200 as ResponsePostEphemeralV1DevServersShutdown200, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostExecuteV2Script200 as ResponsePostExecuteV2Script200, responses_ResponsePostExecuteV2Script500 as ResponsePostExecuteV2Script500, responses_ResponsePostExecuteV2Script503 as ResponsePostExecuteV2Script503, responses_ResponsePostGitV1Identity200 as ResponsePostGitV1Identity200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo200 as ResponsePostGitV1IdentityIdentityPermissionsRepo200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo403 as ResponsePostGitV1IdentityIdentityPermissionsRepo403, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo404 as ResponsePostGitV1IdentityIdentityPermissionsRepo404, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo500 as ResponsePostGitV1IdentityIdentityPermissionsRepo500, responses_ResponsePostGitV1IdentityIdentityTokens200 as ResponsePostGitV1IdentityIdentityTokens200, responses_ResponsePostGitV1IdentityIdentityTokens403 as ResponsePostGitV1IdentityIdentityTokens403, responses_ResponsePostGitV1IdentityIdentityTokens404 as ResponsePostGitV1IdentityIdentityTokens404, responses_ResponsePostGitV1IdentityIdentityTokens500 as ResponsePostGitV1IdentityIdentityTokens500, responses_ResponsePostGitV1Repo200 as ResponsePostGitV1Repo200, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoTrigger200 as ResponsePostGitV1RepoRepoTrigger200, responses_ResponsePostGitV1RepoRepoTrigger400 as ResponsePostGitV1RepoRepoTrigger400, responses_ResponsePostGitV1RepoRepoTrigger403 as ResponsePostGitV1RepoRepoTrigger403, responses_ResponsePostGitV1RepoRepoTrigger404 as ResponsePostGitV1RepoRepoTrigger404, responses_ResponsePostGitV1RepoRepoTrigger500 as ResponsePostGitV1RepoRepoTrigger500, responses_ResponsePostIdentityV1Identities200 as ResponsePostIdentityV1Identities200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePostIdentityV1IdentitiesIdentityTokens200 as ResponsePostIdentityV1IdentitiesIdentityTokens200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, responses_ResponsePostV1Vms400 as ResponsePostV1Vms400, responses_ResponsePostV1Vms404 as ResponsePostV1Vms404, responses_ResponsePostV1Vms500 as ResponsePostV1Vms500, responses_ResponsePostV1VmsIdResize200 as ResponsePostV1VmsIdResize200, responses_ResponsePostV1VmsIdResize400 as ResponsePostV1VmsIdResize400, responses_ResponsePostV1VmsIdResize404 as ResponsePostV1VmsIdResize404, responses_ResponsePostV1VmsIdResize500 as ResponsePostV1VmsIdResize500, responses_ResponsePostV1VmsSnapshots200 as ResponsePostV1VmsSnapshots200, responses_ResponsePostV1VmsSnapshots400 as ResponsePostV1VmsSnapshots400, responses_ResponsePostV1VmsSnapshots404 as ResponsePostV1VmsSnapshots404, responses_ResponsePostV1VmsSnapshots500 as ResponsePostV1VmsSnapshots500, responses_ResponsePostV1VmsVmIdAwait200 as ResponsePostV1VmsVmIdAwait200, responses_ResponsePostV1VmsVmIdAwait500 as ResponsePostV1VmsVmIdAwait500, responses_ResponsePostV1VmsVmIdExecAwait200 as ResponsePostV1VmsVmIdExecAwait200, responses_ResponsePostV1VmsVmIdExecAwait500 as ResponsePostV1VmsVmIdExecAwait500, responses_ResponsePostV1VmsVmIdFork200 as ResponsePostV1VmsVmIdFork200, responses_ResponsePostV1VmsVmIdFork400 as ResponsePostV1VmsVmIdFork400, responses_ResponsePostV1VmsVmIdFork404 as ResponsePostV1VmsVmIdFork404, responses_ResponsePostV1VmsVmIdFork500 as ResponsePostV1VmsVmIdFork500, responses_ResponsePostV1VmsVmIdKill200 as ResponsePostV1VmsVmIdKill200, responses_ResponsePostV1VmsVmIdKill500 as ResponsePostV1VmsVmIdKill500, responses_ResponsePostV1VmsVmIdOptimize200 as ResponsePostV1VmsVmIdOptimize200, responses_ResponsePostV1VmsVmIdOptimize500 as ResponsePostV1VmsVmIdOptimize500, responses_ResponsePostV1VmsVmIdSnapshot200 as ResponsePostV1VmsVmIdSnapshot200, responses_ResponsePostV1VmsVmIdSnapshot400 as ResponsePostV1VmsVmIdSnapshot400, responses_ResponsePostV1VmsVmIdSnapshot500 as ResponsePostV1VmsVmIdSnapshot500, responses_ResponsePostV1VmsVmIdStart200 as ResponsePostV1VmsVmIdStart200, responses_ResponsePostV1VmsVmIdStart410 as ResponsePostV1VmsVmIdStart410, responses_ResponsePostV1VmsVmIdStart500 as ResponsePostV1VmsVmIdStart500, responses_ResponsePostV1VmsVmIdStart504 as ResponsePostV1VmsVmIdStart504, responses_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostWebV1Deploy200 as ResponsePostWebV1Deploy200, responses_ResponsePostWebV1Deploy400 as ResponsePostWebV1Deploy400, responses_ResponsePostWebV1Deployment200 as ResponsePostWebV1Deployment200, responses_ResponsePostWebV1Deployment400 as ResponsePostWebV1Deployment400, responses_ResponsePostWebV1Deployment403 as ResponsePostWebV1Deployment403, responses_ResponsePostWebV1Deployment404 as ResponsePostWebV1Deployment404, responses_ResponsePostWebV1Deployment500 as ResponsePostWebV1Deployment500, responses_ResponsePostWebV1Deployment502 as ResponsePostWebV1Deployment502, responses_ResponsePutDomainsV1Verifications200 as ResponsePutDomainsV1Verifications200, responses_ResponsePutDomainsV1Verifications400 as ResponsePutDomainsV1Verifications400, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
|
|
2469
|
+
export type { responses_ResponseDeleteDnsV1Records200 as ResponseDeleteDnsV1Records200, responses_ResponseDeleteDnsV1Records403 as ResponseDeleteDnsV1Records403, responses_ResponseDeleteDnsV1Records500 as ResponseDeleteDnsV1Records500, responses_ResponseDeleteDomainsV1MappingsDomain200 as ResponseDeleteDomainsV1MappingsDomain200, responses_ResponseDeleteDomainsV1MappingsDomain400 as ResponseDeleteDomainsV1MappingsDomain400, responses_ResponseDeleteDomainsV1MappingsDomain401 as ResponseDeleteDomainsV1MappingsDomain401, responses_ResponseDeleteDomainsV1MappingsDomain500 as ResponseDeleteDomainsV1MappingsDomain500, responses_ResponseDeleteDomainsV1MappingsDomain502 as ResponseDeleteDomainsV1MappingsDomain502, responses_ResponseDeleteDomainsV1Verifications200 as ResponseDeleteDomainsV1Verifications200, responses_ResponseDeleteDomainsV1Verifications400 as ResponseDeleteDomainsV1Verifications400, responses_ResponseDeleteGitV1IdentityIdentity200 as ResponseDeleteGitV1IdentityIdentity200, responses_ResponseDeleteGitV1IdentityIdentity403 as ResponseDeleteGitV1IdentityIdentity403, responses_ResponseDeleteGitV1IdentityIdentity404 as ResponseDeleteGitV1IdentityIdentity404, responses_ResponseDeleteGitV1IdentityIdentity500 as ResponseDeleteGitV1IdentityIdentity500, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo200 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo200, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo403 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo403, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo404 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo404, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo500 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo500, responses_ResponseDeleteGitV1IdentityIdentityTokens200 as ResponseDeleteGitV1IdentityIdentityTokens200, responses_ResponseDeleteGitV1IdentityIdentityTokens403 as ResponseDeleteGitV1IdentityIdentityTokens403, responses_ResponseDeleteGitV1IdentityIdentityTokens404 as ResponseDeleteGitV1IdentityIdentityTokens404, responses_ResponseDeleteGitV1IdentityIdentityTokens500 as ResponseDeleteGitV1IdentityIdentityTokens500, responses_ResponseDeleteGitV1RepoRepo200 as ResponseDeleteGitV1RepoRepo200, responses_ResponseDeleteGitV1RepoRepo403 as ResponseDeleteGitV1RepoRepo403, responses_ResponseDeleteGitV1RepoRepo500 as ResponseDeleteGitV1RepoRepo500, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger200 as ResponseDeleteGitV1RepoRepoTriggerTrigger200, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger400 as ResponseDeleteGitV1RepoRepoTriggerTrigger400, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger403 as ResponseDeleteGitV1RepoRepoTriggerTrigger403, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger404 as ResponseDeleteGitV1RepoRepoTriggerTrigger404, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger500 as ResponseDeleteGitV1RepoRepoTriggerTrigger500, responses_ResponseDeleteIdentityV1IdentitiesIdentity200 as ResponseDeleteIdentityV1IdentitiesIdentity200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200 as ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseGetDnsV1Records200 as ResponseGetDnsV1Records200, responses_ResponseGetDnsV1Records400 as ResponseGetDnsV1Records400, responses_ResponseGetDomainsV1Domains200 as ResponseGetDomainsV1Domains200, responses_ResponseGetDomainsV1Domains400 as ResponseGetDomainsV1Domains400, responses_ResponseGetDomainsV1Mappings200 as ResponseGetDomainsV1Mappings200, responses_ResponseGetDomainsV1Verifications200 as ResponseGetDomainsV1Verifications200, responses_ResponseGetDomainsV1Verifications400 as ResponseGetDomainsV1Verifications400, responses_ResponseGetEphemeralV1DevServersStatus200 as ResponseGetEphemeralV1DevServersStatus200, responses_ResponseGetExecuteV1Deployments200 as ResponseGetExecuteV1Deployments200, responses_ResponseGetExecuteV1Deployments500 as ResponseGetExecuteV1Deployments500, responses_ResponseGetExecuteV1DeploymentsDeployment200 as ResponseGetExecuteV1DeploymentsDeployment200, responses_ResponseGetExecuteV1DeploymentsDeployment401 as ResponseGetExecuteV1DeploymentsDeployment401, responses_ResponseGetExecuteV1DeploymentsDeployment404 as ResponseGetExecuteV1DeploymentsDeployment404, responses_ResponseGetExecuteV1DeploymentsDeployment500 as ResponseGetExecuteV1DeploymentsDeployment500, responses_ResponseGetGitV1Identity200 as ResponseGetGitV1Identity200, responses_ResponseGetGitV1IdentityIdentityPermissions200 as ResponseGetGitV1IdentityIdentityPermissions200, responses_ResponseGetGitV1IdentityIdentityPermissions403 as ResponseGetGitV1IdentityIdentityPermissions403, responses_ResponseGetGitV1IdentityIdentityPermissions404 as ResponseGetGitV1IdentityIdentityPermissions404, responses_ResponseGetGitV1IdentityIdentityPermissions500 as ResponseGetGitV1IdentityIdentityPermissions500, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo200 as ResponseGetGitV1IdentityIdentityPermissionsRepo200, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo403 as ResponseGetGitV1IdentityIdentityPermissionsRepo403, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo404 as ResponseGetGitV1IdentityIdentityPermissionsRepo404, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo500 as ResponseGetGitV1IdentityIdentityPermissionsRepo500, responses_ResponseGetGitV1IdentityIdentityTokens200 as ResponseGetGitV1IdentityIdentityTokens200, responses_ResponseGetGitV1IdentityIdentityTokens403 as ResponseGetGitV1IdentityIdentityTokens403, responses_ResponseGetGitV1IdentityIdentityTokens404 as ResponseGetGitV1IdentityIdentityTokens404, responses_ResponseGetGitV1IdentityIdentityTokens500 as ResponseGetGitV1IdentityIdentityTokens500, responses_ResponseGetGitV1Repo200 as ResponseGetGitV1Repo200, responses_ResponseGetGitV1Repo500 as ResponseGetGitV1Repo500, responses_ResponseGetGitV1RepoRepo200 as ResponseGetGitV1RepoRepo200, responses_ResponseGetGitV1RepoRepoCompare200 as ResponseGetGitV1RepoRepoCompare200, responses_ResponseGetGitV1RepoRepoContentsPath200 as ResponseGetGitV1RepoRepoContentsPath200, responses_ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive as ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive, responses_ResponseGetGitV1RepoRepoContentsPath200Directory as ResponseGetGitV1RepoRepoContentsPath200Directory, responses_ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry as ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry, responses_ResponseGetGitV1RepoRepoContentsPath200File as ResponseGetGitV1RepoRepoContentsPath200File, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry as ResponseGetGitV1RepoRepoContentsPath200FileEntry, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry1 as ResponseGetGitV1RepoRepoContentsPath200FileEntry1, responses_ResponseGetGitV1RepoRepoGitBlobsHash200 as ResponseGetGitV1RepoRepoGitBlobsHash200, responses_ResponseGetGitV1RepoRepoGitCommits200 as ResponseGetGitV1RepoRepoGitCommits200, responses_ResponseGetGitV1RepoRepoGitCommits200CommitsSelector as ResponseGetGitV1RepoRepoGitCommits200CommitsSelector, responses_ResponseGetGitV1RepoRepoGitCommits200Range as ResponseGetGitV1RepoRepoGitCommits200Range, responses_ResponseGetGitV1RepoRepoGitCommits200Since as ResponseGetGitV1RepoRepoGitCommits200Since, responses_ResponseGetGitV1RepoRepoGitCommits200Until as ResponseGetGitV1RepoRepoGitCommits200Until, responses_ResponseGetGitV1RepoRepoGitCommits403 as ResponseGetGitV1RepoRepoGitCommits403, responses_ResponseGetGitV1RepoRepoGitCommits500 as ResponseGetGitV1RepoRepoGitCommits500, responses_ResponseGetGitV1RepoRepoGitCommitsHash200 as ResponseGetGitV1RepoRepoGitCommitsHash200, responses_ResponseGetGitV1RepoRepoGitRefsHeads200 as ResponseGetGitV1RepoRepoGitRefsHeads200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch400 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch400, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch403 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch403, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch500 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch500, responses_ResponseGetGitV1RepoRepoGitRefsTags200 as ResponseGetGitV1RepoRepoGitRefsTags200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag200 as ResponseGetGitV1RepoRepoGitRefsTagsTag200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag400 as ResponseGetGitV1RepoRepoGitRefsTagsTag400, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag403 as ResponseGetGitV1RepoRepoGitRefsTagsTag403, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag500 as ResponseGetGitV1RepoRepoGitRefsTagsTag500, responses_ResponseGetGitV1RepoRepoGitTagsHash200 as ResponseGetGitV1RepoRepoGitTagsHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200 as ResponseGetGitV1RepoRepoGitTreesHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200Blob as ResponseGetGitV1RepoRepoGitTreesHash200Blob, responses_ResponseGetGitV1RepoRepoGitTreesHash200Tree as ResponseGetGitV1RepoRepoGitTreesHash200Tree, responses_ResponseGetGitV1RepoRepoIdDefaultBranch200 as ResponseGetGitV1RepoRepoIdDefaultBranch200, responses_ResponseGetGitV1RepoRepoIdDefaultBranch403 as ResponseGetGitV1RepoRepoIdDefaultBranch403, responses_ResponseGetGitV1RepoRepoIdDefaultBranch500 as ResponseGetGitV1RepoRepoIdDefaultBranch500, responses_ResponseGetGitV1RepoRepoIdDevServerConfiguration200 as ResponseGetGitV1RepoRepoIdDevServerConfiguration200, responses_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoTrigger200 as ResponseGetGitV1RepoRepoTrigger200, responses_ResponseGetGitV1RepoRepoTrigger400 as ResponseGetGitV1RepoRepoTrigger400, responses_ResponseGetGitV1RepoRepoTrigger403 as ResponseGetGitV1RepoRepoTrigger403, responses_ResponseGetGitV1RepoRepoTrigger404 as ResponseGetGitV1RepoRepoTrigger404, responses_ResponseGetGitV1RepoRepoTrigger500 as ResponseGetGitV1RepoRepoTrigger500, responses_ResponseGetIdentityV1Identities200 as ResponseGetIdentityV1Identities200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseGetIdentityV1IdentitiesIdentityTokens200 as ResponseGetIdentityV1IdentitiesIdentityTokens200, responses_ResponseGetObservabilityV1Logs200 as ResponseGetObservabilityV1Logs200, responses_ResponseGetV1Vms200 as ResponseGetV1Vms200, responses_ResponseGetV1Vms500 as ResponseGetV1Vms500, responses_ResponseGetV1VmsSnapshots200 as ResponseGetV1VmsSnapshots200, responses_ResponseGetV1VmsSnapshots400 as ResponseGetV1VmsSnapshots400, responses_ResponseGetV1VmsSnapshots500 as ResponseGetV1VmsSnapshots500, responses_ResponseGetV1VmsVmId200 as ResponseGetV1VmsVmId200, responses_ResponseGetV1VmsVmId500 as ResponseGetV1VmsVmId500, responses_ResponseGetV1VmsVmIdFilesFilepath200 as ResponseGetV1VmsVmIdFilesFilepath200, responses_ResponseGetV1VmsVmIdFilesFilepath400 as ResponseGetV1VmsVmIdFilesFilepath400, responses_ResponseGetV1VmsVmIdFilesFilepath404 as ResponseGetV1VmsVmIdFilesFilepath404, responses_ResponseGetV1VmsVmIdFilesFilepath500 as ResponseGetV1VmsVmIdFilesFilepath500, responses_ResponseGetV1VmsVmIdTerminals200 as ResponseGetV1VmsVmIdTerminals200, responses_ResponseGetV1VmsVmIdTerminals500 as ResponseGetV1VmsVmIdTerminals500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500, responses_ResponseGetWebV1Deployments200 as ResponseGetWebV1Deployments200, responses_ResponseGetWebV1Deployments500 as ResponseGetWebV1Deployments500, responses_ResponsePostDnsV1Records200 as ResponsePostDnsV1Records200, responses_ResponsePostDnsV1Records403 as ResponsePostDnsV1Records403, responses_ResponsePostDnsV1Records500 as ResponsePostDnsV1Records500, responses_ResponsePostDomainsV1CertsDomainWildcard200 as ResponsePostDomainsV1CertsDomainWildcard200, responses_ResponsePostDomainsV1CertsDomainWildcard400 as ResponsePostDomainsV1CertsDomainWildcard400, responses_ResponsePostDomainsV1MappingsDomain200 as ResponsePostDomainsV1MappingsDomain200, responses_ResponsePostDomainsV1MappingsDomain400 as ResponsePostDomainsV1MappingsDomain400, responses_ResponsePostDomainsV1MappingsDomain401 as ResponsePostDomainsV1MappingsDomain401, responses_ResponsePostDomainsV1MappingsDomain422 as ResponsePostDomainsV1MappingsDomain422, responses_ResponsePostDomainsV1MappingsDomain500 as ResponsePostDomainsV1MappingsDomain500, responses_ResponsePostDomainsV1MappingsDomain502 as ResponsePostDomainsV1MappingsDomain502, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostEphemeralV1DevServers200 as ResponsePostEphemeralV1DevServers200, responses_ResponsePostEphemeralV1DevServersExec200 as ResponsePostEphemeralV1DevServersExec200, responses_ResponsePostEphemeralV1DevServersGitCommitPush200 as ResponsePostEphemeralV1DevServersGitCommitPush200, responses_ResponsePostEphemeralV1DevServersGitCommitPush400 as ResponsePostEphemeralV1DevServersGitCommitPush400, responses_ResponsePostEphemeralV1DevServersGitCommitPush404 as ResponsePostEphemeralV1DevServersGitCommitPush404, responses_ResponsePostEphemeralV1DevServersGitCommitPush500 as ResponsePostEphemeralV1DevServersGitCommitPush500, responses_ResponsePostEphemeralV1DevServersLogs200 as ResponsePostEphemeralV1DevServersLogs200, responses_ResponsePostEphemeralV1DevServersRestart200 as ResponsePostEphemeralV1DevServersRestart200, responses_ResponsePostEphemeralV1DevServersShutdown200 as ResponsePostEphemeralV1DevServersShutdown200, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostExecuteV2Script200 as ResponsePostExecuteV2Script200, responses_ResponsePostExecuteV2Script500 as ResponsePostExecuteV2Script500, responses_ResponsePostExecuteV2Script503 as ResponsePostExecuteV2Script503, responses_ResponsePostGitV1Identity200 as ResponsePostGitV1Identity200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo200 as ResponsePostGitV1IdentityIdentityPermissionsRepo200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo403 as ResponsePostGitV1IdentityIdentityPermissionsRepo403, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo404 as ResponsePostGitV1IdentityIdentityPermissionsRepo404, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo500 as ResponsePostGitV1IdentityIdentityPermissionsRepo500, responses_ResponsePostGitV1IdentityIdentityTokens200 as ResponsePostGitV1IdentityIdentityTokens200, responses_ResponsePostGitV1IdentityIdentityTokens403 as ResponsePostGitV1IdentityIdentityTokens403, responses_ResponsePostGitV1IdentityIdentityTokens404 as ResponsePostGitV1IdentityIdentityTokens404, responses_ResponsePostGitV1IdentityIdentityTokens500 as ResponsePostGitV1IdentityIdentityTokens500, responses_ResponsePostGitV1Repo200 as ResponsePostGitV1Repo200, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoTrigger200 as ResponsePostGitV1RepoRepoTrigger200, responses_ResponsePostGitV1RepoRepoTrigger400 as ResponsePostGitV1RepoRepoTrigger400, responses_ResponsePostGitV1RepoRepoTrigger403 as ResponsePostGitV1RepoRepoTrigger403, responses_ResponsePostGitV1RepoRepoTrigger404 as ResponsePostGitV1RepoRepoTrigger404, responses_ResponsePostGitV1RepoRepoTrigger500 as ResponsePostGitV1RepoRepoTrigger500, responses_ResponsePostIdentityV1Identities200 as ResponsePostIdentityV1Identities200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePostIdentityV1IdentitiesIdentityTokens200 as ResponsePostIdentityV1IdentitiesIdentityTokens200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, responses_ResponsePostV1Vms400 as ResponsePostV1Vms400, responses_ResponsePostV1Vms404 as ResponsePostV1Vms404, responses_ResponsePostV1Vms500 as ResponsePostV1Vms500, responses_ResponsePostV1VmsIdResize200 as ResponsePostV1VmsIdResize200, responses_ResponsePostV1VmsIdResize400 as ResponsePostV1VmsIdResize400, responses_ResponsePostV1VmsIdResize404 as ResponsePostV1VmsIdResize404, responses_ResponsePostV1VmsIdResize500 as ResponsePostV1VmsIdResize500, responses_ResponsePostV1VmsSnapshots200 as ResponsePostV1VmsSnapshots200, responses_ResponsePostV1VmsSnapshots400 as ResponsePostV1VmsSnapshots400, responses_ResponsePostV1VmsSnapshots404 as ResponsePostV1VmsSnapshots404, responses_ResponsePostV1VmsSnapshots500 as ResponsePostV1VmsSnapshots500, responses_ResponsePostV1VmsVmIdAwait200 as ResponsePostV1VmsVmIdAwait200, responses_ResponsePostV1VmsVmIdAwait500 as ResponsePostV1VmsVmIdAwait500, responses_ResponsePostV1VmsVmIdExecAwait200 as ResponsePostV1VmsVmIdExecAwait200, responses_ResponsePostV1VmsVmIdExecAwait500 as ResponsePostV1VmsVmIdExecAwait500, responses_ResponsePostV1VmsVmIdFork200 as ResponsePostV1VmsVmIdFork200, responses_ResponsePostV1VmsVmIdFork400 as ResponsePostV1VmsVmIdFork400, responses_ResponsePostV1VmsVmIdFork404 as ResponsePostV1VmsVmIdFork404, responses_ResponsePostV1VmsVmIdFork500 as ResponsePostV1VmsVmIdFork500, responses_ResponsePostV1VmsVmIdKill200 as ResponsePostV1VmsVmIdKill200, responses_ResponsePostV1VmsVmIdKill500 as ResponsePostV1VmsVmIdKill500, responses_ResponsePostV1VmsVmIdOptimize200 as ResponsePostV1VmsVmIdOptimize200, responses_ResponsePostV1VmsVmIdOptimize500 as ResponsePostV1VmsVmIdOptimize500, responses_ResponsePostV1VmsVmIdSnapshot200 as ResponsePostV1VmsVmIdSnapshot200, responses_ResponsePostV1VmsVmIdSnapshot400 as ResponsePostV1VmsVmIdSnapshot400, responses_ResponsePostV1VmsVmIdSnapshot500 as ResponsePostV1VmsVmIdSnapshot500, responses_ResponsePostV1VmsVmIdStart200 as ResponsePostV1VmsVmIdStart200, responses_ResponsePostV1VmsVmIdStart400 as ResponsePostV1VmsVmIdStart400, responses_ResponsePostV1VmsVmIdStart403 as ResponsePostV1VmsVmIdStart403, responses_ResponsePostV1VmsVmIdStart410 as ResponsePostV1VmsVmIdStart410, responses_ResponsePostV1VmsVmIdStart500 as ResponsePostV1VmsVmIdStart500, responses_ResponsePostV1VmsVmIdStart504 as ResponsePostV1VmsVmIdStart504, responses_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostWebV1Deploy200 as ResponsePostWebV1Deploy200, responses_ResponsePostWebV1Deploy400 as ResponsePostWebV1Deploy400, responses_ResponsePostWebV1Deployment200 as ResponsePostWebV1Deployment200, responses_ResponsePostWebV1Deployment400 as ResponsePostWebV1Deployment400, responses_ResponsePostWebV1Deployment403 as ResponsePostWebV1Deployment403, responses_ResponsePostWebV1Deployment404 as ResponsePostWebV1Deployment404, responses_ResponsePostWebV1Deployment500 as ResponsePostWebV1Deployment500, responses_ResponsePostWebV1Deployment502 as ResponsePostWebV1Deployment502, responses_ResponsePutDomainsV1Verifications200 as ResponsePutDomainsV1Verifications200, responses_ResponsePutDomainsV1Verifications400 as ResponsePutDomainsV1Verifications400, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
|
|
2440
2470
|
}
|
|
2441
2471
|
|
|
2442
2472
|
type PostDevServersV1DevServersRequestRequestBody = (null | {
|
|
@@ -2748,7 +2778,9 @@ interface PostDomainsV1MappingsDomainPathParams {
|
|
|
2748
2778
|
domain: string;
|
|
2749
2779
|
}
|
|
2750
2780
|
interface PostDomainsV1MappingsDomainRequestBody {
|
|
2751
|
-
deploymentId
|
|
2781
|
+
deploymentId?: string | null;
|
|
2782
|
+
vmId?: null | string;
|
|
2783
|
+
vmPort?: number | null;
|
|
2752
2784
|
}
|
|
2753
2785
|
interface DeleteDomainsV1MappingsDomainPathParams {
|
|
2754
2786
|
domain: string;
|
|
@@ -4972,6 +5004,21 @@ interface PostV1VmsRequestBody {
|
|
|
4972
5004
|
* These packages will be installed using `apt-get install` on VM startup.
|
|
4973
5005
|
*/
|
|
4974
5006
|
aptDeps?: string[] | null;
|
|
5007
|
+
/**
|
|
5008
|
+
* Optional list of custom domains to map to this VM. Each domain can optionally
|
|
5009
|
+
* specify a vm port. If vm_port is not specified, defaults to 443.
|
|
5010
|
+
* Domains must be verified and owned by the account before they can be mapped.
|
|
5011
|
+
*/
|
|
5012
|
+
domains?: {
|
|
5013
|
+
/**
|
|
5014
|
+
* The domain name to map to the VM
|
|
5015
|
+
*/
|
|
5016
|
+
domain: string;
|
|
5017
|
+
/**
|
|
5018
|
+
* The port on the VM to route traffic to. Defaults to 443 if not specified.
|
|
5019
|
+
*/
|
|
5020
|
+
vmPort?: number | null;
|
|
5021
|
+
}[] | null;
|
|
4975
5022
|
}
|
|
4976
5023
|
interface PostV1VmsSnapshotsRequestBody {
|
|
4977
5024
|
name?: string | null;
|
|
@@ -5739,46 +5786,55 @@ type GetPathMap = {
|
|
|
5739
5786
|
"/dns/v1/records": {
|
|
5740
5787
|
options: {
|
|
5741
5788
|
query?: GetDnsV1RecordsQueryParams;
|
|
5789
|
+
headers?: Record<string, string>;
|
|
5742
5790
|
};
|
|
5743
5791
|
response: ResponseGetDnsV1Records200;
|
|
5744
5792
|
};
|
|
5745
5793
|
"/domains/v1/domains": {
|
|
5746
5794
|
options: {
|
|
5747
5795
|
query?: GetDomainsV1DomainsQueryParams;
|
|
5796
|
+
headers?: Record<string, string>;
|
|
5748
5797
|
};
|
|
5749
5798
|
response: ResponseGetDomainsV1Domains200;
|
|
5750
5799
|
};
|
|
5751
5800
|
"/domains/v1/mappings": {
|
|
5752
5801
|
options: {
|
|
5753
5802
|
query?: GetDomainsV1MappingsQueryParams;
|
|
5803
|
+
headers?: Record<string, string>;
|
|
5754
5804
|
};
|
|
5755
5805
|
response: ResponseGetDomainsV1Mappings200;
|
|
5756
5806
|
};
|
|
5757
5807
|
"/domains/v1/verifications": {
|
|
5758
|
-
options?:
|
|
5808
|
+
options?: {
|
|
5809
|
+
headers?: Record<string, string>;
|
|
5810
|
+
};
|
|
5759
5811
|
response: ResponseGetDomainsV1Verifications200;
|
|
5760
5812
|
};
|
|
5761
5813
|
"/ephemeral/v1/dev-servers/status": {
|
|
5762
5814
|
options: {
|
|
5763
5815
|
body: GetEphemeralV1DevServersStatusRequestBody;
|
|
5816
|
+
headers?: Record<string, string>;
|
|
5764
5817
|
};
|
|
5765
5818
|
response: ResponseGetEphemeralV1DevServersStatus200;
|
|
5766
5819
|
};
|
|
5767
5820
|
"/execute/v1/deployments": {
|
|
5768
5821
|
options: {
|
|
5769
5822
|
query?: GetExecuteV1DeploymentsQueryParams;
|
|
5823
|
+
headers?: Record<string, string>;
|
|
5770
5824
|
};
|
|
5771
5825
|
response: ResponseGetExecuteV1Deployments200;
|
|
5772
5826
|
};
|
|
5773
5827
|
"/execute/v1/deployments/{deployment}": {
|
|
5774
5828
|
options: {
|
|
5775
5829
|
params: GetExecuteV1DeploymentsDeploymentPathParams;
|
|
5830
|
+
headers?: Record<string, string>;
|
|
5776
5831
|
};
|
|
5777
5832
|
response: ResponseGetExecuteV1DeploymentsDeployment200;
|
|
5778
5833
|
};
|
|
5779
5834
|
"/git/v1/identity": {
|
|
5780
5835
|
options: {
|
|
5781
5836
|
query?: GetGitV1IdentityQueryParams;
|
|
5837
|
+
headers?: Record<string, string>;
|
|
5782
5838
|
};
|
|
5783
5839
|
response: ResponseGetGitV1Identity200;
|
|
5784
5840
|
};
|
|
@@ -5786,30 +5842,35 @@ type GetPathMap = {
|
|
|
5786
5842
|
options: {
|
|
5787
5843
|
params: GetGitV1IdentityIdentityPermissionsPathParams;
|
|
5788
5844
|
query?: GetGitV1IdentityIdentityPermissionsQueryParams;
|
|
5845
|
+
headers?: Record<string, string>;
|
|
5789
5846
|
};
|
|
5790
5847
|
response: ResponseGetGitV1IdentityIdentityPermissions200;
|
|
5791
5848
|
};
|
|
5792
5849
|
"/git/v1/identity/{identity}/permissions/{repo}": {
|
|
5793
5850
|
options: {
|
|
5794
5851
|
params: GetGitV1IdentityIdentityPermissionsRepoPathParams;
|
|
5852
|
+
headers?: Record<string, string>;
|
|
5795
5853
|
};
|
|
5796
5854
|
response: ResponseGetGitV1IdentityIdentityPermissionsRepo200;
|
|
5797
5855
|
};
|
|
5798
5856
|
"/git/v1/identity/{identity}/tokens": {
|
|
5799
5857
|
options: {
|
|
5800
5858
|
params: GetGitV1IdentityIdentityTokensPathParams;
|
|
5859
|
+
headers?: Record<string, string>;
|
|
5801
5860
|
};
|
|
5802
5861
|
response: ResponseGetGitV1IdentityIdentityTokens200;
|
|
5803
5862
|
};
|
|
5804
5863
|
"/git/v1/repo": {
|
|
5805
5864
|
options: {
|
|
5806
5865
|
query?: GetGitV1RepoQueryParams;
|
|
5866
|
+
headers?: Record<string, string>;
|
|
5807
5867
|
};
|
|
5808
5868
|
response: ResponseGetGitV1Repo200;
|
|
5809
5869
|
};
|
|
5810
5870
|
"/git/v1/repo/{repo_id}/default-branch": {
|
|
5811
5871
|
options: {
|
|
5812
5872
|
params: GetGitV1RepoRepoIdDefaultBranchPathParams;
|
|
5873
|
+
headers?: Record<string, string>;
|
|
5813
5874
|
};
|
|
5814
5875
|
response: ResponseGetGitV1RepoRepoIdDefaultBranch200;
|
|
5815
5876
|
};
|
|
@@ -5817,18 +5878,21 @@ type GetPathMap = {
|
|
|
5817
5878
|
options: {
|
|
5818
5879
|
params: GetGitV1RepoRepoIdDevServerConfigurationPathParams;
|
|
5819
5880
|
query?: GetGitV1RepoRepoIdDevServerConfigurationQueryParams;
|
|
5881
|
+
headers?: Record<string, string>;
|
|
5820
5882
|
};
|
|
5821
5883
|
response: ResponseGetGitV1RepoRepoIdDevServerConfiguration200;
|
|
5822
5884
|
};
|
|
5823
5885
|
"/git/v1/repo/{repo_id}/github-sync": {
|
|
5824
5886
|
options: {
|
|
5825
5887
|
params: GetGitV1RepoRepoIdGithubSyncPathParams;
|
|
5888
|
+
headers?: Record<string, string>;
|
|
5826
5889
|
};
|
|
5827
5890
|
response: ResponseGetGitV1RepoRepoIdGithubSync200;
|
|
5828
5891
|
};
|
|
5829
5892
|
"/git/v1/repo/{repo}": {
|
|
5830
5893
|
options: {
|
|
5831
5894
|
params: GetGitV1RepoRepoPathParams;
|
|
5895
|
+
headers?: Record<string, string>;
|
|
5832
5896
|
};
|
|
5833
5897
|
response: ResponseGetGitV1RepoRepo200;
|
|
5834
5898
|
};
|
|
@@ -5836,6 +5900,7 @@ type GetPathMap = {
|
|
|
5836
5900
|
options: {
|
|
5837
5901
|
params: GetGitV1RepoRepoComparePathParams;
|
|
5838
5902
|
query?: GetGitV1RepoRepoCompareQueryParams;
|
|
5903
|
+
headers?: Record<string, string>;
|
|
5839
5904
|
};
|
|
5840
5905
|
response: ResponseGetGitV1RepoRepoCompare200;
|
|
5841
5906
|
};
|
|
@@ -5843,12 +5908,14 @@ type GetPathMap = {
|
|
|
5843
5908
|
options: {
|
|
5844
5909
|
params: GetGitV1RepoRepoContentsPathPathParams;
|
|
5845
5910
|
query?: GetGitV1RepoRepoContentsPathQueryParams;
|
|
5911
|
+
headers?: Record<string, string>;
|
|
5846
5912
|
};
|
|
5847
5913
|
response: ResponseGetGitV1RepoRepoContentsPath200;
|
|
5848
5914
|
};
|
|
5849
5915
|
"/git/v1/repo/{repo}/git/blobs/{hash}": {
|
|
5850
5916
|
options: {
|
|
5851
5917
|
params: GetGitV1RepoRepoGitBlobsHashPathParams;
|
|
5918
|
+
headers?: Record<string, string>;
|
|
5852
5919
|
};
|
|
5853
5920
|
response: ResponseGetGitV1RepoRepoGitBlobsHash200;
|
|
5854
5921
|
};
|
|
@@ -5856,48 +5923,56 @@ type GetPathMap = {
|
|
|
5856
5923
|
options: {
|
|
5857
5924
|
params: GetGitV1RepoRepoGitCommitsPathParams;
|
|
5858
5925
|
query?: GetGitV1RepoRepoGitCommitsQueryParams;
|
|
5926
|
+
headers?: Record<string, string>;
|
|
5859
5927
|
};
|
|
5860
5928
|
response: ResponseGetGitV1RepoRepoGitCommits200;
|
|
5861
5929
|
};
|
|
5862
5930
|
"/git/v1/repo/{repo}/git/commits/{hash}": {
|
|
5863
5931
|
options: {
|
|
5864
5932
|
params: GetGitV1RepoRepoGitCommitsHashPathParams;
|
|
5933
|
+
headers?: Record<string, string>;
|
|
5865
5934
|
};
|
|
5866
5935
|
response: ResponseGetGitV1RepoRepoGitCommitsHash200;
|
|
5867
5936
|
};
|
|
5868
5937
|
"/git/v1/repo/{repo}/git/refs/heads/": {
|
|
5869
5938
|
options: {
|
|
5870
5939
|
params: GetGitV1RepoRepoGitRefsHeadsPathParams;
|
|
5940
|
+
headers?: Record<string, string>;
|
|
5871
5941
|
};
|
|
5872
5942
|
response: ResponseGetGitV1RepoRepoGitRefsHeads200;
|
|
5873
5943
|
};
|
|
5874
5944
|
"/git/v1/repo/{repo}/git/refs/heads/{branch}": {
|
|
5875
5945
|
options: {
|
|
5876
5946
|
params: GetGitV1RepoRepoGitRefsHeadsBranchPathParams;
|
|
5947
|
+
headers?: Record<string, string>;
|
|
5877
5948
|
};
|
|
5878
5949
|
response: ResponseGetGitV1RepoRepoGitRefsHeadsBranch200;
|
|
5879
5950
|
};
|
|
5880
5951
|
"/git/v1/repo/{repo}/git/refs/tags/": {
|
|
5881
5952
|
options: {
|
|
5882
5953
|
params: GetGitV1RepoRepoGitRefsTagsPathParams;
|
|
5954
|
+
headers?: Record<string, string>;
|
|
5883
5955
|
};
|
|
5884
5956
|
response: ResponseGetGitV1RepoRepoGitRefsTags200;
|
|
5885
5957
|
};
|
|
5886
5958
|
"/git/v1/repo/{repo}/git/refs/tags/{tag}": {
|
|
5887
5959
|
options: {
|
|
5888
5960
|
params: GetGitV1RepoRepoGitRefsTagsTagPathParams;
|
|
5961
|
+
headers?: Record<string, string>;
|
|
5889
5962
|
};
|
|
5890
5963
|
response: ResponseGetGitV1RepoRepoGitRefsTagsTag200;
|
|
5891
5964
|
};
|
|
5892
5965
|
"/git/v1/repo/{repo}/git/tags/{hash}": {
|
|
5893
5966
|
options: {
|
|
5894
5967
|
params: GetGitV1RepoRepoGitTagsHashPathParams;
|
|
5968
|
+
headers?: Record<string, string>;
|
|
5895
5969
|
};
|
|
5896
5970
|
response: ResponseGetGitV1RepoRepoGitTagsHash200;
|
|
5897
5971
|
};
|
|
5898
5972
|
"/git/v1/repo/{repo}/git/trees/{hash}": {
|
|
5899
5973
|
options: {
|
|
5900
5974
|
params: GetGitV1RepoRepoGitTreesHashPathParams;
|
|
5975
|
+
headers?: Record<string, string>;
|
|
5901
5976
|
};
|
|
5902
5977
|
response: ResponseGetGitV1RepoRepoGitTreesHash200;
|
|
5903
5978
|
};
|
|
@@ -5905,12 +5980,14 @@ type GetPathMap = {
|
|
|
5905
5980
|
options: {
|
|
5906
5981
|
params: GetGitV1RepoRepoTarballPathParams;
|
|
5907
5982
|
query?: GetGitV1RepoRepoTarballQueryParams;
|
|
5983
|
+
headers?: Record<string, string>;
|
|
5908
5984
|
};
|
|
5909
5985
|
response: void;
|
|
5910
5986
|
};
|
|
5911
5987
|
"/git/v1/repo/{repo}/trigger": {
|
|
5912
5988
|
options: {
|
|
5913
5989
|
params: GetGitV1RepoRepoTriggerPathParams;
|
|
5990
|
+
headers?: Record<string, string>;
|
|
5914
5991
|
};
|
|
5915
5992
|
response: ResponseGetGitV1RepoRepoTrigger200;
|
|
5916
5993
|
};
|
|
@@ -5918,12 +5995,14 @@ type GetPathMap = {
|
|
|
5918
5995
|
options: {
|
|
5919
5996
|
params: GetGitV1RepoRepoZipPathParams;
|
|
5920
5997
|
query?: GetGitV1RepoRepoZipQueryParams;
|
|
5998
|
+
headers?: Record<string, string>;
|
|
5921
5999
|
};
|
|
5922
6000
|
response: void;
|
|
5923
6001
|
};
|
|
5924
6002
|
"/identity/v1/identities": {
|
|
5925
6003
|
options: {
|
|
5926
6004
|
query?: GetIdentityV1IdentitiesQueryParams;
|
|
6005
|
+
headers?: Record<string, string>;
|
|
5927
6006
|
};
|
|
5928
6007
|
response: ResponseGetIdentityV1Identities200;
|
|
5929
6008
|
};
|
|
@@ -5931,12 +6010,14 @@ type GetPathMap = {
|
|
|
5931
6010
|
options: {
|
|
5932
6011
|
params: GetIdentityV1IdentitiesIdentityPermissionsGitPathParams;
|
|
5933
6012
|
query?: GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams;
|
|
6013
|
+
headers?: Record<string, string>;
|
|
5934
6014
|
};
|
|
5935
6015
|
response: ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200;
|
|
5936
6016
|
};
|
|
5937
6017
|
"/identity/v1/identities/{identity}/permissions/git/{repo}": {
|
|
5938
6018
|
options: {
|
|
5939
6019
|
params: GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams;
|
|
6020
|
+
headers?: Record<string, string>;
|
|
5940
6021
|
};
|
|
5941
6022
|
response: ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200;
|
|
5942
6023
|
};
|
|
@@ -5944,74 +6025,89 @@ type GetPathMap = {
|
|
|
5944
6025
|
options: {
|
|
5945
6026
|
params: GetIdentityV1IdentitiesIdentityPermissionsVmPathParams;
|
|
5946
6027
|
query?: GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams;
|
|
6028
|
+
headers?: Record<string, string>;
|
|
5947
6029
|
};
|
|
5948
6030
|
response: ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200;
|
|
5949
6031
|
};
|
|
5950
6032
|
"/identity/v1/identities/{identity}/permissions/vm/{vm_id}": {
|
|
5951
6033
|
options: {
|
|
5952
6034
|
params: GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams;
|
|
6035
|
+
headers?: Record<string, string>;
|
|
5953
6036
|
};
|
|
5954
6037
|
response: ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200;
|
|
5955
6038
|
};
|
|
5956
6039
|
"/identity/v1/identities/{identity}/tokens": {
|
|
5957
6040
|
options: {
|
|
5958
6041
|
params: GetIdentityV1IdentitiesIdentityTokensPathParams;
|
|
6042
|
+
headers?: Record<string, string>;
|
|
5959
6043
|
};
|
|
5960
6044
|
response: ResponseGetIdentityV1IdentitiesIdentityTokens200;
|
|
5961
6045
|
};
|
|
5962
6046
|
"/observability/v1/logs": {
|
|
5963
6047
|
options: {
|
|
5964
6048
|
query?: GetObservabilityV1LogsQueryParams;
|
|
6049
|
+
headers?: Record<string, string>;
|
|
5965
6050
|
};
|
|
5966
6051
|
response: ResponseGetObservabilityV1Logs200;
|
|
5967
6052
|
};
|
|
5968
6053
|
"/v1/vms": {
|
|
5969
|
-
options?:
|
|
6054
|
+
options?: {
|
|
6055
|
+
headers?: Record<string, string>;
|
|
6056
|
+
};
|
|
5970
6057
|
response: ResponseGetV1Vms200;
|
|
5971
6058
|
};
|
|
5972
6059
|
"/v1/vms/snapshots": {
|
|
5973
|
-
options?:
|
|
6060
|
+
options?: {
|
|
6061
|
+
headers?: Record<string, string>;
|
|
6062
|
+
};
|
|
5974
6063
|
response: ResponseGetV1VmsSnapshots200;
|
|
5975
6064
|
};
|
|
5976
6065
|
"/v1/vms/{vm_id}": {
|
|
5977
6066
|
options: {
|
|
5978
6067
|
params: GetV1VmsVmIdPathParams;
|
|
6068
|
+
headers?: Record<string, string>;
|
|
5979
6069
|
};
|
|
5980
6070
|
response: ResponseGetV1VmsVmId200;
|
|
5981
6071
|
};
|
|
5982
6072
|
"/v1/vms/{vm_id}/files/{filepath}": {
|
|
5983
6073
|
options: {
|
|
5984
6074
|
params: GetV1VmsVmIdFilesFilepathPathParams;
|
|
6075
|
+
headers?: Record<string, string>;
|
|
5985
6076
|
};
|
|
5986
6077
|
response: ResponseGetV1VmsVmIdFilesFilepath200;
|
|
5987
6078
|
};
|
|
5988
6079
|
"/v1/vms/{vm_id}/terminals": {
|
|
5989
6080
|
options: {
|
|
5990
6081
|
params: GetV1VmsVmIdTerminalsPathParams;
|
|
6082
|
+
headers?: Record<string, string>;
|
|
5991
6083
|
};
|
|
5992
6084
|
response: ResponseGetV1VmsVmIdTerminals200;
|
|
5993
6085
|
};
|
|
5994
6086
|
"/v1/vms/{vm_id}/terminals/{terminal_id}/logs": {
|
|
5995
6087
|
options: {
|
|
5996
6088
|
params: GetV1VmsVmIdTerminalsTerminalIdLogsPathParams;
|
|
6089
|
+
headers?: Record<string, string>;
|
|
5997
6090
|
};
|
|
5998
6091
|
response: ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200;
|
|
5999
6092
|
};
|
|
6000
6093
|
"/v1/vms/{vm_id}/terminals/{terminal_id}/xterm-256color": {
|
|
6001
6094
|
options: {
|
|
6002
6095
|
params: GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams;
|
|
6096
|
+
headers?: Record<string, string>;
|
|
6003
6097
|
};
|
|
6004
6098
|
response: ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200;
|
|
6005
6099
|
};
|
|
6006
6100
|
"/web/v1/deployments": {
|
|
6007
6101
|
options: {
|
|
6008
6102
|
query?: GetWebV1DeploymentsQueryParams;
|
|
6103
|
+
headers?: Record<string, string>;
|
|
6009
6104
|
};
|
|
6010
6105
|
response: ResponseGetWebV1Deployments200;
|
|
6011
6106
|
};
|
|
6012
6107
|
"/web/v1/deployments/{deployment_id}": {
|
|
6013
6108
|
options: {
|
|
6014
6109
|
params: GetWebV1DeploymentsDeploymentIdPathParams;
|
|
6110
|
+
headers?: Record<string, string>;
|
|
6015
6111
|
};
|
|
6016
6112
|
response: void;
|
|
6017
6113
|
};
|
|
@@ -6020,18 +6116,21 @@ type PostPathMap = {
|
|
|
6020
6116
|
"/dev-servers/v1/dev-servers/request": {
|
|
6021
6117
|
options: {
|
|
6022
6118
|
body: PostDevServersV1DevServersRequestRequestBody;
|
|
6119
|
+
headers?: Record<string, string>;
|
|
6023
6120
|
};
|
|
6024
6121
|
response: void;
|
|
6025
6122
|
};
|
|
6026
6123
|
"/dns/v1/records": {
|
|
6027
6124
|
options: {
|
|
6028
6125
|
body: PostDnsV1RecordsRequestBody;
|
|
6126
|
+
headers?: Record<string, string>;
|
|
6029
6127
|
};
|
|
6030
6128
|
response: ResponsePostDnsV1Records200;
|
|
6031
6129
|
};
|
|
6032
6130
|
"/domains/v1/certs/{domain}/wildcard": {
|
|
6033
6131
|
options: {
|
|
6034
6132
|
params: PostDomainsV1CertsDomainWildcardPathParams;
|
|
6133
|
+
headers?: Record<string, string>;
|
|
6035
6134
|
};
|
|
6036
6135
|
response: ResponsePostDomainsV1CertsDomainWildcard200;
|
|
6037
6136
|
};
|
|
@@ -6039,89 +6138,105 @@ type PostPathMap = {
|
|
|
6039
6138
|
options: {
|
|
6040
6139
|
params: PostDomainsV1MappingsDomainPathParams;
|
|
6041
6140
|
body: PostDomainsV1MappingsDomainRequestBody;
|
|
6141
|
+
headers?: Record<string, string>;
|
|
6042
6142
|
};
|
|
6043
6143
|
response: ResponsePostDomainsV1MappingsDomain200;
|
|
6044
6144
|
};
|
|
6045
6145
|
"/domains/v1/verifications": {
|
|
6046
6146
|
options: {
|
|
6047
6147
|
body: PostDomainsV1VerificationsRequestBody;
|
|
6148
|
+
headers?: Record<string, string>;
|
|
6048
6149
|
};
|
|
6049
6150
|
response: ResponsePostDomainsV1Verifications200;
|
|
6050
6151
|
};
|
|
6051
6152
|
"/ephemeral/v1/dev-servers": {
|
|
6052
6153
|
options: {
|
|
6053
6154
|
body: PostEphemeralV1DevServersRequestBody;
|
|
6155
|
+
headers?: Record<string, string>;
|
|
6054
6156
|
};
|
|
6055
6157
|
response: ResponsePostEphemeralV1DevServers200;
|
|
6056
6158
|
};
|
|
6057
6159
|
"/ephemeral/v1/dev-servers/exec": {
|
|
6058
6160
|
options: {
|
|
6059
6161
|
body: PostEphemeralV1DevServersExecRequestBody;
|
|
6162
|
+
headers?: Record<string, string>;
|
|
6060
6163
|
};
|
|
6061
6164
|
response: ResponsePostEphemeralV1DevServersExec200;
|
|
6062
6165
|
};
|
|
6063
6166
|
"/ephemeral/v1/dev-servers/git/commit-push": {
|
|
6064
6167
|
options: {
|
|
6065
6168
|
body: PostEphemeralV1DevServersGitCommitPushRequestBody;
|
|
6169
|
+
headers?: Record<string, string>;
|
|
6066
6170
|
};
|
|
6067
6171
|
response: ResponsePostEphemeralV1DevServersGitCommitPush200;
|
|
6068
6172
|
};
|
|
6069
6173
|
"/ephemeral/v1/dev-servers/logs": {
|
|
6070
6174
|
options: {
|
|
6071
6175
|
body: PostEphemeralV1DevServersLogsRequestBody;
|
|
6176
|
+
headers?: Record<string, string>;
|
|
6072
6177
|
};
|
|
6073
6178
|
response: ResponsePostEphemeralV1DevServersLogs200;
|
|
6074
6179
|
};
|
|
6075
6180
|
"/ephemeral/v1/dev-servers/restart": {
|
|
6076
6181
|
options: {
|
|
6077
6182
|
body: PostEphemeralV1DevServersRestartRequestBody;
|
|
6183
|
+
headers?: Record<string, string>;
|
|
6078
6184
|
};
|
|
6079
6185
|
response: ResponsePostEphemeralV1DevServersRestart200;
|
|
6080
6186
|
};
|
|
6081
6187
|
"/ephemeral/v1/dev-servers/shutdown": {
|
|
6082
6188
|
options: {
|
|
6083
6189
|
body: PostEphemeralV1DevServersShutdownRequestBody;
|
|
6190
|
+
headers?: Record<string, string>;
|
|
6084
6191
|
};
|
|
6085
6192
|
response: ResponsePostEphemeralV1DevServersShutdown200;
|
|
6086
6193
|
};
|
|
6087
6194
|
"/ephemeral/v1/dev-servers/watch-files": {
|
|
6088
6195
|
options: {
|
|
6089
6196
|
body: PostEphemeralV1DevServersWatchFilesRequestBody;
|
|
6197
|
+
headers?: Record<string, string>;
|
|
6090
6198
|
};
|
|
6091
6199
|
response: void;
|
|
6092
6200
|
};
|
|
6093
6201
|
"/execute/v1/script": {
|
|
6094
6202
|
options: {
|
|
6095
6203
|
body: PostExecuteV1ScriptRequestBody;
|
|
6204
|
+
headers?: Record<string, string>;
|
|
6096
6205
|
};
|
|
6097
6206
|
response: ResponsePostExecuteV1Script200;
|
|
6098
6207
|
};
|
|
6099
6208
|
"/execute/v2/script": {
|
|
6100
6209
|
options: {
|
|
6101
6210
|
body: PostExecuteV2ScriptRequestBody;
|
|
6211
|
+
headers?: Record<string, string>;
|
|
6102
6212
|
};
|
|
6103
6213
|
response: ResponsePostExecuteV2Script200;
|
|
6104
6214
|
};
|
|
6105
6215
|
"/git/v1/identity": {
|
|
6106
|
-
options?:
|
|
6216
|
+
options?: {
|
|
6217
|
+
headers?: Record<string, string>;
|
|
6218
|
+
};
|
|
6107
6219
|
response: ResponsePostGitV1Identity200;
|
|
6108
6220
|
};
|
|
6109
6221
|
"/git/v1/identity/{identity}/permissions/{repo}": {
|
|
6110
6222
|
options: {
|
|
6111
6223
|
params: PostGitV1IdentityIdentityPermissionsRepoPathParams;
|
|
6112
6224
|
body: PostGitV1IdentityIdentityPermissionsRepoRequestBody;
|
|
6225
|
+
headers?: Record<string, string>;
|
|
6113
6226
|
};
|
|
6114
6227
|
response: ResponsePostGitV1IdentityIdentityPermissionsRepo200;
|
|
6115
6228
|
};
|
|
6116
6229
|
"/git/v1/identity/{identity}/tokens": {
|
|
6117
6230
|
options: {
|
|
6118
6231
|
params: PostGitV1IdentityIdentityTokensPathParams;
|
|
6232
|
+
headers?: Record<string, string>;
|
|
6119
6233
|
};
|
|
6120
6234
|
response: ResponsePostGitV1IdentityIdentityTokens200;
|
|
6121
6235
|
};
|
|
6122
6236
|
"/git/v1/repo": {
|
|
6123
6237
|
options: {
|
|
6124
6238
|
body: PostGitV1RepoRequestBody;
|
|
6239
|
+
headers?: Record<string, string>;
|
|
6125
6240
|
};
|
|
6126
6241
|
response: ResponsePostGitV1Repo200;
|
|
6127
6242
|
};
|
|
@@ -6129,6 +6244,7 @@ type PostPathMap = {
|
|
|
6129
6244
|
options: {
|
|
6130
6245
|
params: PostGitV1RepoRepoIdGithubSyncPathParams;
|
|
6131
6246
|
body: PostGitV1RepoRepoIdGithubSyncRequestBody;
|
|
6247
|
+
headers?: Record<string, string>;
|
|
6132
6248
|
};
|
|
6133
6249
|
response: void;
|
|
6134
6250
|
};
|
|
@@ -6136,17 +6252,21 @@ type PostPathMap = {
|
|
|
6136
6252
|
options: {
|
|
6137
6253
|
params: PostGitV1RepoRepoTriggerPathParams;
|
|
6138
6254
|
body: PostGitV1RepoRepoTriggerRequestBody;
|
|
6255
|
+
headers?: Record<string, string>;
|
|
6139
6256
|
};
|
|
6140
6257
|
response: ResponsePostGitV1RepoRepoTrigger200;
|
|
6141
6258
|
};
|
|
6142
6259
|
"/identity/v1/identities": {
|
|
6143
|
-
options?:
|
|
6260
|
+
options?: {
|
|
6261
|
+
headers?: Record<string, string>;
|
|
6262
|
+
};
|
|
6144
6263
|
response: ResponsePostIdentityV1Identities200;
|
|
6145
6264
|
};
|
|
6146
6265
|
"/identity/v1/identities/{identity}/permissions/git/{repo}": {
|
|
6147
6266
|
options: {
|
|
6148
6267
|
params: PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams;
|
|
6149
6268
|
body: PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody;
|
|
6269
|
+
headers?: Record<string, string>;
|
|
6150
6270
|
};
|
|
6151
6271
|
response: ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200;
|
|
6152
6272
|
};
|
|
@@ -6154,24 +6274,28 @@ type PostPathMap = {
|
|
|
6154
6274
|
options: {
|
|
6155
6275
|
params: PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams;
|
|
6156
6276
|
body: PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody;
|
|
6277
|
+
headers?: Record<string, string>;
|
|
6157
6278
|
};
|
|
6158
6279
|
response: ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200;
|
|
6159
6280
|
};
|
|
6160
6281
|
"/identity/v1/identities/{identity}/tokens": {
|
|
6161
6282
|
options: {
|
|
6162
6283
|
params: PostIdentityV1IdentitiesIdentityTokensPathParams;
|
|
6284
|
+
headers?: Record<string, string>;
|
|
6163
6285
|
};
|
|
6164
6286
|
response: ResponsePostIdentityV1IdentitiesIdentityTokens200;
|
|
6165
6287
|
};
|
|
6166
6288
|
"/v1/vms": {
|
|
6167
6289
|
options: {
|
|
6168
6290
|
body: PostV1VmsRequestBody;
|
|
6291
|
+
headers?: Record<string, string>;
|
|
6169
6292
|
};
|
|
6170
6293
|
response: ResponsePostV1Vms200;
|
|
6171
6294
|
};
|
|
6172
6295
|
"/v1/vms/snapshots": {
|
|
6173
6296
|
options: {
|
|
6174
6297
|
body: PostV1VmsSnapshotsRequestBody;
|
|
6298
|
+
headers?: Record<string, string>;
|
|
6175
6299
|
};
|
|
6176
6300
|
response: ResponsePostV1VmsSnapshots200;
|
|
6177
6301
|
};
|
|
@@ -6179,12 +6303,14 @@ type PostPathMap = {
|
|
|
6179
6303
|
options: {
|
|
6180
6304
|
params: PostV1VmsIdResizePathParams;
|
|
6181
6305
|
body: PostV1VmsIdResizeRequestBody;
|
|
6306
|
+
headers?: Record<string, string>;
|
|
6182
6307
|
};
|
|
6183
6308
|
response: ResponsePostV1VmsIdResize200;
|
|
6184
6309
|
};
|
|
6185
6310
|
"/v1/vms/{vm_id}/await": {
|
|
6186
6311
|
options: {
|
|
6187
6312
|
params: PostV1VmsVmIdAwaitPathParams;
|
|
6313
|
+
headers?: Record<string, string>;
|
|
6188
6314
|
};
|
|
6189
6315
|
response: ResponsePostV1VmsVmIdAwait200;
|
|
6190
6316
|
};
|
|
@@ -6192,6 +6318,7 @@ type PostPathMap = {
|
|
|
6192
6318
|
options: {
|
|
6193
6319
|
params: PostV1VmsVmIdExecAwaitPathParams;
|
|
6194
6320
|
body: PostV1VmsVmIdExecAwaitRequestBody;
|
|
6321
|
+
headers?: Record<string, string>;
|
|
6195
6322
|
};
|
|
6196
6323
|
response: ResponsePostV1VmsVmIdExecAwait200;
|
|
6197
6324
|
};
|
|
@@ -6199,18 +6326,21 @@ type PostPathMap = {
|
|
|
6199
6326
|
options: {
|
|
6200
6327
|
params: PostV1VmsVmIdForkPathParams;
|
|
6201
6328
|
body: PostV1VmsVmIdForkRequestBody;
|
|
6329
|
+
headers?: Record<string, string>;
|
|
6202
6330
|
};
|
|
6203
6331
|
response: ResponsePostV1VmsVmIdFork200;
|
|
6204
6332
|
};
|
|
6205
6333
|
"/v1/vms/{vm_id}/kill": {
|
|
6206
6334
|
options: {
|
|
6207
6335
|
params: PostV1VmsVmIdKillPathParams;
|
|
6336
|
+
headers?: Record<string, string>;
|
|
6208
6337
|
};
|
|
6209
6338
|
response: ResponsePostV1VmsVmIdKill200;
|
|
6210
6339
|
};
|
|
6211
6340
|
"/v1/vms/{vm_id}/optimize": {
|
|
6212
6341
|
options: {
|
|
6213
6342
|
params: PostV1VmsVmIdOptimizePathParams;
|
|
6343
|
+
headers?: Record<string, string>;
|
|
6214
6344
|
};
|
|
6215
6345
|
response: ResponsePostV1VmsVmIdOptimize200;
|
|
6216
6346
|
};
|
|
@@ -6218,6 +6348,7 @@ type PostPathMap = {
|
|
|
6218
6348
|
options: {
|
|
6219
6349
|
params: PostV1VmsVmIdSnapshotPathParams;
|
|
6220
6350
|
body: PostV1VmsVmIdSnapshotRequestBody;
|
|
6351
|
+
headers?: Record<string, string>;
|
|
6221
6352
|
};
|
|
6222
6353
|
response: ResponsePostV1VmsVmIdSnapshot200;
|
|
6223
6354
|
};
|
|
@@ -6225,36 +6356,42 @@ type PostPathMap = {
|
|
|
6225
6356
|
options: {
|
|
6226
6357
|
params: PostV1VmsVmIdStartPathParams;
|
|
6227
6358
|
body: PostV1VmsVmIdStartRequestBody;
|
|
6359
|
+
headers?: Record<string, string>;
|
|
6228
6360
|
};
|
|
6229
6361
|
response: ResponsePostV1VmsVmIdStart200;
|
|
6230
6362
|
};
|
|
6231
6363
|
"/v1/vms/{vm_id}/stop": {
|
|
6232
6364
|
options: {
|
|
6233
6365
|
params: PostV1VmsVmIdStopPathParams;
|
|
6366
|
+
headers?: Record<string, string>;
|
|
6234
6367
|
};
|
|
6235
6368
|
response: ResponsePostV1VmsVmIdStop200;
|
|
6236
6369
|
};
|
|
6237
6370
|
"/v1/vms/{vm_id}/suspend": {
|
|
6238
6371
|
options: {
|
|
6239
6372
|
params: PostV1VmsVmIdSuspendPathParams;
|
|
6373
|
+
headers?: Record<string, string>;
|
|
6240
6374
|
};
|
|
6241
6375
|
response: ResponsePostV1VmsVmIdSuspend200;
|
|
6242
6376
|
};
|
|
6243
6377
|
"/v1/vms/{vm_id}/watch-files": {
|
|
6244
6378
|
options: {
|
|
6245
6379
|
params: PostV1VmsVmIdWatchFilesPathParams;
|
|
6380
|
+
headers?: Record<string, string>;
|
|
6246
6381
|
};
|
|
6247
6382
|
response: void;
|
|
6248
6383
|
};
|
|
6249
6384
|
"/web/v1/deploy": {
|
|
6250
6385
|
options: {
|
|
6251
6386
|
body: PostWebV1DeployRequestBody;
|
|
6387
|
+
headers?: Record<string, string>;
|
|
6252
6388
|
};
|
|
6253
6389
|
response: ResponsePostWebV1Deploy200;
|
|
6254
6390
|
};
|
|
6255
6391
|
"/web/v1/deployment": {
|
|
6256
6392
|
options: {
|
|
6257
6393
|
body: PostWebV1DeploymentRequestBody;
|
|
6394
|
+
headers?: Record<string, string>;
|
|
6258
6395
|
};
|
|
6259
6396
|
response: ResponsePostWebV1Deployment200;
|
|
6260
6397
|
};
|
|
@@ -6263,6 +6400,7 @@ type PutPathMap = {
|
|
|
6263
6400
|
"/domains/v1/verifications": {
|
|
6264
6401
|
options: {
|
|
6265
6402
|
body: PutDomainsV1VerificationsRequestBody;
|
|
6403
|
+
headers?: Record<string, string>;
|
|
6266
6404
|
};
|
|
6267
6405
|
response: ResponsePutDomainsV1Verifications200;
|
|
6268
6406
|
};
|
|
@@ -6270,6 +6408,7 @@ type PutPathMap = {
|
|
|
6270
6408
|
options: {
|
|
6271
6409
|
params: PutGitV1RepoRepoIdDefaultBranchPathParams;
|
|
6272
6410
|
body: PutGitV1RepoRepoIdDefaultBranchRequestBody;
|
|
6411
|
+
headers?: Record<string, string>;
|
|
6273
6412
|
};
|
|
6274
6413
|
response: ResponsePutGitV1RepoRepoIdDefaultBranch200;
|
|
6275
6414
|
};
|
|
@@ -6277,6 +6416,7 @@ type PutPathMap = {
|
|
|
6277
6416
|
options: {
|
|
6278
6417
|
params: PutGitV1RepoRepoIdDevServerConfigurationPathParams;
|
|
6279
6418
|
body: PutGitV1RepoRepoIdDevServerConfigurationRequestBody;
|
|
6419
|
+
headers?: Record<string, string>;
|
|
6280
6420
|
};
|
|
6281
6421
|
response: void;
|
|
6282
6422
|
};
|
|
@@ -6284,6 +6424,7 @@ type PutPathMap = {
|
|
|
6284
6424
|
options: {
|
|
6285
6425
|
params: PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams;
|
|
6286
6426
|
body: PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody;
|
|
6427
|
+
headers?: Record<string, string>;
|
|
6287
6428
|
};
|
|
6288
6429
|
response: ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200;
|
|
6289
6430
|
};
|
|
@@ -6291,6 +6432,7 @@ type PutPathMap = {
|
|
|
6291
6432
|
options: {
|
|
6292
6433
|
params: PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams;
|
|
6293
6434
|
body: PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody;
|
|
6435
|
+
headers?: Record<string, string>;
|
|
6294
6436
|
};
|
|
6295
6437
|
response: ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200;
|
|
6296
6438
|
};
|
|
@@ -6298,6 +6440,7 @@ type PutPathMap = {
|
|
|
6298
6440
|
options: {
|
|
6299
6441
|
params: PutV1VmsVmIdFilesFilepathPathParams;
|
|
6300
6442
|
body: PutV1VmsVmIdFilesFilepathRequestBody;
|
|
6443
|
+
headers?: Record<string, string>;
|
|
6301
6444
|
};
|
|
6302
6445
|
response: ResponsePutV1VmsVmIdFilesFilepath200;
|
|
6303
6446
|
};
|
|
@@ -6306,30 +6449,35 @@ type DeletePathMap = {
|
|
|
6306
6449
|
"/dns/v1/records": {
|
|
6307
6450
|
options: {
|
|
6308
6451
|
query?: DeleteDnsV1RecordsQueryParams;
|
|
6452
|
+
headers?: Record<string, string>;
|
|
6309
6453
|
};
|
|
6310
6454
|
response: ResponseDeleteDnsV1Records200;
|
|
6311
6455
|
};
|
|
6312
6456
|
"/domains/v1/mappings/{domain}": {
|
|
6313
6457
|
options: {
|
|
6314
6458
|
params: DeleteDomainsV1MappingsDomainPathParams;
|
|
6459
|
+
headers?: Record<string, string>;
|
|
6315
6460
|
};
|
|
6316
6461
|
response: ResponseDeleteDomainsV1MappingsDomain200;
|
|
6317
6462
|
};
|
|
6318
6463
|
"/domains/v1/verifications": {
|
|
6319
6464
|
options: {
|
|
6320
6465
|
body: DeleteDomainsV1VerificationsRequestBody;
|
|
6466
|
+
headers?: Record<string, string>;
|
|
6321
6467
|
};
|
|
6322
6468
|
response: ResponseDeleteDomainsV1Verifications200;
|
|
6323
6469
|
};
|
|
6324
6470
|
"/git/v1/identity/{identity}": {
|
|
6325
6471
|
options: {
|
|
6326
6472
|
params: DeleteGitV1IdentityIdentityPathParams;
|
|
6473
|
+
headers?: Record<string, string>;
|
|
6327
6474
|
};
|
|
6328
6475
|
response: ResponseDeleteGitV1IdentityIdentity200;
|
|
6329
6476
|
};
|
|
6330
6477
|
"/git/v1/identity/{identity}/permissions/{repo}": {
|
|
6331
6478
|
options: {
|
|
6332
6479
|
params: DeleteGitV1IdentityIdentityPermissionsRepoPathParams;
|
|
6480
|
+
headers?: Record<string, string>;
|
|
6333
6481
|
};
|
|
6334
6482
|
response: ResponseDeleteGitV1IdentityIdentityPermissionsRepo200;
|
|
6335
6483
|
};
|
|
@@ -6337,6 +6485,7 @@ type DeletePathMap = {
|
|
|
6337
6485
|
options: {
|
|
6338
6486
|
params: DeleteGitV1IdentityIdentityTokensPathParams;
|
|
6339
6487
|
body: DeleteGitV1IdentityIdentityTokensRequestBody;
|
|
6488
|
+
headers?: Record<string, string>;
|
|
6340
6489
|
};
|
|
6341
6490
|
response: ResponseDeleteGitV1IdentityIdentityTokens200;
|
|
6342
6491
|
};
|
|
@@ -6344,54 +6493,63 @@ type DeletePathMap = {
|
|
|
6344
6493
|
options: {
|
|
6345
6494
|
params: DeleteGitV1RepoRepoIdDevServerConfigurationPathParams;
|
|
6346
6495
|
query?: DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams;
|
|
6496
|
+
headers?: Record<string, string>;
|
|
6347
6497
|
};
|
|
6348
6498
|
response: void;
|
|
6349
6499
|
};
|
|
6350
6500
|
"/git/v1/repo/{repo_id}/github-sync": {
|
|
6351
6501
|
options: {
|
|
6352
6502
|
params: DeleteGitV1RepoRepoIdGithubSyncPathParams;
|
|
6503
|
+
headers?: Record<string, string>;
|
|
6353
6504
|
};
|
|
6354
6505
|
response: void;
|
|
6355
6506
|
};
|
|
6356
6507
|
"/git/v1/repo/{repo}": {
|
|
6357
6508
|
options: {
|
|
6358
6509
|
params: DeleteGitV1RepoRepoPathParams;
|
|
6510
|
+
headers?: Record<string, string>;
|
|
6359
6511
|
};
|
|
6360
6512
|
response: ResponseDeleteGitV1RepoRepo200;
|
|
6361
6513
|
};
|
|
6362
6514
|
"/git/v1/repo/{repo}/trigger/{trigger}": {
|
|
6363
6515
|
options: {
|
|
6364
6516
|
params: DeleteGitV1RepoRepoTriggerTriggerPathParams;
|
|
6517
|
+
headers?: Record<string, string>;
|
|
6365
6518
|
};
|
|
6366
6519
|
response: ResponseDeleteGitV1RepoRepoTriggerTrigger200;
|
|
6367
6520
|
};
|
|
6368
6521
|
"/identity/v1/identities/{identity}": {
|
|
6369
6522
|
options: {
|
|
6370
6523
|
params: DeleteIdentityV1IdentitiesIdentityPathParams;
|
|
6524
|
+
headers?: Record<string, string>;
|
|
6371
6525
|
};
|
|
6372
6526
|
response: ResponseDeleteIdentityV1IdentitiesIdentity200;
|
|
6373
6527
|
};
|
|
6374
6528
|
"/identity/v1/identities/{identity}/permissions/git/{repo}": {
|
|
6375
6529
|
options: {
|
|
6376
6530
|
params: DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams;
|
|
6531
|
+
headers?: Record<string, string>;
|
|
6377
6532
|
};
|
|
6378
6533
|
response: ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200;
|
|
6379
6534
|
};
|
|
6380
6535
|
"/identity/v1/identities/{identity}/permissions/vm/{vm_id}": {
|
|
6381
6536
|
options: {
|
|
6382
6537
|
params: DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams;
|
|
6538
|
+
headers?: Record<string, string>;
|
|
6383
6539
|
};
|
|
6384
6540
|
response: ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200;
|
|
6385
6541
|
};
|
|
6386
6542
|
"/identity/v1/identities/{identity}/tokens/{token}": {
|
|
6387
6543
|
options: {
|
|
6388
6544
|
params: DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams;
|
|
6545
|
+
headers?: Record<string, string>;
|
|
6389
6546
|
};
|
|
6390
6547
|
response: ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200;
|
|
6391
6548
|
};
|
|
6392
6549
|
"/v1/vms/{vm_id}": {
|
|
6393
6550
|
options: {
|
|
6394
6551
|
params: DeleteV1VmsVmIdPathParams;
|
|
6552
|
+
headers?: Record<string, string>;
|
|
6395
6553
|
};
|
|
6396
6554
|
response: ResponseDeleteV1VmsVmId200;
|
|
6397
6555
|
};
|
|
@@ -6401,6 +6559,7 @@ type PatchPathMap = {
|
|
|
6401
6559
|
options: {
|
|
6402
6560
|
params: PatchGitV1IdentityIdentityPermissionsRepoPathParams;
|
|
6403
6561
|
body: PatchGitV1IdentityIdentityPermissionsRepoRequestBody;
|
|
6562
|
+
headers?: Record<string, string>;
|
|
6404
6563
|
};
|
|
6405
6564
|
response: void;
|
|
6406
6565
|
};
|
|
@@ -6429,11 +6588,11 @@ declare class ApiClient {
|
|
|
6429
6588
|
private request;
|
|
6430
6589
|
fetch(url: string, options?: RequestInit): Promise<Response>;
|
|
6431
6590
|
getRaw<P extends keyof GetPathMap>(path: P, options?: GetPathMap[P]["options"]): Promise<Response>;
|
|
6432
|
-
get<P extends keyof GetPathMap>(path: P, ...args: GetPathMap[P]["options"] extends
|
|
6433
|
-
post<P extends keyof PostPathMap>(path: P, ...args: PostPathMap[P]["options"] extends
|
|
6434
|
-
put<P extends keyof PutPathMap>(path: P, ...args: PutPathMap[P]["options"] extends
|
|
6435
|
-
delete<P extends keyof DeletePathMap>(path: P, ...args: DeletePathMap[P]["options"] extends
|
|
6436
|
-
patch<P extends keyof PatchPathMap>(path: P, ...args: PatchPathMap[P]["options"] extends
|
|
6591
|
+
get<P extends keyof GetPathMap>(path: P, ...args: GetPathMap[P]["options"] extends undefined ? [options?: GetPathMap[P]["options"]] : [options: GetPathMap[P]["options"]]): Promise<GetPathMap[P]["response"]>;
|
|
6592
|
+
post<P extends keyof PostPathMap>(path: P, ...args: PostPathMap[P]["options"] extends undefined ? [options?: PostPathMap[P]["options"]] : [options: PostPathMap[P]["options"]]): Promise<PostPathMap[P]["response"]>;
|
|
6593
|
+
put<P extends keyof PutPathMap>(path: P, ...args: PutPathMap[P]["options"] extends undefined ? [options?: PutPathMap[P]["options"]] : [options: PutPathMap[P]["options"]]): Promise<PutPathMap[P]["response"]>;
|
|
6594
|
+
delete<P extends keyof DeletePathMap>(path: P, ...args: DeletePathMap[P]["options"] extends undefined ? [options?: DeletePathMap[P]["options"]] : [options: DeletePathMap[P]["options"]]): Promise<DeletePathMap[P]["response"]>;
|
|
6595
|
+
patch<P extends keyof PatchPathMap>(path: P, ...args: PatchPathMap[P]["options"] extends undefined ? [options?: PatchPathMap[P]["options"]] : [options: PatchPathMap[P]["options"]]): Promise<PatchPathMap[P]["response"]>;
|
|
6437
6596
|
}
|
|
6438
6597
|
|
|
6439
6598
|
interface FreestyleError {
|
|
@@ -6448,24 +6607,6 @@ declare class GitErrorError extends Error {
|
|
|
6448
6607
|
static readonly description: string;
|
|
6449
6608
|
constructor(body: unknown & FreestyleError);
|
|
6450
6609
|
}
|
|
6451
|
-
declare class InternalErrorError extends Error {
|
|
6452
|
-
body: unknown & FreestyleError;
|
|
6453
|
-
static readonly code: string;
|
|
6454
|
-
static readonly statusCode: number;
|
|
6455
|
-
static readonly description: string;
|
|
6456
|
-
constructor(body: unknown & FreestyleError);
|
|
6457
|
-
}
|
|
6458
|
-
interface PublicDockerImportBadRequest {
|
|
6459
|
-
message: string;
|
|
6460
|
-
[k: string]: unknown;
|
|
6461
|
-
}
|
|
6462
|
-
declare class DockerImportBadRequestError extends Error {
|
|
6463
|
-
body: PublicDockerImportBadRequest & FreestyleError;
|
|
6464
|
-
static readonly code: string;
|
|
6465
|
-
static readonly statusCode: number;
|
|
6466
|
-
static readonly description: string;
|
|
6467
|
-
constructor(body: PublicDockerImportBadRequest & FreestyleError);
|
|
6468
|
-
}
|
|
6469
6610
|
interface VmOperationDeniedDuringTransactionPublic {
|
|
6470
6611
|
vmId: string;
|
|
6471
6612
|
transactionId: string;
|
|
@@ -6498,28 +6639,6 @@ declare class VmNotInTransactionError extends Error {
|
|
|
6498
6639
|
static readonly description: string;
|
|
6499
6640
|
constructor(body: unknown & FreestyleError);
|
|
6500
6641
|
}
|
|
6501
|
-
interface PublicForkVmNotFound {
|
|
6502
|
-
forkVmId: string;
|
|
6503
|
-
[k: string]: unknown;
|
|
6504
|
-
}
|
|
6505
|
-
declare class ForkVmNotFoundError extends Error {
|
|
6506
|
-
body: PublicForkVmNotFound & FreestyleError;
|
|
6507
|
-
static readonly code: string;
|
|
6508
|
-
static readonly statusCode: number;
|
|
6509
|
-
static readonly description: string;
|
|
6510
|
-
constructor(body: PublicForkVmNotFound & FreestyleError);
|
|
6511
|
-
}
|
|
6512
|
-
interface PublicCreateSnapshotBadRequest {
|
|
6513
|
-
message: string;
|
|
6514
|
-
[k: string]: unknown;
|
|
6515
|
-
}
|
|
6516
|
-
declare class CreateSnapshotBadRequestError extends Error {
|
|
6517
|
-
body: PublicCreateSnapshotBadRequest & FreestyleError;
|
|
6518
|
-
static readonly code: string;
|
|
6519
|
-
static readonly statusCode: number;
|
|
6520
|
-
static readonly description: string;
|
|
6521
|
-
constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
|
|
6522
|
-
}
|
|
6523
6642
|
interface PublicSnapshotVmBadRequest {
|
|
6524
6643
|
message: string;
|
|
6525
6644
|
[k: string]: unknown;
|
|
@@ -6531,6 +6650,13 @@ declare class SnapshotVmBadRequestError extends Error {
|
|
|
6531
6650
|
static readonly description: string;
|
|
6532
6651
|
constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
|
|
6533
6652
|
}
|
|
6653
|
+
declare class KernelPanicError extends Error {
|
|
6654
|
+
body: unknown & FreestyleError;
|
|
6655
|
+
static readonly code: string;
|
|
6656
|
+
static readonly statusCode: number;
|
|
6657
|
+
static readonly description: string;
|
|
6658
|
+
constructor(body: unknown & FreestyleError);
|
|
6659
|
+
}
|
|
6534
6660
|
declare class VmDeletedError extends Error {
|
|
6535
6661
|
body: unknown & FreestyleError;
|
|
6536
6662
|
static readonly code: string;
|
|
@@ -6559,6 +6685,13 @@ declare class FirecrackerApiSocketNotFoundError extends Error {
|
|
|
6559
6685
|
static readonly description: string;
|
|
6560
6686
|
constructor(body: unknown & FreestyleError);
|
|
6561
6687
|
}
|
|
6688
|
+
declare class InvalidSnapshotIdError extends Error {
|
|
6689
|
+
body: unknown & FreestyleError;
|
|
6690
|
+
static readonly code: string;
|
|
6691
|
+
static readonly statusCode: number;
|
|
6692
|
+
static readonly description: string;
|
|
6693
|
+
constructor(body: unknown & FreestyleError);
|
|
6694
|
+
}
|
|
6562
6695
|
declare class VmStartTimeoutError extends Error {
|
|
6563
6696
|
body: unknown & FreestyleError;
|
|
6564
6697
|
static readonly code: string;
|
|
@@ -6573,6 +6706,13 @@ declare class VmExitDuringStartError extends Error {
|
|
|
6573
6706
|
static readonly description: string;
|
|
6574
6707
|
constructor(body: unknown & FreestyleError);
|
|
6575
6708
|
}
|
|
6709
|
+
declare class VmAccessDeniedError extends Error {
|
|
6710
|
+
body: unknown & FreestyleError;
|
|
6711
|
+
static readonly code: string;
|
|
6712
|
+
static readonly statusCode: number;
|
|
6713
|
+
static readonly description: string;
|
|
6714
|
+
constructor(body: unknown & FreestyleError);
|
|
6715
|
+
}
|
|
6576
6716
|
declare class StdIoError extends Error {
|
|
6577
6717
|
body: unknown & FreestyleError;
|
|
6578
6718
|
static readonly code: string;
|
|
@@ -6594,6 +6734,35 @@ declare class VmSubnetNotFoundError extends Error {
|
|
|
6594
6734
|
static readonly description: string;
|
|
6595
6735
|
constructor(body: unknown & FreestyleError);
|
|
6596
6736
|
}
|
|
6737
|
+
declare class InternalErrorError extends Error {
|
|
6738
|
+
body: unknown & FreestyleError;
|
|
6739
|
+
static readonly code: string;
|
|
6740
|
+
static readonly statusCode: number;
|
|
6741
|
+
static readonly description: string;
|
|
6742
|
+
constructor(body: unknown & FreestyleError);
|
|
6743
|
+
}
|
|
6744
|
+
interface PublicForkVmNotFound {
|
|
6745
|
+
forkVmId: string;
|
|
6746
|
+
[k: string]: unknown;
|
|
6747
|
+
}
|
|
6748
|
+
declare class ForkVmNotFoundError extends Error {
|
|
6749
|
+
body: PublicForkVmNotFound & FreestyleError;
|
|
6750
|
+
static readonly code: string;
|
|
6751
|
+
static readonly statusCode: number;
|
|
6752
|
+
static readonly description: string;
|
|
6753
|
+
constructor(body: PublicForkVmNotFound & FreestyleError);
|
|
6754
|
+
}
|
|
6755
|
+
interface PublicCreateSnapshotBadRequest {
|
|
6756
|
+
message: string;
|
|
6757
|
+
[k: string]: unknown;
|
|
6758
|
+
}
|
|
6759
|
+
declare class CreateSnapshotBadRequestError extends Error {
|
|
6760
|
+
body: PublicCreateSnapshotBadRequest & FreestyleError;
|
|
6761
|
+
static readonly code: string;
|
|
6762
|
+
static readonly statusCode: number;
|
|
6763
|
+
static readonly description: string;
|
|
6764
|
+
constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
|
|
6765
|
+
}
|
|
6597
6766
|
interface PublicFileNotFound {
|
|
6598
6767
|
path: string;
|
|
6599
6768
|
[k: string]: unknown;
|
|
@@ -6616,6 +6785,38 @@ declare class FilesBadRequestError extends Error {
|
|
|
6616
6785
|
static readonly description: string;
|
|
6617
6786
|
constructor(body: PublicFilesBadRequest & FreestyleError);
|
|
6618
6787
|
}
|
|
6788
|
+
interface PublicDockerImportBadRequest {
|
|
6789
|
+
message: string;
|
|
6790
|
+
[k: string]: unknown;
|
|
6791
|
+
}
|
|
6792
|
+
declare class DockerImportBadRequestError extends Error {
|
|
6793
|
+
body: PublicDockerImportBadRequest & FreestyleError;
|
|
6794
|
+
static readonly code: string;
|
|
6795
|
+
static readonly statusCode: number;
|
|
6796
|
+
static readonly description: string;
|
|
6797
|
+
constructor(body: PublicDockerImportBadRequest & FreestyleError);
|
|
6798
|
+
}
|
|
6799
|
+
declare class VmMustBeStoppedError extends Error {
|
|
6800
|
+
body: unknown & FreestyleError;
|
|
6801
|
+
static readonly code: string;
|
|
6802
|
+
static readonly statusCode: number;
|
|
6803
|
+
static readonly description: string;
|
|
6804
|
+
constructor(body: unknown & FreestyleError);
|
|
6805
|
+
}
|
|
6806
|
+
declare class AlreadyHasBaseError extends Error {
|
|
6807
|
+
body: unknown & FreestyleError;
|
|
6808
|
+
static readonly code: string;
|
|
6809
|
+
static readonly statusCode: number;
|
|
6810
|
+
static readonly description: string;
|
|
6811
|
+
constructor(body: unknown & FreestyleError);
|
|
6812
|
+
}
|
|
6813
|
+
declare class NotFoundError extends Error {
|
|
6814
|
+
body: unknown & FreestyleError;
|
|
6815
|
+
static readonly code: string;
|
|
6816
|
+
static readonly statusCode: number;
|
|
6817
|
+
static readonly description: string;
|
|
6818
|
+
constructor(body: unknown & FreestyleError);
|
|
6819
|
+
}
|
|
6619
6820
|
declare class VmNotFoundInFsError extends Error {
|
|
6620
6821
|
body: unknown & FreestyleError;
|
|
6621
6822
|
static readonly code: string;
|
|
@@ -6674,27 +6875,6 @@ declare class InternalVmNotFoundError extends Error {
|
|
|
6674
6875
|
static readonly description: string;
|
|
6675
6876
|
constructor(body: PublicInternalVmNotFound & FreestyleError);
|
|
6676
6877
|
}
|
|
6677
|
-
declare class VmMustBeStoppedError extends Error {
|
|
6678
|
-
body: unknown & FreestyleError;
|
|
6679
|
-
static readonly code: string;
|
|
6680
|
-
static readonly statusCode: number;
|
|
6681
|
-
static readonly description: string;
|
|
6682
|
-
constructor(body: unknown & FreestyleError);
|
|
6683
|
-
}
|
|
6684
|
-
declare class AlreadyHasBaseError extends Error {
|
|
6685
|
-
body: unknown & FreestyleError;
|
|
6686
|
-
static readonly code: string;
|
|
6687
|
-
static readonly statusCode: number;
|
|
6688
|
-
static readonly description: string;
|
|
6689
|
-
constructor(body: unknown & FreestyleError);
|
|
6690
|
-
}
|
|
6691
|
-
declare class NotFoundError extends Error {
|
|
6692
|
-
body: unknown & FreestyleError;
|
|
6693
|
-
static readonly code: string;
|
|
6694
|
-
static readonly statusCode: number;
|
|
6695
|
-
static readonly description: string;
|
|
6696
|
-
constructor(body: unknown & FreestyleError);
|
|
6697
|
-
}
|
|
6698
6878
|
interface PublicCreateVmBadRequest {
|
|
6699
6879
|
message: string;
|
|
6700
6880
|
[k: string]: unknown;
|
|
@@ -7033,6 +7213,39 @@ declare class ExpiredError extends Error {
|
|
|
7033
7213
|
static readonly description: string;
|
|
7034
7214
|
constructor(body: unknown & FreestyleError);
|
|
7035
7215
|
}
|
|
7216
|
+
interface PublicTagNotFound {
|
|
7217
|
+
tag: string;
|
|
7218
|
+
[k: string]: unknown;
|
|
7219
|
+
}
|
|
7220
|
+
declare class TagNotFoundError extends Error {
|
|
7221
|
+
body: PublicTagNotFound & FreestyleError;
|
|
7222
|
+
static readonly code: string;
|
|
7223
|
+
static readonly statusCode: number;
|
|
7224
|
+
static readonly description: string;
|
|
7225
|
+
constructor(body: PublicTagNotFound & FreestyleError);
|
|
7226
|
+
}
|
|
7227
|
+
interface PublicTreeNotFound {
|
|
7228
|
+
hash: string;
|
|
7229
|
+
[k: string]: unknown;
|
|
7230
|
+
}
|
|
7231
|
+
declare class TreeNotFoundError extends Error {
|
|
7232
|
+
body: PublicTreeNotFound & FreestyleError;
|
|
7233
|
+
static readonly code: string;
|
|
7234
|
+
static readonly statusCode: number;
|
|
7235
|
+
static readonly description: string;
|
|
7236
|
+
constructor(body: PublicTreeNotFound & FreestyleError);
|
|
7237
|
+
}
|
|
7238
|
+
interface PublicBranchNotFound {
|
|
7239
|
+
branch: string;
|
|
7240
|
+
[k: string]: unknown;
|
|
7241
|
+
}
|
|
7242
|
+
declare class BranchNotFoundError extends Error {
|
|
7243
|
+
body: PublicBranchNotFound & FreestyleError;
|
|
7244
|
+
static readonly code: string;
|
|
7245
|
+
static readonly statusCode: number;
|
|
7246
|
+
static readonly description: string;
|
|
7247
|
+
constructor(body: PublicBranchNotFound & FreestyleError);
|
|
7248
|
+
}
|
|
7036
7249
|
declare class ForbiddenError extends Error {
|
|
7037
7250
|
body: unknown & FreestyleError;
|
|
7038
7251
|
static readonly code: string;
|
|
@@ -7047,272 +7260,253 @@ declare class UnauthorizedError extends Error {
|
|
|
7047
7260
|
static readonly description: string;
|
|
7048
7261
|
constructor(body: unknown & FreestyleError);
|
|
7049
7262
|
}
|
|
7050
|
-
declare class
|
|
7263
|
+
declare class RepoAlreadyExistsError extends Error {
|
|
7051
7264
|
body: unknown & FreestyleError;
|
|
7052
7265
|
static readonly code: string;
|
|
7053
7266
|
static readonly statusCode: number;
|
|
7054
7267
|
static readonly description: string;
|
|
7055
7268
|
constructor(body: unknown & FreestyleError);
|
|
7056
7269
|
}
|
|
7057
|
-
declare class
|
|
7270
|
+
declare class GitHubSyncConflictError extends Error {
|
|
7058
7271
|
body: unknown & FreestyleError;
|
|
7059
7272
|
static readonly code: string;
|
|
7060
7273
|
static readonly statusCode: number;
|
|
7061
7274
|
static readonly description: string;
|
|
7062
7275
|
constructor(body: unknown & FreestyleError);
|
|
7063
7276
|
}
|
|
7064
|
-
|
|
7065
|
-
|
|
7066
|
-
};
|
|
7067
|
-
interface PublicUnsupportedTransfer {
|
|
7068
|
-
requested: LfsTransferAdapter[];
|
|
7069
|
-
supported: LfsTransferAdapter[];
|
|
7277
|
+
interface InvalidObjectIdPublic {
|
|
7278
|
+
hash: string;
|
|
7070
7279
|
[k: string]: unknown;
|
|
7071
7280
|
}
|
|
7072
|
-
declare class
|
|
7073
|
-
body:
|
|
7281
|
+
declare class InvalidObjectIdError extends Error {
|
|
7282
|
+
body: InvalidObjectIdPublic & FreestyleError;
|
|
7074
7283
|
static readonly code: string;
|
|
7075
7284
|
static readonly statusCode: number;
|
|
7076
7285
|
static readonly description: string;
|
|
7077
|
-
constructor(body:
|
|
7286
|
+
constructor(body: InvalidObjectIdPublic & FreestyleError);
|
|
7078
7287
|
}
|
|
7079
|
-
|
|
7080
|
-
|
|
7288
|
+
interface CommitNotFoundPublic {
|
|
7289
|
+
repoId: string;
|
|
7290
|
+
commitHash: string;
|
|
7291
|
+
[k: string]: unknown;
|
|
7292
|
+
}
|
|
7293
|
+
declare class CommitNotFoundError extends Error {
|
|
7294
|
+
body: CommitNotFoundPublic & FreestyleError;
|
|
7081
7295
|
static readonly code: string;
|
|
7082
7296
|
static readonly statusCode: number;
|
|
7083
7297
|
static readonly description: string;
|
|
7084
|
-
constructor(body:
|
|
7085
|
-
}
|
|
7086
|
-
interface PublicBranchNotFound {
|
|
7087
|
-
branch: string;
|
|
7088
|
-
[k: string]: unknown;
|
|
7298
|
+
constructor(body: CommitNotFoundPublic & FreestyleError);
|
|
7089
7299
|
}
|
|
7090
|
-
declare class
|
|
7091
|
-
body:
|
|
7300
|
+
declare class PackfileError extends Error {
|
|
7301
|
+
body: unknown & FreestyleError;
|
|
7092
7302
|
static readonly code: string;
|
|
7093
7303
|
static readonly statusCode: number;
|
|
7094
7304
|
static readonly description: string;
|
|
7095
|
-
constructor(body:
|
|
7305
|
+
constructor(body: unknown & FreestyleError);
|
|
7096
7306
|
}
|
|
7097
|
-
declare class
|
|
7307
|
+
declare class SendErrorError extends Error {
|
|
7098
7308
|
body: unknown & FreestyleError;
|
|
7099
7309
|
static readonly code: string;
|
|
7100
7310
|
static readonly statusCode: number;
|
|
7101
7311
|
static readonly description: string;
|
|
7102
7312
|
constructor(body: unknown & FreestyleError);
|
|
7103
7313
|
}
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
|
|
7107
|
-
|
|
7108
|
-
|
|
7109
|
-
|
|
7110
|
-
static readonly code: string;
|
|
7111
|
-
static readonly statusCode: number;
|
|
7112
|
-
static readonly description: string;
|
|
7113
|
-
constructor(body: PublicSourceUnauthorized & FreestyleError);
|
|
7114
|
-
}
|
|
7115
|
-
interface PublicSourceNotFound {
|
|
7116
|
-
url: string;
|
|
7117
|
-
[k: string]: unknown;
|
|
7118
|
-
}
|
|
7119
|
-
declare class SourceNotFoundError extends Error {
|
|
7120
|
-
body: PublicSourceNotFound & FreestyleError;
|
|
7121
|
-
static readonly code: string;
|
|
7122
|
-
static readonly statusCode: number;
|
|
7123
|
-
static readonly description: string;
|
|
7124
|
-
constructor(body: PublicSourceNotFound & FreestyleError);
|
|
7125
|
-
}
|
|
7126
|
-
interface PublicImportSubdirNotFound {
|
|
7127
|
-
/**
|
|
7128
|
-
* The resource type, e.g. "tar archive" or "zip archive"
|
|
7129
|
-
*/
|
|
7130
|
-
source: string;
|
|
7131
|
-
dir: string;
|
|
7314
|
+
type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
|
|
7315
|
+
other: string;
|
|
7316
|
+
};
|
|
7317
|
+
interface PublicUnsupportedTransfer {
|
|
7318
|
+
requested: LfsTransferAdapter[];
|
|
7319
|
+
supported: LfsTransferAdapter[];
|
|
7132
7320
|
[k: string]: unknown;
|
|
7133
7321
|
}
|
|
7134
|
-
declare class
|
|
7135
|
-
body:
|
|
7322
|
+
declare class UnsupportedTransferError extends Error {
|
|
7323
|
+
body: PublicUnsupportedTransfer & FreestyleError;
|
|
7136
7324
|
static readonly code: string;
|
|
7137
7325
|
static readonly statusCode: number;
|
|
7138
7326
|
static readonly description: string;
|
|
7139
|
-
constructor(body:
|
|
7327
|
+
constructor(body: PublicUnsupportedTransfer & FreestyleError);
|
|
7140
7328
|
}
|
|
7141
|
-
interface
|
|
7142
|
-
|
|
7329
|
+
interface PublicInvalidRange {
|
|
7330
|
+
since: string;
|
|
7331
|
+
until: string;
|
|
7143
7332
|
[k: string]: unknown;
|
|
7144
7333
|
}
|
|
7145
|
-
declare class
|
|
7146
|
-
body:
|
|
7334
|
+
declare class InvalidRangeError extends Error {
|
|
7335
|
+
body: PublicInvalidRange & FreestyleError;
|
|
7147
7336
|
static readonly code: string;
|
|
7148
7337
|
static readonly statusCode: number;
|
|
7149
7338
|
static readonly description: string;
|
|
7150
|
-
constructor(body:
|
|
7151
|
-
}
|
|
7152
|
-
interface PublicPathNotFound {
|
|
7153
|
-
path: string;
|
|
7154
|
-
[k: string]: unknown;
|
|
7339
|
+
constructor(body: PublicInvalidRange & FreestyleError);
|
|
7155
7340
|
}
|
|
7156
|
-
declare class
|
|
7157
|
-
body:
|
|
7341
|
+
declare class OffsetWithSelectorError extends Error {
|
|
7342
|
+
body: unknown & FreestyleError;
|
|
7158
7343
|
static readonly code: string;
|
|
7159
7344
|
static readonly statusCode: number;
|
|
7160
7345
|
static readonly description: string;
|
|
7161
|
-
constructor(body:
|
|
7346
|
+
constructor(body: unknown & FreestyleError);
|
|
7162
7347
|
}
|
|
7163
|
-
interface
|
|
7164
|
-
|
|
7348
|
+
interface PublicCommitNotInBranch {
|
|
7349
|
+
sha: string;
|
|
7350
|
+
branch: string;
|
|
7165
7351
|
[k: string]: unknown;
|
|
7166
7352
|
}
|
|
7167
|
-
declare class
|
|
7168
|
-
body:
|
|
7353
|
+
declare class CommitNotInBranchError extends Error {
|
|
7354
|
+
body: PublicCommitNotInBranch & FreestyleError;
|
|
7169
7355
|
static readonly code: string;
|
|
7170
7356
|
static readonly statusCode: number;
|
|
7171
7357
|
static readonly description: string;
|
|
7172
|
-
constructor(body:
|
|
7358
|
+
constructor(body: PublicCommitNotInBranch & FreestyleError);
|
|
7173
7359
|
}
|
|
7174
|
-
interface
|
|
7360
|
+
interface PublicBlobNotFound {
|
|
7175
7361
|
hash: string;
|
|
7176
7362
|
[k: string]: unknown;
|
|
7177
7363
|
}
|
|
7178
|
-
declare class
|
|
7179
|
-
body:
|
|
7364
|
+
declare class BlobNotFoundError extends Error {
|
|
7365
|
+
body: PublicBlobNotFound & FreestyleError;
|
|
7180
7366
|
static readonly code: string;
|
|
7181
7367
|
static readonly statusCode: number;
|
|
7182
7368
|
static readonly description: string;
|
|
7183
|
-
constructor(body:
|
|
7369
|
+
constructor(body: PublicBlobNotFound & FreestyleError);
|
|
7184
7370
|
}
|
|
7185
|
-
declare class
|
|
7371
|
+
declare class InvalidServiceError extends Error {
|
|
7186
7372
|
body: unknown & FreestyleError;
|
|
7187
7373
|
static readonly code: string;
|
|
7188
7374
|
static readonly statusCode: number;
|
|
7189
7375
|
static readonly description: string;
|
|
7190
7376
|
constructor(body: unknown & FreestyleError);
|
|
7191
7377
|
}
|
|
7192
|
-
declare class
|
|
7378
|
+
declare class ExpectedServiceError extends Error {
|
|
7193
7379
|
body: unknown & FreestyleError;
|
|
7194
7380
|
static readonly code: string;
|
|
7195
7381
|
static readonly statusCode: number;
|
|
7196
7382
|
static readonly description: string;
|
|
7197
7383
|
constructor(body: unknown & FreestyleError);
|
|
7198
7384
|
}
|
|
7199
|
-
interface
|
|
7200
|
-
|
|
7385
|
+
interface PublicPathNotFound {
|
|
7386
|
+
path: string;
|
|
7201
7387
|
[k: string]: unknown;
|
|
7202
7388
|
}
|
|
7203
|
-
declare class
|
|
7204
|
-
body:
|
|
7389
|
+
declare class PathNotFoundError extends Error {
|
|
7390
|
+
body: PublicPathNotFound & FreestyleError;
|
|
7205
7391
|
static readonly code: string;
|
|
7206
7392
|
static readonly statusCode: number;
|
|
7207
7393
|
static readonly description: string;
|
|
7208
|
-
constructor(body:
|
|
7394
|
+
constructor(body: PublicPathNotFound & FreestyleError);
|
|
7209
7395
|
}
|
|
7210
|
-
interface
|
|
7211
|
-
|
|
7212
|
-
commitHash: string;
|
|
7396
|
+
interface PublicReferenceNotFound {
|
|
7397
|
+
reference: string;
|
|
7213
7398
|
[k: string]: unknown;
|
|
7214
7399
|
}
|
|
7215
|
-
declare class
|
|
7216
|
-
body:
|
|
7400
|
+
declare class ReferenceNotFoundError extends Error {
|
|
7401
|
+
body: PublicReferenceNotFound & FreestyleError;
|
|
7217
7402
|
static readonly code: string;
|
|
7218
7403
|
static readonly statusCode: number;
|
|
7219
7404
|
static readonly description: string;
|
|
7220
|
-
constructor(body:
|
|
7405
|
+
constructor(body: PublicReferenceNotFound & FreestyleError);
|
|
7221
7406
|
}
|
|
7222
|
-
interface
|
|
7223
|
-
|
|
7407
|
+
interface PublicAmbiguous {
|
|
7408
|
+
rev: string;
|
|
7224
7409
|
[k: string]: unknown;
|
|
7225
7410
|
}
|
|
7226
|
-
declare class
|
|
7227
|
-
body:
|
|
7411
|
+
declare class AmbiguousError extends Error {
|
|
7412
|
+
body: PublicAmbiguous & FreestyleError;
|
|
7228
7413
|
static readonly code: string;
|
|
7229
7414
|
static readonly statusCode: number;
|
|
7230
7415
|
static readonly description: string;
|
|
7231
|
-
constructor(body:
|
|
7416
|
+
constructor(body: PublicAmbiguous & FreestyleError);
|
|
7232
7417
|
}
|
|
7233
|
-
interface
|
|
7234
|
-
|
|
7418
|
+
interface PublicInvalid {
|
|
7419
|
+
rev: string;
|
|
7235
7420
|
[k: string]: unknown;
|
|
7236
7421
|
}
|
|
7237
|
-
declare class
|
|
7238
|
-
body:
|
|
7422
|
+
declare class InvalidError extends Error {
|
|
7423
|
+
body: PublicInvalid & FreestyleError;
|
|
7239
7424
|
static readonly code: string;
|
|
7240
7425
|
static readonly statusCode: number;
|
|
7241
7426
|
static readonly description: string;
|
|
7242
|
-
constructor(body:
|
|
7427
|
+
constructor(body: PublicInvalid & FreestyleError);
|
|
7243
7428
|
}
|
|
7244
|
-
interface
|
|
7245
|
-
|
|
7246
|
-
until: string;
|
|
7429
|
+
interface PublicInvalidAccountId {
|
|
7430
|
+
accountId: string;
|
|
7247
7431
|
[k: string]: unknown;
|
|
7248
7432
|
}
|
|
7249
|
-
declare class
|
|
7250
|
-
body:
|
|
7433
|
+
declare class InvalidAccountIdError extends Error {
|
|
7434
|
+
body: PublicInvalidAccountId & FreestyleError;
|
|
7251
7435
|
static readonly code: string;
|
|
7252
7436
|
static readonly statusCode: number;
|
|
7253
7437
|
static readonly description: string;
|
|
7254
|
-
constructor(body:
|
|
7438
|
+
constructor(body: PublicInvalidAccountId & FreestyleError);
|
|
7255
7439
|
}
|
|
7256
|
-
declare class
|
|
7440
|
+
declare class SourceImportConflictError extends Error {
|
|
7257
7441
|
body: unknown & FreestyleError;
|
|
7258
7442
|
static readonly code: string;
|
|
7259
7443
|
static readonly statusCode: number;
|
|
7260
7444
|
static readonly description: string;
|
|
7261
7445
|
constructor(body: unknown & FreestyleError);
|
|
7262
7446
|
}
|
|
7263
|
-
interface
|
|
7264
|
-
|
|
7265
|
-
branch: string;
|
|
7447
|
+
interface PublicSourceUnauthorized {
|
|
7448
|
+
url: string;
|
|
7266
7449
|
[k: string]: unknown;
|
|
7267
7450
|
}
|
|
7268
|
-
declare class
|
|
7269
|
-
body:
|
|
7451
|
+
declare class SourceUnauthorizedError extends Error {
|
|
7452
|
+
body: PublicSourceUnauthorized & FreestyleError;
|
|
7270
7453
|
static readonly code: string;
|
|
7271
7454
|
static readonly statusCode: number;
|
|
7272
7455
|
static readonly description: string;
|
|
7273
|
-
constructor(body:
|
|
7456
|
+
constructor(body: PublicSourceUnauthorized & FreestyleError);
|
|
7274
7457
|
}
|
|
7275
|
-
interface
|
|
7276
|
-
|
|
7458
|
+
interface PublicSourceNotFound {
|
|
7459
|
+
url: string;
|
|
7277
7460
|
[k: string]: unknown;
|
|
7278
7461
|
}
|
|
7279
|
-
declare class
|
|
7280
|
-
body:
|
|
7462
|
+
declare class SourceNotFoundError extends Error {
|
|
7463
|
+
body: PublicSourceNotFound & FreestyleError;
|
|
7281
7464
|
static readonly code: string;
|
|
7282
7465
|
static readonly statusCode: number;
|
|
7283
7466
|
static readonly description: string;
|
|
7284
|
-
constructor(body:
|
|
7467
|
+
constructor(body: PublicSourceNotFound & FreestyleError);
|
|
7285
7468
|
}
|
|
7286
|
-
interface
|
|
7287
|
-
|
|
7469
|
+
interface PublicImportSubdirNotFound {
|
|
7470
|
+
/**
|
|
7471
|
+
* The resource type, e.g. "tar archive" or "zip archive"
|
|
7472
|
+
*/
|
|
7473
|
+
source: string;
|
|
7474
|
+
dir: string;
|
|
7288
7475
|
[k: string]: unknown;
|
|
7289
7476
|
}
|
|
7290
|
-
declare class
|
|
7291
|
-
body:
|
|
7477
|
+
declare class ImportSubdirNotFoundError extends Error {
|
|
7478
|
+
body: PublicImportSubdirNotFound & FreestyleError;
|
|
7292
7479
|
static readonly code: string;
|
|
7293
7480
|
static readonly statusCode: number;
|
|
7294
7481
|
static readonly description: string;
|
|
7295
|
-
constructor(body:
|
|
7482
|
+
constructor(body: PublicImportSubdirNotFound & FreestyleError);
|
|
7296
7483
|
}
|
|
7297
|
-
|
|
7298
|
-
|
|
7484
|
+
declare class ConflictError extends Error {
|
|
7485
|
+
body: unknown & FreestyleError;
|
|
7486
|
+
static readonly code: string;
|
|
7487
|
+
static readonly statusCode: number;
|
|
7488
|
+
static readonly description: string;
|
|
7489
|
+
constructor(body: unknown & FreestyleError);
|
|
7490
|
+
}
|
|
7491
|
+
interface PublicInvalidRevision {
|
|
7492
|
+
revision: string;
|
|
7299
7493
|
[k: string]: unknown;
|
|
7300
7494
|
}
|
|
7301
|
-
declare class
|
|
7302
|
-
body:
|
|
7495
|
+
declare class InvalidRevisionError extends Error {
|
|
7496
|
+
body: PublicInvalidRevision & FreestyleError;
|
|
7303
7497
|
static readonly code: string;
|
|
7304
7498
|
static readonly statusCode: number;
|
|
7305
7499
|
static readonly description: string;
|
|
7306
|
-
constructor(body:
|
|
7500
|
+
constructor(body: PublicInvalidRevision & FreestyleError);
|
|
7307
7501
|
}
|
|
7308
|
-
declare class
|
|
7502
|
+
declare class DatabaseErrorError extends Error {
|
|
7309
7503
|
body: unknown & FreestyleError;
|
|
7310
7504
|
static readonly code: string;
|
|
7311
7505
|
static readonly statusCode: number;
|
|
7312
7506
|
static readonly description: string;
|
|
7313
7507
|
constructor(body: unknown & FreestyleError);
|
|
7314
7508
|
}
|
|
7315
|
-
declare class
|
|
7509
|
+
declare class DevServerNotFoundError extends Error {
|
|
7316
7510
|
body: unknown & FreestyleError;
|
|
7317
7511
|
static readonly code: string;
|
|
7318
7512
|
static readonly statusCode: number;
|
|
@@ -7326,1305 +7520,1290 @@ declare class EmptyTagError extends Error {
|
|
|
7326
7520
|
static readonly description: string;
|
|
7327
7521
|
constructor(body: unknown & FreestyleError);
|
|
7328
7522
|
}
|
|
7329
|
-
interface
|
|
7330
|
-
|
|
7523
|
+
interface PublicBuildFailed {
|
|
7524
|
+
logs: string;
|
|
7525
|
+
vmId: string;
|
|
7331
7526
|
[k: string]: unknown;
|
|
7332
7527
|
}
|
|
7333
|
-
declare class
|
|
7334
|
-
body:
|
|
7528
|
+
declare class BuildFailedError extends Error {
|
|
7529
|
+
body: PublicBuildFailed & FreestyleError;
|
|
7335
7530
|
static readonly code: string;
|
|
7336
7531
|
static readonly statusCode: number;
|
|
7337
7532
|
static readonly description: string;
|
|
7338
|
-
constructor(body:
|
|
7533
|
+
constructor(body: PublicBuildFailed & FreestyleError);
|
|
7339
7534
|
}
|
|
7340
|
-
declare class
|
|
7535
|
+
declare class ServerDeploymentFailedError extends Error {
|
|
7341
7536
|
body: unknown & FreestyleError;
|
|
7342
7537
|
static readonly code: string;
|
|
7343
7538
|
static readonly statusCode: number;
|
|
7344
7539
|
static readonly description: string;
|
|
7345
7540
|
constructor(body: unknown & FreestyleError);
|
|
7346
7541
|
}
|
|
7347
|
-
|
|
7542
|
+
interface PublicLockfileError {
|
|
7543
|
+
message: string;
|
|
7544
|
+
[k: string]: unknown;
|
|
7545
|
+
}
|
|
7546
|
+
declare class LockfileErrorError extends Error {
|
|
7547
|
+
body: PublicLockfileError & FreestyleError;
|
|
7548
|
+
static readonly code: string;
|
|
7549
|
+
static readonly statusCode: number;
|
|
7550
|
+
static readonly description: string;
|
|
7551
|
+
constructor(body: PublicLockfileError & FreestyleError);
|
|
7552
|
+
}
|
|
7553
|
+
declare class UploadErrorError extends Error {
|
|
7348
7554
|
body: unknown & FreestyleError;
|
|
7349
7555
|
static readonly code: string;
|
|
7350
7556
|
static readonly statusCode: number;
|
|
7351
7557
|
static readonly description: string;
|
|
7352
7558
|
constructor(body: unknown & FreestyleError);
|
|
7353
7559
|
}
|
|
7354
|
-
interface
|
|
7560
|
+
interface PublicDomainMappingError {
|
|
7355
7561
|
domain: string;
|
|
7356
|
-
name: string;
|
|
7357
|
-
message: string;
|
|
7358
7562
|
[k: string]: unknown;
|
|
7359
7563
|
}
|
|
7360
|
-
declare class
|
|
7361
|
-
body:
|
|
7564
|
+
declare class DomainMappingErrorError extends Error {
|
|
7565
|
+
body: PublicDomainMappingError & FreestyleError;
|
|
7362
7566
|
static readonly code: string;
|
|
7363
7567
|
static readonly statusCode: number;
|
|
7364
7568
|
static readonly description: string;
|
|
7365
|
-
constructor(body:
|
|
7569
|
+
constructor(body: PublicDomainMappingError & FreestyleError);
|
|
7366
7570
|
}
|
|
7367
|
-
interface
|
|
7368
|
-
|
|
7369
|
-
|
|
7571
|
+
interface PublicCertificateProvisioningError {
|
|
7572
|
+
domain: string;
|
|
7573
|
+
reason?: string | null;
|
|
7370
7574
|
[k: string]: unknown;
|
|
7371
7575
|
}
|
|
7372
|
-
declare class
|
|
7373
|
-
body:
|
|
7576
|
+
declare class CertificateProvisioningErrorError extends Error {
|
|
7577
|
+
body: PublicCertificateProvisioningError & FreestyleError;
|
|
7374
7578
|
static readonly code: string;
|
|
7375
7579
|
static readonly statusCode: number;
|
|
7376
7580
|
static readonly description: string;
|
|
7377
|
-
constructor(body:
|
|
7378
|
-
}
|
|
7379
|
-
interface PublicErrorCreatingRecord {
|
|
7380
|
-
message: string;
|
|
7381
|
-
[k: string]: unknown;
|
|
7581
|
+
constructor(body: PublicCertificateProvisioningError & FreestyleError);
|
|
7382
7582
|
}
|
|
7383
|
-
declare class
|
|
7384
|
-
body:
|
|
7583
|
+
declare class NoEntrypointFoundError extends Error {
|
|
7584
|
+
body: unknown & FreestyleError;
|
|
7385
7585
|
static readonly code: string;
|
|
7386
7586
|
static readonly statusCode: number;
|
|
7387
7587
|
static readonly description: string;
|
|
7388
|
-
constructor(body:
|
|
7588
|
+
constructor(body: unknown & FreestyleError);
|
|
7389
7589
|
}
|
|
7390
|
-
interface
|
|
7391
|
-
|
|
7392
|
-
accountId: string;
|
|
7590
|
+
interface PublicEntrypointNotFound {
|
|
7591
|
+
entrypoint: string;
|
|
7393
7592
|
[k: string]: unknown;
|
|
7394
7593
|
}
|
|
7395
|
-
declare class
|
|
7396
|
-
body:
|
|
7594
|
+
declare class EntrypointNotFoundError extends Error {
|
|
7595
|
+
body: PublicEntrypointNotFound & FreestyleError;
|
|
7397
7596
|
static readonly code: string;
|
|
7398
7597
|
static readonly statusCode: number;
|
|
7399
7598
|
static readonly description: string;
|
|
7400
|
-
constructor(body:
|
|
7599
|
+
constructor(body: PublicEntrypointNotFound & FreestyleError);
|
|
7401
7600
|
}
|
|
7402
|
-
interface
|
|
7403
|
-
|
|
7601
|
+
interface PublicNoDomainOwnership {
|
|
7602
|
+
domain: string;
|
|
7404
7603
|
[k: string]: unknown;
|
|
7405
7604
|
}
|
|
7406
|
-
declare class
|
|
7407
|
-
body:
|
|
7605
|
+
declare class NoDomainOwnershipError extends Error {
|
|
7606
|
+
body: PublicNoDomainOwnership & FreestyleError;
|
|
7408
7607
|
static readonly code: string;
|
|
7409
7608
|
static readonly statusCode: number;
|
|
7410
7609
|
static readonly description: string;
|
|
7411
|
-
constructor(body:
|
|
7610
|
+
constructor(body: PublicNoDomainOwnership & FreestyleError);
|
|
7412
7611
|
}
|
|
7413
|
-
interface
|
|
7414
|
-
|
|
7612
|
+
interface PublicInvalidDomains {
|
|
7613
|
+
domains: string[];
|
|
7415
7614
|
[k: string]: unknown;
|
|
7416
7615
|
}
|
|
7417
|
-
declare class
|
|
7418
|
-
body:
|
|
7616
|
+
declare class InvalidDomainsError extends Error {
|
|
7617
|
+
body: PublicInvalidDomains & FreestyleError;
|
|
7419
7618
|
static readonly code: string;
|
|
7420
7619
|
static readonly statusCode: number;
|
|
7421
7620
|
static readonly description: string;
|
|
7422
|
-
constructor(body:
|
|
7621
|
+
constructor(body: PublicInvalidDomains & FreestyleError);
|
|
7423
7622
|
}
|
|
7424
|
-
interface
|
|
7623
|
+
interface PublicWebDeploymentBadRequest {
|
|
7425
7624
|
message: string;
|
|
7426
7625
|
[k: string]: unknown;
|
|
7427
7626
|
}
|
|
7428
|
-
declare class
|
|
7429
|
-
body:
|
|
7627
|
+
declare class WebDeploymentBadRequestError extends Error {
|
|
7628
|
+
body: PublicWebDeploymentBadRequest & FreestyleError;
|
|
7430
7629
|
static readonly code: string;
|
|
7431
7630
|
static readonly statusCode: number;
|
|
7432
7631
|
static readonly description: string;
|
|
7433
|
-
constructor(body:
|
|
7434
|
-
}
|
|
7435
|
-
interface PublicStatusFailed {
|
|
7436
|
-
message: string;
|
|
7437
|
-
[k: string]: unknown;
|
|
7632
|
+
constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
|
|
7438
7633
|
}
|
|
7439
|
-
declare class
|
|
7440
|
-
body:
|
|
7634
|
+
declare class DeploymentNotFoundError extends Error {
|
|
7635
|
+
body: unknown & FreestyleError;
|
|
7441
7636
|
static readonly code: string;
|
|
7442
7637
|
static readonly statusCode: number;
|
|
7443
7638
|
static readonly description: string;
|
|
7444
|
-
constructor(body:
|
|
7639
|
+
constructor(body: unknown & FreestyleError);
|
|
7445
7640
|
}
|
|
7446
|
-
interface
|
|
7641
|
+
interface PublicResizeFailed {
|
|
7447
7642
|
message: string;
|
|
7448
7643
|
[k: string]: unknown;
|
|
7449
7644
|
}
|
|
7450
|
-
declare class
|
|
7451
|
-
body:
|
|
7645
|
+
declare class ResizeFailedError extends Error {
|
|
7646
|
+
body: PublicResizeFailed & FreestyleError;
|
|
7452
7647
|
static readonly code: string;
|
|
7453
7648
|
static readonly statusCode: number;
|
|
7454
7649
|
static readonly description: string;
|
|
7455
|
-
constructor(body:
|
|
7456
|
-
}
|
|
7457
|
-
interface PublicShutdownFailed {
|
|
7458
|
-
message: string;
|
|
7459
|
-
[k: string]: unknown;
|
|
7650
|
+
constructor(body: PublicResizeFailed & FreestyleError);
|
|
7460
7651
|
}
|
|
7461
|
-
declare class
|
|
7462
|
-
body:
|
|
7652
|
+
declare class InternalResizeVmNotFoundError extends Error {
|
|
7653
|
+
body: unknown & FreestyleError;
|
|
7463
7654
|
static readonly code: string;
|
|
7464
7655
|
static readonly statusCode: number;
|
|
7465
7656
|
static readonly description: string;
|
|
7466
|
-
constructor(body:
|
|
7657
|
+
constructor(body: unknown & FreestyleError);
|
|
7467
7658
|
}
|
|
7468
|
-
interface
|
|
7659
|
+
interface PublicTriggerError {
|
|
7469
7660
|
message: string;
|
|
7470
7661
|
[k: string]: unknown;
|
|
7471
7662
|
}
|
|
7472
|
-
declare class
|
|
7473
|
-
body:
|
|
7663
|
+
declare class TriggerErrorError extends Error {
|
|
7664
|
+
body: PublicTriggerError & FreestyleError;
|
|
7474
7665
|
static readonly code: string;
|
|
7475
7666
|
static readonly statusCode: number;
|
|
7476
7667
|
static readonly description: string;
|
|
7477
|
-
constructor(body:
|
|
7668
|
+
constructor(body: PublicTriggerError & FreestyleError);
|
|
7478
7669
|
}
|
|
7479
|
-
interface
|
|
7670
|
+
interface PublicTokenError {
|
|
7480
7671
|
message: string;
|
|
7481
7672
|
[k: string]: unknown;
|
|
7482
7673
|
}
|
|
7483
|
-
declare class
|
|
7484
|
-
body:
|
|
7674
|
+
declare class TokenErrorError extends Error {
|
|
7675
|
+
body: PublicTokenError & FreestyleError;
|
|
7485
7676
|
static readonly code: string;
|
|
7486
7677
|
static readonly statusCode: number;
|
|
7487
7678
|
static readonly description: string;
|
|
7488
|
-
constructor(body:
|
|
7679
|
+
constructor(body: PublicTokenError & FreestyleError);
|
|
7489
7680
|
}
|
|
7490
|
-
interface
|
|
7681
|
+
interface PublicPermissionError {
|
|
7491
7682
|
message: string;
|
|
7492
7683
|
[k: string]: unknown;
|
|
7493
7684
|
}
|
|
7494
|
-
declare class
|
|
7495
|
-
body:
|
|
7685
|
+
declare class PermissionErrorError extends Error {
|
|
7686
|
+
body: PublicPermissionError & FreestyleError;
|
|
7496
7687
|
static readonly code: string;
|
|
7497
7688
|
static readonly statusCode: number;
|
|
7498
7689
|
static readonly description: string;
|
|
7499
|
-
constructor(body:
|
|
7690
|
+
constructor(body: PublicPermissionError & FreestyleError);
|
|
7500
7691
|
}
|
|
7501
|
-
interface
|
|
7692
|
+
interface PublicIdentityError {
|
|
7502
7693
|
message: string;
|
|
7503
7694
|
[k: string]: unknown;
|
|
7504
7695
|
}
|
|
7505
|
-
declare class
|
|
7506
|
-
body:
|
|
7696
|
+
declare class IdentityErrorError extends Error {
|
|
7697
|
+
body: PublicIdentityError & FreestyleError;
|
|
7507
7698
|
static readonly code: string;
|
|
7508
7699
|
static readonly statusCode: number;
|
|
7509
7700
|
static readonly description: string;
|
|
7510
|
-
constructor(body:
|
|
7701
|
+
constructor(body: PublicIdentityError & FreestyleError);
|
|
7511
7702
|
}
|
|
7512
|
-
interface
|
|
7703
|
+
interface PublicGetContentFailed {
|
|
7513
7704
|
message: string;
|
|
7514
7705
|
[k: string]: unknown;
|
|
7515
7706
|
}
|
|
7516
|
-
declare class
|
|
7517
|
-
body:
|
|
7707
|
+
declare class GetContentFailedError extends Error {
|
|
7708
|
+
body: PublicGetContentFailed & FreestyleError;
|
|
7518
7709
|
static readonly code: string;
|
|
7519
7710
|
static readonly statusCode: number;
|
|
7520
7711
|
static readonly description: string;
|
|
7521
|
-
constructor(body:
|
|
7712
|
+
constructor(body: PublicGetContentFailed & FreestyleError);
|
|
7522
7713
|
}
|
|
7523
|
-
interface
|
|
7714
|
+
interface PublicContentNotFound {
|
|
7524
7715
|
path: string;
|
|
7525
7716
|
[k: string]: unknown;
|
|
7526
7717
|
}
|
|
7527
|
-
declare class
|
|
7528
|
-
body:
|
|
7718
|
+
declare class ContentNotFoundError extends Error {
|
|
7719
|
+
body: PublicContentNotFound & FreestyleError;
|
|
7529
7720
|
static readonly code: string;
|
|
7530
7721
|
static readonly statusCode: number;
|
|
7531
7722
|
static readonly description: string;
|
|
7532
|
-
constructor(body:
|
|
7723
|
+
constructor(body: PublicContentNotFound & FreestyleError);
|
|
7533
7724
|
}
|
|
7534
|
-
interface
|
|
7725
|
+
interface PublicDownloadFailed {
|
|
7535
7726
|
message: string;
|
|
7536
7727
|
[k: string]: unknown;
|
|
7537
7728
|
}
|
|
7538
|
-
declare class
|
|
7539
|
-
body:
|
|
7729
|
+
declare class DownloadFailedError extends Error {
|
|
7730
|
+
body: PublicDownloadFailed & FreestyleError;
|
|
7540
7731
|
static readonly code: string;
|
|
7541
7732
|
static readonly statusCode: number;
|
|
7542
7733
|
static readonly description: string;
|
|
7543
|
-
constructor(body:
|
|
7734
|
+
constructor(body: PublicDownloadFailed & FreestyleError);
|
|
7544
7735
|
}
|
|
7545
|
-
interface
|
|
7546
|
-
|
|
7736
|
+
interface PublicGitServerError {
|
|
7737
|
+
message: string;
|
|
7547
7738
|
[k: string]: unknown;
|
|
7548
7739
|
}
|
|
7549
|
-
declare class
|
|
7550
|
-
body:
|
|
7740
|
+
declare class GitServerErrorError extends Error {
|
|
7741
|
+
body: PublicGitServerError & FreestyleError;
|
|
7551
7742
|
static readonly code: string;
|
|
7552
7743
|
static readonly statusCode: number;
|
|
7553
7744
|
static readonly description: string;
|
|
7554
|
-
constructor(body:
|
|
7745
|
+
constructor(body: PublicGitServerError & FreestyleError);
|
|
7555
7746
|
}
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7559
|
-
static readonly statusCode: number;
|
|
7560
|
-
static readonly description: string;
|
|
7561
|
-
constructor(body: unknown & FreestyleError);
|
|
7747
|
+
interface PublicParseResponseError {
|
|
7748
|
+
message: string;
|
|
7749
|
+
[k: string]: unknown;
|
|
7562
7750
|
}
|
|
7563
|
-
declare class
|
|
7564
|
-
body:
|
|
7751
|
+
declare class ParseResponseErrorError extends Error {
|
|
7752
|
+
body: PublicParseResponseError & FreestyleError;
|
|
7565
7753
|
static readonly code: string;
|
|
7566
7754
|
static readonly statusCode: number;
|
|
7567
7755
|
static readonly description: string;
|
|
7568
|
-
constructor(body:
|
|
7756
|
+
constructor(body: PublicParseResponseError & FreestyleError);
|
|
7569
7757
|
}
|
|
7570
|
-
declare class
|
|
7758
|
+
declare class RepositoryAccessDeniedError extends Error {
|
|
7571
7759
|
body: unknown & FreestyleError;
|
|
7572
7760
|
static readonly code: string;
|
|
7573
7761
|
static readonly statusCode: number;
|
|
7574
7762
|
static readonly description: string;
|
|
7575
7763
|
constructor(body: unknown & FreestyleError);
|
|
7576
7764
|
}
|
|
7577
|
-
interface
|
|
7765
|
+
interface PublicGitHubSyncFailed {
|
|
7578
7766
|
message: string;
|
|
7579
7767
|
[k: string]: unknown;
|
|
7580
7768
|
}
|
|
7581
|
-
declare class
|
|
7582
|
-
body:
|
|
7769
|
+
declare class GitHubSyncFailedError extends Error {
|
|
7770
|
+
body: PublicGitHubSyncFailed & FreestyleError;
|
|
7583
7771
|
static readonly code: string;
|
|
7584
7772
|
static readonly statusCode: number;
|
|
7585
7773
|
static readonly description: string;
|
|
7586
|
-
constructor(body:
|
|
7774
|
+
constructor(body: PublicGitHubSyncFailed & FreestyleError);
|
|
7587
7775
|
}
|
|
7588
|
-
interface
|
|
7776
|
+
interface PublicUpdateDefaultBranchFailed {
|
|
7589
7777
|
message: string;
|
|
7590
7778
|
[k: string]: unknown;
|
|
7591
7779
|
}
|
|
7592
|
-
declare class
|
|
7593
|
-
body:
|
|
7780
|
+
declare class UpdateDefaultBranchFailedError extends Error {
|
|
7781
|
+
body: PublicUpdateDefaultBranchFailed & FreestyleError;
|
|
7594
7782
|
static readonly code: string;
|
|
7595
7783
|
static readonly statusCode: number;
|
|
7596
7784
|
static readonly description: string;
|
|
7597
|
-
constructor(body:
|
|
7785
|
+
constructor(body: PublicUpdateDefaultBranchFailed & FreestyleError);
|
|
7598
7786
|
}
|
|
7599
|
-
interface
|
|
7787
|
+
interface PublicGetRepositoryInfoFailed {
|
|
7600
7788
|
message: string;
|
|
7601
7789
|
[k: string]: unknown;
|
|
7602
7790
|
}
|
|
7603
|
-
declare class
|
|
7604
|
-
body:
|
|
7791
|
+
declare class GetRepositoryInfoFailedError extends Error {
|
|
7792
|
+
body: PublicGetRepositoryInfoFailed & FreestyleError;
|
|
7605
7793
|
static readonly code: string;
|
|
7606
7794
|
static readonly statusCode: number;
|
|
7607
7795
|
static readonly description: string;
|
|
7608
|
-
constructor(body:
|
|
7796
|
+
constructor(body: PublicGetRepositoryInfoFailed & FreestyleError);
|
|
7609
7797
|
}
|
|
7610
|
-
interface
|
|
7798
|
+
interface PublicListRepositoriesFailed {
|
|
7611
7799
|
message: string;
|
|
7612
7800
|
[k: string]: unknown;
|
|
7613
7801
|
}
|
|
7614
|
-
declare class
|
|
7615
|
-
body:
|
|
7802
|
+
declare class ListRepositoriesFailedError extends Error {
|
|
7803
|
+
body: PublicListRepositoriesFailed & FreestyleError;
|
|
7616
7804
|
static readonly code: string;
|
|
7617
7805
|
static readonly statusCode: number;
|
|
7618
7806
|
static readonly description: string;
|
|
7619
|
-
constructor(body:
|
|
7807
|
+
constructor(body: PublicListRepositoriesFailed & FreestyleError);
|
|
7620
7808
|
}
|
|
7621
|
-
interface
|
|
7809
|
+
interface PublicDeleteRepositoryFailed {
|
|
7622
7810
|
message: string;
|
|
7623
7811
|
[k: string]: unknown;
|
|
7624
7812
|
}
|
|
7625
|
-
declare class
|
|
7626
|
-
body:
|
|
7813
|
+
declare class DeleteRepositoryFailedError extends Error {
|
|
7814
|
+
body: PublicDeleteRepositoryFailed & FreestyleError;
|
|
7627
7815
|
static readonly code: string;
|
|
7628
7816
|
static readonly statusCode: number;
|
|
7629
7817
|
static readonly description: string;
|
|
7630
|
-
constructor(body:
|
|
7818
|
+
constructor(body: PublicDeleteRepositoryFailed & FreestyleError);
|
|
7631
7819
|
}
|
|
7632
|
-
interface
|
|
7820
|
+
interface PublicCreateRepositoryFailed {
|
|
7633
7821
|
message: string;
|
|
7634
7822
|
[k: string]: unknown;
|
|
7635
7823
|
}
|
|
7636
|
-
declare class
|
|
7637
|
-
body:
|
|
7824
|
+
declare class CreateRepositoryFailedError extends Error {
|
|
7825
|
+
body: PublicCreateRepositoryFailed & FreestyleError;
|
|
7638
7826
|
static readonly code: string;
|
|
7639
7827
|
static readonly statusCode: number;
|
|
7640
7828
|
static readonly description: string;
|
|
7641
|
-
constructor(body:
|
|
7829
|
+
constructor(body: PublicCreateRepositoryFailed & FreestyleError);
|
|
7642
7830
|
}
|
|
7643
|
-
interface
|
|
7831
|
+
interface PublicSerializationError {
|
|
7644
7832
|
message: string;
|
|
7645
7833
|
[k: string]: unknown;
|
|
7646
7834
|
}
|
|
7647
|
-
declare class
|
|
7648
|
-
body:
|
|
7835
|
+
declare class SerializationErrorError extends Error {
|
|
7836
|
+
body: PublicSerializationError & FreestyleError;
|
|
7649
7837
|
static readonly code: string;
|
|
7650
7838
|
static readonly statusCode: number;
|
|
7651
7839
|
static readonly description: string;
|
|
7652
|
-
constructor(body:
|
|
7840
|
+
constructor(body: PublicSerializationError & FreestyleError);
|
|
7653
7841
|
}
|
|
7654
|
-
interface
|
|
7842
|
+
interface PublicGitInvalidRequest {
|
|
7655
7843
|
message: string;
|
|
7656
7844
|
[k: string]: unknown;
|
|
7657
7845
|
}
|
|
7658
|
-
declare class
|
|
7659
|
-
body:
|
|
7846
|
+
declare class GitInvalidRequestError extends Error {
|
|
7847
|
+
body: PublicGitInvalidRequest & FreestyleError;
|
|
7660
7848
|
static readonly code: string;
|
|
7661
7849
|
static readonly statusCode: number;
|
|
7662
7850
|
static readonly description: string;
|
|
7663
|
-
constructor(body:
|
|
7851
|
+
constructor(body: PublicGitInvalidRequest & FreestyleError);
|
|
7664
7852
|
}
|
|
7665
|
-
interface
|
|
7666
|
-
|
|
7853
|
+
interface PublicRepositoryNotFound {
|
|
7854
|
+
repoId: string;
|
|
7667
7855
|
[k: string]: unknown;
|
|
7668
7856
|
}
|
|
7669
|
-
declare class
|
|
7670
|
-
body:
|
|
7857
|
+
declare class RepositoryNotFoundError extends Error {
|
|
7858
|
+
body: PublicRepositoryNotFound & FreestyleError;
|
|
7671
7859
|
static readonly code: string;
|
|
7672
7860
|
static readonly statusCode: number;
|
|
7673
7861
|
static readonly description: string;
|
|
7674
|
-
constructor(body:
|
|
7862
|
+
constructor(body: PublicRepositoryNotFound & FreestyleError);
|
|
7675
7863
|
}
|
|
7676
|
-
interface
|
|
7864
|
+
interface PublicFailedToProvisionCertificate {
|
|
7677
7865
|
message: string;
|
|
7678
7866
|
[k: string]: unknown;
|
|
7679
7867
|
}
|
|
7680
|
-
declare class
|
|
7681
|
-
body:
|
|
7868
|
+
declare class FailedToProvisionCertificateError extends Error {
|
|
7869
|
+
body: PublicFailedToProvisionCertificate & FreestyleError;
|
|
7682
7870
|
static readonly code: string;
|
|
7683
7871
|
static readonly statusCode: number;
|
|
7684
7872
|
static readonly description: string;
|
|
7685
|
-
constructor(body:
|
|
7873
|
+
constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
|
|
7686
7874
|
}
|
|
7687
|
-
interface
|
|
7875
|
+
interface PublicFailedToInsertDomainMapping {
|
|
7688
7876
|
message: string;
|
|
7689
7877
|
[k: string]: unknown;
|
|
7690
7878
|
}
|
|
7691
|
-
declare class
|
|
7692
|
-
body:
|
|
7693
|
-
static readonly code: string;
|
|
7694
|
-
static readonly statusCode: number;
|
|
7695
|
-
static readonly description: string;
|
|
7696
|
-
constructor(body: PublicCreateIdentityFailed & FreestyleError);
|
|
7697
|
-
}
|
|
7698
|
-
declare class VmPermissionNotFoundError extends Error {
|
|
7699
|
-
body: unknown & FreestyleError;
|
|
7879
|
+
declare class FailedToInsertDomainMappingError extends Error {
|
|
7880
|
+
body: PublicFailedToInsertDomainMapping & FreestyleError;
|
|
7700
7881
|
static readonly code: string;
|
|
7701
7882
|
static readonly statusCode: number;
|
|
7702
7883
|
static readonly description: string;
|
|
7703
|
-
constructor(body:
|
|
7884
|
+
constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
|
|
7704
7885
|
}
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
static readonly statusCode: number;
|
|
7709
|
-
static readonly description: string;
|
|
7710
|
-
constructor(body: unknown & FreestyleError);
|
|
7886
|
+
interface PublicPermissionDenied {
|
|
7887
|
+
message: string;
|
|
7888
|
+
[k: string]: unknown;
|
|
7711
7889
|
}
|
|
7712
|
-
declare class
|
|
7713
|
-
body:
|
|
7890
|
+
declare class PermissionDeniedError extends Error {
|
|
7891
|
+
body: PublicPermissionDenied & FreestyleError;
|
|
7714
7892
|
static readonly code: string;
|
|
7715
7893
|
static readonly statusCode: number;
|
|
7716
7894
|
static readonly description: string;
|
|
7717
|
-
constructor(body:
|
|
7895
|
+
constructor(body: PublicPermissionDenied & FreestyleError);
|
|
7718
7896
|
}
|
|
7719
|
-
|
|
7720
|
-
|
|
7721
|
-
|
|
7722
|
-
static readonly statusCode: number;
|
|
7723
|
-
static readonly description: string;
|
|
7724
|
-
constructor(body: unknown & FreestyleError);
|
|
7897
|
+
interface PublicFailedToCheckPermissions {
|
|
7898
|
+
message: string;
|
|
7899
|
+
[k: string]: unknown;
|
|
7725
7900
|
}
|
|
7726
|
-
declare class
|
|
7727
|
-
body:
|
|
7901
|
+
declare class FailedToCheckPermissionsError extends Error {
|
|
7902
|
+
body: PublicFailedToCheckPermissions & FreestyleError;
|
|
7728
7903
|
static readonly code: string;
|
|
7729
7904
|
static readonly statusCode: number;
|
|
7730
7905
|
static readonly description: string;
|
|
7731
|
-
constructor(body:
|
|
7906
|
+
constructor(body: PublicFailedToCheckPermissions & FreestyleError);
|
|
7732
7907
|
}
|
|
7733
|
-
|
|
7734
|
-
|
|
7735
|
-
|
|
7736
|
-
static readonly statusCode: number;
|
|
7737
|
-
static readonly description: string;
|
|
7738
|
-
constructor(body: unknown & FreestyleError);
|
|
7908
|
+
interface PublicFailedToListDomains {
|
|
7909
|
+
message: string;
|
|
7910
|
+
[k: string]: unknown;
|
|
7739
7911
|
}
|
|
7740
|
-
declare class
|
|
7741
|
-
body:
|
|
7912
|
+
declare class FailedToListDomainsError extends Error {
|
|
7913
|
+
body: PublicFailedToListDomains & FreestyleError;
|
|
7742
7914
|
static readonly code: string;
|
|
7743
7915
|
static readonly statusCode: number;
|
|
7744
7916
|
static readonly description: string;
|
|
7745
|
-
constructor(body:
|
|
7917
|
+
constructor(body: PublicFailedToListDomains & FreestyleError);
|
|
7746
7918
|
}
|
|
7747
|
-
|
|
7748
|
-
|
|
7749
|
-
|
|
7750
|
-
static readonly statusCode: number;
|
|
7751
|
-
static readonly description: string;
|
|
7752
|
-
constructor(body: unknown & FreestyleError);
|
|
7919
|
+
interface PublicFailedToListVerifications {
|
|
7920
|
+
message: string;
|
|
7921
|
+
[k: string]: unknown;
|
|
7753
7922
|
}
|
|
7754
|
-
declare class
|
|
7755
|
-
body:
|
|
7923
|
+
declare class FailedToListVerificationsError extends Error {
|
|
7924
|
+
body: PublicFailedToListVerifications & FreestyleError;
|
|
7756
7925
|
static readonly code: string;
|
|
7757
7926
|
static readonly statusCode: number;
|
|
7758
7927
|
static readonly description: string;
|
|
7759
|
-
constructor(body:
|
|
7928
|
+
constructor(body: PublicFailedToListVerifications & FreestyleError);
|
|
7760
7929
|
}
|
|
7761
|
-
interface
|
|
7930
|
+
interface PublicFailedToVerifyDomain {
|
|
7762
7931
|
message: string;
|
|
7763
7932
|
[k: string]: unknown;
|
|
7764
7933
|
}
|
|
7765
|
-
declare class
|
|
7766
|
-
body:
|
|
7934
|
+
declare class FailedToVerifyDomainError extends Error {
|
|
7935
|
+
body: PublicFailedToVerifyDomain & FreestyleError;
|
|
7767
7936
|
static readonly code: string;
|
|
7768
7937
|
static readonly statusCode: number;
|
|
7769
7938
|
static readonly description: string;
|
|
7770
|
-
constructor(body:
|
|
7939
|
+
constructor(body: PublicFailedToVerifyDomain & FreestyleError);
|
|
7771
7940
|
}
|
|
7772
|
-
|
|
7773
|
-
|
|
7941
|
+
interface PublicVerificationFailed {
|
|
7942
|
+
message: string;
|
|
7943
|
+
[k: string]: unknown;
|
|
7944
|
+
}
|
|
7945
|
+
declare class VerificationFailedError extends Error {
|
|
7946
|
+
body: PublicVerificationFailed & FreestyleError;
|
|
7774
7947
|
static readonly code: string;
|
|
7775
7948
|
static readonly statusCode: number;
|
|
7776
7949
|
static readonly description: string;
|
|
7777
|
-
constructor(body:
|
|
7950
|
+
constructor(body: PublicVerificationFailed & FreestyleError);
|
|
7778
7951
|
}
|
|
7779
|
-
interface
|
|
7952
|
+
interface PublicFailedToDeleteVerification {
|
|
7780
7953
|
message: string;
|
|
7781
7954
|
[k: string]: unknown;
|
|
7782
7955
|
}
|
|
7783
|
-
declare class
|
|
7784
|
-
body:
|
|
7956
|
+
declare class FailedToDeleteVerificationError extends Error {
|
|
7957
|
+
body: PublicFailedToDeleteVerification & FreestyleError;
|
|
7785
7958
|
static readonly code: string;
|
|
7786
7959
|
static readonly statusCode: number;
|
|
7787
7960
|
static readonly description: string;
|
|
7788
|
-
constructor(body:
|
|
7961
|
+
constructor(body: PublicFailedToDeleteVerification & FreestyleError);
|
|
7789
7962
|
}
|
|
7790
|
-
interface
|
|
7791
|
-
|
|
7963
|
+
interface PublicVerificationNotFound {
|
|
7964
|
+
domain: string;
|
|
7792
7965
|
[k: string]: unknown;
|
|
7793
7966
|
}
|
|
7794
|
-
declare class
|
|
7795
|
-
body:
|
|
7967
|
+
declare class VerificationNotFoundError extends Error {
|
|
7968
|
+
body: PublicVerificationNotFound & FreestyleError;
|
|
7796
7969
|
static readonly code: string;
|
|
7797
7970
|
static readonly statusCode: number;
|
|
7798
7971
|
static readonly description: string;
|
|
7799
|
-
constructor(body:
|
|
7972
|
+
constructor(body: PublicVerificationNotFound & FreestyleError);
|
|
7800
7973
|
}
|
|
7801
|
-
interface
|
|
7974
|
+
interface PublicFailedToCreateVerificationCode {
|
|
7802
7975
|
message: string;
|
|
7803
7976
|
[k: string]: unknown;
|
|
7804
7977
|
}
|
|
7805
|
-
declare class
|
|
7806
|
-
body:
|
|
7978
|
+
declare class FailedToCreateVerificationCodeError extends Error {
|
|
7979
|
+
body: PublicFailedToCreateVerificationCode & FreestyleError;
|
|
7807
7980
|
static readonly code: string;
|
|
7808
7981
|
static readonly statusCode: number;
|
|
7809
7982
|
static readonly description: string;
|
|
7810
|
-
constructor(body:
|
|
7983
|
+
constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
|
|
7811
7984
|
}
|
|
7812
|
-
interface
|
|
7813
|
-
|
|
7985
|
+
interface PublicInvalidDomain {
|
|
7986
|
+
domain: string;
|
|
7814
7987
|
[k: string]: unknown;
|
|
7815
7988
|
}
|
|
7816
|
-
declare class
|
|
7817
|
-
body:
|
|
7989
|
+
declare class InvalidDomainError extends Error {
|
|
7990
|
+
body: PublicInvalidDomain & FreestyleError;
|
|
7818
7991
|
static readonly code: string;
|
|
7819
7992
|
static readonly statusCode: number;
|
|
7820
7993
|
static readonly description: string;
|
|
7821
|
-
constructor(body:
|
|
7994
|
+
constructor(body: PublicInvalidDomain & FreestyleError);
|
|
7822
7995
|
}
|
|
7823
|
-
interface
|
|
7824
|
-
|
|
7996
|
+
interface PublicDomainAlreadyExists {
|
|
7997
|
+
domain: string;
|
|
7825
7998
|
[k: string]: unknown;
|
|
7826
7999
|
}
|
|
7827
|
-
declare class
|
|
7828
|
-
body:
|
|
8000
|
+
declare class DomainAlreadyExistsError extends Error {
|
|
8001
|
+
body: PublicDomainAlreadyExists & FreestyleError;
|
|
7829
8002
|
static readonly code: string;
|
|
7830
8003
|
static readonly statusCode: number;
|
|
7831
8004
|
static readonly description: string;
|
|
7832
|
-
constructor(body:
|
|
8005
|
+
constructor(body: PublicDomainAlreadyExists & FreestyleError);
|
|
7833
8006
|
}
|
|
7834
|
-
interface
|
|
8007
|
+
interface PublicFailedToInsertOwnership {
|
|
7835
8008
|
message: string;
|
|
7836
8009
|
[k: string]: unknown;
|
|
7837
8010
|
}
|
|
7838
|
-
declare class
|
|
7839
|
-
body:
|
|
8011
|
+
declare class FailedToInsertOwnershipError extends Error {
|
|
8012
|
+
body: PublicFailedToInsertOwnership & FreestyleError;
|
|
7840
8013
|
static readonly code: string;
|
|
7841
8014
|
static readonly statusCode: number;
|
|
7842
8015
|
static readonly description: string;
|
|
7843
|
-
constructor(body:
|
|
8016
|
+
constructor(body: PublicFailedToInsertOwnership & FreestyleError);
|
|
7844
8017
|
}
|
|
7845
|
-
interface
|
|
8018
|
+
interface PublicFailedRemoveDomainMapping {
|
|
7846
8019
|
message: string;
|
|
7847
8020
|
[k: string]: unknown;
|
|
7848
8021
|
}
|
|
7849
|
-
declare class
|
|
7850
|
-
body:
|
|
8022
|
+
declare class FailedRemoveDomainMappingError extends Error {
|
|
8023
|
+
body: PublicFailedRemoveDomainMapping & FreestyleError;
|
|
7851
8024
|
static readonly code: string;
|
|
7852
8025
|
static readonly statusCode: number;
|
|
7853
8026
|
static readonly description: string;
|
|
7854
|
-
constructor(body:
|
|
8027
|
+
constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
|
|
7855
8028
|
}
|
|
7856
|
-
interface
|
|
7857
|
-
|
|
8029
|
+
interface PublicFailedPermissionsCheck {
|
|
8030
|
+
domain: string;
|
|
7858
8031
|
[k: string]: unknown;
|
|
7859
8032
|
}
|
|
7860
|
-
declare class
|
|
7861
|
-
body:
|
|
8033
|
+
declare class FailedPermissionsCheckError extends Error {
|
|
8034
|
+
body: PublicFailedPermissionsCheck & FreestyleError;
|
|
7862
8035
|
static readonly code: string;
|
|
7863
8036
|
static readonly statusCode: number;
|
|
7864
8037
|
static readonly description: string;
|
|
7865
|
-
constructor(body:
|
|
8038
|
+
constructor(body: PublicFailedPermissionsCheck & FreestyleError);
|
|
7866
8039
|
}
|
|
7867
|
-
interface
|
|
8040
|
+
interface PublicFailedToCheckDomainMappingPermissions {
|
|
7868
8041
|
message: string;
|
|
7869
8042
|
[k: string]: unknown;
|
|
7870
8043
|
}
|
|
7871
|
-
declare class
|
|
7872
|
-
body:
|
|
8044
|
+
declare class FailedToCheckDomainMappingPermissionsError extends Error {
|
|
8045
|
+
body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
|
|
7873
8046
|
static readonly code: string;
|
|
7874
8047
|
static readonly statusCode: number;
|
|
7875
8048
|
static readonly description: string;
|
|
7876
|
-
constructor(body:
|
|
7877
|
-
}
|
|
7878
|
-
interface PublicNetworkPermissionsFailed {
|
|
7879
|
-
message: string;
|
|
7880
|
-
[k: string]: unknown;
|
|
8049
|
+
constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
|
|
7881
8050
|
}
|
|
7882
|
-
declare class
|
|
7883
|
-
body:
|
|
8051
|
+
declare class BranchNameEmptyError extends Error {
|
|
8052
|
+
body: unknown & FreestyleError;
|
|
7884
8053
|
static readonly code: string;
|
|
7885
8054
|
static readonly statusCode: number;
|
|
7886
8055
|
static readonly description: string;
|
|
7887
|
-
constructor(body:
|
|
8056
|
+
constructor(body: unknown & FreestyleError);
|
|
7888
8057
|
}
|
|
7889
|
-
|
|
7890
|
-
|
|
7891
|
-
|
|
8058
|
+
declare class AnyhowError extends Error {
|
|
8059
|
+
body: unknown & FreestyleError;
|
|
8060
|
+
static readonly code: string;
|
|
8061
|
+
static readonly statusCode: number;
|
|
8062
|
+
static readonly description: string;
|
|
8063
|
+
constructor(body: unknown & FreestyleError);
|
|
7892
8064
|
}
|
|
7893
|
-
declare class
|
|
7894
|
-
body:
|
|
8065
|
+
declare class PermissionAlreadyExistsError extends Error {
|
|
8066
|
+
body: unknown & FreestyleError;
|
|
7895
8067
|
static readonly code: string;
|
|
7896
8068
|
static readonly statusCode: number;
|
|
7897
8069
|
static readonly description: string;
|
|
7898
|
-
constructor(body:
|
|
8070
|
+
constructor(body: unknown & FreestyleError);
|
|
7899
8071
|
}
|
|
7900
|
-
interface
|
|
7901
|
-
|
|
8072
|
+
interface PublicListTokensFailed {
|
|
8073
|
+
message: string;
|
|
7902
8074
|
[k: string]: unknown;
|
|
7903
8075
|
}
|
|
7904
|
-
declare class
|
|
7905
|
-
body:
|
|
8076
|
+
declare class ListTokensFailedError extends Error {
|
|
8077
|
+
body: PublicListTokensFailed & FreestyleError;
|
|
7906
8078
|
static readonly code: string;
|
|
7907
8079
|
static readonly statusCode: number;
|
|
7908
8080
|
static readonly description: string;
|
|
7909
|
-
constructor(body:
|
|
8081
|
+
constructor(body: PublicListTokensFailed & FreestyleError);
|
|
7910
8082
|
}
|
|
7911
|
-
interface
|
|
8083
|
+
interface PublicRevokeTokenFailed {
|
|
7912
8084
|
message: string;
|
|
7913
8085
|
[k: string]: unknown;
|
|
7914
8086
|
}
|
|
7915
|
-
declare class
|
|
7916
|
-
body:
|
|
8087
|
+
declare class RevokeTokenFailedError extends Error {
|
|
8088
|
+
body: PublicRevokeTokenFailed & FreestyleError;
|
|
7917
8089
|
static readonly code: string;
|
|
7918
8090
|
static readonly statusCode: number;
|
|
7919
8091
|
static readonly description: string;
|
|
7920
|
-
constructor(body:
|
|
8092
|
+
constructor(body: PublicRevokeTokenFailed & FreestyleError);
|
|
7921
8093
|
}
|
|
7922
|
-
interface
|
|
8094
|
+
interface PublicCreateTokenFailed {
|
|
7923
8095
|
message: string;
|
|
7924
8096
|
[k: string]: unknown;
|
|
7925
8097
|
}
|
|
7926
|
-
declare class
|
|
7927
|
-
body:
|
|
8098
|
+
declare class CreateTokenFailedError extends Error {
|
|
8099
|
+
body: PublicCreateTokenFailed & FreestyleError;
|
|
7928
8100
|
static readonly code: string;
|
|
7929
8101
|
static readonly statusCode: number;
|
|
7930
8102
|
static readonly description: string;
|
|
7931
|
-
constructor(body:
|
|
8103
|
+
constructor(body: PublicCreateTokenFailed & FreestyleError);
|
|
7932
8104
|
}
|
|
7933
|
-
interface
|
|
7934
|
-
|
|
8105
|
+
interface PublicListPermissionsFailed {
|
|
8106
|
+
message: string;
|
|
7935
8107
|
[k: string]: unknown;
|
|
7936
8108
|
}
|
|
7937
|
-
declare class
|
|
7938
|
-
body:
|
|
8109
|
+
declare class ListPermissionsFailedError extends Error {
|
|
8110
|
+
body: PublicListPermissionsFailed & FreestyleError;
|
|
7939
8111
|
static readonly code: string;
|
|
7940
8112
|
static readonly statusCode: number;
|
|
7941
8113
|
static readonly description: string;
|
|
7942
|
-
constructor(body:
|
|
8114
|
+
constructor(body: PublicListPermissionsFailed & FreestyleError);
|
|
7943
8115
|
}
|
|
7944
|
-
interface
|
|
8116
|
+
interface PublicGetPermissionFailed {
|
|
7945
8117
|
message: string;
|
|
7946
8118
|
[k: string]: unknown;
|
|
7947
8119
|
}
|
|
7948
|
-
declare class
|
|
7949
|
-
body:
|
|
8120
|
+
declare class GetPermissionFailedError extends Error {
|
|
8121
|
+
body: PublicGetPermissionFailed & FreestyleError;
|
|
7950
8122
|
static readonly code: string;
|
|
7951
8123
|
static readonly statusCode: number;
|
|
7952
8124
|
static readonly description: string;
|
|
7953
|
-
constructor(body:
|
|
8125
|
+
constructor(body: PublicGetPermissionFailed & FreestyleError);
|
|
7954
8126
|
}
|
|
7955
|
-
interface
|
|
8127
|
+
interface PublicUpdatePermissionFailed {
|
|
7956
8128
|
message: string;
|
|
7957
8129
|
[k: string]: unknown;
|
|
7958
8130
|
}
|
|
7959
|
-
declare class
|
|
7960
|
-
body:
|
|
8131
|
+
declare class UpdatePermissionFailedError extends Error {
|
|
8132
|
+
body: PublicUpdatePermissionFailed & FreestyleError;
|
|
7961
8133
|
static readonly code: string;
|
|
7962
8134
|
static readonly statusCode: number;
|
|
7963
8135
|
static readonly description: string;
|
|
7964
|
-
constructor(body:
|
|
8136
|
+
constructor(body: PublicUpdatePermissionFailed & FreestyleError);
|
|
7965
8137
|
}
|
|
7966
|
-
interface
|
|
8138
|
+
interface PublicRevokePermissionFailed {
|
|
7967
8139
|
message: string;
|
|
7968
8140
|
[k: string]: unknown;
|
|
7969
8141
|
}
|
|
7970
|
-
declare class
|
|
7971
|
-
body:
|
|
8142
|
+
declare class RevokePermissionFailedError extends Error {
|
|
8143
|
+
body: PublicRevokePermissionFailed & FreestyleError;
|
|
7972
8144
|
static readonly code: string;
|
|
7973
8145
|
static readonly statusCode: number;
|
|
7974
8146
|
static readonly description: string;
|
|
7975
|
-
constructor(body:
|
|
8147
|
+
constructor(body: PublicRevokePermissionFailed & FreestyleError);
|
|
7976
8148
|
}
|
|
7977
|
-
interface
|
|
8149
|
+
interface PublicGrantPermissionFailed {
|
|
7978
8150
|
message: string;
|
|
7979
8151
|
[k: string]: unknown;
|
|
7980
8152
|
}
|
|
7981
|
-
declare class
|
|
7982
|
-
body:
|
|
8153
|
+
declare class GrantPermissionFailedError extends Error {
|
|
8154
|
+
body: PublicGrantPermissionFailed & FreestyleError;
|
|
7983
8155
|
static readonly code: string;
|
|
7984
8156
|
static readonly statusCode: number;
|
|
7985
8157
|
static readonly description: string;
|
|
7986
|
-
constructor(body:
|
|
8158
|
+
constructor(body: PublicGrantPermissionFailed & FreestyleError);
|
|
7987
8159
|
}
|
|
7988
|
-
interface
|
|
8160
|
+
interface PublicListIdentitiesFailed {
|
|
7989
8161
|
message: string;
|
|
7990
8162
|
[k: string]: unknown;
|
|
7991
8163
|
}
|
|
7992
|
-
declare class
|
|
7993
|
-
body:
|
|
8164
|
+
declare class ListIdentitiesFailedError extends Error {
|
|
8165
|
+
body: PublicListIdentitiesFailed & FreestyleError;
|
|
7994
8166
|
static readonly code: string;
|
|
7995
8167
|
static readonly statusCode: number;
|
|
7996
8168
|
static readonly description: string;
|
|
7997
|
-
constructor(body:
|
|
8169
|
+
constructor(body: PublicListIdentitiesFailed & FreestyleError);
|
|
7998
8170
|
}
|
|
7999
|
-
interface
|
|
8000
|
-
|
|
8171
|
+
interface PublicDeleteIdentityFailed {
|
|
8172
|
+
message: string;
|
|
8001
8173
|
[k: string]: unknown;
|
|
8002
8174
|
}
|
|
8003
|
-
declare class
|
|
8004
|
-
body:
|
|
8175
|
+
declare class DeleteIdentityFailedError extends Error {
|
|
8176
|
+
body: PublicDeleteIdentityFailed & FreestyleError;
|
|
8005
8177
|
static readonly code: string;
|
|
8006
8178
|
static readonly statusCode: number;
|
|
8007
8179
|
static readonly description: string;
|
|
8008
|
-
constructor(body:
|
|
8180
|
+
constructor(body: PublicDeleteIdentityFailed & FreestyleError);
|
|
8009
8181
|
}
|
|
8010
|
-
interface
|
|
8011
|
-
|
|
8012
|
-
reason?: string | null;
|
|
8182
|
+
interface PublicCreateIdentityFailed {
|
|
8183
|
+
message: string;
|
|
8013
8184
|
[k: string]: unknown;
|
|
8014
8185
|
}
|
|
8015
|
-
declare class
|
|
8016
|
-
body:
|
|
8186
|
+
declare class CreateIdentityFailedError extends Error {
|
|
8187
|
+
body: PublicCreateIdentityFailed & FreestyleError;
|
|
8017
8188
|
static readonly code: string;
|
|
8018
8189
|
static readonly statusCode: number;
|
|
8019
8190
|
static readonly description: string;
|
|
8020
|
-
constructor(body:
|
|
8021
|
-
}
|
|
8022
|
-
interface PublicBuildFailed {
|
|
8023
|
-
logs: string;
|
|
8024
|
-
vmId: string;
|
|
8025
|
-
[k: string]: unknown;
|
|
8191
|
+
constructor(body: PublicCreateIdentityFailed & FreestyleError);
|
|
8026
8192
|
}
|
|
8027
|
-
declare class
|
|
8028
|
-
body:
|
|
8193
|
+
declare class VmPermissionNotFoundError extends Error {
|
|
8194
|
+
body: unknown & FreestyleError;
|
|
8029
8195
|
static readonly code: string;
|
|
8030
8196
|
static readonly statusCode: number;
|
|
8031
8197
|
static readonly description: string;
|
|
8032
|
-
constructor(body:
|
|
8198
|
+
constructor(body: unknown & FreestyleError);
|
|
8033
8199
|
}
|
|
8034
|
-
declare class
|
|
8200
|
+
declare class PermissionNotFoundError extends Error {
|
|
8035
8201
|
body: unknown & FreestyleError;
|
|
8036
8202
|
static readonly code: string;
|
|
8037
8203
|
static readonly statusCode: number;
|
|
8038
8204
|
static readonly description: string;
|
|
8039
8205
|
constructor(body: unknown & FreestyleError);
|
|
8040
8206
|
}
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
[k: string]: unknown;
|
|
8044
|
-
}
|
|
8045
|
-
declare class LockfileErrorError extends Error {
|
|
8046
|
-
body: PublicLockfileError & FreestyleError;
|
|
8207
|
+
declare class GitRepositoryAccessDeniedError extends Error {
|
|
8208
|
+
body: unknown & FreestyleError;
|
|
8047
8209
|
static readonly code: string;
|
|
8048
8210
|
static readonly statusCode: number;
|
|
8049
8211
|
static readonly description: string;
|
|
8050
|
-
constructor(body:
|
|
8212
|
+
constructor(body: unknown & FreestyleError);
|
|
8051
8213
|
}
|
|
8052
|
-
declare class
|
|
8214
|
+
declare class GitRepositoryNotFoundError extends Error {
|
|
8053
8215
|
body: unknown & FreestyleError;
|
|
8054
8216
|
static readonly code: string;
|
|
8055
8217
|
static readonly statusCode: number;
|
|
8056
8218
|
static readonly description: string;
|
|
8057
8219
|
constructor(body: unknown & FreestyleError);
|
|
8058
8220
|
}
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
[k: string]: unknown;
|
|
8062
|
-
}
|
|
8063
|
-
declare class DomainMappingErrorError extends Error {
|
|
8064
|
-
body: PublicDomainMappingError & FreestyleError;
|
|
8221
|
+
declare class CannotDeleteManagedIdentityError extends Error {
|
|
8222
|
+
body: unknown & FreestyleError;
|
|
8065
8223
|
static readonly code: string;
|
|
8066
8224
|
static readonly statusCode: number;
|
|
8067
8225
|
static readonly description: string;
|
|
8068
|
-
constructor(body:
|
|
8069
|
-
}
|
|
8070
|
-
interface PublicCertificateProvisioningError {
|
|
8071
|
-
domain: string;
|
|
8072
|
-
reason?: string | null;
|
|
8073
|
-
[k: string]: unknown;
|
|
8226
|
+
constructor(body: unknown & FreestyleError);
|
|
8074
8227
|
}
|
|
8075
|
-
declare class
|
|
8076
|
-
body:
|
|
8228
|
+
declare class CannotModifyManagedIdentityError extends Error {
|
|
8229
|
+
body: unknown & FreestyleError;
|
|
8077
8230
|
static readonly code: string;
|
|
8078
8231
|
static readonly statusCode: number;
|
|
8079
8232
|
static readonly description: string;
|
|
8080
|
-
constructor(body:
|
|
8233
|
+
constructor(body: unknown & FreestyleError);
|
|
8081
8234
|
}
|
|
8082
|
-
declare class
|
|
8235
|
+
declare class IdentityAccessDeniedError extends Error {
|
|
8083
8236
|
body: unknown & FreestyleError;
|
|
8084
8237
|
static readonly code: string;
|
|
8085
8238
|
static readonly statusCode: number;
|
|
8086
8239
|
static readonly description: string;
|
|
8087
8240
|
constructor(body: unknown & FreestyleError);
|
|
8088
8241
|
}
|
|
8089
|
-
|
|
8090
|
-
|
|
8091
|
-
|
|
8242
|
+
declare class IdentityNotFoundError extends Error {
|
|
8243
|
+
body: unknown & FreestyleError;
|
|
8244
|
+
static readonly code: string;
|
|
8245
|
+
static readonly statusCode: number;
|
|
8246
|
+
static readonly description: string;
|
|
8247
|
+
constructor(body: unknown & FreestyleError);
|
|
8092
8248
|
}
|
|
8093
|
-
declare class
|
|
8094
|
-
body:
|
|
8249
|
+
declare class DomainOwnershipVerificationFailedError extends Error {
|
|
8250
|
+
body: unknown & FreestyleError;
|
|
8095
8251
|
static readonly code: string;
|
|
8096
8252
|
static readonly statusCode: number;
|
|
8097
8253
|
static readonly description: string;
|
|
8098
|
-
constructor(body:
|
|
8254
|
+
constructor(body: unknown & FreestyleError);
|
|
8099
8255
|
}
|
|
8100
|
-
interface
|
|
8256
|
+
interface PublicErrorDeletingRecord {
|
|
8101
8257
|
domain: string;
|
|
8258
|
+
name: string;
|
|
8259
|
+
message: string;
|
|
8102
8260
|
[k: string]: unknown;
|
|
8103
8261
|
}
|
|
8104
|
-
declare class
|
|
8105
|
-
body:
|
|
8262
|
+
declare class ErrorDeletingRecordError extends Error {
|
|
8263
|
+
body: PublicErrorDeletingRecord & FreestyleError;
|
|
8106
8264
|
static readonly code: string;
|
|
8107
8265
|
static readonly statusCode: number;
|
|
8108
8266
|
static readonly description: string;
|
|
8109
|
-
constructor(body:
|
|
8267
|
+
constructor(body: PublicErrorDeletingRecord & FreestyleError);
|
|
8110
8268
|
}
|
|
8111
|
-
interface
|
|
8112
|
-
|
|
8269
|
+
interface PublicRecordOwnershipError {
|
|
8270
|
+
recordId: string;
|
|
8271
|
+
accountId: string;
|
|
8113
8272
|
[k: string]: unknown;
|
|
8114
8273
|
}
|
|
8115
|
-
declare class
|
|
8116
|
-
body:
|
|
8274
|
+
declare class RecordOwnershipErrorError extends Error {
|
|
8275
|
+
body: PublicRecordOwnershipError & FreestyleError;
|
|
8117
8276
|
static readonly code: string;
|
|
8118
8277
|
static readonly statusCode: number;
|
|
8119
8278
|
static readonly description: string;
|
|
8120
|
-
constructor(body:
|
|
8279
|
+
constructor(body: PublicRecordOwnershipError & FreestyleError);
|
|
8121
8280
|
}
|
|
8122
|
-
interface
|
|
8281
|
+
interface PublicErrorCreatingRecord {
|
|
8123
8282
|
message: string;
|
|
8124
8283
|
[k: string]: unknown;
|
|
8125
8284
|
}
|
|
8126
|
-
declare class
|
|
8127
|
-
body:
|
|
8285
|
+
declare class ErrorCreatingRecordError extends Error {
|
|
8286
|
+
body: PublicErrorCreatingRecord & FreestyleError;
|
|
8128
8287
|
static readonly code: string;
|
|
8129
8288
|
static readonly statusCode: number;
|
|
8130
8289
|
static readonly description: string;
|
|
8131
|
-
constructor(body:
|
|
8290
|
+
constructor(body: PublicErrorCreatingRecord & FreestyleError);
|
|
8132
8291
|
}
|
|
8133
|
-
|
|
8134
|
-
|
|
8292
|
+
interface PublicDomainOwnershipError {
|
|
8293
|
+
domain: string;
|
|
8294
|
+
accountId: string;
|
|
8295
|
+
[k: string]: unknown;
|
|
8296
|
+
}
|
|
8297
|
+
declare class DomainOwnershipErrorError extends Error {
|
|
8298
|
+
body: PublicDomainOwnershipError & FreestyleError;
|
|
8135
8299
|
static readonly code: string;
|
|
8136
8300
|
static readonly statusCode: number;
|
|
8137
8301
|
static readonly description: string;
|
|
8138
|
-
constructor(body:
|
|
8302
|
+
constructor(body: PublicDomainOwnershipError & FreestyleError);
|
|
8139
8303
|
}
|
|
8140
|
-
interface
|
|
8304
|
+
interface PublicBrowserOperationFailed {
|
|
8141
8305
|
message: string;
|
|
8142
8306
|
[k: string]: unknown;
|
|
8143
8307
|
}
|
|
8144
|
-
declare class
|
|
8145
|
-
body:
|
|
8308
|
+
declare class BrowserOperationFailedError extends Error {
|
|
8309
|
+
body: PublicBrowserOperationFailed & FreestyleError;
|
|
8146
8310
|
static readonly code: string;
|
|
8147
8311
|
static readonly statusCode: number;
|
|
8148
8312
|
static readonly description: string;
|
|
8149
|
-
constructor(body:
|
|
8313
|
+
constructor(body: PublicBrowserOperationFailed & FreestyleError);
|
|
8150
8314
|
}
|
|
8151
|
-
interface
|
|
8152
|
-
|
|
8315
|
+
interface PublicWatchFilesFailed {
|
|
8316
|
+
message: string;
|
|
8153
8317
|
[k: string]: unknown;
|
|
8154
8318
|
}
|
|
8155
|
-
declare class
|
|
8156
|
-
body:
|
|
8319
|
+
declare class WatchFilesFailedError extends Error {
|
|
8320
|
+
body: PublicWatchFilesFailed & FreestyleError;
|
|
8157
8321
|
static readonly code: string;
|
|
8158
8322
|
static readonly statusCode: number;
|
|
8159
8323
|
static readonly description: string;
|
|
8160
|
-
constructor(body:
|
|
8324
|
+
constructor(body: PublicWatchFilesFailed & FreestyleError);
|
|
8161
8325
|
}
|
|
8162
|
-
interface
|
|
8326
|
+
interface PublicLogsFailed {
|
|
8163
8327
|
message: string;
|
|
8164
8328
|
[k: string]: unknown;
|
|
8165
8329
|
}
|
|
8166
|
-
declare class
|
|
8167
|
-
body:
|
|
8330
|
+
declare class LogsFailedError extends Error {
|
|
8331
|
+
body: PublicLogsFailed & FreestyleError;
|
|
8168
8332
|
static readonly code: string;
|
|
8169
8333
|
static readonly statusCode: number;
|
|
8170
8334
|
static readonly description: string;
|
|
8171
|
-
constructor(body:
|
|
8335
|
+
constructor(body: PublicLogsFailed & FreestyleError);
|
|
8172
8336
|
}
|
|
8173
|
-
interface
|
|
8337
|
+
interface PublicStatusFailed {
|
|
8174
8338
|
message: string;
|
|
8175
8339
|
[k: string]: unknown;
|
|
8176
8340
|
}
|
|
8177
|
-
declare class
|
|
8178
|
-
body:
|
|
8341
|
+
declare class StatusFailedError extends Error {
|
|
8342
|
+
body: PublicStatusFailed & FreestyleError;
|
|
8179
8343
|
static readonly code: string;
|
|
8180
8344
|
static readonly statusCode: number;
|
|
8181
8345
|
static readonly description: string;
|
|
8182
|
-
constructor(body:
|
|
8346
|
+
constructor(body: PublicStatusFailed & FreestyleError);
|
|
8183
8347
|
}
|
|
8184
|
-
interface
|
|
8348
|
+
interface PublicRestartFailed {
|
|
8185
8349
|
message: string;
|
|
8186
8350
|
[k: string]: unknown;
|
|
8187
8351
|
}
|
|
8188
|
-
declare class
|
|
8189
|
-
body:
|
|
8352
|
+
declare class RestartFailedError extends Error {
|
|
8353
|
+
body: PublicRestartFailed & FreestyleError;
|
|
8190
8354
|
static readonly code: string;
|
|
8191
8355
|
static readonly statusCode: number;
|
|
8192
8356
|
static readonly description: string;
|
|
8193
|
-
constructor(body:
|
|
8357
|
+
constructor(body: PublicRestartFailed & FreestyleError);
|
|
8194
8358
|
}
|
|
8195
|
-
interface
|
|
8196
|
-
|
|
8359
|
+
interface PublicShutdownFailed {
|
|
8360
|
+
message: string;
|
|
8197
8361
|
[k: string]: unknown;
|
|
8198
8362
|
}
|
|
8199
|
-
declare class
|
|
8200
|
-
body:
|
|
8363
|
+
declare class ShutdownFailedError extends Error {
|
|
8364
|
+
body: PublicShutdownFailed & FreestyleError;
|
|
8201
8365
|
static readonly code: string;
|
|
8202
8366
|
static readonly statusCode: number;
|
|
8203
8367
|
static readonly description: string;
|
|
8204
|
-
constructor(body:
|
|
8368
|
+
constructor(body: PublicShutdownFailed & FreestyleError);
|
|
8205
8369
|
}
|
|
8206
|
-
interface
|
|
8370
|
+
interface PublicCommitFailed {
|
|
8207
8371
|
message: string;
|
|
8208
8372
|
[k: string]: unknown;
|
|
8209
8373
|
}
|
|
8210
|
-
declare class
|
|
8211
|
-
body:
|
|
8374
|
+
declare class CommitFailedError extends Error {
|
|
8375
|
+
body: PublicCommitFailed & FreestyleError;
|
|
8212
8376
|
static readonly code: string;
|
|
8213
8377
|
static readonly statusCode: number;
|
|
8214
8378
|
static readonly description: string;
|
|
8215
|
-
constructor(body:
|
|
8379
|
+
constructor(body: PublicCommitFailed & FreestyleError);
|
|
8216
8380
|
}
|
|
8217
|
-
interface
|
|
8381
|
+
interface PublicWriteFileFailed {
|
|
8218
8382
|
message: string;
|
|
8219
8383
|
[k: string]: unknown;
|
|
8220
8384
|
}
|
|
8221
|
-
declare class
|
|
8222
|
-
body:
|
|
8385
|
+
declare class WriteFileFailedError extends Error {
|
|
8386
|
+
body: PublicWriteFileFailed & FreestyleError;
|
|
8223
8387
|
static readonly code: string;
|
|
8224
8388
|
static readonly statusCode: number;
|
|
8225
8389
|
static readonly description: string;
|
|
8226
|
-
constructor(body:
|
|
8390
|
+
constructor(body: PublicWriteFileFailed & FreestyleError);
|
|
8227
8391
|
}
|
|
8228
|
-
interface
|
|
8392
|
+
interface PublicReadFileFailed {
|
|
8229
8393
|
message: string;
|
|
8230
8394
|
[k: string]: unknown;
|
|
8231
8395
|
}
|
|
8232
|
-
declare class
|
|
8233
|
-
body:
|
|
8396
|
+
declare class ReadFileFailedError extends Error {
|
|
8397
|
+
body: PublicReadFileFailed & FreestyleError;
|
|
8234
8398
|
static readonly code: string;
|
|
8235
8399
|
static readonly statusCode: number;
|
|
8236
8400
|
static readonly description: string;
|
|
8237
|
-
constructor(body:
|
|
8401
|
+
constructor(body: PublicReadFileFailed & FreestyleError);
|
|
8238
8402
|
}
|
|
8239
|
-
interface
|
|
8403
|
+
interface PublicExecutionFailed {
|
|
8240
8404
|
message: string;
|
|
8241
8405
|
[k: string]: unknown;
|
|
8242
8406
|
}
|
|
8243
|
-
declare class
|
|
8244
|
-
body:
|
|
8407
|
+
declare class ExecutionFailedError extends Error {
|
|
8408
|
+
body: PublicExecutionFailed & FreestyleError;
|
|
8245
8409
|
static readonly code: string;
|
|
8246
8410
|
static readonly statusCode: number;
|
|
8247
8411
|
static readonly description: string;
|
|
8248
|
-
constructor(body:
|
|
8412
|
+
constructor(body: PublicExecutionFailed & FreestyleError);
|
|
8249
8413
|
}
|
|
8250
|
-
interface
|
|
8414
|
+
interface PublicRequestFailed {
|
|
8251
8415
|
message: string;
|
|
8252
8416
|
[k: string]: unknown;
|
|
8253
8417
|
}
|
|
8254
|
-
declare class
|
|
8255
|
-
body:
|
|
8418
|
+
declare class RequestFailedError extends Error {
|
|
8419
|
+
body: PublicRequestFailed & FreestyleError;
|
|
8256
8420
|
static readonly code: string;
|
|
8257
8421
|
static readonly statusCode: number;
|
|
8258
8422
|
static readonly description: string;
|
|
8259
|
-
constructor(body:
|
|
8423
|
+
constructor(body: PublicRequestFailed & FreestyleError);
|
|
8260
8424
|
}
|
|
8261
|
-
interface
|
|
8425
|
+
interface PublicDevServerFileNotFound {
|
|
8262
8426
|
path: string;
|
|
8263
8427
|
[k: string]: unknown;
|
|
8264
8428
|
}
|
|
8265
|
-
declare class
|
|
8266
|
-
body:
|
|
8429
|
+
declare class DevServerFileNotFoundError extends Error {
|
|
8430
|
+
body: PublicDevServerFileNotFound & FreestyleError;
|
|
8267
8431
|
static readonly code: string;
|
|
8268
8432
|
static readonly statusCode: number;
|
|
8269
8433
|
static readonly description: string;
|
|
8270
|
-
constructor(body:
|
|
8434
|
+
constructor(body: PublicDevServerFileNotFound & FreestyleError);
|
|
8271
8435
|
}
|
|
8272
|
-
interface
|
|
8436
|
+
interface PublicDevServerInvalidRequest {
|
|
8273
8437
|
message: string;
|
|
8274
8438
|
[k: string]: unknown;
|
|
8275
8439
|
}
|
|
8276
|
-
declare class
|
|
8277
|
-
body:
|
|
8440
|
+
declare class DevServerInvalidRequestError extends Error {
|
|
8441
|
+
body: PublicDevServerInvalidRequest & FreestyleError;
|
|
8278
8442
|
static readonly code: string;
|
|
8279
8443
|
static readonly statusCode: number;
|
|
8280
8444
|
static readonly description: string;
|
|
8281
|
-
constructor(body:
|
|
8445
|
+
constructor(body: PublicDevServerInvalidRequest & FreestyleError);
|
|
8282
8446
|
}
|
|
8283
|
-
interface
|
|
8284
|
-
|
|
8447
|
+
interface UnauthorizedErrorPublic {
|
|
8448
|
+
route: string;
|
|
8449
|
+
reason?: string | null;
|
|
8285
8450
|
[k: string]: unknown;
|
|
8286
8451
|
}
|
|
8287
|
-
declare class
|
|
8288
|
-
body:
|
|
8452
|
+
declare class UnauthorizedErrorError extends Error {
|
|
8453
|
+
body: UnauthorizedErrorPublic & FreestyleError;
|
|
8289
8454
|
static readonly code: string;
|
|
8290
8455
|
static readonly statusCode: number;
|
|
8291
8456
|
static readonly description: string;
|
|
8292
|
-
constructor(body:
|
|
8457
|
+
constructor(body: UnauthorizedErrorPublic & FreestyleError);
|
|
8293
8458
|
}
|
|
8294
|
-
interface
|
|
8459
|
+
interface PublicExecuteInternalError {
|
|
8295
8460
|
message: string;
|
|
8296
8461
|
[k: string]: unknown;
|
|
8297
8462
|
}
|
|
8298
|
-
declare class
|
|
8299
|
-
body:
|
|
8463
|
+
declare class ExecuteInternalErrorError extends Error {
|
|
8464
|
+
body: PublicExecuteInternalError & FreestyleError;
|
|
8300
8465
|
static readonly code: string;
|
|
8301
8466
|
static readonly statusCode: number;
|
|
8302
8467
|
static readonly description: string;
|
|
8303
|
-
constructor(body:
|
|
8468
|
+
constructor(body: PublicExecuteInternalError & FreestyleError);
|
|
8304
8469
|
}
|
|
8305
|
-
declare class
|
|
8470
|
+
declare class ExecuteAccessDeniedError extends Error {
|
|
8306
8471
|
body: unknown & FreestyleError;
|
|
8307
8472
|
static readonly code: string;
|
|
8308
8473
|
static readonly statusCode: number;
|
|
8309
8474
|
static readonly description: string;
|
|
8310
8475
|
constructor(body: unknown & FreestyleError);
|
|
8311
8476
|
}
|
|
8312
|
-
interface
|
|
8477
|
+
interface PublicListRunsFailed {
|
|
8313
8478
|
message: string;
|
|
8314
8479
|
[k: string]: unknown;
|
|
8315
8480
|
}
|
|
8316
|
-
declare class
|
|
8317
|
-
body:
|
|
8481
|
+
declare class ListRunsFailedError extends Error {
|
|
8482
|
+
body: PublicListRunsFailed & FreestyleError;
|
|
8318
8483
|
static readonly code: string;
|
|
8319
8484
|
static readonly statusCode: number;
|
|
8320
8485
|
static readonly description: string;
|
|
8321
|
-
constructor(body:
|
|
8486
|
+
constructor(body: PublicListRunsFailed & FreestyleError);
|
|
8322
8487
|
}
|
|
8323
|
-
interface
|
|
8488
|
+
interface PublicExecutionError {
|
|
8324
8489
|
message: string;
|
|
8325
8490
|
[k: string]: unknown;
|
|
8326
8491
|
}
|
|
8327
|
-
declare class
|
|
8328
|
-
body:
|
|
8492
|
+
declare class ExecutionErrorError extends Error {
|
|
8493
|
+
body: PublicExecutionError & FreestyleError;
|
|
8329
8494
|
static readonly code: string;
|
|
8330
8495
|
static readonly statusCode: number;
|
|
8331
8496
|
static readonly description: string;
|
|
8332
|
-
constructor(body:
|
|
8497
|
+
constructor(body: PublicExecutionError & FreestyleError);
|
|
8333
8498
|
}
|
|
8334
|
-
interface
|
|
8499
|
+
interface PublicConnectionFailed {
|
|
8335
8500
|
message: string;
|
|
8336
8501
|
[k: string]: unknown;
|
|
8337
8502
|
}
|
|
8338
|
-
declare class
|
|
8339
|
-
body:
|
|
8503
|
+
declare class ConnectionFailedError extends Error {
|
|
8504
|
+
body: PublicConnectionFailed & FreestyleError;
|
|
8340
8505
|
static readonly code: string;
|
|
8341
8506
|
static readonly statusCode: number;
|
|
8342
8507
|
static readonly description: string;
|
|
8343
|
-
constructor(body:
|
|
8508
|
+
constructor(body: PublicConnectionFailed & FreestyleError);
|
|
8344
8509
|
}
|
|
8345
|
-
interface
|
|
8510
|
+
interface PublicMetadataWriteFailed {
|
|
8346
8511
|
message: string;
|
|
8347
8512
|
[k: string]: unknown;
|
|
8348
8513
|
}
|
|
8349
|
-
declare class
|
|
8350
|
-
body:
|
|
8514
|
+
declare class MetadataWriteFailedError extends Error {
|
|
8515
|
+
body: PublicMetadataWriteFailed & FreestyleError;
|
|
8351
8516
|
static readonly code: string;
|
|
8352
8517
|
static readonly statusCode: number;
|
|
8353
8518
|
static readonly description: string;
|
|
8354
|
-
constructor(body:
|
|
8519
|
+
constructor(body: PublicMetadataWriteFailed & FreestyleError);
|
|
8355
8520
|
}
|
|
8356
|
-
interface
|
|
8521
|
+
interface PublicNodeModulesInstallFailed {
|
|
8357
8522
|
message: string;
|
|
8358
8523
|
[k: string]: unknown;
|
|
8359
8524
|
}
|
|
8360
|
-
declare class
|
|
8361
|
-
body:
|
|
8525
|
+
declare class NodeModulesInstallFailedError extends Error {
|
|
8526
|
+
body: PublicNodeModulesInstallFailed & FreestyleError;
|
|
8362
8527
|
static readonly code: string;
|
|
8363
8528
|
static readonly statusCode: number;
|
|
8364
8529
|
static readonly description: string;
|
|
8365
|
-
constructor(body:
|
|
8530
|
+
constructor(body: PublicNodeModulesInstallFailed & FreestyleError);
|
|
8366
8531
|
}
|
|
8367
|
-
interface
|
|
8532
|
+
interface PublicNodeModulesDownloadFailed {
|
|
8368
8533
|
message: string;
|
|
8369
8534
|
[k: string]: unknown;
|
|
8370
8535
|
}
|
|
8371
|
-
declare class
|
|
8372
|
-
body:
|
|
8536
|
+
declare class NodeModulesDownloadFailedError extends Error {
|
|
8537
|
+
body: PublicNodeModulesDownloadFailed & FreestyleError;
|
|
8373
8538
|
static readonly code: string;
|
|
8374
8539
|
static readonly statusCode: number;
|
|
8375
8540
|
static readonly description: string;
|
|
8376
|
-
constructor(body:
|
|
8541
|
+
constructor(body: PublicNodeModulesDownloadFailed & FreestyleError);
|
|
8377
8542
|
}
|
|
8378
|
-
interface
|
|
8543
|
+
interface PublicLockGenerationFailed {
|
|
8379
8544
|
message: string;
|
|
8380
8545
|
[k: string]: unknown;
|
|
8381
8546
|
}
|
|
8382
|
-
declare class
|
|
8383
|
-
body:
|
|
8547
|
+
declare class LockGenerationFailedError extends Error {
|
|
8548
|
+
body: PublicLockGenerationFailed & FreestyleError;
|
|
8384
8549
|
static readonly code: string;
|
|
8385
8550
|
static readonly statusCode: number;
|
|
8386
8551
|
static readonly description: string;
|
|
8387
|
-
constructor(body:
|
|
8552
|
+
constructor(body: PublicLockGenerationFailed & FreestyleError);
|
|
8388
8553
|
}
|
|
8389
|
-
interface
|
|
8554
|
+
interface PublicWriteScriptFailed {
|
|
8390
8555
|
message: string;
|
|
8391
8556
|
[k: string]: unknown;
|
|
8392
8557
|
}
|
|
8393
|
-
declare class
|
|
8394
|
-
body:
|
|
8558
|
+
declare class WriteScriptFailedError extends Error {
|
|
8559
|
+
body: PublicWriteScriptFailed & FreestyleError;
|
|
8395
8560
|
static readonly code: string;
|
|
8396
8561
|
static readonly statusCode: number;
|
|
8397
8562
|
static readonly description: string;
|
|
8398
|
-
constructor(body:
|
|
8563
|
+
constructor(body: PublicWriteScriptFailed & FreestyleError);
|
|
8399
8564
|
}
|
|
8400
|
-
interface
|
|
8401
|
-
|
|
8565
|
+
interface PublicDirectoryCreationFailed {
|
|
8566
|
+
message: string;
|
|
8402
8567
|
[k: string]: unknown;
|
|
8403
8568
|
}
|
|
8404
|
-
declare class
|
|
8405
|
-
body:
|
|
8569
|
+
declare class DirectoryCreationFailedError extends Error {
|
|
8570
|
+
body: PublicDirectoryCreationFailed & FreestyleError;
|
|
8406
8571
|
static readonly code: string;
|
|
8407
8572
|
static readonly statusCode: number;
|
|
8408
8573
|
static readonly description: string;
|
|
8409
|
-
constructor(body:
|
|
8574
|
+
constructor(body: PublicDirectoryCreationFailed & FreestyleError);
|
|
8410
8575
|
}
|
|
8411
|
-
interface
|
|
8576
|
+
interface PublicNetworkPermissionsFailed {
|
|
8412
8577
|
message: string;
|
|
8413
8578
|
[k: string]: unknown;
|
|
8414
8579
|
}
|
|
8415
|
-
declare class
|
|
8416
|
-
body:
|
|
8580
|
+
declare class NetworkPermissionsFailedError extends Error {
|
|
8581
|
+
body: PublicNetworkPermissionsFailed & FreestyleError;
|
|
8417
8582
|
static readonly code: string;
|
|
8418
8583
|
static readonly statusCode: number;
|
|
8419
8584
|
static readonly description: string;
|
|
8420
|
-
constructor(body:
|
|
8585
|
+
constructor(body: PublicNetworkPermissionsFailed & FreestyleError);
|
|
8421
8586
|
}
|
|
8422
|
-
interface
|
|
8587
|
+
interface PublicLoggingFailed {
|
|
8423
8588
|
message: string;
|
|
8424
8589
|
[k: string]: unknown;
|
|
8425
8590
|
}
|
|
8426
|
-
declare class
|
|
8427
|
-
body:
|
|
8591
|
+
declare class LoggingFailedError extends Error {
|
|
8592
|
+
body: PublicLoggingFailed & FreestyleError;
|
|
8428
8593
|
static readonly code: string;
|
|
8429
8594
|
static readonly statusCode: number;
|
|
8430
8595
|
static readonly description: string;
|
|
8431
|
-
constructor(body:
|
|
8596
|
+
constructor(body: PublicLoggingFailed & FreestyleError);
|
|
8432
8597
|
}
|
|
8433
|
-
interface
|
|
8434
|
-
|
|
8598
|
+
interface PublicRunNotFound {
|
|
8599
|
+
runId: string;
|
|
8435
8600
|
[k: string]: unknown;
|
|
8436
8601
|
}
|
|
8437
|
-
declare class
|
|
8438
|
-
body:
|
|
8602
|
+
declare class RunNotFoundError extends Error {
|
|
8603
|
+
body: PublicRunNotFound & FreestyleError;
|
|
8439
8604
|
static readonly code: string;
|
|
8440
8605
|
static readonly statusCode: number;
|
|
8441
8606
|
static readonly description: string;
|
|
8442
|
-
constructor(body:
|
|
8607
|
+
constructor(body: PublicRunNotFound & FreestyleError);
|
|
8443
8608
|
}
|
|
8444
|
-
interface
|
|
8609
|
+
interface PublicObservabilityDatabaseError {
|
|
8445
8610
|
message: string;
|
|
8446
8611
|
[k: string]: unknown;
|
|
8447
8612
|
}
|
|
8448
|
-
declare class
|
|
8449
|
-
body:
|
|
8613
|
+
declare class ObservabilityDatabaseErrorError extends Error {
|
|
8614
|
+
body: PublicObservabilityDatabaseError & FreestyleError;
|
|
8450
8615
|
static readonly code: string;
|
|
8451
8616
|
static readonly statusCode: number;
|
|
8452
8617
|
static readonly description: string;
|
|
8453
|
-
constructor(body:
|
|
8618
|
+
constructor(body: PublicObservabilityDatabaseError & FreestyleError);
|
|
8454
8619
|
}
|
|
8455
|
-
interface
|
|
8456
|
-
|
|
8620
|
+
interface PublicObservabilityAccessDenied {
|
|
8621
|
+
deploymentId: string;
|
|
8457
8622
|
[k: string]: unknown;
|
|
8458
8623
|
}
|
|
8459
|
-
declare class
|
|
8460
|
-
body:
|
|
8624
|
+
declare class ObservabilityAccessDeniedError extends Error {
|
|
8625
|
+
body: PublicObservabilityAccessDenied & FreestyleError;
|
|
8461
8626
|
static readonly code: string;
|
|
8462
8627
|
static readonly statusCode: number;
|
|
8463
8628
|
static readonly description: string;
|
|
8464
|
-
constructor(body:
|
|
8629
|
+
constructor(body: PublicObservabilityAccessDenied & FreestyleError);
|
|
8465
8630
|
}
|
|
8466
|
-
interface
|
|
8631
|
+
interface PublicParseLogsFailed {
|
|
8467
8632
|
message: string;
|
|
8468
8633
|
[k: string]: unknown;
|
|
8469
8634
|
}
|
|
8470
|
-
declare class
|
|
8471
|
-
body:
|
|
8635
|
+
declare class ParseLogsFailedError extends Error {
|
|
8636
|
+
body: PublicParseLogsFailed & FreestyleError;
|
|
8472
8637
|
static readonly code: string;
|
|
8473
8638
|
static readonly statusCode: number;
|
|
8474
8639
|
static readonly description: string;
|
|
8475
|
-
constructor(body:
|
|
8640
|
+
constructor(body: PublicParseLogsFailed & FreestyleError);
|
|
8476
8641
|
}
|
|
8477
|
-
interface
|
|
8642
|
+
interface PublicRetrieveLogsFailed {
|
|
8478
8643
|
message: string;
|
|
8479
8644
|
[k: string]: unknown;
|
|
8480
8645
|
}
|
|
8481
|
-
declare class
|
|
8482
|
-
body:
|
|
8646
|
+
declare class RetrieveLogsFailedError extends Error {
|
|
8647
|
+
body: PublicRetrieveLogsFailed & FreestyleError;
|
|
8483
8648
|
static readonly code: string;
|
|
8484
8649
|
static readonly statusCode: number;
|
|
8485
8650
|
static readonly description: string;
|
|
8486
|
-
constructor(body:
|
|
8651
|
+
constructor(body: PublicRetrieveLogsFailed & FreestyleError);
|
|
8487
8652
|
}
|
|
8488
|
-
interface
|
|
8653
|
+
interface PublicInvalidQuery {
|
|
8489
8654
|
message: string;
|
|
8490
8655
|
[k: string]: unknown;
|
|
8491
8656
|
}
|
|
8492
|
-
declare class
|
|
8493
|
-
body:
|
|
8657
|
+
declare class InvalidQueryError extends Error {
|
|
8658
|
+
body: PublicInvalidQuery & FreestyleError;
|
|
8494
8659
|
static readonly code: string;
|
|
8495
8660
|
static readonly statusCode: number;
|
|
8496
8661
|
static readonly description: string;
|
|
8497
|
-
constructor(body:
|
|
8662
|
+
constructor(body: PublicInvalidQuery & FreestyleError);
|
|
8498
8663
|
}
|
|
8499
|
-
interface
|
|
8500
|
-
|
|
8664
|
+
interface PublicLogsNotFound {
|
|
8665
|
+
deploymentId: string;
|
|
8501
8666
|
[k: string]: unknown;
|
|
8502
8667
|
}
|
|
8503
|
-
declare class
|
|
8504
|
-
body:
|
|
8668
|
+
declare class LogsNotFoundError extends Error {
|
|
8669
|
+
body: PublicLogsNotFound & FreestyleError;
|
|
8505
8670
|
static readonly code: string;
|
|
8506
8671
|
static readonly statusCode: number;
|
|
8507
8672
|
static readonly description: string;
|
|
8508
|
-
constructor(body:
|
|
8673
|
+
constructor(body: PublicLogsNotFound & FreestyleError);
|
|
8509
8674
|
}
|
|
8510
|
-
interface
|
|
8511
|
-
|
|
8675
|
+
interface PublicCloudstateInternalError {
|
|
8676
|
+
message: string;
|
|
8512
8677
|
[k: string]: unknown;
|
|
8513
8678
|
}
|
|
8514
|
-
declare class
|
|
8515
|
-
body:
|
|
8679
|
+
declare class CloudstateInternalErrorError extends Error {
|
|
8680
|
+
body: PublicCloudstateInternalError & FreestyleError;
|
|
8516
8681
|
static readonly code: string;
|
|
8517
8682
|
static readonly statusCode: number;
|
|
8518
8683
|
static readonly description: string;
|
|
8519
|
-
constructor(body:
|
|
8684
|
+
constructor(body: PublicCloudstateInternalError & FreestyleError);
|
|
8520
8685
|
}
|
|
8521
|
-
interface
|
|
8686
|
+
interface PublicCloudstateDatabaseError {
|
|
8522
8687
|
message: string;
|
|
8523
8688
|
[k: string]: unknown;
|
|
8524
8689
|
}
|
|
8525
|
-
declare class
|
|
8526
|
-
body:
|
|
8690
|
+
declare class CloudstateDatabaseErrorError extends Error {
|
|
8691
|
+
body: PublicCloudstateDatabaseError & FreestyleError;
|
|
8527
8692
|
static readonly code: string;
|
|
8528
8693
|
static readonly statusCode: number;
|
|
8529
8694
|
static readonly description: string;
|
|
8530
|
-
constructor(body:
|
|
8695
|
+
constructor(body: PublicCloudstateDatabaseError & FreestyleError);
|
|
8531
8696
|
}
|
|
8532
|
-
interface
|
|
8533
|
-
|
|
8697
|
+
interface PublicCloudstateAccessDenied {
|
|
8698
|
+
projectId: string;
|
|
8534
8699
|
[k: string]: unknown;
|
|
8535
8700
|
}
|
|
8536
|
-
declare class
|
|
8537
|
-
body:
|
|
8701
|
+
declare class CloudstateAccessDeniedError extends Error {
|
|
8702
|
+
body: PublicCloudstateAccessDenied & FreestyleError;
|
|
8703
|
+
static readonly code: string;
|
|
8704
|
+
static readonly statusCode: number;
|
|
8705
|
+
static readonly description: string;
|
|
8706
|
+
constructor(body: PublicCloudstateAccessDenied & FreestyleError);
|
|
8707
|
+
}
|
|
8708
|
+
interface PublicRestoreFailed {
|
|
8709
|
+
message: string;
|
|
8710
|
+
[k: string]: unknown;
|
|
8711
|
+
}
|
|
8712
|
+
declare class RestoreFailedError extends Error {
|
|
8713
|
+
body: PublicRestoreFailed & FreestyleError;
|
|
8538
8714
|
static readonly code: string;
|
|
8539
8715
|
static readonly statusCode: number;
|
|
8540
8716
|
static readonly description: string;
|
|
8541
|
-
constructor(body:
|
|
8717
|
+
constructor(body: PublicRestoreFailed & FreestyleError);
|
|
8542
8718
|
}
|
|
8543
|
-
interface
|
|
8544
|
-
|
|
8719
|
+
interface PublicCreateBackupFailed {
|
|
8720
|
+
message: string;
|
|
8545
8721
|
[k: string]: unknown;
|
|
8546
8722
|
}
|
|
8547
|
-
declare class
|
|
8548
|
-
body:
|
|
8723
|
+
declare class CreateBackupFailedError extends Error {
|
|
8724
|
+
body: PublicCreateBackupFailed & FreestyleError;
|
|
8549
8725
|
static readonly code: string;
|
|
8550
8726
|
static readonly statusCode: number;
|
|
8551
8727
|
static readonly description: string;
|
|
8552
|
-
constructor(body:
|
|
8728
|
+
constructor(body: PublicCreateBackupFailed & FreestyleError);
|
|
8553
8729
|
}
|
|
8554
|
-
interface
|
|
8730
|
+
interface PublicBackupFailed {
|
|
8555
8731
|
message: string;
|
|
8556
8732
|
[k: string]: unknown;
|
|
8557
8733
|
}
|
|
8558
|
-
declare class
|
|
8559
|
-
body:
|
|
8734
|
+
declare class BackupFailedError extends Error {
|
|
8735
|
+
body: PublicBackupFailed & FreestyleError;
|
|
8560
8736
|
static readonly code: string;
|
|
8561
8737
|
static readonly statusCode: number;
|
|
8562
8738
|
static readonly description: string;
|
|
8563
|
-
constructor(body:
|
|
8739
|
+
constructor(body: PublicBackupFailed & FreestyleError);
|
|
8564
8740
|
}
|
|
8565
|
-
interface
|
|
8741
|
+
interface PublicDeploymentFailed {
|
|
8566
8742
|
message: string;
|
|
8567
8743
|
[k: string]: unknown;
|
|
8568
8744
|
}
|
|
8569
|
-
declare class
|
|
8570
|
-
body:
|
|
8745
|
+
declare class DeploymentFailedError extends Error {
|
|
8746
|
+
body: PublicDeploymentFailed & FreestyleError;
|
|
8571
8747
|
static readonly code: string;
|
|
8572
8748
|
static readonly statusCode: number;
|
|
8573
8749
|
static readonly description: string;
|
|
8574
|
-
constructor(body:
|
|
8750
|
+
constructor(body: PublicDeploymentFailed & FreestyleError);
|
|
8575
8751
|
}
|
|
8576
|
-
interface
|
|
8577
|
-
|
|
8752
|
+
interface PublicInvalidDeploymentRequest {
|
|
8753
|
+
message: string;
|
|
8578
8754
|
[k: string]: unknown;
|
|
8579
8755
|
}
|
|
8580
|
-
declare class
|
|
8581
|
-
body:
|
|
8756
|
+
declare class InvalidDeploymentRequestError extends Error {
|
|
8757
|
+
body: PublicInvalidDeploymentRequest & FreestyleError;
|
|
8582
8758
|
static readonly code: string;
|
|
8583
8759
|
static readonly statusCode: number;
|
|
8584
8760
|
static readonly description: string;
|
|
8585
|
-
constructor(body:
|
|
8761
|
+
constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
|
|
8586
8762
|
}
|
|
8587
|
-
interface
|
|
8588
|
-
|
|
8763
|
+
interface PublicProjectNotFound {
|
|
8764
|
+
projectId: string;
|
|
8589
8765
|
[k: string]: unknown;
|
|
8590
8766
|
}
|
|
8591
|
-
declare class
|
|
8592
|
-
body:
|
|
8767
|
+
declare class ProjectNotFoundError extends Error {
|
|
8768
|
+
body: PublicProjectNotFound & FreestyleError;
|
|
8593
8769
|
static readonly code: string;
|
|
8594
8770
|
static readonly statusCode: number;
|
|
8595
8771
|
static readonly description: string;
|
|
8596
|
-
constructor(body:
|
|
8772
|
+
constructor(body: PublicProjectNotFound & FreestyleError);
|
|
8597
8773
|
}
|
|
8598
8774
|
declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
8599
8775
|
GIT_ERROR: typeof GitErrorError;
|
|
8600
|
-
INTERNAL_ERROR: typeof InternalErrorError;
|
|
8601
|
-
DOCKER_IMPORT_BAD_REQUEST: typeof DockerImportBadRequestError;
|
|
8602
8776
|
VM_OPERATION_DENIED_DURING_TRANSACTION: typeof VmOperationDeniedDuringTransactionError;
|
|
8603
8777
|
VM_TRANSACTION_ID_MISMATCH: typeof VmTransactionIdMismatchError;
|
|
8604
8778
|
VM_NOT_IN_TRANSACTION: typeof VmNotInTransactionError;
|
|
8605
|
-
FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
|
|
8606
|
-
CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
|
|
8607
8779
|
SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
|
|
8780
|
+
KERNEL_PANIC: typeof KernelPanicError;
|
|
8608
8781
|
VM_DELETED: typeof VmDeletedError;
|
|
8609
8782
|
REQWEST: typeof ReqwestError;
|
|
8610
8783
|
FIRECRACKER_PID_NOT_FOUND: typeof FirecrackerPidNotFoundError;
|
|
8611
8784
|
FIRECRACKER_API_SOCKET_NOT_FOUND: typeof FirecrackerApiSocketNotFoundError;
|
|
8785
|
+
INVALID_SNAPSHOT_ID: typeof InvalidSnapshotIdError;
|
|
8612
8786
|
VM_START_TIMEOUT: typeof VmStartTimeoutError;
|
|
8613
8787
|
VM_EXIT_DURING_START: typeof VmExitDuringStartError;
|
|
8788
|
+
VM_ACCESS_DENIED: typeof VmAccessDeniedError;
|
|
8614
8789
|
STD_IO: typeof StdIoError;
|
|
8615
8790
|
VM_CREATE_TMUX_SESSION: typeof VmCreateTmuxSessionError;
|
|
8616
8791
|
VM_SUBNET_NOT_FOUND: typeof VmSubnetNotFoundError;
|
|
8792
|
+
INTERNAL_ERROR: typeof InternalErrorError;
|
|
8793
|
+
FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
|
|
8794
|
+
CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
|
|
8617
8795
|
FILE_NOT_FOUND: typeof FileNotFoundError;
|
|
8618
8796
|
FILES_BAD_REQUEST: typeof FilesBadRequestError;
|
|
8797
|
+
DOCKER_IMPORT_BAD_REQUEST: typeof DockerImportBadRequestError;
|
|
8798
|
+
VM_MUST_BE_STOPPED: typeof VmMustBeStoppedError;
|
|
8799
|
+
ALREADY_HAS_BASE: typeof AlreadyHasBaseError;
|
|
8800
|
+
NOT_FOUND: typeof NotFoundError;
|
|
8619
8801
|
VM_NOT_FOUND_IN_FS: typeof VmNotFoundInFsError;
|
|
8620
8802
|
VM_NOT_RUNNING: typeof VmNotRunningError;
|
|
8621
8803
|
VM_NOT_FOUND: typeof VmNotFoundError;
|
|
8622
8804
|
INTERNAL_FORK_VM_NOT_FOUND: typeof InternalForkVmNotFoundError;
|
|
8623
8805
|
BAD_REQUEST: typeof BadRequestError;
|
|
8624
8806
|
INTERNAL_VM_NOT_FOUND: typeof InternalVmNotFoundError;
|
|
8625
|
-
VM_MUST_BE_STOPPED: typeof VmMustBeStoppedError;
|
|
8626
|
-
ALREADY_HAS_BASE: typeof AlreadyHasBaseError;
|
|
8627
|
-
NOT_FOUND: typeof NotFoundError;
|
|
8628
8807
|
CREATE_VM_BAD_REQUEST: typeof CreateVmBadRequestError;
|
|
8629
8808
|
USER_NOT_FOUND: typeof UserNotFoundError;
|
|
8630
8809
|
USER_ALREADY_EXISTS: typeof UserAlreadyExistsError;
|
|
@@ -8668,104 +8847,38 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8668
8847
|
INVALID_PARAMETERS: typeof InvalidParametersError;
|
|
8669
8848
|
MAX_USES_EXCEEDED: typeof MaxUsesExceededError;
|
|
8670
8849
|
EXPIRED: typeof ExpiredError;
|
|
8850
|
+
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
8851
|
+
TREE_NOT_FOUND: typeof TreeNotFoundError;
|
|
8852
|
+
BRANCH_NOT_FOUND: typeof BranchNotFoundError;
|
|
8671
8853
|
FORBIDDEN: typeof ForbiddenError;
|
|
8672
8854
|
UNAUTHORIZED: typeof UnauthorizedError;
|
|
8673
|
-
INVALID_SERVICE: typeof InvalidServiceError;
|
|
8674
|
-
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
8675
|
-
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
8676
|
-
CONFLICT: typeof ConflictError;
|
|
8677
|
-
BRANCH_NOT_FOUND: typeof BranchNotFoundError;
|
|
8678
|
-
SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
|
|
8679
|
-
SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
|
|
8680
|
-
SOURCE_NOT_FOUND: typeof SourceNotFoundError;
|
|
8681
|
-
IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
|
|
8682
8855
|
REPO_ALREADY_EXISTS: typeof RepoAlreadyExistsError;
|
|
8683
|
-
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
8684
|
-
REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
|
|
8685
|
-
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
8686
|
-
SEND_ERROR: typeof SendErrorError;
|
|
8687
8856
|
GIT_HUB_SYNC_CONFLICT: typeof GitHubSyncConflictError;
|
|
8688
8857
|
INVALID_OBJECT_ID: typeof InvalidObjectIdError;
|
|
8689
8858
|
COMMIT_NOT_FOUND: typeof CommitNotFoundError;
|
|
8690
|
-
|
|
8691
|
-
|
|
8859
|
+
PACKFILE: typeof PackfileError;
|
|
8860
|
+
SEND_ERROR: typeof SendErrorError;
|
|
8861
|
+
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
8692
8862
|
INVALID_RANGE: typeof InvalidRangeError;
|
|
8693
8863
|
OFFSET_WITH_SELECTOR: typeof OffsetWithSelectorError;
|
|
8694
8864
|
COMMIT_NOT_IN_BRANCH: typeof CommitNotInBranchError;
|
|
8695
8865
|
BLOB_NOT_FOUND: typeof BlobNotFoundError;
|
|
8866
|
+
INVALID_SERVICE: typeof InvalidServiceError;
|
|
8867
|
+
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
8868
|
+
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
8869
|
+
REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
|
|
8696
8870
|
AMBIGUOUS: typeof AmbiguousError;
|
|
8697
8871
|
INVALID: typeof InvalidError;
|
|
8698
|
-
|
|
8872
|
+
INVALID_ACCOUNT_ID: typeof InvalidAccountIdError;
|
|
8873
|
+
SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
|
|
8874
|
+
SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
|
|
8875
|
+
SOURCE_NOT_FOUND: typeof SourceNotFoundError;
|
|
8876
|
+
IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
|
|
8877
|
+
CONFLICT: typeof ConflictError;
|
|
8878
|
+
INVALID_REVISION: typeof InvalidRevisionError;
|
|
8699
8879
|
DATABASE_ERROR: typeof DatabaseErrorError;
|
|
8700
|
-
EMPTY_TAG: typeof EmptyTagError;
|
|
8701
|
-
RESIZE_FAILED: typeof ResizeFailedError;
|
|
8702
|
-
INTERNAL_RESIZE_VM_NOT_FOUND: typeof InternalResizeVmNotFoundError;
|
|
8703
|
-
DOMAIN_OWNERSHIP_VERIFICATION_FAILED: typeof DomainOwnershipVerificationFailedError;
|
|
8704
|
-
ERROR_DELETING_RECORD: typeof ErrorDeletingRecordError;
|
|
8705
|
-
RECORD_OWNERSHIP_ERROR: typeof RecordOwnershipErrorError;
|
|
8706
|
-
ERROR_CREATING_RECORD: typeof ErrorCreatingRecordError;
|
|
8707
|
-
DOMAIN_OWNERSHIP_ERROR: typeof DomainOwnershipErrorError;
|
|
8708
|
-
BROWSER_OPERATION_FAILED: typeof BrowserOperationFailedError;
|
|
8709
|
-
WATCH_FILES_FAILED: typeof WatchFilesFailedError;
|
|
8710
|
-
LOGS_FAILED: typeof LogsFailedError;
|
|
8711
|
-
STATUS_FAILED: typeof StatusFailedError;
|
|
8712
|
-
RESTART_FAILED: typeof RestartFailedError;
|
|
8713
|
-
SHUTDOWN_FAILED: typeof ShutdownFailedError;
|
|
8714
|
-
COMMIT_FAILED: typeof CommitFailedError;
|
|
8715
|
-
WRITE_FILE_FAILED: typeof WriteFileFailedError;
|
|
8716
|
-
READ_FILE_FAILED: typeof ReadFileFailedError;
|
|
8717
|
-
EXECUTION_FAILED: typeof ExecutionFailedError;
|
|
8718
|
-
REQUEST_FAILED: typeof RequestFailedError;
|
|
8719
|
-
DEV_SERVER_FILE_NOT_FOUND: typeof DevServerFileNotFoundError;
|
|
8720
|
-
DEV_SERVER_INVALID_REQUEST: typeof DevServerInvalidRequestError;
|
|
8721
8880
|
DEV_SERVER_NOT_FOUND: typeof DevServerNotFoundError;
|
|
8722
|
-
|
|
8723
|
-
BRANCH_NAME_EMPTY: typeof BranchNameEmptyError;
|
|
8724
|
-
PERMISSION_ALREADY_EXISTS: typeof PermissionAlreadyExistsError;
|
|
8725
|
-
LIST_TOKENS_FAILED: typeof ListTokensFailedError;
|
|
8726
|
-
REVOKE_TOKEN_FAILED: typeof RevokeTokenFailedError;
|
|
8727
|
-
CREATE_TOKEN_FAILED: typeof CreateTokenFailedError;
|
|
8728
|
-
LIST_PERMISSIONS_FAILED: typeof ListPermissionsFailedError;
|
|
8729
|
-
GET_PERMISSION_FAILED: typeof GetPermissionFailedError;
|
|
8730
|
-
UPDATE_PERMISSION_FAILED: typeof UpdatePermissionFailedError;
|
|
8731
|
-
REVOKE_PERMISSION_FAILED: typeof RevokePermissionFailedError;
|
|
8732
|
-
GRANT_PERMISSION_FAILED: typeof GrantPermissionFailedError;
|
|
8733
|
-
LIST_IDENTITIES_FAILED: typeof ListIdentitiesFailedError;
|
|
8734
|
-
DELETE_IDENTITY_FAILED: typeof DeleteIdentityFailedError;
|
|
8735
|
-
CREATE_IDENTITY_FAILED: typeof CreateIdentityFailedError;
|
|
8736
|
-
VM_PERMISSION_NOT_FOUND: typeof VmPermissionNotFoundError;
|
|
8737
|
-
PERMISSION_NOT_FOUND: typeof PermissionNotFoundError;
|
|
8738
|
-
VM_ACCESS_DENIED: typeof VmAccessDeniedError;
|
|
8739
|
-
GIT_REPOSITORY_ACCESS_DENIED: typeof GitRepositoryAccessDeniedError;
|
|
8740
|
-
GIT_REPOSITORY_NOT_FOUND: typeof GitRepositoryNotFoundError;
|
|
8741
|
-
CANNOT_DELETE_MANAGED_IDENTITY: typeof CannotDeleteManagedIdentityError;
|
|
8742
|
-
CANNOT_MODIFY_MANAGED_IDENTITY: typeof CannotModifyManagedIdentityError;
|
|
8743
|
-
IDENTITY_ACCESS_DENIED: typeof IdentityAccessDeniedError;
|
|
8744
|
-
IDENTITY_NOT_FOUND: typeof IdentityNotFoundError;
|
|
8745
|
-
EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
|
|
8746
|
-
EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
|
|
8747
|
-
LIST_RUNS_FAILED: typeof ListRunsFailedError;
|
|
8748
|
-
EXECUTION_ERROR: typeof ExecutionErrorError;
|
|
8749
|
-
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
8750
|
-
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
8751
|
-
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
8752
|
-
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
8753
|
-
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
8754
|
-
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
8755
|
-
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
8756
|
-
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
8757
|
-
LOGGING_FAILED: typeof LoggingFailedError;
|
|
8758
|
-
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
8759
|
-
CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
|
|
8760
|
-
CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
|
|
8761
|
-
CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
|
|
8762
|
-
RESTORE_FAILED: typeof RestoreFailedError;
|
|
8763
|
-
CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
|
|
8764
|
-
BACKUP_FAILED: typeof BackupFailedError;
|
|
8765
|
-
DEPLOYMENT_FAILED: typeof DeploymentFailedError;
|
|
8766
|
-
INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
|
|
8767
|
-
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
8768
|
-
UNAUTHORIZED_ERROR: typeof UnauthorizedErrorError;
|
|
8881
|
+
EMPTY_TAG: typeof EmptyTagError;
|
|
8769
8882
|
BUILD_FAILED: typeof BuildFailedError;
|
|
8770
8883
|
SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
|
|
8771
8884
|
LOCKFILE_ERROR: typeof LockfileErrorError;
|
|
@@ -8778,12 +8891,8 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8778
8891
|
INVALID_DOMAINS: typeof InvalidDomainsError;
|
|
8779
8892
|
WEB_DEPLOYMENT_BAD_REQUEST: typeof WebDeploymentBadRequestError;
|
|
8780
8893
|
DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
|
|
8781
|
-
|
|
8782
|
-
|
|
8783
|
-
PARSE_LOGS_FAILED: typeof ParseLogsFailedError;
|
|
8784
|
-
RETRIEVE_LOGS_FAILED: typeof RetrieveLogsFailedError;
|
|
8785
|
-
INVALID_QUERY: typeof InvalidQueryError;
|
|
8786
|
-
LOGS_NOT_FOUND: typeof LogsNotFoundError;
|
|
8894
|
+
RESIZE_FAILED: typeof ResizeFailedError;
|
|
8895
|
+
INTERNAL_RESIZE_VM_NOT_FOUND: typeof InternalResizeVmNotFoundError;
|
|
8787
8896
|
TRIGGER_ERROR: typeof TriggerErrorError;
|
|
8788
8897
|
TOKEN_ERROR: typeof TokenErrorError;
|
|
8789
8898
|
PERMISSION_ERROR: typeof PermissionErrorError;
|
|
@@ -8820,6 +8929,76 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8820
8929
|
FAILED_REMOVE_DOMAIN_MAPPING: typeof FailedRemoveDomainMappingError;
|
|
8821
8930
|
FAILED_PERMISSIONS_CHECK: typeof FailedPermissionsCheckError;
|
|
8822
8931
|
FAILED_TO_CHECK_DOMAIN_MAPPING_PERMISSIONS: typeof FailedToCheckDomainMappingPermissionsError;
|
|
8932
|
+
BRANCH_NAME_EMPTY: typeof BranchNameEmptyError;
|
|
8933
|
+
ANYHOW: typeof AnyhowError;
|
|
8934
|
+
PERMISSION_ALREADY_EXISTS: typeof PermissionAlreadyExistsError;
|
|
8935
|
+
LIST_TOKENS_FAILED: typeof ListTokensFailedError;
|
|
8936
|
+
REVOKE_TOKEN_FAILED: typeof RevokeTokenFailedError;
|
|
8937
|
+
CREATE_TOKEN_FAILED: typeof CreateTokenFailedError;
|
|
8938
|
+
LIST_PERMISSIONS_FAILED: typeof ListPermissionsFailedError;
|
|
8939
|
+
GET_PERMISSION_FAILED: typeof GetPermissionFailedError;
|
|
8940
|
+
UPDATE_PERMISSION_FAILED: typeof UpdatePermissionFailedError;
|
|
8941
|
+
REVOKE_PERMISSION_FAILED: typeof RevokePermissionFailedError;
|
|
8942
|
+
GRANT_PERMISSION_FAILED: typeof GrantPermissionFailedError;
|
|
8943
|
+
LIST_IDENTITIES_FAILED: typeof ListIdentitiesFailedError;
|
|
8944
|
+
DELETE_IDENTITY_FAILED: typeof DeleteIdentityFailedError;
|
|
8945
|
+
CREATE_IDENTITY_FAILED: typeof CreateIdentityFailedError;
|
|
8946
|
+
VM_PERMISSION_NOT_FOUND: typeof VmPermissionNotFoundError;
|
|
8947
|
+
PERMISSION_NOT_FOUND: typeof PermissionNotFoundError;
|
|
8948
|
+
GIT_REPOSITORY_ACCESS_DENIED: typeof GitRepositoryAccessDeniedError;
|
|
8949
|
+
GIT_REPOSITORY_NOT_FOUND: typeof GitRepositoryNotFoundError;
|
|
8950
|
+
CANNOT_DELETE_MANAGED_IDENTITY: typeof CannotDeleteManagedIdentityError;
|
|
8951
|
+
CANNOT_MODIFY_MANAGED_IDENTITY: typeof CannotModifyManagedIdentityError;
|
|
8952
|
+
IDENTITY_ACCESS_DENIED: typeof IdentityAccessDeniedError;
|
|
8953
|
+
IDENTITY_NOT_FOUND: typeof IdentityNotFoundError;
|
|
8954
|
+
DOMAIN_OWNERSHIP_VERIFICATION_FAILED: typeof DomainOwnershipVerificationFailedError;
|
|
8955
|
+
ERROR_DELETING_RECORD: typeof ErrorDeletingRecordError;
|
|
8956
|
+
RECORD_OWNERSHIP_ERROR: typeof RecordOwnershipErrorError;
|
|
8957
|
+
ERROR_CREATING_RECORD: typeof ErrorCreatingRecordError;
|
|
8958
|
+
DOMAIN_OWNERSHIP_ERROR: typeof DomainOwnershipErrorError;
|
|
8959
|
+
BROWSER_OPERATION_FAILED: typeof BrowserOperationFailedError;
|
|
8960
|
+
WATCH_FILES_FAILED: typeof WatchFilesFailedError;
|
|
8961
|
+
LOGS_FAILED: typeof LogsFailedError;
|
|
8962
|
+
STATUS_FAILED: typeof StatusFailedError;
|
|
8963
|
+
RESTART_FAILED: typeof RestartFailedError;
|
|
8964
|
+
SHUTDOWN_FAILED: typeof ShutdownFailedError;
|
|
8965
|
+
COMMIT_FAILED: typeof CommitFailedError;
|
|
8966
|
+
WRITE_FILE_FAILED: typeof WriteFileFailedError;
|
|
8967
|
+
READ_FILE_FAILED: typeof ReadFileFailedError;
|
|
8968
|
+
EXECUTION_FAILED: typeof ExecutionFailedError;
|
|
8969
|
+
REQUEST_FAILED: typeof RequestFailedError;
|
|
8970
|
+
DEV_SERVER_FILE_NOT_FOUND: typeof DevServerFileNotFoundError;
|
|
8971
|
+
DEV_SERVER_INVALID_REQUEST: typeof DevServerInvalidRequestError;
|
|
8972
|
+
UNAUTHORIZED_ERROR: typeof UnauthorizedErrorError;
|
|
8973
|
+
EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
|
|
8974
|
+
EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
|
|
8975
|
+
LIST_RUNS_FAILED: typeof ListRunsFailedError;
|
|
8976
|
+
EXECUTION_ERROR: typeof ExecutionErrorError;
|
|
8977
|
+
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
8978
|
+
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
8979
|
+
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
8980
|
+
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
8981
|
+
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
8982
|
+
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
8983
|
+
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
8984
|
+
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
8985
|
+
LOGGING_FAILED: typeof LoggingFailedError;
|
|
8986
|
+
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
8987
|
+
OBSERVABILITY_DATABASE_ERROR: typeof ObservabilityDatabaseErrorError;
|
|
8988
|
+
OBSERVABILITY_ACCESS_DENIED: typeof ObservabilityAccessDeniedError;
|
|
8989
|
+
PARSE_LOGS_FAILED: typeof ParseLogsFailedError;
|
|
8990
|
+
RETRIEVE_LOGS_FAILED: typeof RetrieveLogsFailedError;
|
|
8991
|
+
INVALID_QUERY: typeof InvalidQueryError;
|
|
8992
|
+
LOGS_NOT_FOUND: typeof LogsNotFoundError;
|
|
8993
|
+
CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
|
|
8994
|
+
CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
|
|
8995
|
+
CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
|
|
8996
|
+
RESTORE_FAILED: typeof RestoreFailedError;
|
|
8997
|
+
CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
|
|
8998
|
+
BACKUP_FAILED: typeof BackupFailedError;
|
|
8999
|
+
DEPLOYMENT_FAILED: typeof DeploymentFailedError;
|
|
9000
|
+
INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
|
|
9001
|
+
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
8823
9002
|
};
|
|
8824
9003
|
|
|
8825
9004
|
type errors_AfterArrayContainsEmptyError = AfterArrayContainsEmptyError;
|
|
@@ -9033,6 +9212,8 @@ type errors_InternalResizeVmNotFoundError = InternalResizeVmNotFoundError;
|
|
|
9033
9212
|
declare const errors_InternalResizeVmNotFoundError: typeof InternalResizeVmNotFoundError;
|
|
9034
9213
|
type errors_InternalVmNotFoundError = InternalVmNotFoundError;
|
|
9035
9214
|
declare const errors_InternalVmNotFoundError: typeof InternalVmNotFoundError;
|
|
9215
|
+
type errors_InvalidAccountIdError = InvalidAccountIdError;
|
|
9216
|
+
declare const errors_InvalidAccountIdError: typeof InvalidAccountIdError;
|
|
9036
9217
|
type errors_InvalidDeploymentRequestError = InvalidDeploymentRequestError;
|
|
9037
9218
|
declare const errors_InvalidDeploymentRequestError: typeof InvalidDeploymentRequestError;
|
|
9038
9219
|
type errors_InvalidDomainError = InvalidDomainError;
|
|
@@ -9058,7 +9239,11 @@ type errors_InvalidServiceError = InvalidServiceError;
|
|
|
9058
9239
|
declare const errors_InvalidServiceError: typeof InvalidServiceError;
|
|
9059
9240
|
type errors_InvalidSignatureError = InvalidSignatureError;
|
|
9060
9241
|
declare const errors_InvalidSignatureError: typeof InvalidSignatureError;
|
|
9242
|
+
type errors_InvalidSnapshotIdError = InvalidSnapshotIdError;
|
|
9243
|
+
declare const errors_InvalidSnapshotIdError: typeof InvalidSnapshotIdError;
|
|
9061
9244
|
type errors_JavascriptLog = JavascriptLog;
|
|
9245
|
+
type errors_KernelPanicError = KernelPanicError;
|
|
9246
|
+
declare const errors_KernelPanicError: typeof KernelPanicError;
|
|
9062
9247
|
type errors_LfsTransferAdapter = LfsTransferAdapter;
|
|
9063
9248
|
type errors_ListIdentitiesFailedError = ListIdentitiesFailedError;
|
|
9064
9249
|
declare const errors_ListIdentitiesFailedError: typeof ListIdentitiesFailedError;
|
|
@@ -9148,7 +9333,6 @@ type errors_PublicDeleteRepositoryFailed = PublicDeleteRepositoryFailed;
|
|
|
9148
9333
|
type errors_PublicDeploymentFailed = PublicDeploymentFailed;
|
|
9149
9334
|
type errors_PublicDevServerFileNotFound = PublicDevServerFileNotFound;
|
|
9150
9335
|
type errors_PublicDevServerInvalidRequest = PublicDevServerInvalidRequest;
|
|
9151
|
-
type errors_PublicDevServerNotFound = PublicDevServerNotFound;
|
|
9152
9336
|
type errors_PublicDirectoryCreationFailed = PublicDirectoryCreationFailed;
|
|
9153
9337
|
type errors_PublicDockerImportBadRequest = PublicDockerImportBadRequest;
|
|
9154
9338
|
type errors_PublicDomainAlreadyExists = PublicDomainAlreadyExists;
|
|
@@ -9189,6 +9373,7 @@ type errors_PublicImportSubdirNotFound = PublicImportSubdirNotFound;
|
|
|
9189
9373
|
type errors_PublicInternalForkVmNotFound = PublicInternalForkVmNotFound;
|
|
9190
9374
|
type errors_PublicInternalVmNotFound = PublicInternalVmNotFound;
|
|
9191
9375
|
type errors_PublicInvalid = PublicInvalid;
|
|
9376
|
+
type errors_PublicInvalidAccountId = PublicInvalidAccountId;
|
|
9192
9377
|
type errors_PublicInvalidDeploymentRequest = PublicInvalidDeploymentRequest;
|
|
9193
9378
|
type errors_PublicInvalidDomain = PublicInvalidDomain;
|
|
9194
9379
|
type errors_PublicInvalidDomains = PublicInvalidDomains;
|
|
@@ -9221,7 +9406,6 @@ type errors_PublicProjectNotFound = PublicProjectNotFound;
|
|
|
9221
9406
|
type errors_PublicReadFileFailed = PublicReadFileFailed;
|
|
9222
9407
|
type errors_PublicRecordOwnershipError = PublicRecordOwnershipError;
|
|
9223
9408
|
type errors_PublicReferenceNotFound = PublicReferenceNotFound;
|
|
9224
|
-
type errors_PublicRepoAlreadyExists = PublicRepoAlreadyExists;
|
|
9225
9409
|
type errors_PublicRepositoryNotFound = PublicRepositoryNotFound;
|
|
9226
9410
|
type errors_PublicRequestFailed = PublicRequestFailed;
|
|
9227
9411
|
type errors_PublicResizeFailed = PublicResizeFailed;
|
|
@@ -9414,8 +9598,8 @@ type errors_WriteScriptFailedError = WriteScriptFailedError;
|
|
|
9414
9598
|
declare const errors_WriteScriptFailedError: typeof WriteScriptFailedError;
|
|
9415
9599
|
declare const errors_errorFromJSON: typeof errorFromJSON;
|
|
9416
9600
|
declare namespace errors {
|
|
9417
|
-
export { errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AlreadyHasBaseError as AlreadyHasBaseError, errors_AmbiguousError as AmbiguousError, errors_AnyhowError as AnyhowError, errors_BackupFailedError as BackupFailedError, errors_BadRequestError as BadRequestError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchNameEmptyError as BranchNameEmptyError, errors_BranchNotFoundError as BranchNotFoundError, errors_BrowserOperationFailedError as BrowserOperationFailedError, errors_BuildFailedError as BuildFailedError, errors_CannotDeleteManagedIdentityError as CannotDeleteManagedIdentityError, errors_CannotModifyManagedIdentityError as CannotModifyManagedIdentityError, errors_CertificateProvisioningErrorError as CertificateProvisioningErrorError, errors_CloudstateAccessDeniedError as CloudstateAccessDeniedError, errors_CloudstateDatabaseErrorError as CloudstateDatabaseErrorError, errors_CloudstateInternalErrorError as CloudstateInternalErrorError, errors_CommitFailedError as CommitFailedError, errors_CommitNotFoundError as CommitNotFoundError, errors_CommitNotInBranchError as CommitNotInBranchError, errors_ConflictError as ConflictError, errors_ConnectionFailedError as ConnectionFailedError, errors_ContentNotFoundError as ContentNotFoundError, errors_CreateBackupFailedError as CreateBackupFailedError, errors_CreateIdentityFailedError as CreateIdentityFailedError, errors_CreateRepositoryFailedError as CreateRepositoryFailedError, errors_CreateSnapshotBadRequestError as CreateSnapshotBadRequestError, errors_CreateTokenFailedError as CreateTokenFailedError, errors_CreateVmBadRequestError as CreateVmBadRequestError, errors_DatabaseErrorError as DatabaseErrorError, errors_DeleteIdentityFailedError as DeleteIdentityFailedError, errors_DeleteRepositoryFailedError as DeleteRepositoryFailedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DevServerFileNotFoundError as DevServerFileNotFoundError, errors_DevServerInvalidRequestError as DevServerInvalidRequestError, errors_DevServerNotFoundError as DevServerNotFoundError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerImportBadRequestError as DockerImportBadRequestError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipVerificationFailedError as DomainOwnershipVerificationFailedError, errors_DownloadFailedError as DownloadFailedError, errors_DuplicateGroupNameError as DuplicateGroupNameError, errors_DuplicateUserNameError as DuplicateUserNameError, errors_EmptyTagError as EmptyTagError, errors_EntrypointNotFoundError as EntrypointNotFoundError, errors_EnvKeyContainsEqualsError as EnvKeyContainsEqualsError, errors_EnvKeyEmptyError as EnvKeyEmptyError, errors_ErrorCreatingRecordError as ErrorCreatingRecordError, errors_ErrorDeletingRecordError as ErrorDeletingRecordError, errors_ExecEmptyError as ExecEmptyError, errors_ExecuteAccessDeniedError as ExecuteAccessDeniedError, errors_ExecuteInternalErrorError as ExecuteInternalErrorError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExecutionFailedError as ExecutionFailedError, errors_ExpectedServiceError as ExpectedServiceError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedPermissionsCheckError as FailedPermissionsCheckError, errors_FailedRemoveDomainMappingError as FailedRemoveDomainMappingError, errors_FailedToCheckDomainMappingPermissionsError as FailedToCheckDomainMappingPermissionsError, errors_FailedToCheckPermissionsError as FailedToCheckPermissionsError, errors_FailedToCreateVerificationCodeError as FailedToCreateVerificationCodeError, errors_FailedToDeleteVerificationError as FailedToDeleteVerificationError, errors_FailedToInsertDomainMappingError as FailedToInsertDomainMappingError, errors_FailedToInsertOwnershipError as FailedToInsertOwnershipError, errors_FailedToListDomainsError as FailedToListDomainsError, errors_FailedToListVerificationsError as FailedToListVerificationsError, errors_FailedToProvisionCertificateError as FailedToProvisionCertificateError, errors_FailedToVerifyDomainError as FailedToVerifyDomainError, errors_FileNotFoundError as FileNotFoundError, errors_FilesBadRequestError as FilesBadRequestError, errors_FirecrackerApiSocketNotFoundError as FirecrackerApiSocketNotFoundError, errors_FirecrackerPidNotFoundError as FirecrackerPidNotFoundError, errors_ForbiddenError as ForbiddenError, errors_ForkVmNotFoundError as ForkVmNotFoundError, errors_GetContentFailedError as GetContentFailedError, errors_GetPermissionFailedError as GetPermissionFailedError, errors_GetRepositoryInfoFailedError as GetRepositoryInfoFailedError, errors_GitErrorError as GitErrorError, errors_GitHubSyncConflictError as GitHubSyncConflictError, errors_GitHubSyncFailedError as GitHubSyncFailedError, errors_GitInvalidRequestError as GitInvalidRequestError, errors_GitRepositoryAccessDeniedError as GitRepositoryAccessDeniedError, errors_GitRepositoryNotFoundError as GitRepositoryNotFoundError, errors_GitServerErrorError as GitServerErrorError, errors_GrantPermissionFailedError as GrantPermissionFailedError, errors_GroupAlreadyExistsError as GroupAlreadyExistsError, errors_GroupEmptyError as GroupEmptyError, errors_GroupNameEmptyError as GroupNameEmptyError, errors_GroupNameInvalidCharsError as GroupNameInvalidCharsError, errors_GroupNameReservedError as GroupNameReservedError, errors_GroupNameTooLongError as GroupNameTooLongError, errors_GroupNotFoundError as GroupNotFoundError, errors_IdentityAccessDeniedError as IdentityAccessDeniedError, errors_IdentityErrorError as IdentityErrorError, errors_IdentityNotFoundError as IdentityNotFoundError, errors_ImportSubdirNotFoundError as ImportSubdirNotFoundError, errors_InternalError as InternalError, errors_InternalErrorError as InternalErrorError, errors_InternalForkVmNotFoundError as InternalForkVmNotFoundError, errors_InternalResizeVmNotFoundError as InternalResizeVmNotFoundError, errors_InternalVmNotFoundError as InternalVmNotFoundError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidError as InvalidError, errors_InvalidObjectIdError as InvalidObjectIdError, errors_InvalidParametersError as InvalidParametersError, errors_InvalidQueryError as InvalidQueryError, errors_InvalidRangeError as InvalidRangeError, errors_InvalidRequestError as InvalidRequestError, errors_InvalidRevisionError as InvalidRevisionError, errors_InvalidServiceError as InvalidServiceError, errors_InvalidSignatureError as InvalidSignatureError, errors_ListIdentitiesFailedError as ListIdentitiesFailedError, errors_ListPermissionsFailedError as ListPermissionsFailedError, errors_ListRepositoriesFailedError as ListRepositoriesFailedError, errors_ListRunsFailedError as ListRunsFailedError, errors_ListTokensFailedError as ListTokensFailedError, errors_LockGenerationFailedError as LockGenerationFailedError, errors_LockfileErrorError as LockfileErrorError, errors_LoggingFailedError as LoggingFailedError, errors_LogsFailedError as LogsFailedError, errors_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDomainOwnershipError as NoDomainOwnershipError, errors_NoEntrypointFoundError as NoEntrypointFoundError, errors_NodeModulesDownloadFailedError as NodeModulesDownloadFailedError, errors_NodeModulesInstallFailedError as NodeModulesInstallFailedError, errors_NotFoundError as NotFoundError, errors_ObservabilityAccessDeniedError as ObservabilityAccessDeniedError, errors_ObservabilityDatabaseErrorError as ObservabilityDatabaseErrorError, errors_OffsetWithSelectorError as OffsetWithSelectorError, errors_OnFailureArrayContainsEmptyError as OnFailureArrayContainsEmptyError, errors_PackfileError as PackfileError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_ProjectNotFoundError as ProjectNotFoundError, errors_ReadFileFailedError as ReadFileFailedError, errors_RecordOwnershipErrorError as RecordOwnershipErrorError, errors_ReferenceNotFoundError as ReferenceNotFoundError, errors_RepoAlreadyExistsError as RepoAlreadyExistsError, errors_RepoNotFoundError as RepoNotFoundError, errors_RepositoryAccessDeniedError as RepositoryAccessDeniedError, errors_RepositoryNotFoundError as RepositoryNotFoundError, errors_RequestFailedError as RequestFailedError, errors_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestartFailedError as RestartFailedError, errors_RestoreFailedError as RestoreFailedError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RunNotFoundError as RunNotFoundError, errors_RuntimeErrorError as RuntimeErrorError, errors_SendErrorError as SendErrorError, errors_SerializationErrorError as SerializationErrorError, errors_ServerDeploymentFailedError as ServerDeploymentFailedError, errors_ServiceAlreadyExistsError as ServiceAlreadyExistsError, errors_ServiceNameEmptyError as ServiceNameEmptyError, errors_ServiceNameInvalidCharsError as ServiceNameInvalidCharsError, errors_ServiceNameInvalidPrefixError as ServiceNameInvalidPrefixError, errors_ServiceNameTooLongError as ServiceNameTooLongError, errors_ServiceNotFoundError as ServiceNotFoundError, errors_ShutdownFailedError as ShutdownFailedError, errors_SigningError as SigningError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_SourceImportConflictError as SourceImportConflictError, errors_SourceNotFoundError as SourceNotFoundError, errors_SourceUnauthorizedError as SourceUnauthorizedError, errors_StatusFailedError as StatusFailedError, errors_StdIoError as StdIoError, errors_SyntaxErrorError as SyntaxErrorError, errors_TagNotFoundError as TagNotFoundError, errors_TokenErrorError as TokenErrorError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnsupportedTransferError as UnsupportedTransferError, errors_UpdateDefaultBranchFailedError as UpdateDefaultBranchFailedError, errors_UpdatePermissionFailedError as UpdatePermissionFailedError, errors_UploadErrorError as UploadErrorError, errors_UserAlreadyExistsError as UserAlreadyExistsError, errors_UserEmptyError as UserEmptyError, errors_UserGroupEmptyError as UserGroupEmptyError, errors_UserHomeInvalidError as UserHomeInvalidError, errors_UserNotFoundError as UserNotFoundError, errors_UserShellInvalidError as UserShellInvalidError, errors_UserSystemFlagMismatchError as UserSystemFlagMismatchError, errors_UserUidOutOfRangeError as UserUidOutOfRangeError, errors_ValidationErrorError as ValidationErrorError, errors_VerificationFailedError as VerificationFailedError, errors_VerificationNotFoundError as VerificationNotFoundError, errors_VmAccessDeniedError as VmAccessDeniedError, errors_VmCreateTmuxSessionError as VmCreateTmuxSessionError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmMustBeStoppedError as VmMustBeStoppedError, errors_VmNotFoundError as VmNotFoundError, errors_VmNotFoundInFsError as VmNotFoundInFsError, errors_VmNotInTransactionError as VmNotInTransactionError, errors_VmNotRunningError as VmNotRunningError, errors_VmOperationDeniedDuringTransactionError as VmOperationDeniedDuringTransactionError, errors_VmPermissionNotFoundError as VmPermissionNotFoundError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WantedByEmptyError as WantedByEmptyError, errors_WatchFilesFailedError as WatchFilesFailedError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteFileFailedError as WriteFileFailedError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
|
|
9418
|
-
export type { errors_CommitNotFoundPublic as CommitNotFoundPublic, errors_FreestyleError as FreestyleError, errors_InvalidObjectIdPublic as InvalidObjectIdPublic, errors_JavascriptLog as JavascriptLog, errors_LfsTransferAdapter as LfsTransferAdapter, errors_PublicAmbiguous as PublicAmbiguous, errors_PublicBackupFailed as PublicBackupFailed, errors_PublicBadRequest as PublicBadRequest, errors_PublicBlobNotFound as PublicBlobNotFound, errors_PublicBranchNotFound as PublicBranchNotFound, errors_PublicBrowserOperationFailed as PublicBrowserOperationFailed, errors_PublicBuildFailed as PublicBuildFailed, errors_PublicCertificateProvisioningError as PublicCertificateProvisioningError, errors_PublicCloudstateAccessDenied as PublicCloudstateAccessDenied, errors_PublicCloudstateDatabaseError as PublicCloudstateDatabaseError, errors_PublicCloudstateInternalError as PublicCloudstateInternalError, errors_PublicCommitFailed as PublicCommitFailed, errors_PublicCommitNotInBranch as PublicCommitNotInBranch, errors_PublicConnectionFailed as PublicConnectionFailed, errors_PublicContentNotFound as PublicContentNotFound, errors_PublicCreateBackupFailed as PublicCreateBackupFailed, errors_PublicCreateIdentityFailed as PublicCreateIdentityFailed, errors_PublicCreateRepositoryFailed as PublicCreateRepositoryFailed, errors_PublicCreateSnapshotBadRequest as PublicCreateSnapshotBadRequest, errors_PublicCreateTokenFailed as PublicCreateTokenFailed, errors_PublicCreateVmBadRequest as PublicCreateVmBadRequest, errors_PublicDeleteIdentityFailed as PublicDeleteIdentityFailed, errors_PublicDeleteRepositoryFailed as PublicDeleteRepositoryFailed, errors_PublicDeploymentFailed as PublicDeploymentFailed, errors_PublicDevServerFileNotFound as PublicDevServerFileNotFound, errors_PublicDevServerInvalidRequest as PublicDevServerInvalidRequest,
|
|
9601
|
+
export { errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AlreadyHasBaseError as AlreadyHasBaseError, errors_AmbiguousError as AmbiguousError, errors_AnyhowError as AnyhowError, errors_BackupFailedError as BackupFailedError, errors_BadRequestError as BadRequestError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchNameEmptyError as BranchNameEmptyError, errors_BranchNotFoundError as BranchNotFoundError, errors_BrowserOperationFailedError as BrowserOperationFailedError, errors_BuildFailedError as BuildFailedError, errors_CannotDeleteManagedIdentityError as CannotDeleteManagedIdentityError, errors_CannotModifyManagedIdentityError as CannotModifyManagedIdentityError, errors_CertificateProvisioningErrorError as CertificateProvisioningErrorError, errors_CloudstateAccessDeniedError as CloudstateAccessDeniedError, errors_CloudstateDatabaseErrorError as CloudstateDatabaseErrorError, errors_CloudstateInternalErrorError as CloudstateInternalErrorError, errors_CommitFailedError as CommitFailedError, errors_CommitNotFoundError as CommitNotFoundError, errors_CommitNotInBranchError as CommitNotInBranchError, errors_ConflictError as ConflictError, errors_ConnectionFailedError as ConnectionFailedError, errors_ContentNotFoundError as ContentNotFoundError, errors_CreateBackupFailedError as CreateBackupFailedError, errors_CreateIdentityFailedError as CreateIdentityFailedError, errors_CreateRepositoryFailedError as CreateRepositoryFailedError, errors_CreateSnapshotBadRequestError as CreateSnapshotBadRequestError, errors_CreateTokenFailedError as CreateTokenFailedError, errors_CreateVmBadRequestError as CreateVmBadRequestError, errors_DatabaseErrorError as DatabaseErrorError, errors_DeleteIdentityFailedError as DeleteIdentityFailedError, errors_DeleteRepositoryFailedError as DeleteRepositoryFailedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DevServerFileNotFoundError as DevServerFileNotFoundError, errors_DevServerInvalidRequestError as DevServerInvalidRequestError, errors_DevServerNotFoundError as DevServerNotFoundError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerImportBadRequestError as DockerImportBadRequestError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipVerificationFailedError as DomainOwnershipVerificationFailedError, errors_DownloadFailedError as DownloadFailedError, errors_DuplicateGroupNameError as DuplicateGroupNameError, errors_DuplicateUserNameError as DuplicateUserNameError, errors_EmptyTagError as EmptyTagError, errors_EntrypointNotFoundError as EntrypointNotFoundError, errors_EnvKeyContainsEqualsError as EnvKeyContainsEqualsError, errors_EnvKeyEmptyError as EnvKeyEmptyError, errors_ErrorCreatingRecordError as ErrorCreatingRecordError, errors_ErrorDeletingRecordError as ErrorDeletingRecordError, errors_ExecEmptyError as ExecEmptyError, errors_ExecuteAccessDeniedError as ExecuteAccessDeniedError, errors_ExecuteInternalErrorError as ExecuteInternalErrorError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExecutionFailedError as ExecutionFailedError, errors_ExpectedServiceError as ExpectedServiceError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedPermissionsCheckError as FailedPermissionsCheckError, errors_FailedRemoveDomainMappingError as FailedRemoveDomainMappingError, errors_FailedToCheckDomainMappingPermissionsError as FailedToCheckDomainMappingPermissionsError, errors_FailedToCheckPermissionsError as FailedToCheckPermissionsError, errors_FailedToCreateVerificationCodeError as FailedToCreateVerificationCodeError, errors_FailedToDeleteVerificationError as FailedToDeleteVerificationError, errors_FailedToInsertDomainMappingError as FailedToInsertDomainMappingError, errors_FailedToInsertOwnershipError as FailedToInsertOwnershipError, errors_FailedToListDomainsError as FailedToListDomainsError, errors_FailedToListVerificationsError as FailedToListVerificationsError, errors_FailedToProvisionCertificateError as FailedToProvisionCertificateError, errors_FailedToVerifyDomainError as FailedToVerifyDomainError, errors_FileNotFoundError as FileNotFoundError, errors_FilesBadRequestError as FilesBadRequestError, errors_FirecrackerApiSocketNotFoundError as FirecrackerApiSocketNotFoundError, errors_FirecrackerPidNotFoundError as FirecrackerPidNotFoundError, errors_ForbiddenError as ForbiddenError, errors_ForkVmNotFoundError as ForkVmNotFoundError, errors_GetContentFailedError as GetContentFailedError, errors_GetPermissionFailedError as GetPermissionFailedError, errors_GetRepositoryInfoFailedError as GetRepositoryInfoFailedError, errors_GitErrorError as GitErrorError, errors_GitHubSyncConflictError as GitHubSyncConflictError, errors_GitHubSyncFailedError as GitHubSyncFailedError, errors_GitInvalidRequestError as GitInvalidRequestError, errors_GitRepositoryAccessDeniedError as GitRepositoryAccessDeniedError, errors_GitRepositoryNotFoundError as GitRepositoryNotFoundError, errors_GitServerErrorError as GitServerErrorError, errors_GrantPermissionFailedError as GrantPermissionFailedError, errors_GroupAlreadyExistsError as GroupAlreadyExistsError, errors_GroupEmptyError as GroupEmptyError, errors_GroupNameEmptyError as GroupNameEmptyError, errors_GroupNameInvalidCharsError as GroupNameInvalidCharsError, errors_GroupNameReservedError as GroupNameReservedError, errors_GroupNameTooLongError as GroupNameTooLongError, errors_GroupNotFoundError as GroupNotFoundError, errors_IdentityAccessDeniedError as IdentityAccessDeniedError, errors_IdentityErrorError as IdentityErrorError, errors_IdentityNotFoundError as IdentityNotFoundError, errors_ImportSubdirNotFoundError as ImportSubdirNotFoundError, errors_InternalError as InternalError, errors_InternalErrorError as InternalErrorError, errors_InternalForkVmNotFoundError as InternalForkVmNotFoundError, errors_InternalResizeVmNotFoundError as InternalResizeVmNotFoundError, errors_InternalVmNotFoundError as InternalVmNotFoundError, errors_InvalidAccountIdError as InvalidAccountIdError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidError as InvalidError, errors_InvalidObjectIdError as InvalidObjectIdError, errors_InvalidParametersError as InvalidParametersError, errors_InvalidQueryError as InvalidQueryError, errors_InvalidRangeError as InvalidRangeError, errors_InvalidRequestError as InvalidRequestError, errors_InvalidRevisionError as InvalidRevisionError, errors_InvalidServiceError as InvalidServiceError, errors_InvalidSignatureError as InvalidSignatureError, errors_InvalidSnapshotIdError as InvalidSnapshotIdError, errors_KernelPanicError as KernelPanicError, errors_ListIdentitiesFailedError as ListIdentitiesFailedError, errors_ListPermissionsFailedError as ListPermissionsFailedError, errors_ListRepositoriesFailedError as ListRepositoriesFailedError, errors_ListRunsFailedError as ListRunsFailedError, errors_ListTokensFailedError as ListTokensFailedError, errors_LockGenerationFailedError as LockGenerationFailedError, errors_LockfileErrorError as LockfileErrorError, errors_LoggingFailedError as LoggingFailedError, errors_LogsFailedError as LogsFailedError, errors_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDomainOwnershipError as NoDomainOwnershipError, errors_NoEntrypointFoundError as NoEntrypointFoundError, errors_NodeModulesDownloadFailedError as NodeModulesDownloadFailedError, errors_NodeModulesInstallFailedError as NodeModulesInstallFailedError, errors_NotFoundError as NotFoundError, errors_ObservabilityAccessDeniedError as ObservabilityAccessDeniedError, errors_ObservabilityDatabaseErrorError as ObservabilityDatabaseErrorError, errors_OffsetWithSelectorError as OffsetWithSelectorError, errors_OnFailureArrayContainsEmptyError as OnFailureArrayContainsEmptyError, errors_PackfileError as PackfileError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_ProjectNotFoundError as ProjectNotFoundError, errors_ReadFileFailedError as ReadFileFailedError, errors_RecordOwnershipErrorError as RecordOwnershipErrorError, errors_ReferenceNotFoundError as ReferenceNotFoundError, errors_RepoAlreadyExistsError as RepoAlreadyExistsError, errors_RepoNotFoundError as RepoNotFoundError, errors_RepositoryAccessDeniedError as RepositoryAccessDeniedError, errors_RepositoryNotFoundError as RepositoryNotFoundError, errors_RequestFailedError as RequestFailedError, errors_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestartFailedError as RestartFailedError, errors_RestoreFailedError as RestoreFailedError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RunNotFoundError as RunNotFoundError, errors_RuntimeErrorError as RuntimeErrorError, errors_SendErrorError as SendErrorError, errors_SerializationErrorError as SerializationErrorError, errors_ServerDeploymentFailedError as ServerDeploymentFailedError, errors_ServiceAlreadyExistsError as ServiceAlreadyExistsError, errors_ServiceNameEmptyError as ServiceNameEmptyError, errors_ServiceNameInvalidCharsError as ServiceNameInvalidCharsError, errors_ServiceNameInvalidPrefixError as ServiceNameInvalidPrefixError, errors_ServiceNameTooLongError as ServiceNameTooLongError, errors_ServiceNotFoundError as ServiceNotFoundError, errors_ShutdownFailedError as ShutdownFailedError, errors_SigningError as SigningError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_SourceImportConflictError as SourceImportConflictError, errors_SourceNotFoundError as SourceNotFoundError, errors_SourceUnauthorizedError as SourceUnauthorizedError, errors_StatusFailedError as StatusFailedError, errors_StdIoError as StdIoError, errors_SyntaxErrorError as SyntaxErrorError, errors_TagNotFoundError as TagNotFoundError, errors_TokenErrorError as TokenErrorError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnsupportedTransferError as UnsupportedTransferError, errors_UpdateDefaultBranchFailedError as UpdateDefaultBranchFailedError, errors_UpdatePermissionFailedError as UpdatePermissionFailedError, errors_UploadErrorError as UploadErrorError, errors_UserAlreadyExistsError as UserAlreadyExistsError, errors_UserEmptyError as UserEmptyError, errors_UserGroupEmptyError as UserGroupEmptyError, errors_UserHomeInvalidError as UserHomeInvalidError, errors_UserNotFoundError as UserNotFoundError, errors_UserShellInvalidError as UserShellInvalidError, errors_UserSystemFlagMismatchError as UserSystemFlagMismatchError, errors_UserUidOutOfRangeError as UserUidOutOfRangeError, errors_ValidationErrorError as ValidationErrorError, errors_VerificationFailedError as VerificationFailedError, errors_VerificationNotFoundError as VerificationNotFoundError, errors_VmAccessDeniedError as VmAccessDeniedError, errors_VmCreateTmuxSessionError as VmCreateTmuxSessionError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmMustBeStoppedError as VmMustBeStoppedError, errors_VmNotFoundError as VmNotFoundError, errors_VmNotFoundInFsError as VmNotFoundInFsError, errors_VmNotInTransactionError as VmNotInTransactionError, errors_VmNotRunningError as VmNotRunningError, errors_VmOperationDeniedDuringTransactionError as VmOperationDeniedDuringTransactionError, errors_VmPermissionNotFoundError as VmPermissionNotFoundError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WantedByEmptyError as WantedByEmptyError, errors_WatchFilesFailedError as WatchFilesFailedError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteFileFailedError as WriteFileFailedError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
|
|
9602
|
+
export type { errors_CommitNotFoundPublic as CommitNotFoundPublic, errors_FreestyleError as FreestyleError, errors_InvalidObjectIdPublic as InvalidObjectIdPublic, errors_JavascriptLog as JavascriptLog, errors_LfsTransferAdapter as LfsTransferAdapter, errors_PublicAmbiguous as PublicAmbiguous, errors_PublicBackupFailed as PublicBackupFailed, errors_PublicBadRequest as PublicBadRequest, errors_PublicBlobNotFound as PublicBlobNotFound, errors_PublicBranchNotFound as PublicBranchNotFound, errors_PublicBrowserOperationFailed as PublicBrowserOperationFailed, errors_PublicBuildFailed as PublicBuildFailed, errors_PublicCertificateProvisioningError as PublicCertificateProvisioningError, errors_PublicCloudstateAccessDenied as PublicCloudstateAccessDenied, errors_PublicCloudstateDatabaseError as PublicCloudstateDatabaseError, errors_PublicCloudstateInternalError as PublicCloudstateInternalError, errors_PublicCommitFailed as PublicCommitFailed, errors_PublicCommitNotInBranch as PublicCommitNotInBranch, errors_PublicConnectionFailed as PublicConnectionFailed, errors_PublicContentNotFound as PublicContentNotFound, errors_PublicCreateBackupFailed as PublicCreateBackupFailed, errors_PublicCreateIdentityFailed as PublicCreateIdentityFailed, errors_PublicCreateRepositoryFailed as PublicCreateRepositoryFailed, errors_PublicCreateSnapshotBadRequest as PublicCreateSnapshotBadRequest, errors_PublicCreateTokenFailed as PublicCreateTokenFailed, errors_PublicCreateVmBadRequest as PublicCreateVmBadRequest, errors_PublicDeleteIdentityFailed as PublicDeleteIdentityFailed, errors_PublicDeleteRepositoryFailed as PublicDeleteRepositoryFailed, errors_PublicDeploymentFailed as PublicDeploymentFailed, errors_PublicDevServerFileNotFound as PublicDevServerFileNotFound, errors_PublicDevServerInvalidRequest as PublicDevServerInvalidRequest, errors_PublicDirectoryCreationFailed as PublicDirectoryCreationFailed, errors_PublicDockerImportBadRequest as PublicDockerImportBadRequest, errors_PublicDomainAlreadyExists as PublicDomainAlreadyExists, errors_PublicDomainMappingError as PublicDomainMappingError, errors_PublicDomainOwnershipError as PublicDomainOwnershipError, errors_PublicDownloadFailed as PublicDownloadFailed, errors_PublicEntrypointNotFound as PublicEntrypointNotFound, errors_PublicErrorCreatingRecord as PublicErrorCreatingRecord, errors_PublicErrorDeletingRecord as PublicErrorDeletingRecord, errors_PublicExecuteInternalError as PublicExecuteInternalError, errors_PublicExecutionError as PublicExecutionError, errors_PublicExecutionFailed as PublicExecutionFailed, errors_PublicFailedPermissionsCheck as PublicFailedPermissionsCheck, errors_PublicFailedRemoveDomainMapping as PublicFailedRemoveDomainMapping, errors_PublicFailedToCheckDomainMappingPermissions as PublicFailedToCheckDomainMappingPermissions, errors_PublicFailedToCheckPermissions as PublicFailedToCheckPermissions, errors_PublicFailedToCreateVerificationCode as PublicFailedToCreateVerificationCode, errors_PublicFailedToDeleteVerification as PublicFailedToDeleteVerification, errors_PublicFailedToInsertDomainMapping as PublicFailedToInsertDomainMapping, errors_PublicFailedToInsertOwnership as PublicFailedToInsertOwnership, errors_PublicFailedToListDomains as PublicFailedToListDomains, errors_PublicFailedToListVerifications as PublicFailedToListVerifications, errors_PublicFailedToProvisionCertificate as PublicFailedToProvisionCertificate, errors_PublicFailedToVerifyDomain as PublicFailedToVerifyDomain, errors_PublicFileNotFound as PublicFileNotFound, errors_PublicFilesBadRequest as PublicFilesBadRequest, errors_PublicForkVmNotFound as PublicForkVmNotFound, errors_PublicGetContentFailed as PublicGetContentFailed, errors_PublicGetPermissionFailed as PublicGetPermissionFailed, errors_PublicGetRepositoryInfoFailed as PublicGetRepositoryInfoFailed, errors_PublicGitHubSyncFailed as PublicGitHubSyncFailed, errors_PublicGitInvalidRequest as PublicGitInvalidRequest, errors_PublicGitServerError as PublicGitServerError, errors_PublicGrantPermissionFailed as PublicGrantPermissionFailed, errors_PublicGroupAlreadyExists as PublicGroupAlreadyExists, errors_PublicIdentityError as PublicIdentityError, errors_PublicImportSubdirNotFound as PublicImportSubdirNotFound, errors_PublicInternalForkVmNotFound as PublicInternalForkVmNotFound, errors_PublicInternalVmNotFound as PublicInternalVmNotFound, errors_PublicInvalid as PublicInvalid, errors_PublicInvalidAccountId as PublicInvalidAccountId, errors_PublicInvalidDeploymentRequest as PublicInvalidDeploymentRequest, errors_PublicInvalidDomain as PublicInvalidDomain, errors_PublicInvalidDomains as PublicInvalidDomains, errors_PublicInvalidQuery as PublicInvalidQuery, errors_PublicInvalidRange as PublicInvalidRange, errors_PublicInvalidRevision as PublicInvalidRevision, errors_PublicListIdentitiesFailed as PublicListIdentitiesFailed, errors_PublicListPermissionsFailed as PublicListPermissionsFailed, errors_PublicListRepositoriesFailed as PublicListRepositoriesFailed, errors_PublicListRunsFailed as PublicListRunsFailed, errors_PublicListTokensFailed as PublicListTokensFailed, errors_PublicLockGenerationFailed as PublicLockGenerationFailed, errors_PublicLockfileError as PublicLockfileError, errors_PublicLoggingFailed as PublicLoggingFailed, errors_PublicLogsFailed as PublicLogsFailed, errors_PublicLogsNotFound as PublicLogsNotFound, errors_PublicMetadataWriteFailed as PublicMetadataWriteFailed, errors_PublicNetworkPermissionsFailed as PublicNetworkPermissionsFailed, errors_PublicNoDomainOwnership as PublicNoDomainOwnership, errors_PublicNodeModulesDownloadFailed as PublicNodeModulesDownloadFailed, errors_PublicNodeModulesInstallFailed as PublicNodeModulesInstallFailed, errors_PublicObservabilityAccessDenied as PublicObservabilityAccessDenied, errors_PublicObservabilityDatabaseError as PublicObservabilityDatabaseError, errors_PublicParseLogsFailed as PublicParseLogsFailed, errors_PublicParseResponseError as PublicParseResponseError, errors_PublicPathNotFound as PublicPathNotFound, errors_PublicPermissionDenied as PublicPermissionDenied, errors_PublicPermissionError as PublicPermissionError, errors_PublicProjectNotFound as PublicProjectNotFound, errors_PublicReadFileFailed as PublicReadFileFailed, errors_PublicRecordOwnershipError as PublicRecordOwnershipError, errors_PublicReferenceNotFound as PublicReferenceNotFound, errors_PublicRepositoryNotFound as PublicRepositoryNotFound, errors_PublicRequestFailed as PublicRequestFailed, errors_PublicResizeFailed as PublicResizeFailed, errors_PublicRestartFailed as PublicRestartFailed, errors_PublicRestoreFailed as PublicRestoreFailed, errors_PublicRetrieveLogsFailed as PublicRetrieveLogsFailed, errors_PublicRevokePermissionFailed as PublicRevokePermissionFailed, errors_PublicRevokeTokenFailed as PublicRevokeTokenFailed, errors_PublicRunNotFound as PublicRunNotFound, errors_PublicRuntimeError as PublicRuntimeError, errors_PublicSerializationError as PublicSerializationError, errors_PublicServiceAlreadyExists as PublicServiceAlreadyExists, errors_PublicShutdownFailed as PublicShutdownFailed, errors_PublicSnapshotVmBadRequest as PublicSnapshotVmBadRequest, errors_PublicSourceNotFound as PublicSourceNotFound, errors_PublicSourceUnauthorized as PublicSourceUnauthorized, errors_PublicStatusFailed as PublicStatusFailed, errors_PublicSyntaxError as PublicSyntaxError, errors_PublicTagNotFound as PublicTagNotFound, errors_PublicTokenError as PublicTokenError, errors_PublicTreeNotFound as PublicTreeNotFound, errors_PublicTriggerError as PublicTriggerError, errors_PublicUnsupportedTransfer as PublicUnsupportedTransfer, errors_PublicUpdateDefaultBranchFailed as PublicUpdateDefaultBranchFailed, errors_PublicUpdatePermissionFailed as PublicUpdatePermissionFailed, errors_PublicUserAlreadyExists as PublicUserAlreadyExists, errors_PublicVerificationFailed as PublicVerificationFailed, errors_PublicVerificationNotFound as PublicVerificationNotFound, errors_PublicWatchFilesFailed as PublicWatchFilesFailed, errors_PublicWebDeploymentBadRequest as PublicWebDeploymentBadRequest, errors_PublicWriteFileFailed as PublicWriteFileFailed, errors_PublicWriteScriptFailed as PublicWriteScriptFailed, errors_UnauthorizedErrorPublic as UnauthorizedErrorPublic, errors_VmNotFoundPublic as VmNotFoundPublic, errors_VmOperationDeniedDuringTransactionPublic as VmOperationDeniedDuringTransactionPublic, errors_VmTransactionIdMismatchPublic as VmTransactionIdMismatchPublic };
|
|
9419
9603
|
}
|
|
9420
9604
|
|
|
9421
9605
|
/**
|
|
@@ -10374,7 +10558,13 @@ type ServerlessConfig = {
|
|
|
10374
10558
|
timeoutMs?: number;
|
|
10375
10559
|
};
|
|
10376
10560
|
type CreateDeployment = CreateWebDeploymentSource & ServerlessConfig & {
|
|
10377
|
-
build?: boolean
|
|
10561
|
+
build?: boolean | {
|
|
10562
|
+
command: string;
|
|
10563
|
+
outDir?: string | null;
|
|
10564
|
+
envVars?: {
|
|
10565
|
+
[k: string]: string;
|
|
10566
|
+
} | null;
|
|
10567
|
+
};
|
|
10378
10568
|
/** Wait for the deployment to be fully rolled out before returning. */
|
|
10379
10569
|
waitForRollout?: boolean;
|
|
10380
10570
|
domains?: string[];
|
|
@@ -10796,11 +10986,6 @@ declare class FileSystem {
|
|
|
10796
10986
|
private client;
|
|
10797
10987
|
private vm;
|
|
10798
10988
|
constructor(vmId: string, client: ApiClient);
|
|
10799
|
-
/**
|
|
10800
|
-
* @internal
|
|
10801
|
-
* Set the parent VM instance for exec operations
|
|
10802
|
-
*/
|
|
10803
|
-
_setVm(vm: Vm): void;
|
|
10804
10989
|
/**
|
|
10805
10990
|
* Read a file from the VM as a buffer.
|
|
10806
10991
|
* @param filepath The path to the file in the VM
|
|
@@ -10982,6 +11167,7 @@ declare const VmBuilder: typeof VmWith;
|
|
|
10982
11167
|
declare class VmTerminals {
|
|
10983
11168
|
private vmId;
|
|
10984
11169
|
private client;
|
|
11170
|
+
private vm;
|
|
10985
11171
|
constructor(vmId: string, client: ApiClient);
|
|
10986
11172
|
/**
|
|
10987
11173
|
* List all terminals in the VM.
|
|
@@ -11019,6 +11205,9 @@ declare class Vm {
|
|
|
11019
11205
|
* @returns VM state information
|
|
11020
11206
|
*/
|
|
11021
11207
|
getInfo(): Promise<ResponseGetV1VmsVmId200>;
|
|
11208
|
+
user({ username }: {
|
|
11209
|
+
username: string;
|
|
11210
|
+
}): Vm;
|
|
11022
11211
|
/**
|
|
11023
11212
|
* Start the VM.
|
|
11024
11213
|
* @param options Optional startup configuration
|
|
@@ -11131,6 +11320,7 @@ declare class VmsNamespace {
|
|
|
11131
11320
|
with?: T;
|
|
11132
11321
|
template?: VmTemplate<T>;
|
|
11133
11322
|
spec?: VmSpec<T>;
|
|
11323
|
+
snapshot?: VmSpec<T>;
|
|
11134
11324
|
}): Promise<ResponsePostV1Vms200 & {
|
|
11135
11325
|
vmId: string;
|
|
11136
11326
|
vm: Vm & {
|
|
@@ -11146,12 +11336,12 @@ declare class VmsNamespace {
|
|
|
11146
11336
|
/**
|
|
11147
11337
|
* Get VM by ID.
|
|
11148
11338
|
* @param vmId The ID of the VM
|
|
11149
|
-
* @param
|
|
11339
|
+
* @param spec Optional spec to attach builders to the returned VM
|
|
11150
11340
|
* @returns The VM instance configured with builders from the spec
|
|
11151
11341
|
*/
|
|
11152
|
-
get<T extends Record<string, VmWith>>({ vmId,
|
|
11342
|
+
get<T extends Record<string, VmWith>>({ vmId, spec, }: {
|
|
11153
11343
|
vmId: string;
|
|
11154
|
-
|
|
11344
|
+
spec?: VmSpec<T>;
|
|
11155
11345
|
}): Promise<{
|
|
11156
11346
|
vm: Vm & {
|
|
11157
11347
|
[K in keyof T]: ReturnType<T[K]["createInstance"]>;
|
|
@@ -11161,9 +11351,12 @@ declare class VmsNamespace {
|
|
|
11161
11351
|
/**
|
|
11162
11352
|
* Create a VM instance by ID without making an api call.
|
|
11163
11353
|
*/
|
|
11164
|
-
ref({ vmId }: {
|
|
11354
|
+
ref<T extends Record<string, VmWith>>({ vmId, spec, }: {
|
|
11165
11355
|
vmId: string;
|
|
11166
|
-
|
|
11356
|
+
spec?: VmSpec<T>;
|
|
11357
|
+
}): Vm & {
|
|
11358
|
+
[K in keyof T]: ReturnType<T[K]["createInstance"]>;
|
|
11359
|
+
};
|
|
11167
11360
|
delete({ vmId }: {
|
|
11168
11361
|
vmId: string;
|
|
11169
11362
|
}): Promise<ResponseDeleteV1VmsVmId200>;
|