freestyle-sandboxes 0.1.42 → 0.1.44
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 +1506 -1042
- package/index.d.cts +1925 -845
- package/index.d.mts +1925 -845
- package/index.mjs +1506 -1042
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
interface ResponseGetAuthV1BackgroundRequestsRequestId202 {
|
|
2
|
+
requestId: string;
|
|
3
|
+
status: string;
|
|
4
|
+
}
|
|
5
|
+
interface ResponseGetAuthV1BackgroundRequestsRequestId404 {
|
|
6
|
+
message: string;
|
|
7
|
+
}
|
|
8
|
+
interface ResponseGetAuthV1BackgroundTest200 {
|
|
9
|
+
ok: boolean;
|
|
10
|
+
message: string;
|
|
11
|
+
sleptSecs: number;
|
|
12
|
+
finishedAt: string;
|
|
13
|
+
}
|
|
14
|
+
interface ResponseGetAuthV1BackgroundTest400 {
|
|
15
|
+
message: string;
|
|
16
|
+
}
|
|
1
17
|
interface ResponseGetAuthV1Whoami200 {
|
|
2
18
|
accountId: string;
|
|
3
19
|
identityId?: string | null;
|
|
@@ -96,6 +112,7 @@ type ResponseGetDomainsV1Mappings200 = {
|
|
|
96
112
|
vmPort?: number | null;
|
|
97
113
|
ownershipId: string;
|
|
98
114
|
createdAt: string;
|
|
115
|
+
unmappedAt?: string | null;
|
|
99
116
|
}[];
|
|
100
117
|
interface ResponsePostDomainsV1MappingsDomain200 {
|
|
101
118
|
id: string;
|
|
@@ -105,6 +122,7 @@ interface ResponsePostDomainsV1MappingsDomain200 {
|
|
|
105
122
|
vmPort?: number | null;
|
|
106
123
|
ownershipId: string;
|
|
107
124
|
createdAt: string;
|
|
125
|
+
unmappedAt?: string | null;
|
|
108
126
|
}
|
|
109
127
|
/**
|
|
110
128
|
* Public API error wrapper. Mark public APIs with `Public<T>` to ensure private error
|
|
@@ -1530,6 +1548,204 @@ interface ResponseGetGitV1RepoRepoGitTreesHash200Tree {
|
|
|
1530
1548
|
sha: string;
|
|
1531
1549
|
type: "tree";
|
|
1532
1550
|
}
|
|
1551
|
+
interface ResponseGetGitV1RepoRepoSearch200 {
|
|
1552
|
+
/**
|
|
1553
|
+
* Total number of files with matches (before pagination).
|
|
1554
|
+
*/
|
|
1555
|
+
totalFiles: number;
|
|
1556
|
+
/**
|
|
1557
|
+
* Total number of individual line matches across all files (before pagination).
|
|
1558
|
+
*/
|
|
1559
|
+
totalMatches: number;
|
|
1560
|
+
/**
|
|
1561
|
+
* Whether there are more results beyond the current page.
|
|
1562
|
+
*/
|
|
1563
|
+
hasMore: boolean;
|
|
1564
|
+
/**
|
|
1565
|
+
* The matching files with their line matches (paginated).
|
|
1566
|
+
*/
|
|
1567
|
+
files: {
|
|
1568
|
+
/**
|
|
1569
|
+
* The file path relative to the repository root.
|
|
1570
|
+
*/
|
|
1571
|
+
path: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* The file extension (e.g. "rs", "ts"), if any.
|
|
1574
|
+
*/
|
|
1575
|
+
extension?: string | null;
|
|
1576
|
+
/**
|
|
1577
|
+
* The size of the file in bytes.
|
|
1578
|
+
*/
|
|
1579
|
+
size: number;
|
|
1580
|
+
/**
|
|
1581
|
+
* The matches found in this file.
|
|
1582
|
+
*/
|
|
1583
|
+
matches: {
|
|
1584
|
+
/**
|
|
1585
|
+
* 1-based line number of the match.
|
|
1586
|
+
*/
|
|
1587
|
+
lineNumber: number;
|
|
1588
|
+
/**
|
|
1589
|
+
* The full text of the matching line.
|
|
1590
|
+
*/
|
|
1591
|
+
line: string;
|
|
1592
|
+
/**
|
|
1593
|
+
* 0-based column offset of the first match in the line.
|
|
1594
|
+
*/
|
|
1595
|
+
startColumn: number;
|
|
1596
|
+
/**
|
|
1597
|
+
* 0-based column offset of the end of the first match in the line.
|
|
1598
|
+
*/
|
|
1599
|
+
endColumn: number;
|
|
1600
|
+
/**
|
|
1601
|
+
* Context lines before the match.
|
|
1602
|
+
*/
|
|
1603
|
+
contextBefore: string[];
|
|
1604
|
+
/**
|
|
1605
|
+
* Context lines after the match.
|
|
1606
|
+
*/
|
|
1607
|
+
contextAfter: string[];
|
|
1608
|
+
}[];
|
|
1609
|
+
}[];
|
|
1610
|
+
}
|
|
1611
|
+
interface ResponseGetGitV1RepoRepoSearchCommits200 {
|
|
1612
|
+
/**
|
|
1613
|
+
* Total number of matching commits found.
|
|
1614
|
+
*/
|
|
1615
|
+
totalCommits: number;
|
|
1616
|
+
/**
|
|
1617
|
+
* Whether there are more results beyond those returned.
|
|
1618
|
+
*/
|
|
1619
|
+
hasMore: boolean;
|
|
1620
|
+
/**
|
|
1621
|
+
* The matching commits.
|
|
1622
|
+
*/
|
|
1623
|
+
commits: {
|
|
1624
|
+
/**
|
|
1625
|
+
* The commit SHA.
|
|
1626
|
+
*/
|
|
1627
|
+
sha: string;
|
|
1628
|
+
/**
|
|
1629
|
+
* The commit message (first line / summary).
|
|
1630
|
+
*/
|
|
1631
|
+
message: string;
|
|
1632
|
+
/**
|
|
1633
|
+
* The full commit message.
|
|
1634
|
+
*/
|
|
1635
|
+
fullMessage: string;
|
|
1636
|
+
/**
|
|
1637
|
+
* The author name.
|
|
1638
|
+
*/
|
|
1639
|
+
authorName: string;
|
|
1640
|
+
/**
|
|
1641
|
+
* The author email.
|
|
1642
|
+
*/
|
|
1643
|
+
authorEmail: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* The commit timestamp (ISO 8601).
|
|
1646
|
+
*/
|
|
1647
|
+
timestamp: string;
|
|
1648
|
+
}[];
|
|
1649
|
+
}
|
|
1650
|
+
/**
|
|
1651
|
+
* Diff content search results.
|
|
1652
|
+
*/
|
|
1653
|
+
interface ResponseGetGitV1RepoRepoSearchDiffs200 {
|
|
1654
|
+
/**
|
|
1655
|
+
* Total number of commits with matching changes (before pagination).
|
|
1656
|
+
*/
|
|
1657
|
+
totalCommits: number;
|
|
1658
|
+
/**
|
|
1659
|
+
* Whether there are more results beyond the current page.
|
|
1660
|
+
*/
|
|
1661
|
+
hasMore: boolean;
|
|
1662
|
+
/**
|
|
1663
|
+
* The matching commits with their file-level diff matches.
|
|
1664
|
+
*/
|
|
1665
|
+
commits: {
|
|
1666
|
+
/**
|
|
1667
|
+
* The commit SHA.
|
|
1668
|
+
*/
|
|
1669
|
+
sha: string;
|
|
1670
|
+
/**
|
|
1671
|
+
* The commit message summary (first line).
|
|
1672
|
+
*/
|
|
1673
|
+
message: string;
|
|
1674
|
+
/**
|
|
1675
|
+
* The author name.
|
|
1676
|
+
*/
|
|
1677
|
+
authorName: string;
|
|
1678
|
+
/**
|
|
1679
|
+
* The author email.
|
|
1680
|
+
*/
|
|
1681
|
+
authorEmail: string;
|
|
1682
|
+
/**
|
|
1683
|
+
* The commit timestamp (ISO 8601).
|
|
1684
|
+
*/
|
|
1685
|
+
timestamp: string;
|
|
1686
|
+
/**
|
|
1687
|
+
* Files in this commit with matching changed content.
|
|
1688
|
+
*/
|
|
1689
|
+
files: {
|
|
1690
|
+
/**
|
|
1691
|
+
* The file path relative to the repository root.
|
|
1692
|
+
*/
|
|
1693
|
+
path: string;
|
|
1694
|
+
/**
|
|
1695
|
+
* The matching lines in the diff for this file.
|
|
1696
|
+
*/
|
|
1697
|
+
matches: {
|
|
1698
|
+
/**
|
|
1699
|
+
* The matched line content (without the leading +/- prefix).
|
|
1700
|
+
*/
|
|
1701
|
+
line: string;
|
|
1702
|
+
/**
|
|
1703
|
+
* 1-based line number in the new file (for additions) or old file (for deletions).
|
|
1704
|
+
*/
|
|
1705
|
+
lineNumber: number;
|
|
1706
|
+
/**
|
|
1707
|
+
* 0-based byte offset of the match start within the line.
|
|
1708
|
+
*/
|
|
1709
|
+
startColumn: number;
|
|
1710
|
+
/**
|
|
1711
|
+
* 0-based byte offset of the match end within the line.
|
|
1712
|
+
*/
|
|
1713
|
+
endColumn: number;
|
|
1714
|
+
/**
|
|
1715
|
+
* Whether this was an added line (true) or a deleted line (false).
|
|
1716
|
+
*/
|
|
1717
|
+
isAddition: boolean;
|
|
1718
|
+
}[];
|
|
1719
|
+
}[];
|
|
1720
|
+
}[];
|
|
1721
|
+
}
|
|
1722
|
+
interface ResponseGetGitV1RepoRepoSearchFiles200 {
|
|
1723
|
+
/**
|
|
1724
|
+
* Total number of matching files.
|
|
1725
|
+
*/
|
|
1726
|
+
totalFiles: number;
|
|
1727
|
+
/**
|
|
1728
|
+
* Whether the results were truncated.
|
|
1729
|
+
*/
|
|
1730
|
+
hasMore: boolean;
|
|
1731
|
+
/**
|
|
1732
|
+
* The matching file paths.
|
|
1733
|
+
*/
|
|
1734
|
+
files: {
|
|
1735
|
+
/**
|
|
1736
|
+
* The full file path relative to the repository root.
|
|
1737
|
+
*/
|
|
1738
|
+
path: string;
|
|
1739
|
+
/**
|
|
1740
|
+
* The file extension (e.g. "rs", "ts"), if any.
|
|
1741
|
+
*/
|
|
1742
|
+
extension?: string | null;
|
|
1743
|
+
/**
|
|
1744
|
+
* The file size in bytes.
|
|
1745
|
+
*/
|
|
1746
|
+
size: number;
|
|
1747
|
+
}[];
|
|
1748
|
+
}
|
|
1533
1749
|
interface ResponseGetGitV1RepoRepoTrigger200 {
|
|
1534
1750
|
triggers: {
|
|
1535
1751
|
repositoryId: string;
|
|
@@ -1683,6 +1899,13 @@ interface ResponseGetObservabilityV1Logs200 {
|
|
|
1683
1899
|
logs: {
|
|
1684
1900
|
message: string;
|
|
1685
1901
|
timestamp: string;
|
|
1902
|
+
source?: string | null;
|
|
1903
|
+
resourceType?: string | null;
|
|
1904
|
+
origin?: string | null;
|
|
1905
|
+
resourceId?: string | null;
|
|
1906
|
+
instanceId?: string | null;
|
|
1907
|
+
level?: string | null;
|
|
1908
|
+
vmService?: string | null;
|
|
1686
1909
|
}[];
|
|
1687
1910
|
nextPageToken?: string | null;
|
|
1688
1911
|
}
|
|
@@ -1781,6 +2004,10 @@ interface ResponseGetV1CronSchedulesIdSuccessRate200 {
|
|
|
1781
2004
|
}
|
|
1782
2005
|
interface ResponseGetV1Vms200 {
|
|
1783
2006
|
vms: {
|
|
2007
|
+
/**
|
|
2008
|
+
* VM ID — always 20 alphanumeric lowercase characters.
|
|
2009
|
+
* New IDs are fully random. Legacy short IDs are right-padded with '0' on parse.
|
|
2010
|
+
*/
|
|
1784
2011
|
id: string;
|
|
1785
2012
|
vmInstanceId?: null | string;
|
|
1786
2013
|
state: "starting" | "running" | "suspending" | "suspended" | "stopped";
|
|
@@ -1792,6 +2019,23 @@ interface ResponseGetV1Vms200 {
|
|
|
1792
2019
|
createdAt?: string | null;
|
|
1793
2020
|
lastNetworkActivity?: string | null;
|
|
1794
2021
|
cpuTimeSeconds?: number | null;
|
|
2022
|
+
persistence?: null | ({
|
|
2023
|
+
/**
|
|
2024
|
+
* Priority for eviction when storage quota is reached. Higher values
|
|
2025
|
+
* mean the VM is less likely to be evicted. Range is 0-10, default is
|
|
2026
|
+
* 5.
|
|
2027
|
+
*/
|
|
2028
|
+
priority?: number | null;
|
|
2029
|
+
type: "sticky";
|
|
2030
|
+
} | {
|
|
2031
|
+
deleteEvent?: null | ("OnStop" | "OnSuspend");
|
|
2032
|
+
type: "ephemeral";
|
|
2033
|
+
} | {
|
|
2034
|
+
type: "persistent";
|
|
2035
|
+
});
|
|
2036
|
+
snapshotId?: null | string;
|
|
2037
|
+
deleted?: boolean;
|
|
2038
|
+
createdDeclaratively?: boolean;
|
|
1795
2039
|
}[];
|
|
1796
2040
|
totalCount: number;
|
|
1797
2041
|
runningCount: number;
|
|
@@ -1819,7 +2063,7 @@ interface ResponsePostV1Vms200 {
|
|
|
1819
2063
|
interface ResponseGetV1VmsSnapshots200 {
|
|
1820
2064
|
snapshots: {
|
|
1821
2065
|
/**
|
|
1822
|
-
* Branded snapshot ID
|
|
2066
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
1823
2067
|
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
1824
2068
|
*/
|
|
1825
2069
|
snapshotId: string;
|
|
@@ -1837,7 +2081,43 @@ interface ResponseGetV1VmsSnapshots200 {
|
|
|
1837
2081
|
* Optional name for the snapshot
|
|
1838
2082
|
*/
|
|
1839
2083
|
name?: string | null;
|
|
2084
|
+
/**
|
|
2085
|
+
* Whether the snapshot creation failed
|
|
2086
|
+
*/
|
|
2087
|
+
failed: boolean;
|
|
2088
|
+
/**
|
|
2089
|
+
* Reason for failure if applicable
|
|
2090
|
+
*/
|
|
2091
|
+
failureReason?: string | null;
|
|
2092
|
+
/**
|
|
2093
|
+
* Whether the snapshot has been soft-deleted
|
|
2094
|
+
*/
|
|
2095
|
+
deleted: boolean;
|
|
2096
|
+
/**
|
|
2097
|
+
* Snapshot persistence strategy
|
|
2098
|
+
*/
|
|
2099
|
+
snapshotPersistence: {
|
|
2100
|
+
priority?: number | null;
|
|
2101
|
+
type: "sticky";
|
|
2102
|
+
} | {
|
|
2103
|
+
type: "persistent";
|
|
2104
|
+
};
|
|
2105
|
+
/**
|
|
2106
|
+
* Number of vCPUs configured at snapshot time
|
|
2107
|
+
*/
|
|
2108
|
+
vcpuCount?: number | null;
|
|
2109
|
+
/**
|
|
2110
|
+
* Memory size in MiB configured at snapshot time
|
|
2111
|
+
*/
|
|
2112
|
+
memSizeMib?: number | null;
|
|
2113
|
+
/**
|
|
2114
|
+
* Root filesystem size in MB
|
|
2115
|
+
*/
|
|
2116
|
+
rootfsSizeMb?: number | null;
|
|
1840
2117
|
}[];
|
|
2118
|
+
totalCount: number;
|
|
2119
|
+
failedCount: number;
|
|
2120
|
+
deletedCount: number;
|
|
1841
2121
|
}
|
|
1842
2122
|
interface ResponseGetV1VmsSnapshots400 {
|
|
1843
2123
|
/**
|
|
@@ -1861,12 +2141,39 @@ interface ResponseGetV1VmsSnapshots500 {
|
|
|
1861
2141
|
}
|
|
1862
2142
|
interface ResponsePostV1VmsSnapshots200 {
|
|
1863
2143
|
/**
|
|
1864
|
-
* Branded snapshot ID
|
|
2144
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
1865
2145
|
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
1866
2146
|
*/
|
|
1867
2147
|
snapshotId: string;
|
|
1868
2148
|
}
|
|
1869
|
-
|
|
2149
|
+
type ResponseDeleteV1VmsSnapshotsSnapshotId200 = {
|
|
2150
|
+
/**
|
|
2151
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
2152
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
2153
|
+
*/
|
|
2154
|
+
snapshot_id: string;
|
|
2155
|
+
};
|
|
2156
|
+
interface ResponseDeleteV1VmsSnapshotsSnapshotId404 {
|
|
2157
|
+
/**
|
|
2158
|
+
* Error code in SCREAMING_SNAKE_CASE
|
|
2159
|
+
*/
|
|
2160
|
+
error: string;
|
|
2161
|
+
/**
|
|
2162
|
+
* Human-readable error message
|
|
2163
|
+
*/
|
|
2164
|
+
message: string;
|
|
2165
|
+
}
|
|
2166
|
+
interface ResponseDeleteV1VmsSnapshotsSnapshotId409 {
|
|
2167
|
+
/**
|
|
2168
|
+
* Error code in SCREAMING_SNAKE_CASE
|
|
2169
|
+
*/
|
|
2170
|
+
error: string;
|
|
2171
|
+
/**
|
|
2172
|
+
* Human-readable error message
|
|
2173
|
+
*/
|
|
2174
|
+
message: string;
|
|
2175
|
+
}
|
|
2176
|
+
interface ResponseDeleteV1VmsSnapshotsSnapshotId500 {
|
|
1870
2177
|
/**
|
|
1871
2178
|
* Error code in SCREAMING_SNAKE_CASE
|
|
1872
2179
|
*/
|
|
@@ -1876,7 +2183,15 @@ interface ResponsePostV1VmsSnapshots400 {
|
|
|
1876
2183
|
*/
|
|
1877
2184
|
message: string;
|
|
1878
2185
|
}
|
|
1879
|
-
|
|
2186
|
+
type ResponsePatchV1VmsSnapshotsSnapshotId200 = {
|
|
2187
|
+
/**
|
|
2188
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
2189
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
2190
|
+
*/
|
|
2191
|
+
snapshot_id: string;
|
|
2192
|
+
name?: string | null;
|
|
2193
|
+
};
|
|
2194
|
+
interface ResponsePatchV1VmsSnapshotsSnapshotId404 {
|
|
1880
2195
|
/**
|
|
1881
2196
|
* Error code in SCREAMING_SNAKE_CASE
|
|
1882
2197
|
*/
|
|
@@ -1886,7 +2201,7 @@ interface ResponsePostV1VmsSnapshots404 {
|
|
|
1886
2201
|
*/
|
|
1887
2202
|
message: string;
|
|
1888
2203
|
}
|
|
1889
|
-
interface
|
|
2204
|
+
interface ResponsePatchV1VmsSnapshotsSnapshotId500 {
|
|
1890
2205
|
/**
|
|
1891
2206
|
* Error code in SCREAMING_SNAKE_CASE
|
|
1892
2207
|
*/
|
|
@@ -1929,6 +2244,10 @@ interface ResponsePostV1VmsIdResize500 {
|
|
|
1929
2244
|
message: string;
|
|
1930
2245
|
}
|
|
1931
2246
|
interface ResponseGetV1VmsVmId200 {
|
|
2247
|
+
/**
|
|
2248
|
+
* VM ID — always 20 alphanumeric lowercase characters.
|
|
2249
|
+
* New IDs are fully random. Legacy short IDs are right-padded with '0' on parse.
|
|
2250
|
+
*/
|
|
1932
2251
|
id: string;
|
|
1933
2252
|
vmInstanceId?: null | string;
|
|
1934
2253
|
lastNetworkActivity?: string | null;
|
|
@@ -2000,7 +2319,7 @@ type ResponseGetV1VmsVmIdFilesFilepath200 = {
|
|
|
2000
2319
|
} | {
|
|
2001
2320
|
files: {
|
|
2002
2321
|
name: string;
|
|
2003
|
-
kind:
|
|
2322
|
+
kind: "file" | "directory";
|
|
2004
2323
|
}[];
|
|
2005
2324
|
};
|
|
2006
2325
|
interface ResponseGetV1VmsVmIdFilesFilepath400 {
|
|
@@ -2115,7 +2434,7 @@ interface ResponsePostV1VmsVmIdOptimize500 {
|
|
|
2115
2434
|
}
|
|
2116
2435
|
interface ResponsePostV1VmsVmIdSnapshot200 {
|
|
2117
2436
|
/**
|
|
2118
|
-
* Branded snapshot ID
|
|
2437
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
2119
2438
|
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
2120
2439
|
*/
|
|
2121
2440
|
snapshotId: string;
|
|
@@ -2126,26 +2445,6 @@ interface ResponsePostV1VmsVmIdSnapshot200 {
|
|
|
2126
2445
|
sourceVmId: string;
|
|
2127
2446
|
sourceVmInstanceId?: null | string;
|
|
2128
2447
|
}
|
|
2129
|
-
interface ResponsePostV1VmsVmIdSnapshot400 {
|
|
2130
|
-
/**
|
|
2131
|
-
* Error code in SCREAMING_SNAKE_CASE
|
|
2132
|
-
*/
|
|
2133
|
-
error: string;
|
|
2134
|
-
/**
|
|
2135
|
-
* Human-readable error message
|
|
2136
|
-
*/
|
|
2137
|
-
message: string;
|
|
2138
|
-
}
|
|
2139
|
-
interface ResponsePostV1VmsVmIdSnapshot500 {
|
|
2140
|
-
/**
|
|
2141
|
-
* Error code in SCREAMING_SNAKE_CASE
|
|
2142
|
-
*/
|
|
2143
|
-
error: string;
|
|
2144
|
-
/**
|
|
2145
|
-
* Human-readable error message
|
|
2146
|
-
*/
|
|
2147
|
-
message: string;
|
|
2148
|
-
}
|
|
2149
2448
|
interface ResponsePostV1VmsVmIdStart200 {
|
|
2150
2449
|
id: string;
|
|
2151
2450
|
domains: string[];
|
|
@@ -2565,11 +2864,19 @@ type responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200 =
|
|
|
2565
2864
|
type responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200 = ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200;
|
|
2566
2865
|
type responses_ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200 = ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200;
|
|
2567
2866
|
type responses_ResponseDeleteV1CronSchedulesId200 = ResponseDeleteV1CronSchedulesId200;
|
|
2867
|
+
type responses_ResponseDeleteV1VmsSnapshotsSnapshotId200 = ResponseDeleteV1VmsSnapshotsSnapshotId200;
|
|
2868
|
+
type responses_ResponseDeleteV1VmsSnapshotsSnapshotId404 = ResponseDeleteV1VmsSnapshotsSnapshotId404;
|
|
2869
|
+
type responses_ResponseDeleteV1VmsSnapshotsSnapshotId409 = ResponseDeleteV1VmsSnapshotsSnapshotId409;
|
|
2870
|
+
type responses_ResponseDeleteV1VmsSnapshotsSnapshotId500 = ResponseDeleteV1VmsSnapshotsSnapshotId500;
|
|
2568
2871
|
type responses_ResponseDeleteV1VmsVmId200 = ResponseDeleteV1VmsVmId200;
|
|
2569
2872
|
type responses_ResponseDeleteV1VmsVmId500 = ResponseDeleteV1VmsVmId500;
|
|
2570
2873
|
type responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId200 = ResponseDeleteV1VmsVmIdSystemdServicesServiceId200;
|
|
2571
2874
|
type responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId404 = ResponseDeleteV1VmsVmIdSystemdServicesServiceId404;
|
|
2572
2875
|
type responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId500 = ResponseDeleteV1VmsVmIdSystemdServicesServiceId500;
|
|
2876
|
+
type responses_ResponseGetAuthV1BackgroundRequestsRequestId202 = ResponseGetAuthV1BackgroundRequestsRequestId202;
|
|
2877
|
+
type responses_ResponseGetAuthV1BackgroundRequestsRequestId404 = ResponseGetAuthV1BackgroundRequestsRequestId404;
|
|
2878
|
+
type responses_ResponseGetAuthV1BackgroundTest200 = ResponseGetAuthV1BackgroundTest200;
|
|
2879
|
+
type responses_ResponseGetAuthV1BackgroundTest400 = ResponseGetAuthV1BackgroundTest400;
|
|
2573
2880
|
type responses_ResponseGetAuthV1Whoami200 = ResponseGetAuthV1Whoami200;
|
|
2574
2881
|
type responses_ResponseGetDnsV1Records200 = ResponseGetDnsV1Records200;
|
|
2575
2882
|
type responses_ResponseGetDnsV1Records400 = ResponseGetDnsV1Records400;
|
|
@@ -2638,6 +2945,10 @@ type responses_ResponseGetGitV1RepoRepoIdGithubSync200 = ResponseGetGitV1RepoRep
|
|
|
2638
2945
|
type responses_ResponseGetGitV1RepoRepoIdVisibility200 = ResponseGetGitV1RepoRepoIdVisibility200;
|
|
2639
2946
|
type responses_ResponseGetGitV1RepoRepoIdVisibility403 = ResponseGetGitV1RepoRepoIdVisibility403;
|
|
2640
2947
|
type responses_ResponseGetGitV1RepoRepoIdVisibility500 = ResponseGetGitV1RepoRepoIdVisibility500;
|
|
2948
|
+
type responses_ResponseGetGitV1RepoRepoSearch200 = ResponseGetGitV1RepoRepoSearch200;
|
|
2949
|
+
type responses_ResponseGetGitV1RepoRepoSearchCommits200 = ResponseGetGitV1RepoRepoSearchCommits200;
|
|
2950
|
+
type responses_ResponseGetGitV1RepoRepoSearchDiffs200 = ResponseGetGitV1RepoRepoSearchDiffs200;
|
|
2951
|
+
type responses_ResponseGetGitV1RepoRepoSearchFiles200 = ResponseGetGitV1RepoRepoSearchFiles200;
|
|
2641
2952
|
type responses_ResponseGetGitV1RepoRepoTrigger200 = ResponseGetGitV1RepoRepoTrigger200;
|
|
2642
2953
|
type responses_ResponseGetGitV1RepoRepoTrigger400 = ResponseGetGitV1RepoRepoTrigger400;
|
|
2643
2954
|
type responses_ResponseGetGitV1RepoRepoTrigger403 = ResponseGetGitV1RepoRepoTrigger403;
|
|
@@ -2683,6 +2994,9 @@ type responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500 = Respon
|
|
|
2683
2994
|
type responses_ResponseGetWebV1Deployments200 = ResponseGetWebV1Deployments200;
|
|
2684
2995
|
type responses_ResponseGetWebV1Deployments500 = ResponseGetWebV1Deployments500;
|
|
2685
2996
|
type responses_ResponsePatchV1CronSchedulesId200 = ResponsePatchV1CronSchedulesId200;
|
|
2997
|
+
type responses_ResponsePatchV1VmsSnapshotsSnapshotId200 = ResponsePatchV1VmsSnapshotsSnapshotId200;
|
|
2998
|
+
type responses_ResponsePatchV1VmsSnapshotsSnapshotId404 = ResponsePatchV1VmsSnapshotsSnapshotId404;
|
|
2999
|
+
type responses_ResponsePatchV1VmsSnapshotsSnapshotId500 = ResponsePatchV1VmsSnapshotsSnapshotId500;
|
|
2686
3000
|
type responses_ResponsePostDnsV1Records200 = ResponsePostDnsV1Records200;
|
|
2687
3001
|
type responses_ResponsePostDnsV1Records403 = ResponsePostDnsV1Records403;
|
|
2688
3002
|
type responses_ResponsePostDnsV1Records500 = ResponsePostDnsV1Records500;
|
|
@@ -2738,9 +3052,6 @@ type responses_ResponsePostV1VmsIdResize400 = ResponsePostV1VmsIdResize400;
|
|
|
2738
3052
|
type responses_ResponsePostV1VmsIdResize404 = ResponsePostV1VmsIdResize404;
|
|
2739
3053
|
type responses_ResponsePostV1VmsIdResize500 = ResponsePostV1VmsIdResize500;
|
|
2740
3054
|
type responses_ResponsePostV1VmsSnapshots200 = ResponsePostV1VmsSnapshots200;
|
|
2741
|
-
type responses_ResponsePostV1VmsSnapshots400 = ResponsePostV1VmsSnapshots400;
|
|
2742
|
-
type responses_ResponsePostV1VmsSnapshots404 = ResponsePostV1VmsSnapshots404;
|
|
2743
|
-
type responses_ResponsePostV1VmsSnapshots500 = ResponsePostV1VmsSnapshots500;
|
|
2744
3055
|
type responses_ResponsePostV1VmsVmIdAwait200 = ResponsePostV1VmsVmIdAwait200;
|
|
2745
3056
|
type responses_ResponsePostV1VmsVmIdAwait500 = ResponsePostV1VmsVmIdAwait500;
|
|
2746
3057
|
type responses_ResponsePostV1VmsVmIdExecAwait200 = ResponsePostV1VmsVmIdExecAwait200;
|
|
@@ -2752,8 +3063,6 @@ type responses_ResponsePostV1VmsVmIdKill500 = ResponsePostV1VmsVmIdKill500;
|
|
|
2752
3063
|
type responses_ResponsePostV1VmsVmIdOptimize200 = ResponsePostV1VmsVmIdOptimize200;
|
|
2753
3064
|
type responses_ResponsePostV1VmsVmIdOptimize500 = ResponsePostV1VmsVmIdOptimize500;
|
|
2754
3065
|
type responses_ResponsePostV1VmsVmIdSnapshot200 = ResponsePostV1VmsVmIdSnapshot200;
|
|
2755
|
-
type responses_ResponsePostV1VmsVmIdSnapshot400 = ResponsePostV1VmsVmIdSnapshot400;
|
|
2756
|
-
type responses_ResponsePostV1VmsVmIdSnapshot500 = ResponsePostV1VmsVmIdSnapshot500;
|
|
2757
3066
|
type responses_ResponsePostV1VmsVmIdStart200 = ResponsePostV1VmsVmIdStart200;
|
|
2758
3067
|
type responses_ResponsePostV1VmsVmIdStop200 = ResponsePostV1VmsVmIdStop200;
|
|
2759
3068
|
type responses_ResponsePostV1VmsVmIdStop400 = ResponsePostV1VmsVmIdStop400;
|
|
@@ -2798,9 +3107,19 @@ type responses_ResponsePutV1VmsVmIdFilesFilepath400 = ResponsePutV1VmsVmIdFilesF
|
|
|
2798
3107
|
type responses_ResponsePutV1VmsVmIdFilesFilepath404 = ResponsePutV1VmsVmIdFilesFilepath404;
|
|
2799
3108
|
type responses_ResponsePutV1VmsVmIdFilesFilepath500 = ResponsePutV1VmsVmIdFilesFilepath500;
|
|
2800
3109
|
declare namespace responses {
|
|
2801
|
-
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_ResponseDeleteDomainsV1MappingsDomain422 as ResponseDeleteDomainsV1MappingsDomain422, 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_ResponseDeleteV1CronSchedulesId200 as ResponseDeleteV1CronSchedulesId200, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId200 as ResponseDeleteV1VmsVmIdSystemdServicesServiceId200, responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId404 as ResponseDeleteV1VmsVmIdSystemdServicesServiceId404, responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId500 as ResponseDeleteV1VmsVmIdSystemdServicesServiceId500, responses_ResponseGetAuthV1Whoami200 as ResponseGetAuthV1Whoami200, 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_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_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoIdVisibility200 as ResponseGetGitV1RepoRepoIdVisibility200, responses_ResponseGetGitV1RepoRepoIdVisibility403 as ResponseGetGitV1RepoRepoIdVisibility403, responses_ResponseGetGitV1RepoRepoIdVisibility500 as ResponseGetGitV1RepoRepoIdVisibility500, 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_ResponseGetV1CronSchedules200 as ResponseGetV1CronSchedules200, responses_ResponseGetV1CronSchedulesId200 as ResponseGetV1CronSchedulesId200, responses_ResponseGetV1CronSchedulesIdExecutions200 as ResponseGetV1CronSchedulesIdExecutions200, responses_ResponseGetV1CronSchedulesIdMetricsTimeline200 as ResponseGetV1CronSchedulesIdMetricsTimeline200, responses_ResponseGetV1CronSchedulesIdSuccessRate200 as ResponseGetV1CronSchedulesIdSuccessRate200, 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_ResponseGetV1VmsVmIdSystemdServices200 as ResponseGetV1VmsVmIdSystemdServices200, responses_ResponseGetV1VmsVmIdSystemdServices500 as ResponseGetV1VmsVmIdSystemdServices500, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs200 as ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs200, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs404 as ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs404, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs500 as ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs500, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus200 as ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus200, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus404 as ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus404, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus500 as ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus500, 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_ResponsePatchV1CronSchedulesId200 as ResponsePatchV1CronSchedulesId200, 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_ResponsePostDomainsV1MappingsDomain4XX as ResponsePostDomainsV1MappingsDomain4XX, responses_ResponsePostDomainsV1MappingsDomain5XX as ResponsePostDomainsV1MappingsDomain5XX, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostExecuteV2Script200 as ResponsePostExecuteV2Script200, responses_ResponsePostExecuteV2Script403 as ResponsePostExecuteV2Script403, responses_ResponsePostExecuteV3Script200 as ResponsePostExecuteV3Script200, responses_ResponsePostExecuteV3Script403 as ResponsePostExecuteV3Script403, 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_ResponsePostGitV1Repo403 as ResponsePostGitV1Repo403, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoCommits200 as ResponsePostGitV1RepoRepoCommits200, responses_ResponsePostGitV1RepoRepoCommits403 as ResponsePostGitV1RepoRepoCommits403, responses_ResponsePostGitV1RepoRepoCommits500 as ResponsePostGitV1RepoRepoCommits500, responses_ResponsePostGitV1RepoRepoGitCommits200 as ResponsePostGitV1RepoRepoGitCommits200, responses_ResponsePostGitV1RepoRepoGitCommits403 as ResponsePostGitV1RepoRepoGitCommits403, responses_ResponsePostGitV1RepoRepoGitCommits500 as ResponsePostGitV1RepoRepoGitCommits500, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch200 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch400 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch400, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch403 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch403, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch500 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch500, 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_ResponsePostV1CronSchedules200 as ResponsePostV1CronSchedules200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, 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_ResponsePostV1VmsVmIdFork403 as ResponsePostV1VmsVmIdFork403, 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_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop400 as ResponsePostV1VmsVmIdStop400, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostV1VmsVmIdSystemdRestart200 as ResponsePostV1VmsVmIdSystemdRestart200, responses_ResponsePostV1VmsVmIdSystemdRestart500 as ResponsePostV1VmsVmIdSystemdRestart500, responses_ResponsePostV1VmsVmIdSystemdServices200 as ResponsePostV1VmsVmIdSystemdServices200, responses_ResponsePostV1VmsVmIdSystemdServices409 as ResponsePostV1VmsVmIdSystemdServices409, responses_ResponsePostV1VmsVmIdSystemdServices500 as ResponsePostV1VmsVmIdSystemdServices500, responses_ResponsePostV1VmsVmIdSystemdStart200 as ResponsePostV1VmsVmIdSystemdStart200, responses_ResponsePostV1VmsVmIdSystemdStart500 as ResponsePostV1VmsVmIdSystemdStart500, responses_ResponsePostV1VmsVmIdSystemdStop200 as ResponsePostV1VmsVmIdSystemdStop200, responses_ResponsePostV1VmsVmIdSystemdStop500 as ResponsePostV1VmsVmIdSystemdStop500, 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_ResponsePutDomainsV1Verifications401 as ResponsePutDomainsV1Verifications401, responses_ResponsePutDomainsV1Verifications403 as ResponsePutDomainsV1Verifications403, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutDomainsV1Verifications422 as ResponsePutDomainsV1Verifications422, responses_ResponsePutDomainsV1Verifications500 as ResponsePutDomainsV1Verifications500, responses_ResponsePutDomainsV1Verifications502 as ResponsePutDomainsV1Verifications502, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutGitV1RepoRepoIdVisibility200 as ResponsePutGitV1RepoRepoIdVisibility200, responses_ResponsePutGitV1RepoRepoIdVisibility403 as ResponsePutGitV1RepoRepoIdVisibility403, responses_ResponsePutGitV1RepoRepoIdVisibility500 as ResponsePutGitV1RepoRepoIdVisibility500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
|
|
3110
|
+
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_ResponseDeleteDomainsV1MappingsDomain422 as ResponseDeleteDomainsV1MappingsDomain422, 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_ResponseDeleteV1CronSchedulesId200 as ResponseDeleteV1CronSchedulesId200, responses_ResponseDeleteV1VmsSnapshotsSnapshotId200 as ResponseDeleteV1VmsSnapshotsSnapshotId200, responses_ResponseDeleteV1VmsSnapshotsSnapshotId404 as ResponseDeleteV1VmsSnapshotsSnapshotId404, responses_ResponseDeleteV1VmsSnapshotsSnapshotId409 as ResponseDeleteV1VmsSnapshotsSnapshotId409, responses_ResponseDeleteV1VmsSnapshotsSnapshotId500 as ResponseDeleteV1VmsSnapshotsSnapshotId500, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId200 as ResponseDeleteV1VmsVmIdSystemdServicesServiceId200, responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId404 as ResponseDeleteV1VmsVmIdSystemdServicesServiceId404, responses_ResponseDeleteV1VmsVmIdSystemdServicesServiceId500 as ResponseDeleteV1VmsVmIdSystemdServicesServiceId500, responses_ResponseGetAuthV1BackgroundRequestsRequestId202 as ResponseGetAuthV1BackgroundRequestsRequestId202, responses_ResponseGetAuthV1BackgroundRequestsRequestId404 as ResponseGetAuthV1BackgroundRequestsRequestId404, responses_ResponseGetAuthV1BackgroundTest200 as ResponseGetAuthV1BackgroundTest200, responses_ResponseGetAuthV1BackgroundTest400 as ResponseGetAuthV1BackgroundTest400, responses_ResponseGetAuthV1Whoami200 as ResponseGetAuthV1Whoami200, 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_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_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoIdVisibility200 as ResponseGetGitV1RepoRepoIdVisibility200, responses_ResponseGetGitV1RepoRepoIdVisibility403 as ResponseGetGitV1RepoRepoIdVisibility403, responses_ResponseGetGitV1RepoRepoIdVisibility500 as ResponseGetGitV1RepoRepoIdVisibility500, responses_ResponseGetGitV1RepoRepoSearch200 as ResponseGetGitV1RepoRepoSearch200, responses_ResponseGetGitV1RepoRepoSearchCommits200 as ResponseGetGitV1RepoRepoSearchCommits200, responses_ResponseGetGitV1RepoRepoSearchDiffs200 as ResponseGetGitV1RepoRepoSearchDiffs200, responses_ResponseGetGitV1RepoRepoSearchFiles200 as ResponseGetGitV1RepoRepoSearchFiles200, 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_ResponseGetV1CronSchedules200 as ResponseGetV1CronSchedules200, responses_ResponseGetV1CronSchedulesId200 as ResponseGetV1CronSchedulesId200, responses_ResponseGetV1CronSchedulesIdExecutions200 as ResponseGetV1CronSchedulesIdExecutions200, responses_ResponseGetV1CronSchedulesIdMetricsTimeline200 as ResponseGetV1CronSchedulesIdMetricsTimeline200, responses_ResponseGetV1CronSchedulesIdSuccessRate200 as ResponseGetV1CronSchedulesIdSuccessRate200, 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_ResponseGetV1VmsVmIdSystemdServices200 as ResponseGetV1VmsVmIdSystemdServices200, responses_ResponseGetV1VmsVmIdSystemdServices500 as ResponseGetV1VmsVmIdSystemdServices500, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs200 as ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs200, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs404 as ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs404, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs500 as ResponseGetV1VmsVmIdSystemdServicesServiceIdLogs500, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus200 as ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus200, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus404 as ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus404, responses_ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus500 as ResponseGetV1VmsVmIdSystemdServicesServiceIdStatus500, 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_ResponsePatchV1CronSchedulesId200 as ResponsePatchV1CronSchedulesId200, responses_ResponsePatchV1VmsSnapshotsSnapshotId200 as ResponsePatchV1VmsSnapshotsSnapshotId200, responses_ResponsePatchV1VmsSnapshotsSnapshotId404 as ResponsePatchV1VmsSnapshotsSnapshotId404, responses_ResponsePatchV1VmsSnapshotsSnapshotId500 as ResponsePatchV1VmsSnapshotsSnapshotId500, 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_ResponsePostDomainsV1MappingsDomain4XX as ResponsePostDomainsV1MappingsDomain4XX, responses_ResponsePostDomainsV1MappingsDomain5XX as ResponsePostDomainsV1MappingsDomain5XX, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostExecuteV2Script200 as ResponsePostExecuteV2Script200, responses_ResponsePostExecuteV2Script403 as ResponsePostExecuteV2Script403, responses_ResponsePostExecuteV3Script200 as ResponsePostExecuteV3Script200, responses_ResponsePostExecuteV3Script403 as ResponsePostExecuteV3Script403, 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_ResponsePostGitV1Repo403 as ResponsePostGitV1Repo403, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoCommits200 as ResponsePostGitV1RepoRepoCommits200, responses_ResponsePostGitV1RepoRepoCommits403 as ResponsePostGitV1RepoRepoCommits403, responses_ResponsePostGitV1RepoRepoCommits500 as ResponsePostGitV1RepoRepoCommits500, responses_ResponsePostGitV1RepoRepoGitCommits200 as ResponsePostGitV1RepoRepoGitCommits200, responses_ResponsePostGitV1RepoRepoGitCommits403 as ResponsePostGitV1RepoRepoGitCommits403, responses_ResponsePostGitV1RepoRepoGitCommits500 as ResponsePostGitV1RepoRepoGitCommits500, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch200 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch400 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch400, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch403 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch403, responses_ResponsePostGitV1RepoRepoGitRefsHeadsBranch500 as ResponsePostGitV1RepoRepoGitRefsHeadsBranch500, 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_ResponsePostV1CronSchedules200 as ResponsePostV1CronSchedules200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, responses_ResponsePostV1VmsIdResize200 as ResponsePostV1VmsIdResize200, responses_ResponsePostV1VmsIdResize400 as ResponsePostV1VmsIdResize400, responses_ResponsePostV1VmsIdResize404 as ResponsePostV1VmsIdResize404, responses_ResponsePostV1VmsIdResize500 as ResponsePostV1VmsIdResize500, responses_ResponsePostV1VmsSnapshots200 as ResponsePostV1VmsSnapshots200, responses_ResponsePostV1VmsVmIdAwait200 as ResponsePostV1VmsVmIdAwait200, responses_ResponsePostV1VmsVmIdAwait500 as ResponsePostV1VmsVmIdAwait500, responses_ResponsePostV1VmsVmIdExecAwait200 as ResponsePostV1VmsVmIdExecAwait200, responses_ResponsePostV1VmsVmIdExecAwait500 as ResponsePostV1VmsVmIdExecAwait500, responses_ResponsePostV1VmsVmIdFork200 as ResponsePostV1VmsVmIdFork200, responses_ResponsePostV1VmsVmIdFork403 as ResponsePostV1VmsVmIdFork403, responses_ResponsePostV1VmsVmIdKill200 as ResponsePostV1VmsVmIdKill200, responses_ResponsePostV1VmsVmIdKill500 as ResponsePostV1VmsVmIdKill500, responses_ResponsePostV1VmsVmIdOptimize200 as ResponsePostV1VmsVmIdOptimize200, responses_ResponsePostV1VmsVmIdOptimize500 as ResponsePostV1VmsVmIdOptimize500, responses_ResponsePostV1VmsVmIdSnapshot200 as ResponsePostV1VmsVmIdSnapshot200, responses_ResponsePostV1VmsVmIdStart200 as ResponsePostV1VmsVmIdStart200, responses_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop400 as ResponsePostV1VmsVmIdStop400, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostV1VmsVmIdSystemdRestart200 as ResponsePostV1VmsVmIdSystemdRestart200, responses_ResponsePostV1VmsVmIdSystemdRestart500 as ResponsePostV1VmsVmIdSystemdRestart500, responses_ResponsePostV1VmsVmIdSystemdServices200 as ResponsePostV1VmsVmIdSystemdServices200, responses_ResponsePostV1VmsVmIdSystemdServices409 as ResponsePostV1VmsVmIdSystemdServices409, responses_ResponsePostV1VmsVmIdSystemdServices500 as ResponsePostV1VmsVmIdSystemdServices500, responses_ResponsePostV1VmsVmIdSystemdStart200 as ResponsePostV1VmsVmIdSystemdStart200, responses_ResponsePostV1VmsVmIdSystemdStart500 as ResponsePostV1VmsVmIdSystemdStart500, responses_ResponsePostV1VmsVmIdSystemdStop200 as ResponsePostV1VmsVmIdSystemdStop200, responses_ResponsePostV1VmsVmIdSystemdStop500 as ResponsePostV1VmsVmIdSystemdStop500, 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_ResponsePutDomainsV1Verifications401 as ResponsePutDomainsV1Verifications401, responses_ResponsePutDomainsV1Verifications403 as ResponsePutDomainsV1Verifications403, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutDomainsV1Verifications422 as ResponsePutDomainsV1Verifications422, responses_ResponsePutDomainsV1Verifications500 as ResponsePutDomainsV1Verifications500, responses_ResponsePutDomainsV1Verifications502 as ResponsePutDomainsV1Verifications502, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutGitV1RepoRepoIdVisibility200 as ResponsePutGitV1RepoRepoIdVisibility200, responses_ResponsePutGitV1RepoRepoIdVisibility403 as ResponsePutGitV1RepoRepoIdVisibility403, responses_ResponsePutGitV1RepoRepoIdVisibility500 as ResponsePutGitV1RepoRepoIdVisibility500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
|
|
2802
3111
|
}
|
|
2803
3112
|
|
|
3113
|
+
interface GetAuthV1BackgroundRequestsRequestIdPathParams {
|
|
3114
|
+
/**
|
|
3115
|
+
* Background request ID
|
|
3116
|
+
*/
|
|
3117
|
+
request_id: string;
|
|
3118
|
+
}
|
|
3119
|
+
interface GetAuthV1BackgroundTestQueryParams {
|
|
3120
|
+
sleepSecs?: number;
|
|
3121
|
+
message?: string;
|
|
3122
|
+
}
|
|
2804
3123
|
interface GetDnsV1RecordsQueryParams {
|
|
2805
3124
|
domain: string;
|
|
2806
3125
|
}
|
|
@@ -3555,60 +3874,204 @@ interface GetGitV1RepoRepoGitTreesHashPathParams {
|
|
|
3555
3874
|
*/
|
|
3556
3875
|
hash: string;
|
|
3557
3876
|
}
|
|
3558
|
-
interface
|
|
3877
|
+
interface GetGitV1RepoRepoSearchPathParams {
|
|
3559
3878
|
/**
|
|
3560
3879
|
* The repository id
|
|
3561
3880
|
*/
|
|
3562
3881
|
repo: string;
|
|
3563
3882
|
}
|
|
3564
|
-
interface
|
|
3883
|
+
interface GetGitV1RepoRepoSearchQueryParams {
|
|
3884
|
+
/**
|
|
3885
|
+
* The text (or regex pattern) to search for in file contents.
|
|
3886
|
+
*/
|
|
3887
|
+
query: string;
|
|
3565
3888
|
/**
|
|
3566
3889
|
* The git revision (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
3567
3890
|
*/
|
|
3568
3891
|
rev?: string;
|
|
3569
|
-
}
|
|
3570
|
-
interface GetGitV1RepoRepoTriggerPathParams {
|
|
3571
3892
|
/**
|
|
3572
|
-
*
|
|
3893
|
+
* Optional glob pattern to filter included file paths (e.g. "*.rs", "src/** /*.ts").
|
|
3573
3894
|
*/
|
|
3574
|
-
|
|
3575
|
-
}
|
|
3576
|
-
interface PostGitV1RepoRepoTriggerPathParams {
|
|
3895
|
+
pathPattern?: string;
|
|
3577
3896
|
/**
|
|
3578
|
-
*
|
|
3897
|
+
* Optional glob pattern to exclude file paths (e.g. "node_modules/**", "*.min.js").
|
|
3579
3898
|
*/
|
|
3580
|
-
|
|
3581
|
-
}
|
|
3582
|
-
interface PostGitV1RepoRepoTriggerRequestBody {
|
|
3583
|
-
trigger: {
|
|
3584
|
-
branches?: string[] | null;
|
|
3585
|
-
globs?: string[] | null;
|
|
3586
|
-
event: "push";
|
|
3587
|
-
};
|
|
3588
|
-
action: {
|
|
3589
|
-
endpoint: string;
|
|
3590
|
-
action: "webhook";
|
|
3591
|
-
};
|
|
3592
|
-
}
|
|
3593
|
-
interface DeleteGitV1RepoRepoTriggerTriggerPathParams {
|
|
3899
|
+
excludePattern?: string;
|
|
3594
3900
|
/**
|
|
3595
|
-
*
|
|
3901
|
+
* Maximum number of matching files to return. Defaults to 100, max 1000.
|
|
3596
3902
|
*/
|
|
3597
|
-
|
|
3903
|
+
maxResults?: number;
|
|
3598
3904
|
/**
|
|
3599
|
-
*
|
|
3905
|
+
* Whether the query is a case-sensitive search. Defaults to false.
|
|
3600
3906
|
*/
|
|
3601
|
-
|
|
3602
|
-
}
|
|
3603
|
-
interface GetGitV1RepoRepoZipPathParams {
|
|
3907
|
+
caseSensitive?: boolean;
|
|
3604
3908
|
/**
|
|
3605
|
-
*
|
|
3909
|
+
* Whether the query is a regex pattern. Defaults to false.
|
|
3606
3910
|
*/
|
|
3607
|
-
|
|
3608
|
-
}
|
|
3609
|
-
interface GetGitV1RepoRepoZipQueryParams {
|
|
3911
|
+
isRegex?: boolean;
|
|
3610
3912
|
/**
|
|
3611
|
-
*
|
|
3913
|
+
* Whether to match whole words only. Defaults to false.
|
|
3914
|
+
*/
|
|
3915
|
+
wholeWord?: boolean;
|
|
3916
|
+
/**
|
|
3917
|
+
* Number of results to skip for pagination. Defaults to 0.
|
|
3918
|
+
*/
|
|
3919
|
+
offset?: number;
|
|
3920
|
+
}
|
|
3921
|
+
interface GetGitV1RepoRepoSearchCommitsPathParams {
|
|
3922
|
+
/**
|
|
3923
|
+
* The repository id
|
|
3924
|
+
*/
|
|
3925
|
+
repo: string;
|
|
3926
|
+
}
|
|
3927
|
+
interface GetGitV1RepoRepoSearchCommitsQueryParams {
|
|
3928
|
+
/**
|
|
3929
|
+
* The text (or regex pattern) to search for in commit messages.
|
|
3930
|
+
*/
|
|
3931
|
+
query: string;
|
|
3932
|
+
/**
|
|
3933
|
+
* The git revision to start walking from. Defaults to HEAD.
|
|
3934
|
+
*/
|
|
3935
|
+
rev?: string;
|
|
3936
|
+
/**
|
|
3937
|
+
* Maximum number of matching commits to return. Defaults to 100, max 1000.
|
|
3938
|
+
*/
|
|
3939
|
+
maxResults?: number;
|
|
3940
|
+
/**
|
|
3941
|
+
* Whether the query is a regex. Defaults to false.
|
|
3942
|
+
*/
|
|
3943
|
+
isRegex?: boolean;
|
|
3944
|
+
/**
|
|
3945
|
+
* Whether the query is case-sensitive. Defaults to false.
|
|
3946
|
+
*/
|
|
3947
|
+
caseSensitive?: boolean;
|
|
3948
|
+
}
|
|
3949
|
+
interface GetGitV1RepoRepoSearchDiffsPathParams {
|
|
3950
|
+
/**
|
|
3951
|
+
* The repository id
|
|
3952
|
+
*/
|
|
3953
|
+
repo: string;
|
|
3954
|
+
}
|
|
3955
|
+
interface GetGitV1RepoRepoSearchDiffsQueryParams {
|
|
3956
|
+
/**
|
|
3957
|
+
* The text (or regex pattern) to search for in changed file content.
|
|
3958
|
+
*/
|
|
3959
|
+
query: string;
|
|
3960
|
+
/**
|
|
3961
|
+
* The git revision to start walking from. Defaults to HEAD.
|
|
3962
|
+
*/
|
|
3963
|
+
rev?: string;
|
|
3964
|
+
/**
|
|
3965
|
+
* Optional glob pattern to filter included file paths.
|
|
3966
|
+
*/
|
|
3967
|
+
pathPattern?: string;
|
|
3968
|
+
/**
|
|
3969
|
+
* Optional glob pattern to exclude file paths.
|
|
3970
|
+
*/
|
|
3971
|
+
excludePattern?: string;
|
|
3972
|
+
/**
|
|
3973
|
+
* Maximum number of matching commits to return. Defaults to 100, max 1000.
|
|
3974
|
+
*/
|
|
3975
|
+
maxResults?: number;
|
|
3976
|
+
/**
|
|
3977
|
+
* Whether the query is case-sensitive. Defaults to false.
|
|
3978
|
+
*/
|
|
3979
|
+
caseSensitive?: boolean;
|
|
3980
|
+
/**
|
|
3981
|
+
* Whether the query is a regex pattern. Defaults to false.
|
|
3982
|
+
*/
|
|
3983
|
+
isRegex?: boolean;
|
|
3984
|
+
/**
|
|
3985
|
+
* Whether to match whole words only. Defaults to false.
|
|
3986
|
+
*/
|
|
3987
|
+
wholeWord?: boolean;
|
|
3988
|
+
/**
|
|
3989
|
+
* Number of results to skip for pagination. Defaults to 0.
|
|
3990
|
+
*/
|
|
3991
|
+
offset?: number;
|
|
3992
|
+
}
|
|
3993
|
+
interface GetGitV1RepoRepoSearchFilesPathParams {
|
|
3994
|
+
/**
|
|
3995
|
+
* The repository id
|
|
3996
|
+
*/
|
|
3997
|
+
repo: string;
|
|
3998
|
+
}
|
|
3999
|
+
interface GetGitV1RepoRepoSearchFilesQueryParams {
|
|
4000
|
+
/**
|
|
4001
|
+
* The filename pattern to search for (matched against full paths).
|
|
4002
|
+
*/
|
|
4003
|
+
query: string;
|
|
4004
|
+
/**
|
|
4005
|
+
* The git revision (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
4006
|
+
*/
|
|
4007
|
+
rev?: string;
|
|
4008
|
+
/**
|
|
4009
|
+
* Maximum number of results. Defaults to 100, max 1000.
|
|
4010
|
+
*/
|
|
4011
|
+
maxResults?: number;
|
|
4012
|
+
/**
|
|
4013
|
+
* Whether the query is a regex. Defaults to false (glob-style matching).
|
|
4014
|
+
*/
|
|
4015
|
+
isRegex?: boolean;
|
|
4016
|
+
/**
|
|
4017
|
+
* Whether the query is case-sensitive. Defaults to false.
|
|
4018
|
+
*/
|
|
4019
|
+
caseSensitive?: boolean;
|
|
4020
|
+
}
|
|
4021
|
+
interface GetGitV1RepoRepoTarballPathParams {
|
|
4022
|
+
/**
|
|
4023
|
+
* The repository id
|
|
4024
|
+
*/
|
|
4025
|
+
repo: string;
|
|
4026
|
+
}
|
|
4027
|
+
interface GetGitV1RepoRepoTarballQueryParams {
|
|
4028
|
+
/**
|
|
4029
|
+
* The git revision (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
4030
|
+
*/
|
|
4031
|
+
rev?: string;
|
|
4032
|
+
}
|
|
4033
|
+
interface GetGitV1RepoRepoTriggerPathParams {
|
|
4034
|
+
/**
|
|
4035
|
+
* The repository id
|
|
4036
|
+
*/
|
|
4037
|
+
repo: string;
|
|
4038
|
+
}
|
|
4039
|
+
interface PostGitV1RepoRepoTriggerPathParams {
|
|
4040
|
+
/**
|
|
4041
|
+
* The repository id
|
|
4042
|
+
*/
|
|
4043
|
+
repo: string;
|
|
4044
|
+
}
|
|
4045
|
+
interface PostGitV1RepoRepoTriggerRequestBody {
|
|
4046
|
+
trigger: {
|
|
4047
|
+
branches?: string[] | null;
|
|
4048
|
+
globs?: string[] | null;
|
|
4049
|
+
event: "push";
|
|
4050
|
+
};
|
|
4051
|
+
action: {
|
|
4052
|
+
endpoint: string;
|
|
4053
|
+
action: "webhook";
|
|
4054
|
+
};
|
|
4055
|
+
}
|
|
4056
|
+
interface DeleteGitV1RepoRepoTriggerTriggerPathParams {
|
|
4057
|
+
/**
|
|
4058
|
+
* The repository id
|
|
4059
|
+
*/
|
|
4060
|
+
repo: string;
|
|
4061
|
+
/**
|
|
4062
|
+
* The trigger id
|
|
4063
|
+
*/
|
|
4064
|
+
trigger: string;
|
|
4065
|
+
}
|
|
4066
|
+
interface GetGitV1RepoRepoZipPathParams {
|
|
4067
|
+
/**
|
|
4068
|
+
* The repository id
|
|
4069
|
+
*/
|
|
4070
|
+
repo: string;
|
|
4071
|
+
}
|
|
4072
|
+
interface GetGitV1RepoRepoZipQueryParams {
|
|
4073
|
+
/**
|
|
4074
|
+
* The git revision (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
3612
4075
|
*/
|
|
3613
4076
|
rev?: string;
|
|
3614
4077
|
}
|
|
@@ -3752,8 +4215,11 @@ interface DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams {
|
|
|
3752
4215
|
}
|
|
3753
4216
|
interface GetObservabilityV1LogsQueryParams {
|
|
3754
4217
|
deploymentId?: string | null;
|
|
4218
|
+
requestId?: string | null;
|
|
3755
4219
|
instanceId?: string | null;
|
|
3756
4220
|
domain?: string | null;
|
|
4221
|
+
vmId?: string | null;
|
|
4222
|
+
vmService?: string | null;
|
|
3757
4223
|
pageToken?: string | null;
|
|
3758
4224
|
pageSize?: number | null;
|
|
3759
4225
|
/**
|
|
@@ -3834,6 +4300,9 @@ interface GetV1CronSchedulesIdSuccessRateQueryParams {
|
|
|
3834
4300
|
start: string;
|
|
3835
4301
|
end: string;
|
|
3836
4302
|
}
|
|
4303
|
+
interface GetV1VmsQueryParams {
|
|
4304
|
+
includeDeleted?: boolean | null;
|
|
4305
|
+
}
|
|
3837
4306
|
interface PostV1VmsRequestBody {
|
|
3838
4307
|
idleTimeoutSeconds?: number | null;
|
|
3839
4308
|
/**
|
|
@@ -4469,8 +4938,8 @@ interface PostV1VmsRequestBody {
|
|
|
4469
4938
|
aptDeps?: string[] | null;
|
|
4470
4939
|
/**
|
|
4471
4940
|
* When true, bypasses the snapshot cache and always creates a new snapshot.
|
|
4472
|
-
* The new snapshot still stores the template hash, so it becomes the updated
|
|
4473
|
-
*
|
|
4941
|
+
* The new snapshot still stores the template hash, so it becomes the updated cache entry
|
|
4942
|
+
* for future requests that do not set skip_cache.
|
|
4474
4943
|
*/
|
|
4475
4944
|
skipCache?: boolean | null;
|
|
4476
4945
|
};
|
|
@@ -4541,6 +5010,10 @@ interface PostV1VmsRequestBody {
|
|
|
4541
5010
|
}[] | null;
|
|
4542
5011
|
activityThresholdBytes?: number | null;
|
|
4543
5012
|
}
|
|
5013
|
+
interface GetV1VmsSnapshotsQueryParams {
|
|
5014
|
+
includeDeleted?: boolean | null;
|
|
5015
|
+
includeFailed?: boolean | null;
|
|
5016
|
+
}
|
|
4544
5017
|
interface PostV1VmsSnapshotsRequestBody {
|
|
4545
5018
|
name?: string | null;
|
|
4546
5019
|
template: {
|
|
@@ -4891,8 +5364,8 @@ interface PostV1VmsSnapshotsRequestBody {
|
|
|
4891
5364
|
aptDeps?: string[] | null;
|
|
4892
5365
|
/**
|
|
4893
5366
|
* When true, bypasses the snapshot cache and always creates a new snapshot.
|
|
4894
|
-
* The new snapshot still stores the template hash, so it becomes the updated
|
|
4895
|
-
*
|
|
5367
|
+
* The new snapshot still stores the template hash, so it becomes the updated cache entry
|
|
5368
|
+
* for future requests that do not set skip_cache.
|
|
4896
5369
|
*/
|
|
4897
5370
|
skipCache?: boolean | null;
|
|
4898
5371
|
};
|
|
@@ -4903,6 +5376,21 @@ interface PostV1VmsSnapshotsRequestBody {
|
|
|
4903
5376
|
type: "persistent";
|
|
4904
5377
|
});
|
|
4905
5378
|
}
|
|
5379
|
+
interface DeleteV1VmsSnapshotsSnapshotIdPathParams {
|
|
5380
|
+
/**
|
|
5381
|
+
* The ID of the snapshot to delete
|
|
5382
|
+
*/
|
|
5383
|
+
snapshot_id: string;
|
|
5384
|
+
}
|
|
5385
|
+
interface PatchV1VmsSnapshotsSnapshotIdPathParams {
|
|
5386
|
+
/**
|
|
5387
|
+
* The ID of the snapshot to update
|
|
5388
|
+
*/
|
|
5389
|
+
snapshot_id: string;
|
|
5390
|
+
}
|
|
5391
|
+
interface PatchV1VmsSnapshotsSnapshotIdRequestBody {
|
|
5392
|
+
name?: string | null;
|
|
5393
|
+
}
|
|
4906
5394
|
interface PostV1VmsIdResizePathParams {
|
|
4907
5395
|
id: string;
|
|
4908
5396
|
}
|
|
@@ -4990,6 +5478,12 @@ interface PostV1VmsVmIdSnapshotRequestBody {
|
|
|
4990
5478
|
* Optional name/label for the snapshot
|
|
4991
5479
|
*/
|
|
4992
5480
|
name?: string | null;
|
|
5481
|
+
persistence?: null | ({
|
|
5482
|
+
priority?: number | null;
|
|
5483
|
+
type: "sticky";
|
|
5484
|
+
} | {
|
|
5485
|
+
type: "persistent";
|
|
5486
|
+
});
|
|
4993
5487
|
}
|
|
4994
5488
|
interface PostV1VmsVmIdStartPathParams {
|
|
4995
5489
|
vm_id: string;
|
|
@@ -5629,9 +6123,12 @@ type requests_DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams = D
|
|
|
5629
6123
|
type requests_DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams = DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams;
|
|
5630
6124
|
type requests_DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams = DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams;
|
|
5631
6125
|
type requests_DeleteV1CronSchedulesIdPathParams = DeleteV1CronSchedulesIdPathParams;
|
|
6126
|
+
type requests_DeleteV1VmsSnapshotsSnapshotIdPathParams = DeleteV1VmsSnapshotsSnapshotIdPathParams;
|
|
5632
6127
|
type requests_DeleteV1VmsVmIdPathParams = DeleteV1VmsVmIdPathParams;
|
|
5633
6128
|
type requests_DeleteV1VmsVmIdSystemdServicesServiceIdPathParams = DeleteV1VmsVmIdSystemdServicesServiceIdPathParams;
|
|
5634
6129
|
type requests_DeleteWebV1DeploymentsDeploymentIdFetchPathParams = DeleteWebV1DeploymentsDeploymentIdFetchPathParams;
|
|
6130
|
+
type requests_GetAuthV1BackgroundRequestsRequestIdPathParams = GetAuthV1BackgroundRequestsRequestIdPathParams;
|
|
6131
|
+
type requests_GetAuthV1BackgroundTestQueryParams = GetAuthV1BackgroundTestQueryParams;
|
|
5635
6132
|
type requests_GetDnsV1RecordsQueryParams = GetDnsV1RecordsQueryParams;
|
|
5636
6133
|
type requests_GetDomainsV1DomainsQueryParams = GetDomainsV1DomainsQueryParams;
|
|
5637
6134
|
type requests_GetDomainsV1MappingsQueryParams = GetDomainsV1MappingsQueryParams;
|
|
@@ -5661,6 +6158,14 @@ type requests_GetGitV1RepoRepoIdDefaultBranchPathParams = GetGitV1RepoRepoIdDefa
|
|
|
5661
6158
|
type requests_GetGitV1RepoRepoIdGithubSyncPathParams = GetGitV1RepoRepoIdGithubSyncPathParams;
|
|
5662
6159
|
type requests_GetGitV1RepoRepoIdVisibilityPathParams = GetGitV1RepoRepoIdVisibilityPathParams;
|
|
5663
6160
|
type requests_GetGitV1RepoRepoPathParams = GetGitV1RepoRepoPathParams;
|
|
6161
|
+
type requests_GetGitV1RepoRepoSearchCommitsPathParams = GetGitV1RepoRepoSearchCommitsPathParams;
|
|
6162
|
+
type requests_GetGitV1RepoRepoSearchCommitsQueryParams = GetGitV1RepoRepoSearchCommitsQueryParams;
|
|
6163
|
+
type requests_GetGitV1RepoRepoSearchDiffsPathParams = GetGitV1RepoRepoSearchDiffsPathParams;
|
|
6164
|
+
type requests_GetGitV1RepoRepoSearchDiffsQueryParams = GetGitV1RepoRepoSearchDiffsQueryParams;
|
|
6165
|
+
type requests_GetGitV1RepoRepoSearchFilesPathParams = GetGitV1RepoRepoSearchFilesPathParams;
|
|
6166
|
+
type requests_GetGitV1RepoRepoSearchFilesQueryParams = GetGitV1RepoRepoSearchFilesQueryParams;
|
|
6167
|
+
type requests_GetGitV1RepoRepoSearchPathParams = GetGitV1RepoRepoSearchPathParams;
|
|
6168
|
+
type requests_GetGitV1RepoRepoSearchQueryParams = GetGitV1RepoRepoSearchQueryParams;
|
|
5664
6169
|
type requests_GetGitV1RepoRepoTarballPathParams = GetGitV1RepoRepoTarballPathParams;
|
|
5665
6170
|
type requests_GetGitV1RepoRepoTarballQueryParams = GetGitV1RepoRepoTarballQueryParams;
|
|
5666
6171
|
type requests_GetGitV1RepoRepoTriggerPathParams = GetGitV1RepoRepoTriggerPathParams;
|
|
@@ -5683,6 +6188,8 @@ type requests_GetV1CronSchedulesIdPathParams = GetV1CronSchedulesIdPathParams;
|
|
|
5683
6188
|
type requests_GetV1CronSchedulesIdSuccessRatePathParams = GetV1CronSchedulesIdSuccessRatePathParams;
|
|
5684
6189
|
type requests_GetV1CronSchedulesIdSuccessRateQueryParams = GetV1CronSchedulesIdSuccessRateQueryParams;
|
|
5685
6190
|
type requests_GetV1CronSchedulesQueryParams = GetV1CronSchedulesQueryParams;
|
|
6191
|
+
type requests_GetV1VmsQueryParams = GetV1VmsQueryParams;
|
|
6192
|
+
type requests_GetV1VmsSnapshotsQueryParams = GetV1VmsSnapshotsQueryParams;
|
|
5686
6193
|
type requests_GetV1VmsVmIdFilesFilepathPathParams = GetV1VmsVmIdFilesFilepathPathParams;
|
|
5687
6194
|
type requests_GetV1VmsVmIdPathParams = GetV1VmsVmIdPathParams;
|
|
5688
6195
|
type requests_GetV1VmsVmIdSystemdServicesPathParams = GetV1VmsVmIdSystemdServicesPathParams;
|
|
@@ -5699,6 +6206,8 @@ type requests_PatchGitV1IdentityIdentityPermissionsRepoPathParams = PatchGitV1Id
|
|
|
5699
6206
|
type requests_PatchGitV1IdentityIdentityPermissionsRepoRequestBody = PatchGitV1IdentityIdentityPermissionsRepoRequestBody;
|
|
5700
6207
|
type requests_PatchV1CronSchedulesIdPathParams = PatchV1CronSchedulesIdPathParams;
|
|
5701
6208
|
type requests_PatchV1CronSchedulesIdRequestBody = PatchV1CronSchedulesIdRequestBody;
|
|
6209
|
+
type requests_PatchV1VmsSnapshotsSnapshotIdPathParams = PatchV1VmsSnapshotsSnapshotIdPathParams;
|
|
6210
|
+
type requests_PatchV1VmsSnapshotsSnapshotIdRequestBody = PatchV1VmsSnapshotsSnapshotIdRequestBody;
|
|
5702
6211
|
type requests_PatchWebV1DeploymentsDeploymentIdFetchPathParams = PatchWebV1DeploymentsDeploymentIdFetchPathParams;
|
|
5703
6212
|
type requests_PostDnsV1RecordsRequestBody = PostDnsV1RecordsRequestBody;
|
|
5704
6213
|
type requests_PostDomainsV1CertsDomainWildcardPathParams = PostDomainsV1CertsDomainWildcardPathParams;
|
|
@@ -5778,10 +6287,17 @@ type requests_PutV1VmsVmIdFilesFilepathPathParams = PutV1VmsVmIdFilesFilepathPat
|
|
|
5778
6287
|
type requests_PutV1VmsVmIdFilesFilepathRequestBody = PutV1VmsVmIdFilesFilepathRequestBody;
|
|
5779
6288
|
type requests_PutWebV1DeploymentsDeploymentIdFetchPathParams = PutWebV1DeploymentsDeploymentIdFetchPathParams;
|
|
5780
6289
|
declare namespace requests {
|
|
5781
|
-
export type { requests_DeleteDnsV1RecordsQueryParams as DeleteDnsV1RecordsQueryParams, requests_DeleteDomainsV1MappingsDomainPathParams as DeleteDomainsV1MappingsDomainPathParams, requests_DeleteDomainsV1VerificationsRequestBody as DeleteDomainsV1VerificationsRequestBody, requests_DeleteGitV1IdentityIdentityPathParams as DeleteGitV1IdentityIdentityPathParams, requests_DeleteGitV1IdentityIdentityPermissionsRepoPathParams as DeleteGitV1IdentityIdentityPermissionsRepoPathParams, requests_DeleteGitV1IdentityIdentityTokensPathParams as DeleteGitV1IdentityIdentityTokensPathParams, requests_DeleteGitV1IdentityIdentityTokensRequestBody as DeleteGitV1IdentityIdentityTokensRequestBody, requests_DeleteGitV1RepoRepoIdGithubSyncPathParams as DeleteGitV1RepoRepoIdGithubSyncPathParams, requests_DeleteGitV1RepoRepoPathParams as DeleteGitV1RepoRepoPathParams, requests_DeleteGitV1RepoRepoTriggerTriggerPathParams as DeleteGitV1RepoRepoTriggerTriggerPathParams, requests_DeleteIdentityV1IdentitiesIdentityPathParams as DeleteIdentityV1IdentitiesIdentityPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams as DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams, requests_DeleteV1CronSchedulesIdPathParams as DeleteV1CronSchedulesIdPathParams, requests_DeleteV1VmsVmIdPathParams as DeleteV1VmsVmIdPathParams, requests_DeleteV1VmsVmIdSystemdServicesServiceIdPathParams as DeleteV1VmsVmIdSystemdServicesServiceIdPathParams, requests_DeleteWebV1DeploymentsDeploymentIdFetchPathParams as DeleteWebV1DeploymentsDeploymentIdFetchPathParams, requests_GetDnsV1RecordsQueryParams as GetDnsV1RecordsQueryParams, requests_GetDomainsV1DomainsQueryParams as GetDomainsV1DomainsQueryParams, requests_GetDomainsV1MappingsQueryParams as GetDomainsV1MappingsQueryParams, requests_GetExecuteV1DeploymentsDeploymentPathParams as GetExecuteV1DeploymentsDeploymentPathParams, requests_GetExecuteV1DeploymentsQueryParams as GetExecuteV1DeploymentsQueryParams, requests_GetGitV1IdentityIdentityPermissionsPathParams as GetGitV1IdentityIdentityPermissionsPathParams, requests_GetGitV1IdentityIdentityPermissionsQueryParams as GetGitV1IdentityIdentityPermissionsQueryParams, requests_GetGitV1IdentityIdentityPermissionsRepoPathParams as GetGitV1IdentityIdentityPermissionsRepoPathParams, requests_GetGitV1IdentityIdentityTokensPathParams as GetGitV1IdentityIdentityTokensPathParams, requests_GetGitV1IdentityQueryParams as GetGitV1IdentityQueryParams, requests_GetGitV1RepoQueryParams as GetGitV1RepoQueryParams, requests_GetGitV1RepoRepoComparePathParams as GetGitV1RepoRepoComparePathParams, requests_GetGitV1RepoRepoCompareQueryParams as GetGitV1RepoRepoCompareQueryParams, requests_GetGitV1RepoRepoContentsPathPathParams as GetGitV1RepoRepoContentsPathPathParams, requests_GetGitV1RepoRepoContentsPathQueryParams as GetGitV1RepoRepoContentsPathQueryParams, requests_GetGitV1RepoRepoGitBlobsHashPathParams as GetGitV1RepoRepoGitBlobsHashPathParams, requests_GetGitV1RepoRepoGitCommitsHashPathParams as GetGitV1RepoRepoGitCommitsHashPathParams, requests_GetGitV1RepoRepoGitCommitsPathParams as GetGitV1RepoRepoGitCommitsPathParams, requests_GetGitV1RepoRepoGitCommitsQueryParams as GetGitV1RepoRepoGitCommitsQueryParams, requests_GetGitV1RepoRepoGitRefsHeadsBranchPathParams as GetGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_GetGitV1RepoRepoGitRefsHeadsPathParams as GetGitV1RepoRepoGitRefsHeadsPathParams, requests_GetGitV1RepoRepoGitRefsTagsPathParams as GetGitV1RepoRepoGitRefsTagsPathParams, requests_GetGitV1RepoRepoGitRefsTagsTagPathParams as GetGitV1RepoRepoGitRefsTagsTagPathParams, requests_GetGitV1RepoRepoGitTagsHashPathParams as GetGitV1RepoRepoGitTagsHashPathParams, requests_GetGitV1RepoRepoGitTreesHashPathParams as GetGitV1RepoRepoGitTreesHashPathParams, requests_GetGitV1RepoRepoIdDefaultBranchPathParams as GetGitV1RepoRepoIdDefaultBranchPathParams, requests_GetGitV1RepoRepoIdGithubSyncPathParams as GetGitV1RepoRepoIdGithubSyncPathParams, requests_GetGitV1RepoRepoIdVisibilityPathParams as GetGitV1RepoRepoIdVisibilityPathParams, requests_GetGitV1RepoRepoPathParams as GetGitV1RepoRepoPathParams, requests_GetGitV1RepoRepoTarballPathParams as GetGitV1RepoRepoTarballPathParams, requests_GetGitV1RepoRepoTarballQueryParams as GetGitV1RepoRepoTarballQueryParams, requests_GetGitV1RepoRepoTriggerPathParams as GetGitV1RepoRepoTriggerPathParams, requests_GetGitV1RepoRepoZipPathParams as GetGitV1RepoRepoZipPathParams, requests_GetGitV1RepoRepoZipQueryParams as GetGitV1RepoRepoZipQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams as GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams as GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_GetIdentityV1IdentitiesIdentityTokensPathParams as GetIdentityV1IdentitiesIdentityTokensPathParams, requests_GetIdentityV1IdentitiesQueryParams as GetIdentityV1IdentitiesQueryParams, requests_GetObservabilityV1LogsQueryParams as GetObservabilityV1LogsQueryParams, requests_GetV1CronSchedulesIdExecutionsPathParams as GetV1CronSchedulesIdExecutionsPathParams, requests_GetV1CronSchedulesIdExecutionsQueryParams as GetV1CronSchedulesIdExecutionsQueryParams, requests_GetV1CronSchedulesIdMetricsTimelinePathParams as GetV1CronSchedulesIdMetricsTimelinePathParams, requests_GetV1CronSchedulesIdMetricsTimelineQueryParams as GetV1CronSchedulesIdMetricsTimelineQueryParams, requests_GetV1CronSchedulesIdPathParams as GetV1CronSchedulesIdPathParams, requests_GetV1CronSchedulesIdSuccessRatePathParams as GetV1CronSchedulesIdSuccessRatePathParams, requests_GetV1CronSchedulesIdSuccessRateQueryParams as GetV1CronSchedulesIdSuccessRateQueryParams, requests_GetV1CronSchedulesQueryParams as GetV1CronSchedulesQueryParams, requests_GetV1VmsVmIdFilesFilepathPathParams as GetV1VmsVmIdFilesFilepathPathParams, requests_GetV1VmsVmIdPathParams as GetV1VmsVmIdPathParams, requests_GetV1VmsVmIdSystemdServicesPathParams as GetV1VmsVmIdSystemdServicesPathParams, requests_GetV1VmsVmIdSystemdServicesServiceIdLogsPathParams as GetV1VmsVmIdSystemdServicesServiceIdLogsPathParams, requests_GetV1VmsVmIdSystemdServicesServiceIdLogsQueryParams as GetV1VmsVmIdSystemdServicesServiceIdLogsQueryParams, requests_GetV1VmsVmIdSystemdServicesServiceIdStatusPathParams as GetV1VmsVmIdSystemdServicesServiceIdStatusPathParams, requests_GetV1VmsVmIdTerminalsPathParams as GetV1VmsVmIdTerminalsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdLogsPathParams as GetV1VmsVmIdTerminalsTerminalIdLogsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams as GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams, requests_GetWebV1DeploymentsDeploymentIdFetchPathParams as GetWebV1DeploymentsDeploymentIdFetchPathParams, requests_GetWebV1DeploymentsDeploymentIdPathParams as GetWebV1DeploymentsDeploymentIdPathParams, requests_GetWebV1DeploymentsQueryParams as GetWebV1DeploymentsQueryParams, requests_PatchGitV1IdentityIdentityPermissionsRepoPathParams as PatchGitV1IdentityIdentityPermissionsRepoPathParams, requests_PatchGitV1IdentityIdentityPermissionsRepoRequestBody as PatchGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PatchV1CronSchedulesIdPathParams as PatchV1CronSchedulesIdPathParams, requests_PatchV1CronSchedulesIdRequestBody as PatchV1CronSchedulesIdRequestBody, requests_PatchWebV1DeploymentsDeploymentIdFetchPathParams as PatchWebV1DeploymentsDeploymentIdFetchPathParams, requests_PostDnsV1RecordsRequestBody as PostDnsV1RecordsRequestBody, requests_PostDomainsV1CertsDomainWildcardPathParams as PostDomainsV1CertsDomainWildcardPathParams, requests_PostDomainsV1MappingsDomainPathParams as PostDomainsV1MappingsDomainPathParams, requests_PostDomainsV1MappingsDomainRequestBody as PostDomainsV1MappingsDomainRequestBody, requests_PostDomainsV1VerificationsRequestBody as PostDomainsV1VerificationsRequestBody, requests_PostExecuteV1ScriptRequestBody as PostExecuteV1ScriptRequestBody, requests_PostExecuteV2ScriptRequestBody as PostExecuteV2ScriptRequestBody, requests_PostExecuteV3ScriptRequestBody as PostExecuteV3ScriptRequestBody, requests_PostGitV1IdentityIdentityPermissionsRepoPathParams as PostGitV1IdentityIdentityPermissionsRepoPathParams, requests_PostGitV1IdentityIdentityPermissionsRepoRequestBody as PostGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostGitV1IdentityIdentityTokensPathParams as PostGitV1IdentityIdentityTokensPathParams, requests_PostGitV1RepoFiles as PostGitV1RepoFiles, requests_PostGitV1RepoFiles1 as PostGitV1RepoFiles1, requests_PostGitV1RepoGit as PostGitV1RepoGit, requests_PostGitV1RepoRepoCommitsPathParams as PostGitV1RepoRepoCommitsPathParams, requests_PostGitV1RepoRepoCommitsRequestBody as PostGitV1RepoRepoCommitsRequestBody, requests_PostGitV1RepoRepoGitCommitsPathParams as PostGitV1RepoRepoGitCommitsPathParams, requests_PostGitV1RepoRepoGitCommitsRequestBody as PostGitV1RepoRepoGitCommitsRequestBody, requests_PostGitV1RepoRepoGitRefsHeadsBranchPathParams as PostGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_PostGitV1RepoRepoGitRefsHeadsBranchRequestBody as PostGitV1RepoRepoGitRefsHeadsBranchRequestBody, requests_PostGitV1RepoRepoIdGithubSyncPathParams as PostGitV1RepoRepoIdGithubSyncPathParams, requests_PostGitV1RepoRepoIdGithubSyncRequestBody as PostGitV1RepoRepoIdGithubSyncRequestBody, requests_PostGitV1RepoRepoTriggerPathParams as PostGitV1RepoRepoTriggerPathParams, requests_PostGitV1RepoRepoTriggerRequestBody as PostGitV1RepoRepoTriggerRequestBody, requests_PostGitV1RepoRequestBody as PostGitV1RepoRequestBody, requests_PostGitV1RepoTar as PostGitV1RepoTar, requests_PostGitV1RepoZip as PostGitV1RepoZip, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PostIdentityV1IdentitiesIdentityTokensPathParams as PostIdentityV1IdentitiesIdentityTokensPathParams, requests_PostV1CronSchedulesRequestBody as PostV1CronSchedulesRequestBody, requests_PostV1VmsIdResizePathParams as PostV1VmsIdResizePathParams, requests_PostV1VmsIdResizeRequestBody as PostV1VmsIdResizeRequestBody, requests_PostV1VmsRequestBody as PostV1VmsRequestBody, requests_PostV1VmsSnapshotsRequestBody as PostV1VmsSnapshotsRequestBody, requests_PostV1VmsVmIdAwaitPathParams as PostV1VmsVmIdAwaitPathParams, requests_PostV1VmsVmIdExecAwaitPathParams as PostV1VmsVmIdExecAwaitPathParams, requests_PostV1VmsVmIdExecAwaitRequestBody as PostV1VmsVmIdExecAwaitRequestBody, requests_PostV1VmsVmIdForkPathParams as PostV1VmsVmIdForkPathParams, requests_PostV1VmsVmIdForkRequestBody as PostV1VmsVmIdForkRequestBody, requests_PostV1VmsVmIdKillPathParams as PostV1VmsVmIdKillPathParams, requests_PostV1VmsVmIdOptimizePathParams as PostV1VmsVmIdOptimizePathParams, requests_PostV1VmsVmIdSnapshotPathParams as PostV1VmsVmIdSnapshotPathParams, requests_PostV1VmsVmIdSnapshotRequestBody as PostV1VmsVmIdSnapshotRequestBody, requests_PostV1VmsVmIdStartPathParams as PostV1VmsVmIdStartPathParams, requests_PostV1VmsVmIdStartRequestBody as PostV1VmsVmIdStartRequestBody, requests_PostV1VmsVmIdStopPathParams as PostV1VmsVmIdStopPathParams, requests_PostV1VmsVmIdSuspendPathParams as PostV1VmsVmIdSuspendPathParams, requests_PostV1VmsVmIdSystemdRestartPathParams as PostV1VmsVmIdSystemdRestartPathParams, requests_PostV1VmsVmIdSystemdRestartRequestBody as PostV1VmsVmIdSystemdRestartRequestBody, requests_PostV1VmsVmIdSystemdServicesPathParams as PostV1VmsVmIdSystemdServicesPathParams, requests_PostV1VmsVmIdSystemdServicesRequestBody as PostV1VmsVmIdSystemdServicesRequestBody, requests_PostV1VmsVmIdSystemdStartPathParams as PostV1VmsVmIdSystemdStartPathParams, requests_PostV1VmsVmIdSystemdStartRequestBody as PostV1VmsVmIdSystemdStartRequestBody, requests_PostV1VmsVmIdSystemdStopPathParams as PostV1VmsVmIdSystemdStopPathParams, requests_PostV1VmsVmIdSystemdStopRequestBody as PostV1VmsVmIdSystemdStopRequestBody, requests_PostV1VmsVmIdWatchFilesPathParams as PostV1VmsVmIdWatchFilesPathParams, requests_PostWebV1DeployRequestBody as PostWebV1DeployRequestBody, requests_PostWebV1DeploymentFiles as PostWebV1DeploymentFiles, requests_PostWebV1DeploymentGit as PostWebV1DeploymentGit, requests_PostWebV1DeploymentRequestBody as PostWebV1DeploymentRequestBody, requests_PostWebV1DeploymentTar as PostWebV1DeploymentTar, requests_PostWebV1DeploymentsDeploymentIdFetchPathParams as PostWebV1DeploymentsDeploymentIdFetchPathParams, requests_PutDomainsV1VerificationsRequestBody as PutDomainsV1VerificationsRequestBody, requests_PutGitV1RepoRepoIdDefaultBranchPathParams as PutGitV1RepoRepoIdDefaultBranchPathParams, requests_PutGitV1RepoRepoIdDefaultBranchRequestBody as PutGitV1RepoRepoIdDefaultBranchRequestBody, requests_PutGitV1RepoRepoIdVisibilityPathParams as PutGitV1RepoRepoIdVisibilityPathParams, requests_PutGitV1RepoRepoIdVisibilityRequestBody as PutGitV1RepoRepoIdVisibilityRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PutV1VmsVmIdFilesFilepathPathParams as PutV1VmsVmIdFilesFilepathPathParams, requests_PutV1VmsVmIdFilesFilepathRequestBody as PutV1VmsVmIdFilesFilepathRequestBody, requests_PutWebV1DeploymentsDeploymentIdFetchPathParams as PutWebV1DeploymentsDeploymentIdFetchPathParams };
|
|
6290
|
+
export type { requests_DeleteDnsV1RecordsQueryParams as DeleteDnsV1RecordsQueryParams, requests_DeleteDomainsV1MappingsDomainPathParams as DeleteDomainsV1MappingsDomainPathParams, requests_DeleteDomainsV1VerificationsRequestBody as DeleteDomainsV1VerificationsRequestBody, requests_DeleteGitV1IdentityIdentityPathParams as DeleteGitV1IdentityIdentityPathParams, requests_DeleteGitV1IdentityIdentityPermissionsRepoPathParams as DeleteGitV1IdentityIdentityPermissionsRepoPathParams, requests_DeleteGitV1IdentityIdentityTokensPathParams as DeleteGitV1IdentityIdentityTokensPathParams, requests_DeleteGitV1IdentityIdentityTokensRequestBody as DeleteGitV1IdentityIdentityTokensRequestBody, requests_DeleteGitV1RepoRepoIdGithubSyncPathParams as DeleteGitV1RepoRepoIdGithubSyncPathParams, requests_DeleteGitV1RepoRepoPathParams as DeleteGitV1RepoRepoPathParams, requests_DeleteGitV1RepoRepoTriggerTriggerPathParams as DeleteGitV1RepoRepoTriggerTriggerPathParams, requests_DeleteIdentityV1IdentitiesIdentityPathParams as DeleteIdentityV1IdentitiesIdentityPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams as DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams, requests_DeleteV1CronSchedulesIdPathParams as DeleteV1CronSchedulesIdPathParams, requests_DeleteV1VmsSnapshotsSnapshotIdPathParams as DeleteV1VmsSnapshotsSnapshotIdPathParams, requests_DeleteV1VmsVmIdPathParams as DeleteV1VmsVmIdPathParams, requests_DeleteV1VmsVmIdSystemdServicesServiceIdPathParams as DeleteV1VmsVmIdSystemdServicesServiceIdPathParams, requests_DeleteWebV1DeploymentsDeploymentIdFetchPathParams as DeleteWebV1DeploymentsDeploymentIdFetchPathParams, requests_GetAuthV1BackgroundRequestsRequestIdPathParams as GetAuthV1BackgroundRequestsRequestIdPathParams, requests_GetAuthV1BackgroundTestQueryParams as GetAuthV1BackgroundTestQueryParams, requests_GetDnsV1RecordsQueryParams as GetDnsV1RecordsQueryParams, requests_GetDomainsV1DomainsQueryParams as GetDomainsV1DomainsQueryParams, requests_GetDomainsV1MappingsQueryParams as GetDomainsV1MappingsQueryParams, requests_GetExecuteV1DeploymentsDeploymentPathParams as GetExecuteV1DeploymentsDeploymentPathParams, requests_GetExecuteV1DeploymentsQueryParams as GetExecuteV1DeploymentsQueryParams, requests_GetGitV1IdentityIdentityPermissionsPathParams as GetGitV1IdentityIdentityPermissionsPathParams, requests_GetGitV1IdentityIdentityPermissionsQueryParams as GetGitV1IdentityIdentityPermissionsQueryParams, requests_GetGitV1IdentityIdentityPermissionsRepoPathParams as GetGitV1IdentityIdentityPermissionsRepoPathParams, requests_GetGitV1IdentityIdentityTokensPathParams as GetGitV1IdentityIdentityTokensPathParams, requests_GetGitV1IdentityQueryParams as GetGitV1IdentityQueryParams, requests_GetGitV1RepoQueryParams as GetGitV1RepoQueryParams, requests_GetGitV1RepoRepoComparePathParams as GetGitV1RepoRepoComparePathParams, requests_GetGitV1RepoRepoCompareQueryParams as GetGitV1RepoRepoCompareQueryParams, requests_GetGitV1RepoRepoContentsPathPathParams as GetGitV1RepoRepoContentsPathPathParams, requests_GetGitV1RepoRepoContentsPathQueryParams as GetGitV1RepoRepoContentsPathQueryParams, requests_GetGitV1RepoRepoGitBlobsHashPathParams as GetGitV1RepoRepoGitBlobsHashPathParams, requests_GetGitV1RepoRepoGitCommitsHashPathParams as GetGitV1RepoRepoGitCommitsHashPathParams, requests_GetGitV1RepoRepoGitCommitsPathParams as GetGitV1RepoRepoGitCommitsPathParams, requests_GetGitV1RepoRepoGitCommitsQueryParams as GetGitV1RepoRepoGitCommitsQueryParams, requests_GetGitV1RepoRepoGitRefsHeadsBranchPathParams as GetGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_GetGitV1RepoRepoGitRefsHeadsPathParams as GetGitV1RepoRepoGitRefsHeadsPathParams, requests_GetGitV1RepoRepoGitRefsTagsPathParams as GetGitV1RepoRepoGitRefsTagsPathParams, requests_GetGitV1RepoRepoGitRefsTagsTagPathParams as GetGitV1RepoRepoGitRefsTagsTagPathParams, requests_GetGitV1RepoRepoGitTagsHashPathParams as GetGitV1RepoRepoGitTagsHashPathParams, requests_GetGitV1RepoRepoGitTreesHashPathParams as GetGitV1RepoRepoGitTreesHashPathParams, requests_GetGitV1RepoRepoIdDefaultBranchPathParams as GetGitV1RepoRepoIdDefaultBranchPathParams, requests_GetGitV1RepoRepoIdGithubSyncPathParams as GetGitV1RepoRepoIdGithubSyncPathParams, requests_GetGitV1RepoRepoIdVisibilityPathParams as GetGitV1RepoRepoIdVisibilityPathParams, requests_GetGitV1RepoRepoPathParams as GetGitV1RepoRepoPathParams, requests_GetGitV1RepoRepoSearchCommitsPathParams as GetGitV1RepoRepoSearchCommitsPathParams, requests_GetGitV1RepoRepoSearchCommitsQueryParams as GetGitV1RepoRepoSearchCommitsQueryParams, requests_GetGitV1RepoRepoSearchDiffsPathParams as GetGitV1RepoRepoSearchDiffsPathParams, requests_GetGitV1RepoRepoSearchDiffsQueryParams as GetGitV1RepoRepoSearchDiffsQueryParams, requests_GetGitV1RepoRepoSearchFilesPathParams as GetGitV1RepoRepoSearchFilesPathParams, requests_GetGitV1RepoRepoSearchFilesQueryParams as GetGitV1RepoRepoSearchFilesQueryParams, requests_GetGitV1RepoRepoSearchPathParams as GetGitV1RepoRepoSearchPathParams, requests_GetGitV1RepoRepoSearchQueryParams as GetGitV1RepoRepoSearchQueryParams, requests_GetGitV1RepoRepoTarballPathParams as GetGitV1RepoRepoTarballPathParams, requests_GetGitV1RepoRepoTarballQueryParams as GetGitV1RepoRepoTarballQueryParams, requests_GetGitV1RepoRepoTriggerPathParams as GetGitV1RepoRepoTriggerPathParams, requests_GetGitV1RepoRepoZipPathParams as GetGitV1RepoRepoZipPathParams, requests_GetGitV1RepoRepoZipQueryParams as GetGitV1RepoRepoZipQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams as GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams as GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_GetIdentityV1IdentitiesIdentityTokensPathParams as GetIdentityV1IdentitiesIdentityTokensPathParams, requests_GetIdentityV1IdentitiesQueryParams as GetIdentityV1IdentitiesQueryParams, requests_GetObservabilityV1LogsQueryParams as GetObservabilityV1LogsQueryParams, requests_GetV1CronSchedulesIdExecutionsPathParams as GetV1CronSchedulesIdExecutionsPathParams, requests_GetV1CronSchedulesIdExecutionsQueryParams as GetV1CronSchedulesIdExecutionsQueryParams, requests_GetV1CronSchedulesIdMetricsTimelinePathParams as GetV1CronSchedulesIdMetricsTimelinePathParams, requests_GetV1CronSchedulesIdMetricsTimelineQueryParams as GetV1CronSchedulesIdMetricsTimelineQueryParams, requests_GetV1CronSchedulesIdPathParams as GetV1CronSchedulesIdPathParams, requests_GetV1CronSchedulesIdSuccessRatePathParams as GetV1CronSchedulesIdSuccessRatePathParams, requests_GetV1CronSchedulesIdSuccessRateQueryParams as GetV1CronSchedulesIdSuccessRateQueryParams, requests_GetV1CronSchedulesQueryParams as GetV1CronSchedulesQueryParams, requests_GetV1VmsQueryParams as GetV1VmsQueryParams, requests_GetV1VmsSnapshotsQueryParams as GetV1VmsSnapshotsQueryParams, requests_GetV1VmsVmIdFilesFilepathPathParams as GetV1VmsVmIdFilesFilepathPathParams, requests_GetV1VmsVmIdPathParams as GetV1VmsVmIdPathParams, requests_GetV1VmsVmIdSystemdServicesPathParams as GetV1VmsVmIdSystemdServicesPathParams, requests_GetV1VmsVmIdSystemdServicesServiceIdLogsPathParams as GetV1VmsVmIdSystemdServicesServiceIdLogsPathParams, requests_GetV1VmsVmIdSystemdServicesServiceIdLogsQueryParams as GetV1VmsVmIdSystemdServicesServiceIdLogsQueryParams, requests_GetV1VmsVmIdSystemdServicesServiceIdStatusPathParams as GetV1VmsVmIdSystemdServicesServiceIdStatusPathParams, requests_GetV1VmsVmIdTerminalsPathParams as GetV1VmsVmIdTerminalsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdLogsPathParams as GetV1VmsVmIdTerminalsTerminalIdLogsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams as GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams, requests_GetWebV1DeploymentsDeploymentIdFetchPathParams as GetWebV1DeploymentsDeploymentIdFetchPathParams, requests_GetWebV1DeploymentsDeploymentIdPathParams as GetWebV1DeploymentsDeploymentIdPathParams, requests_GetWebV1DeploymentsQueryParams as GetWebV1DeploymentsQueryParams, requests_PatchGitV1IdentityIdentityPermissionsRepoPathParams as PatchGitV1IdentityIdentityPermissionsRepoPathParams, requests_PatchGitV1IdentityIdentityPermissionsRepoRequestBody as PatchGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PatchV1CronSchedulesIdPathParams as PatchV1CronSchedulesIdPathParams, requests_PatchV1CronSchedulesIdRequestBody as PatchV1CronSchedulesIdRequestBody, requests_PatchV1VmsSnapshotsSnapshotIdPathParams as PatchV1VmsSnapshotsSnapshotIdPathParams, requests_PatchV1VmsSnapshotsSnapshotIdRequestBody as PatchV1VmsSnapshotsSnapshotIdRequestBody, requests_PatchWebV1DeploymentsDeploymentIdFetchPathParams as PatchWebV1DeploymentsDeploymentIdFetchPathParams, requests_PostDnsV1RecordsRequestBody as PostDnsV1RecordsRequestBody, requests_PostDomainsV1CertsDomainWildcardPathParams as PostDomainsV1CertsDomainWildcardPathParams, requests_PostDomainsV1MappingsDomainPathParams as PostDomainsV1MappingsDomainPathParams, requests_PostDomainsV1MappingsDomainRequestBody as PostDomainsV1MappingsDomainRequestBody, requests_PostDomainsV1VerificationsRequestBody as PostDomainsV1VerificationsRequestBody, requests_PostExecuteV1ScriptRequestBody as PostExecuteV1ScriptRequestBody, requests_PostExecuteV2ScriptRequestBody as PostExecuteV2ScriptRequestBody, requests_PostExecuteV3ScriptRequestBody as PostExecuteV3ScriptRequestBody, requests_PostGitV1IdentityIdentityPermissionsRepoPathParams as PostGitV1IdentityIdentityPermissionsRepoPathParams, requests_PostGitV1IdentityIdentityPermissionsRepoRequestBody as PostGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostGitV1IdentityIdentityTokensPathParams as PostGitV1IdentityIdentityTokensPathParams, requests_PostGitV1RepoFiles as PostGitV1RepoFiles, requests_PostGitV1RepoFiles1 as PostGitV1RepoFiles1, requests_PostGitV1RepoGit as PostGitV1RepoGit, requests_PostGitV1RepoRepoCommitsPathParams as PostGitV1RepoRepoCommitsPathParams, requests_PostGitV1RepoRepoCommitsRequestBody as PostGitV1RepoRepoCommitsRequestBody, requests_PostGitV1RepoRepoGitCommitsPathParams as PostGitV1RepoRepoGitCommitsPathParams, requests_PostGitV1RepoRepoGitCommitsRequestBody as PostGitV1RepoRepoGitCommitsRequestBody, requests_PostGitV1RepoRepoGitRefsHeadsBranchPathParams as PostGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_PostGitV1RepoRepoGitRefsHeadsBranchRequestBody as PostGitV1RepoRepoGitRefsHeadsBranchRequestBody, requests_PostGitV1RepoRepoIdGithubSyncPathParams as PostGitV1RepoRepoIdGithubSyncPathParams, requests_PostGitV1RepoRepoIdGithubSyncRequestBody as PostGitV1RepoRepoIdGithubSyncRequestBody, requests_PostGitV1RepoRepoTriggerPathParams as PostGitV1RepoRepoTriggerPathParams, requests_PostGitV1RepoRepoTriggerRequestBody as PostGitV1RepoRepoTriggerRequestBody, requests_PostGitV1RepoRequestBody as PostGitV1RepoRequestBody, requests_PostGitV1RepoTar as PostGitV1RepoTar, requests_PostGitV1RepoZip as PostGitV1RepoZip, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PostIdentityV1IdentitiesIdentityTokensPathParams as PostIdentityV1IdentitiesIdentityTokensPathParams, requests_PostV1CronSchedulesRequestBody as PostV1CronSchedulesRequestBody, requests_PostV1VmsIdResizePathParams as PostV1VmsIdResizePathParams, requests_PostV1VmsIdResizeRequestBody as PostV1VmsIdResizeRequestBody, requests_PostV1VmsRequestBody as PostV1VmsRequestBody, requests_PostV1VmsSnapshotsRequestBody as PostV1VmsSnapshotsRequestBody, requests_PostV1VmsVmIdAwaitPathParams as PostV1VmsVmIdAwaitPathParams, requests_PostV1VmsVmIdExecAwaitPathParams as PostV1VmsVmIdExecAwaitPathParams, requests_PostV1VmsVmIdExecAwaitRequestBody as PostV1VmsVmIdExecAwaitRequestBody, requests_PostV1VmsVmIdForkPathParams as PostV1VmsVmIdForkPathParams, requests_PostV1VmsVmIdForkRequestBody as PostV1VmsVmIdForkRequestBody, requests_PostV1VmsVmIdKillPathParams as PostV1VmsVmIdKillPathParams, requests_PostV1VmsVmIdOptimizePathParams as PostV1VmsVmIdOptimizePathParams, requests_PostV1VmsVmIdSnapshotPathParams as PostV1VmsVmIdSnapshotPathParams, requests_PostV1VmsVmIdSnapshotRequestBody as PostV1VmsVmIdSnapshotRequestBody, requests_PostV1VmsVmIdStartPathParams as PostV1VmsVmIdStartPathParams, requests_PostV1VmsVmIdStartRequestBody as PostV1VmsVmIdStartRequestBody, requests_PostV1VmsVmIdStopPathParams as PostV1VmsVmIdStopPathParams, requests_PostV1VmsVmIdSuspendPathParams as PostV1VmsVmIdSuspendPathParams, requests_PostV1VmsVmIdSystemdRestartPathParams as PostV1VmsVmIdSystemdRestartPathParams, requests_PostV1VmsVmIdSystemdRestartRequestBody as PostV1VmsVmIdSystemdRestartRequestBody, requests_PostV1VmsVmIdSystemdServicesPathParams as PostV1VmsVmIdSystemdServicesPathParams, requests_PostV1VmsVmIdSystemdServicesRequestBody as PostV1VmsVmIdSystemdServicesRequestBody, requests_PostV1VmsVmIdSystemdStartPathParams as PostV1VmsVmIdSystemdStartPathParams, requests_PostV1VmsVmIdSystemdStartRequestBody as PostV1VmsVmIdSystemdStartRequestBody, requests_PostV1VmsVmIdSystemdStopPathParams as PostV1VmsVmIdSystemdStopPathParams, requests_PostV1VmsVmIdSystemdStopRequestBody as PostV1VmsVmIdSystemdStopRequestBody, requests_PostV1VmsVmIdWatchFilesPathParams as PostV1VmsVmIdWatchFilesPathParams, requests_PostWebV1DeployRequestBody as PostWebV1DeployRequestBody, requests_PostWebV1DeploymentFiles as PostWebV1DeploymentFiles, requests_PostWebV1DeploymentGit as PostWebV1DeploymentGit, requests_PostWebV1DeploymentRequestBody as PostWebV1DeploymentRequestBody, requests_PostWebV1DeploymentTar as PostWebV1DeploymentTar, requests_PostWebV1DeploymentsDeploymentIdFetchPathParams as PostWebV1DeploymentsDeploymentIdFetchPathParams, requests_PutDomainsV1VerificationsRequestBody as PutDomainsV1VerificationsRequestBody, requests_PutGitV1RepoRepoIdDefaultBranchPathParams as PutGitV1RepoRepoIdDefaultBranchPathParams, requests_PutGitV1RepoRepoIdDefaultBranchRequestBody as PutGitV1RepoRepoIdDefaultBranchRequestBody, requests_PutGitV1RepoRepoIdVisibilityPathParams as PutGitV1RepoRepoIdVisibilityPathParams, requests_PutGitV1RepoRepoIdVisibilityRequestBody as PutGitV1RepoRepoIdVisibilityRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PutV1VmsVmIdFilesFilepathPathParams as PutV1VmsVmIdFilesFilepathPathParams, requests_PutV1VmsVmIdFilesFilepathRequestBody as PutV1VmsVmIdFilesFilepathRequestBody, requests_PutWebV1DeploymentsDeploymentIdFetchPathParams as PutWebV1DeploymentsDeploymentIdFetchPathParams };
|
|
5782
6291
|
}
|
|
5783
6292
|
|
|
5784
6293
|
type GetPathMap = {
|
|
6294
|
+
"/auth/v1/background-requests/{request_id}": {
|
|
6295
|
+
options: {
|
|
6296
|
+
params: GetAuthV1BackgroundRequestsRequestIdPathParams;
|
|
6297
|
+
headers?: Record<string, string>;
|
|
6298
|
+
};
|
|
6299
|
+
response: void;
|
|
6300
|
+
};
|
|
5785
6301
|
"/auth/v1/whoami": {
|
|
5786
6302
|
options?: {
|
|
5787
6303
|
headers?: Record<string, string>;
|
|
@@ -5973,6 +6489,38 @@ type GetPathMap = {
|
|
|
5973
6489
|
};
|
|
5974
6490
|
response: ResponseGetGitV1RepoRepoGitTreesHash200;
|
|
5975
6491
|
};
|
|
6492
|
+
"/git/v1/repo/{repo}/search": {
|
|
6493
|
+
options: {
|
|
6494
|
+
params: GetGitV1RepoRepoSearchPathParams;
|
|
6495
|
+
query?: GetGitV1RepoRepoSearchQueryParams;
|
|
6496
|
+
headers?: Record<string, string>;
|
|
6497
|
+
};
|
|
6498
|
+
response: ResponseGetGitV1RepoRepoSearch200;
|
|
6499
|
+
};
|
|
6500
|
+
"/git/v1/repo/{repo}/search/commits": {
|
|
6501
|
+
options: {
|
|
6502
|
+
params: GetGitV1RepoRepoSearchCommitsPathParams;
|
|
6503
|
+
query?: GetGitV1RepoRepoSearchCommitsQueryParams;
|
|
6504
|
+
headers?: Record<string, string>;
|
|
6505
|
+
};
|
|
6506
|
+
response: ResponseGetGitV1RepoRepoSearchCommits200;
|
|
6507
|
+
};
|
|
6508
|
+
"/git/v1/repo/{repo}/search/diffs": {
|
|
6509
|
+
options: {
|
|
6510
|
+
params: GetGitV1RepoRepoSearchDiffsPathParams;
|
|
6511
|
+
query?: GetGitV1RepoRepoSearchDiffsQueryParams;
|
|
6512
|
+
headers?: Record<string, string>;
|
|
6513
|
+
};
|
|
6514
|
+
response: ResponseGetGitV1RepoRepoSearchDiffs200;
|
|
6515
|
+
};
|
|
6516
|
+
"/git/v1/repo/{repo}/search/files": {
|
|
6517
|
+
options: {
|
|
6518
|
+
params: GetGitV1RepoRepoSearchFilesPathParams;
|
|
6519
|
+
query?: GetGitV1RepoRepoSearchFilesQueryParams;
|
|
6520
|
+
headers?: Record<string, string>;
|
|
6521
|
+
};
|
|
6522
|
+
response: ResponseGetGitV1RepoRepoSearchFiles200;
|
|
6523
|
+
};
|
|
5976
6524
|
"/git/v1/repo/{repo}/tarball": {
|
|
5977
6525
|
options: {
|
|
5978
6526
|
params: GetGitV1RepoRepoTarballPathParams;
|
|
@@ -6086,13 +6634,15 @@ type GetPathMap = {
|
|
|
6086
6634
|
response: ResponseGetV1CronSchedulesIdSuccessRate200;
|
|
6087
6635
|
};
|
|
6088
6636
|
"/v1/vms": {
|
|
6089
|
-
options
|
|
6637
|
+
options: {
|
|
6638
|
+
query?: GetV1VmsQueryParams;
|
|
6090
6639
|
headers?: Record<string, string>;
|
|
6091
6640
|
};
|
|
6092
6641
|
response: ResponseGetV1Vms200;
|
|
6093
6642
|
};
|
|
6094
6643
|
"/v1/vms/snapshots": {
|
|
6095
|
-
options
|
|
6644
|
+
options: {
|
|
6645
|
+
query?: GetV1VmsSnapshotsQueryParams;
|
|
6096
6646
|
headers?: Record<string, string>;
|
|
6097
6647
|
};
|
|
6098
6648
|
response: ResponseGetV1VmsSnapshots200;
|
|
@@ -6637,6 +7187,13 @@ type DeletePathMap = {
|
|
|
6637
7187
|
};
|
|
6638
7188
|
response: ResponseDeleteV1CronSchedulesId200;
|
|
6639
7189
|
};
|
|
7190
|
+
"/v1/vms/snapshots/{snapshot_id}": {
|
|
7191
|
+
options: {
|
|
7192
|
+
params: DeleteV1VmsSnapshotsSnapshotIdPathParams;
|
|
7193
|
+
headers?: Record<string, string>;
|
|
7194
|
+
};
|
|
7195
|
+
response: ResponseDeleteV1VmsSnapshotsSnapshotId200;
|
|
7196
|
+
};
|
|
6640
7197
|
"/v1/vms/{vm_id}": {
|
|
6641
7198
|
options: {
|
|
6642
7199
|
params: DeleteV1VmsVmIdPathParams;
|
|
@@ -6676,6 +7233,14 @@ type PatchPathMap = {
|
|
|
6676
7233
|
};
|
|
6677
7234
|
response: ResponsePatchV1CronSchedulesId200;
|
|
6678
7235
|
};
|
|
7236
|
+
"/v1/vms/snapshots/{snapshot_id}": {
|
|
7237
|
+
options: {
|
|
7238
|
+
params: PatchV1VmsSnapshotsSnapshotIdPathParams;
|
|
7239
|
+
body: PatchV1VmsSnapshotsSnapshotIdRequestBody;
|
|
7240
|
+
headers?: Record<string, string>;
|
|
7241
|
+
};
|
|
7242
|
+
response: ResponsePatchV1VmsSnapshotsSnapshotId200;
|
|
7243
|
+
};
|
|
6679
7244
|
"/web/v1/deployments/{deployment_id}/fetch": {
|
|
6680
7245
|
options: {
|
|
6681
7246
|
params: PatchWebV1DeploymentsDeploymentIdFetchPathParams;
|
|
@@ -6762,11 +7327,60 @@ declare class GitErrorError extends Error {
|
|
|
6762
7327
|
static readonly description: string;
|
|
6763
7328
|
constructor(body: unknown & FreestyleError);
|
|
6764
7329
|
}
|
|
6765
|
-
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
|
|
7330
|
+
declare class SuspendFailedAndStopFailedError extends Error {
|
|
7331
|
+
body: unknown & FreestyleError;
|
|
7332
|
+
static readonly code: string;
|
|
7333
|
+
static readonly statusCode: number;
|
|
7334
|
+
static readonly description: string;
|
|
7335
|
+
constructor(body: unknown & FreestyleError);
|
|
7336
|
+
}
|
|
7337
|
+
declare class SuspendFailedAndStoppedError extends Error {
|
|
7338
|
+
body: unknown & FreestyleError;
|
|
7339
|
+
static readonly code: string;
|
|
7340
|
+
static readonly statusCode: number;
|
|
7341
|
+
static readonly description: string;
|
|
7342
|
+
constructor(body: unknown & FreestyleError);
|
|
7343
|
+
}
|
|
7344
|
+
interface InvalidGitRepoSpecErrorPublic {
|
|
7345
|
+
message: string;
|
|
7346
|
+
[k: string]: unknown;
|
|
7347
|
+
}
|
|
7348
|
+
declare class InvalidGitRepoSpecErrorError extends Error {
|
|
7349
|
+
body: InvalidGitRepoSpecErrorPublic & FreestyleError;
|
|
7350
|
+
static readonly code: string;
|
|
7351
|
+
static readonly statusCode: number;
|
|
7352
|
+
static readonly description: string;
|
|
7353
|
+
constructor(body: InvalidGitRepoSpecErrorPublic & FreestyleError);
|
|
7354
|
+
}
|
|
7355
|
+
declare class InternalErrorError extends Error {
|
|
7356
|
+
body: unknown & FreestyleError;
|
|
7357
|
+
static readonly code: string;
|
|
7358
|
+
static readonly statusCode: number;
|
|
7359
|
+
static readonly description: string;
|
|
7360
|
+
constructor(body: unknown & FreestyleError);
|
|
7361
|
+
}
|
|
7362
|
+
interface PublicForkVmNotFound {
|
|
7363
|
+
forkVmId: string;
|
|
7364
|
+
[k: string]: unknown;
|
|
7365
|
+
}
|
|
7366
|
+
declare class ForkVmNotFoundError extends Error {
|
|
7367
|
+
body: PublicForkVmNotFound & FreestyleError;
|
|
7368
|
+
static readonly code: string;
|
|
7369
|
+
static readonly statusCode: number;
|
|
7370
|
+
static readonly description: string;
|
|
7371
|
+
constructor(body: PublicForkVmNotFound & FreestyleError);
|
|
7372
|
+
}
|
|
7373
|
+
interface PublicCreateSnapshotBadRequest {
|
|
7374
|
+
message: string;
|
|
7375
|
+
[k: string]: unknown;
|
|
7376
|
+
}
|
|
7377
|
+
declare class CreateSnapshotBadRequestError extends Error {
|
|
7378
|
+
body: PublicCreateSnapshotBadRequest & FreestyleError;
|
|
7379
|
+
static readonly code: string;
|
|
7380
|
+
static readonly statusCode: number;
|
|
7381
|
+
static readonly description: string;
|
|
7382
|
+
constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
|
|
7383
|
+
}
|
|
6770
7384
|
interface PublicSnapshotNotFound {
|
|
6771
7385
|
snapshotId: SnapshotId;
|
|
6772
7386
|
[k: string]: unknown;
|
|
@@ -6869,13 +7483,6 @@ declare class VmAccessDeniedError extends Error {
|
|
|
6869
7483
|
static readonly description: string;
|
|
6870
7484
|
constructor(body: unknown & FreestyleError);
|
|
6871
7485
|
}
|
|
6872
|
-
declare class StdIoError extends Error {
|
|
6873
|
-
body: unknown & FreestyleError;
|
|
6874
|
-
static readonly code: string;
|
|
6875
|
-
static readonly statusCode: number;
|
|
6876
|
-
static readonly description: string;
|
|
6877
|
-
constructor(body: unknown & FreestyleError);
|
|
6878
|
-
}
|
|
6879
7486
|
declare class FailedToSpawnUffdError extends Error {
|
|
6880
7487
|
body: unknown & FreestyleError;
|
|
6881
7488
|
static readonly code: string;
|
|
@@ -6897,37 +7504,70 @@ declare class VmSubnetNotFoundError extends Error {
|
|
|
6897
7504
|
static readonly description: string;
|
|
6898
7505
|
constructor(body: unknown & FreestyleError);
|
|
6899
7506
|
}
|
|
6900
|
-
interface
|
|
6901
|
-
|
|
6902
|
-
|
|
7507
|
+
interface PublicSnapshotSetupFailed {
|
|
7508
|
+
snapshotId: SnapshotId;
|
|
7509
|
+
failedReason: string;
|
|
6903
7510
|
[k: string]: unknown;
|
|
6904
7511
|
}
|
|
6905
|
-
declare class
|
|
6906
|
-
body:
|
|
7512
|
+
declare class SnapshotSetupFailedError extends Error {
|
|
7513
|
+
body: PublicSnapshotSetupFailed & FreestyleError;
|
|
6907
7514
|
static readonly code: string;
|
|
6908
7515
|
static readonly statusCode: number;
|
|
6909
7516
|
static readonly description: string;
|
|
6910
|
-
constructor(body:
|
|
7517
|
+
constructor(body: PublicSnapshotSetupFailed & FreestyleError);
|
|
6911
7518
|
}
|
|
6912
|
-
interface
|
|
6913
|
-
|
|
6914
|
-
expectedTransactionId: string;
|
|
6915
|
-
providedTransactionId: string;
|
|
7519
|
+
interface PublicSnapshotVmBadRequest {
|
|
7520
|
+
message: string;
|
|
6916
7521
|
[k: string]: unknown;
|
|
6917
7522
|
}
|
|
6918
|
-
declare class
|
|
6919
|
-
body:
|
|
7523
|
+
declare class SnapshotVmBadRequestError extends Error {
|
|
7524
|
+
body: PublicSnapshotVmBadRequest & FreestyleError;
|
|
6920
7525
|
static readonly code: string;
|
|
6921
7526
|
static readonly statusCode: number;
|
|
6922
7527
|
static readonly description: string;
|
|
6923
|
-
constructor(body:
|
|
7528
|
+
constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
|
|
6924
7529
|
}
|
|
6925
|
-
|
|
6926
|
-
|
|
7530
|
+
interface PublicSnapshotIsAccountDefault {
|
|
7531
|
+
snapshotId: SnapshotId;
|
|
7532
|
+
[k: string]: unknown;
|
|
7533
|
+
}
|
|
7534
|
+
declare class SnapshotIsAccountDefaultError extends Error {
|
|
7535
|
+
body: PublicSnapshotIsAccountDefault & FreestyleError;
|
|
6927
7536
|
static readonly code: string;
|
|
6928
7537
|
static readonly statusCode: number;
|
|
6929
7538
|
static readonly description: string;
|
|
6930
|
-
constructor(body:
|
|
7539
|
+
constructor(body: PublicSnapshotIsAccountDefault & FreestyleError);
|
|
7540
|
+
}
|
|
7541
|
+
/**
|
|
7542
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7543
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7544
|
+
*/
|
|
7545
|
+
type SnapshotId = string;
|
|
7546
|
+
/**
|
|
7547
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7548
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7549
|
+
*/
|
|
7550
|
+
type SnapshotId = string;
|
|
7551
|
+
/**
|
|
7552
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7553
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7554
|
+
*/
|
|
7555
|
+
type SnapshotId = string;
|
|
7556
|
+
/**
|
|
7557
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7558
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7559
|
+
*/
|
|
7560
|
+
type SnapshotId = string;
|
|
7561
|
+
interface PublicSnapshotAlreadyDeleted {
|
|
7562
|
+
snapshotId: SnapshotId;
|
|
7563
|
+
[k: string]: unknown;
|
|
7564
|
+
}
|
|
7565
|
+
declare class SnapshotAlreadyDeletedError extends Error {
|
|
7566
|
+
body: PublicSnapshotAlreadyDeleted & FreestyleError;
|
|
7567
|
+
static readonly code: string;
|
|
7568
|
+
static readonly statusCode: number;
|
|
7569
|
+
static readonly description: string;
|
|
7570
|
+
constructor(body: PublicSnapshotAlreadyDeleted & FreestyleError);
|
|
6931
7571
|
}
|
|
6932
7572
|
declare class VmNotFoundInFsError extends Error {
|
|
6933
7573
|
body: unknown & FreestyleError;
|
|
@@ -6944,7 +7584,7 @@ declare class VmNotRunningError extends Error {
|
|
|
6944
7584
|
constructor(body: unknown & FreestyleError);
|
|
6945
7585
|
}
|
|
6946
7586
|
interface VmNotFoundPublic {
|
|
6947
|
-
vmId:
|
|
7587
|
+
vmId: VmId;
|
|
6948
7588
|
[k: string]: unknown;
|
|
6949
7589
|
}
|
|
6950
7590
|
declare class VmNotFoundError extends Error {
|
|
@@ -6955,7 +7595,7 @@ declare class VmNotFoundError extends Error {
|
|
|
6955
7595
|
constructor(body: VmNotFoundPublic & FreestyleError);
|
|
6956
7596
|
}
|
|
6957
7597
|
interface PublicInternalForkVmNotFound {
|
|
6958
|
-
forkVmId:
|
|
7598
|
+
forkVmId: VmId;
|
|
6959
7599
|
[k: string]: unknown;
|
|
6960
7600
|
}
|
|
6961
7601
|
declare class InternalForkVmNotFoundError extends Error {
|
|
@@ -6977,7 +7617,7 @@ declare class BadRequestError extends Error {
|
|
|
6977
7617
|
constructor(body: PublicBadRequest & FreestyleError);
|
|
6978
7618
|
}
|
|
6979
7619
|
interface PublicInternalVmNotFound {
|
|
6980
|
-
vmId:
|
|
7620
|
+
vmId: VmId;
|
|
6981
7621
|
[k: string]: unknown;
|
|
6982
7622
|
}
|
|
6983
7623
|
declare class InternalVmNotFoundError extends Error {
|
|
@@ -6987,232 +7627,197 @@ declare class InternalVmNotFoundError extends Error {
|
|
|
6987
7627
|
static readonly description: string;
|
|
6988
7628
|
constructor(body: PublicInternalVmNotFound & FreestyleError);
|
|
6989
7629
|
}
|
|
6990
|
-
declare class
|
|
7630
|
+
declare class NoDefaultSnapshotAvailableError extends Error {
|
|
6991
7631
|
body: unknown & FreestyleError;
|
|
6992
7632
|
static readonly code: string;
|
|
6993
7633
|
static readonly statusCode: number;
|
|
6994
7634
|
static readonly description: string;
|
|
6995
7635
|
constructor(body: unknown & FreestyleError);
|
|
6996
7636
|
}
|
|
6997
|
-
|
|
6998
|
-
userName: string;
|
|
6999
|
-
[k: string]: unknown;
|
|
7000
|
-
}
|
|
7001
|
-
declare class UserAlreadyExistsError extends Error {
|
|
7002
|
-
body: PublicUserAlreadyExists & FreestyleError;
|
|
7003
|
-
static readonly code: string;
|
|
7004
|
-
static readonly statusCode: number;
|
|
7005
|
-
static readonly description: string;
|
|
7006
|
-
constructor(body: PublicUserAlreadyExists & FreestyleError);
|
|
7007
|
-
}
|
|
7008
|
-
declare class ValidationErrorError extends Error {
|
|
7637
|
+
declare class DockerSnapshotFailedError extends Error {
|
|
7009
7638
|
body: unknown & FreestyleError;
|
|
7010
7639
|
static readonly code: string;
|
|
7011
7640
|
static readonly statusCode: number;
|
|
7012
7641
|
static readonly description: string;
|
|
7013
7642
|
constructor(body: unknown & FreestyleError);
|
|
7014
7643
|
}
|
|
7015
|
-
declare class
|
|
7644
|
+
declare class SetDefaultSnapshotFailedError extends Error {
|
|
7016
7645
|
body: unknown & FreestyleError;
|
|
7017
7646
|
static readonly code: string;
|
|
7018
7647
|
static readonly statusCode: number;
|
|
7019
7648
|
static readonly description: string;
|
|
7020
7649
|
constructor(body: unknown & FreestyleError);
|
|
7021
7650
|
}
|
|
7022
|
-
|
|
7023
|
-
groupName: string;
|
|
7024
|
-
[k: string]: unknown;
|
|
7025
|
-
}
|
|
7026
|
-
declare class GroupAlreadyExistsError extends Error {
|
|
7027
|
-
body: PublicGroupAlreadyExists & FreestyleError;
|
|
7028
|
-
static readonly code: string;
|
|
7029
|
-
static readonly statusCode: number;
|
|
7030
|
-
static readonly description: string;
|
|
7031
|
-
constructor(body: PublicGroupAlreadyExists & FreestyleError);
|
|
7032
|
-
}
|
|
7033
|
-
declare class DuplicateUserNameError extends Error {
|
|
7651
|
+
declare class SnapshotLayerCreationFailedError extends Error {
|
|
7034
7652
|
body: unknown & FreestyleError;
|
|
7035
7653
|
static readonly code: string;
|
|
7036
7654
|
static readonly statusCode: number;
|
|
7037
7655
|
static readonly description: string;
|
|
7038
7656
|
constructor(body: unknown & FreestyleError);
|
|
7039
7657
|
}
|
|
7040
|
-
declare class
|
|
7658
|
+
declare class SnapshotDirNotFoundError extends Error {
|
|
7041
7659
|
body: unknown & FreestyleError;
|
|
7042
7660
|
static readonly code: string;
|
|
7043
7661
|
static readonly statusCode: number;
|
|
7044
7662
|
static readonly description: string;
|
|
7045
7663
|
constructor(body: unknown & FreestyleError);
|
|
7046
7664
|
}
|
|
7047
|
-
declare class
|
|
7665
|
+
declare class SubvolumeCreationFailedError extends Error {
|
|
7048
7666
|
body: unknown & FreestyleError;
|
|
7049
7667
|
static readonly code: string;
|
|
7050
7668
|
static readonly statusCode: number;
|
|
7051
7669
|
static readonly description: string;
|
|
7052
7670
|
constructor(body: unknown & FreestyleError);
|
|
7053
7671
|
}
|
|
7054
|
-
declare class
|
|
7672
|
+
declare class GetDefaultSnapshotFailedError extends Error {
|
|
7055
7673
|
body: unknown & FreestyleError;
|
|
7056
7674
|
static readonly code: string;
|
|
7057
7675
|
static readonly statusCode: number;
|
|
7058
7676
|
static readonly description: string;
|
|
7059
7677
|
constructor(body: unknown & FreestyleError);
|
|
7060
7678
|
}
|
|
7061
|
-
declare class
|
|
7679
|
+
declare class UserNotFoundError extends Error {
|
|
7062
7680
|
body: unknown & FreestyleError;
|
|
7063
7681
|
static readonly code: string;
|
|
7064
7682
|
static readonly statusCode: number;
|
|
7065
7683
|
static readonly description: string;
|
|
7066
7684
|
constructor(body: unknown & FreestyleError);
|
|
7067
7685
|
}
|
|
7068
|
-
|
|
7069
|
-
|
|
7686
|
+
interface PublicUserAlreadyExists {
|
|
7687
|
+
userName: string;
|
|
7688
|
+
[k: string]: unknown;
|
|
7689
|
+
}
|
|
7690
|
+
declare class UserAlreadyExistsError extends Error {
|
|
7691
|
+
body: PublicUserAlreadyExists & FreestyleError;
|
|
7070
7692
|
static readonly code: string;
|
|
7071
7693
|
static readonly statusCode: number;
|
|
7072
7694
|
static readonly description: string;
|
|
7073
|
-
constructor(body:
|
|
7695
|
+
constructor(body: PublicUserAlreadyExists & FreestyleError);
|
|
7074
7696
|
}
|
|
7075
|
-
declare class
|
|
7697
|
+
declare class ValidationErrorError extends Error {
|
|
7076
7698
|
body: unknown & FreestyleError;
|
|
7077
7699
|
static readonly code: string;
|
|
7078
7700
|
static readonly statusCode: number;
|
|
7079
7701
|
static readonly description: string;
|
|
7080
7702
|
constructor(body: unknown & FreestyleError);
|
|
7081
7703
|
}
|
|
7082
|
-
declare class
|
|
7704
|
+
declare class GroupNotFoundError extends Error {
|
|
7083
7705
|
body: unknown & FreestyleError;
|
|
7084
7706
|
static readonly code: string;
|
|
7085
7707
|
static readonly statusCode: number;
|
|
7086
7708
|
static readonly description: string;
|
|
7087
7709
|
constructor(body: unknown & FreestyleError);
|
|
7088
7710
|
}
|
|
7089
|
-
|
|
7090
|
-
|
|
7711
|
+
interface PublicGroupAlreadyExists {
|
|
7712
|
+
groupName: string;
|
|
7713
|
+
[k: string]: unknown;
|
|
7714
|
+
}
|
|
7715
|
+
declare class GroupAlreadyExistsError extends Error {
|
|
7716
|
+
body: PublicGroupAlreadyExists & FreestyleError;
|
|
7091
7717
|
static readonly code: string;
|
|
7092
7718
|
static readonly statusCode: number;
|
|
7093
7719
|
static readonly description: string;
|
|
7094
|
-
constructor(body:
|
|
7720
|
+
constructor(body: PublicGroupAlreadyExists & FreestyleError);
|
|
7095
7721
|
}
|
|
7096
|
-
declare class
|
|
7722
|
+
declare class DuplicateUserNameError extends Error {
|
|
7097
7723
|
body: unknown & FreestyleError;
|
|
7098
7724
|
static readonly code: string;
|
|
7099
7725
|
static readonly statusCode: number;
|
|
7100
7726
|
static readonly description: string;
|
|
7101
7727
|
constructor(body: unknown & FreestyleError);
|
|
7102
7728
|
}
|
|
7103
|
-
declare class
|
|
7729
|
+
declare class UserGroupEmptyError extends Error {
|
|
7104
7730
|
body: unknown & FreestyleError;
|
|
7105
7731
|
static readonly code: string;
|
|
7106
7732
|
static readonly statusCode: number;
|
|
7107
7733
|
static readonly description: string;
|
|
7108
7734
|
constructor(body: unknown & FreestyleError);
|
|
7109
7735
|
}
|
|
7110
|
-
declare class
|
|
7736
|
+
declare class UserSystemFlagMismatchError extends Error {
|
|
7111
7737
|
body: unknown & FreestyleError;
|
|
7112
7738
|
static readonly code: string;
|
|
7113
7739
|
static readonly statusCode: number;
|
|
7114
7740
|
static readonly description: string;
|
|
7115
7741
|
constructor(body: unknown & FreestyleError);
|
|
7116
7742
|
}
|
|
7117
|
-
declare class
|
|
7743
|
+
declare class UserUidOutOfRangeError extends Error {
|
|
7118
7744
|
body: unknown & FreestyleError;
|
|
7119
7745
|
static readonly code: string;
|
|
7120
7746
|
static readonly statusCode: number;
|
|
7121
7747
|
static readonly description: string;
|
|
7122
7748
|
constructor(body: unknown & FreestyleError);
|
|
7123
7749
|
}
|
|
7124
|
-
declare class
|
|
7750
|
+
declare class UserHomeInvalidError extends Error {
|
|
7125
7751
|
body: unknown & FreestyleError;
|
|
7126
7752
|
static readonly code: string;
|
|
7127
7753
|
static readonly statusCode: number;
|
|
7128
7754
|
static readonly description: string;
|
|
7129
7755
|
constructor(body: unknown & FreestyleError);
|
|
7130
7756
|
}
|
|
7131
|
-
declare class
|
|
7757
|
+
declare class UserShellInvalidError extends Error {
|
|
7132
7758
|
body: unknown & FreestyleError;
|
|
7133
7759
|
static readonly code: string;
|
|
7134
7760
|
static readonly statusCode: number;
|
|
7135
7761
|
static readonly description: string;
|
|
7136
7762
|
constructor(body: unknown & FreestyleError);
|
|
7137
7763
|
}
|
|
7138
|
-
declare class
|
|
7764
|
+
declare class DuplicateGroupNameError extends Error {
|
|
7139
7765
|
body: unknown & FreestyleError;
|
|
7140
7766
|
static readonly code: string;
|
|
7141
7767
|
static readonly statusCode: number;
|
|
7142
7768
|
static readonly description: string;
|
|
7143
7769
|
constructor(body: unknown & FreestyleError);
|
|
7144
7770
|
}
|
|
7145
|
-
declare class
|
|
7771
|
+
declare class GroupNameReservedError extends Error {
|
|
7146
7772
|
body: unknown & FreestyleError;
|
|
7147
7773
|
static readonly code: string;
|
|
7148
7774
|
static readonly statusCode: number;
|
|
7149
7775
|
static readonly description: string;
|
|
7150
7776
|
constructor(body: unknown & FreestyleError);
|
|
7151
7777
|
}
|
|
7152
|
-
declare class
|
|
7778
|
+
declare class GroupNameInvalidCharsError extends Error {
|
|
7153
7779
|
body: unknown & FreestyleError;
|
|
7154
7780
|
static readonly code: string;
|
|
7155
7781
|
static readonly statusCode: number;
|
|
7156
7782
|
static readonly description: string;
|
|
7157
7783
|
constructor(body: unknown & FreestyleError);
|
|
7158
7784
|
}
|
|
7159
|
-
|
|
7160
|
-
|
|
7161
|
-
failedReason: string;
|
|
7162
|
-
[k: string]: unknown;
|
|
7163
|
-
}
|
|
7164
|
-
declare class SnapshotSetupFailedError extends Error {
|
|
7165
|
-
body: PublicSnapshotSetupFailed & FreestyleError;
|
|
7166
|
-
static readonly code: string;
|
|
7167
|
-
static readonly statusCode: number;
|
|
7168
|
-
static readonly description: string;
|
|
7169
|
-
constructor(body: PublicSnapshotSetupFailed & FreestyleError);
|
|
7170
|
-
}
|
|
7171
|
-
interface PublicSnapshotVmBadRequest {
|
|
7172
|
-
message: string;
|
|
7173
|
-
[k: string]: unknown;
|
|
7174
|
-
}
|
|
7175
|
-
declare class SnapshotVmBadRequestError extends Error {
|
|
7176
|
-
body: PublicSnapshotVmBadRequest & FreestyleError;
|
|
7785
|
+
declare class GroupNameTooLongError extends Error {
|
|
7786
|
+
body: unknown & FreestyleError;
|
|
7177
7787
|
static readonly code: string;
|
|
7178
7788
|
static readonly statusCode: number;
|
|
7179
7789
|
static readonly description: string;
|
|
7180
|
-
constructor(body:
|
|
7790
|
+
constructor(body: unknown & FreestyleError);
|
|
7181
7791
|
}
|
|
7182
|
-
declare class
|
|
7792
|
+
declare class GroupNameEmptyError extends Error {
|
|
7183
7793
|
body: unknown & FreestyleError;
|
|
7184
7794
|
static readonly code: string;
|
|
7185
7795
|
static readonly statusCode: number;
|
|
7186
7796
|
static readonly description: string;
|
|
7187
7797
|
constructor(body: unknown & FreestyleError);
|
|
7188
7798
|
}
|
|
7189
|
-
declare class
|
|
7799
|
+
declare class ActiveTransactionErrorError extends Error {
|
|
7190
7800
|
body: unknown & FreestyleError;
|
|
7191
7801
|
static readonly code: string;
|
|
7192
7802
|
static readonly statusCode: number;
|
|
7193
7803
|
static readonly description: string;
|
|
7194
7804
|
constructor(body: unknown & FreestyleError);
|
|
7195
7805
|
}
|
|
7196
|
-
|
|
7197
|
-
|
|
7198
|
-
details: string;
|
|
7199
|
-
[k: string]: unknown;
|
|
7200
|
-
}
|
|
7201
|
-
declare class InvalidVmIdError extends Error {
|
|
7202
|
-
body: PublicInvalidVmId & FreestyleError;
|
|
7806
|
+
declare class SwapVmTapError extends Error {
|
|
7807
|
+
body: unknown & FreestyleError;
|
|
7203
7808
|
static readonly code: string;
|
|
7204
7809
|
static readonly statusCode: number;
|
|
7205
7810
|
static readonly description: string;
|
|
7206
|
-
constructor(body:
|
|
7811
|
+
constructor(body: unknown & FreestyleError);
|
|
7207
7812
|
}
|
|
7208
|
-
declare class
|
|
7813
|
+
declare class RootfsCopyErrorError extends Error {
|
|
7209
7814
|
body: unknown & FreestyleError;
|
|
7210
7815
|
static readonly code: string;
|
|
7211
7816
|
static readonly statusCode: number;
|
|
7212
7817
|
static readonly description: string;
|
|
7213
7818
|
constructor(body: unknown & FreestyleError);
|
|
7214
7819
|
}
|
|
7215
|
-
declare class
|
|
7820
|
+
declare class PartitionNotFoundError extends Error {
|
|
7216
7821
|
body: unknown & FreestyleError;
|
|
7217
7822
|
static readonly code: string;
|
|
7218
7823
|
static readonly statusCode: number;
|
|
@@ -7241,61 +7846,56 @@ declare class FilesBadRequestError extends Error {
|
|
|
7241
7846
|
static readonly description: string;
|
|
7242
7847
|
constructor(body: PublicFilesBadRequest & FreestyleError);
|
|
7243
7848
|
}
|
|
7244
|
-
|
|
7245
|
-
message: string;
|
|
7246
|
-
[k: string]: unknown;
|
|
7247
|
-
}
|
|
7248
|
-
declare class InvalidGitRepoSpecErrorError extends Error {
|
|
7249
|
-
body: InvalidGitRepoSpecErrorPublic & FreestyleError;
|
|
7250
|
-
static readonly code: string;
|
|
7251
|
-
static readonly statusCode: number;
|
|
7252
|
-
static readonly description: string;
|
|
7253
|
-
constructor(body: InvalidGitRepoSpecErrorPublic & FreestyleError);
|
|
7254
|
-
}
|
|
7255
|
-
declare class InternalErrorError extends Error {
|
|
7849
|
+
declare class DatabaseErrorError extends Error {
|
|
7256
7850
|
body: unknown & FreestyleError;
|
|
7257
7851
|
static readonly code: string;
|
|
7258
7852
|
static readonly statusCode: number;
|
|
7259
7853
|
static readonly description: string;
|
|
7260
7854
|
constructor(body: unknown & FreestyleError);
|
|
7261
7855
|
}
|
|
7262
|
-
interface
|
|
7263
|
-
|
|
7856
|
+
interface PublicInvalidVmId {
|
|
7857
|
+
vmId: string;
|
|
7858
|
+
details: string;
|
|
7264
7859
|
[k: string]: unknown;
|
|
7265
7860
|
}
|
|
7266
|
-
declare class
|
|
7267
|
-
body:
|
|
7861
|
+
declare class InvalidVmIdError extends Error {
|
|
7862
|
+
body: PublicInvalidVmId & FreestyleError;
|
|
7268
7863
|
static readonly code: string;
|
|
7269
7864
|
static readonly statusCode: number;
|
|
7270
7865
|
static readonly description: string;
|
|
7271
|
-
constructor(body:
|
|
7866
|
+
constructor(body: PublicInvalidVmId & FreestyleError);
|
|
7272
7867
|
}
|
|
7273
|
-
interface
|
|
7274
|
-
|
|
7868
|
+
interface VmOperationDeniedDuringTransactionPublic {
|
|
7869
|
+
vmId: VmId;
|
|
7870
|
+
transactionId: string;
|
|
7275
7871
|
[k: string]: unknown;
|
|
7276
7872
|
}
|
|
7277
|
-
declare class
|
|
7278
|
-
body:
|
|
7873
|
+
declare class VmOperationDeniedDuringTransactionError extends Error {
|
|
7874
|
+
body: VmOperationDeniedDuringTransactionPublic & FreestyleError;
|
|
7279
7875
|
static readonly code: string;
|
|
7280
7876
|
static readonly statusCode: number;
|
|
7281
7877
|
static readonly description: string;
|
|
7282
|
-
constructor(body:
|
|
7878
|
+
constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError);
|
|
7283
7879
|
}
|
|
7284
|
-
|
|
7285
|
-
|
|
7286
|
-
|
|
7287
|
-
|
|
7288
|
-
|
|
7289
|
-
|
|
7880
|
+
type VmId = string;
|
|
7881
|
+
type VmId = string;
|
|
7882
|
+
type VmId = string;
|
|
7883
|
+
type VmId = string;
|
|
7884
|
+
type VmId = string;
|
|
7885
|
+
interface VmTransactionIdMismatchPublic {
|
|
7886
|
+
vmId: VmId;
|
|
7887
|
+
expectedTransactionId: string;
|
|
7888
|
+
providedTransactionId: string;
|
|
7889
|
+
[k: string]: unknown;
|
|
7290
7890
|
}
|
|
7291
|
-
declare class
|
|
7292
|
-
body:
|
|
7891
|
+
declare class VmTransactionIdMismatchError extends Error {
|
|
7892
|
+
body: VmTransactionIdMismatchPublic & FreestyleError;
|
|
7293
7893
|
static readonly code: string;
|
|
7294
7894
|
static readonly statusCode: number;
|
|
7295
7895
|
static readonly description: string;
|
|
7296
|
-
constructor(body:
|
|
7896
|
+
constructor(body: VmTransactionIdMismatchPublic & FreestyleError);
|
|
7297
7897
|
}
|
|
7298
|
-
declare class
|
|
7898
|
+
declare class VmNotInTransactionError extends Error {
|
|
7299
7899
|
body: unknown & FreestyleError;
|
|
7300
7900
|
static readonly code: string;
|
|
7301
7901
|
static readonly statusCode: number;
|
|
@@ -7313,24 +7913,32 @@ declare class CreateVmBadRequestError extends Error {
|
|
|
7313
7913
|
static readonly description: string;
|
|
7314
7914
|
constructor(body: PublicCreateVmBadRequest & FreestyleError);
|
|
7315
7915
|
}
|
|
7916
|
+
interface VmSetupFailedPublic {
|
|
7917
|
+
snapshotId?: string | null;
|
|
7918
|
+
failedReason: string;
|
|
7919
|
+
diagnostics?: PostBootDiagnostics | null;
|
|
7920
|
+
[k: string]: unknown;
|
|
7921
|
+
}
|
|
7922
|
+
interface PostBootDiagnostics {
|
|
7923
|
+
/**
|
|
7924
|
+
* Summary of all systemd service states grouped by (active_state, sub_state)
|
|
7925
|
+
*/
|
|
7926
|
+
serviceStates: ServiceStateGroup[];
|
|
7927
|
+
/**
|
|
7928
|
+
* Journald logs for all services in a failed state
|
|
7929
|
+
*/
|
|
7930
|
+
failedServiceLogs: ServiceLog[];
|
|
7931
|
+
[k: string]: unknown;
|
|
7932
|
+
}
|
|
7316
7933
|
interface ServiceStateGroup {
|
|
7317
7934
|
activeState: string;
|
|
7318
7935
|
subState: string;
|
|
7319
7936
|
services: string[];
|
|
7937
|
+
[k: string]: unknown;
|
|
7320
7938
|
}
|
|
7321
7939
|
interface ServiceLog {
|
|
7322
7940
|
unitName: string;
|
|
7323
7941
|
log: string;
|
|
7324
|
-
}
|
|
7325
|
-
interface PostBootDiagnostics {
|
|
7326
|
-
serviceStates: ServiceStateGroup[];
|
|
7327
|
-
failedServiceLogs: ServiceLog[];
|
|
7328
|
-
additionalFailedServiceLogs: ServiceLog[];
|
|
7329
|
-
}
|
|
7330
|
-
interface VmSetupFailedPublic {
|
|
7331
|
-
snapshotId?: string | null;
|
|
7332
|
-
failedReason: string;
|
|
7333
|
-
diagnostics?: PostBootDiagnostics | null;
|
|
7334
7942
|
[k: string]: unknown;
|
|
7335
7943
|
}
|
|
7336
7944
|
declare class VmSetupFailedError extends Error {
|
|
@@ -7543,135 +8151,121 @@ declare class ExpiredError extends Error {
|
|
|
7543
8151
|
static readonly description: string;
|
|
7544
8152
|
constructor(body: unknown & FreestyleError);
|
|
7545
8153
|
}
|
|
7546
|
-
|
|
7547
|
-
|
|
7548
|
-
|
|
7549
|
-
static readonly statusCode: number;
|
|
7550
|
-
static readonly description: string;
|
|
7551
|
-
constructor(body: unknown & FreestyleError);
|
|
8154
|
+
interface PublicBranchNotFound {
|
|
8155
|
+
branch: string;
|
|
8156
|
+
[k: string]: unknown;
|
|
7552
8157
|
}
|
|
7553
|
-
declare class
|
|
7554
|
-
body:
|
|
8158
|
+
declare class BranchNotFoundError extends Error {
|
|
8159
|
+
body: PublicBranchNotFound & FreestyleError;
|
|
7555
8160
|
static readonly code: string;
|
|
7556
8161
|
static readonly statusCode: number;
|
|
7557
8162
|
static readonly description: string;
|
|
7558
|
-
constructor(body:
|
|
8163
|
+
constructor(body: PublicBranchNotFound & FreestyleError);
|
|
7559
8164
|
}
|
|
7560
|
-
interface
|
|
7561
|
-
|
|
8165
|
+
interface PublicBranchAlreadyExists {
|
|
8166
|
+
branch: string;
|
|
7562
8167
|
[k: string]: unknown;
|
|
7563
8168
|
}
|
|
7564
|
-
declare class
|
|
7565
|
-
body:
|
|
8169
|
+
declare class BranchAlreadyExistsError extends Error {
|
|
8170
|
+
body: PublicBranchAlreadyExists & FreestyleError;
|
|
7566
8171
|
static readonly code: string;
|
|
7567
8172
|
static readonly statusCode: number;
|
|
7568
8173
|
static readonly description: string;
|
|
7569
|
-
constructor(body:
|
|
7570
|
-
}
|
|
7571
|
-
interface PublicInvalidRange {
|
|
7572
|
-
since: string;
|
|
7573
|
-
until: string;
|
|
7574
|
-
[k: string]: unknown;
|
|
7575
|
-
}
|
|
7576
|
-
declare class InvalidRangeError extends Error {
|
|
7577
|
-
body: PublicInvalidRange & FreestyleError;
|
|
7578
|
-
static readonly code: string;
|
|
7579
|
-
static readonly statusCode: number;
|
|
7580
|
-
static readonly description: string;
|
|
7581
|
-
constructor(body: PublicInvalidRange & FreestyleError);
|
|
8174
|
+
constructor(body: PublicBranchAlreadyExists & FreestyleError);
|
|
7582
8175
|
}
|
|
7583
|
-
declare class
|
|
8176
|
+
declare class NoDefaultBranchError extends Error {
|
|
7584
8177
|
body: unknown & FreestyleError;
|
|
7585
8178
|
static readonly code: string;
|
|
7586
8179
|
static readonly statusCode: number;
|
|
7587
8180
|
static readonly description: string;
|
|
7588
8181
|
constructor(body: unknown & FreestyleError);
|
|
7589
8182
|
}
|
|
7590
|
-
interface
|
|
8183
|
+
interface PublicCommitNotFound {
|
|
7591
8184
|
sha: string;
|
|
7592
|
-
branch: string;
|
|
7593
8185
|
[k: string]: unknown;
|
|
7594
8186
|
}
|
|
7595
|
-
declare class
|
|
7596
|
-
body:
|
|
8187
|
+
declare class CommitNotFoundError extends Error {
|
|
8188
|
+
body: PublicCommitNotFound & FreestyleError;
|
|
7597
8189
|
static readonly code: string;
|
|
7598
8190
|
static readonly statusCode: number;
|
|
7599
8191
|
static readonly description: string;
|
|
7600
|
-
constructor(body:
|
|
8192
|
+
constructor(body: PublicCommitNotFound & FreestyleError);
|
|
7601
8193
|
}
|
|
7602
|
-
interface
|
|
8194
|
+
interface PublicParentNotFound {
|
|
7603
8195
|
sha: string;
|
|
7604
8196
|
[k: string]: unknown;
|
|
7605
8197
|
}
|
|
7606
|
-
declare class
|
|
7607
|
-
body:
|
|
8198
|
+
declare class ParentNotFoundError extends Error {
|
|
8199
|
+
body: PublicParentNotFound & FreestyleError;
|
|
7608
8200
|
static readonly code: string;
|
|
7609
8201
|
static readonly statusCode: number;
|
|
7610
8202
|
static readonly description: string;
|
|
7611
|
-
constructor(body:
|
|
8203
|
+
constructor(body: PublicParentNotFound & FreestyleError);
|
|
7612
8204
|
}
|
|
7613
|
-
interface
|
|
7614
|
-
|
|
8205
|
+
interface PublicTreeNotFound {
|
|
8206
|
+
sha: string;
|
|
7615
8207
|
[k: string]: unknown;
|
|
7616
8208
|
}
|
|
7617
|
-
declare class
|
|
7618
|
-
body:
|
|
8209
|
+
declare class TreeNotFoundError extends Error {
|
|
8210
|
+
body: PublicTreeNotFound & FreestyleError;
|
|
7619
8211
|
static readonly code: string;
|
|
7620
8212
|
static readonly statusCode: number;
|
|
7621
8213
|
static readonly description: string;
|
|
7622
|
-
constructor(body:
|
|
8214
|
+
constructor(body: PublicTreeNotFound & FreestyleError);
|
|
7623
8215
|
}
|
|
7624
|
-
declare class
|
|
8216
|
+
declare class PackfileError extends Error {
|
|
7625
8217
|
body: unknown & FreestyleError;
|
|
7626
8218
|
static readonly code: string;
|
|
7627
8219
|
static readonly statusCode: number;
|
|
7628
8220
|
static readonly description: string;
|
|
7629
8221
|
constructor(body: unknown & FreestyleError);
|
|
7630
8222
|
}
|
|
7631
|
-
interface
|
|
7632
|
-
|
|
8223
|
+
interface PublicInvalidRevision {
|
|
8224
|
+
revision: string;
|
|
7633
8225
|
[k: string]: unknown;
|
|
7634
8226
|
}
|
|
7635
|
-
declare class
|
|
7636
|
-
body:
|
|
8227
|
+
declare class InvalidRevisionError extends Error {
|
|
8228
|
+
body: PublicInvalidRevision & FreestyleError;
|
|
7637
8229
|
static readonly code: string;
|
|
7638
8230
|
static readonly statusCode: number;
|
|
7639
8231
|
static readonly description: string;
|
|
7640
|
-
constructor(body:
|
|
8232
|
+
constructor(body: PublicInvalidRevision & FreestyleError);
|
|
7641
8233
|
}
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
8234
|
+
declare class ForbiddenError extends Error {
|
|
8235
|
+
body: unknown & FreestyleError;
|
|
8236
|
+
static readonly code: string;
|
|
8237
|
+
static readonly statusCode: number;
|
|
8238
|
+
static readonly description: string;
|
|
8239
|
+
constructor(body: unknown & FreestyleError);
|
|
7645
8240
|
}
|
|
7646
|
-
declare class
|
|
7647
|
-
body:
|
|
8241
|
+
declare class UnauthorizedError extends Error {
|
|
8242
|
+
body: unknown & FreestyleError;
|
|
7648
8243
|
static readonly code: string;
|
|
7649
8244
|
static readonly statusCode: number;
|
|
7650
8245
|
static readonly description: string;
|
|
7651
|
-
constructor(body:
|
|
8246
|
+
constructor(body: unknown & FreestyleError);
|
|
7652
8247
|
}
|
|
7653
|
-
interface
|
|
8248
|
+
interface PublicPathNotFound {
|
|
7654
8249
|
path: string;
|
|
7655
8250
|
[k: string]: unknown;
|
|
7656
8251
|
}
|
|
7657
|
-
declare class
|
|
7658
|
-
body:
|
|
8252
|
+
declare class PathNotFoundError extends Error {
|
|
8253
|
+
body: PublicPathNotFound & FreestyleError;
|
|
7659
8254
|
static readonly code: string;
|
|
7660
8255
|
static readonly statusCode: number;
|
|
7661
8256
|
static readonly description: string;
|
|
7662
|
-
constructor(body:
|
|
8257
|
+
constructor(body: PublicPathNotFound & FreestyleError);
|
|
7663
8258
|
}
|
|
7664
|
-
interface
|
|
7665
|
-
|
|
7666
|
-
actual?: string | null;
|
|
8259
|
+
interface PublicReferenceNotFound {
|
|
8260
|
+
reference: string;
|
|
7667
8261
|
[k: string]: unknown;
|
|
7668
8262
|
}
|
|
7669
|
-
declare class
|
|
7670
|
-
body:
|
|
8263
|
+
declare class ReferenceNotFoundError extends Error {
|
|
8264
|
+
body: PublicReferenceNotFound & FreestyleError;
|
|
7671
8265
|
static readonly code: string;
|
|
7672
8266
|
static readonly statusCode: number;
|
|
7673
8267
|
static readonly description: string;
|
|
7674
|
-
constructor(body:
|
|
8268
|
+
constructor(body: PublicReferenceNotFound & FreestyleError);
|
|
7675
8269
|
}
|
|
7676
8270
|
interface PublicAmbiguous {
|
|
7677
8271
|
rev: string;
|
|
@@ -7706,114 +8300,151 @@ declare class InvalidError extends Error {
|
|
|
7706
8300
|
static readonly description: string;
|
|
7707
8301
|
constructor(body: PublicInvalid & FreestyleError);
|
|
7708
8302
|
}
|
|
7709
|
-
|
|
7710
|
-
|
|
7711
|
-
};
|
|
7712
|
-
interface PublicUnsupportedTransfer {
|
|
7713
|
-
requested: LfsTransferAdapter[];
|
|
7714
|
-
supported: LfsTransferAdapter[];
|
|
8303
|
+
interface PublicDiffInvalidPathPattern {
|
|
8304
|
+
reason: string;
|
|
7715
8305
|
[k: string]: unknown;
|
|
7716
8306
|
}
|
|
7717
|
-
declare class
|
|
7718
|
-
body:
|
|
8307
|
+
declare class DiffInvalidPathPatternError extends Error {
|
|
8308
|
+
body: PublicDiffInvalidPathPattern & FreestyleError;
|
|
7719
8309
|
static readonly code: string;
|
|
7720
8310
|
static readonly statusCode: number;
|
|
7721
8311
|
static readonly description: string;
|
|
7722
|
-
constructor(body:
|
|
8312
|
+
constructor(body: PublicDiffInvalidPathPattern & FreestyleError);
|
|
7723
8313
|
}
|
|
7724
|
-
interface
|
|
7725
|
-
|
|
8314
|
+
interface PublicDiffInvalidRegex {
|
|
8315
|
+
reason: string;
|
|
7726
8316
|
[k: string]: unknown;
|
|
7727
8317
|
}
|
|
7728
|
-
declare class
|
|
7729
|
-
body:
|
|
8318
|
+
declare class DiffInvalidRegexError extends Error {
|
|
8319
|
+
body: PublicDiffInvalidRegex & FreestyleError;
|
|
7730
8320
|
static readonly code: string;
|
|
7731
8321
|
static readonly statusCode: number;
|
|
7732
8322
|
static readonly description: string;
|
|
7733
|
-
constructor(body:
|
|
8323
|
+
constructor(body: PublicDiffInvalidRegex & FreestyleError);
|
|
7734
8324
|
}
|
|
7735
|
-
|
|
7736
|
-
|
|
8325
|
+
declare class DiffEmptyQueryError extends Error {
|
|
8326
|
+
body: unknown & FreestyleError;
|
|
8327
|
+
static readonly code: string;
|
|
8328
|
+
static readonly statusCode: number;
|
|
8329
|
+
static readonly description: string;
|
|
8330
|
+
constructor(body: unknown & FreestyleError);
|
|
8331
|
+
}
|
|
8332
|
+
interface PublicCommitInvalidRegex {
|
|
8333
|
+
reason: string;
|
|
7737
8334
|
[k: string]: unknown;
|
|
7738
8335
|
}
|
|
7739
|
-
declare class
|
|
7740
|
-
body:
|
|
8336
|
+
declare class CommitInvalidRegexError extends Error {
|
|
8337
|
+
body: PublicCommitInvalidRegex & FreestyleError;
|
|
7741
8338
|
static readonly code: string;
|
|
7742
8339
|
static readonly statusCode: number;
|
|
7743
8340
|
static readonly description: string;
|
|
7744
|
-
constructor(body:
|
|
8341
|
+
constructor(body: PublicCommitInvalidRegex & FreestyleError);
|
|
7745
8342
|
}
|
|
7746
|
-
declare class
|
|
8343
|
+
declare class CommitEmptyQueryError extends Error {
|
|
7747
8344
|
body: unknown & FreestyleError;
|
|
7748
8345
|
static readonly code: string;
|
|
7749
8346
|
static readonly statusCode: number;
|
|
7750
8347
|
static readonly description: string;
|
|
7751
8348
|
constructor(body: unknown & FreestyleError);
|
|
7752
8349
|
}
|
|
7753
|
-
|
|
8350
|
+
interface PublicFilenameInvalidPattern {
|
|
8351
|
+
reason: string;
|
|
8352
|
+
[k: string]: unknown;
|
|
8353
|
+
}
|
|
8354
|
+
declare class FilenameInvalidPatternError extends Error {
|
|
8355
|
+
body: PublicFilenameInvalidPattern & FreestyleError;
|
|
8356
|
+
static readonly code: string;
|
|
8357
|
+
static readonly statusCode: number;
|
|
8358
|
+
static readonly description: string;
|
|
8359
|
+
constructor(body: PublicFilenameInvalidPattern & FreestyleError);
|
|
8360
|
+
}
|
|
8361
|
+
declare class FilenameEmptyQueryError extends Error {
|
|
7754
8362
|
body: unknown & FreestyleError;
|
|
7755
8363
|
static readonly code: string;
|
|
7756
8364
|
static readonly statusCode: number;
|
|
7757
8365
|
static readonly description: string;
|
|
7758
8366
|
constructor(body: unknown & FreestyleError);
|
|
7759
8367
|
}
|
|
7760
|
-
interface
|
|
7761
|
-
|
|
8368
|
+
interface PublicInvalidRegex {
|
|
8369
|
+
reason: string;
|
|
7762
8370
|
[k: string]: unknown;
|
|
7763
8371
|
}
|
|
7764
|
-
declare class
|
|
7765
|
-
body:
|
|
8372
|
+
declare class InvalidRegexError extends Error {
|
|
8373
|
+
body: PublicInvalidRegex & FreestyleError;
|
|
7766
8374
|
static readonly code: string;
|
|
7767
8375
|
static readonly statusCode: number;
|
|
7768
8376
|
static readonly description: string;
|
|
7769
|
-
constructor(body:
|
|
8377
|
+
constructor(body: PublicInvalidRegex & FreestyleError);
|
|
7770
8378
|
}
|
|
7771
|
-
interface
|
|
7772
|
-
|
|
8379
|
+
interface PublicInvalidPathPattern {
|
|
8380
|
+
reason: string;
|
|
7773
8381
|
[k: string]: unknown;
|
|
7774
8382
|
}
|
|
7775
|
-
declare class
|
|
7776
|
-
body:
|
|
8383
|
+
declare class InvalidPathPatternError extends Error {
|
|
8384
|
+
body: PublicInvalidPathPattern & FreestyleError;
|
|
7777
8385
|
static readonly code: string;
|
|
7778
8386
|
static readonly statusCode: number;
|
|
7779
8387
|
static readonly description: string;
|
|
7780
|
-
constructor(body:
|
|
8388
|
+
constructor(body: PublicInvalidPathPattern & FreestyleError);
|
|
7781
8389
|
}
|
|
7782
|
-
|
|
7783
|
-
|
|
8390
|
+
declare class EmptyQueryError extends Error {
|
|
8391
|
+
body: unknown & FreestyleError;
|
|
8392
|
+
static readonly code: string;
|
|
8393
|
+
static readonly statusCode: number;
|
|
8394
|
+
static readonly description: string;
|
|
8395
|
+
constructor(body: unknown & FreestyleError);
|
|
8396
|
+
}
|
|
8397
|
+
declare class ConflictError extends Error {
|
|
8398
|
+
body: unknown & FreestyleError;
|
|
8399
|
+
static readonly code: string;
|
|
8400
|
+
static readonly statusCode: number;
|
|
8401
|
+
static readonly description: string;
|
|
8402
|
+
constructor(body: unknown & FreestyleError);
|
|
8403
|
+
}
|
|
8404
|
+
interface PublicInvalidBase64Content {
|
|
8405
|
+
path: string;
|
|
7784
8406
|
[k: string]: unknown;
|
|
7785
8407
|
}
|
|
7786
|
-
declare class
|
|
7787
|
-
body:
|
|
8408
|
+
declare class InvalidBase64ContentError extends Error {
|
|
8409
|
+
body: PublicInvalidBase64Content & FreestyleError;
|
|
7788
8410
|
static readonly code: string;
|
|
7789
8411
|
static readonly statusCode: number;
|
|
7790
8412
|
static readonly description: string;
|
|
7791
|
-
constructor(body:
|
|
8413
|
+
constructor(body: PublicInvalidBase64Content & FreestyleError);
|
|
7792
8414
|
}
|
|
7793
|
-
interface
|
|
7794
|
-
|
|
8415
|
+
interface PublicInvalidFileChange {
|
|
8416
|
+
path: string;
|
|
7795
8417
|
[k: string]: unknown;
|
|
7796
8418
|
}
|
|
7797
|
-
declare class
|
|
7798
|
-
body:
|
|
8419
|
+
declare class InvalidFileChangeError extends Error {
|
|
8420
|
+
body: PublicInvalidFileChange & FreestyleError;
|
|
7799
8421
|
static readonly code: string;
|
|
7800
8422
|
static readonly statusCode: number;
|
|
7801
8423
|
static readonly description: string;
|
|
7802
|
-
constructor(body:
|
|
8424
|
+
constructor(body: PublicInvalidFileChange & FreestyleError);
|
|
7803
8425
|
}
|
|
7804
|
-
|
|
7805
|
-
|
|
8426
|
+
interface PublicInvalidFilePath {
|
|
8427
|
+
path: string;
|
|
8428
|
+
[k: string]: unknown;
|
|
8429
|
+
}
|
|
8430
|
+
declare class InvalidFilePathError extends Error {
|
|
8431
|
+
body: PublicInvalidFilePath & FreestyleError;
|
|
7806
8432
|
static readonly code: string;
|
|
7807
8433
|
static readonly statusCode: number;
|
|
7808
8434
|
static readonly description: string;
|
|
7809
|
-
constructor(body:
|
|
8435
|
+
constructor(body: PublicInvalidFilePath & FreestyleError);
|
|
7810
8436
|
}
|
|
7811
|
-
|
|
7812
|
-
|
|
8437
|
+
interface PublicConflictingParent {
|
|
8438
|
+
expected: string;
|
|
8439
|
+
actual?: string | null;
|
|
8440
|
+
[k: string]: unknown;
|
|
8441
|
+
}
|
|
8442
|
+
declare class ConflictingParentError extends Error {
|
|
8443
|
+
body: PublicConflictingParent & FreestyleError;
|
|
7813
8444
|
static readonly code: string;
|
|
7814
8445
|
static readonly statusCode: number;
|
|
7815
8446
|
static readonly description: string;
|
|
7816
|
-
constructor(body:
|
|
8447
|
+
constructor(body: PublicConflictingParent & FreestyleError);
|
|
7817
8448
|
}
|
|
7818
8449
|
interface PublicInvalidAccountId {
|
|
7819
8450
|
accountId: string;
|
|
@@ -7881,615 +8512,687 @@ declare class RepoAlreadyExistsError extends Error {
|
|
|
7881
8512
|
static readonly description: string;
|
|
7882
8513
|
constructor(body: PublicRepoAlreadyExists & FreestyleError);
|
|
7883
8514
|
}
|
|
7884
|
-
declare class
|
|
8515
|
+
declare class SendErrorError extends Error {
|
|
7885
8516
|
body: unknown & FreestyleError;
|
|
7886
8517
|
static readonly code: string;
|
|
7887
8518
|
static readonly statusCode: number;
|
|
7888
8519
|
static readonly description: string;
|
|
7889
8520
|
constructor(body: unknown & FreestyleError);
|
|
7890
8521
|
}
|
|
7891
|
-
interface
|
|
7892
|
-
|
|
8522
|
+
interface PublicInvalidRange {
|
|
8523
|
+
since: string;
|
|
8524
|
+
until: string;
|
|
7893
8525
|
[k: string]: unknown;
|
|
7894
8526
|
}
|
|
7895
|
-
declare class
|
|
7896
|
-
body:
|
|
8527
|
+
declare class InvalidRangeError extends Error {
|
|
8528
|
+
body: PublicInvalidRange & FreestyleError;
|
|
7897
8529
|
static readonly code: string;
|
|
7898
8530
|
static readonly statusCode: number;
|
|
7899
8531
|
static readonly description: string;
|
|
7900
|
-
constructor(body:
|
|
8532
|
+
constructor(body: PublicInvalidRange & FreestyleError);
|
|
7901
8533
|
}
|
|
7902
|
-
declare class
|
|
8534
|
+
declare class OffsetWithSelectorError extends Error {
|
|
7903
8535
|
body: unknown & FreestyleError;
|
|
7904
8536
|
static readonly code: string;
|
|
7905
8537
|
static readonly statusCode: number;
|
|
7906
8538
|
static readonly description: string;
|
|
7907
8539
|
constructor(body: unknown & FreestyleError);
|
|
7908
8540
|
}
|
|
7909
|
-
interface
|
|
7910
|
-
|
|
8541
|
+
interface PublicCommitNotInBranch {
|
|
8542
|
+
sha: string;
|
|
8543
|
+
branch: string;
|
|
7911
8544
|
[k: string]: unknown;
|
|
7912
8545
|
}
|
|
7913
|
-
declare class
|
|
7914
|
-
body:
|
|
8546
|
+
declare class CommitNotInBranchError extends Error {
|
|
8547
|
+
body: PublicCommitNotInBranch & FreestyleError;
|
|
7915
8548
|
static readonly code: string;
|
|
7916
8549
|
static readonly statusCode: number;
|
|
7917
8550
|
static readonly description: string;
|
|
7918
|
-
constructor(body:
|
|
8551
|
+
constructor(body: PublicCommitNotInBranch & FreestyleError);
|
|
7919
8552
|
}
|
|
7920
|
-
|
|
7921
|
-
|
|
8553
|
+
interface PublicTagNotFound {
|
|
8554
|
+
hash: string;
|
|
8555
|
+
[k: string]: unknown;
|
|
8556
|
+
}
|
|
8557
|
+
declare class TagNotFoundError extends Error {
|
|
8558
|
+
body: PublicTagNotFound & FreestyleError;
|
|
7922
8559
|
static readonly code: string;
|
|
7923
8560
|
static readonly statusCode: number;
|
|
7924
8561
|
static readonly description: string;
|
|
7925
|
-
constructor(body:
|
|
8562
|
+
constructor(body: PublicTagNotFound & FreestyleError);
|
|
7926
8563
|
}
|
|
7927
|
-
declare class
|
|
8564
|
+
declare class InvalidServiceError extends Error {
|
|
7928
8565
|
body: unknown & FreestyleError;
|
|
7929
8566
|
static readonly code: string;
|
|
7930
8567
|
static readonly statusCode: number;
|
|
7931
8568
|
static readonly description: string;
|
|
7932
8569
|
constructor(body: unknown & FreestyleError);
|
|
7933
8570
|
}
|
|
7934
|
-
declare class
|
|
8571
|
+
declare class ExpectedServiceError extends Error {
|
|
7935
8572
|
body: unknown & FreestyleError;
|
|
7936
8573
|
static readonly code: string;
|
|
7937
8574
|
static readonly statusCode: number;
|
|
7938
8575
|
static readonly description: string;
|
|
7939
8576
|
constructor(body: unknown & FreestyleError);
|
|
7940
8577
|
}
|
|
7941
|
-
declare class
|
|
8578
|
+
declare class GitHubSyncConflictError extends Error {
|
|
7942
8579
|
body: unknown & FreestyleError;
|
|
7943
8580
|
static readonly code: string;
|
|
7944
8581
|
static readonly statusCode: number;
|
|
7945
8582
|
static readonly description: string;
|
|
7946
8583
|
constructor(body: unknown & FreestyleError);
|
|
7947
8584
|
}
|
|
7948
|
-
interface
|
|
7949
|
-
|
|
8585
|
+
interface InvalidObjectIdPublic {
|
|
8586
|
+
hash: string;
|
|
7950
8587
|
[k: string]: unknown;
|
|
7951
8588
|
}
|
|
7952
|
-
declare class
|
|
7953
|
-
body:
|
|
8589
|
+
declare class InvalidObjectIdError extends Error {
|
|
8590
|
+
body: InvalidObjectIdPublic & FreestyleError;
|
|
7954
8591
|
static readonly code: string;
|
|
7955
8592
|
static readonly statusCode: number;
|
|
7956
8593
|
static readonly description: string;
|
|
7957
|
-
constructor(body:
|
|
8594
|
+
constructor(body: InvalidObjectIdPublic & FreestyleError);
|
|
7958
8595
|
}
|
|
7959
|
-
|
|
7960
|
-
|
|
8596
|
+
type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
|
|
8597
|
+
other: string;
|
|
8598
|
+
};
|
|
8599
|
+
interface PublicUnsupportedTransfer {
|
|
8600
|
+
requested: LfsTransferAdapter[];
|
|
8601
|
+
supported: LfsTransferAdapter[];
|
|
7961
8602
|
[k: string]: unknown;
|
|
7962
8603
|
}
|
|
7963
|
-
declare class
|
|
7964
|
-
body:
|
|
8604
|
+
declare class UnsupportedTransferError extends Error {
|
|
8605
|
+
body: PublicUnsupportedTransfer & FreestyleError;
|
|
7965
8606
|
static readonly code: string;
|
|
7966
8607
|
static readonly statusCode: number;
|
|
7967
8608
|
static readonly description: string;
|
|
7968
|
-
constructor(body:
|
|
8609
|
+
constructor(body: PublicUnsupportedTransfer & FreestyleError);
|
|
7969
8610
|
}
|
|
7970
|
-
interface
|
|
7971
|
-
|
|
8611
|
+
interface PublicBlobNotFound {
|
|
8612
|
+
hash: string;
|
|
7972
8613
|
[k: string]: unknown;
|
|
7973
8614
|
}
|
|
7974
|
-
declare class
|
|
7975
|
-
body:
|
|
8615
|
+
declare class BlobNotFoundError extends Error {
|
|
8616
|
+
body: PublicBlobNotFound & FreestyleError;
|
|
7976
8617
|
static readonly code: string;
|
|
7977
8618
|
static readonly statusCode: number;
|
|
7978
8619
|
static readonly description: string;
|
|
7979
|
-
constructor(body:
|
|
7980
|
-
}
|
|
7981
|
-
interface PublicRetrieveLogsFailed {
|
|
7982
|
-
message: string;
|
|
7983
|
-
[k: string]: unknown;
|
|
8620
|
+
constructor(body: PublicBlobNotFound & FreestyleError);
|
|
7984
8621
|
}
|
|
7985
|
-
declare class
|
|
7986
|
-
body:
|
|
8622
|
+
declare class UnavailableError extends Error {
|
|
8623
|
+
body: unknown & FreestyleError;
|
|
7987
8624
|
static readonly code: string;
|
|
7988
8625
|
static readonly statusCode: number;
|
|
7989
8626
|
static readonly description: string;
|
|
7990
|
-
constructor(body:
|
|
7991
|
-
}
|
|
7992
|
-
interface PublicInvalidQuery {
|
|
7993
|
-
message: string;
|
|
7994
|
-
[k: string]: unknown;
|
|
8627
|
+
constructor(body: unknown & FreestyleError);
|
|
7995
8628
|
}
|
|
7996
|
-
declare class
|
|
7997
|
-
body:
|
|
8629
|
+
declare class ScheduleNotFoundError extends Error {
|
|
8630
|
+
body: unknown & FreestyleError;
|
|
7998
8631
|
static readonly code: string;
|
|
7999
8632
|
static readonly statusCode: number;
|
|
8000
8633
|
static readonly description: string;
|
|
8001
|
-
constructor(body:
|
|
8002
|
-
}
|
|
8003
|
-
interface PublicLogsNotFound {
|
|
8004
|
-
deploymentId: string;
|
|
8005
|
-
[k: string]: unknown;
|
|
8634
|
+
constructor(body: unknown & FreestyleError);
|
|
8006
8635
|
}
|
|
8007
|
-
declare class
|
|
8008
|
-
body:
|
|
8636
|
+
declare class ServiceUnavailableError extends Error {
|
|
8637
|
+
body: unknown & FreestyleError;
|
|
8009
8638
|
static readonly code: string;
|
|
8010
8639
|
static readonly statusCode: number;
|
|
8011
8640
|
static readonly description: string;
|
|
8012
|
-
constructor(body:
|
|
8013
|
-
}
|
|
8014
|
-
interface PublicExecuteInternalError {
|
|
8015
|
-
message: string;
|
|
8016
|
-
[k: string]: unknown;
|
|
8641
|
+
constructor(body: unknown & FreestyleError);
|
|
8017
8642
|
}
|
|
8018
|
-
declare class
|
|
8019
|
-
body:
|
|
8643
|
+
declare class ExecuteLimitExceededError extends Error {
|
|
8644
|
+
body: unknown & FreestyleError;
|
|
8020
8645
|
static readonly code: string;
|
|
8021
8646
|
static readonly statusCode: number;
|
|
8022
8647
|
static readonly description: string;
|
|
8023
|
-
constructor(body:
|
|
8648
|
+
constructor(body: unknown & FreestyleError);
|
|
8024
8649
|
}
|
|
8025
|
-
declare class
|
|
8650
|
+
declare class AccessDeniedError extends Error {
|
|
8026
8651
|
body: unknown & FreestyleError;
|
|
8027
8652
|
static readonly code: string;
|
|
8028
8653
|
static readonly statusCode: number;
|
|
8029
8654
|
static readonly description: string;
|
|
8030
8655
|
constructor(body: unknown & FreestyleError);
|
|
8031
8656
|
}
|
|
8032
|
-
interface
|
|
8657
|
+
interface PublicCloudstateInternalError {
|
|
8033
8658
|
message: string;
|
|
8034
8659
|
[k: string]: unknown;
|
|
8035
8660
|
}
|
|
8036
|
-
declare class
|
|
8037
|
-
body:
|
|
8661
|
+
declare class CloudstateInternalErrorError extends Error {
|
|
8662
|
+
body: PublicCloudstateInternalError & FreestyleError;
|
|
8038
8663
|
static readonly code: string;
|
|
8039
8664
|
static readonly statusCode: number;
|
|
8040
8665
|
static readonly description: string;
|
|
8041
|
-
constructor(body:
|
|
8666
|
+
constructor(body: PublicCloudstateInternalError & FreestyleError);
|
|
8042
8667
|
}
|
|
8043
|
-
interface
|
|
8668
|
+
interface PublicCloudstateDatabaseError {
|
|
8044
8669
|
message: string;
|
|
8045
8670
|
[k: string]: unknown;
|
|
8046
8671
|
}
|
|
8047
|
-
declare class
|
|
8048
|
-
body:
|
|
8672
|
+
declare class CloudstateDatabaseErrorError extends Error {
|
|
8673
|
+
body: PublicCloudstateDatabaseError & FreestyleError;
|
|
8049
8674
|
static readonly code: string;
|
|
8050
8675
|
static readonly statusCode: number;
|
|
8051
8676
|
static readonly description: string;
|
|
8052
|
-
constructor(body:
|
|
8677
|
+
constructor(body: PublicCloudstateDatabaseError & FreestyleError);
|
|
8053
8678
|
}
|
|
8054
|
-
interface
|
|
8055
|
-
|
|
8679
|
+
interface PublicCloudstateAccessDenied {
|
|
8680
|
+
projectId: string;
|
|
8056
8681
|
[k: string]: unknown;
|
|
8057
8682
|
}
|
|
8058
|
-
declare class
|
|
8059
|
-
body:
|
|
8683
|
+
declare class CloudstateAccessDeniedError extends Error {
|
|
8684
|
+
body: PublicCloudstateAccessDenied & FreestyleError;
|
|
8060
8685
|
static readonly code: string;
|
|
8061
8686
|
static readonly statusCode: number;
|
|
8062
8687
|
static readonly description: string;
|
|
8063
|
-
constructor(body:
|
|
8688
|
+
constructor(body: PublicCloudstateAccessDenied & FreestyleError);
|
|
8064
8689
|
}
|
|
8065
|
-
interface
|
|
8690
|
+
interface PublicRestoreFailed {
|
|
8066
8691
|
message: string;
|
|
8067
8692
|
[k: string]: unknown;
|
|
8068
8693
|
}
|
|
8069
|
-
declare class
|
|
8070
|
-
body:
|
|
8694
|
+
declare class RestoreFailedError extends Error {
|
|
8695
|
+
body: PublicRestoreFailed & FreestyleError;
|
|
8071
8696
|
static readonly code: string;
|
|
8072
8697
|
static readonly statusCode: number;
|
|
8073
8698
|
static readonly description: string;
|
|
8074
|
-
constructor(body:
|
|
8699
|
+
constructor(body: PublicRestoreFailed & FreestyleError);
|
|
8075
8700
|
}
|
|
8076
|
-
interface
|
|
8701
|
+
interface PublicCreateBackupFailed {
|
|
8077
8702
|
message: string;
|
|
8078
8703
|
[k: string]: unknown;
|
|
8079
8704
|
}
|
|
8080
|
-
declare class
|
|
8081
|
-
body:
|
|
8705
|
+
declare class CreateBackupFailedError extends Error {
|
|
8706
|
+
body: PublicCreateBackupFailed & FreestyleError;
|
|
8082
8707
|
static readonly code: string;
|
|
8083
8708
|
static readonly statusCode: number;
|
|
8084
8709
|
static readonly description: string;
|
|
8085
|
-
constructor(body:
|
|
8710
|
+
constructor(body: PublicCreateBackupFailed & FreestyleError);
|
|
8086
8711
|
}
|
|
8087
|
-
interface
|
|
8712
|
+
interface PublicBackupFailed {
|
|
8088
8713
|
message: string;
|
|
8089
8714
|
[k: string]: unknown;
|
|
8090
8715
|
}
|
|
8091
|
-
declare class
|
|
8092
|
-
body:
|
|
8716
|
+
declare class BackupFailedError extends Error {
|
|
8717
|
+
body: PublicBackupFailed & FreestyleError;
|
|
8093
8718
|
static readonly code: string;
|
|
8094
8719
|
static readonly statusCode: number;
|
|
8095
8720
|
static readonly description: string;
|
|
8096
|
-
constructor(body:
|
|
8721
|
+
constructor(body: PublicBackupFailed & FreestyleError);
|
|
8097
8722
|
}
|
|
8098
|
-
interface
|
|
8723
|
+
interface PublicDeploymentFailed {
|
|
8099
8724
|
message: string;
|
|
8100
8725
|
[k: string]: unknown;
|
|
8101
8726
|
}
|
|
8102
|
-
declare class
|
|
8103
|
-
body:
|
|
8727
|
+
declare class DeploymentFailedError extends Error {
|
|
8728
|
+
body: PublicDeploymentFailed & FreestyleError;
|
|
8104
8729
|
static readonly code: string;
|
|
8105
8730
|
static readonly statusCode: number;
|
|
8106
8731
|
static readonly description: string;
|
|
8107
|
-
constructor(body:
|
|
8732
|
+
constructor(body: PublicDeploymentFailed & FreestyleError);
|
|
8108
8733
|
}
|
|
8109
|
-
interface
|
|
8734
|
+
interface PublicInvalidDeploymentRequest {
|
|
8110
8735
|
message: string;
|
|
8111
8736
|
[k: string]: unknown;
|
|
8112
8737
|
}
|
|
8113
|
-
declare class
|
|
8114
|
-
body:
|
|
8738
|
+
declare class InvalidDeploymentRequestError extends Error {
|
|
8739
|
+
body: PublicInvalidDeploymentRequest & FreestyleError;
|
|
8115
8740
|
static readonly code: string;
|
|
8116
8741
|
static readonly statusCode: number;
|
|
8117
8742
|
static readonly description: string;
|
|
8118
|
-
constructor(body:
|
|
8743
|
+
constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
|
|
8119
8744
|
}
|
|
8120
|
-
interface
|
|
8121
|
-
|
|
8745
|
+
interface PublicProjectNotFound {
|
|
8746
|
+
projectId: string;
|
|
8122
8747
|
[k: string]: unknown;
|
|
8123
8748
|
}
|
|
8124
|
-
declare class
|
|
8125
|
-
body:
|
|
8749
|
+
declare class ProjectNotFoundError extends Error {
|
|
8750
|
+
body: PublicProjectNotFound & FreestyleError;
|
|
8126
8751
|
static readonly code: string;
|
|
8127
8752
|
static readonly statusCode: number;
|
|
8128
8753
|
static readonly description: string;
|
|
8129
|
-
constructor(body:
|
|
8754
|
+
constructor(body: PublicProjectNotFound & FreestyleError);
|
|
8130
8755
|
}
|
|
8131
|
-
interface
|
|
8132
|
-
|
|
8756
|
+
interface PublicBuildFailed {
|
|
8757
|
+
logs: string;
|
|
8758
|
+
vmId: string;
|
|
8133
8759
|
[k: string]: unknown;
|
|
8134
8760
|
}
|
|
8135
|
-
declare class
|
|
8136
|
-
body:
|
|
8761
|
+
declare class BuildFailedError extends Error {
|
|
8762
|
+
body: PublicBuildFailed & FreestyleError;
|
|
8137
8763
|
static readonly code: string;
|
|
8138
8764
|
static readonly statusCode: number;
|
|
8139
8765
|
static readonly description: string;
|
|
8140
|
-
constructor(body:
|
|
8766
|
+
constructor(body: PublicBuildFailed & FreestyleError);
|
|
8141
8767
|
}
|
|
8142
|
-
|
|
8768
|
+
declare class ServerDeploymentFailedError extends Error {
|
|
8769
|
+
body: unknown & FreestyleError;
|
|
8770
|
+
static readonly code: string;
|
|
8771
|
+
static readonly statusCode: number;
|
|
8772
|
+
static readonly description: string;
|
|
8773
|
+
constructor(body: unknown & FreestyleError);
|
|
8774
|
+
}
|
|
8775
|
+
interface PublicLockfileError {
|
|
8143
8776
|
message: string;
|
|
8144
8777
|
[k: string]: unknown;
|
|
8145
8778
|
}
|
|
8146
|
-
declare class
|
|
8147
|
-
body:
|
|
8779
|
+
declare class LockfileErrorError extends Error {
|
|
8780
|
+
body: PublicLockfileError & FreestyleError;
|
|
8148
8781
|
static readonly code: string;
|
|
8149
8782
|
static readonly statusCode: number;
|
|
8150
8783
|
static readonly description: string;
|
|
8151
|
-
constructor(body:
|
|
8784
|
+
constructor(body: PublicLockfileError & FreestyleError);
|
|
8152
8785
|
}
|
|
8153
|
-
|
|
8154
|
-
|
|
8786
|
+
declare class UploadErrorError extends Error {
|
|
8787
|
+
body: unknown & FreestyleError;
|
|
8788
|
+
static readonly code: string;
|
|
8789
|
+
static readonly statusCode: number;
|
|
8790
|
+
static readonly description: string;
|
|
8791
|
+
constructor(body: unknown & FreestyleError);
|
|
8792
|
+
}
|
|
8793
|
+
interface PublicDomainMappingError {
|
|
8794
|
+
domain: string;
|
|
8155
8795
|
[k: string]: unknown;
|
|
8156
8796
|
}
|
|
8157
|
-
declare class
|
|
8158
|
-
body:
|
|
8797
|
+
declare class DomainMappingErrorError extends Error {
|
|
8798
|
+
body: PublicDomainMappingError & FreestyleError;
|
|
8159
8799
|
static readonly code: string;
|
|
8160
8800
|
static readonly statusCode: number;
|
|
8161
8801
|
static readonly description: string;
|
|
8162
|
-
constructor(body:
|
|
8802
|
+
constructor(body: PublicDomainMappingError & FreestyleError);
|
|
8163
8803
|
}
|
|
8164
|
-
interface
|
|
8165
|
-
|
|
8166
|
-
|
|
8804
|
+
interface PublicCertificateProvisioningError {
|
|
8805
|
+
domain: string;
|
|
8806
|
+
reason?: string | null;
|
|
8167
8807
|
[k: string]: unknown;
|
|
8168
8808
|
}
|
|
8169
|
-
declare class
|
|
8170
|
-
body:
|
|
8809
|
+
declare class CertificateProvisioningErrorError extends Error {
|
|
8810
|
+
body: PublicCertificateProvisioningError & FreestyleError;
|
|
8171
8811
|
static readonly code: string;
|
|
8172
8812
|
static readonly statusCode: number;
|
|
8173
8813
|
static readonly description: string;
|
|
8174
|
-
constructor(body:
|
|
8814
|
+
constructor(body: PublicCertificateProvisioningError & FreestyleError);
|
|
8175
8815
|
}
|
|
8176
|
-
|
|
8177
|
-
|
|
8816
|
+
declare class NoEntrypointFoundError extends Error {
|
|
8817
|
+
body: unknown & FreestyleError;
|
|
8818
|
+
static readonly code: string;
|
|
8819
|
+
static readonly statusCode: number;
|
|
8820
|
+
static readonly description: string;
|
|
8821
|
+
constructor(body: unknown & FreestyleError);
|
|
8822
|
+
}
|
|
8823
|
+
interface PublicEntrypointNotFound {
|
|
8824
|
+
entrypoint: string;
|
|
8178
8825
|
[k: string]: unknown;
|
|
8179
8826
|
}
|
|
8180
|
-
declare class
|
|
8181
|
-
body:
|
|
8827
|
+
declare class EntrypointNotFoundError extends Error {
|
|
8828
|
+
body: PublicEntrypointNotFound & FreestyleError;
|
|
8182
8829
|
static readonly code: string;
|
|
8183
8830
|
static readonly statusCode: number;
|
|
8184
8831
|
static readonly description: string;
|
|
8185
|
-
constructor(body:
|
|
8832
|
+
constructor(body: PublicEntrypointNotFound & FreestyleError);
|
|
8186
8833
|
}
|
|
8187
|
-
interface
|
|
8188
|
-
|
|
8834
|
+
interface PublicNoDomainOwnership {
|
|
8835
|
+
domain: string;
|
|
8189
8836
|
[k: string]: unknown;
|
|
8190
8837
|
}
|
|
8191
|
-
declare class
|
|
8192
|
-
body:
|
|
8838
|
+
declare class NoDomainOwnershipError extends Error {
|
|
8839
|
+
body: PublicNoDomainOwnership & FreestyleError;
|
|
8193
8840
|
static readonly code: string;
|
|
8194
8841
|
static readonly statusCode: number;
|
|
8195
8842
|
static readonly description: string;
|
|
8196
|
-
constructor(body:
|
|
8843
|
+
constructor(body: PublicNoDomainOwnership & FreestyleError);
|
|
8197
8844
|
}
|
|
8198
|
-
interface
|
|
8199
|
-
|
|
8845
|
+
interface PublicInvalidDomains {
|
|
8846
|
+
domains: string[];
|
|
8200
8847
|
[k: string]: unknown;
|
|
8201
8848
|
}
|
|
8202
|
-
declare class
|
|
8203
|
-
body:
|
|
8849
|
+
declare class InvalidDomainsError extends Error {
|
|
8850
|
+
body: PublicInvalidDomains & FreestyleError;
|
|
8204
8851
|
static readonly code: string;
|
|
8205
8852
|
static readonly statusCode: number;
|
|
8206
8853
|
static readonly description: string;
|
|
8207
|
-
constructor(body:
|
|
8854
|
+
constructor(body: PublicInvalidDomains & FreestyleError);
|
|
8208
8855
|
}
|
|
8209
|
-
interface
|
|
8856
|
+
interface PublicWebDeploymentBadRequest {
|
|
8210
8857
|
message: string;
|
|
8211
8858
|
[k: string]: unknown;
|
|
8212
8859
|
}
|
|
8213
|
-
declare class
|
|
8214
|
-
body:
|
|
8860
|
+
declare class WebDeploymentBadRequestError extends Error {
|
|
8861
|
+
body: PublicWebDeploymentBadRequest & FreestyleError;
|
|
8215
8862
|
static readonly code: string;
|
|
8216
8863
|
static readonly statusCode: number;
|
|
8217
8864
|
static readonly description: string;
|
|
8218
|
-
constructor(body:
|
|
8865
|
+
constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
|
|
8219
8866
|
}
|
|
8220
|
-
interface
|
|
8221
|
-
|
|
8867
|
+
interface PublicTimeoutLimitExceeded {
|
|
8868
|
+
requestedMs: number;
|
|
8869
|
+
maxMs: number;
|
|
8222
8870
|
[k: string]: unknown;
|
|
8223
8871
|
}
|
|
8224
|
-
declare class
|
|
8225
|
-
body:
|
|
8872
|
+
declare class TimeoutLimitExceededError extends Error {
|
|
8873
|
+
body: PublicTimeoutLimitExceeded & FreestyleError;
|
|
8226
8874
|
static readonly code: string;
|
|
8227
8875
|
static readonly statusCode: number;
|
|
8228
8876
|
static readonly description: string;
|
|
8229
|
-
constructor(body:
|
|
8877
|
+
constructor(body: PublicTimeoutLimitExceeded & FreestyleError);
|
|
8230
8878
|
}
|
|
8231
|
-
interface
|
|
8232
|
-
|
|
8879
|
+
interface PublicDeploymentLimitExceeded {
|
|
8880
|
+
limit: number;
|
|
8881
|
+
current: number;
|
|
8233
8882
|
[k: string]: unknown;
|
|
8234
8883
|
}
|
|
8235
|
-
declare class
|
|
8236
|
-
body:
|
|
8884
|
+
declare class DeploymentLimitExceededError extends Error {
|
|
8885
|
+
body: PublicDeploymentLimitExceeded & FreestyleError;
|
|
8237
8886
|
static readonly code: string;
|
|
8238
8887
|
static readonly statusCode: number;
|
|
8239
8888
|
static readonly description: string;
|
|
8240
|
-
constructor(body:
|
|
8889
|
+
constructor(body: PublicDeploymentLimitExceeded & FreestyleError);
|
|
8241
8890
|
}
|
|
8242
|
-
|
|
8891
|
+
declare class DeploymentNotFoundError extends Error {
|
|
8892
|
+
body: unknown & FreestyleError;
|
|
8893
|
+
static readonly code: string;
|
|
8894
|
+
static readonly statusCode: number;
|
|
8895
|
+
static readonly description: string;
|
|
8896
|
+
constructor(body: unknown & FreestyleError);
|
|
8897
|
+
}
|
|
8898
|
+
interface PublicResizeFailed {
|
|
8243
8899
|
message: string;
|
|
8244
8900
|
[k: string]: unknown;
|
|
8245
8901
|
}
|
|
8246
|
-
declare class
|
|
8247
|
-
body:
|
|
8902
|
+
declare class ResizeFailedError extends Error {
|
|
8903
|
+
body: PublicResizeFailed & FreestyleError;
|
|
8248
8904
|
static readonly code: string;
|
|
8249
8905
|
static readonly statusCode: number;
|
|
8250
8906
|
static readonly description: string;
|
|
8251
|
-
constructor(body:
|
|
8907
|
+
constructor(body: PublicResizeFailed & FreestyleError);
|
|
8252
8908
|
}
|
|
8253
|
-
|
|
8254
|
-
|
|
8909
|
+
declare class InternalResizeVmNotFoundError extends Error {
|
|
8910
|
+
body: unknown & FreestyleError;
|
|
8911
|
+
static readonly code: string;
|
|
8912
|
+
static readonly statusCode: number;
|
|
8913
|
+
static readonly description: string;
|
|
8914
|
+
constructor(body: unknown & FreestyleError);
|
|
8915
|
+
}
|
|
8916
|
+
declare class BranchNameEmptyError extends Error {
|
|
8917
|
+
body: unknown & FreestyleError;
|
|
8918
|
+
static readonly code: string;
|
|
8919
|
+
static readonly statusCode: number;
|
|
8920
|
+
static readonly description: string;
|
|
8921
|
+
constructor(body: unknown & FreestyleError);
|
|
8922
|
+
}
|
|
8923
|
+
interface PublicSnapshotLimitExceeded {
|
|
8924
|
+
limit: number;
|
|
8925
|
+
current: number;
|
|
8255
8926
|
[k: string]: unknown;
|
|
8256
8927
|
}
|
|
8257
|
-
declare class
|
|
8258
|
-
body:
|
|
8928
|
+
declare class SnapshotLimitExceededError extends Error {
|
|
8929
|
+
body: PublicSnapshotLimitExceeded & FreestyleError;
|
|
8259
8930
|
static readonly code: string;
|
|
8260
8931
|
static readonly statusCode: number;
|
|
8261
8932
|
static readonly description: string;
|
|
8262
|
-
constructor(body:
|
|
8933
|
+
constructor(body: PublicSnapshotLimitExceeded & FreestyleError);
|
|
8263
8934
|
}
|
|
8264
|
-
|
|
8265
|
-
|
|
8935
|
+
declare class PersistentVmsNotAllowedError extends Error {
|
|
8936
|
+
body: unknown & FreestyleError;
|
|
8937
|
+
static readonly code: string;
|
|
8938
|
+
static readonly statusCode: number;
|
|
8939
|
+
static readonly description: string;
|
|
8940
|
+
constructor(body: unknown & FreestyleError);
|
|
8941
|
+
}
|
|
8942
|
+
interface PublicTotalVmLimitExceeded {
|
|
8943
|
+
limit: number;
|
|
8944
|
+
current: number;
|
|
8266
8945
|
[k: string]: unknown;
|
|
8267
8946
|
}
|
|
8268
|
-
declare class
|
|
8269
|
-
body:
|
|
8947
|
+
declare class TotalVmLimitExceededError extends Error {
|
|
8948
|
+
body: PublicTotalVmLimitExceeded & FreestyleError;
|
|
8270
8949
|
static readonly code: string;
|
|
8271
8950
|
static readonly statusCode: number;
|
|
8272
8951
|
static readonly description: string;
|
|
8273
|
-
constructor(body:
|
|
8952
|
+
constructor(body: PublicTotalVmLimitExceeded & FreestyleError);
|
|
8274
8953
|
}
|
|
8275
|
-
interface
|
|
8276
|
-
|
|
8954
|
+
interface PublicVmLimitExceeded {
|
|
8955
|
+
limit: number;
|
|
8956
|
+
current: number;
|
|
8277
8957
|
[k: string]: unknown;
|
|
8278
8958
|
}
|
|
8279
|
-
declare class
|
|
8280
|
-
body:
|
|
8959
|
+
declare class VmLimitExceededError extends Error {
|
|
8960
|
+
body: PublicVmLimitExceeded & FreestyleError;
|
|
8281
8961
|
static readonly code: string;
|
|
8282
8962
|
static readonly statusCode: number;
|
|
8283
8963
|
static readonly description: string;
|
|
8284
|
-
constructor(body:
|
|
8964
|
+
constructor(body: PublicVmLimitExceeded & FreestyleError);
|
|
8285
8965
|
}
|
|
8286
|
-
interface
|
|
8966
|
+
interface PublicObservabilityDatabaseError {
|
|
8287
8967
|
message: string;
|
|
8288
8968
|
[k: string]: unknown;
|
|
8289
8969
|
}
|
|
8290
|
-
declare class
|
|
8291
|
-
body:
|
|
8970
|
+
declare class ObservabilityDatabaseErrorError extends Error {
|
|
8971
|
+
body: PublicObservabilityDatabaseError & FreestyleError;
|
|
8292
8972
|
static readonly code: string;
|
|
8293
8973
|
static readonly statusCode: number;
|
|
8294
8974
|
static readonly description: string;
|
|
8295
|
-
constructor(body:
|
|
8975
|
+
constructor(body: PublicObservabilityDatabaseError & FreestyleError);
|
|
8296
8976
|
}
|
|
8297
|
-
interface
|
|
8298
|
-
|
|
8977
|
+
interface PublicObservabilityAccessDenied {
|
|
8978
|
+
deploymentId: string;
|
|
8299
8979
|
[k: string]: unknown;
|
|
8300
8980
|
}
|
|
8301
|
-
declare class
|
|
8302
|
-
body:
|
|
8981
|
+
declare class ObservabilityAccessDeniedError extends Error {
|
|
8982
|
+
body: PublicObservabilityAccessDenied & FreestyleError;
|
|
8983
|
+
static readonly code: string;
|
|
8984
|
+
static readonly statusCode: number;
|
|
8985
|
+
static readonly description: string;
|
|
8986
|
+
constructor(body: PublicObservabilityAccessDenied & FreestyleError);
|
|
8987
|
+
}
|
|
8988
|
+
interface PublicParseLogsFailed {
|
|
8989
|
+
message: string;
|
|
8990
|
+
[k: string]: unknown;
|
|
8991
|
+
}
|
|
8992
|
+
declare class ParseLogsFailedError extends Error {
|
|
8993
|
+
body: PublicParseLogsFailed & FreestyleError;
|
|
8303
8994
|
static readonly code: string;
|
|
8304
8995
|
static readonly statusCode: number;
|
|
8305
8996
|
static readonly description: string;
|
|
8306
|
-
constructor(body:
|
|
8997
|
+
constructor(body: PublicParseLogsFailed & FreestyleError);
|
|
8307
8998
|
}
|
|
8308
|
-
interface
|
|
8309
|
-
|
|
8310
|
-
vmId: string;
|
|
8999
|
+
interface PublicRetrieveLogsFailed {
|
|
9000
|
+
message: string;
|
|
8311
9001
|
[k: string]: unknown;
|
|
8312
9002
|
}
|
|
8313
|
-
declare class
|
|
8314
|
-
body:
|
|
9003
|
+
declare class RetrieveLogsFailedError extends Error {
|
|
9004
|
+
body: PublicRetrieveLogsFailed & FreestyleError;
|
|
8315
9005
|
static readonly code: string;
|
|
8316
9006
|
static readonly statusCode: number;
|
|
8317
9007
|
static readonly description: string;
|
|
8318
|
-
constructor(body:
|
|
9008
|
+
constructor(body: PublicRetrieveLogsFailed & FreestyleError);
|
|
8319
9009
|
}
|
|
8320
|
-
|
|
8321
|
-
|
|
9010
|
+
interface PublicInvalidQuery {
|
|
9011
|
+
message: string;
|
|
9012
|
+
[k: string]: unknown;
|
|
9013
|
+
}
|
|
9014
|
+
declare class InvalidQueryError extends Error {
|
|
9015
|
+
body: PublicInvalidQuery & FreestyleError;
|
|
8322
9016
|
static readonly code: string;
|
|
8323
9017
|
static readonly statusCode: number;
|
|
8324
9018
|
static readonly description: string;
|
|
8325
|
-
constructor(body:
|
|
9019
|
+
constructor(body: PublicInvalidQuery & FreestyleError);
|
|
8326
9020
|
}
|
|
8327
|
-
interface
|
|
8328
|
-
|
|
9021
|
+
interface PublicLogsNotFound {
|
|
9022
|
+
deploymentId: string;
|
|
8329
9023
|
[k: string]: unknown;
|
|
8330
9024
|
}
|
|
8331
|
-
declare class
|
|
8332
|
-
body:
|
|
9025
|
+
declare class LogsNotFoundError extends Error {
|
|
9026
|
+
body: PublicLogsNotFound & FreestyleError;
|
|
8333
9027
|
static readonly code: string;
|
|
8334
9028
|
static readonly statusCode: number;
|
|
8335
9029
|
static readonly description: string;
|
|
8336
|
-
constructor(body:
|
|
9030
|
+
constructor(body: PublicLogsNotFound & FreestyleError);
|
|
8337
9031
|
}
|
|
8338
|
-
|
|
8339
|
-
|
|
9032
|
+
interface PublicDomainOwnershipNotVerified {
|
|
9033
|
+
domain: string;
|
|
9034
|
+
[k: string]: unknown;
|
|
9035
|
+
}
|
|
9036
|
+
declare class DomainOwnershipNotVerifiedError extends Error {
|
|
9037
|
+
body: PublicDomainOwnershipNotVerified & FreestyleError;
|
|
8340
9038
|
static readonly code: string;
|
|
8341
9039
|
static readonly statusCode: number;
|
|
8342
9040
|
static readonly description: string;
|
|
8343
|
-
constructor(body:
|
|
9041
|
+
constructor(body: PublicDomainOwnershipNotVerified & FreestyleError);
|
|
8344
9042
|
}
|
|
8345
|
-
interface
|
|
8346
|
-
|
|
9043
|
+
interface PublicVmAccessDeniedForMapping {
|
|
9044
|
+
vmId: string;
|
|
8347
9045
|
[k: string]: unknown;
|
|
8348
9046
|
}
|
|
8349
|
-
declare class
|
|
8350
|
-
body:
|
|
9047
|
+
declare class VmAccessDeniedForMappingError extends Error {
|
|
9048
|
+
body: PublicVmAccessDeniedForMapping & FreestyleError;
|
|
8351
9049
|
static readonly code: string;
|
|
8352
9050
|
static readonly statusCode: number;
|
|
8353
9051
|
static readonly description: string;
|
|
8354
|
-
constructor(body:
|
|
9052
|
+
constructor(body: PublicVmAccessDeniedForMapping & FreestyleError);
|
|
8355
9053
|
}
|
|
8356
|
-
interface
|
|
8357
|
-
|
|
8358
|
-
reason?: string | null;
|
|
9054
|
+
interface PublicDeploymentAccessDenied {
|
|
9055
|
+
deploymentId: string;
|
|
8359
9056
|
[k: string]: unknown;
|
|
8360
9057
|
}
|
|
8361
|
-
declare class
|
|
8362
|
-
body:
|
|
9058
|
+
declare class DeploymentAccessDeniedError extends Error {
|
|
9059
|
+
body: PublicDeploymentAccessDenied & FreestyleError;
|
|
8363
9060
|
static readonly code: string;
|
|
8364
9061
|
static readonly statusCode: number;
|
|
8365
9062
|
static readonly description: string;
|
|
8366
|
-
constructor(body:
|
|
9063
|
+
constructor(body: PublicDeploymentAccessDenied & FreestyleError);
|
|
8367
9064
|
}
|
|
8368
|
-
|
|
8369
|
-
|
|
9065
|
+
interface PublicFailedToProvisionCertificateForMapping {
|
|
9066
|
+
message: string;
|
|
9067
|
+
[k: string]: unknown;
|
|
9068
|
+
}
|
|
9069
|
+
declare class FailedToProvisionCertificateForMappingError extends Error {
|
|
9070
|
+
body: PublicFailedToProvisionCertificateForMapping & FreestyleError;
|
|
8370
9071
|
static readonly code: string;
|
|
8371
9072
|
static readonly statusCode: number;
|
|
8372
9073
|
static readonly description: string;
|
|
8373
|
-
constructor(body:
|
|
9074
|
+
constructor(body: PublicFailedToProvisionCertificateForMapping & FreestyleError);
|
|
8374
9075
|
}
|
|
8375
|
-
interface
|
|
8376
|
-
|
|
9076
|
+
interface PublicFailedInsertDomainMapping {
|
|
9077
|
+
message: string;
|
|
8377
9078
|
[k: string]: unknown;
|
|
8378
9079
|
}
|
|
8379
|
-
declare class
|
|
8380
|
-
body:
|
|
9080
|
+
declare class FailedInsertDomainMappingError extends Error {
|
|
9081
|
+
body: PublicFailedInsertDomainMapping & FreestyleError;
|
|
8381
9082
|
static readonly code: string;
|
|
8382
9083
|
static readonly statusCode: number;
|
|
8383
9084
|
static readonly description: string;
|
|
8384
|
-
constructor(body:
|
|
9085
|
+
constructor(body: PublicFailedInsertDomainMapping & FreestyleError);
|
|
8385
9086
|
}
|
|
8386
|
-
interface
|
|
9087
|
+
interface PublicDomainAlreadyExists {
|
|
8387
9088
|
domain: string;
|
|
8388
9089
|
[k: string]: unknown;
|
|
8389
9090
|
}
|
|
8390
|
-
declare class
|
|
8391
|
-
body:
|
|
9091
|
+
declare class DomainAlreadyExistsError extends Error {
|
|
9092
|
+
body: PublicDomainAlreadyExists & FreestyleError;
|
|
8392
9093
|
static readonly code: string;
|
|
8393
9094
|
static readonly statusCode: number;
|
|
8394
9095
|
static readonly description: string;
|
|
8395
|
-
constructor(body:
|
|
9096
|
+
constructor(body: PublicDomainAlreadyExists & FreestyleError);
|
|
8396
9097
|
}
|
|
8397
|
-
interface
|
|
8398
|
-
|
|
9098
|
+
interface PublicFailedToInsertOwnership {
|
|
9099
|
+
message: string;
|
|
8399
9100
|
[k: string]: unknown;
|
|
8400
9101
|
}
|
|
8401
|
-
declare class
|
|
8402
|
-
body:
|
|
9102
|
+
declare class FailedToInsertOwnershipError extends Error {
|
|
9103
|
+
body: PublicFailedToInsertOwnership & FreestyleError;
|
|
8403
9104
|
static readonly code: string;
|
|
8404
9105
|
static readonly statusCode: number;
|
|
8405
9106
|
static readonly description: string;
|
|
8406
|
-
constructor(body:
|
|
9107
|
+
constructor(body: PublicFailedToInsertOwnership & FreestyleError);
|
|
8407
9108
|
}
|
|
8408
|
-
interface
|
|
9109
|
+
interface PublicFailedRemoveDomainMapping {
|
|
8409
9110
|
message: string;
|
|
8410
9111
|
[k: string]: unknown;
|
|
8411
9112
|
}
|
|
8412
|
-
declare class
|
|
8413
|
-
body:
|
|
9113
|
+
declare class FailedRemoveDomainMappingError extends Error {
|
|
9114
|
+
body: PublicFailedRemoveDomainMapping & FreestyleError;
|
|
8414
9115
|
static readonly code: string;
|
|
8415
9116
|
static readonly statusCode: number;
|
|
8416
9117
|
static readonly description: string;
|
|
8417
|
-
constructor(body:
|
|
9118
|
+
constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
|
|
8418
9119
|
}
|
|
8419
|
-
interface
|
|
8420
|
-
|
|
8421
|
-
maxMs: number;
|
|
9120
|
+
interface PublicFailedPermissionsCheck {
|
|
9121
|
+
domain: string;
|
|
8422
9122
|
[k: string]: unknown;
|
|
8423
9123
|
}
|
|
8424
|
-
declare class
|
|
8425
|
-
body:
|
|
9124
|
+
declare class FailedPermissionsCheckError extends Error {
|
|
9125
|
+
body: PublicFailedPermissionsCheck & FreestyleError;
|
|
8426
9126
|
static readonly code: string;
|
|
8427
9127
|
static readonly statusCode: number;
|
|
8428
9128
|
static readonly description: string;
|
|
8429
|
-
constructor(body:
|
|
9129
|
+
constructor(body: PublicFailedPermissionsCheck & FreestyleError);
|
|
8430
9130
|
}
|
|
8431
|
-
interface
|
|
8432
|
-
|
|
8433
|
-
current: number;
|
|
9131
|
+
interface PublicFailedToCheckDomainMappingPermissions {
|
|
9132
|
+
message: string;
|
|
8434
9133
|
[k: string]: unknown;
|
|
8435
9134
|
}
|
|
8436
|
-
declare class
|
|
8437
|
-
body:
|
|
9135
|
+
declare class FailedToCheckDomainMappingPermissionsError extends Error {
|
|
9136
|
+
body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
|
|
8438
9137
|
static readonly code: string;
|
|
8439
9138
|
static readonly statusCode: number;
|
|
8440
9139
|
static readonly description: string;
|
|
8441
|
-
constructor(body:
|
|
9140
|
+
constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
|
|
8442
9141
|
}
|
|
8443
|
-
declare class
|
|
9142
|
+
declare class DomainOwnershipVerificationFailedError extends Error {
|
|
8444
9143
|
body: unknown & FreestyleError;
|
|
8445
9144
|
static readonly code: string;
|
|
8446
9145
|
static readonly statusCode: number;
|
|
8447
9146
|
static readonly description: string;
|
|
8448
9147
|
constructor(body: unknown & FreestyleError);
|
|
8449
9148
|
}
|
|
8450
|
-
interface
|
|
9149
|
+
interface PublicErrorDeletingRecord {
|
|
9150
|
+
domain: string;
|
|
9151
|
+
name: string;
|
|
8451
9152
|
message: string;
|
|
8452
9153
|
[k: string]: unknown;
|
|
8453
9154
|
}
|
|
8454
|
-
declare class
|
|
8455
|
-
body:
|
|
9155
|
+
declare class ErrorDeletingRecordError extends Error {
|
|
9156
|
+
body: PublicErrorDeletingRecord & FreestyleError;
|
|
8456
9157
|
static readonly code: string;
|
|
8457
9158
|
static readonly statusCode: number;
|
|
8458
9159
|
static readonly description: string;
|
|
8459
|
-
constructor(body:
|
|
9160
|
+
constructor(body: PublicErrorDeletingRecord & FreestyleError);
|
|
8460
9161
|
}
|
|
8461
|
-
|
|
8462
|
-
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
static readonly description: string;
|
|
8466
|
-
constructor(body: unknown & FreestyleError);
|
|
9162
|
+
interface PublicRecordOwnershipError {
|
|
9163
|
+
recordId: string;
|
|
9164
|
+
accountId: string;
|
|
9165
|
+
[k: string]: unknown;
|
|
8467
9166
|
}
|
|
8468
|
-
declare class
|
|
8469
|
-
body:
|
|
9167
|
+
declare class RecordOwnershipErrorError extends Error {
|
|
9168
|
+
body: PublicRecordOwnershipError & FreestyleError;
|
|
8470
9169
|
static readonly code: string;
|
|
8471
9170
|
static readonly statusCode: number;
|
|
8472
9171
|
static readonly description: string;
|
|
8473
|
-
constructor(body:
|
|
9172
|
+
constructor(body: PublicRecordOwnershipError & FreestyleError);
|
|
8474
9173
|
}
|
|
8475
|
-
|
|
8476
|
-
|
|
9174
|
+
interface PublicErrorCreatingRecord {
|
|
9175
|
+
message: string;
|
|
9176
|
+
[k: string]: unknown;
|
|
9177
|
+
}
|
|
9178
|
+
declare class ErrorCreatingRecordError extends Error {
|
|
9179
|
+
body: PublicErrorCreatingRecord & FreestyleError;
|
|
8477
9180
|
static readonly code: string;
|
|
8478
9181
|
static readonly statusCode: number;
|
|
8479
9182
|
static readonly description: string;
|
|
8480
|
-
constructor(body:
|
|
9183
|
+
constructor(body: PublicErrorCreatingRecord & FreestyleError);
|
|
8481
9184
|
}
|
|
8482
|
-
interface
|
|
8483
|
-
|
|
8484
|
-
|
|
9185
|
+
interface PublicDomainOwnershipError {
|
|
9186
|
+
domain: string;
|
|
9187
|
+
accountId: string;
|
|
8485
9188
|
[k: string]: unknown;
|
|
8486
9189
|
}
|
|
8487
|
-
declare class
|
|
8488
|
-
body:
|
|
9190
|
+
declare class DomainOwnershipErrorError extends Error {
|
|
9191
|
+
body: PublicDomainOwnershipError & FreestyleError;
|
|
8489
9192
|
static readonly code: string;
|
|
8490
9193
|
static readonly statusCode: number;
|
|
8491
9194
|
static readonly description: string;
|
|
8492
|
-
constructor(body:
|
|
9195
|
+
constructor(body: PublicDomainOwnershipError & FreestyleError);
|
|
8493
9196
|
}
|
|
8494
9197
|
interface PublicTriggerError {
|
|
8495
9198
|
message: string;
|
|
@@ -8696,145 +9399,176 @@ declare class RepositoryNotFoundError extends Error {
|
|
|
8696
9399
|
static readonly description: string;
|
|
8697
9400
|
constructor(body: PublicRepositoryNotFound & FreestyleError);
|
|
8698
9401
|
}
|
|
8699
|
-
interface
|
|
8700
|
-
|
|
9402
|
+
interface PublicExecuteInternalError {
|
|
9403
|
+
message: string;
|
|
8701
9404
|
[k: string]: unknown;
|
|
8702
9405
|
}
|
|
8703
|
-
declare class
|
|
8704
|
-
body:
|
|
9406
|
+
declare class ExecuteInternalErrorError extends Error {
|
|
9407
|
+
body: PublicExecuteInternalError & FreestyleError;
|
|
8705
9408
|
static readonly code: string;
|
|
8706
9409
|
static readonly statusCode: number;
|
|
8707
9410
|
static readonly description: string;
|
|
8708
|
-
constructor(body:
|
|
9411
|
+
constructor(body: PublicExecuteInternalError & FreestyleError);
|
|
8709
9412
|
}
|
|
8710
|
-
|
|
8711
|
-
|
|
9413
|
+
declare class ExecuteAccessDeniedError extends Error {
|
|
9414
|
+
body: unknown & FreestyleError;
|
|
9415
|
+
static readonly code: string;
|
|
9416
|
+
static readonly statusCode: number;
|
|
9417
|
+
static readonly description: string;
|
|
9418
|
+
constructor(body: unknown & FreestyleError);
|
|
9419
|
+
}
|
|
9420
|
+
interface PublicListRunsFailed {
|
|
9421
|
+
message: string;
|
|
8712
9422
|
[k: string]: unknown;
|
|
8713
9423
|
}
|
|
8714
|
-
declare class
|
|
8715
|
-
body:
|
|
9424
|
+
declare class ListRunsFailedError extends Error {
|
|
9425
|
+
body: PublicListRunsFailed & FreestyleError;
|
|
8716
9426
|
static readonly code: string;
|
|
8717
9427
|
static readonly statusCode: number;
|
|
8718
9428
|
static readonly description: string;
|
|
8719
|
-
constructor(body:
|
|
9429
|
+
constructor(body: PublicListRunsFailed & FreestyleError);
|
|
8720
9430
|
}
|
|
8721
|
-
interface
|
|
8722
|
-
|
|
9431
|
+
interface PublicExecutionError {
|
|
9432
|
+
message: string;
|
|
8723
9433
|
[k: string]: unknown;
|
|
8724
9434
|
}
|
|
8725
|
-
declare class
|
|
8726
|
-
body:
|
|
9435
|
+
declare class ExecutionErrorError extends Error {
|
|
9436
|
+
body: PublicExecutionError & FreestyleError;
|
|
8727
9437
|
static readonly code: string;
|
|
8728
9438
|
static readonly statusCode: number;
|
|
8729
9439
|
static readonly description: string;
|
|
8730
|
-
constructor(body:
|
|
9440
|
+
constructor(body: PublicExecutionError & FreestyleError);
|
|
8731
9441
|
}
|
|
8732
|
-
interface
|
|
9442
|
+
interface PublicConnectionFailed {
|
|
8733
9443
|
message: string;
|
|
8734
9444
|
[k: string]: unknown;
|
|
8735
9445
|
}
|
|
8736
|
-
declare class
|
|
8737
|
-
body:
|
|
9446
|
+
declare class ConnectionFailedError extends Error {
|
|
9447
|
+
body: PublicConnectionFailed & FreestyleError;
|
|
8738
9448
|
static readonly code: string;
|
|
8739
9449
|
static readonly statusCode: number;
|
|
8740
9450
|
static readonly description: string;
|
|
8741
|
-
constructor(body:
|
|
9451
|
+
constructor(body: PublicConnectionFailed & FreestyleError);
|
|
8742
9452
|
}
|
|
8743
|
-
interface
|
|
9453
|
+
interface PublicMetadataWriteFailed {
|
|
8744
9454
|
message: string;
|
|
8745
9455
|
[k: string]: unknown;
|
|
8746
9456
|
}
|
|
8747
|
-
declare class
|
|
8748
|
-
body:
|
|
9457
|
+
declare class MetadataWriteFailedError extends Error {
|
|
9458
|
+
body: PublicMetadataWriteFailed & FreestyleError;
|
|
8749
9459
|
static readonly code: string;
|
|
8750
9460
|
static readonly statusCode: number;
|
|
8751
9461
|
static readonly description: string;
|
|
8752
|
-
constructor(body:
|
|
9462
|
+
constructor(body: PublicMetadataWriteFailed & FreestyleError);
|
|
8753
9463
|
}
|
|
8754
|
-
interface
|
|
8755
|
-
|
|
9464
|
+
interface PublicNodeModulesInstallFailed {
|
|
9465
|
+
message: string;
|
|
8756
9466
|
[k: string]: unknown;
|
|
8757
9467
|
}
|
|
8758
|
-
declare class
|
|
8759
|
-
body:
|
|
9468
|
+
declare class NodeModulesInstallFailedError extends Error {
|
|
9469
|
+
body: PublicNodeModulesInstallFailed & FreestyleError;
|
|
8760
9470
|
static readonly code: string;
|
|
8761
9471
|
static readonly statusCode: number;
|
|
8762
9472
|
static readonly description: string;
|
|
8763
|
-
constructor(body:
|
|
9473
|
+
constructor(body: PublicNodeModulesInstallFailed & FreestyleError);
|
|
9474
|
+
}
|
|
9475
|
+
interface PublicNodeModulesDownloadFailed {
|
|
9476
|
+
message: string;
|
|
9477
|
+
[k: string]: unknown;
|
|
9478
|
+
}
|
|
9479
|
+
declare class NodeModulesDownloadFailedError extends Error {
|
|
9480
|
+
body: PublicNodeModulesDownloadFailed & FreestyleError;
|
|
9481
|
+
static readonly code: string;
|
|
9482
|
+
static readonly statusCode: number;
|
|
9483
|
+
static readonly description: string;
|
|
9484
|
+
constructor(body: PublicNodeModulesDownloadFailed & FreestyleError);
|
|
8764
9485
|
}
|
|
8765
|
-
interface
|
|
9486
|
+
interface PublicLockGenerationFailed {
|
|
8766
9487
|
message: string;
|
|
8767
9488
|
[k: string]: unknown;
|
|
8768
9489
|
}
|
|
8769
|
-
declare class
|
|
8770
|
-
body:
|
|
9490
|
+
declare class LockGenerationFailedError extends Error {
|
|
9491
|
+
body: PublicLockGenerationFailed & FreestyleError;
|
|
8771
9492
|
static readonly code: string;
|
|
8772
9493
|
static readonly statusCode: number;
|
|
8773
9494
|
static readonly description: string;
|
|
8774
|
-
constructor(body:
|
|
9495
|
+
constructor(body: PublicLockGenerationFailed & FreestyleError);
|
|
8775
9496
|
}
|
|
8776
|
-
interface
|
|
9497
|
+
interface PublicWriteScriptFailed {
|
|
8777
9498
|
message: string;
|
|
8778
9499
|
[k: string]: unknown;
|
|
8779
9500
|
}
|
|
8780
|
-
declare class
|
|
8781
|
-
body:
|
|
9501
|
+
declare class WriteScriptFailedError extends Error {
|
|
9502
|
+
body: PublicWriteScriptFailed & FreestyleError;
|
|
8782
9503
|
static readonly code: string;
|
|
8783
9504
|
static readonly statusCode: number;
|
|
8784
9505
|
static readonly description: string;
|
|
8785
|
-
constructor(body:
|
|
9506
|
+
constructor(body: PublicWriteScriptFailed & FreestyleError);
|
|
8786
9507
|
}
|
|
8787
|
-
interface
|
|
8788
|
-
|
|
9508
|
+
interface PublicDirectoryCreationFailed {
|
|
9509
|
+
message: string;
|
|
8789
9510
|
[k: string]: unknown;
|
|
8790
9511
|
}
|
|
8791
|
-
declare class
|
|
8792
|
-
body:
|
|
9512
|
+
declare class DirectoryCreationFailedError extends Error {
|
|
9513
|
+
body: PublicDirectoryCreationFailed & FreestyleError;
|
|
8793
9514
|
static readonly code: string;
|
|
8794
9515
|
static readonly statusCode: number;
|
|
8795
9516
|
static readonly description: string;
|
|
8796
|
-
constructor(body:
|
|
9517
|
+
constructor(body: PublicDirectoryCreationFailed & FreestyleError);
|
|
8797
9518
|
}
|
|
8798
|
-
interface
|
|
9519
|
+
interface PublicNetworkPermissionsFailed {
|
|
8799
9520
|
message: string;
|
|
8800
9521
|
[k: string]: unknown;
|
|
8801
9522
|
}
|
|
8802
|
-
declare class
|
|
8803
|
-
body:
|
|
9523
|
+
declare class NetworkPermissionsFailedError extends Error {
|
|
9524
|
+
body: PublicNetworkPermissionsFailed & FreestyleError;
|
|
8804
9525
|
static readonly code: string;
|
|
8805
9526
|
static readonly statusCode: number;
|
|
8806
9527
|
static readonly description: string;
|
|
8807
|
-
constructor(body:
|
|
9528
|
+
constructor(body: PublicNetworkPermissionsFailed & FreestyleError);
|
|
8808
9529
|
}
|
|
8809
|
-
|
|
8810
|
-
|
|
9530
|
+
interface PublicLoggingFailed {
|
|
9531
|
+
message: string;
|
|
9532
|
+
[k: string]: unknown;
|
|
9533
|
+
}
|
|
9534
|
+
declare class LoggingFailedError extends Error {
|
|
9535
|
+
body: PublicLoggingFailed & FreestyleError;
|
|
8811
9536
|
static readonly code: string;
|
|
8812
9537
|
static readonly statusCode: number;
|
|
8813
9538
|
static readonly description: string;
|
|
8814
|
-
constructor(body:
|
|
9539
|
+
constructor(body: PublicLoggingFailed & FreestyleError);
|
|
8815
9540
|
}
|
|
8816
|
-
|
|
8817
|
-
|
|
9541
|
+
interface PublicRunNotFound {
|
|
9542
|
+
runId: string;
|
|
9543
|
+
[k: string]: unknown;
|
|
9544
|
+
}
|
|
9545
|
+
declare class RunNotFoundError extends Error {
|
|
9546
|
+
body: PublicRunNotFound & FreestyleError;
|
|
8818
9547
|
static readonly code: string;
|
|
8819
9548
|
static readonly statusCode: number;
|
|
8820
9549
|
static readonly description: string;
|
|
8821
|
-
constructor(body:
|
|
9550
|
+
constructor(body: PublicRunNotFound & FreestyleError);
|
|
8822
9551
|
}
|
|
8823
|
-
|
|
8824
|
-
|
|
9552
|
+
interface UnauthorizedErrorPublic {
|
|
9553
|
+
route: string;
|
|
9554
|
+
reason?: string | null;
|
|
9555
|
+
[k: string]: unknown;
|
|
9556
|
+
}
|
|
9557
|
+
declare class UnauthorizedErrorError extends Error {
|
|
9558
|
+
body: UnauthorizedErrorPublic & FreestyleError;
|
|
8825
9559
|
static readonly code: string;
|
|
8826
9560
|
static readonly statusCode: number;
|
|
8827
9561
|
static readonly description: string;
|
|
8828
|
-
constructor(body:
|
|
9562
|
+
constructor(body: UnauthorizedErrorPublic & FreestyleError);
|
|
8829
9563
|
}
|
|
8830
|
-
declare class
|
|
9564
|
+
declare class GitRepoLimitExceededError extends Error {
|
|
8831
9565
|
body: unknown & FreestyleError;
|
|
8832
9566
|
static readonly code: string;
|
|
8833
9567
|
static readonly statusCode: number;
|
|
8834
9568
|
static readonly description: string;
|
|
8835
9569
|
constructor(body: unknown & FreestyleError);
|
|
8836
9570
|
}
|
|
8837
|
-
declare class
|
|
9571
|
+
declare class EmptyTagError extends Error {
|
|
8838
9572
|
body: unknown & FreestyleError;
|
|
8839
9573
|
static readonly code: string;
|
|
8840
9574
|
static readonly statusCode: number;
|
|
@@ -9025,159 +9759,149 @@ declare class IdentityNotFoundError extends Error {
|
|
|
9025
9759
|
static readonly description: string;
|
|
9026
9760
|
constructor(body: unknown & FreestyleError);
|
|
9027
9761
|
}
|
|
9028
|
-
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
static readonly statusCode: number;
|
|
9032
|
-
static readonly description: string;
|
|
9033
|
-
constructor(body: unknown & FreestyleError);
|
|
9034
|
-
}
|
|
9035
|
-
interface PublicErrorDeletingRecord {
|
|
9036
|
-
domain: string;
|
|
9037
|
-
name: string;
|
|
9038
|
-
message: string;
|
|
9762
|
+
interface PublicLimitExceeded {
|
|
9763
|
+
limit: number;
|
|
9764
|
+
current: number;
|
|
9039
9765
|
[k: string]: unknown;
|
|
9040
9766
|
}
|
|
9041
|
-
declare class
|
|
9042
|
-
body:
|
|
9767
|
+
declare class LimitExceededError extends Error {
|
|
9768
|
+
body: PublicLimitExceeded & FreestyleError;
|
|
9043
9769
|
static readonly code: string;
|
|
9044
9770
|
static readonly statusCode: number;
|
|
9045
9771
|
static readonly description: string;
|
|
9046
|
-
constructor(body:
|
|
9772
|
+
constructor(body: PublicLimitExceeded & FreestyleError);
|
|
9047
9773
|
}
|
|
9048
|
-
interface
|
|
9049
|
-
|
|
9050
|
-
accountId: string;
|
|
9774
|
+
interface PublicFailedToProvisionCertificate {
|
|
9775
|
+
message: string;
|
|
9051
9776
|
[k: string]: unknown;
|
|
9052
9777
|
}
|
|
9053
|
-
declare class
|
|
9054
|
-
body:
|
|
9778
|
+
declare class FailedToProvisionCertificateError extends Error {
|
|
9779
|
+
body: PublicFailedToProvisionCertificate & FreestyleError;
|
|
9055
9780
|
static readonly code: string;
|
|
9056
9781
|
static readonly statusCode: number;
|
|
9057
9782
|
static readonly description: string;
|
|
9058
|
-
constructor(body:
|
|
9783
|
+
constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
|
|
9059
9784
|
}
|
|
9060
|
-
interface
|
|
9785
|
+
interface PublicFailedToInsertDomainMapping {
|
|
9061
9786
|
message: string;
|
|
9062
9787
|
[k: string]: unknown;
|
|
9063
9788
|
}
|
|
9064
|
-
declare class
|
|
9065
|
-
body:
|
|
9789
|
+
declare class FailedToInsertDomainMappingError extends Error {
|
|
9790
|
+
body: PublicFailedToInsertDomainMapping & FreestyleError;
|
|
9066
9791
|
static readonly code: string;
|
|
9067
9792
|
static readonly statusCode: number;
|
|
9068
9793
|
static readonly description: string;
|
|
9069
|
-
constructor(body:
|
|
9794
|
+
constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
|
|
9070
9795
|
}
|
|
9071
|
-
interface
|
|
9072
|
-
|
|
9073
|
-
accountId: string;
|
|
9796
|
+
interface PublicPermissionDenied {
|
|
9797
|
+
message: string;
|
|
9074
9798
|
[k: string]: unknown;
|
|
9075
9799
|
}
|
|
9076
|
-
declare class
|
|
9077
|
-
body:
|
|
9800
|
+
declare class PermissionDeniedError extends Error {
|
|
9801
|
+
body: PublicPermissionDenied & FreestyleError;
|
|
9078
9802
|
static readonly code: string;
|
|
9079
9803
|
static readonly statusCode: number;
|
|
9080
9804
|
static readonly description: string;
|
|
9081
|
-
constructor(body:
|
|
9805
|
+
constructor(body: PublicPermissionDenied & FreestyleError);
|
|
9082
9806
|
}
|
|
9083
|
-
interface
|
|
9807
|
+
interface PublicFailedToCheckPermissions {
|
|
9084
9808
|
message: string;
|
|
9085
9809
|
[k: string]: unknown;
|
|
9086
9810
|
}
|
|
9087
|
-
declare class
|
|
9088
|
-
body:
|
|
9811
|
+
declare class FailedToCheckPermissionsError extends Error {
|
|
9812
|
+
body: PublicFailedToCheckPermissions & FreestyleError;
|
|
9089
9813
|
static readonly code: string;
|
|
9090
9814
|
static readonly statusCode: number;
|
|
9091
9815
|
static readonly description: string;
|
|
9092
|
-
constructor(body:
|
|
9816
|
+
constructor(body: PublicFailedToCheckPermissions & FreestyleError);
|
|
9093
9817
|
}
|
|
9094
|
-
interface
|
|
9818
|
+
interface PublicFailedToListDomains {
|
|
9095
9819
|
message: string;
|
|
9096
9820
|
[k: string]: unknown;
|
|
9097
9821
|
}
|
|
9098
|
-
declare class
|
|
9099
|
-
body:
|
|
9822
|
+
declare class FailedToListDomainsError extends Error {
|
|
9823
|
+
body: PublicFailedToListDomains & FreestyleError;
|
|
9100
9824
|
static readonly code: string;
|
|
9101
9825
|
static readonly statusCode: number;
|
|
9102
9826
|
static readonly description: string;
|
|
9103
|
-
constructor(body:
|
|
9827
|
+
constructor(body: PublicFailedToListDomains & FreestyleError);
|
|
9104
9828
|
}
|
|
9105
|
-
interface
|
|
9106
|
-
|
|
9829
|
+
interface PublicFailedToListVerifications {
|
|
9830
|
+
message: string;
|
|
9107
9831
|
[k: string]: unknown;
|
|
9108
9832
|
}
|
|
9109
|
-
declare class
|
|
9110
|
-
body:
|
|
9833
|
+
declare class FailedToListVerificationsError extends Error {
|
|
9834
|
+
body: PublicFailedToListVerifications & FreestyleError;
|
|
9111
9835
|
static readonly code: string;
|
|
9112
9836
|
static readonly statusCode: number;
|
|
9113
9837
|
static readonly description: string;
|
|
9114
|
-
constructor(body:
|
|
9838
|
+
constructor(body: PublicFailedToListVerifications & FreestyleError);
|
|
9115
9839
|
}
|
|
9116
|
-
interface
|
|
9840
|
+
interface PublicFailedToVerifyDomain {
|
|
9117
9841
|
message: string;
|
|
9118
9842
|
[k: string]: unknown;
|
|
9119
9843
|
}
|
|
9120
|
-
declare class
|
|
9121
|
-
body:
|
|
9844
|
+
declare class FailedToVerifyDomainError extends Error {
|
|
9845
|
+
body: PublicFailedToVerifyDomain & FreestyleError;
|
|
9122
9846
|
static readonly code: string;
|
|
9123
9847
|
static readonly statusCode: number;
|
|
9124
9848
|
static readonly description: string;
|
|
9125
|
-
constructor(body:
|
|
9849
|
+
constructor(body: PublicFailedToVerifyDomain & FreestyleError);
|
|
9126
9850
|
}
|
|
9127
|
-
interface
|
|
9851
|
+
interface PublicVerificationFailed {
|
|
9128
9852
|
message: string;
|
|
9129
9853
|
[k: string]: unknown;
|
|
9130
9854
|
}
|
|
9131
|
-
declare class
|
|
9132
|
-
body:
|
|
9855
|
+
declare class VerificationFailedError extends Error {
|
|
9856
|
+
body: PublicVerificationFailed & FreestyleError;
|
|
9133
9857
|
static readonly code: string;
|
|
9134
9858
|
static readonly statusCode: number;
|
|
9135
9859
|
static readonly description: string;
|
|
9136
|
-
constructor(body:
|
|
9860
|
+
constructor(body: PublicVerificationFailed & FreestyleError);
|
|
9137
9861
|
}
|
|
9138
|
-
interface
|
|
9862
|
+
interface PublicFailedToDeleteVerification {
|
|
9139
9863
|
message: string;
|
|
9140
9864
|
[k: string]: unknown;
|
|
9141
9865
|
}
|
|
9142
|
-
declare class
|
|
9143
|
-
body:
|
|
9866
|
+
declare class FailedToDeleteVerificationError extends Error {
|
|
9867
|
+
body: PublicFailedToDeleteVerification & FreestyleError;
|
|
9144
9868
|
static readonly code: string;
|
|
9145
9869
|
static readonly statusCode: number;
|
|
9146
9870
|
static readonly description: string;
|
|
9147
|
-
constructor(body:
|
|
9871
|
+
constructor(body: PublicFailedToDeleteVerification & FreestyleError);
|
|
9148
9872
|
}
|
|
9149
|
-
interface
|
|
9150
|
-
|
|
9873
|
+
interface PublicVerificationNotFound {
|
|
9874
|
+
domain: string;
|
|
9151
9875
|
[k: string]: unknown;
|
|
9152
9876
|
}
|
|
9153
|
-
declare class
|
|
9154
|
-
body:
|
|
9877
|
+
declare class VerificationNotFoundError extends Error {
|
|
9878
|
+
body: PublicVerificationNotFound & FreestyleError;
|
|
9155
9879
|
static readonly code: string;
|
|
9156
9880
|
static readonly statusCode: number;
|
|
9157
9881
|
static readonly description: string;
|
|
9158
|
-
constructor(body:
|
|
9882
|
+
constructor(body: PublicVerificationNotFound & FreestyleError);
|
|
9159
9883
|
}
|
|
9160
|
-
interface
|
|
9884
|
+
interface PublicFailedToCreateVerificationCode {
|
|
9161
9885
|
message: string;
|
|
9162
9886
|
[k: string]: unknown;
|
|
9163
9887
|
}
|
|
9164
|
-
declare class
|
|
9165
|
-
body:
|
|
9888
|
+
declare class FailedToCreateVerificationCodeError extends Error {
|
|
9889
|
+
body: PublicFailedToCreateVerificationCode & FreestyleError;
|
|
9166
9890
|
static readonly code: string;
|
|
9167
9891
|
static readonly statusCode: number;
|
|
9168
9892
|
static readonly description: string;
|
|
9169
|
-
constructor(body:
|
|
9893
|
+
constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
|
|
9170
9894
|
}
|
|
9171
|
-
interface
|
|
9172
|
-
|
|
9895
|
+
interface PublicInvalidDomain {
|
|
9896
|
+
domain: string;
|
|
9173
9897
|
[k: string]: unknown;
|
|
9174
9898
|
}
|
|
9175
|
-
declare class
|
|
9176
|
-
body:
|
|
9899
|
+
declare class InvalidDomainError extends Error {
|
|
9900
|
+
body: PublicInvalidDomain & FreestyleError;
|
|
9177
9901
|
static readonly code: string;
|
|
9178
9902
|
static readonly statusCode: number;
|
|
9179
9903
|
static readonly description: string;
|
|
9180
|
-
constructor(body:
|
|
9904
|
+
constructor(body: PublicInvalidDomain & FreestyleError);
|
|
9181
9905
|
}
|
|
9182
9906
|
declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
9183
9907
|
BAD_PARSE: typeof BadParseError;
|
|
@@ -9186,6 +9910,12 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9186
9910
|
BAD_HEADER: typeof BadHeaderError;
|
|
9187
9911
|
BAD_KEY: typeof BadKeyError;
|
|
9188
9912
|
GIT_ERROR: typeof GitErrorError;
|
|
9913
|
+
SUSPEND_FAILED_AND_STOP_FAILED: typeof SuspendFailedAndStopFailedError;
|
|
9914
|
+
SUSPEND_FAILED_AND_STOPPED: typeof SuspendFailedAndStoppedError;
|
|
9915
|
+
INVALID_GIT_REPO_SPEC_ERROR: typeof InvalidGitRepoSpecErrorError;
|
|
9916
|
+
INTERNAL_ERROR: typeof InternalErrorError;
|
|
9917
|
+
FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
|
|
9918
|
+
CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
|
|
9189
9919
|
SNAPSHOT_NOT_FOUND: typeof SnapshotNotFoundError;
|
|
9190
9920
|
RESUMED_VM_NON_RESPONSIVE: typeof ResumedVmNonResponsiveError;
|
|
9191
9921
|
SNAPSHOT_LOAD_TIMEOUT: typeof SnapshotLoadTimeoutError;
|
|
@@ -9200,19 +9930,26 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9200
9930
|
VM_IS_SUSPENDING: typeof VmIsSuspendingError;
|
|
9201
9931
|
VM_EXIT_DURING_START: typeof VmExitDuringStartError;
|
|
9202
9932
|
VM_ACCESS_DENIED: typeof VmAccessDeniedError;
|
|
9203
|
-
STD_IO: typeof StdIoError;
|
|
9204
9933
|
FAILED_TO_SPAWN_UFFD: typeof FailedToSpawnUffdError;
|
|
9205
9934
|
VM_SPAWN_PROCESS: typeof VmSpawnProcessError;
|
|
9206
9935
|
VM_SUBNET_NOT_FOUND: typeof VmSubnetNotFoundError;
|
|
9207
|
-
|
|
9208
|
-
|
|
9209
|
-
|
|
9936
|
+
SNAPSHOT_SETUP_FAILED: typeof SnapshotSetupFailedError;
|
|
9937
|
+
SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
|
|
9938
|
+
SNAPSHOT_IS_ACCOUNT_DEFAULT: typeof SnapshotIsAccountDefaultError;
|
|
9939
|
+
SNAPSHOT_ALREADY_DELETED: typeof SnapshotAlreadyDeletedError;
|
|
9210
9940
|
VM_NOT_FOUND_IN_FS: typeof VmNotFoundInFsError;
|
|
9211
9941
|
VM_NOT_RUNNING: typeof VmNotRunningError;
|
|
9212
9942
|
VM_NOT_FOUND: typeof VmNotFoundError;
|
|
9213
9943
|
INTERNAL_FORK_VM_NOT_FOUND: typeof InternalForkVmNotFoundError;
|
|
9214
9944
|
BAD_REQUEST: typeof BadRequestError;
|
|
9215
9945
|
INTERNAL_VM_NOT_FOUND: typeof InternalVmNotFoundError;
|
|
9946
|
+
NO_DEFAULT_SNAPSHOT_AVAILABLE: typeof NoDefaultSnapshotAvailableError;
|
|
9947
|
+
DOCKER_SNAPSHOT_FAILED: typeof DockerSnapshotFailedError;
|
|
9948
|
+
SET_DEFAULT_SNAPSHOT_FAILED: typeof SetDefaultSnapshotFailedError;
|
|
9949
|
+
SNAPSHOT_LAYER_CREATION_FAILED: typeof SnapshotLayerCreationFailedError;
|
|
9950
|
+
SNAPSHOT_DIR_NOT_FOUND: typeof SnapshotDirNotFoundError;
|
|
9951
|
+
SUBVOLUME_CREATION_FAILED: typeof SubvolumeCreationFailedError;
|
|
9952
|
+
GET_DEFAULT_SNAPSHOT_FAILED: typeof GetDefaultSnapshotFailedError;
|
|
9216
9953
|
USER_NOT_FOUND: typeof UserNotFoundError;
|
|
9217
9954
|
USER_ALREADY_EXISTS: typeof UserAlreadyExistsError;
|
|
9218
9955
|
VALIDATION_ERROR: typeof ValidationErrorError;
|
|
@@ -9229,29 +9966,17 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9229
9966
|
GROUP_NAME_INVALID_CHARS: typeof GroupNameInvalidCharsError;
|
|
9230
9967
|
GROUP_NAME_TOO_LONG: typeof GroupNameTooLongError;
|
|
9231
9968
|
GROUP_NAME_EMPTY: typeof GroupNameEmptyError;
|
|
9232
|
-
NO_DEFAULT_SNAPSHOT_AVAILABLE: typeof NoDefaultSnapshotAvailableError;
|
|
9233
|
-
DOCKER_SNAPSHOT_FAILED: typeof DockerSnapshotFailedError;
|
|
9234
|
-
SET_DEFAULT_SNAPSHOT_FAILED: typeof SetDefaultSnapshotFailedError;
|
|
9235
|
-
SNAPSHOT_LAYER_CREATION_FAILED: typeof SnapshotLayerCreationFailedError;
|
|
9236
|
-
SNAPSHOT_DIR_NOT_FOUND: typeof SnapshotDirNotFoundError;
|
|
9237
|
-
SUBVOLUME_CREATION_FAILED: typeof SubvolumeCreationFailedError;
|
|
9238
|
-
GET_DEFAULT_SNAPSHOT_FAILED: typeof GetDefaultSnapshotFailedError;
|
|
9239
|
-
SNAPSHOT_SETUP_FAILED: typeof SnapshotSetupFailedError;
|
|
9240
|
-
SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
|
|
9241
|
-
DATABASE_ERROR: typeof DatabaseErrorError;
|
|
9242
|
-
PARTITION_NOT_FOUND: typeof PartitionNotFoundError;
|
|
9243
|
-
INVALID_VM_ID: typeof InvalidVmIdError;
|
|
9244
|
-
SUSPEND_FAILED_AND_STOP_FAILED: typeof SuspendFailedAndStopFailedError;
|
|
9245
|
-
SUSPEND_FAILED_AND_STOPPED: typeof SuspendFailedAndStoppedError;
|
|
9246
|
-
FILE_NOT_FOUND: typeof FileNotFoundError;
|
|
9247
|
-
FILES_BAD_REQUEST: typeof FilesBadRequestError;
|
|
9248
|
-
INVALID_GIT_REPO_SPEC_ERROR: typeof InvalidGitRepoSpecErrorError;
|
|
9249
|
-
INTERNAL_ERROR: typeof InternalErrorError;
|
|
9250
|
-
FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
|
|
9251
|
-
CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
|
|
9252
9969
|
ACTIVE_TRANSACTION_ERROR: typeof ActiveTransactionErrorError;
|
|
9253
9970
|
SWAP_VM_TAP: typeof SwapVmTapError;
|
|
9254
9971
|
ROOTFS_COPY_ERROR: typeof RootfsCopyErrorError;
|
|
9972
|
+
PARTITION_NOT_FOUND: typeof PartitionNotFoundError;
|
|
9973
|
+
FILE_NOT_FOUND: typeof FileNotFoundError;
|
|
9974
|
+
FILES_BAD_REQUEST: typeof FilesBadRequestError;
|
|
9975
|
+
DATABASE_ERROR: typeof DatabaseErrorError;
|
|
9976
|
+
INVALID_VM_ID: typeof InvalidVmIdError;
|
|
9977
|
+
VM_OPERATION_DENIED_DURING_TRANSACTION: typeof VmOperationDeniedDuringTransactionError;
|
|
9978
|
+
VM_TRANSACTION_ID_MISMATCH: typeof VmTransactionIdMismatchError;
|
|
9979
|
+
VM_NOT_IN_TRANSACTION: typeof VmNotInTransactionError;
|
|
9255
9980
|
CREATE_VM_BAD_REQUEST: typeof CreateVmBadRequestError;
|
|
9256
9981
|
VM_SETUP_FAILED: typeof VmSetupFailedError;
|
|
9257
9982
|
WANTED_BY_EMPTY: typeof WantedByEmptyError;
|
|
@@ -9280,80 +10005,67 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9280
10005
|
INVALID_PARAMETERS: typeof InvalidParametersError;
|
|
9281
10006
|
MAX_USES_EXCEEDED: typeof MaxUsesExceededError;
|
|
9282
10007
|
EXPIRED: typeof ExpiredError;
|
|
9283
|
-
FORBIDDEN: typeof ForbiddenError;
|
|
9284
|
-
UNAUTHORIZED: typeof UnauthorizedError;
|
|
9285
|
-
BLOB_NOT_FOUND: typeof BlobNotFoundError;
|
|
9286
|
-
INVALID_RANGE: typeof InvalidRangeError;
|
|
9287
|
-
OFFSET_WITH_SELECTOR: typeof OffsetWithSelectorError;
|
|
9288
|
-
COMMIT_NOT_IN_BRANCH: typeof CommitNotInBranchError;
|
|
9289
|
-
COMMIT_NOT_FOUND: typeof CommitNotFoundError;
|
|
9290
10008
|
BRANCH_NOT_FOUND: typeof BranchNotFoundError;
|
|
10009
|
+
BRANCH_ALREADY_EXISTS: typeof BranchAlreadyExistsError;
|
|
9291
10010
|
NO_DEFAULT_BRANCH: typeof NoDefaultBranchError;
|
|
10011
|
+
COMMIT_NOT_FOUND: typeof CommitNotFoundError;
|
|
10012
|
+
PARENT_NOT_FOUND: typeof ParentNotFoundError;
|
|
10013
|
+
TREE_NOT_FOUND: typeof TreeNotFoundError;
|
|
10014
|
+
PACKFILE: typeof PackfileError;
|
|
10015
|
+
INVALID_REVISION: typeof InvalidRevisionError;
|
|
10016
|
+
FORBIDDEN: typeof ForbiddenError;
|
|
10017
|
+
UNAUTHORIZED: typeof UnauthorizedError;
|
|
10018
|
+
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
10019
|
+
REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
|
|
10020
|
+
AMBIGUOUS: typeof AmbiguousError;
|
|
10021
|
+
NOT_FOUND: typeof NotFoundError;
|
|
10022
|
+
INVALID: typeof InvalidError;
|
|
10023
|
+
DIFF_INVALID_PATH_PATTERN: typeof DiffInvalidPathPatternError;
|
|
10024
|
+
DIFF_INVALID_REGEX: typeof DiffInvalidRegexError;
|
|
10025
|
+
DIFF_EMPTY_QUERY: typeof DiffEmptyQueryError;
|
|
10026
|
+
COMMIT_INVALID_REGEX: typeof CommitInvalidRegexError;
|
|
10027
|
+
COMMIT_EMPTY_QUERY: typeof CommitEmptyQueryError;
|
|
10028
|
+
FILENAME_INVALID_PATTERN: typeof FilenameInvalidPatternError;
|
|
10029
|
+
FILENAME_EMPTY_QUERY: typeof FilenameEmptyQueryError;
|
|
10030
|
+
INVALID_REGEX: typeof InvalidRegexError;
|
|
10031
|
+
INVALID_PATH_PATTERN: typeof InvalidPathPatternError;
|
|
10032
|
+
EMPTY_QUERY: typeof EmptyQueryError;
|
|
10033
|
+
CONFLICT: typeof ConflictError;
|
|
9292
10034
|
INVALID_BASE64_CONTENT: typeof InvalidBase64ContentError;
|
|
9293
10035
|
INVALID_FILE_CHANGE: typeof InvalidFileChangeError;
|
|
9294
10036
|
INVALID_FILE_PATH: typeof InvalidFilePathError;
|
|
9295
10037
|
CONFLICTING_PARENT: typeof ConflictingParentError;
|
|
9296
|
-
AMBIGUOUS: typeof AmbiguousError;
|
|
9297
|
-
NOT_FOUND: typeof NotFoundError;
|
|
9298
|
-
INVALID: typeof InvalidError;
|
|
9299
|
-
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
9300
|
-
TREE_NOT_FOUND: typeof TreeNotFoundError;
|
|
9301
|
-
PARENT_NOT_FOUND: typeof ParentNotFoundError;
|
|
9302
|
-
INVALID_SERVICE: typeof InvalidServiceError;
|
|
9303
|
-
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
9304
|
-
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
9305
|
-
REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
|
|
9306
|
-
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
9307
|
-
INVALID_REVISION: typeof InvalidRevisionError;
|
|
9308
|
-
PACKFILE: typeof PackfileError;
|
|
9309
|
-
SEND_ERROR: typeof SendErrorError;
|
|
9310
10038
|
INVALID_ACCOUNT_ID: typeof InvalidAccountIdError;
|
|
9311
10039
|
SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
|
|
9312
10040
|
SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
|
|
9313
10041
|
SOURCE_NOT_FOUND: typeof SourceNotFoundError;
|
|
9314
10042
|
IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
|
|
9315
10043
|
REPO_ALREADY_EXISTS: typeof RepoAlreadyExistsError;
|
|
9316
|
-
|
|
9317
|
-
|
|
10044
|
+
SEND_ERROR: typeof SendErrorError;
|
|
10045
|
+
INVALID_RANGE: typeof InvalidRangeError;
|
|
10046
|
+
OFFSET_WITH_SELECTOR: typeof OffsetWithSelectorError;
|
|
10047
|
+
COMMIT_NOT_IN_BRANCH: typeof CommitNotInBranchError;
|
|
10048
|
+
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
10049
|
+
INVALID_SERVICE: typeof InvalidServiceError;
|
|
10050
|
+
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
9318
10051
|
GIT_HUB_SYNC_CONFLICT: typeof GitHubSyncConflictError;
|
|
9319
10052
|
INVALID_OBJECT_ID: typeof InvalidObjectIdError;
|
|
10053
|
+
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
10054
|
+
BLOB_NOT_FOUND: typeof BlobNotFoundError;
|
|
9320
10055
|
UNAVAILABLE: typeof UnavailableError;
|
|
9321
10056
|
SCHEDULE_NOT_FOUND: typeof ScheduleNotFoundError;
|
|
9322
10057
|
SERVICE_UNAVAILABLE: typeof ServiceUnavailableError;
|
|
9323
10058
|
EXECUTE_LIMIT_EXCEEDED: typeof ExecuteLimitExceededError;
|
|
9324
|
-
|
|
9325
|
-
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
9333
|
-
|
|
9334
|
-
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
9335
|
-
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
9336
|
-
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
9337
|
-
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
9338
|
-
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
9339
|
-
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
9340
|
-
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
9341
|
-
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
9342
|
-
LOGGING_FAILED: typeof LoggingFailedError;
|
|
9343
|
-
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
9344
|
-
LIMIT_EXCEEDED: typeof LimitExceededError;
|
|
9345
|
-
FAILED_TO_PROVISION_CERTIFICATE: typeof FailedToProvisionCertificateError;
|
|
9346
|
-
FAILED_TO_INSERT_DOMAIN_MAPPING: typeof FailedToInsertDomainMappingError;
|
|
9347
|
-
PERMISSION_DENIED: typeof PermissionDeniedError;
|
|
9348
|
-
FAILED_TO_CHECK_PERMISSIONS: typeof FailedToCheckPermissionsError;
|
|
9349
|
-
FAILED_TO_LIST_DOMAINS: typeof FailedToListDomainsError;
|
|
9350
|
-
FAILED_TO_LIST_VERIFICATIONS: typeof FailedToListVerificationsError;
|
|
9351
|
-
FAILED_TO_VERIFY_DOMAIN: typeof FailedToVerifyDomainError;
|
|
9352
|
-
VERIFICATION_FAILED: typeof VerificationFailedError;
|
|
9353
|
-
FAILED_TO_DELETE_VERIFICATION: typeof FailedToDeleteVerificationError;
|
|
9354
|
-
VERIFICATION_NOT_FOUND: typeof VerificationNotFoundError;
|
|
9355
|
-
FAILED_TO_CREATE_VERIFICATION_CODE: typeof FailedToCreateVerificationCodeError;
|
|
9356
|
-
INVALID_DOMAIN: typeof InvalidDomainError;
|
|
10059
|
+
ACCESS_DENIED: typeof AccessDeniedError;
|
|
10060
|
+
CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
|
|
10061
|
+
CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
|
|
10062
|
+
CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
|
|
10063
|
+
RESTORE_FAILED: typeof RestoreFailedError;
|
|
10064
|
+
CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
|
|
10065
|
+
BACKUP_FAILED: typeof BackupFailedError;
|
|
10066
|
+
DEPLOYMENT_FAILED: typeof DeploymentFailedError;
|
|
10067
|
+
INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
|
|
10068
|
+
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
9357
10069
|
BUILD_FAILED: typeof BuildFailedError;
|
|
9358
10070
|
SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
|
|
9359
10071
|
LOCKFILE_ERROR: typeof LockfileErrorError;
|
|
@@ -9370,9 +10082,32 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9370
10082
|
DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
|
|
9371
10083
|
RESIZE_FAILED: typeof ResizeFailedError;
|
|
9372
10084
|
INTERNAL_RESIZE_VM_NOT_FOUND: typeof InternalResizeVmNotFoundError;
|
|
9373
|
-
ACCESS_DENIED: typeof AccessDeniedError;
|
|
9374
10085
|
BRANCH_NAME_EMPTY: typeof BranchNameEmptyError;
|
|
9375
|
-
|
|
10086
|
+
SNAPSHOT_LIMIT_EXCEEDED: typeof SnapshotLimitExceededError;
|
|
10087
|
+
PERSISTENT_VMS_NOT_ALLOWED: typeof PersistentVmsNotAllowedError;
|
|
10088
|
+
TOTAL_VM_LIMIT_EXCEEDED: typeof TotalVmLimitExceededError;
|
|
10089
|
+
VM_LIMIT_EXCEEDED: typeof VmLimitExceededError;
|
|
10090
|
+
OBSERVABILITY_DATABASE_ERROR: typeof ObservabilityDatabaseErrorError;
|
|
10091
|
+
OBSERVABILITY_ACCESS_DENIED: typeof ObservabilityAccessDeniedError;
|
|
10092
|
+
PARSE_LOGS_FAILED: typeof ParseLogsFailedError;
|
|
10093
|
+
RETRIEVE_LOGS_FAILED: typeof RetrieveLogsFailedError;
|
|
10094
|
+
INVALID_QUERY: typeof InvalidQueryError;
|
|
10095
|
+
LOGS_NOT_FOUND: typeof LogsNotFoundError;
|
|
10096
|
+
DOMAIN_OWNERSHIP_NOT_VERIFIED: typeof DomainOwnershipNotVerifiedError;
|
|
10097
|
+
VM_ACCESS_DENIED_FOR_MAPPING: typeof VmAccessDeniedForMappingError;
|
|
10098
|
+
DEPLOYMENT_ACCESS_DENIED: typeof DeploymentAccessDeniedError;
|
|
10099
|
+
FAILED_TO_PROVISION_CERTIFICATE_FOR_MAPPING: typeof FailedToProvisionCertificateForMappingError;
|
|
10100
|
+
FAILED_INSERT_DOMAIN_MAPPING: typeof FailedInsertDomainMappingError;
|
|
10101
|
+
DOMAIN_ALREADY_EXISTS: typeof DomainAlreadyExistsError;
|
|
10102
|
+
FAILED_TO_INSERT_OWNERSHIP: typeof FailedToInsertOwnershipError;
|
|
10103
|
+
FAILED_REMOVE_DOMAIN_MAPPING: typeof FailedRemoveDomainMappingError;
|
|
10104
|
+
FAILED_PERMISSIONS_CHECK: typeof FailedPermissionsCheckError;
|
|
10105
|
+
FAILED_TO_CHECK_DOMAIN_MAPPING_PERMISSIONS: typeof FailedToCheckDomainMappingPermissionsError;
|
|
10106
|
+
DOMAIN_OWNERSHIP_VERIFICATION_FAILED: typeof DomainOwnershipVerificationFailedError;
|
|
10107
|
+
ERROR_DELETING_RECORD: typeof ErrorDeletingRecordError;
|
|
10108
|
+
RECORD_OWNERSHIP_ERROR: typeof RecordOwnershipErrorError;
|
|
10109
|
+
ERROR_CREATING_RECORD: typeof ErrorCreatingRecordError;
|
|
10110
|
+
DOMAIN_OWNERSHIP_ERROR: typeof DomainOwnershipErrorError;
|
|
9376
10111
|
TRIGGER_ERROR: typeof TriggerErrorError;
|
|
9377
10112
|
TOKEN_ERROR: typeof TokenErrorError;
|
|
9378
10113
|
PERMISSION_ERROR: typeof PermissionErrorError;
|
|
@@ -9392,21 +10127,23 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9392
10127
|
SERIALIZATION_ERROR: typeof SerializationErrorError;
|
|
9393
10128
|
GIT_INVALID_REQUEST: typeof GitInvalidRequestError;
|
|
9394
10129
|
REPOSITORY_NOT_FOUND: typeof RepositoryNotFoundError;
|
|
9395
|
-
|
|
9396
|
-
|
|
9397
|
-
|
|
9398
|
-
|
|
9399
|
-
|
|
9400
|
-
|
|
9401
|
-
|
|
9402
|
-
|
|
9403
|
-
|
|
9404
|
-
|
|
10130
|
+
EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
|
|
10131
|
+
EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
|
|
10132
|
+
LIST_RUNS_FAILED: typeof ListRunsFailedError;
|
|
10133
|
+
EXECUTION_ERROR: typeof ExecutionErrorError;
|
|
10134
|
+
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
10135
|
+
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
10136
|
+
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
10137
|
+
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
10138
|
+
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
10139
|
+
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
10140
|
+
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
10141
|
+
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
10142
|
+
LOGGING_FAILED: typeof LoggingFailedError;
|
|
10143
|
+
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
10144
|
+
UNAUTHORIZED_ERROR: typeof UnauthorizedErrorError;
|
|
9405
10145
|
GIT_REPO_LIMIT_EXCEEDED: typeof GitRepoLimitExceededError;
|
|
9406
10146
|
EMPTY_TAG: typeof EmptyTagError;
|
|
9407
|
-
PERSISTENT_VMS_NOT_ALLOWED: typeof PersistentVmsNotAllowedError;
|
|
9408
|
-
TOTAL_VM_LIMIT_EXCEEDED: typeof TotalVmLimitExceededError;
|
|
9409
|
-
VM_LIMIT_EXCEEDED: typeof VmLimitExceededError;
|
|
9410
10147
|
PERMISSION_ALREADY_EXISTS: typeof PermissionAlreadyExistsError;
|
|
9411
10148
|
LIST_TOKENS_FAILED: typeof ListTokensFailedError;
|
|
9412
10149
|
REVOKE_TOKEN_FAILED: typeof RevokeTokenFailedError;
|
|
@@ -9427,20 +10164,19 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9427
10164
|
CANNOT_MODIFY_MANAGED_IDENTITY: typeof CannotModifyManagedIdentityError;
|
|
9428
10165
|
IDENTITY_ACCESS_DENIED: typeof IdentityAccessDeniedError;
|
|
9429
10166
|
IDENTITY_NOT_FOUND: typeof IdentityNotFoundError;
|
|
9430
|
-
|
|
9431
|
-
|
|
9432
|
-
|
|
9433
|
-
|
|
9434
|
-
|
|
9435
|
-
|
|
9436
|
-
|
|
9437
|
-
|
|
9438
|
-
|
|
9439
|
-
|
|
9440
|
-
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
10167
|
+
LIMIT_EXCEEDED: typeof LimitExceededError;
|
|
10168
|
+
FAILED_TO_PROVISION_CERTIFICATE: typeof FailedToProvisionCertificateError;
|
|
10169
|
+
FAILED_TO_INSERT_DOMAIN_MAPPING: typeof FailedToInsertDomainMappingError;
|
|
10170
|
+
PERMISSION_DENIED: typeof PermissionDeniedError;
|
|
10171
|
+
FAILED_TO_CHECK_PERMISSIONS: typeof FailedToCheckPermissionsError;
|
|
10172
|
+
FAILED_TO_LIST_DOMAINS: typeof FailedToListDomainsError;
|
|
10173
|
+
FAILED_TO_LIST_VERIFICATIONS: typeof FailedToListVerificationsError;
|
|
10174
|
+
FAILED_TO_VERIFY_DOMAIN: typeof FailedToVerifyDomainError;
|
|
10175
|
+
VERIFICATION_FAILED: typeof VerificationFailedError;
|
|
10176
|
+
FAILED_TO_DELETE_VERIFICATION: typeof FailedToDeleteVerificationError;
|
|
10177
|
+
VERIFICATION_NOT_FOUND: typeof VerificationNotFoundError;
|
|
10178
|
+
FAILED_TO_CREATE_VERIFICATION_CODE: typeof FailedToCreateVerificationCodeError;
|
|
10179
|
+
INVALID_DOMAIN: typeof InvalidDomainError;
|
|
9444
10180
|
};
|
|
9445
10181
|
|
|
9446
10182
|
type errors_AccessDeniedError = AccessDeniedError;
|
|
@@ -9487,6 +10223,10 @@ type errors_CloudstateDatabaseErrorError = CloudstateDatabaseErrorError;
|
|
|
9487
10223
|
declare const errors_CloudstateDatabaseErrorError: typeof CloudstateDatabaseErrorError;
|
|
9488
10224
|
type errors_CloudstateInternalErrorError = CloudstateInternalErrorError;
|
|
9489
10225
|
declare const errors_CloudstateInternalErrorError: typeof CloudstateInternalErrorError;
|
|
10226
|
+
type errors_CommitEmptyQueryError = CommitEmptyQueryError;
|
|
10227
|
+
declare const errors_CommitEmptyQueryError: typeof CommitEmptyQueryError;
|
|
10228
|
+
type errors_CommitInvalidRegexError = CommitInvalidRegexError;
|
|
10229
|
+
declare const errors_CommitInvalidRegexError: typeof CommitInvalidRegexError;
|
|
9490
10230
|
type errors_CommitNotFoundError = CommitNotFoundError;
|
|
9491
10231
|
declare const errors_CommitNotFoundError: typeof CommitNotFoundError;
|
|
9492
10232
|
type errors_CommitNotInBranchError = CommitNotInBranchError;
|
|
@@ -9525,6 +10265,12 @@ type errors_DeploymentLimitExceededError = DeploymentLimitExceededError;
|
|
|
9525
10265
|
declare const errors_DeploymentLimitExceededError: typeof DeploymentLimitExceededError;
|
|
9526
10266
|
type errors_DeploymentNotFoundError = DeploymentNotFoundError;
|
|
9527
10267
|
declare const errors_DeploymentNotFoundError: typeof DeploymentNotFoundError;
|
|
10268
|
+
type errors_DiffEmptyQueryError = DiffEmptyQueryError;
|
|
10269
|
+
declare const errors_DiffEmptyQueryError: typeof DiffEmptyQueryError;
|
|
10270
|
+
type errors_DiffInvalidPathPatternError = DiffInvalidPathPatternError;
|
|
10271
|
+
declare const errors_DiffInvalidPathPatternError: typeof DiffInvalidPathPatternError;
|
|
10272
|
+
type errors_DiffInvalidRegexError = DiffInvalidRegexError;
|
|
10273
|
+
declare const errors_DiffInvalidRegexError: typeof DiffInvalidRegexError;
|
|
9528
10274
|
type errors_DirectoryCreationFailedError = DirectoryCreationFailedError;
|
|
9529
10275
|
declare const errors_DirectoryCreationFailedError: typeof DirectoryCreationFailedError;
|
|
9530
10276
|
type errors_DockerSnapshotFailedError = DockerSnapshotFailedError;
|
|
@@ -9545,6 +10291,8 @@ type errors_DuplicateGroupNameError = DuplicateGroupNameError;
|
|
|
9545
10291
|
declare const errors_DuplicateGroupNameError: typeof DuplicateGroupNameError;
|
|
9546
10292
|
type errors_DuplicateUserNameError = DuplicateUserNameError;
|
|
9547
10293
|
declare const errors_DuplicateUserNameError: typeof DuplicateUserNameError;
|
|
10294
|
+
type errors_EmptyQueryError = EmptyQueryError;
|
|
10295
|
+
declare const errors_EmptyQueryError: typeof EmptyQueryError;
|
|
9548
10296
|
type errors_EmptyTagError = EmptyTagError;
|
|
9549
10297
|
declare const errors_EmptyTagError: typeof EmptyTagError;
|
|
9550
10298
|
type errors_EntrypointNotFoundError = EntrypointNotFoundError;
|
|
@@ -9604,6 +10352,10 @@ type errors_FailedToVerifyDomainError = FailedToVerifyDomainError;
|
|
|
9604
10352
|
declare const errors_FailedToVerifyDomainError: typeof FailedToVerifyDomainError;
|
|
9605
10353
|
type errors_FileNotFoundError = FileNotFoundError;
|
|
9606
10354
|
declare const errors_FileNotFoundError: typeof FileNotFoundError;
|
|
10355
|
+
type errors_FilenameEmptyQueryError = FilenameEmptyQueryError;
|
|
10356
|
+
declare const errors_FilenameEmptyQueryError: typeof FilenameEmptyQueryError;
|
|
10357
|
+
type errors_FilenameInvalidPatternError = FilenameInvalidPatternError;
|
|
10358
|
+
declare const errors_FilenameInvalidPatternError: typeof FilenameInvalidPatternError;
|
|
9607
10359
|
type errors_FilesBadRequestError = FilesBadRequestError;
|
|
9608
10360
|
declare const errors_FilesBadRequestError: typeof FilesBadRequestError;
|
|
9609
10361
|
type errors_FirecrackerApiSocketNotFoundError = FirecrackerApiSocketNotFoundError;
|
|
@@ -9697,10 +10449,14 @@ declare const errors_InvalidObjectIdError: typeof InvalidObjectIdError;
|
|
|
9697
10449
|
type errors_InvalidObjectIdPublic = InvalidObjectIdPublic;
|
|
9698
10450
|
type errors_InvalidParametersError = InvalidParametersError;
|
|
9699
10451
|
declare const errors_InvalidParametersError: typeof InvalidParametersError;
|
|
10452
|
+
type errors_InvalidPathPatternError = InvalidPathPatternError;
|
|
10453
|
+
declare const errors_InvalidPathPatternError: typeof InvalidPathPatternError;
|
|
9700
10454
|
type errors_InvalidQueryError = InvalidQueryError;
|
|
9701
10455
|
declare const errors_InvalidQueryError: typeof InvalidQueryError;
|
|
9702
10456
|
type errors_InvalidRangeError = InvalidRangeError;
|
|
9703
10457
|
declare const errors_InvalidRangeError: typeof InvalidRangeError;
|
|
10458
|
+
type errors_InvalidRegexError = InvalidRegexError;
|
|
10459
|
+
declare const errors_InvalidRegexError: typeof InvalidRegexError;
|
|
9704
10460
|
type errors_InvalidRequestError = InvalidRequestError;
|
|
9705
10461
|
declare const errors_InvalidRequestError: typeof InvalidRequestError;
|
|
9706
10462
|
type errors_InvalidRevisionError = InvalidRevisionError;
|
|
@@ -9801,6 +10557,7 @@ type errors_PublicCertificateProvisioningError = PublicCertificateProvisioningEr
|
|
|
9801
10557
|
type errors_PublicCloudstateAccessDenied = PublicCloudstateAccessDenied;
|
|
9802
10558
|
type errors_PublicCloudstateDatabaseError = PublicCloudstateDatabaseError;
|
|
9803
10559
|
type errors_PublicCloudstateInternalError = PublicCloudstateInternalError;
|
|
10560
|
+
type errors_PublicCommitInvalidRegex = PublicCommitInvalidRegex;
|
|
9804
10561
|
type errors_PublicCommitNotFound = PublicCommitNotFound;
|
|
9805
10562
|
type errors_PublicCommitNotInBranch = PublicCommitNotInBranch;
|
|
9806
10563
|
type errors_PublicConflictingParent = PublicConflictingParent;
|
|
@@ -9817,6 +10574,8 @@ type errors_PublicDeleteRepositoryFailed = PublicDeleteRepositoryFailed;
|
|
|
9817
10574
|
type errors_PublicDeploymentAccessDenied = PublicDeploymentAccessDenied;
|
|
9818
10575
|
type errors_PublicDeploymentFailed = PublicDeploymentFailed;
|
|
9819
10576
|
type errors_PublicDeploymentLimitExceeded = PublicDeploymentLimitExceeded;
|
|
10577
|
+
type errors_PublicDiffInvalidPathPattern = PublicDiffInvalidPathPattern;
|
|
10578
|
+
type errors_PublicDiffInvalidRegex = PublicDiffInvalidRegex;
|
|
9820
10579
|
type errors_PublicDirectoryCreationFailed = PublicDirectoryCreationFailed;
|
|
9821
10580
|
type errors_PublicDomainAlreadyExists = PublicDomainAlreadyExists;
|
|
9822
10581
|
type errors_PublicDomainMappingError = PublicDomainMappingError;
|
|
@@ -9843,6 +10602,7 @@ type errors_PublicFailedToProvisionCertificate = PublicFailedToProvisionCertific
|
|
|
9843
10602
|
type errors_PublicFailedToProvisionCertificateForMapping = PublicFailedToProvisionCertificateForMapping;
|
|
9844
10603
|
type errors_PublicFailedToVerifyDomain = PublicFailedToVerifyDomain;
|
|
9845
10604
|
type errors_PublicFileNotFound = PublicFileNotFound;
|
|
10605
|
+
type errors_PublicFilenameInvalidPattern = PublicFilenameInvalidPattern;
|
|
9846
10606
|
type errors_PublicFilesBadRequest = PublicFilesBadRequest;
|
|
9847
10607
|
type errors_PublicForkVmNotFound = PublicForkVmNotFound;
|
|
9848
10608
|
type errors_PublicGetContentFailed = PublicGetContentFailed;
|
|
@@ -9865,8 +10625,10 @@ type errors_PublicInvalidDomain = PublicInvalidDomain;
|
|
|
9865
10625
|
type errors_PublicInvalidDomains = PublicInvalidDomains;
|
|
9866
10626
|
type errors_PublicInvalidFileChange = PublicInvalidFileChange;
|
|
9867
10627
|
type errors_PublicInvalidFilePath = PublicInvalidFilePath;
|
|
10628
|
+
type errors_PublicInvalidPathPattern = PublicInvalidPathPattern;
|
|
9868
10629
|
type errors_PublicInvalidQuery = PublicInvalidQuery;
|
|
9869
10630
|
type errors_PublicInvalidRange = PublicInvalidRange;
|
|
10631
|
+
type errors_PublicInvalidRegex = PublicInvalidRegex;
|
|
9870
10632
|
type errors_PublicInvalidRevision = PublicInvalidRevision;
|
|
9871
10633
|
type errors_PublicInvalidVmId = PublicInvalidVmId;
|
|
9872
10634
|
type errors_PublicLimitExceeded = PublicLimitExceeded;
|
|
@@ -9907,6 +10669,9 @@ type errors_PublicRunNotFound = PublicRunNotFound;
|
|
|
9907
10669
|
type errors_PublicRuntimeError = PublicRuntimeError;
|
|
9908
10670
|
type errors_PublicSerializationError = PublicSerializationError;
|
|
9909
10671
|
type errors_PublicServiceAlreadyExists = PublicServiceAlreadyExists;
|
|
10672
|
+
type errors_PublicSnapshotAlreadyDeleted = PublicSnapshotAlreadyDeleted;
|
|
10673
|
+
type errors_PublicSnapshotIsAccountDefault = PublicSnapshotIsAccountDefault;
|
|
10674
|
+
type errors_PublicSnapshotLimitExceeded = PublicSnapshotLimitExceeded;
|
|
9910
10675
|
type errors_PublicSnapshotNotFound = PublicSnapshotNotFound;
|
|
9911
10676
|
type errors_PublicSnapshotSetupFailed = PublicSnapshotSetupFailed;
|
|
9912
10677
|
type errors_PublicSnapshotVmBadRequest = PublicSnapshotVmBadRequest;
|
|
@@ -9915,6 +10680,7 @@ type errors_PublicSourceUnauthorized = PublicSourceUnauthorized;
|
|
|
9915
10680
|
type errors_PublicTagNotFound = PublicTagNotFound;
|
|
9916
10681
|
type errors_PublicTimeoutLimitExceeded = PublicTimeoutLimitExceeded;
|
|
9917
10682
|
type errors_PublicTokenError = PublicTokenError;
|
|
10683
|
+
type errors_PublicTotalVmLimitExceeded = PublicTotalVmLimitExceeded;
|
|
9918
10684
|
type errors_PublicTreeNotFound = PublicTreeNotFound;
|
|
9919
10685
|
type errors_PublicTriggerError = PublicTriggerError;
|
|
9920
10686
|
type errors_PublicUnsupportedTransfer = PublicUnsupportedTransfer;
|
|
@@ -9924,6 +10690,7 @@ type errors_PublicUserAlreadyExists = PublicUserAlreadyExists;
|
|
|
9924
10690
|
type errors_PublicVerificationFailed = PublicVerificationFailed;
|
|
9925
10691
|
type errors_PublicVerificationNotFound = PublicVerificationNotFound;
|
|
9926
10692
|
type errors_PublicVmAccessDeniedForMapping = PublicVmAccessDeniedForMapping;
|
|
10693
|
+
type errors_PublicVmLimitExceeded = PublicVmLimitExceeded;
|
|
9927
10694
|
type errors_PublicWebDeploymentBadRequest = PublicWebDeploymentBadRequest;
|
|
9928
10695
|
type errors_PublicWriteScriptFailed = PublicWriteScriptFailed;
|
|
9929
10696
|
type errors_RecordOwnershipErrorError = RecordOwnershipErrorError;
|
|
@@ -9988,11 +10755,17 @@ type errors_SetDefaultSnapshotFailedError = SetDefaultSnapshotFailedError;
|
|
|
9988
10755
|
declare const errors_SetDefaultSnapshotFailedError: typeof SetDefaultSnapshotFailedError;
|
|
9989
10756
|
type errors_SigningError = SigningError;
|
|
9990
10757
|
declare const errors_SigningError: typeof SigningError;
|
|
10758
|
+
type errors_SnapshotAlreadyDeletedError = SnapshotAlreadyDeletedError;
|
|
10759
|
+
declare const errors_SnapshotAlreadyDeletedError: typeof SnapshotAlreadyDeletedError;
|
|
9991
10760
|
type errors_SnapshotDirNotFoundError = SnapshotDirNotFoundError;
|
|
9992
10761
|
declare const errors_SnapshotDirNotFoundError: typeof SnapshotDirNotFoundError;
|
|
9993
10762
|
type errors_SnapshotId = SnapshotId;
|
|
10763
|
+
type errors_SnapshotIsAccountDefaultError = SnapshotIsAccountDefaultError;
|
|
10764
|
+
declare const errors_SnapshotIsAccountDefaultError: typeof SnapshotIsAccountDefaultError;
|
|
9994
10765
|
type errors_SnapshotLayerCreationFailedError = SnapshotLayerCreationFailedError;
|
|
9995
10766
|
declare const errors_SnapshotLayerCreationFailedError: typeof SnapshotLayerCreationFailedError;
|
|
10767
|
+
type errors_SnapshotLimitExceededError = SnapshotLimitExceededError;
|
|
10768
|
+
declare const errors_SnapshotLimitExceededError: typeof SnapshotLimitExceededError;
|
|
9996
10769
|
type errors_SnapshotLoadTimeoutError = SnapshotLoadTimeoutError;
|
|
9997
10770
|
declare const errors_SnapshotLoadTimeoutError: typeof SnapshotLoadTimeoutError;
|
|
9998
10771
|
type errors_SnapshotNotFoundError = SnapshotNotFoundError;
|
|
@@ -10007,8 +10780,6 @@ type errors_SourceNotFoundError = SourceNotFoundError;
|
|
|
10007
10780
|
declare const errors_SourceNotFoundError: typeof SourceNotFoundError;
|
|
10008
10781
|
type errors_SourceUnauthorizedError = SourceUnauthorizedError;
|
|
10009
10782
|
declare const errors_SourceUnauthorizedError: typeof SourceUnauthorizedError;
|
|
10010
|
-
type errors_StdIoError = StdIoError;
|
|
10011
|
-
declare const errors_StdIoError: typeof StdIoError;
|
|
10012
10783
|
type errors_SubvolumeCreationFailedError = SubvolumeCreationFailedError;
|
|
10013
10784
|
declare const errors_SubvolumeCreationFailedError: typeof SubvolumeCreationFailedError;
|
|
10014
10785
|
type errors_SuspendFailedAndStopFailedError = SuspendFailedAndStopFailedError;
|
|
@@ -10078,6 +10849,7 @@ type errors_VmDeletedError = VmDeletedError;
|
|
|
10078
10849
|
declare const errors_VmDeletedError: typeof VmDeletedError;
|
|
10079
10850
|
type errors_VmExitDuringStartError = VmExitDuringStartError;
|
|
10080
10851
|
declare const errors_VmExitDuringStartError: typeof VmExitDuringStartError;
|
|
10852
|
+
type errors_VmId = VmId;
|
|
10081
10853
|
type errors_VmIsSuspendingError = VmIsSuspendingError;
|
|
10082
10854
|
declare const errors_VmIsSuspendingError: typeof VmIsSuspendingError;
|
|
10083
10855
|
type errors_VmLimitExceededError = VmLimitExceededError;
|
|
@@ -10118,8 +10890,8 @@ type errors_WriteScriptFailedError = WriteScriptFailedError;
|
|
|
10118
10890
|
declare const errors_WriteScriptFailedError: typeof WriteScriptFailedError;
|
|
10119
10891
|
declare const errors_errorFromJSON: typeof errorFromJSON;
|
|
10120
10892
|
declare namespace errors {
|
|
10121
|
-
export { errors_AccessDeniedError as AccessDeniedError, errors_ActiveTransactionErrorError as ActiveTransactionErrorError, errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AmbiguousError as AmbiguousError, errors_BackupFailedError as BackupFailedError, errors_BadHeaderError as BadHeaderError, errors_BadKeyError as BadKeyError, errors_BadParseError as BadParseError, errors_BadRequestError as BadRequestError, errors_BadSignatureError as BadSignatureError, errors_BadTimestampError as BadTimestampError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchAlreadyExistsError as BranchAlreadyExistsError, errors_BranchNameEmptyError as BranchNameEmptyError, errors_BranchNotFoundError as BranchNotFoundError, 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_CommitNotFoundError as CommitNotFoundError, errors_CommitNotInBranchError as CommitNotInBranchError, errors_ConflictError as ConflictError, errors_ConflictingParentError as ConflictingParentError, 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_DeploymentAccessDeniedError as DeploymentAccessDeniedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentLimitExceededError as DeploymentLimitExceededError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerSnapshotFailedError as DockerSnapshotFailedError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipNotVerifiedError as DomainOwnershipNotVerifiedError, 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_ExecuteLimitExceededError as ExecuteLimitExceededError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExpectedServiceError as ExpectedServiceError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedInsertDomainMappingError as FailedInsertDomainMappingError, 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_FailedToProvisionCertificateForMappingError as FailedToProvisionCertificateForMappingError, errors_FailedToSpawnUffdError as FailedToSpawnUffdError, 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_GetDefaultSnapshotFailedError as GetDefaultSnapshotFailedError, 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_GitRepoLimitExceededError as GitRepoLimitExceededError, 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_InvalidBase64ContentError as InvalidBase64ContentError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidError as InvalidError, errors_InvalidFileChangeError as InvalidFileChangeError, errors_InvalidFilePathError as InvalidFilePathError, errors_InvalidGitRepoSpecErrorError as InvalidGitRepoSpecErrorError, 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_InvalidVmIdError as InvalidVmIdError, errors_KernelPanicError as KernelPanicError, errors_LimitExceededError as LimitExceededError, 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_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDefaultBranchError as NoDefaultBranchError, errors_NoDefaultSnapshotAvailableError as NoDefaultSnapshotAvailableError, 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_ParentNotFoundError as ParentNotFoundError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PartitionNotFoundError as PartitionNotFoundError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_PersistentVmsNotAllowedError as PersistentVmsNotAllowedError, errors_ProjectNotFoundError as ProjectNotFoundError, 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_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestoreFailedError as RestoreFailedError, errors_ResumedVmNonResponsiveError as ResumedVmNonResponsiveError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RootfsCopyErrorError as RootfsCopyErrorError, errors_RunNotFoundError as RunNotFoundError, errors_RuntimeErrorError as RuntimeErrorError, errors_ScheduleNotFoundError as ScheduleNotFoundError, 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_ServiceUnavailableError as ServiceUnavailableError, errors_SetDefaultSnapshotFailedError as SetDefaultSnapshotFailedError, errors_SigningError as SigningError, errors_SnapshotDirNotFoundError as SnapshotDirNotFoundError, errors_SnapshotLayerCreationFailedError as SnapshotLayerCreationFailedError, errors_SnapshotLoadTimeoutError as SnapshotLoadTimeoutError, errors_SnapshotNotFoundError as SnapshotNotFoundError, errors_SnapshotSetupFailedError as SnapshotSetupFailedError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_SourceImportConflictError as SourceImportConflictError, errors_SourceNotFoundError as SourceNotFoundError, errors_SourceUnauthorizedError as SourceUnauthorizedError, errors_StdIoError as StdIoError, errors_SubvolumeCreationFailedError as SubvolumeCreationFailedError, errors_SuspendFailedAndStopFailedError as SuspendFailedAndStopFailedError, errors_SuspendFailedAndStoppedError as SuspendFailedAndStoppedError, errors_SwapVmTapError as SwapVmTapError, errors_SyntaxErrorError as SyntaxErrorError, errors_TagNotFoundError as TagNotFoundError, errors_TimeoutLimitExceededError as TimeoutLimitExceededError, errors_TokenErrorError as TokenErrorError, errors_TotalVmLimitExceededError as TotalVmLimitExceededError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UffdTimeoutErrorError as UffdTimeoutErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnavailableError as UnavailableError, 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_VmAccessDeniedForMappingError as VmAccessDeniedForMappingError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmIsSuspendingError as VmIsSuspendingError, errors_VmLimitExceededError as VmLimitExceededError, 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_VmSetupFailedError as VmSetupFailedError, errors_VmSpawnProcessError as VmSpawnProcessError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WantedByEmptyError as WantedByEmptyError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
|
|
10122
|
-
export type { errors_FreestyleError as FreestyleError, errors_InvalidGitRepoSpecErrorPublic as InvalidGitRepoSpecErrorPublic, errors_InvalidObjectIdPublic as InvalidObjectIdPublic, errors_JavascriptLog as JavascriptLog, errors_LfsTransferAdapter as LfsTransferAdapter, errors_PostBootDiagnostics as PostBootDiagnostics, errors_PublicAmbiguous as PublicAmbiguous, errors_PublicBackupFailed as PublicBackupFailed, errors_PublicBadRequest as PublicBadRequest, errors_PublicBlobNotFound as PublicBlobNotFound, errors_PublicBranchAlreadyExists as PublicBranchAlreadyExists, errors_PublicBranchNotFound as PublicBranchNotFound, errors_PublicBuildFailed as PublicBuildFailed, errors_PublicCertificateProvisioningError as PublicCertificateProvisioningError, errors_PublicCloudstateAccessDenied as PublicCloudstateAccessDenied, errors_PublicCloudstateDatabaseError as PublicCloudstateDatabaseError, errors_PublicCloudstateInternalError as PublicCloudstateInternalError, errors_PublicCommitNotFound as PublicCommitNotFound, errors_PublicCommitNotInBranch as PublicCommitNotInBranch, errors_PublicConflictingParent as PublicConflictingParent, 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_PublicDeploymentAccessDenied as PublicDeploymentAccessDenied, errors_PublicDeploymentFailed as PublicDeploymentFailed, errors_PublicDeploymentLimitExceeded as PublicDeploymentLimitExceeded, errors_PublicDirectoryCreationFailed as PublicDirectoryCreationFailed, errors_PublicDomainAlreadyExists as PublicDomainAlreadyExists, errors_PublicDomainMappingError as PublicDomainMappingError, errors_PublicDomainOwnershipError as PublicDomainOwnershipError, errors_PublicDomainOwnershipNotVerified as PublicDomainOwnershipNotVerified, 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_PublicFailedInsertDomainMapping as PublicFailedInsertDomainMapping, 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_PublicFailedToProvisionCertificateForMapping as PublicFailedToProvisionCertificateForMapping, 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_PublicInvalidBase64Content as PublicInvalidBase64Content, errors_PublicInvalidDeploymentRequest as PublicInvalidDeploymentRequest, errors_PublicInvalidDomain as PublicInvalidDomain, errors_PublicInvalidDomains as PublicInvalidDomains, errors_PublicInvalidFileChange as PublicInvalidFileChange, errors_PublicInvalidFilePath as PublicInvalidFilePath, errors_PublicInvalidQuery as PublicInvalidQuery, errors_PublicInvalidRange as PublicInvalidRange, errors_PublicInvalidRevision as PublicInvalidRevision, errors_PublicInvalidVmId as PublicInvalidVmId, errors_PublicLimitExceeded as PublicLimitExceeded, 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_PublicLogsNotFound as PublicLogsNotFound, errors_PublicMetadataWriteFailed as PublicMetadataWriteFailed, errors_PublicNetworkPermissionsFailed as PublicNetworkPermissionsFailed, errors_PublicNoDomainOwnership as PublicNoDomainOwnership, errors_PublicNodeModulesDownloadFailed as PublicNodeModulesDownloadFailed, errors_PublicNodeModulesInstallFailed as PublicNodeModulesInstallFailed, errors_PublicNotFound as PublicNotFound, errors_PublicObservabilityAccessDenied as PublicObservabilityAccessDenied, errors_PublicObservabilityDatabaseError as PublicObservabilityDatabaseError, errors_PublicParentNotFound as PublicParentNotFound, 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_PublicRecordOwnershipError as PublicRecordOwnershipError, errors_PublicReferenceNotFound as PublicReferenceNotFound, errors_PublicRepoAlreadyExists as PublicRepoAlreadyExists, errors_PublicRepositoryNotFound as PublicRepositoryNotFound, errors_PublicResizeFailed as PublicResizeFailed, 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_PublicSnapshotNotFound as PublicSnapshotNotFound, errors_PublicSnapshotSetupFailed as PublicSnapshotSetupFailed, errors_PublicSnapshotVmBadRequest as PublicSnapshotVmBadRequest, errors_PublicSourceNotFound as PublicSourceNotFound, errors_PublicSourceUnauthorized as PublicSourceUnauthorized, errors_PublicTagNotFound as PublicTagNotFound, errors_PublicTimeoutLimitExceeded as PublicTimeoutLimitExceeded, 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_PublicVmAccessDeniedForMapping as PublicVmAccessDeniedForMapping, errors_PublicWebDeploymentBadRequest as PublicWebDeploymentBadRequest, errors_PublicWriteScriptFailed as PublicWriteScriptFailed, errors_ServiceLog as ServiceLog, errors_ServiceStateGroup as ServiceStateGroup, errors_SnapshotId as SnapshotId, errors_UnauthorizedErrorPublic as UnauthorizedErrorPublic, errors_VmNotFoundPublic as VmNotFoundPublic, errors_VmOperationDeniedDuringTransactionPublic as VmOperationDeniedDuringTransactionPublic, errors_VmSetupFailedPublic as VmSetupFailedPublic, errors_VmTransactionIdMismatchPublic as VmTransactionIdMismatchPublic };
|
|
10893
|
+
export { errors_AccessDeniedError as AccessDeniedError, errors_ActiveTransactionErrorError as ActiveTransactionErrorError, errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AmbiguousError as AmbiguousError, errors_BackupFailedError as BackupFailedError, errors_BadHeaderError as BadHeaderError, errors_BadKeyError as BadKeyError, errors_BadParseError as BadParseError, errors_BadRequestError as BadRequestError, errors_BadSignatureError as BadSignatureError, errors_BadTimestampError as BadTimestampError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchAlreadyExistsError as BranchAlreadyExistsError, errors_BranchNameEmptyError as BranchNameEmptyError, errors_BranchNotFoundError as BranchNotFoundError, 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_CommitEmptyQueryError as CommitEmptyQueryError, errors_CommitInvalidRegexError as CommitInvalidRegexError, errors_CommitNotFoundError as CommitNotFoundError, errors_CommitNotInBranchError as CommitNotInBranchError, errors_ConflictError as ConflictError, errors_ConflictingParentError as ConflictingParentError, 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_DeploymentAccessDeniedError as DeploymentAccessDeniedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentLimitExceededError as DeploymentLimitExceededError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DiffEmptyQueryError as DiffEmptyQueryError, errors_DiffInvalidPathPatternError as DiffInvalidPathPatternError, errors_DiffInvalidRegexError as DiffInvalidRegexError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerSnapshotFailedError as DockerSnapshotFailedError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipNotVerifiedError as DomainOwnershipNotVerifiedError, errors_DomainOwnershipVerificationFailedError as DomainOwnershipVerificationFailedError, errors_DownloadFailedError as DownloadFailedError, errors_DuplicateGroupNameError as DuplicateGroupNameError, errors_DuplicateUserNameError as DuplicateUserNameError, errors_EmptyQueryError as EmptyQueryError, 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_ExecuteLimitExceededError as ExecuteLimitExceededError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExpectedServiceError as ExpectedServiceError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedInsertDomainMappingError as FailedInsertDomainMappingError, 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_FailedToProvisionCertificateForMappingError as FailedToProvisionCertificateForMappingError, errors_FailedToSpawnUffdError as FailedToSpawnUffdError, errors_FailedToVerifyDomainError as FailedToVerifyDomainError, errors_FileNotFoundError as FileNotFoundError, errors_FilenameEmptyQueryError as FilenameEmptyQueryError, errors_FilenameInvalidPatternError as FilenameInvalidPatternError, 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_GetDefaultSnapshotFailedError as GetDefaultSnapshotFailedError, 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_GitRepoLimitExceededError as GitRepoLimitExceededError, 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_InvalidBase64ContentError as InvalidBase64ContentError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidError as InvalidError, errors_InvalidFileChangeError as InvalidFileChangeError, errors_InvalidFilePathError as InvalidFilePathError, errors_InvalidGitRepoSpecErrorError as InvalidGitRepoSpecErrorError, errors_InvalidObjectIdError as InvalidObjectIdError, errors_InvalidParametersError as InvalidParametersError, errors_InvalidPathPatternError as InvalidPathPatternError, errors_InvalidQueryError as InvalidQueryError, errors_InvalidRangeError as InvalidRangeError, errors_InvalidRegexError as InvalidRegexError, errors_InvalidRequestError as InvalidRequestError, errors_InvalidRevisionError as InvalidRevisionError, errors_InvalidServiceError as InvalidServiceError, errors_InvalidSignatureError as InvalidSignatureError, errors_InvalidSnapshotIdError as InvalidSnapshotIdError, errors_InvalidVmIdError as InvalidVmIdError, errors_KernelPanicError as KernelPanicError, errors_LimitExceededError as LimitExceededError, 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_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDefaultBranchError as NoDefaultBranchError, errors_NoDefaultSnapshotAvailableError as NoDefaultSnapshotAvailableError, 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_ParentNotFoundError as ParentNotFoundError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PartitionNotFoundError as PartitionNotFoundError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_PersistentVmsNotAllowedError as PersistentVmsNotAllowedError, errors_ProjectNotFoundError as ProjectNotFoundError, 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_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestoreFailedError as RestoreFailedError, errors_ResumedVmNonResponsiveError as ResumedVmNonResponsiveError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RootfsCopyErrorError as RootfsCopyErrorError, errors_RunNotFoundError as RunNotFoundError, errors_RuntimeErrorError as RuntimeErrorError, errors_ScheduleNotFoundError as ScheduleNotFoundError, 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_ServiceUnavailableError as ServiceUnavailableError, errors_SetDefaultSnapshotFailedError as SetDefaultSnapshotFailedError, errors_SigningError as SigningError, errors_SnapshotAlreadyDeletedError as SnapshotAlreadyDeletedError, errors_SnapshotDirNotFoundError as SnapshotDirNotFoundError, errors_SnapshotIsAccountDefaultError as SnapshotIsAccountDefaultError, errors_SnapshotLayerCreationFailedError as SnapshotLayerCreationFailedError, errors_SnapshotLimitExceededError as SnapshotLimitExceededError, errors_SnapshotLoadTimeoutError as SnapshotLoadTimeoutError, errors_SnapshotNotFoundError as SnapshotNotFoundError, errors_SnapshotSetupFailedError as SnapshotSetupFailedError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_SourceImportConflictError as SourceImportConflictError, errors_SourceNotFoundError as SourceNotFoundError, errors_SourceUnauthorizedError as SourceUnauthorizedError, errors_SubvolumeCreationFailedError as SubvolumeCreationFailedError, errors_SuspendFailedAndStopFailedError as SuspendFailedAndStopFailedError, errors_SuspendFailedAndStoppedError as SuspendFailedAndStoppedError, errors_SwapVmTapError as SwapVmTapError, errors_SyntaxErrorError as SyntaxErrorError, errors_TagNotFoundError as TagNotFoundError, errors_TimeoutLimitExceededError as TimeoutLimitExceededError, errors_TokenErrorError as TokenErrorError, errors_TotalVmLimitExceededError as TotalVmLimitExceededError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UffdTimeoutErrorError as UffdTimeoutErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnavailableError as UnavailableError, 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_VmAccessDeniedForMappingError as VmAccessDeniedForMappingError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmIsSuspendingError as VmIsSuspendingError, errors_VmLimitExceededError as VmLimitExceededError, 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_VmSetupFailedError as VmSetupFailedError, errors_VmSpawnProcessError as VmSpawnProcessError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WantedByEmptyError as WantedByEmptyError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
|
|
10894
|
+
export type { errors_FreestyleError as FreestyleError, errors_InvalidGitRepoSpecErrorPublic as InvalidGitRepoSpecErrorPublic, errors_InvalidObjectIdPublic as InvalidObjectIdPublic, errors_JavascriptLog as JavascriptLog, errors_LfsTransferAdapter as LfsTransferAdapter, errors_PostBootDiagnostics as PostBootDiagnostics, errors_PublicAmbiguous as PublicAmbiguous, errors_PublicBackupFailed as PublicBackupFailed, errors_PublicBadRequest as PublicBadRequest, errors_PublicBlobNotFound as PublicBlobNotFound, errors_PublicBranchAlreadyExists as PublicBranchAlreadyExists, errors_PublicBranchNotFound as PublicBranchNotFound, errors_PublicBuildFailed as PublicBuildFailed, errors_PublicCertificateProvisioningError as PublicCertificateProvisioningError, errors_PublicCloudstateAccessDenied as PublicCloudstateAccessDenied, errors_PublicCloudstateDatabaseError as PublicCloudstateDatabaseError, errors_PublicCloudstateInternalError as PublicCloudstateInternalError, errors_PublicCommitInvalidRegex as PublicCommitInvalidRegex, errors_PublicCommitNotFound as PublicCommitNotFound, errors_PublicCommitNotInBranch as PublicCommitNotInBranch, errors_PublicConflictingParent as PublicConflictingParent, 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_PublicDeploymentAccessDenied as PublicDeploymentAccessDenied, errors_PublicDeploymentFailed as PublicDeploymentFailed, errors_PublicDeploymentLimitExceeded as PublicDeploymentLimitExceeded, errors_PublicDiffInvalidPathPattern as PublicDiffInvalidPathPattern, errors_PublicDiffInvalidRegex as PublicDiffInvalidRegex, errors_PublicDirectoryCreationFailed as PublicDirectoryCreationFailed, errors_PublicDomainAlreadyExists as PublicDomainAlreadyExists, errors_PublicDomainMappingError as PublicDomainMappingError, errors_PublicDomainOwnershipError as PublicDomainOwnershipError, errors_PublicDomainOwnershipNotVerified as PublicDomainOwnershipNotVerified, 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_PublicFailedInsertDomainMapping as PublicFailedInsertDomainMapping, 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_PublicFailedToProvisionCertificateForMapping as PublicFailedToProvisionCertificateForMapping, errors_PublicFailedToVerifyDomain as PublicFailedToVerifyDomain, errors_PublicFileNotFound as PublicFileNotFound, errors_PublicFilenameInvalidPattern as PublicFilenameInvalidPattern, 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_PublicInvalidBase64Content as PublicInvalidBase64Content, errors_PublicInvalidDeploymentRequest as PublicInvalidDeploymentRequest, errors_PublicInvalidDomain as PublicInvalidDomain, errors_PublicInvalidDomains as PublicInvalidDomains, errors_PublicInvalidFileChange as PublicInvalidFileChange, errors_PublicInvalidFilePath as PublicInvalidFilePath, errors_PublicInvalidPathPattern as PublicInvalidPathPattern, errors_PublicInvalidQuery as PublicInvalidQuery, errors_PublicInvalidRange as PublicInvalidRange, errors_PublicInvalidRegex as PublicInvalidRegex, errors_PublicInvalidRevision as PublicInvalidRevision, errors_PublicInvalidVmId as PublicInvalidVmId, errors_PublicLimitExceeded as PublicLimitExceeded, 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_PublicLogsNotFound as PublicLogsNotFound, errors_PublicMetadataWriteFailed as PublicMetadataWriteFailed, errors_PublicNetworkPermissionsFailed as PublicNetworkPermissionsFailed, errors_PublicNoDomainOwnership as PublicNoDomainOwnership, errors_PublicNodeModulesDownloadFailed as PublicNodeModulesDownloadFailed, errors_PublicNodeModulesInstallFailed as PublicNodeModulesInstallFailed, errors_PublicNotFound as PublicNotFound, errors_PublicObservabilityAccessDenied as PublicObservabilityAccessDenied, errors_PublicObservabilityDatabaseError as PublicObservabilityDatabaseError, errors_PublicParentNotFound as PublicParentNotFound, 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_PublicRecordOwnershipError as PublicRecordOwnershipError, errors_PublicReferenceNotFound as PublicReferenceNotFound, errors_PublicRepoAlreadyExists as PublicRepoAlreadyExists, errors_PublicRepositoryNotFound as PublicRepositoryNotFound, errors_PublicResizeFailed as PublicResizeFailed, 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_PublicSnapshotAlreadyDeleted as PublicSnapshotAlreadyDeleted, errors_PublicSnapshotIsAccountDefault as PublicSnapshotIsAccountDefault, errors_PublicSnapshotLimitExceeded as PublicSnapshotLimitExceeded, errors_PublicSnapshotNotFound as PublicSnapshotNotFound, errors_PublicSnapshotSetupFailed as PublicSnapshotSetupFailed, errors_PublicSnapshotVmBadRequest as PublicSnapshotVmBadRequest, errors_PublicSourceNotFound as PublicSourceNotFound, errors_PublicSourceUnauthorized as PublicSourceUnauthorized, errors_PublicTagNotFound as PublicTagNotFound, errors_PublicTimeoutLimitExceeded as PublicTimeoutLimitExceeded, errors_PublicTokenError as PublicTokenError, errors_PublicTotalVmLimitExceeded as PublicTotalVmLimitExceeded, 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_PublicVmAccessDeniedForMapping as PublicVmAccessDeniedForMapping, errors_PublicVmLimitExceeded as PublicVmLimitExceeded, errors_PublicWebDeploymentBadRequest as PublicWebDeploymentBadRequest, errors_PublicWriteScriptFailed as PublicWriteScriptFailed, errors_ServiceLog as ServiceLog, errors_ServiceStateGroup as ServiceStateGroup, errors_SnapshotId as SnapshotId, errors_UnauthorizedErrorPublic as UnauthorizedErrorPublic, errors_VmId as VmId, errors_VmNotFoundPublic as VmNotFoundPublic, errors_VmOperationDeniedDuringTransactionPublic as VmOperationDeniedDuringTransactionPublic, errors_VmSetupFailedPublic as VmSetupFailedPublic, errors_VmTransactionIdMismatchPublic as VmTransactionIdMismatchPublic };
|
|
10123
10895
|
}
|
|
10124
10896
|
|
|
10125
10897
|
/**
|
|
@@ -10228,6 +11000,151 @@ declare class DomainsNamespace {
|
|
|
10228
11000
|
}): Promise<ResponseGetDomainsV1Domains200>;
|
|
10229
11001
|
}
|
|
10230
11002
|
|
|
11003
|
+
/**
|
|
11004
|
+
* A single matching line within a file, including surrounding context.
|
|
11005
|
+
*/
|
|
11006
|
+
interface GitSearchLineMatch {
|
|
11007
|
+
/** 1-based line number of the match. */
|
|
11008
|
+
lineNumber: number;
|
|
11009
|
+
/** The full text of the matching line. */
|
|
11010
|
+
line: string;
|
|
11011
|
+
/** 0-based column offset of the first match in the line. */
|
|
11012
|
+
startColumn: number;
|
|
11013
|
+
/** 0-based column offset of the end of the first match in the line. */
|
|
11014
|
+
endColumn: number;
|
|
11015
|
+
/** Context lines before the match. */
|
|
11016
|
+
contextBefore: string[];
|
|
11017
|
+
/** Context lines after the match. */
|
|
11018
|
+
contextAfter: string[];
|
|
11019
|
+
}
|
|
11020
|
+
/**
|
|
11021
|
+
* Search results for a single file.
|
|
11022
|
+
*/
|
|
11023
|
+
interface GitSearchFileResult {
|
|
11024
|
+
/** The file path relative to the repository root. */
|
|
11025
|
+
path: string;
|
|
11026
|
+
/** The file extension (e.g. "rs", "ts"), if any. */
|
|
11027
|
+
extension: string | null;
|
|
11028
|
+
/** The file size in bytes. */
|
|
11029
|
+
size: number;
|
|
11030
|
+
/** The matches found in this file. */
|
|
11031
|
+
matches: GitSearchLineMatch[];
|
|
11032
|
+
}
|
|
11033
|
+
/**
|
|
11034
|
+
* Full-text search results across a repository.
|
|
11035
|
+
*/
|
|
11036
|
+
interface GitSearchResult {
|
|
11037
|
+
/** Total number of files with matches (before pagination). */
|
|
11038
|
+
totalFiles: number;
|
|
11039
|
+
/** Total number of individual line matches across all files (before pagination). */
|
|
11040
|
+
totalMatches: number;
|
|
11041
|
+
/** Whether there are more results beyond the current page. */
|
|
11042
|
+
hasMore: boolean;
|
|
11043
|
+
/** The matching files with their line matches. */
|
|
11044
|
+
files: GitSearchFileResult[];
|
|
11045
|
+
}
|
|
11046
|
+
/**
|
|
11047
|
+
* A file entry returned from filename search.
|
|
11048
|
+
*/
|
|
11049
|
+
interface GitFilenameEntry {
|
|
11050
|
+
/** The full file path relative to the repository root. */
|
|
11051
|
+
path: string;
|
|
11052
|
+
/** The file extension (e.g. "rs", "ts"), if any. */
|
|
11053
|
+
extension: string | null;
|
|
11054
|
+
/** The file size in bytes. */
|
|
11055
|
+
size: number;
|
|
11056
|
+
}
|
|
11057
|
+
/**
|
|
11058
|
+
* Filename search results.
|
|
11059
|
+
*/
|
|
11060
|
+
interface GitFilenameSearchResult {
|
|
11061
|
+
/** Total number of matching files. */
|
|
11062
|
+
totalFiles: number;
|
|
11063
|
+
/** Whether there are more results beyond those returned. */
|
|
11064
|
+
hasMore: boolean;
|
|
11065
|
+
/** The matching file entries. */
|
|
11066
|
+
files: GitFilenameEntry[];
|
|
11067
|
+
}
|
|
11068
|
+
/**
|
|
11069
|
+
* A commit entry returned from commit message search.
|
|
11070
|
+
*/
|
|
11071
|
+
interface GitCommitSearchEntry {
|
|
11072
|
+
/** The commit SHA. */
|
|
11073
|
+
sha: string;
|
|
11074
|
+
/** The commit message (first line / summary). */
|
|
11075
|
+
message: string;
|
|
11076
|
+
/** The full commit message. */
|
|
11077
|
+
fullMessage: string;
|
|
11078
|
+
/** The author name. */
|
|
11079
|
+
authorName: string;
|
|
11080
|
+
/** The author email. */
|
|
11081
|
+
authorEmail: string;
|
|
11082
|
+
/** The commit timestamp (ISO 8601). */
|
|
11083
|
+
timestamp: string;
|
|
11084
|
+
}
|
|
11085
|
+
/**
|
|
11086
|
+
* Commit message search results.
|
|
11087
|
+
*/
|
|
11088
|
+
interface GitCommitSearchResult {
|
|
11089
|
+
/** Total number of matching commits found. */
|
|
11090
|
+
totalCommits: number;
|
|
11091
|
+
/** Whether there are more results beyond those returned. */
|
|
11092
|
+
hasMore: boolean;
|
|
11093
|
+
/** The matching commits. */
|
|
11094
|
+
commits: GitCommitSearchEntry[];
|
|
11095
|
+
}
|
|
11096
|
+
/**
|
|
11097
|
+
* A line that was added or changed in a diff that matched the search query.
|
|
11098
|
+
*/
|
|
11099
|
+
interface GitDiffLineMatch {
|
|
11100
|
+
/** The matched line content. */
|
|
11101
|
+
line: string;
|
|
11102
|
+
/** 1-based line number in the new file (for additions) or old file (for deletions). */
|
|
11103
|
+
lineNumber: number;
|
|
11104
|
+
/** 0-based byte offset of the match start within the line. */
|
|
11105
|
+
startColumn: number;
|
|
11106
|
+
/** 0-based byte offset of the match end within the line. */
|
|
11107
|
+
endColumn: number;
|
|
11108
|
+
/** Whether this was an added line (true) or a deleted line (false). */
|
|
11109
|
+
isAddition: boolean;
|
|
11110
|
+
}
|
|
11111
|
+
/**
|
|
11112
|
+
* A file within a commit that contained matching changed content.
|
|
11113
|
+
*/
|
|
11114
|
+
interface GitDiffFileMatch {
|
|
11115
|
+
/** The file path relative to the repository root. */
|
|
11116
|
+
path: string;
|
|
11117
|
+
/** The matching lines in the diff for this file. */
|
|
11118
|
+
matches: GitDiffLineMatch[];
|
|
11119
|
+
}
|
|
11120
|
+
/**
|
|
11121
|
+
* A commit that contained matching diff content.
|
|
11122
|
+
*/
|
|
11123
|
+
interface GitDiffSearchCommit {
|
|
11124
|
+
/** The commit SHA. */
|
|
11125
|
+
sha: string;
|
|
11126
|
+
/** The commit message summary (first line). */
|
|
11127
|
+
message: string;
|
|
11128
|
+
/** The author name. */
|
|
11129
|
+
authorName: string;
|
|
11130
|
+
/** The author email. */
|
|
11131
|
+
authorEmail: string;
|
|
11132
|
+
/** The commit timestamp (ISO 8601). */
|
|
11133
|
+
timestamp: string;
|
|
11134
|
+
/** Files in this commit with matching changed content. */
|
|
11135
|
+
files: GitDiffFileMatch[];
|
|
11136
|
+
}
|
|
11137
|
+
/**
|
|
11138
|
+
* Diff content search results.
|
|
11139
|
+
*/
|
|
11140
|
+
interface GitDiffSearchResult {
|
|
11141
|
+
/** Total number of commits with matching changes (before pagination). */
|
|
11142
|
+
totalCommits: number;
|
|
11143
|
+
/** Whether there are more results beyond the current page. */
|
|
11144
|
+
hasMore: boolean;
|
|
11145
|
+
/** The matching commits with their file-level diff matches. */
|
|
11146
|
+
commits: GitDiffSearchCommit[];
|
|
11147
|
+
}
|
|
10231
11148
|
/**
|
|
10232
11149
|
* Namespace for managing branches within a Git repository.
|
|
10233
11150
|
*
|
|
@@ -10975,6 +11892,159 @@ declare class GitRepo {
|
|
|
10975
11892
|
base: string;
|
|
10976
11893
|
head: string;
|
|
10977
11894
|
}): Promise<ResponseGetGitV1RepoRepoCompare200>;
|
|
11895
|
+
/**
|
|
11896
|
+
* Full-text search across all files in this repository.
|
|
11897
|
+
*
|
|
11898
|
+
* Walks the entire tree at the given revision and searches each text file
|
|
11899
|
+
* for the query string, returning matching lines with context.
|
|
11900
|
+
*
|
|
11901
|
+
* @param query - The text to search for in file contents
|
|
11902
|
+
* @param rev - The revision (branch, tag, or commit SHA) to search. Defaults to HEAD.
|
|
11903
|
+
* @param pathPattern - Optional glob pattern to filter file paths (e.g. "*.ts", "src/**")
|
|
11904
|
+
* @param maxResults - Maximum number of matching files to return (default 100, max 1000)
|
|
11905
|
+
* @param caseSensitive - Whether to perform a case-sensitive search (default false)
|
|
11906
|
+
*
|
|
11907
|
+
* @example
|
|
11908
|
+
* ```ts
|
|
11909
|
+
* // Search for a string across the whole repo
|
|
11910
|
+
* const results = await repo.search({ query: "TODO" });
|
|
11911
|
+
* console.log(`Found ${results.totalMatches} matches in ${results.totalFiles} files`);
|
|
11912
|
+
*
|
|
11913
|
+
* // Search only TypeScript files on a specific branch
|
|
11914
|
+
* const results = await repo.search({
|
|
11915
|
+
* query: "handleRequest",
|
|
11916
|
+
* rev: "main",
|
|
11917
|
+
* pathPattern: "**\/*.ts",
|
|
11918
|
+
* });
|
|
11919
|
+
*
|
|
11920
|
+
* // Case-sensitive search
|
|
11921
|
+
* const results = await repo.search({
|
|
11922
|
+
* query: "MyClass",
|
|
11923
|
+
* caseSensitive: true,
|
|
11924
|
+
* });
|
|
11925
|
+
*
|
|
11926
|
+
* for (const file of results.files) {
|
|
11927
|
+
* console.log(`${file.path}:`);
|
|
11928
|
+
* for (const match of file.matches) {
|
|
11929
|
+
* console.log(` L${match.lineNumber}: ${match.line}`);
|
|
11930
|
+
* }
|
|
11931
|
+
* }
|
|
11932
|
+
* ```
|
|
11933
|
+
*/
|
|
11934
|
+
search({ query, rev, pathPattern, excludePattern, maxResults, caseSensitive, isRegex, wholeWord, offset, }: {
|
|
11935
|
+
/** The search query string. */
|
|
11936
|
+
query: string;
|
|
11937
|
+
/** Git ref to search (branch, tag, or commit SHA). Defaults to HEAD. */
|
|
11938
|
+
rev?: string;
|
|
11939
|
+
/** Glob pattern to filter file paths (e.g. "*.rs", "src/**"). */
|
|
11940
|
+
pathPattern?: string;
|
|
11941
|
+
/** Glob pattern to exclude file paths (e.g. "*.lock", "node_modules/**"). */
|
|
11942
|
+
excludePattern?: string;
|
|
11943
|
+
/** Maximum number of file results to return (default 50). */
|
|
11944
|
+
maxResults?: number;
|
|
11945
|
+
/** Whether the search is case-sensitive (default false). */
|
|
11946
|
+
caseSensitive?: boolean;
|
|
11947
|
+
/** Treat the query as a regular expression. */
|
|
11948
|
+
isRegex?: boolean;
|
|
11949
|
+
/** Match whole words only. */
|
|
11950
|
+
wholeWord?: boolean;
|
|
11951
|
+
/** Offset for pagination (number of file results to skip). */
|
|
11952
|
+
offset?: number;
|
|
11953
|
+
}): Promise<GitSearchResult>;
|
|
11954
|
+
/**
|
|
11955
|
+
* Search for files by name or path pattern.
|
|
11956
|
+
*
|
|
11957
|
+
* @example
|
|
11958
|
+
* ```ts
|
|
11959
|
+
* const result = await repo.searchFiles({ query: "main" });
|
|
11960
|
+
* for (const file of result.files) {
|
|
11961
|
+
* console.log(`${file.path} (${file.size} bytes)`);
|
|
11962
|
+
* }
|
|
11963
|
+
* ```
|
|
11964
|
+
*/
|
|
11965
|
+
searchFiles({ query, rev, pathPattern, excludePattern, maxResults, caseSensitive, isRegex, offset, }: {
|
|
11966
|
+
/** The filename/path query string. */
|
|
11967
|
+
query: string;
|
|
11968
|
+
/** Git ref to search (branch, tag, or commit SHA). Defaults to HEAD. */
|
|
11969
|
+
rev?: string;
|
|
11970
|
+
/** Glob pattern to filter file paths. */
|
|
11971
|
+
pathPattern?: string;
|
|
11972
|
+
/** Glob pattern to exclude file paths. */
|
|
11973
|
+
excludePattern?: string;
|
|
11974
|
+
/** Maximum number of results to return (default 100). */
|
|
11975
|
+
maxResults?: number;
|
|
11976
|
+
/** Whether the search is case-sensitive (default false). */
|
|
11977
|
+
caseSensitive?: boolean;
|
|
11978
|
+
/** Treat the query as a regular expression. */
|
|
11979
|
+
isRegex?: boolean;
|
|
11980
|
+
/** Offset for pagination. */
|
|
11981
|
+
offset?: number;
|
|
11982
|
+
}): Promise<GitFilenameSearchResult>;
|
|
11983
|
+
/**
|
|
11984
|
+
* Search commit messages.
|
|
11985
|
+
*
|
|
11986
|
+
* @example
|
|
11987
|
+
* ```ts
|
|
11988
|
+
* const result = await repo.searchCommits({ query: "fix bug" });
|
|
11989
|
+
* for (const commit of result.commits) {
|
|
11990
|
+
* console.log(`${commit.sha.slice(0, 7)} ${commit.message}`);
|
|
11991
|
+
* }
|
|
11992
|
+
* ```
|
|
11993
|
+
*/
|
|
11994
|
+
searchCommits({ query, rev, maxResults, caseSensitive, isRegex, offset, }: {
|
|
11995
|
+
/** The commit message query string. */
|
|
11996
|
+
query: string;
|
|
11997
|
+
/** Git ref to start searching from (default HEAD). */
|
|
11998
|
+
rev?: string;
|
|
11999
|
+
/** Maximum number of results to return (default 50). */
|
|
12000
|
+
maxResults?: number;
|
|
12001
|
+
/** Whether the search is case-sensitive (default false). */
|
|
12002
|
+
caseSensitive?: boolean;
|
|
12003
|
+
/** Treat the query as a regular expression. */
|
|
12004
|
+
isRegex?: boolean;
|
|
12005
|
+
/** Offset for pagination. */
|
|
12006
|
+
offset?: number;
|
|
12007
|
+
}): Promise<GitCommitSearchResult>;
|
|
12008
|
+
/**
|
|
12009
|
+
* Search file content changes across commits (git log -S/-G equivalent).
|
|
12010
|
+
*
|
|
12011
|
+
* Returns commits where matching content was added or removed, along with
|
|
12012
|
+
* the specific changed lines and which files they were in.
|
|
12013
|
+
*
|
|
12014
|
+
* @example
|
|
12015
|
+
* ```ts
|
|
12016
|
+
* const result = await repo.searchDiffs({ query: "TODO" });
|
|
12017
|
+
* for (const commit of result.commits) {
|
|
12018
|
+
* console.log(`${commit.sha.slice(0, 7)} ${commit.message}`);
|
|
12019
|
+
* for (const file of commit.files) {
|
|
12020
|
+
* for (const match of file.matches) {
|
|
12021
|
+
* const prefix = match.isAddition ? "+" : "-";
|
|
12022
|
+
* console.log(` ${file.path}:${match.lineNumber} ${prefix} ${match.line}`);
|
|
12023
|
+
* }
|
|
12024
|
+
* }
|
|
12025
|
+
* }
|
|
12026
|
+
* ```
|
|
12027
|
+
*/
|
|
12028
|
+
searchDiffs({ query, rev, pathPattern, excludePattern, maxResults, caseSensitive, isRegex, wholeWord, offset, }: {
|
|
12029
|
+
/** The search query string. */
|
|
12030
|
+
query: string;
|
|
12031
|
+
/** Git ref to start searching from (default HEAD). */
|
|
12032
|
+
rev?: string;
|
|
12033
|
+
/** Glob pattern to filter file paths (e.g. "*.rs", "src/**"). */
|
|
12034
|
+
pathPattern?: string;
|
|
12035
|
+
/** Glob pattern to exclude file paths (e.g. "*.lock", "node_modules/**"). */
|
|
12036
|
+
excludePattern?: string;
|
|
12037
|
+
/** Maximum number of commit results to return (default 100). */
|
|
12038
|
+
maxResults?: number;
|
|
12039
|
+
/** Whether the search is case-sensitive (default false). */
|
|
12040
|
+
caseSensitive?: boolean;
|
|
12041
|
+
/** Treat the query as a regular expression. */
|
|
12042
|
+
isRegex?: boolean;
|
|
12043
|
+
/** Match whole words only. */
|
|
12044
|
+
wholeWord?: boolean;
|
|
12045
|
+
/** Offset for pagination (number of commit results to skip). */
|
|
12046
|
+
offset?: number;
|
|
12047
|
+
}): Promise<GitDiffSearchResult>;
|
|
10978
12048
|
}
|
|
10979
12049
|
/**
|
|
10980
12050
|
* Namespace for managing Git repositories.
|
|
@@ -11923,8 +12993,8 @@ interface CreateSnapshotRequest {
|
|
|
11923
12993
|
aptDeps?: string[] | null;
|
|
11924
12994
|
/**
|
|
11925
12995
|
* When true, bypasses the snapshot cache and always creates a new snapshot.
|
|
11926
|
-
* The new snapshot still stores the template hash, so it becomes the updated
|
|
11927
|
-
*
|
|
12996
|
+
* The new snapshot still stores the template hash, so it becomes the updated cache entry
|
|
12997
|
+
* for future requests that do not set skip_cache.
|
|
11928
12998
|
*/
|
|
11929
12999
|
skipCache?: boolean | null;
|
|
11930
13000
|
};
|
|
@@ -12313,6 +13383,16 @@ type SystemdServiceInput = Omit<RawSystemdService, "mode" | "exec"> & {
|
|
|
12313
13383
|
type VmWaitForConfig = Omit<SystemdServiceInput, "mode" | "exec" | "bash" | "deleteAfterSuccess"> & {
|
|
12314
13384
|
intervalSeconds?: number;
|
|
12315
13385
|
};
|
|
13386
|
+
type BackgroundRequestLogger = (message: string) => void;
|
|
13387
|
+
type SnapshotCreateOptions<T extends Record<string, VmWithLike> = {}> = Omit<PostV1VmsSnapshotsRequestBody, "template"> & {
|
|
13388
|
+
template?: VmTemplate<T> | PostV1VmsSnapshotsRequestBody["template"];
|
|
13389
|
+
spec?: VmSpec<T>;
|
|
13390
|
+
snapshot?: VmSpec<T>;
|
|
13391
|
+
logger?: BackgroundRequestLogger;
|
|
13392
|
+
};
|
|
13393
|
+
type SnapshotDeleteResponse = {
|
|
13394
|
+
snapshotId: string;
|
|
13395
|
+
};
|
|
12316
13396
|
/**
|
|
12317
13397
|
* Terminal management operations for a VM.
|
|
12318
13398
|
*/
|
|
@@ -12446,9 +13526,7 @@ declare class Vm {
|
|
|
12446
13526
|
ref({ vmId }: {
|
|
12447
13527
|
vmId: string;
|
|
12448
13528
|
}): Vm;
|
|
12449
|
-
delete(
|
|
12450
|
-
vmId: string;
|
|
12451
|
-
}): Promise<ResponseDeleteV1VmsVmId200>;
|
|
13529
|
+
delete(): Promise<ResponseDeleteV1VmsVmId200>;
|
|
12452
13530
|
}
|
|
12453
13531
|
/**
|
|
12454
13532
|
* Git configuration with optional config (defaults to {})
|
|
@@ -12551,6 +13629,7 @@ declare class VmsNamespace {
|
|
|
12551
13629
|
template?: VmTemplate<T>;
|
|
12552
13630
|
spec?: VmSpec<T>;
|
|
12553
13631
|
snapshot?: VmSpec<T>;
|
|
13632
|
+
logger?: BackgroundRequestLogger;
|
|
12554
13633
|
}): Promise<Omit<ResponsePostV1Vms200, "consoleUrl"> & {
|
|
12555
13634
|
vmId: string;
|
|
12556
13635
|
vm: Vm & {
|
|
@@ -12594,11 +13673,11 @@ declare class VmsNamespace {
|
|
|
12594
13673
|
declare class VmSnapshotsNamespace {
|
|
12595
13674
|
private apiClient;
|
|
12596
13675
|
constructor(apiClient: ApiClient);
|
|
12597
|
-
ensure<T extends Record<string, VmWithLike>>(options:
|
|
12598
|
-
|
|
12599
|
-
|
|
12600
|
-
|
|
12601
|
-
}): Promise<
|
|
13676
|
+
ensure<T extends Record<string, VmWithLike>>(options: SnapshotCreateOptions<T>): Promise<ResponsePostV1VmsSnapshots200>;
|
|
13677
|
+
create<T extends Record<string, VmWithLike>>(options: SnapshotCreateOptions<T>): Promise<ResponsePostV1VmsSnapshots200>;
|
|
13678
|
+
delete({ snapshotId }: {
|
|
13679
|
+
snapshotId: string;
|
|
13680
|
+
}): Promise<SnapshotDeleteResponse>;
|
|
12602
13681
|
}
|
|
12603
13682
|
type CreateVmOptions = Omit<PostV1VmsRequestBody, "template" | "systemd" | "git"> & {
|
|
12604
13683
|
rootfsSizeGb?: number | null;
|
|
@@ -12615,6 +13694,7 @@ type CreateVmOptions = Omit<PostV1VmsRequestBody, "template" | "systemd" | "git"
|
|
|
12615
13694
|
git?: null | GitOptions;
|
|
12616
13695
|
discriminator?: CreateSnapshotRequest["template"]["discriminator"];
|
|
12617
13696
|
skipCache?: CreateSnapshotRequest["template"]["skipCache"];
|
|
13697
|
+
logger?: BackgroundRequestLogger;
|
|
12618
13698
|
};
|
|
12619
13699
|
|
|
12620
13700
|
type CronSchedule = {
|
|
@@ -12763,4 +13843,4 @@ declare class Freestyle {
|
|
|
12763
13843
|
declare const freestyle: Freestyle;
|
|
12764
13844
|
|
|
12765
13845
|
export { CronNamespace, Deployment, errors as Errors, FileSystem, Freestyle, GitRepo, Identity, requests as Requests, responses as Responses, Systemd, SystemdService, Vm, VmBaseImage, VmBuilder, VmService, VmSpec, VmTemplate, VmWith, VmWithInstance, debugCreateRequests, freestyle, readFiles };
|
|
12766
|
-
export type { CreateVmOptions, CronSchedule, FreestyleOptions, SystemdServiceInput, VmWaitForConfig, VmWithDefaultFieldRecord };
|
|
13846
|
+
export type { BackgroundRequestLogger, CreateVmOptions, CronSchedule, FreestyleOptions, GitCommitSearchEntry, GitCommitSearchResult, GitDiffFileMatch, GitDiffLineMatch, GitDiffSearchCommit, GitDiffSearchResult, GitFilenameEntry, GitFilenameSearchResult, GitSearchFileResult, GitSearchLineMatch, GitSearchResult, SystemdServiceInput, VmWaitForConfig, VmWithDefaultFieldRecord };
|