freestyle-sandboxes 0.1.43 → 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 +1360 -1014
- package/index.d.cts +1915 -847
- package/index.d.mts +1915 -847
- package/index.mjs +1360 -1014
- 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;
|
|
@@ -6707,11 +7272,9 @@ declare class ApiClient {
|
|
|
6707
7272
|
private requestRaw;
|
|
6708
7273
|
private request;
|
|
6709
7274
|
fetch(url: string, options?: RequestInit): Promise<Response>;
|
|
6710
|
-
resolveUrl(path: string, params?: Record<string, string>, query?: Record<string, any>): string;
|
|
6711
7275
|
getRaw<P extends keyof GetPathMap>(path: P, options?: GetPathMap[P]["options"]): Promise<Response>;
|
|
6712
7276
|
get<P extends keyof GetPathMap>(path: P, ...args: GetPathMap[P]["options"] extends undefined ? [options?: GetPathMap[P]["options"]] : [options: GetPathMap[P]["options"]]): Promise<GetPathMap[P]["response"]>;
|
|
6713
7277
|
post<P extends keyof PostPathMap>(path: P, ...args: PostPathMap[P]["options"] extends undefined ? [options?: PostPathMap[P]["options"]] : [options: PostPathMap[P]["options"]]): Promise<PostPathMap[P]["response"]>;
|
|
6714
|
-
postRaw<P extends keyof PostPathMap>(path: P, ...args: PostPathMap[P]["options"] extends undefined ? [options?: PostPathMap[P]["options"]] : [options: PostPathMap[P]["options"]]): Promise<Response>;
|
|
6715
7278
|
put<P extends keyof PutPathMap>(path: P, ...args: PutPathMap[P]["options"] extends undefined ? [options?: PutPathMap[P]["options"]] : [options: PutPathMap[P]["options"]]): Promise<PutPathMap[P]["response"]>;
|
|
6716
7279
|
delete<P extends keyof DeletePathMap>(path: P, ...args: DeletePathMap[P]["options"] extends undefined ? [options?: DeletePathMap[P]["options"]] : [options: DeletePathMap[P]["options"]]): Promise<DeletePathMap[P]["response"]>;
|
|
6717
7280
|
patch<P extends keyof PatchPathMap>(path: P, ...args: PatchPathMap[P]["options"] extends undefined ? [options?: PatchPathMap[P]["options"]] : [options: PatchPathMap[P]["options"]]): Promise<PatchPathMap[P]["response"]>;
|
|
@@ -6764,11 +7327,60 @@ declare class GitErrorError extends Error {
|
|
|
6764
7327
|
static readonly description: string;
|
|
6765
7328
|
constructor(body: unknown & FreestyleError);
|
|
6766
7329
|
}
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
|
|
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
|
+
}
|
|
6772
7384
|
interface PublicSnapshotNotFound {
|
|
6773
7385
|
snapshotId: SnapshotId;
|
|
6774
7386
|
[k: string]: unknown;
|
|
@@ -6871,13 +7483,6 @@ declare class VmAccessDeniedError extends Error {
|
|
|
6871
7483
|
static readonly description: string;
|
|
6872
7484
|
constructor(body: unknown & FreestyleError);
|
|
6873
7485
|
}
|
|
6874
|
-
declare class StdIoError extends Error {
|
|
6875
|
-
body: unknown & FreestyleError;
|
|
6876
|
-
static readonly code: string;
|
|
6877
|
-
static readonly statusCode: number;
|
|
6878
|
-
static readonly description: string;
|
|
6879
|
-
constructor(body: unknown & FreestyleError);
|
|
6880
|
-
}
|
|
6881
7486
|
declare class FailedToSpawnUffdError extends Error {
|
|
6882
7487
|
body: unknown & FreestyleError;
|
|
6883
7488
|
static readonly code: string;
|
|
@@ -6899,37 +7504,70 @@ declare class VmSubnetNotFoundError extends Error {
|
|
|
6899
7504
|
static readonly description: string;
|
|
6900
7505
|
constructor(body: unknown & FreestyleError);
|
|
6901
7506
|
}
|
|
6902
|
-
interface
|
|
6903
|
-
|
|
6904
|
-
|
|
7507
|
+
interface PublicSnapshotSetupFailed {
|
|
7508
|
+
snapshotId: SnapshotId;
|
|
7509
|
+
failedReason: string;
|
|
6905
7510
|
[k: string]: unknown;
|
|
6906
7511
|
}
|
|
6907
|
-
declare class
|
|
6908
|
-
body:
|
|
7512
|
+
declare class SnapshotSetupFailedError extends Error {
|
|
7513
|
+
body: PublicSnapshotSetupFailed & FreestyleError;
|
|
6909
7514
|
static readonly code: string;
|
|
6910
7515
|
static readonly statusCode: number;
|
|
6911
7516
|
static readonly description: string;
|
|
6912
|
-
constructor(body:
|
|
7517
|
+
constructor(body: PublicSnapshotSetupFailed & FreestyleError);
|
|
6913
7518
|
}
|
|
6914
|
-
interface
|
|
6915
|
-
|
|
6916
|
-
expectedTransactionId: string;
|
|
6917
|
-
providedTransactionId: string;
|
|
7519
|
+
interface PublicSnapshotVmBadRequest {
|
|
7520
|
+
message: string;
|
|
6918
7521
|
[k: string]: unknown;
|
|
6919
7522
|
}
|
|
6920
|
-
declare class
|
|
6921
|
-
body:
|
|
7523
|
+
declare class SnapshotVmBadRequestError extends Error {
|
|
7524
|
+
body: PublicSnapshotVmBadRequest & FreestyleError;
|
|
6922
7525
|
static readonly code: string;
|
|
6923
7526
|
static readonly statusCode: number;
|
|
6924
7527
|
static readonly description: string;
|
|
6925
|
-
constructor(body:
|
|
7528
|
+
constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
|
|
6926
7529
|
}
|
|
6927
|
-
|
|
6928
|
-
|
|
7530
|
+
interface PublicSnapshotIsAccountDefault {
|
|
7531
|
+
snapshotId: SnapshotId;
|
|
7532
|
+
[k: string]: unknown;
|
|
7533
|
+
}
|
|
7534
|
+
declare class SnapshotIsAccountDefaultError extends Error {
|
|
7535
|
+
body: PublicSnapshotIsAccountDefault & FreestyleError;
|
|
6929
7536
|
static readonly code: string;
|
|
6930
7537
|
static readonly statusCode: number;
|
|
6931
7538
|
static readonly description: string;
|
|
6932
|
-
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);
|
|
6933
7571
|
}
|
|
6934
7572
|
declare class VmNotFoundInFsError extends Error {
|
|
6935
7573
|
body: unknown & FreestyleError;
|
|
@@ -6946,7 +7584,7 @@ declare class VmNotRunningError extends Error {
|
|
|
6946
7584
|
constructor(body: unknown & FreestyleError);
|
|
6947
7585
|
}
|
|
6948
7586
|
interface VmNotFoundPublic {
|
|
6949
|
-
vmId:
|
|
7587
|
+
vmId: VmId;
|
|
6950
7588
|
[k: string]: unknown;
|
|
6951
7589
|
}
|
|
6952
7590
|
declare class VmNotFoundError extends Error {
|
|
@@ -6957,7 +7595,7 @@ declare class VmNotFoundError extends Error {
|
|
|
6957
7595
|
constructor(body: VmNotFoundPublic & FreestyleError);
|
|
6958
7596
|
}
|
|
6959
7597
|
interface PublicInternalForkVmNotFound {
|
|
6960
|
-
forkVmId:
|
|
7598
|
+
forkVmId: VmId;
|
|
6961
7599
|
[k: string]: unknown;
|
|
6962
7600
|
}
|
|
6963
7601
|
declare class InternalForkVmNotFoundError extends Error {
|
|
@@ -6979,7 +7617,7 @@ declare class BadRequestError extends Error {
|
|
|
6979
7617
|
constructor(body: PublicBadRequest & FreestyleError);
|
|
6980
7618
|
}
|
|
6981
7619
|
interface PublicInternalVmNotFound {
|
|
6982
|
-
vmId:
|
|
7620
|
+
vmId: VmId;
|
|
6983
7621
|
[k: string]: unknown;
|
|
6984
7622
|
}
|
|
6985
7623
|
declare class InternalVmNotFoundError extends Error {
|
|
@@ -6989,232 +7627,197 @@ declare class InternalVmNotFoundError extends Error {
|
|
|
6989
7627
|
static readonly description: string;
|
|
6990
7628
|
constructor(body: PublicInternalVmNotFound & FreestyleError);
|
|
6991
7629
|
}
|
|
6992
|
-
declare class
|
|
7630
|
+
declare class NoDefaultSnapshotAvailableError extends Error {
|
|
6993
7631
|
body: unknown & FreestyleError;
|
|
6994
7632
|
static readonly code: string;
|
|
6995
7633
|
static readonly statusCode: number;
|
|
6996
7634
|
static readonly description: string;
|
|
6997
7635
|
constructor(body: unknown & FreestyleError);
|
|
6998
7636
|
}
|
|
6999
|
-
|
|
7000
|
-
userName: string;
|
|
7001
|
-
[k: string]: unknown;
|
|
7002
|
-
}
|
|
7003
|
-
declare class UserAlreadyExistsError extends Error {
|
|
7004
|
-
body: PublicUserAlreadyExists & FreestyleError;
|
|
7005
|
-
static readonly code: string;
|
|
7006
|
-
static readonly statusCode: number;
|
|
7007
|
-
static readonly description: string;
|
|
7008
|
-
constructor(body: PublicUserAlreadyExists & FreestyleError);
|
|
7009
|
-
}
|
|
7010
|
-
declare class ValidationErrorError extends Error {
|
|
7637
|
+
declare class DockerSnapshotFailedError extends Error {
|
|
7011
7638
|
body: unknown & FreestyleError;
|
|
7012
7639
|
static readonly code: string;
|
|
7013
7640
|
static readonly statusCode: number;
|
|
7014
7641
|
static readonly description: string;
|
|
7015
7642
|
constructor(body: unknown & FreestyleError);
|
|
7016
7643
|
}
|
|
7017
|
-
declare class
|
|
7644
|
+
declare class SetDefaultSnapshotFailedError extends Error {
|
|
7018
7645
|
body: unknown & FreestyleError;
|
|
7019
7646
|
static readonly code: string;
|
|
7020
7647
|
static readonly statusCode: number;
|
|
7021
7648
|
static readonly description: string;
|
|
7022
7649
|
constructor(body: unknown & FreestyleError);
|
|
7023
7650
|
}
|
|
7024
|
-
|
|
7025
|
-
groupName: string;
|
|
7026
|
-
[k: string]: unknown;
|
|
7027
|
-
}
|
|
7028
|
-
declare class GroupAlreadyExistsError extends Error {
|
|
7029
|
-
body: PublicGroupAlreadyExists & FreestyleError;
|
|
7030
|
-
static readonly code: string;
|
|
7031
|
-
static readonly statusCode: number;
|
|
7032
|
-
static readonly description: string;
|
|
7033
|
-
constructor(body: PublicGroupAlreadyExists & FreestyleError);
|
|
7034
|
-
}
|
|
7035
|
-
declare class DuplicateUserNameError extends Error {
|
|
7651
|
+
declare class SnapshotLayerCreationFailedError extends Error {
|
|
7036
7652
|
body: unknown & FreestyleError;
|
|
7037
7653
|
static readonly code: string;
|
|
7038
7654
|
static readonly statusCode: number;
|
|
7039
7655
|
static readonly description: string;
|
|
7040
7656
|
constructor(body: unknown & FreestyleError);
|
|
7041
7657
|
}
|
|
7042
|
-
declare class
|
|
7658
|
+
declare class SnapshotDirNotFoundError extends Error {
|
|
7043
7659
|
body: unknown & FreestyleError;
|
|
7044
7660
|
static readonly code: string;
|
|
7045
7661
|
static readonly statusCode: number;
|
|
7046
7662
|
static readonly description: string;
|
|
7047
7663
|
constructor(body: unknown & FreestyleError);
|
|
7048
7664
|
}
|
|
7049
|
-
declare class
|
|
7665
|
+
declare class SubvolumeCreationFailedError extends Error {
|
|
7050
7666
|
body: unknown & FreestyleError;
|
|
7051
7667
|
static readonly code: string;
|
|
7052
7668
|
static readonly statusCode: number;
|
|
7053
7669
|
static readonly description: string;
|
|
7054
7670
|
constructor(body: unknown & FreestyleError);
|
|
7055
7671
|
}
|
|
7056
|
-
declare class
|
|
7672
|
+
declare class GetDefaultSnapshotFailedError extends Error {
|
|
7057
7673
|
body: unknown & FreestyleError;
|
|
7058
7674
|
static readonly code: string;
|
|
7059
7675
|
static readonly statusCode: number;
|
|
7060
7676
|
static readonly description: string;
|
|
7061
7677
|
constructor(body: unknown & FreestyleError);
|
|
7062
7678
|
}
|
|
7063
|
-
declare class
|
|
7679
|
+
declare class UserNotFoundError extends Error {
|
|
7064
7680
|
body: unknown & FreestyleError;
|
|
7065
7681
|
static readonly code: string;
|
|
7066
7682
|
static readonly statusCode: number;
|
|
7067
7683
|
static readonly description: string;
|
|
7068
7684
|
constructor(body: unknown & FreestyleError);
|
|
7069
7685
|
}
|
|
7070
|
-
|
|
7071
|
-
|
|
7686
|
+
interface PublicUserAlreadyExists {
|
|
7687
|
+
userName: string;
|
|
7688
|
+
[k: string]: unknown;
|
|
7689
|
+
}
|
|
7690
|
+
declare class UserAlreadyExistsError extends Error {
|
|
7691
|
+
body: PublicUserAlreadyExists & FreestyleError;
|
|
7072
7692
|
static readonly code: string;
|
|
7073
7693
|
static readonly statusCode: number;
|
|
7074
7694
|
static readonly description: string;
|
|
7075
|
-
constructor(body:
|
|
7695
|
+
constructor(body: PublicUserAlreadyExists & FreestyleError);
|
|
7076
7696
|
}
|
|
7077
|
-
declare class
|
|
7697
|
+
declare class ValidationErrorError extends Error {
|
|
7078
7698
|
body: unknown & FreestyleError;
|
|
7079
7699
|
static readonly code: string;
|
|
7080
7700
|
static readonly statusCode: number;
|
|
7081
7701
|
static readonly description: string;
|
|
7082
7702
|
constructor(body: unknown & FreestyleError);
|
|
7083
7703
|
}
|
|
7084
|
-
declare class
|
|
7704
|
+
declare class GroupNotFoundError extends Error {
|
|
7085
7705
|
body: unknown & FreestyleError;
|
|
7086
7706
|
static readonly code: string;
|
|
7087
7707
|
static readonly statusCode: number;
|
|
7088
7708
|
static readonly description: string;
|
|
7089
7709
|
constructor(body: unknown & FreestyleError);
|
|
7090
7710
|
}
|
|
7091
|
-
|
|
7092
|
-
|
|
7711
|
+
interface PublicGroupAlreadyExists {
|
|
7712
|
+
groupName: string;
|
|
7713
|
+
[k: string]: unknown;
|
|
7714
|
+
}
|
|
7715
|
+
declare class GroupAlreadyExistsError extends Error {
|
|
7716
|
+
body: PublicGroupAlreadyExists & FreestyleError;
|
|
7093
7717
|
static readonly code: string;
|
|
7094
7718
|
static readonly statusCode: number;
|
|
7095
7719
|
static readonly description: string;
|
|
7096
|
-
constructor(body:
|
|
7720
|
+
constructor(body: PublicGroupAlreadyExists & FreestyleError);
|
|
7097
7721
|
}
|
|
7098
|
-
declare class
|
|
7722
|
+
declare class DuplicateUserNameError extends Error {
|
|
7099
7723
|
body: unknown & FreestyleError;
|
|
7100
7724
|
static readonly code: string;
|
|
7101
7725
|
static readonly statusCode: number;
|
|
7102
7726
|
static readonly description: string;
|
|
7103
7727
|
constructor(body: unknown & FreestyleError);
|
|
7104
7728
|
}
|
|
7105
|
-
declare class
|
|
7729
|
+
declare class UserGroupEmptyError extends Error {
|
|
7106
7730
|
body: unknown & FreestyleError;
|
|
7107
7731
|
static readonly code: string;
|
|
7108
7732
|
static readonly statusCode: number;
|
|
7109
7733
|
static readonly description: string;
|
|
7110
7734
|
constructor(body: unknown & FreestyleError);
|
|
7111
7735
|
}
|
|
7112
|
-
declare class
|
|
7736
|
+
declare class UserSystemFlagMismatchError extends Error {
|
|
7113
7737
|
body: unknown & FreestyleError;
|
|
7114
7738
|
static readonly code: string;
|
|
7115
7739
|
static readonly statusCode: number;
|
|
7116
7740
|
static readonly description: string;
|
|
7117
7741
|
constructor(body: unknown & FreestyleError);
|
|
7118
7742
|
}
|
|
7119
|
-
declare class
|
|
7743
|
+
declare class UserUidOutOfRangeError extends Error {
|
|
7120
7744
|
body: unknown & FreestyleError;
|
|
7121
7745
|
static readonly code: string;
|
|
7122
7746
|
static readonly statusCode: number;
|
|
7123
7747
|
static readonly description: string;
|
|
7124
7748
|
constructor(body: unknown & FreestyleError);
|
|
7125
7749
|
}
|
|
7126
|
-
declare class
|
|
7750
|
+
declare class UserHomeInvalidError extends Error {
|
|
7127
7751
|
body: unknown & FreestyleError;
|
|
7128
7752
|
static readonly code: string;
|
|
7129
7753
|
static readonly statusCode: number;
|
|
7130
7754
|
static readonly description: string;
|
|
7131
7755
|
constructor(body: unknown & FreestyleError);
|
|
7132
7756
|
}
|
|
7133
|
-
declare class
|
|
7757
|
+
declare class UserShellInvalidError extends Error {
|
|
7134
7758
|
body: unknown & FreestyleError;
|
|
7135
7759
|
static readonly code: string;
|
|
7136
7760
|
static readonly statusCode: number;
|
|
7137
7761
|
static readonly description: string;
|
|
7138
7762
|
constructor(body: unknown & FreestyleError);
|
|
7139
7763
|
}
|
|
7140
|
-
declare class
|
|
7764
|
+
declare class DuplicateGroupNameError extends Error {
|
|
7141
7765
|
body: unknown & FreestyleError;
|
|
7142
7766
|
static readonly code: string;
|
|
7143
7767
|
static readonly statusCode: number;
|
|
7144
7768
|
static readonly description: string;
|
|
7145
7769
|
constructor(body: unknown & FreestyleError);
|
|
7146
7770
|
}
|
|
7147
|
-
declare class
|
|
7771
|
+
declare class GroupNameReservedError extends Error {
|
|
7148
7772
|
body: unknown & FreestyleError;
|
|
7149
7773
|
static readonly code: string;
|
|
7150
7774
|
static readonly statusCode: number;
|
|
7151
7775
|
static readonly description: string;
|
|
7152
7776
|
constructor(body: unknown & FreestyleError);
|
|
7153
7777
|
}
|
|
7154
|
-
declare class
|
|
7778
|
+
declare class GroupNameInvalidCharsError extends Error {
|
|
7155
7779
|
body: unknown & FreestyleError;
|
|
7156
7780
|
static readonly code: string;
|
|
7157
7781
|
static readonly statusCode: number;
|
|
7158
7782
|
static readonly description: string;
|
|
7159
7783
|
constructor(body: unknown & FreestyleError);
|
|
7160
7784
|
}
|
|
7161
|
-
|
|
7162
|
-
|
|
7163
|
-
failedReason: string;
|
|
7164
|
-
[k: string]: unknown;
|
|
7165
|
-
}
|
|
7166
|
-
declare class SnapshotSetupFailedError extends Error {
|
|
7167
|
-
body: PublicSnapshotSetupFailed & FreestyleError;
|
|
7168
|
-
static readonly code: string;
|
|
7169
|
-
static readonly statusCode: number;
|
|
7170
|
-
static readonly description: string;
|
|
7171
|
-
constructor(body: PublicSnapshotSetupFailed & FreestyleError);
|
|
7172
|
-
}
|
|
7173
|
-
interface PublicSnapshotVmBadRequest {
|
|
7174
|
-
message: string;
|
|
7175
|
-
[k: string]: unknown;
|
|
7176
|
-
}
|
|
7177
|
-
declare class SnapshotVmBadRequestError extends Error {
|
|
7178
|
-
body: PublicSnapshotVmBadRequest & FreestyleError;
|
|
7785
|
+
declare class GroupNameTooLongError extends Error {
|
|
7786
|
+
body: unknown & FreestyleError;
|
|
7179
7787
|
static readonly code: string;
|
|
7180
7788
|
static readonly statusCode: number;
|
|
7181
7789
|
static readonly description: string;
|
|
7182
|
-
constructor(body:
|
|
7790
|
+
constructor(body: unknown & FreestyleError);
|
|
7183
7791
|
}
|
|
7184
|
-
declare class
|
|
7792
|
+
declare class GroupNameEmptyError extends Error {
|
|
7185
7793
|
body: unknown & FreestyleError;
|
|
7186
7794
|
static readonly code: string;
|
|
7187
7795
|
static readonly statusCode: number;
|
|
7188
7796
|
static readonly description: string;
|
|
7189
7797
|
constructor(body: unknown & FreestyleError);
|
|
7190
7798
|
}
|
|
7191
|
-
declare class
|
|
7799
|
+
declare class ActiveTransactionErrorError extends Error {
|
|
7192
7800
|
body: unknown & FreestyleError;
|
|
7193
7801
|
static readonly code: string;
|
|
7194
7802
|
static readonly statusCode: number;
|
|
7195
7803
|
static readonly description: string;
|
|
7196
7804
|
constructor(body: unknown & FreestyleError);
|
|
7197
7805
|
}
|
|
7198
|
-
|
|
7199
|
-
|
|
7200
|
-
details: string;
|
|
7201
|
-
[k: string]: unknown;
|
|
7202
|
-
}
|
|
7203
|
-
declare class InvalidVmIdError extends Error {
|
|
7204
|
-
body: PublicInvalidVmId & FreestyleError;
|
|
7806
|
+
declare class SwapVmTapError extends Error {
|
|
7807
|
+
body: unknown & FreestyleError;
|
|
7205
7808
|
static readonly code: string;
|
|
7206
7809
|
static readonly statusCode: number;
|
|
7207
7810
|
static readonly description: string;
|
|
7208
|
-
constructor(body:
|
|
7811
|
+
constructor(body: unknown & FreestyleError);
|
|
7209
7812
|
}
|
|
7210
|
-
declare class
|
|
7813
|
+
declare class RootfsCopyErrorError extends Error {
|
|
7211
7814
|
body: unknown & FreestyleError;
|
|
7212
7815
|
static readonly code: string;
|
|
7213
7816
|
static readonly statusCode: number;
|
|
7214
7817
|
static readonly description: string;
|
|
7215
7818
|
constructor(body: unknown & FreestyleError);
|
|
7216
7819
|
}
|
|
7217
|
-
declare class
|
|
7820
|
+
declare class PartitionNotFoundError extends Error {
|
|
7218
7821
|
body: unknown & FreestyleError;
|
|
7219
7822
|
static readonly code: string;
|
|
7220
7823
|
static readonly statusCode: number;
|
|
@@ -7243,61 +7846,56 @@ declare class FilesBadRequestError extends Error {
|
|
|
7243
7846
|
static readonly description: string;
|
|
7244
7847
|
constructor(body: PublicFilesBadRequest & FreestyleError);
|
|
7245
7848
|
}
|
|
7246
|
-
|
|
7247
|
-
message: string;
|
|
7248
|
-
[k: string]: unknown;
|
|
7249
|
-
}
|
|
7250
|
-
declare class InvalidGitRepoSpecErrorError extends Error {
|
|
7251
|
-
body: InvalidGitRepoSpecErrorPublic & FreestyleError;
|
|
7252
|
-
static readonly code: string;
|
|
7253
|
-
static readonly statusCode: number;
|
|
7254
|
-
static readonly description: string;
|
|
7255
|
-
constructor(body: InvalidGitRepoSpecErrorPublic & FreestyleError);
|
|
7256
|
-
}
|
|
7257
|
-
declare class InternalErrorError extends Error {
|
|
7849
|
+
declare class DatabaseErrorError extends Error {
|
|
7258
7850
|
body: unknown & FreestyleError;
|
|
7259
7851
|
static readonly code: string;
|
|
7260
7852
|
static readonly statusCode: number;
|
|
7261
7853
|
static readonly description: string;
|
|
7262
7854
|
constructor(body: unknown & FreestyleError);
|
|
7263
7855
|
}
|
|
7264
|
-
interface
|
|
7265
|
-
|
|
7856
|
+
interface PublicInvalidVmId {
|
|
7857
|
+
vmId: string;
|
|
7858
|
+
details: string;
|
|
7266
7859
|
[k: string]: unknown;
|
|
7267
7860
|
}
|
|
7268
|
-
declare class
|
|
7269
|
-
body:
|
|
7861
|
+
declare class InvalidVmIdError extends Error {
|
|
7862
|
+
body: PublicInvalidVmId & FreestyleError;
|
|
7270
7863
|
static readonly code: string;
|
|
7271
7864
|
static readonly statusCode: number;
|
|
7272
7865
|
static readonly description: string;
|
|
7273
|
-
constructor(body:
|
|
7866
|
+
constructor(body: PublicInvalidVmId & FreestyleError);
|
|
7274
7867
|
}
|
|
7275
|
-
interface
|
|
7276
|
-
|
|
7868
|
+
interface VmOperationDeniedDuringTransactionPublic {
|
|
7869
|
+
vmId: VmId;
|
|
7870
|
+
transactionId: string;
|
|
7277
7871
|
[k: string]: unknown;
|
|
7278
7872
|
}
|
|
7279
|
-
declare class
|
|
7280
|
-
body:
|
|
7873
|
+
declare class VmOperationDeniedDuringTransactionError extends Error {
|
|
7874
|
+
body: VmOperationDeniedDuringTransactionPublic & FreestyleError;
|
|
7281
7875
|
static readonly code: string;
|
|
7282
7876
|
static readonly statusCode: number;
|
|
7283
7877
|
static readonly description: string;
|
|
7284
|
-
constructor(body:
|
|
7878
|
+
constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError);
|
|
7285
7879
|
}
|
|
7286
|
-
|
|
7287
|
-
|
|
7288
|
-
|
|
7289
|
-
|
|
7290
|
-
|
|
7291
|
-
|
|
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;
|
|
7292
7890
|
}
|
|
7293
|
-
declare class
|
|
7294
|
-
body:
|
|
7891
|
+
declare class VmTransactionIdMismatchError extends Error {
|
|
7892
|
+
body: VmTransactionIdMismatchPublic & FreestyleError;
|
|
7295
7893
|
static readonly code: string;
|
|
7296
7894
|
static readonly statusCode: number;
|
|
7297
7895
|
static readonly description: string;
|
|
7298
|
-
constructor(body:
|
|
7896
|
+
constructor(body: VmTransactionIdMismatchPublic & FreestyleError);
|
|
7299
7897
|
}
|
|
7300
|
-
declare class
|
|
7898
|
+
declare class VmNotInTransactionError extends Error {
|
|
7301
7899
|
body: unknown & FreestyleError;
|
|
7302
7900
|
static readonly code: string;
|
|
7303
7901
|
static readonly statusCode: number;
|
|
@@ -7315,24 +7913,32 @@ declare class CreateVmBadRequestError extends Error {
|
|
|
7315
7913
|
static readonly description: string;
|
|
7316
7914
|
constructor(body: PublicCreateVmBadRequest & FreestyleError);
|
|
7317
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
|
+
}
|
|
7318
7933
|
interface ServiceStateGroup {
|
|
7319
7934
|
activeState: string;
|
|
7320
7935
|
subState: string;
|
|
7321
7936
|
services: string[];
|
|
7937
|
+
[k: string]: unknown;
|
|
7322
7938
|
}
|
|
7323
7939
|
interface ServiceLog {
|
|
7324
7940
|
unitName: string;
|
|
7325
7941
|
log: string;
|
|
7326
|
-
}
|
|
7327
|
-
interface PostBootDiagnostics {
|
|
7328
|
-
serviceStates: ServiceStateGroup[];
|
|
7329
|
-
failedServiceLogs: ServiceLog[];
|
|
7330
|
-
additionalFailedServiceLogs: ServiceLog[];
|
|
7331
|
-
}
|
|
7332
|
-
interface VmSetupFailedPublic {
|
|
7333
|
-
snapshotId?: string | null;
|
|
7334
|
-
failedReason: string;
|
|
7335
|
-
diagnostics?: PostBootDiagnostics | null;
|
|
7336
7942
|
[k: string]: unknown;
|
|
7337
7943
|
}
|
|
7338
7944
|
declare class VmSetupFailedError extends Error {
|
|
@@ -7545,135 +8151,121 @@ declare class ExpiredError extends Error {
|
|
|
7545
8151
|
static readonly description: string;
|
|
7546
8152
|
constructor(body: unknown & FreestyleError);
|
|
7547
8153
|
}
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
static readonly statusCode: number;
|
|
7552
|
-
static readonly description: string;
|
|
7553
|
-
constructor(body: unknown & FreestyleError);
|
|
8154
|
+
interface PublicBranchNotFound {
|
|
8155
|
+
branch: string;
|
|
8156
|
+
[k: string]: unknown;
|
|
7554
8157
|
}
|
|
7555
|
-
declare class
|
|
7556
|
-
body:
|
|
8158
|
+
declare class BranchNotFoundError extends Error {
|
|
8159
|
+
body: PublicBranchNotFound & FreestyleError;
|
|
7557
8160
|
static readonly code: string;
|
|
7558
8161
|
static readonly statusCode: number;
|
|
7559
8162
|
static readonly description: string;
|
|
7560
|
-
constructor(body:
|
|
8163
|
+
constructor(body: PublicBranchNotFound & FreestyleError);
|
|
7561
8164
|
}
|
|
7562
|
-
interface
|
|
7563
|
-
|
|
8165
|
+
interface PublicBranchAlreadyExists {
|
|
8166
|
+
branch: string;
|
|
7564
8167
|
[k: string]: unknown;
|
|
7565
8168
|
}
|
|
7566
|
-
declare class
|
|
7567
|
-
body:
|
|
8169
|
+
declare class BranchAlreadyExistsError extends Error {
|
|
8170
|
+
body: PublicBranchAlreadyExists & FreestyleError;
|
|
7568
8171
|
static readonly code: string;
|
|
7569
8172
|
static readonly statusCode: number;
|
|
7570
8173
|
static readonly description: string;
|
|
7571
|
-
constructor(body:
|
|
7572
|
-
}
|
|
7573
|
-
interface PublicInvalidRange {
|
|
7574
|
-
since: string;
|
|
7575
|
-
until: string;
|
|
7576
|
-
[k: string]: unknown;
|
|
7577
|
-
}
|
|
7578
|
-
declare class InvalidRangeError extends Error {
|
|
7579
|
-
body: PublicInvalidRange & FreestyleError;
|
|
7580
|
-
static readonly code: string;
|
|
7581
|
-
static readonly statusCode: number;
|
|
7582
|
-
static readonly description: string;
|
|
7583
|
-
constructor(body: PublicInvalidRange & FreestyleError);
|
|
8174
|
+
constructor(body: PublicBranchAlreadyExists & FreestyleError);
|
|
7584
8175
|
}
|
|
7585
|
-
declare class
|
|
8176
|
+
declare class NoDefaultBranchError extends Error {
|
|
7586
8177
|
body: unknown & FreestyleError;
|
|
7587
8178
|
static readonly code: string;
|
|
7588
8179
|
static readonly statusCode: number;
|
|
7589
8180
|
static readonly description: string;
|
|
7590
8181
|
constructor(body: unknown & FreestyleError);
|
|
7591
8182
|
}
|
|
7592
|
-
interface
|
|
8183
|
+
interface PublicCommitNotFound {
|
|
7593
8184
|
sha: string;
|
|
7594
|
-
branch: string;
|
|
7595
8185
|
[k: string]: unknown;
|
|
7596
8186
|
}
|
|
7597
|
-
declare class
|
|
7598
|
-
body:
|
|
8187
|
+
declare class CommitNotFoundError extends Error {
|
|
8188
|
+
body: PublicCommitNotFound & FreestyleError;
|
|
7599
8189
|
static readonly code: string;
|
|
7600
8190
|
static readonly statusCode: number;
|
|
7601
8191
|
static readonly description: string;
|
|
7602
|
-
constructor(body:
|
|
8192
|
+
constructor(body: PublicCommitNotFound & FreestyleError);
|
|
7603
8193
|
}
|
|
7604
|
-
interface
|
|
8194
|
+
interface PublicParentNotFound {
|
|
7605
8195
|
sha: string;
|
|
7606
8196
|
[k: string]: unknown;
|
|
7607
8197
|
}
|
|
7608
|
-
declare class
|
|
7609
|
-
body:
|
|
8198
|
+
declare class ParentNotFoundError extends Error {
|
|
8199
|
+
body: PublicParentNotFound & FreestyleError;
|
|
7610
8200
|
static readonly code: string;
|
|
7611
8201
|
static readonly statusCode: number;
|
|
7612
8202
|
static readonly description: string;
|
|
7613
|
-
constructor(body:
|
|
8203
|
+
constructor(body: PublicParentNotFound & FreestyleError);
|
|
7614
8204
|
}
|
|
7615
|
-
interface
|
|
7616
|
-
|
|
8205
|
+
interface PublicTreeNotFound {
|
|
8206
|
+
sha: string;
|
|
7617
8207
|
[k: string]: unknown;
|
|
7618
8208
|
}
|
|
7619
|
-
declare class
|
|
7620
|
-
body:
|
|
8209
|
+
declare class TreeNotFoundError extends Error {
|
|
8210
|
+
body: PublicTreeNotFound & FreestyleError;
|
|
7621
8211
|
static readonly code: string;
|
|
7622
8212
|
static readonly statusCode: number;
|
|
7623
8213
|
static readonly description: string;
|
|
7624
|
-
constructor(body:
|
|
8214
|
+
constructor(body: PublicTreeNotFound & FreestyleError);
|
|
7625
8215
|
}
|
|
7626
|
-
declare class
|
|
8216
|
+
declare class PackfileError extends Error {
|
|
7627
8217
|
body: unknown & FreestyleError;
|
|
7628
8218
|
static readonly code: string;
|
|
7629
8219
|
static readonly statusCode: number;
|
|
7630
8220
|
static readonly description: string;
|
|
7631
8221
|
constructor(body: unknown & FreestyleError);
|
|
7632
8222
|
}
|
|
7633
|
-
interface
|
|
7634
|
-
|
|
8223
|
+
interface PublicInvalidRevision {
|
|
8224
|
+
revision: string;
|
|
7635
8225
|
[k: string]: unknown;
|
|
7636
8226
|
}
|
|
7637
|
-
declare class
|
|
7638
|
-
body:
|
|
8227
|
+
declare class InvalidRevisionError extends Error {
|
|
8228
|
+
body: PublicInvalidRevision & FreestyleError;
|
|
7639
8229
|
static readonly code: string;
|
|
7640
8230
|
static readonly statusCode: number;
|
|
7641
8231
|
static readonly description: string;
|
|
7642
|
-
constructor(body:
|
|
8232
|
+
constructor(body: PublicInvalidRevision & FreestyleError);
|
|
7643
8233
|
}
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
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);
|
|
7647
8240
|
}
|
|
7648
|
-
declare class
|
|
7649
|
-
body:
|
|
8241
|
+
declare class UnauthorizedError extends Error {
|
|
8242
|
+
body: unknown & FreestyleError;
|
|
7650
8243
|
static readonly code: string;
|
|
7651
8244
|
static readonly statusCode: number;
|
|
7652
8245
|
static readonly description: string;
|
|
7653
|
-
constructor(body:
|
|
8246
|
+
constructor(body: unknown & FreestyleError);
|
|
7654
8247
|
}
|
|
7655
|
-
interface
|
|
8248
|
+
interface PublicPathNotFound {
|
|
7656
8249
|
path: string;
|
|
7657
8250
|
[k: string]: unknown;
|
|
7658
8251
|
}
|
|
7659
|
-
declare class
|
|
7660
|
-
body:
|
|
8252
|
+
declare class PathNotFoundError extends Error {
|
|
8253
|
+
body: PublicPathNotFound & FreestyleError;
|
|
7661
8254
|
static readonly code: string;
|
|
7662
8255
|
static readonly statusCode: number;
|
|
7663
8256
|
static readonly description: string;
|
|
7664
|
-
constructor(body:
|
|
8257
|
+
constructor(body: PublicPathNotFound & FreestyleError);
|
|
7665
8258
|
}
|
|
7666
|
-
interface
|
|
7667
|
-
|
|
7668
|
-
actual?: string | null;
|
|
8259
|
+
interface PublicReferenceNotFound {
|
|
8260
|
+
reference: string;
|
|
7669
8261
|
[k: string]: unknown;
|
|
7670
8262
|
}
|
|
7671
|
-
declare class
|
|
7672
|
-
body:
|
|
8263
|
+
declare class ReferenceNotFoundError extends Error {
|
|
8264
|
+
body: PublicReferenceNotFound & FreestyleError;
|
|
7673
8265
|
static readonly code: string;
|
|
7674
8266
|
static readonly statusCode: number;
|
|
7675
8267
|
static readonly description: string;
|
|
7676
|
-
constructor(body:
|
|
8268
|
+
constructor(body: PublicReferenceNotFound & FreestyleError);
|
|
7677
8269
|
}
|
|
7678
8270
|
interface PublicAmbiguous {
|
|
7679
8271
|
rev: string;
|
|
@@ -7708,114 +8300,151 @@ declare class InvalidError extends Error {
|
|
|
7708
8300
|
static readonly description: string;
|
|
7709
8301
|
constructor(body: PublicInvalid & FreestyleError);
|
|
7710
8302
|
}
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
};
|
|
7714
|
-
interface PublicUnsupportedTransfer {
|
|
7715
|
-
requested: LfsTransferAdapter[];
|
|
7716
|
-
supported: LfsTransferAdapter[];
|
|
8303
|
+
interface PublicDiffInvalidPathPattern {
|
|
8304
|
+
reason: string;
|
|
7717
8305
|
[k: string]: unknown;
|
|
7718
8306
|
}
|
|
7719
|
-
declare class
|
|
7720
|
-
body:
|
|
8307
|
+
declare class DiffInvalidPathPatternError extends Error {
|
|
8308
|
+
body: PublicDiffInvalidPathPattern & FreestyleError;
|
|
7721
8309
|
static readonly code: string;
|
|
7722
8310
|
static readonly statusCode: number;
|
|
7723
8311
|
static readonly description: string;
|
|
7724
|
-
constructor(body:
|
|
8312
|
+
constructor(body: PublicDiffInvalidPathPattern & FreestyleError);
|
|
7725
8313
|
}
|
|
7726
|
-
interface
|
|
7727
|
-
|
|
8314
|
+
interface PublicDiffInvalidRegex {
|
|
8315
|
+
reason: string;
|
|
7728
8316
|
[k: string]: unknown;
|
|
7729
8317
|
}
|
|
7730
|
-
declare class
|
|
7731
|
-
body:
|
|
8318
|
+
declare class DiffInvalidRegexError extends Error {
|
|
8319
|
+
body: PublicDiffInvalidRegex & FreestyleError;
|
|
7732
8320
|
static readonly code: string;
|
|
7733
8321
|
static readonly statusCode: number;
|
|
7734
8322
|
static readonly description: string;
|
|
7735
|
-
constructor(body:
|
|
8323
|
+
constructor(body: PublicDiffInvalidRegex & FreestyleError);
|
|
7736
8324
|
}
|
|
7737
|
-
|
|
7738
|
-
|
|
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;
|
|
7739
8334
|
[k: string]: unknown;
|
|
7740
8335
|
}
|
|
7741
|
-
declare class
|
|
7742
|
-
body:
|
|
8336
|
+
declare class CommitInvalidRegexError extends Error {
|
|
8337
|
+
body: PublicCommitInvalidRegex & FreestyleError;
|
|
7743
8338
|
static readonly code: string;
|
|
7744
8339
|
static readonly statusCode: number;
|
|
7745
8340
|
static readonly description: string;
|
|
7746
|
-
constructor(body:
|
|
8341
|
+
constructor(body: PublicCommitInvalidRegex & FreestyleError);
|
|
7747
8342
|
}
|
|
7748
|
-
declare class
|
|
8343
|
+
declare class CommitEmptyQueryError extends Error {
|
|
7749
8344
|
body: unknown & FreestyleError;
|
|
7750
8345
|
static readonly code: string;
|
|
7751
8346
|
static readonly statusCode: number;
|
|
7752
8347
|
static readonly description: string;
|
|
7753
8348
|
constructor(body: unknown & FreestyleError);
|
|
7754
8349
|
}
|
|
7755
|
-
|
|
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 {
|
|
7756
8362
|
body: unknown & FreestyleError;
|
|
7757
8363
|
static readonly code: string;
|
|
7758
8364
|
static readonly statusCode: number;
|
|
7759
8365
|
static readonly description: string;
|
|
7760
8366
|
constructor(body: unknown & FreestyleError);
|
|
7761
8367
|
}
|
|
7762
|
-
interface
|
|
7763
|
-
|
|
8368
|
+
interface PublicInvalidRegex {
|
|
8369
|
+
reason: string;
|
|
7764
8370
|
[k: string]: unknown;
|
|
7765
8371
|
}
|
|
7766
|
-
declare class
|
|
7767
|
-
body:
|
|
8372
|
+
declare class InvalidRegexError extends Error {
|
|
8373
|
+
body: PublicInvalidRegex & FreestyleError;
|
|
7768
8374
|
static readonly code: string;
|
|
7769
8375
|
static readonly statusCode: number;
|
|
7770
8376
|
static readonly description: string;
|
|
7771
|
-
constructor(body:
|
|
8377
|
+
constructor(body: PublicInvalidRegex & FreestyleError);
|
|
7772
8378
|
}
|
|
7773
|
-
interface
|
|
7774
|
-
|
|
8379
|
+
interface PublicInvalidPathPattern {
|
|
8380
|
+
reason: string;
|
|
7775
8381
|
[k: string]: unknown;
|
|
7776
8382
|
}
|
|
7777
|
-
declare class
|
|
7778
|
-
body:
|
|
8383
|
+
declare class InvalidPathPatternError extends Error {
|
|
8384
|
+
body: PublicInvalidPathPattern & FreestyleError;
|
|
7779
8385
|
static readonly code: string;
|
|
7780
8386
|
static readonly statusCode: number;
|
|
7781
8387
|
static readonly description: string;
|
|
7782
|
-
constructor(body:
|
|
8388
|
+
constructor(body: PublicInvalidPathPattern & FreestyleError);
|
|
7783
8389
|
}
|
|
7784
|
-
|
|
7785
|
-
|
|
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;
|
|
7786
8406
|
[k: string]: unknown;
|
|
7787
8407
|
}
|
|
7788
|
-
declare class
|
|
7789
|
-
body:
|
|
8408
|
+
declare class InvalidBase64ContentError extends Error {
|
|
8409
|
+
body: PublicInvalidBase64Content & FreestyleError;
|
|
7790
8410
|
static readonly code: string;
|
|
7791
8411
|
static readonly statusCode: number;
|
|
7792
8412
|
static readonly description: string;
|
|
7793
|
-
constructor(body:
|
|
8413
|
+
constructor(body: PublicInvalidBase64Content & FreestyleError);
|
|
7794
8414
|
}
|
|
7795
|
-
interface
|
|
7796
|
-
|
|
8415
|
+
interface PublicInvalidFileChange {
|
|
8416
|
+
path: string;
|
|
7797
8417
|
[k: string]: unknown;
|
|
7798
8418
|
}
|
|
7799
|
-
declare class
|
|
7800
|
-
body:
|
|
8419
|
+
declare class InvalidFileChangeError extends Error {
|
|
8420
|
+
body: PublicInvalidFileChange & FreestyleError;
|
|
7801
8421
|
static readonly code: string;
|
|
7802
8422
|
static readonly statusCode: number;
|
|
7803
8423
|
static readonly description: string;
|
|
7804
|
-
constructor(body:
|
|
8424
|
+
constructor(body: PublicInvalidFileChange & FreestyleError);
|
|
7805
8425
|
}
|
|
7806
|
-
|
|
7807
|
-
|
|
8426
|
+
interface PublicInvalidFilePath {
|
|
8427
|
+
path: string;
|
|
8428
|
+
[k: string]: unknown;
|
|
8429
|
+
}
|
|
8430
|
+
declare class InvalidFilePathError extends Error {
|
|
8431
|
+
body: PublicInvalidFilePath & FreestyleError;
|
|
7808
8432
|
static readonly code: string;
|
|
7809
8433
|
static readonly statusCode: number;
|
|
7810
8434
|
static readonly description: string;
|
|
7811
|
-
constructor(body:
|
|
8435
|
+
constructor(body: PublicInvalidFilePath & FreestyleError);
|
|
7812
8436
|
}
|
|
7813
|
-
|
|
7814
|
-
|
|
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;
|
|
7815
8444
|
static readonly code: string;
|
|
7816
8445
|
static readonly statusCode: number;
|
|
7817
8446
|
static readonly description: string;
|
|
7818
|
-
constructor(body:
|
|
8447
|
+
constructor(body: PublicConflictingParent & FreestyleError);
|
|
7819
8448
|
}
|
|
7820
8449
|
interface PublicInvalidAccountId {
|
|
7821
8450
|
accountId: string;
|
|
@@ -7883,615 +8512,687 @@ declare class RepoAlreadyExistsError extends Error {
|
|
|
7883
8512
|
static readonly description: string;
|
|
7884
8513
|
constructor(body: PublicRepoAlreadyExists & FreestyleError);
|
|
7885
8514
|
}
|
|
7886
|
-
declare class
|
|
8515
|
+
declare class SendErrorError extends Error {
|
|
7887
8516
|
body: unknown & FreestyleError;
|
|
7888
8517
|
static readonly code: string;
|
|
7889
8518
|
static readonly statusCode: number;
|
|
7890
8519
|
static readonly description: string;
|
|
7891
8520
|
constructor(body: unknown & FreestyleError);
|
|
7892
8521
|
}
|
|
7893
|
-
interface
|
|
7894
|
-
|
|
8522
|
+
interface PublicInvalidRange {
|
|
8523
|
+
since: string;
|
|
8524
|
+
until: string;
|
|
7895
8525
|
[k: string]: unknown;
|
|
7896
8526
|
}
|
|
7897
|
-
declare class
|
|
7898
|
-
body:
|
|
8527
|
+
declare class InvalidRangeError extends Error {
|
|
8528
|
+
body: PublicInvalidRange & FreestyleError;
|
|
7899
8529
|
static readonly code: string;
|
|
7900
8530
|
static readonly statusCode: number;
|
|
7901
8531
|
static readonly description: string;
|
|
7902
|
-
constructor(body:
|
|
8532
|
+
constructor(body: PublicInvalidRange & FreestyleError);
|
|
7903
8533
|
}
|
|
7904
|
-
declare class
|
|
8534
|
+
declare class OffsetWithSelectorError extends Error {
|
|
7905
8535
|
body: unknown & FreestyleError;
|
|
7906
8536
|
static readonly code: string;
|
|
7907
8537
|
static readonly statusCode: number;
|
|
7908
8538
|
static readonly description: string;
|
|
7909
8539
|
constructor(body: unknown & FreestyleError);
|
|
7910
8540
|
}
|
|
7911
|
-
interface
|
|
7912
|
-
|
|
8541
|
+
interface PublicCommitNotInBranch {
|
|
8542
|
+
sha: string;
|
|
8543
|
+
branch: string;
|
|
7913
8544
|
[k: string]: unknown;
|
|
7914
8545
|
}
|
|
7915
|
-
declare class
|
|
7916
|
-
body:
|
|
8546
|
+
declare class CommitNotInBranchError extends Error {
|
|
8547
|
+
body: PublicCommitNotInBranch & FreestyleError;
|
|
7917
8548
|
static readonly code: string;
|
|
7918
8549
|
static readonly statusCode: number;
|
|
7919
8550
|
static readonly description: string;
|
|
7920
|
-
constructor(body:
|
|
8551
|
+
constructor(body: PublicCommitNotInBranch & FreestyleError);
|
|
7921
8552
|
}
|
|
7922
|
-
|
|
7923
|
-
|
|
8553
|
+
interface PublicTagNotFound {
|
|
8554
|
+
hash: string;
|
|
8555
|
+
[k: string]: unknown;
|
|
8556
|
+
}
|
|
8557
|
+
declare class TagNotFoundError extends Error {
|
|
8558
|
+
body: PublicTagNotFound & FreestyleError;
|
|
7924
8559
|
static readonly code: string;
|
|
7925
8560
|
static readonly statusCode: number;
|
|
7926
8561
|
static readonly description: string;
|
|
7927
|
-
constructor(body:
|
|
8562
|
+
constructor(body: PublicTagNotFound & FreestyleError);
|
|
7928
8563
|
}
|
|
7929
|
-
declare class
|
|
8564
|
+
declare class InvalidServiceError extends Error {
|
|
7930
8565
|
body: unknown & FreestyleError;
|
|
7931
8566
|
static readonly code: string;
|
|
7932
8567
|
static readonly statusCode: number;
|
|
7933
8568
|
static readonly description: string;
|
|
7934
8569
|
constructor(body: unknown & FreestyleError);
|
|
7935
8570
|
}
|
|
7936
|
-
declare class
|
|
8571
|
+
declare class ExpectedServiceError extends Error {
|
|
7937
8572
|
body: unknown & FreestyleError;
|
|
7938
8573
|
static readonly code: string;
|
|
7939
8574
|
static readonly statusCode: number;
|
|
7940
8575
|
static readonly description: string;
|
|
7941
8576
|
constructor(body: unknown & FreestyleError);
|
|
7942
8577
|
}
|
|
7943
|
-
declare class
|
|
8578
|
+
declare class GitHubSyncConflictError extends Error {
|
|
7944
8579
|
body: unknown & FreestyleError;
|
|
7945
8580
|
static readonly code: string;
|
|
7946
8581
|
static readonly statusCode: number;
|
|
7947
8582
|
static readonly description: string;
|
|
7948
8583
|
constructor(body: unknown & FreestyleError);
|
|
7949
8584
|
}
|
|
7950
|
-
interface
|
|
7951
|
-
|
|
8585
|
+
interface InvalidObjectIdPublic {
|
|
8586
|
+
hash: string;
|
|
7952
8587
|
[k: string]: unknown;
|
|
7953
8588
|
}
|
|
7954
|
-
declare class
|
|
7955
|
-
body:
|
|
8589
|
+
declare class InvalidObjectIdError extends Error {
|
|
8590
|
+
body: InvalidObjectIdPublic & FreestyleError;
|
|
7956
8591
|
static readonly code: string;
|
|
7957
8592
|
static readonly statusCode: number;
|
|
7958
8593
|
static readonly description: string;
|
|
7959
|
-
constructor(body:
|
|
8594
|
+
constructor(body: InvalidObjectIdPublic & FreestyleError);
|
|
7960
8595
|
}
|
|
7961
|
-
|
|
7962
|
-
|
|
8596
|
+
type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
|
|
8597
|
+
other: string;
|
|
8598
|
+
};
|
|
8599
|
+
interface PublicUnsupportedTransfer {
|
|
8600
|
+
requested: LfsTransferAdapter[];
|
|
8601
|
+
supported: LfsTransferAdapter[];
|
|
7963
8602
|
[k: string]: unknown;
|
|
7964
8603
|
}
|
|
7965
|
-
declare class
|
|
7966
|
-
body:
|
|
8604
|
+
declare class UnsupportedTransferError extends Error {
|
|
8605
|
+
body: PublicUnsupportedTransfer & FreestyleError;
|
|
7967
8606
|
static readonly code: string;
|
|
7968
8607
|
static readonly statusCode: number;
|
|
7969
8608
|
static readonly description: string;
|
|
7970
|
-
constructor(body:
|
|
8609
|
+
constructor(body: PublicUnsupportedTransfer & FreestyleError);
|
|
7971
8610
|
}
|
|
7972
|
-
interface
|
|
7973
|
-
|
|
8611
|
+
interface PublicBlobNotFound {
|
|
8612
|
+
hash: string;
|
|
7974
8613
|
[k: string]: unknown;
|
|
7975
8614
|
}
|
|
7976
|
-
declare class
|
|
7977
|
-
body:
|
|
8615
|
+
declare class BlobNotFoundError extends Error {
|
|
8616
|
+
body: PublicBlobNotFound & FreestyleError;
|
|
7978
8617
|
static readonly code: string;
|
|
7979
8618
|
static readonly statusCode: number;
|
|
7980
8619
|
static readonly description: string;
|
|
7981
|
-
constructor(body:
|
|
7982
|
-
}
|
|
7983
|
-
interface PublicRetrieveLogsFailed {
|
|
7984
|
-
message: string;
|
|
7985
|
-
[k: string]: unknown;
|
|
8620
|
+
constructor(body: PublicBlobNotFound & FreestyleError);
|
|
7986
8621
|
}
|
|
7987
|
-
declare class
|
|
7988
|
-
body:
|
|
8622
|
+
declare class UnavailableError extends Error {
|
|
8623
|
+
body: unknown & FreestyleError;
|
|
7989
8624
|
static readonly code: string;
|
|
7990
8625
|
static readonly statusCode: number;
|
|
7991
8626
|
static readonly description: string;
|
|
7992
|
-
constructor(body:
|
|
7993
|
-
}
|
|
7994
|
-
interface PublicInvalidQuery {
|
|
7995
|
-
message: string;
|
|
7996
|
-
[k: string]: unknown;
|
|
8627
|
+
constructor(body: unknown & FreestyleError);
|
|
7997
8628
|
}
|
|
7998
|
-
declare class
|
|
7999
|
-
body:
|
|
8629
|
+
declare class ScheduleNotFoundError extends Error {
|
|
8630
|
+
body: unknown & FreestyleError;
|
|
8000
8631
|
static readonly code: string;
|
|
8001
8632
|
static readonly statusCode: number;
|
|
8002
8633
|
static readonly description: string;
|
|
8003
|
-
constructor(body:
|
|
8004
|
-
}
|
|
8005
|
-
interface PublicLogsNotFound {
|
|
8006
|
-
deploymentId: string;
|
|
8007
|
-
[k: string]: unknown;
|
|
8634
|
+
constructor(body: unknown & FreestyleError);
|
|
8008
8635
|
}
|
|
8009
|
-
declare class
|
|
8010
|
-
body:
|
|
8636
|
+
declare class ServiceUnavailableError extends Error {
|
|
8637
|
+
body: unknown & FreestyleError;
|
|
8011
8638
|
static readonly code: string;
|
|
8012
8639
|
static readonly statusCode: number;
|
|
8013
8640
|
static readonly description: string;
|
|
8014
|
-
constructor(body:
|
|
8015
|
-
}
|
|
8016
|
-
interface PublicExecuteInternalError {
|
|
8017
|
-
message: string;
|
|
8018
|
-
[k: string]: unknown;
|
|
8641
|
+
constructor(body: unknown & FreestyleError);
|
|
8019
8642
|
}
|
|
8020
|
-
declare class
|
|
8021
|
-
body:
|
|
8643
|
+
declare class ExecuteLimitExceededError extends Error {
|
|
8644
|
+
body: unknown & FreestyleError;
|
|
8022
8645
|
static readonly code: string;
|
|
8023
8646
|
static readonly statusCode: number;
|
|
8024
8647
|
static readonly description: string;
|
|
8025
|
-
constructor(body:
|
|
8648
|
+
constructor(body: unknown & FreestyleError);
|
|
8026
8649
|
}
|
|
8027
|
-
declare class
|
|
8650
|
+
declare class AccessDeniedError extends Error {
|
|
8028
8651
|
body: unknown & FreestyleError;
|
|
8029
8652
|
static readonly code: string;
|
|
8030
8653
|
static readonly statusCode: number;
|
|
8031
8654
|
static readonly description: string;
|
|
8032
8655
|
constructor(body: unknown & FreestyleError);
|
|
8033
8656
|
}
|
|
8034
|
-
interface
|
|
8657
|
+
interface PublicCloudstateInternalError {
|
|
8035
8658
|
message: string;
|
|
8036
8659
|
[k: string]: unknown;
|
|
8037
8660
|
}
|
|
8038
|
-
declare class
|
|
8039
|
-
body:
|
|
8661
|
+
declare class CloudstateInternalErrorError extends Error {
|
|
8662
|
+
body: PublicCloudstateInternalError & FreestyleError;
|
|
8040
8663
|
static readonly code: string;
|
|
8041
8664
|
static readonly statusCode: number;
|
|
8042
8665
|
static readonly description: string;
|
|
8043
|
-
constructor(body:
|
|
8666
|
+
constructor(body: PublicCloudstateInternalError & FreestyleError);
|
|
8044
8667
|
}
|
|
8045
|
-
interface
|
|
8668
|
+
interface PublicCloudstateDatabaseError {
|
|
8046
8669
|
message: string;
|
|
8047
8670
|
[k: string]: unknown;
|
|
8048
8671
|
}
|
|
8049
|
-
declare class
|
|
8050
|
-
body:
|
|
8672
|
+
declare class CloudstateDatabaseErrorError extends Error {
|
|
8673
|
+
body: PublicCloudstateDatabaseError & FreestyleError;
|
|
8051
8674
|
static readonly code: string;
|
|
8052
8675
|
static readonly statusCode: number;
|
|
8053
8676
|
static readonly description: string;
|
|
8054
|
-
constructor(body:
|
|
8677
|
+
constructor(body: PublicCloudstateDatabaseError & FreestyleError);
|
|
8055
8678
|
}
|
|
8056
|
-
interface
|
|
8057
|
-
|
|
8679
|
+
interface PublicCloudstateAccessDenied {
|
|
8680
|
+
projectId: string;
|
|
8058
8681
|
[k: string]: unknown;
|
|
8059
8682
|
}
|
|
8060
|
-
declare class
|
|
8061
|
-
body:
|
|
8683
|
+
declare class CloudstateAccessDeniedError extends Error {
|
|
8684
|
+
body: PublicCloudstateAccessDenied & FreestyleError;
|
|
8062
8685
|
static readonly code: string;
|
|
8063
8686
|
static readonly statusCode: number;
|
|
8064
8687
|
static readonly description: string;
|
|
8065
|
-
constructor(body:
|
|
8688
|
+
constructor(body: PublicCloudstateAccessDenied & FreestyleError);
|
|
8066
8689
|
}
|
|
8067
|
-
interface
|
|
8690
|
+
interface PublicRestoreFailed {
|
|
8068
8691
|
message: string;
|
|
8069
8692
|
[k: string]: unknown;
|
|
8070
8693
|
}
|
|
8071
|
-
declare class
|
|
8072
|
-
body:
|
|
8694
|
+
declare class RestoreFailedError extends Error {
|
|
8695
|
+
body: PublicRestoreFailed & FreestyleError;
|
|
8073
8696
|
static readonly code: string;
|
|
8074
8697
|
static readonly statusCode: number;
|
|
8075
8698
|
static readonly description: string;
|
|
8076
|
-
constructor(body:
|
|
8699
|
+
constructor(body: PublicRestoreFailed & FreestyleError);
|
|
8077
8700
|
}
|
|
8078
|
-
interface
|
|
8701
|
+
interface PublicCreateBackupFailed {
|
|
8079
8702
|
message: string;
|
|
8080
8703
|
[k: string]: unknown;
|
|
8081
8704
|
}
|
|
8082
|
-
declare class
|
|
8083
|
-
body:
|
|
8705
|
+
declare class CreateBackupFailedError extends Error {
|
|
8706
|
+
body: PublicCreateBackupFailed & FreestyleError;
|
|
8084
8707
|
static readonly code: string;
|
|
8085
8708
|
static readonly statusCode: number;
|
|
8086
8709
|
static readonly description: string;
|
|
8087
|
-
constructor(body:
|
|
8710
|
+
constructor(body: PublicCreateBackupFailed & FreestyleError);
|
|
8088
8711
|
}
|
|
8089
|
-
interface
|
|
8712
|
+
interface PublicBackupFailed {
|
|
8090
8713
|
message: string;
|
|
8091
8714
|
[k: string]: unknown;
|
|
8092
8715
|
}
|
|
8093
|
-
declare class
|
|
8094
|
-
body:
|
|
8716
|
+
declare class BackupFailedError extends Error {
|
|
8717
|
+
body: PublicBackupFailed & FreestyleError;
|
|
8095
8718
|
static readonly code: string;
|
|
8096
8719
|
static readonly statusCode: number;
|
|
8097
8720
|
static readonly description: string;
|
|
8098
|
-
constructor(body:
|
|
8721
|
+
constructor(body: PublicBackupFailed & FreestyleError);
|
|
8099
8722
|
}
|
|
8100
|
-
interface
|
|
8723
|
+
interface PublicDeploymentFailed {
|
|
8101
8724
|
message: string;
|
|
8102
8725
|
[k: string]: unknown;
|
|
8103
8726
|
}
|
|
8104
|
-
declare class
|
|
8105
|
-
body:
|
|
8727
|
+
declare class DeploymentFailedError extends Error {
|
|
8728
|
+
body: PublicDeploymentFailed & FreestyleError;
|
|
8106
8729
|
static readonly code: string;
|
|
8107
8730
|
static readonly statusCode: number;
|
|
8108
8731
|
static readonly description: string;
|
|
8109
|
-
constructor(body:
|
|
8732
|
+
constructor(body: PublicDeploymentFailed & FreestyleError);
|
|
8110
8733
|
}
|
|
8111
|
-
interface
|
|
8734
|
+
interface PublicInvalidDeploymentRequest {
|
|
8112
8735
|
message: string;
|
|
8113
8736
|
[k: string]: unknown;
|
|
8114
8737
|
}
|
|
8115
|
-
declare class
|
|
8116
|
-
body:
|
|
8738
|
+
declare class InvalidDeploymentRequestError extends Error {
|
|
8739
|
+
body: PublicInvalidDeploymentRequest & FreestyleError;
|
|
8117
8740
|
static readonly code: string;
|
|
8118
8741
|
static readonly statusCode: number;
|
|
8119
8742
|
static readonly description: string;
|
|
8120
|
-
constructor(body:
|
|
8743
|
+
constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
|
|
8121
8744
|
}
|
|
8122
|
-
interface
|
|
8123
|
-
|
|
8745
|
+
interface PublicProjectNotFound {
|
|
8746
|
+
projectId: string;
|
|
8124
8747
|
[k: string]: unknown;
|
|
8125
8748
|
}
|
|
8126
|
-
declare class
|
|
8127
|
-
body:
|
|
8749
|
+
declare class ProjectNotFoundError extends Error {
|
|
8750
|
+
body: PublicProjectNotFound & FreestyleError;
|
|
8128
8751
|
static readonly code: string;
|
|
8129
8752
|
static readonly statusCode: number;
|
|
8130
8753
|
static readonly description: string;
|
|
8131
|
-
constructor(body:
|
|
8754
|
+
constructor(body: PublicProjectNotFound & FreestyleError);
|
|
8132
8755
|
}
|
|
8133
|
-
interface
|
|
8134
|
-
|
|
8756
|
+
interface PublicBuildFailed {
|
|
8757
|
+
logs: string;
|
|
8758
|
+
vmId: string;
|
|
8135
8759
|
[k: string]: unknown;
|
|
8136
8760
|
}
|
|
8137
|
-
declare class
|
|
8138
|
-
body:
|
|
8761
|
+
declare class BuildFailedError extends Error {
|
|
8762
|
+
body: PublicBuildFailed & FreestyleError;
|
|
8139
8763
|
static readonly code: string;
|
|
8140
8764
|
static readonly statusCode: number;
|
|
8141
8765
|
static readonly description: string;
|
|
8142
|
-
constructor(body:
|
|
8766
|
+
constructor(body: PublicBuildFailed & FreestyleError);
|
|
8143
8767
|
}
|
|
8144
|
-
|
|
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 {
|
|
8145
8776
|
message: string;
|
|
8146
8777
|
[k: string]: unknown;
|
|
8147
8778
|
}
|
|
8148
|
-
declare class
|
|
8149
|
-
body:
|
|
8779
|
+
declare class LockfileErrorError extends Error {
|
|
8780
|
+
body: PublicLockfileError & FreestyleError;
|
|
8150
8781
|
static readonly code: string;
|
|
8151
8782
|
static readonly statusCode: number;
|
|
8152
8783
|
static readonly description: string;
|
|
8153
|
-
constructor(body:
|
|
8784
|
+
constructor(body: PublicLockfileError & FreestyleError);
|
|
8154
8785
|
}
|
|
8155
|
-
|
|
8156
|
-
|
|
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;
|
|
8157
8795
|
[k: string]: unknown;
|
|
8158
8796
|
}
|
|
8159
|
-
declare class
|
|
8160
|
-
body:
|
|
8797
|
+
declare class DomainMappingErrorError extends Error {
|
|
8798
|
+
body: PublicDomainMappingError & FreestyleError;
|
|
8161
8799
|
static readonly code: string;
|
|
8162
8800
|
static readonly statusCode: number;
|
|
8163
8801
|
static readonly description: string;
|
|
8164
|
-
constructor(body:
|
|
8802
|
+
constructor(body: PublicDomainMappingError & FreestyleError);
|
|
8165
8803
|
}
|
|
8166
|
-
interface
|
|
8167
|
-
|
|
8168
|
-
|
|
8804
|
+
interface PublicCertificateProvisioningError {
|
|
8805
|
+
domain: string;
|
|
8806
|
+
reason?: string | null;
|
|
8169
8807
|
[k: string]: unknown;
|
|
8170
8808
|
}
|
|
8171
|
-
declare class
|
|
8172
|
-
body:
|
|
8809
|
+
declare class CertificateProvisioningErrorError extends Error {
|
|
8810
|
+
body: PublicCertificateProvisioningError & FreestyleError;
|
|
8173
8811
|
static readonly code: string;
|
|
8174
8812
|
static readonly statusCode: number;
|
|
8175
8813
|
static readonly description: string;
|
|
8176
|
-
constructor(body:
|
|
8814
|
+
constructor(body: PublicCertificateProvisioningError & FreestyleError);
|
|
8177
8815
|
}
|
|
8178
|
-
|
|
8179
|
-
|
|
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;
|
|
8180
8825
|
[k: string]: unknown;
|
|
8181
8826
|
}
|
|
8182
|
-
declare class
|
|
8183
|
-
body:
|
|
8827
|
+
declare class EntrypointNotFoundError extends Error {
|
|
8828
|
+
body: PublicEntrypointNotFound & FreestyleError;
|
|
8184
8829
|
static readonly code: string;
|
|
8185
8830
|
static readonly statusCode: number;
|
|
8186
8831
|
static readonly description: string;
|
|
8187
|
-
constructor(body:
|
|
8832
|
+
constructor(body: PublicEntrypointNotFound & FreestyleError);
|
|
8188
8833
|
}
|
|
8189
|
-
interface
|
|
8190
|
-
|
|
8834
|
+
interface PublicNoDomainOwnership {
|
|
8835
|
+
domain: string;
|
|
8191
8836
|
[k: string]: unknown;
|
|
8192
8837
|
}
|
|
8193
|
-
declare class
|
|
8194
|
-
body:
|
|
8838
|
+
declare class NoDomainOwnershipError extends Error {
|
|
8839
|
+
body: PublicNoDomainOwnership & FreestyleError;
|
|
8195
8840
|
static readonly code: string;
|
|
8196
8841
|
static readonly statusCode: number;
|
|
8197
8842
|
static readonly description: string;
|
|
8198
|
-
constructor(body:
|
|
8843
|
+
constructor(body: PublicNoDomainOwnership & FreestyleError);
|
|
8199
8844
|
}
|
|
8200
|
-
interface
|
|
8201
|
-
|
|
8845
|
+
interface PublicInvalidDomains {
|
|
8846
|
+
domains: string[];
|
|
8202
8847
|
[k: string]: unknown;
|
|
8203
8848
|
}
|
|
8204
|
-
declare class
|
|
8205
|
-
body:
|
|
8849
|
+
declare class InvalidDomainsError extends Error {
|
|
8850
|
+
body: PublicInvalidDomains & FreestyleError;
|
|
8206
8851
|
static readonly code: string;
|
|
8207
8852
|
static readonly statusCode: number;
|
|
8208
8853
|
static readonly description: string;
|
|
8209
|
-
constructor(body:
|
|
8854
|
+
constructor(body: PublicInvalidDomains & FreestyleError);
|
|
8210
8855
|
}
|
|
8211
|
-
interface
|
|
8856
|
+
interface PublicWebDeploymentBadRequest {
|
|
8212
8857
|
message: string;
|
|
8213
8858
|
[k: string]: unknown;
|
|
8214
8859
|
}
|
|
8215
|
-
declare class
|
|
8216
|
-
body:
|
|
8860
|
+
declare class WebDeploymentBadRequestError extends Error {
|
|
8861
|
+
body: PublicWebDeploymentBadRequest & FreestyleError;
|
|
8217
8862
|
static readonly code: string;
|
|
8218
8863
|
static readonly statusCode: number;
|
|
8219
8864
|
static readonly description: string;
|
|
8220
|
-
constructor(body:
|
|
8865
|
+
constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
|
|
8221
8866
|
}
|
|
8222
|
-
interface
|
|
8223
|
-
|
|
8867
|
+
interface PublicTimeoutLimitExceeded {
|
|
8868
|
+
requestedMs: number;
|
|
8869
|
+
maxMs: number;
|
|
8224
8870
|
[k: string]: unknown;
|
|
8225
8871
|
}
|
|
8226
|
-
declare class
|
|
8227
|
-
body:
|
|
8872
|
+
declare class TimeoutLimitExceededError extends Error {
|
|
8873
|
+
body: PublicTimeoutLimitExceeded & FreestyleError;
|
|
8228
8874
|
static readonly code: string;
|
|
8229
8875
|
static readonly statusCode: number;
|
|
8230
8876
|
static readonly description: string;
|
|
8231
|
-
constructor(body:
|
|
8877
|
+
constructor(body: PublicTimeoutLimitExceeded & FreestyleError);
|
|
8232
8878
|
}
|
|
8233
|
-
interface
|
|
8234
|
-
|
|
8879
|
+
interface PublicDeploymentLimitExceeded {
|
|
8880
|
+
limit: number;
|
|
8881
|
+
current: number;
|
|
8235
8882
|
[k: string]: unknown;
|
|
8236
8883
|
}
|
|
8237
|
-
declare class
|
|
8238
|
-
body:
|
|
8884
|
+
declare class DeploymentLimitExceededError extends Error {
|
|
8885
|
+
body: PublicDeploymentLimitExceeded & FreestyleError;
|
|
8239
8886
|
static readonly code: string;
|
|
8240
8887
|
static readonly statusCode: number;
|
|
8241
8888
|
static readonly description: string;
|
|
8242
|
-
constructor(body:
|
|
8889
|
+
constructor(body: PublicDeploymentLimitExceeded & FreestyleError);
|
|
8243
8890
|
}
|
|
8244
|
-
|
|
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 {
|
|
8245
8899
|
message: string;
|
|
8246
8900
|
[k: string]: unknown;
|
|
8247
8901
|
}
|
|
8248
|
-
declare class
|
|
8249
|
-
body:
|
|
8902
|
+
declare class ResizeFailedError extends Error {
|
|
8903
|
+
body: PublicResizeFailed & FreestyleError;
|
|
8250
8904
|
static readonly code: string;
|
|
8251
8905
|
static readonly statusCode: number;
|
|
8252
8906
|
static readonly description: string;
|
|
8253
|
-
constructor(body:
|
|
8907
|
+
constructor(body: PublicResizeFailed & FreestyleError);
|
|
8254
8908
|
}
|
|
8255
|
-
|
|
8256
|
-
|
|
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;
|
|
8257
8926
|
[k: string]: unknown;
|
|
8258
8927
|
}
|
|
8259
|
-
declare class
|
|
8260
|
-
body:
|
|
8928
|
+
declare class SnapshotLimitExceededError extends Error {
|
|
8929
|
+
body: PublicSnapshotLimitExceeded & FreestyleError;
|
|
8261
8930
|
static readonly code: string;
|
|
8262
8931
|
static readonly statusCode: number;
|
|
8263
8932
|
static readonly description: string;
|
|
8264
|
-
constructor(body:
|
|
8933
|
+
constructor(body: PublicSnapshotLimitExceeded & FreestyleError);
|
|
8265
8934
|
}
|
|
8266
|
-
|
|
8267
|
-
|
|
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;
|
|
8268
8945
|
[k: string]: unknown;
|
|
8269
8946
|
}
|
|
8270
|
-
declare class
|
|
8271
|
-
body:
|
|
8947
|
+
declare class TotalVmLimitExceededError extends Error {
|
|
8948
|
+
body: PublicTotalVmLimitExceeded & FreestyleError;
|
|
8272
8949
|
static readonly code: string;
|
|
8273
8950
|
static readonly statusCode: number;
|
|
8274
8951
|
static readonly description: string;
|
|
8275
|
-
constructor(body:
|
|
8952
|
+
constructor(body: PublicTotalVmLimitExceeded & FreestyleError);
|
|
8276
8953
|
}
|
|
8277
|
-
interface
|
|
8278
|
-
|
|
8954
|
+
interface PublicVmLimitExceeded {
|
|
8955
|
+
limit: number;
|
|
8956
|
+
current: number;
|
|
8279
8957
|
[k: string]: unknown;
|
|
8280
8958
|
}
|
|
8281
|
-
declare class
|
|
8282
|
-
body:
|
|
8959
|
+
declare class VmLimitExceededError extends Error {
|
|
8960
|
+
body: PublicVmLimitExceeded & FreestyleError;
|
|
8283
8961
|
static readonly code: string;
|
|
8284
8962
|
static readonly statusCode: number;
|
|
8285
8963
|
static readonly description: string;
|
|
8286
|
-
constructor(body:
|
|
8964
|
+
constructor(body: PublicVmLimitExceeded & FreestyleError);
|
|
8287
8965
|
}
|
|
8288
|
-
interface
|
|
8966
|
+
interface PublicObservabilityDatabaseError {
|
|
8289
8967
|
message: string;
|
|
8290
8968
|
[k: string]: unknown;
|
|
8291
8969
|
}
|
|
8292
|
-
declare class
|
|
8293
|
-
body:
|
|
8970
|
+
declare class ObservabilityDatabaseErrorError extends Error {
|
|
8971
|
+
body: PublicObservabilityDatabaseError & FreestyleError;
|
|
8294
8972
|
static readonly code: string;
|
|
8295
8973
|
static readonly statusCode: number;
|
|
8296
8974
|
static readonly description: string;
|
|
8297
|
-
constructor(body:
|
|
8975
|
+
constructor(body: PublicObservabilityDatabaseError & FreestyleError);
|
|
8298
8976
|
}
|
|
8299
|
-
interface
|
|
8300
|
-
|
|
8977
|
+
interface PublicObservabilityAccessDenied {
|
|
8978
|
+
deploymentId: string;
|
|
8301
8979
|
[k: string]: unknown;
|
|
8302
8980
|
}
|
|
8303
|
-
declare class
|
|
8304
|
-
body:
|
|
8981
|
+
declare class ObservabilityAccessDeniedError extends Error {
|
|
8982
|
+
body: PublicObservabilityAccessDenied & FreestyleError;
|
|
8305
8983
|
static readonly code: string;
|
|
8306
8984
|
static readonly statusCode: number;
|
|
8307
8985
|
static readonly description: string;
|
|
8308
|
-
constructor(body:
|
|
8986
|
+
constructor(body: PublicObservabilityAccessDenied & FreestyleError);
|
|
8309
8987
|
}
|
|
8310
|
-
interface
|
|
8311
|
-
|
|
8312
|
-
|
|
8988
|
+
interface PublicParseLogsFailed {
|
|
8989
|
+
message: string;
|
|
8990
|
+
[k: string]: unknown;
|
|
8991
|
+
}
|
|
8992
|
+
declare class ParseLogsFailedError extends Error {
|
|
8993
|
+
body: PublicParseLogsFailed & FreestyleError;
|
|
8994
|
+
static readonly code: string;
|
|
8995
|
+
static readonly statusCode: number;
|
|
8996
|
+
static readonly description: string;
|
|
8997
|
+
constructor(body: PublicParseLogsFailed & FreestyleError);
|
|
8998
|
+
}
|
|
8999
|
+
interface PublicRetrieveLogsFailed {
|
|
9000
|
+
message: string;
|
|
8313
9001
|
[k: string]: unknown;
|
|
8314
9002
|
}
|
|
8315
|
-
declare class
|
|
8316
|
-
body:
|
|
9003
|
+
declare class RetrieveLogsFailedError extends Error {
|
|
9004
|
+
body: PublicRetrieveLogsFailed & FreestyleError;
|
|
8317
9005
|
static readonly code: string;
|
|
8318
9006
|
static readonly statusCode: number;
|
|
8319
9007
|
static readonly description: string;
|
|
8320
|
-
constructor(body:
|
|
9008
|
+
constructor(body: PublicRetrieveLogsFailed & FreestyleError);
|
|
8321
9009
|
}
|
|
8322
|
-
|
|
8323
|
-
|
|
9010
|
+
interface PublicInvalidQuery {
|
|
9011
|
+
message: string;
|
|
9012
|
+
[k: string]: unknown;
|
|
9013
|
+
}
|
|
9014
|
+
declare class InvalidQueryError extends Error {
|
|
9015
|
+
body: PublicInvalidQuery & FreestyleError;
|
|
8324
9016
|
static readonly code: string;
|
|
8325
9017
|
static readonly statusCode: number;
|
|
8326
9018
|
static readonly description: string;
|
|
8327
|
-
constructor(body:
|
|
9019
|
+
constructor(body: PublicInvalidQuery & FreestyleError);
|
|
8328
9020
|
}
|
|
8329
|
-
interface
|
|
8330
|
-
|
|
9021
|
+
interface PublicLogsNotFound {
|
|
9022
|
+
deploymentId: string;
|
|
8331
9023
|
[k: string]: unknown;
|
|
8332
9024
|
}
|
|
8333
|
-
declare class
|
|
8334
|
-
body:
|
|
9025
|
+
declare class LogsNotFoundError extends Error {
|
|
9026
|
+
body: PublicLogsNotFound & FreestyleError;
|
|
8335
9027
|
static readonly code: string;
|
|
8336
9028
|
static readonly statusCode: number;
|
|
8337
9029
|
static readonly description: string;
|
|
8338
|
-
constructor(body:
|
|
9030
|
+
constructor(body: PublicLogsNotFound & FreestyleError);
|
|
8339
9031
|
}
|
|
8340
|
-
|
|
8341
|
-
|
|
9032
|
+
interface PublicDomainOwnershipNotVerified {
|
|
9033
|
+
domain: string;
|
|
9034
|
+
[k: string]: unknown;
|
|
9035
|
+
}
|
|
9036
|
+
declare class DomainOwnershipNotVerifiedError extends Error {
|
|
9037
|
+
body: PublicDomainOwnershipNotVerified & FreestyleError;
|
|
8342
9038
|
static readonly code: string;
|
|
8343
9039
|
static readonly statusCode: number;
|
|
8344
9040
|
static readonly description: string;
|
|
8345
|
-
constructor(body:
|
|
9041
|
+
constructor(body: PublicDomainOwnershipNotVerified & FreestyleError);
|
|
8346
9042
|
}
|
|
8347
|
-
interface
|
|
8348
|
-
|
|
9043
|
+
interface PublicVmAccessDeniedForMapping {
|
|
9044
|
+
vmId: string;
|
|
8349
9045
|
[k: string]: unknown;
|
|
8350
9046
|
}
|
|
8351
|
-
declare class
|
|
8352
|
-
body:
|
|
9047
|
+
declare class VmAccessDeniedForMappingError extends Error {
|
|
9048
|
+
body: PublicVmAccessDeniedForMapping & FreestyleError;
|
|
8353
9049
|
static readonly code: string;
|
|
8354
9050
|
static readonly statusCode: number;
|
|
8355
9051
|
static readonly description: string;
|
|
8356
|
-
constructor(body:
|
|
9052
|
+
constructor(body: PublicVmAccessDeniedForMapping & FreestyleError);
|
|
8357
9053
|
}
|
|
8358
|
-
interface
|
|
8359
|
-
|
|
8360
|
-
reason?: string | null;
|
|
9054
|
+
interface PublicDeploymentAccessDenied {
|
|
9055
|
+
deploymentId: string;
|
|
8361
9056
|
[k: string]: unknown;
|
|
8362
9057
|
}
|
|
8363
|
-
declare class
|
|
8364
|
-
body:
|
|
9058
|
+
declare class DeploymentAccessDeniedError extends Error {
|
|
9059
|
+
body: PublicDeploymentAccessDenied & FreestyleError;
|
|
8365
9060
|
static readonly code: string;
|
|
8366
9061
|
static readonly statusCode: number;
|
|
8367
9062
|
static readonly description: string;
|
|
8368
|
-
constructor(body:
|
|
9063
|
+
constructor(body: PublicDeploymentAccessDenied & FreestyleError);
|
|
8369
9064
|
}
|
|
8370
|
-
|
|
8371
|
-
|
|
9065
|
+
interface PublicFailedToProvisionCertificateForMapping {
|
|
9066
|
+
message: string;
|
|
9067
|
+
[k: string]: unknown;
|
|
9068
|
+
}
|
|
9069
|
+
declare class FailedToProvisionCertificateForMappingError extends Error {
|
|
9070
|
+
body: PublicFailedToProvisionCertificateForMapping & FreestyleError;
|
|
8372
9071
|
static readonly code: string;
|
|
8373
9072
|
static readonly statusCode: number;
|
|
8374
9073
|
static readonly description: string;
|
|
8375
|
-
constructor(body:
|
|
9074
|
+
constructor(body: PublicFailedToProvisionCertificateForMapping & FreestyleError);
|
|
8376
9075
|
}
|
|
8377
|
-
interface
|
|
8378
|
-
|
|
9076
|
+
interface PublicFailedInsertDomainMapping {
|
|
9077
|
+
message: string;
|
|
8379
9078
|
[k: string]: unknown;
|
|
8380
9079
|
}
|
|
8381
|
-
declare class
|
|
8382
|
-
body:
|
|
9080
|
+
declare class FailedInsertDomainMappingError extends Error {
|
|
9081
|
+
body: PublicFailedInsertDomainMapping & FreestyleError;
|
|
8383
9082
|
static readonly code: string;
|
|
8384
9083
|
static readonly statusCode: number;
|
|
8385
9084
|
static readonly description: string;
|
|
8386
|
-
constructor(body:
|
|
9085
|
+
constructor(body: PublicFailedInsertDomainMapping & FreestyleError);
|
|
8387
9086
|
}
|
|
8388
|
-
interface
|
|
9087
|
+
interface PublicDomainAlreadyExists {
|
|
8389
9088
|
domain: string;
|
|
8390
9089
|
[k: string]: unknown;
|
|
8391
9090
|
}
|
|
8392
|
-
declare class
|
|
8393
|
-
body:
|
|
9091
|
+
declare class DomainAlreadyExistsError extends Error {
|
|
9092
|
+
body: PublicDomainAlreadyExists & FreestyleError;
|
|
8394
9093
|
static readonly code: string;
|
|
8395
9094
|
static readonly statusCode: number;
|
|
8396
9095
|
static readonly description: string;
|
|
8397
|
-
constructor(body:
|
|
9096
|
+
constructor(body: PublicDomainAlreadyExists & FreestyleError);
|
|
8398
9097
|
}
|
|
8399
|
-
interface
|
|
8400
|
-
|
|
9098
|
+
interface PublicFailedToInsertOwnership {
|
|
9099
|
+
message: string;
|
|
8401
9100
|
[k: string]: unknown;
|
|
8402
9101
|
}
|
|
8403
|
-
declare class
|
|
8404
|
-
body:
|
|
9102
|
+
declare class FailedToInsertOwnershipError extends Error {
|
|
9103
|
+
body: PublicFailedToInsertOwnership & FreestyleError;
|
|
8405
9104
|
static readonly code: string;
|
|
8406
9105
|
static readonly statusCode: number;
|
|
8407
9106
|
static readonly description: string;
|
|
8408
|
-
constructor(body:
|
|
9107
|
+
constructor(body: PublicFailedToInsertOwnership & FreestyleError);
|
|
8409
9108
|
}
|
|
8410
|
-
interface
|
|
9109
|
+
interface PublicFailedRemoveDomainMapping {
|
|
8411
9110
|
message: string;
|
|
8412
9111
|
[k: string]: unknown;
|
|
8413
9112
|
}
|
|
8414
|
-
declare class
|
|
8415
|
-
body:
|
|
9113
|
+
declare class FailedRemoveDomainMappingError extends Error {
|
|
9114
|
+
body: PublicFailedRemoveDomainMapping & FreestyleError;
|
|
8416
9115
|
static readonly code: string;
|
|
8417
9116
|
static readonly statusCode: number;
|
|
8418
9117
|
static readonly description: string;
|
|
8419
|
-
constructor(body:
|
|
9118
|
+
constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
|
|
8420
9119
|
}
|
|
8421
|
-
interface
|
|
8422
|
-
|
|
8423
|
-
maxMs: number;
|
|
9120
|
+
interface PublicFailedPermissionsCheck {
|
|
9121
|
+
domain: string;
|
|
8424
9122
|
[k: string]: unknown;
|
|
8425
9123
|
}
|
|
8426
|
-
declare class
|
|
8427
|
-
body:
|
|
9124
|
+
declare class FailedPermissionsCheckError extends Error {
|
|
9125
|
+
body: PublicFailedPermissionsCheck & FreestyleError;
|
|
8428
9126
|
static readonly code: string;
|
|
8429
9127
|
static readonly statusCode: number;
|
|
8430
9128
|
static readonly description: string;
|
|
8431
|
-
constructor(body:
|
|
9129
|
+
constructor(body: PublicFailedPermissionsCheck & FreestyleError);
|
|
8432
9130
|
}
|
|
8433
|
-
interface
|
|
8434
|
-
|
|
8435
|
-
current: number;
|
|
9131
|
+
interface PublicFailedToCheckDomainMappingPermissions {
|
|
9132
|
+
message: string;
|
|
8436
9133
|
[k: string]: unknown;
|
|
8437
9134
|
}
|
|
8438
|
-
declare class
|
|
8439
|
-
body:
|
|
9135
|
+
declare class FailedToCheckDomainMappingPermissionsError extends Error {
|
|
9136
|
+
body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
|
|
8440
9137
|
static readonly code: string;
|
|
8441
9138
|
static readonly statusCode: number;
|
|
8442
9139
|
static readonly description: string;
|
|
8443
|
-
constructor(body:
|
|
9140
|
+
constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
|
|
8444
9141
|
}
|
|
8445
|
-
declare class
|
|
9142
|
+
declare class DomainOwnershipVerificationFailedError extends Error {
|
|
8446
9143
|
body: unknown & FreestyleError;
|
|
8447
9144
|
static readonly code: string;
|
|
8448
9145
|
static readonly statusCode: number;
|
|
8449
9146
|
static readonly description: string;
|
|
8450
9147
|
constructor(body: unknown & FreestyleError);
|
|
8451
9148
|
}
|
|
8452
|
-
interface
|
|
9149
|
+
interface PublicErrorDeletingRecord {
|
|
9150
|
+
domain: string;
|
|
9151
|
+
name: string;
|
|
8453
9152
|
message: string;
|
|
8454
9153
|
[k: string]: unknown;
|
|
8455
9154
|
}
|
|
8456
|
-
declare class
|
|
8457
|
-
body:
|
|
9155
|
+
declare class ErrorDeletingRecordError extends Error {
|
|
9156
|
+
body: PublicErrorDeletingRecord & FreestyleError;
|
|
8458
9157
|
static readonly code: string;
|
|
8459
9158
|
static readonly statusCode: number;
|
|
8460
9159
|
static readonly description: string;
|
|
8461
|
-
constructor(body:
|
|
9160
|
+
constructor(body: PublicErrorDeletingRecord & FreestyleError);
|
|
8462
9161
|
}
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
|
|
8466
|
-
|
|
8467
|
-
static readonly description: string;
|
|
8468
|
-
constructor(body: unknown & FreestyleError);
|
|
9162
|
+
interface PublicRecordOwnershipError {
|
|
9163
|
+
recordId: string;
|
|
9164
|
+
accountId: string;
|
|
9165
|
+
[k: string]: unknown;
|
|
8469
9166
|
}
|
|
8470
|
-
declare class
|
|
8471
|
-
body:
|
|
9167
|
+
declare class RecordOwnershipErrorError extends Error {
|
|
9168
|
+
body: PublicRecordOwnershipError & FreestyleError;
|
|
8472
9169
|
static readonly code: string;
|
|
8473
9170
|
static readonly statusCode: number;
|
|
8474
9171
|
static readonly description: string;
|
|
8475
|
-
constructor(body:
|
|
9172
|
+
constructor(body: PublicRecordOwnershipError & FreestyleError);
|
|
8476
9173
|
}
|
|
8477
|
-
|
|
8478
|
-
|
|
9174
|
+
interface PublicErrorCreatingRecord {
|
|
9175
|
+
message: string;
|
|
9176
|
+
[k: string]: unknown;
|
|
9177
|
+
}
|
|
9178
|
+
declare class ErrorCreatingRecordError extends Error {
|
|
9179
|
+
body: PublicErrorCreatingRecord & FreestyleError;
|
|
8479
9180
|
static readonly code: string;
|
|
8480
9181
|
static readonly statusCode: number;
|
|
8481
9182
|
static readonly description: string;
|
|
8482
|
-
constructor(body:
|
|
9183
|
+
constructor(body: PublicErrorCreatingRecord & FreestyleError);
|
|
8483
9184
|
}
|
|
8484
|
-
interface
|
|
8485
|
-
|
|
8486
|
-
|
|
9185
|
+
interface PublicDomainOwnershipError {
|
|
9186
|
+
domain: string;
|
|
9187
|
+
accountId: string;
|
|
8487
9188
|
[k: string]: unknown;
|
|
8488
9189
|
}
|
|
8489
|
-
declare class
|
|
8490
|
-
body:
|
|
9190
|
+
declare class DomainOwnershipErrorError extends Error {
|
|
9191
|
+
body: PublicDomainOwnershipError & FreestyleError;
|
|
8491
9192
|
static readonly code: string;
|
|
8492
9193
|
static readonly statusCode: number;
|
|
8493
9194
|
static readonly description: string;
|
|
8494
|
-
constructor(body:
|
|
9195
|
+
constructor(body: PublicDomainOwnershipError & FreestyleError);
|
|
8495
9196
|
}
|
|
8496
9197
|
interface PublicTriggerError {
|
|
8497
9198
|
message: string;
|
|
@@ -8698,145 +9399,176 @@ declare class RepositoryNotFoundError extends Error {
|
|
|
8698
9399
|
static readonly description: string;
|
|
8699
9400
|
constructor(body: PublicRepositoryNotFound & FreestyleError);
|
|
8700
9401
|
}
|
|
8701
|
-
interface
|
|
8702
|
-
|
|
9402
|
+
interface PublicExecuteInternalError {
|
|
9403
|
+
message: string;
|
|
8703
9404
|
[k: string]: unknown;
|
|
8704
9405
|
}
|
|
8705
|
-
declare class
|
|
8706
|
-
body:
|
|
9406
|
+
declare class ExecuteInternalErrorError extends Error {
|
|
9407
|
+
body: PublicExecuteInternalError & FreestyleError;
|
|
8707
9408
|
static readonly code: string;
|
|
8708
9409
|
static readonly statusCode: number;
|
|
8709
9410
|
static readonly description: string;
|
|
8710
|
-
constructor(body:
|
|
9411
|
+
constructor(body: PublicExecuteInternalError & FreestyleError);
|
|
8711
9412
|
}
|
|
8712
|
-
|
|
8713
|
-
|
|
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;
|
|
8714
9422
|
[k: string]: unknown;
|
|
8715
9423
|
}
|
|
8716
|
-
declare class
|
|
8717
|
-
body:
|
|
9424
|
+
declare class ListRunsFailedError extends Error {
|
|
9425
|
+
body: PublicListRunsFailed & FreestyleError;
|
|
8718
9426
|
static readonly code: string;
|
|
8719
9427
|
static readonly statusCode: number;
|
|
8720
9428
|
static readonly description: string;
|
|
8721
|
-
constructor(body:
|
|
9429
|
+
constructor(body: PublicListRunsFailed & FreestyleError);
|
|
8722
9430
|
}
|
|
8723
|
-
interface
|
|
8724
|
-
|
|
9431
|
+
interface PublicExecutionError {
|
|
9432
|
+
message: string;
|
|
8725
9433
|
[k: string]: unknown;
|
|
8726
9434
|
}
|
|
8727
|
-
declare class
|
|
8728
|
-
body:
|
|
9435
|
+
declare class ExecutionErrorError extends Error {
|
|
9436
|
+
body: PublicExecutionError & FreestyleError;
|
|
8729
9437
|
static readonly code: string;
|
|
8730
9438
|
static readonly statusCode: number;
|
|
8731
9439
|
static readonly description: string;
|
|
8732
|
-
constructor(body:
|
|
9440
|
+
constructor(body: PublicExecutionError & FreestyleError);
|
|
8733
9441
|
}
|
|
8734
|
-
interface
|
|
9442
|
+
interface PublicConnectionFailed {
|
|
8735
9443
|
message: string;
|
|
8736
9444
|
[k: string]: unknown;
|
|
8737
9445
|
}
|
|
8738
|
-
declare class
|
|
8739
|
-
body:
|
|
9446
|
+
declare class ConnectionFailedError extends Error {
|
|
9447
|
+
body: PublicConnectionFailed & FreestyleError;
|
|
8740
9448
|
static readonly code: string;
|
|
8741
9449
|
static readonly statusCode: number;
|
|
8742
9450
|
static readonly description: string;
|
|
8743
|
-
constructor(body:
|
|
9451
|
+
constructor(body: PublicConnectionFailed & FreestyleError);
|
|
8744
9452
|
}
|
|
8745
|
-
interface
|
|
9453
|
+
interface PublicMetadataWriteFailed {
|
|
8746
9454
|
message: string;
|
|
8747
9455
|
[k: string]: unknown;
|
|
8748
9456
|
}
|
|
8749
|
-
declare class
|
|
8750
|
-
body:
|
|
9457
|
+
declare class MetadataWriteFailedError extends Error {
|
|
9458
|
+
body: PublicMetadataWriteFailed & FreestyleError;
|
|
8751
9459
|
static readonly code: string;
|
|
8752
9460
|
static readonly statusCode: number;
|
|
8753
9461
|
static readonly description: string;
|
|
8754
|
-
constructor(body:
|
|
9462
|
+
constructor(body: PublicMetadataWriteFailed & FreestyleError);
|
|
8755
9463
|
}
|
|
8756
|
-
interface
|
|
8757
|
-
|
|
9464
|
+
interface PublicNodeModulesInstallFailed {
|
|
9465
|
+
message: string;
|
|
9466
|
+
[k: string]: unknown;
|
|
9467
|
+
}
|
|
9468
|
+
declare class NodeModulesInstallFailedError extends Error {
|
|
9469
|
+
body: PublicNodeModulesInstallFailed & FreestyleError;
|
|
9470
|
+
static readonly code: string;
|
|
9471
|
+
static readonly statusCode: number;
|
|
9472
|
+
static readonly description: string;
|
|
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);
|
|
9485
|
+
}
|
|
9486
|
+
interface PublicLockGenerationFailed {
|
|
9487
|
+
message: string;
|
|
8758
9488
|
[k: string]: unknown;
|
|
8759
9489
|
}
|
|
8760
|
-
declare class
|
|
8761
|
-
body:
|
|
9490
|
+
declare class LockGenerationFailedError extends Error {
|
|
9491
|
+
body: PublicLockGenerationFailed & FreestyleError;
|
|
8762
9492
|
static readonly code: string;
|
|
8763
9493
|
static readonly statusCode: number;
|
|
8764
9494
|
static readonly description: string;
|
|
8765
|
-
constructor(body:
|
|
9495
|
+
constructor(body: PublicLockGenerationFailed & FreestyleError);
|
|
8766
9496
|
}
|
|
8767
|
-
interface
|
|
9497
|
+
interface PublicWriteScriptFailed {
|
|
8768
9498
|
message: string;
|
|
8769
9499
|
[k: string]: unknown;
|
|
8770
9500
|
}
|
|
8771
|
-
declare class
|
|
8772
|
-
body:
|
|
9501
|
+
declare class WriteScriptFailedError extends Error {
|
|
9502
|
+
body: PublicWriteScriptFailed & FreestyleError;
|
|
8773
9503
|
static readonly code: string;
|
|
8774
9504
|
static readonly statusCode: number;
|
|
8775
9505
|
static readonly description: string;
|
|
8776
|
-
constructor(body:
|
|
9506
|
+
constructor(body: PublicWriteScriptFailed & FreestyleError);
|
|
8777
9507
|
}
|
|
8778
|
-
interface
|
|
9508
|
+
interface PublicDirectoryCreationFailed {
|
|
8779
9509
|
message: string;
|
|
8780
9510
|
[k: string]: unknown;
|
|
8781
9511
|
}
|
|
8782
|
-
declare class
|
|
8783
|
-
body:
|
|
9512
|
+
declare class DirectoryCreationFailedError extends Error {
|
|
9513
|
+
body: PublicDirectoryCreationFailed & FreestyleError;
|
|
8784
9514
|
static readonly code: string;
|
|
8785
9515
|
static readonly statusCode: number;
|
|
8786
9516
|
static readonly description: string;
|
|
8787
|
-
constructor(body:
|
|
9517
|
+
constructor(body: PublicDirectoryCreationFailed & FreestyleError);
|
|
8788
9518
|
}
|
|
8789
|
-
interface
|
|
8790
|
-
|
|
9519
|
+
interface PublicNetworkPermissionsFailed {
|
|
9520
|
+
message: string;
|
|
8791
9521
|
[k: string]: unknown;
|
|
8792
9522
|
}
|
|
8793
|
-
declare class
|
|
8794
|
-
body:
|
|
9523
|
+
declare class NetworkPermissionsFailedError extends Error {
|
|
9524
|
+
body: PublicNetworkPermissionsFailed & FreestyleError;
|
|
8795
9525
|
static readonly code: string;
|
|
8796
9526
|
static readonly statusCode: number;
|
|
8797
9527
|
static readonly description: string;
|
|
8798
|
-
constructor(body:
|
|
9528
|
+
constructor(body: PublicNetworkPermissionsFailed & FreestyleError);
|
|
8799
9529
|
}
|
|
8800
|
-
interface
|
|
9530
|
+
interface PublicLoggingFailed {
|
|
8801
9531
|
message: string;
|
|
8802
9532
|
[k: string]: unknown;
|
|
8803
9533
|
}
|
|
8804
|
-
declare class
|
|
8805
|
-
body:
|
|
9534
|
+
declare class LoggingFailedError extends Error {
|
|
9535
|
+
body: PublicLoggingFailed & FreestyleError;
|
|
8806
9536
|
static readonly code: string;
|
|
8807
9537
|
static readonly statusCode: number;
|
|
8808
9538
|
static readonly description: string;
|
|
8809
|
-
constructor(body:
|
|
9539
|
+
constructor(body: PublicLoggingFailed & FreestyleError);
|
|
8810
9540
|
}
|
|
8811
|
-
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
|
-
static readonly statusCode: number;
|
|
8815
|
-
static readonly description: string;
|
|
8816
|
-
constructor(body: unknown & FreestyleError);
|
|
9541
|
+
interface PublicRunNotFound {
|
|
9542
|
+
runId: string;
|
|
9543
|
+
[k: string]: unknown;
|
|
8817
9544
|
}
|
|
8818
|
-
declare class
|
|
8819
|
-
body:
|
|
9545
|
+
declare class RunNotFoundError extends Error {
|
|
9546
|
+
body: PublicRunNotFound & FreestyleError;
|
|
8820
9547
|
static readonly code: string;
|
|
8821
9548
|
static readonly statusCode: number;
|
|
8822
9549
|
static readonly description: string;
|
|
8823
|
-
constructor(body:
|
|
9550
|
+
constructor(body: PublicRunNotFound & FreestyleError);
|
|
8824
9551
|
}
|
|
8825
|
-
|
|
8826
|
-
|
|
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;
|
|
8827
9559
|
static readonly code: string;
|
|
8828
9560
|
static readonly statusCode: number;
|
|
8829
9561
|
static readonly description: string;
|
|
8830
|
-
constructor(body:
|
|
9562
|
+
constructor(body: UnauthorizedErrorPublic & FreestyleError);
|
|
8831
9563
|
}
|
|
8832
|
-
declare class
|
|
9564
|
+
declare class GitRepoLimitExceededError extends Error {
|
|
8833
9565
|
body: unknown & FreestyleError;
|
|
8834
9566
|
static readonly code: string;
|
|
8835
9567
|
static readonly statusCode: number;
|
|
8836
9568
|
static readonly description: string;
|
|
8837
9569
|
constructor(body: unknown & FreestyleError);
|
|
8838
9570
|
}
|
|
8839
|
-
declare class
|
|
9571
|
+
declare class EmptyTagError extends Error {
|
|
8840
9572
|
body: unknown & FreestyleError;
|
|
8841
9573
|
static readonly code: string;
|
|
8842
9574
|
static readonly statusCode: number;
|
|
@@ -9027,159 +9759,149 @@ declare class IdentityNotFoundError extends Error {
|
|
|
9027
9759
|
static readonly description: string;
|
|
9028
9760
|
constructor(body: unknown & FreestyleError);
|
|
9029
9761
|
}
|
|
9030
|
-
|
|
9031
|
-
|
|
9032
|
-
|
|
9033
|
-
static readonly statusCode: number;
|
|
9034
|
-
static readonly description: string;
|
|
9035
|
-
constructor(body: unknown & FreestyleError);
|
|
9036
|
-
}
|
|
9037
|
-
interface PublicErrorDeletingRecord {
|
|
9038
|
-
domain: string;
|
|
9039
|
-
name: string;
|
|
9040
|
-
message: string;
|
|
9762
|
+
interface PublicLimitExceeded {
|
|
9763
|
+
limit: number;
|
|
9764
|
+
current: number;
|
|
9041
9765
|
[k: string]: unknown;
|
|
9042
9766
|
}
|
|
9043
|
-
declare class
|
|
9044
|
-
body:
|
|
9767
|
+
declare class LimitExceededError extends Error {
|
|
9768
|
+
body: PublicLimitExceeded & FreestyleError;
|
|
9045
9769
|
static readonly code: string;
|
|
9046
9770
|
static readonly statusCode: number;
|
|
9047
9771
|
static readonly description: string;
|
|
9048
|
-
constructor(body:
|
|
9772
|
+
constructor(body: PublicLimitExceeded & FreestyleError);
|
|
9049
9773
|
}
|
|
9050
|
-
interface
|
|
9051
|
-
|
|
9052
|
-
accountId: string;
|
|
9774
|
+
interface PublicFailedToProvisionCertificate {
|
|
9775
|
+
message: string;
|
|
9053
9776
|
[k: string]: unknown;
|
|
9054
9777
|
}
|
|
9055
|
-
declare class
|
|
9056
|
-
body:
|
|
9778
|
+
declare class FailedToProvisionCertificateError extends Error {
|
|
9779
|
+
body: PublicFailedToProvisionCertificate & FreestyleError;
|
|
9057
9780
|
static readonly code: string;
|
|
9058
9781
|
static readonly statusCode: number;
|
|
9059
9782
|
static readonly description: string;
|
|
9060
|
-
constructor(body:
|
|
9783
|
+
constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
|
|
9061
9784
|
}
|
|
9062
|
-
interface
|
|
9785
|
+
interface PublicFailedToInsertDomainMapping {
|
|
9063
9786
|
message: string;
|
|
9064
9787
|
[k: string]: unknown;
|
|
9065
9788
|
}
|
|
9066
|
-
declare class
|
|
9067
|
-
body:
|
|
9789
|
+
declare class FailedToInsertDomainMappingError extends Error {
|
|
9790
|
+
body: PublicFailedToInsertDomainMapping & FreestyleError;
|
|
9068
9791
|
static readonly code: string;
|
|
9069
9792
|
static readonly statusCode: number;
|
|
9070
9793
|
static readonly description: string;
|
|
9071
|
-
constructor(body:
|
|
9794
|
+
constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
|
|
9072
9795
|
}
|
|
9073
|
-
interface
|
|
9074
|
-
|
|
9075
|
-
accountId: string;
|
|
9796
|
+
interface PublicPermissionDenied {
|
|
9797
|
+
message: string;
|
|
9076
9798
|
[k: string]: unknown;
|
|
9077
9799
|
}
|
|
9078
|
-
declare class
|
|
9079
|
-
body:
|
|
9800
|
+
declare class PermissionDeniedError extends Error {
|
|
9801
|
+
body: PublicPermissionDenied & FreestyleError;
|
|
9080
9802
|
static readonly code: string;
|
|
9081
9803
|
static readonly statusCode: number;
|
|
9082
9804
|
static readonly description: string;
|
|
9083
|
-
constructor(body:
|
|
9805
|
+
constructor(body: PublicPermissionDenied & FreestyleError);
|
|
9084
9806
|
}
|
|
9085
|
-
interface
|
|
9807
|
+
interface PublicFailedToCheckPermissions {
|
|
9086
9808
|
message: string;
|
|
9087
9809
|
[k: string]: unknown;
|
|
9088
9810
|
}
|
|
9089
|
-
declare class
|
|
9090
|
-
body:
|
|
9811
|
+
declare class FailedToCheckPermissionsError extends Error {
|
|
9812
|
+
body: PublicFailedToCheckPermissions & FreestyleError;
|
|
9091
9813
|
static readonly code: string;
|
|
9092
9814
|
static readonly statusCode: number;
|
|
9093
9815
|
static readonly description: string;
|
|
9094
|
-
constructor(body:
|
|
9816
|
+
constructor(body: PublicFailedToCheckPermissions & FreestyleError);
|
|
9095
9817
|
}
|
|
9096
|
-
interface
|
|
9818
|
+
interface PublicFailedToListDomains {
|
|
9097
9819
|
message: string;
|
|
9098
9820
|
[k: string]: unknown;
|
|
9099
9821
|
}
|
|
9100
|
-
declare class
|
|
9101
|
-
body:
|
|
9822
|
+
declare class FailedToListDomainsError extends Error {
|
|
9823
|
+
body: PublicFailedToListDomains & FreestyleError;
|
|
9102
9824
|
static readonly code: string;
|
|
9103
9825
|
static readonly statusCode: number;
|
|
9104
9826
|
static readonly description: string;
|
|
9105
|
-
constructor(body:
|
|
9827
|
+
constructor(body: PublicFailedToListDomains & FreestyleError);
|
|
9106
9828
|
}
|
|
9107
|
-
interface
|
|
9108
|
-
|
|
9829
|
+
interface PublicFailedToListVerifications {
|
|
9830
|
+
message: string;
|
|
9109
9831
|
[k: string]: unknown;
|
|
9110
9832
|
}
|
|
9111
|
-
declare class
|
|
9112
|
-
body:
|
|
9833
|
+
declare class FailedToListVerificationsError extends Error {
|
|
9834
|
+
body: PublicFailedToListVerifications & FreestyleError;
|
|
9113
9835
|
static readonly code: string;
|
|
9114
9836
|
static readonly statusCode: number;
|
|
9115
9837
|
static readonly description: string;
|
|
9116
|
-
constructor(body:
|
|
9838
|
+
constructor(body: PublicFailedToListVerifications & FreestyleError);
|
|
9117
9839
|
}
|
|
9118
|
-
interface
|
|
9840
|
+
interface PublicFailedToVerifyDomain {
|
|
9119
9841
|
message: string;
|
|
9120
9842
|
[k: string]: unknown;
|
|
9121
9843
|
}
|
|
9122
|
-
declare class
|
|
9123
|
-
body:
|
|
9844
|
+
declare class FailedToVerifyDomainError extends Error {
|
|
9845
|
+
body: PublicFailedToVerifyDomain & FreestyleError;
|
|
9124
9846
|
static readonly code: string;
|
|
9125
9847
|
static readonly statusCode: number;
|
|
9126
9848
|
static readonly description: string;
|
|
9127
|
-
constructor(body:
|
|
9849
|
+
constructor(body: PublicFailedToVerifyDomain & FreestyleError);
|
|
9128
9850
|
}
|
|
9129
|
-
interface
|
|
9851
|
+
interface PublicVerificationFailed {
|
|
9130
9852
|
message: string;
|
|
9131
9853
|
[k: string]: unknown;
|
|
9132
9854
|
}
|
|
9133
|
-
declare class
|
|
9134
|
-
body:
|
|
9855
|
+
declare class VerificationFailedError extends Error {
|
|
9856
|
+
body: PublicVerificationFailed & FreestyleError;
|
|
9135
9857
|
static readonly code: string;
|
|
9136
9858
|
static readonly statusCode: number;
|
|
9137
9859
|
static readonly description: string;
|
|
9138
|
-
constructor(body:
|
|
9860
|
+
constructor(body: PublicVerificationFailed & FreestyleError);
|
|
9139
9861
|
}
|
|
9140
|
-
interface
|
|
9862
|
+
interface PublicFailedToDeleteVerification {
|
|
9141
9863
|
message: string;
|
|
9142
9864
|
[k: string]: unknown;
|
|
9143
9865
|
}
|
|
9144
|
-
declare class
|
|
9145
|
-
body:
|
|
9866
|
+
declare class FailedToDeleteVerificationError extends Error {
|
|
9867
|
+
body: PublicFailedToDeleteVerification & FreestyleError;
|
|
9146
9868
|
static readonly code: string;
|
|
9147
9869
|
static readonly statusCode: number;
|
|
9148
9870
|
static readonly description: string;
|
|
9149
|
-
constructor(body:
|
|
9871
|
+
constructor(body: PublicFailedToDeleteVerification & FreestyleError);
|
|
9150
9872
|
}
|
|
9151
|
-
interface
|
|
9152
|
-
|
|
9873
|
+
interface PublicVerificationNotFound {
|
|
9874
|
+
domain: string;
|
|
9153
9875
|
[k: string]: unknown;
|
|
9154
9876
|
}
|
|
9155
|
-
declare class
|
|
9156
|
-
body:
|
|
9877
|
+
declare class VerificationNotFoundError extends Error {
|
|
9878
|
+
body: PublicVerificationNotFound & FreestyleError;
|
|
9157
9879
|
static readonly code: string;
|
|
9158
9880
|
static readonly statusCode: number;
|
|
9159
9881
|
static readonly description: string;
|
|
9160
|
-
constructor(body:
|
|
9882
|
+
constructor(body: PublicVerificationNotFound & FreestyleError);
|
|
9161
9883
|
}
|
|
9162
|
-
interface
|
|
9884
|
+
interface PublicFailedToCreateVerificationCode {
|
|
9163
9885
|
message: string;
|
|
9164
9886
|
[k: string]: unknown;
|
|
9165
9887
|
}
|
|
9166
|
-
declare class
|
|
9167
|
-
body:
|
|
9888
|
+
declare class FailedToCreateVerificationCodeError extends Error {
|
|
9889
|
+
body: PublicFailedToCreateVerificationCode & FreestyleError;
|
|
9168
9890
|
static readonly code: string;
|
|
9169
9891
|
static readonly statusCode: number;
|
|
9170
9892
|
static readonly description: string;
|
|
9171
|
-
constructor(body:
|
|
9893
|
+
constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
|
|
9172
9894
|
}
|
|
9173
|
-
interface
|
|
9174
|
-
|
|
9895
|
+
interface PublicInvalidDomain {
|
|
9896
|
+
domain: string;
|
|
9175
9897
|
[k: string]: unknown;
|
|
9176
9898
|
}
|
|
9177
|
-
declare class
|
|
9178
|
-
body:
|
|
9899
|
+
declare class InvalidDomainError extends Error {
|
|
9900
|
+
body: PublicInvalidDomain & FreestyleError;
|
|
9179
9901
|
static readonly code: string;
|
|
9180
9902
|
static readonly statusCode: number;
|
|
9181
9903
|
static readonly description: string;
|
|
9182
|
-
constructor(body:
|
|
9904
|
+
constructor(body: PublicInvalidDomain & FreestyleError);
|
|
9183
9905
|
}
|
|
9184
9906
|
declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
9185
9907
|
BAD_PARSE: typeof BadParseError;
|
|
@@ -9188,6 +9910,12 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9188
9910
|
BAD_HEADER: typeof BadHeaderError;
|
|
9189
9911
|
BAD_KEY: typeof BadKeyError;
|
|
9190
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;
|
|
9191
9919
|
SNAPSHOT_NOT_FOUND: typeof SnapshotNotFoundError;
|
|
9192
9920
|
RESUMED_VM_NON_RESPONSIVE: typeof ResumedVmNonResponsiveError;
|
|
9193
9921
|
SNAPSHOT_LOAD_TIMEOUT: typeof SnapshotLoadTimeoutError;
|
|
@@ -9202,19 +9930,26 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9202
9930
|
VM_IS_SUSPENDING: typeof VmIsSuspendingError;
|
|
9203
9931
|
VM_EXIT_DURING_START: typeof VmExitDuringStartError;
|
|
9204
9932
|
VM_ACCESS_DENIED: typeof VmAccessDeniedError;
|
|
9205
|
-
STD_IO: typeof StdIoError;
|
|
9206
9933
|
FAILED_TO_SPAWN_UFFD: typeof FailedToSpawnUffdError;
|
|
9207
9934
|
VM_SPAWN_PROCESS: typeof VmSpawnProcessError;
|
|
9208
9935
|
VM_SUBNET_NOT_FOUND: typeof VmSubnetNotFoundError;
|
|
9209
|
-
|
|
9210
|
-
|
|
9211
|
-
|
|
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;
|
|
9212
9940
|
VM_NOT_FOUND_IN_FS: typeof VmNotFoundInFsError;
|
|
9213
9941
|
VM_NOT_RUNNING: typeof VmNotRunningError;
|
|
9214
9942
|
VM_NOT_FOUND: typeof VmNotFoundError;
|
|
9215
9943
|
INTERNAL_FORK_VM_NOT_FOUND: typeof InternalForkVmNotFoundError;
|
|
9216
9944
|
BAD_REQUEST: typeof BadRequestError;
|
|
9217
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;
|
|
9218
9953
|
USER_NOT_FOUND: typeof UserNotFoundError;
|
|
9219
9954
|
USER_ALREADY_EXISTS: typeof UserAlreadyExistsError;
|
|
9220
9955
|
VALIDATION_ERROR: typeof ValidationErrorError;
|
|
@@ -9231,29 +9966,17 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9231
9966
|
GROUP_NAME_INVALID_CHARS: typeof GroupNameInvalidCharsError;
|
|
9232
9967
|
GROUP_NAME_TOO_LONG: typeof GroupNameTooLongError;
|
|
9233
9968
|
GROUP_NAME_EMPTY: typeof GroupNameEmptyError;
|
|
9234
|
-
NO_DEFAULT_SNAPSHOT_AVAILABLE: typeof NoDefaultSnapshotAvailableError;
|
|
9235
|
-
DOCKER_SNAPSHOT_FAILED: typeof DockerSnapshotFailedError;
|
|
9236
|
-
SET_DEFAULT_SNAPSHOT_FAILED: typeof SetDefaultSnapshotFailedError;
|
|
9237
|
-
SNAPSHOT_LAYER_CREATION_FAILED: typeof SnapshotLayerCreationFailedError;
|
|
9238
|
-
SNAPSHOT_DIR_NOT_FOUND: typeof SnapshotDirNotFoundError;
|
|
9239
|
-
SUBVOLUME_CREATION_FAILED: typeof SubvolumeCreationFailedError;
|
|
9240
|
-
GET_DEFAULT_SNAPSHOT_FAILED: typeof GetDefaultSnapshotFailedError;
|
|
9241
|
-
SNAPSHOT_SETUP_FAILED: typeof SnapshotSetupFailedError;
|
|
9242
|
-
SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
|
|
9243
|
-
DATABASE_ERROR: typeof DatabaseErrorError;
|
|
9244
|
-
PARTITION_NOT_FOUND: typeof PartitionNotFoundError;
|
|
9245
|
-
INVALID_VM_ID: typeof InvalidVmIdError;
|
|
9246
|
-
SUSPEND_FAILED_AND_STOP_FAILED: typeof SuspendFailedAndStopFailedError;
|
|
9247
|
-
SUSPEND_FAILED_AND_STOPPED: typeof SuspendFailedAndStoppedError;
|
|
9248
|
-
FILE_NOT_FOUND: typeof FileNotFoundError;
|
|
9249
|
-
FILES_BAD_REQUEST: typeof FilesBadRequestError;
|
|
9250
|
-
INVALID_GIT_REPO_SPEC_ERROR: typeof InvalidGitRepoSpecErrorError;
|
|
9251
|
-
INTERNAL_ERROR: typeof InternalErrorError;
|
|
9252
|
-
FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
|
|
9253
|
-
CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
|
|
9254
9969
|
ACTIVE_TRANSACTION_ERROR: typeof ActiveTransactionErrorError;
|
|
9255
9970
|
SWAP_VM_TAP: typeof SwapVmTapError;
|
|
9256
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;
|
|
9257
9980
|
CREATE_VM_BAD_REQUEST: typeof CreateVmBadRequestError;
|
|
9258
9981
|
VM_SETUP_FAILED: typeof VmSetupFailedError;
|
|
9259
9982
|
WANTED_BY_EMPTY: typeof WantedByEmptyError;
|
|
@@ -9277,85 +10000,72 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9277
10000
|
RUNTIME_ERROR: typeof RuntimeErrorError;
|
|
9278
10001
|
SYNTAX_ERROR: typeof SyntaxErrorError;
|
|
9279
10002
|
INTERNAL: typeof InternalError;
|
|
9280
|
-
SIGNING: typeof SigningError;
|
|
9281
|
-
INVALID_SIGNATURE: typeof InvalidSignatureError;
|
|
9282
|
-
INVALID_PARAMETERS: typeof InvalidParametersError;
|
|
9283
|
-
MAX_USES_EXCEEDED: typeof MaxUsesExceededError;
|
|
9284
|
-
EXPIRED: typeof ExpiredError;
|
|
9285
|
-
FORBIDDEN: typeof ForbiddenError;
|
|
9286
|
-
UNAUTHORIZED: typeof UnauthorizedError;
|
|
9287
|
-
BLOB_NOT_FOUND: typeof BlobNotFoundError;
|
|
9288
|
-
INVALID_RANGE: typeof InvalidRangeError;
|
|
9289
|
-
OFFSET_WITH_SELECTOR: typeof OffsetWithSelectorError;
|
|
9290
|
-
COMMIT_NOT_IN_BRANCH: typeof CommitNotInBranchError;
|
|
9291
|
-
COMMIT_NOT_FOUND: typeof CommitNotFoundError;
|
|
10003
|
+
SIGNING: typeof SigningError;
|
|
10004
|
+
INVALID_SIGNATURE: typeof InvalidSignatureError;
|
|
10005
|
+
INVALID_PARAMETERS: typeof InvalidParametersError;
|
|
10006
|
+
MAX_USES_EXCEEDED: typeof MaxUsesExceededError;
|
|
10007
|
+
EXPIRED: typeof ExpiredError;
|
|
9292
10008
|
BRANCH_NOT_FOUND: typeof BranchNotFoundError;
|
|
10009
|
+
BRANCH_ALREADY_EXISTS: typeof BranchAlreadyExistsError;
|
|
9293
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;
|
|
9294
10034
|
INVALID_BASE64_CONTENT: typeof InvalidBase64ContentError;
|
|
9295
10035
|
INVALID_FILE_CHANGE: typeof InvalidFileChangeError;
|
|
9296
10036
|
INVALID_FILE_PATH: typeof InvalidFilePathError;
|
|
9297
10037
|
CONFLICTING_PARENT: typeof ConflictingParentError;
|
|
9298
|
-
AMBIGUOUS: typeof AmbiguousError;
|
|
9299
|
-
NOT_FOUND: typeof NotFoundError;
|
|
9300
|
-
INVALID: typeof InvalidError;
|
|
9301
|
-
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
9302
|
-
TREE_NOT_FOUND: typeof TreeNotFoundError;
|
|
9303
|
-
PARENT_NOT_FOUND: typeof ParentNotFoundError;
|
|
9304
|
-
INVALID_SERVICE: typeof InvalidServiceError;
|
|
9305
|
-
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
9306
|
-
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
9307
|
-
REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
|
|
9308
|
-
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
9309
|
-
INVALID_REVISION: typeof InvalidRevisionError;
|
|
9310
|
-
PACKFILE: typeof PackfileError;
|
|
9311
|
-
SEND_ERROR: typeof SendErrorError;
|
|
9312
10038
|
INVALID_ACCOUNT_ID: typeof InvalidAccountIdError;
|
|
9313
10039
|
SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
|
|
9314
10040
|
SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
|
|
9315
10041
|
SOURCE_NOT_FOUND: typeof SourceNotFoundError;
|
|
9316
10042
|
IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
|
|
9317
10043
|
REPO_ALREADY_EXISTS: typeof RepoAlreadyExistsError;
|
|
9318
|
-
|
|
9319
|
-
|
|
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;
|
|
9320
10051
|
GIT_HUB_SYNC_CONFLICT: typeof GitHubSyncConflictError;
|
|
9321
10052
|
INVALID_OBJECT_ID: typeof InvalidObjectIdError;
|
|
10053
|
+
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
10054
|
+
BLOB_NOT_FOUND: typeof BlobNotFoundError;
|
|
9322
10055
|
UNAVAILABLE: typeof UnavailableError;
|
|
9323
10056
|
SCHEDULE_NOT_FOUND: typeof ScheduleNotFoundError;
|
|
9324
10057
|
SERVICE_UNAVAILABLE: typeof ServiceUnavailableError;
|
|
9325
10058
|
EXECUTE_LIMIT_EXCEEDED: typeof ExecuteLimitExceededError;
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
9333
|
-
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
9337
|
-
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
9338
|
-
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
9339
|
-
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
9340
|
-
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
9341
|
-
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
9342
|
-
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
9343
|
-
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
9344
|
-
LOGGING_FAILED: typeof LoggingFailedError;
|
|
9345
|
-
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
9346
|
-
LIMIT_EXCEEDED: typeof LimitExceededError;
|
|
9347
|
-
FAILED_TO_PROVISION_CERTIFICATE: typeof FailedToProvisionCertificateError;
|
|
9348
|
-
FAILED_TO_INSERT_DOMAIN_MAPPING: typeof FailedToInsertDomainMappingError;
|
|
9349
|
-
PERMISSION_DENIED: typeof PermissionDeniedError;
|
|
9350
|
-
FAILED_TO_CHECK_PERMISSIONS: typeof FailedToCheckPermissionsError;
|
|
9351
|
-
FAILED_TO_LIST_DOMAINS: typeof FailedToListDomainsError;
|
|
9352
|
-
FAILED_TO_LIST_VERIFICATIONS: typeof FailedToListVerificationsError;
|
|
9353
|
-
FAILED_TO_VERIFY_DOMAIN: typeof FailedToVerifyDomainError;
|
|
9354
|
-
VERIFICATION_FAILED: typeof VerificationFailedError;
|
|
9355
|
-
FAILED_TO_DELETE_VERIFICATION: typeof FailedToDeleteVerificationError;
|
|
9356
|
-
VERIFICATION_NOT_FOUND: typeof VerificationNotFoundError;
|
|
9357
|
-
FAILED_TO_CREATE_VERIFICATION_CODE: typeof FailedToCreateVerificationCodeError;
|
|
9358
|
-
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;
|
|
9359
10069
|
BUILD_FAILED: typeof BuildFailedError;
|
|
9360
10070
|
SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
|
|
9361
10071
|
LOCKFILE_ERROR: typeof LockfileErrorError;
|
|
@@ -9372,9 +10082,32 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9372
10082
|
DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
|
|
9373
10083
|
RESIZE_FAILED: typeof ResizeFailedError;
|
|
9374
10084
|
INTERNAL_RESIZE_VM_NOT_FOUND: typeof InternalResizeVmNotFoundError;
|
|
9375
|
-
ACCESS_DENIED: typeof AccessDeniedError;
|
|
9376
10085
|
BRANCH_NAME_EMPTY: typeof BranchNameEmptyError;
|
|
9377
|
-
|
|
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;
|
|
9378
10111
|
TRIGGER_ERROR: typeof TriggerErrorError;
|
|
9379
10112
|
TOKEN_ERROR: typeof TokenErrorError;
|
|
9380
10113
|
PERMISSION_ERROR: typeof PermissionErrorError;
|
|
@@ -9394,21 +10127,23 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9394
10127
|
SERIALIZATION_ERROR: typeof SerializationErrorError;
|
|
9395
10128
|
GIT_INVALID_REQUEST: typeof GitInvalidRequestError;
|
|
9396
10129
|
REPOSITORY_NOT_FOUND: typeof RepositoryNotFoundError;
|
|
9397
|
-
|
|
9398
|
-
|
|
9399
|
-
|
|
9400
|
-
|
|
9401
|
-
|
|
9402
|
-
|
|
9403
|
-
|
|
9404
|
-
|
|
9405
|
-
|
|
9406
|
-
|
|
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;
|
|
9407
10145
|
GIT_REPO_LIMIT_EXCEEDED: typeof GitRepoLimitExceededError;
|
|
9408
10146
|
EMPTY_TAG: typeof EmptyTagError;
|
|
9409
|
-
PERSISTENT_VMS_NOT_ALLOWED: typeof PersistentVmsNotAllowedError;
|
|
9410
|
-
TOTAL_VM_LIMIT_EXCEEDED: typeof TotalVmLimitExceededError;
|
|
9411
|
-
VM_LIMIT_EXCEEDED: typeof VmLimitExceededError;
|
|
9412
10147
|
PERMISSION_ALREADY_EXISTS: typeof PermissionAlreadyExistsError;
|
|
9413
10148
|
LIST_TOKENS_FAILED: typeof ListTokensFailedError;
|
|
9414
10149
|
REVOKE_TOKEN_FAILED: typeof RevokeTokenFailedError;
|
|
@@ -9429,20 +10164,19 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9429
10164
|
CANNOT_MODIFY_MANAGED_IDENTITY: typeof CannotModifyManagedIdentityError;
|
|
9430
10165
|
IDENTITY_ACCESS_DENIED: typeof IdentityAccessDeniedError;
|
|
9431
10166
|
IDENTITY_NOT_FOUND: typeof IdentityNotFoundError;
|
|
9432
|
-
|
|
9433
|
-
|
|
9434
|
-
|
|
9435
|
-
|
|
9436
|
-
|
|
9437
|
-
|
|
9438
|
-
|
|
9439
|
-
|
|
9440
|
-
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
|
|
9444
|
-
|
|
9445
|
-
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;
|
|
9446
10180
|
};
|
|
9447
10181
|
|
|
9448
10182
|
type errors_AccessDeniedError = AccessDeniedError;
|
|
@@ -9489,6 +10223,10 @@ type errors_CloudstateDatabaseErrorError = CloudstateDatabaseErrorError;
|
|
|
9489
10223
|
declare const errors_CloudstateDatabaseErrorError: typeof CloudstateDatabaseErrorError;
|
|
9490
10224
|
type errors_CloudstateInternalErrorError = CloudstateInternalErrorError;
|
|
9491
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;
|
|
9492
10230
|
type errors_CommitNotFoundError = CommitNotFoundError;
|
|
9493
10231
|
declare const errors_CommitNotFoundError: typeof CommitNotFoundError;
|
|
9494
10232
|
type errors_CommitNotInBranchError = CommitNotInBranchError;
|
|
@@ -9527,6 +10265,12 @@ type errors_DeploymentLimitExceededError = DeploymentLimitExceededError;
|
|
|
9527
10265
|
declare const errors_DeploymentLimitExceededError: typeof DeploymentLimitExceededError;
|
|
9528
10266
|
type errors_DeploymentNotFoundError = DeploymentNotFoundError;
|
|
9529
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;
|
|
9530
10274
|
type errors_DirectoryCreationFailedError = DirectoryCreationFailedError;
|
|
9531
10275
|
declare const errors_DirectoryCreationFailedError: typeof DirectoryCreationFailedError;
|
|
9532
10276
|
type errors_DockerSnapshotFailedError = DockerSnapshotFailedError;
|
|
@@ -9547,6 +10291,8 @@ type errors_DuplicateGroupNameError = DuplicateGroupNameError;
|
|
|
9547
10291
|
declare const errors_DuplicateGroupNameError: typeof DuplicateGroupNameError;
|
|
9548
10292
|
type errors_DuplicateUserNameError = DuplicateUserNameError;
|
|
9549
10293
|
declare const errors_DuplicateUserNameError: typeof DuplicateUserNameError;
|
|
10294
|
+
type errors_EmptyQueryError = EmptyQueryError;
|
|
10295
|
+
declare const errors_EmptyQueryError: typeof EmptyQueryError;
|
|
9550
10296
|
type errors_EmptyTagError = EmptyTagError;
|
|
9551
10297
|
declare const errors_EmptyTagError: typeof EmptyTagError;
|
|
9552
10298
|
type errors_EntrypointNotFoundError = EntrypointNotFoundError;
|
|
@@ -9606,6 +10352,10 @@ type errors_FailedToVerifyDomainError = FailedToVerifyDomainError;
|
|
|
9606
10352
|
declare const errors_FailedToVerifyDomainError: typeof FailedToVerifyDomainError;
|
|
9607
10353
|
type errors_FileNotFoundError = FileNotFoundError;
|
|
9608
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;
|
|
9609
10359
|
type errors_FilesBadRequestError = FilesBadRequestError;
|
|
9610
10360
|
declare const errors_FilesBadRequestError: typeof FilesBadRequestError;
|
|
9611
10361
|
type errors_FirecrackerApiSocketNotFoundError = FirecrackerApiSocketNotFoundError;
|
|
@@ -9699,10 +10449,14 @@ declare const errors_InvalidObjectIdError: typeof InvalidObjectIdError;
|
|
|
9699
10449
|
type errors_InvalidObjectIdPublic = InvalidObjectIdPublic;
|
|
9700
10450
|
type errors_InvalidParametersError = InvalidParametersError;
|
|
9701
10451
|
declare const errors_InvalidParametersError: typeof InvalidParametersError;
|
|
10452
|
+
type errors_InvalidPathPatternError = InvalidPathPatternError;
|
|
10453
|
+
declare const errors_InvalidPathPatternError: typeof InvalidPathPatternError;
|
|
9702
10454
|
type errors_InvalidQueryError = InvalidQueryError;
|
|
9703
10455
|
declare const errors_InvalidQueryError: typeof InvalidQueryError;
|
|
9704
10456
|
type errors_InvalidRangeError = InvalidRangeError;
|
|
9705
10457
|
declare const errors_InvalidRangeError: typeof InvalidRangeError;
|
|
10458
|
+
type errors_InvalidRegexError = InvalidRegexError;
|
|
10459
|
+
declare const errors_InvalidRegexError: typeof InvalidRegexError;
|
|
9706
10460
|
type errors_InvalidRequestError = InvalidRequestError;
|
|
9707
10461
|
declare const errors_InvalidRequestError: typeof InvalidRequestError;
|
|
9708
10462
|
type errors_InvalidRevisionError = InvalidRevisionError;
|
|
@@ -9803,6 +10557,7 @@ type errors_PublicCertificateProvisioningError = PublicCertificateProvisioningEr
|
|
|
9803
10557
|
type errors_PublicCloudstateAccessDenied = PublicCloudstateAccessDenied;
|
|
9804
10558
|
type errors_PublicCloudstateDatabaseError = PublicCloudstateDatabaseError;
|
|
9805
10559
|
type errors_PublicCloudstateInternalError = PublicCloudstateInternalError;
|
|
10560
|
+
type errors_PublicCommitInvalidRegex = PublicCommitInvalidRegex;
|
|
9806
10561
|
type errors_PublicCommitNotFound = PublicCommitNotFound;
|
|
9807
10562
|
type errors_PublicCommitNotInBranch = PublicCommitNotInBranch;
|
|
9808
10563
|
type errors_PublicConflictingParent = PublicConflictingParent;
|
|
@@ -9819,6 +10574,8 @@ type errors_PublicDeleteRepositoryFailed = PublicDeleteRepositoryFailed;
|
|
|
9819
10574
|
type errors_PublicDeploymentAccessDenied = PublicDeploymentAccessDenied;
|
|
9820
10575
|
type errors_PublicDeploymentFailed = PublicDeploymentFailed;
|
|
9821
10576
|
type errors_PublicDeploymentLimitExceeded = PublicDeploymentLimitExceeded;
|
|
10577
|
+
type errors_PublicDiffInvalidPathPattern = PublicDiffInvalidPathPattern;
|
|
10578
|
+
type errors_PublicDiffInvalidRegex = PublicDiffInvalidRegex;
|
|
9822
10579
|
type errors_PublicDirectoryCreationFailed = PublicDirectoryCreationFailed;
|
|
9823
10580
|
type errors_PublicDomainAlreadyExists = PublicDomainAlreadyExists;
|
|
9824
10581
|
type errors_PublicDomainMappingError = PublicDomainMappingError;
|
|
@@ -9845,6 +10602,7 @@ type errors_PublicFailedToProvisionCertificate = PublicFailedToProvisionCertific
|
|
|
9845
10602
|
type errors_PublicFailedToProvisionCertificateForMapping = PublicFailedToProvisionCertificateForMapping;
|
|
9846
10603
|
type errors_PublicFailedToVerifyDomain = PublicFailedToVerifyDomain;
|
|
9847
10604
|
type errors_PublicFileNotFound = PublicFileNotFound;
|
|
10605
|
+
type errors_PublicFilenameInvalidPattern = PublicFilenameInvalidPattern;
|
|
9848
10606
|
type errors_PublicFilesBadRequest = PublicFilesBadRequest;
|
|
9849
10607
|
type errors_PublicForkVmNotFound = PublicForkVmNotFound;
|
|
9850
10608
|
type errors_PublicGetContentFailed = PublicGetContentFailed;
|
|
@@ -9867,8 +10625,10 @@ type errors_PublicInvalidDomain = PublicInvalidDomain;
|
|
|
9867
10625
|
type errors_PublicInvalidDomains = PublicInvalidDomains;
|
|
9868
10626
|
type errors_PublicInvalidFileChange = PublicInvalidFileChange;
|
|
9869
10627
|
type errors_PublicInvalidFilePath = PublicInvalidFilePath;
|
|
10628
|
+
type errors_PublicInvalidPathPattern = PublicInvalidPathPattern;
|
|
9870
10629
|
type errors_PublicInvalidQuery = PublicInvalidQuery;
|
|
9871
10630
|
type errors_PublicInvalidRange = PublicInvalidRange;
|
|
10631
|
+
type errors_PublicInvalidRegex = PublicInvalidRegex;
|
|
9872
10632
|
type errors_PublicInvalidRevision = PublicInvalidRevision;
|
|
9873
10633
|
type errors_PublicInvalidVmId = PublicInvalidVmId;
|
|
9874
10634
|
type errors_PublicLimitExceeded = PublicLimitExceeded;
|
|
@@ -9909,6 +10669,9 @@ type errors_PublicRunNotFound = PublicRunNotFound;
|
|
|
9909
10669
|
type errors_PublicRuntimeError = PublicRuntimeError;
|
|
9910
10670
|
type errors_PublicSerializationError = PublicSerializationError;
|
|
9911
10671
|
type errors_PublicServiceAlreadyExists = PublicServiceAlreadyExists;
|
|
10672
|
+
type errors_PublicSnapshotAlreadyDeleted = PublicSnapshotAlreadyDeleted;
|
|
10673
|
+
type errors_PublicSnapshotIsAccountDefault = PublicSnapshotIsAccountDefault;
|
|
10674
|
+
type errors_PublicSnapshotLimitExceeded = PublicSnapshotLimitExceeded;
|
|
9912
10675
|
type errors_PublicSnapshotNotFound = PublicSnapshotNotFound;
|
|
9913
10676
|
type errors_PublicSnapshotSetupFailed = PublicSnapshotSetupFailed;
|
|
9914
10677
|
type errors_PublicSnapshotVmBadRequest = PublicSnapshotVmBadRequest;
|
|
@@ -9917,6 +10680,7 @@ type errors_PublicSourceUnauthorized = PublicSourceUnauthorized;
|
|
|
9917
10680
|
type errors_PublicTagNotFound = PublicTagNotFound;
|
|
9918
10681
|
type errors_PublicTimeoutLimitExceeded = PublicTimeoutLimitExceeded;
|
|
9919
10682
|
type errors_PublicTokenError = PublicTokenError;
|
|
10683
|
+
type errors_PublicTotalVmLimitExceeded = PublicTotalVmLimitExceeded;
|
|
9920
10684
|
type errors_PublicTreeNotFound = PublicTreeNotFound;
|
|
9921
10685
|
type errors_PublicTriggerError = PublicTriggerError;
|
|
9922
10686
|
type errors_PublicUnsupportedTransfer = PublicUnsupportedTransfer;
|
|
@@ -9926,6 +10690,7 @@ type errors_PublicUserAlreadyExists = PublicUserAlreadyExists;
|
|
|
9926
10690
|
type errors_PublicVerificationFailed = PublicVerificationFailed;
|
|
9927
10691
|
type errors_PublicVerificationNotFound = PublicVerificationNotFound;
|
|
9928
10692
|
type errors_PublicVmAccessDeniedForMapping = PublicVmAccessDeniedForMapping;
|
|
10693
|
+
type errors_PublicVmLimitExceeded = PublicVmLimitExceeded;
|
|
9929
10694
|
type errors_PublicWebDeploymentBadRequest = PublicWebDeploymentBadRequest;
|
|
9930
10695
|
type errors_PublicWriteScriptFailed = PublicWriteScriptFailed;
|
|
9931
10696
|
type errors_RecordOwnershipErrorError = RecordOwnershipErrorError;
|
|
@@ -9990,11 +10755,17 @@ type errors_SetDefaultSnapshotFailedError = SetDefaultSnapshotFailedError;
|
|
|
9990
10755
|
declare const errors_SetDefaultSnapshotFailedError: typeof SetDefaultSnapshotFailedError;
|
|
9991
10756
|
type errors_SigningError = SigningError;
|
|
9992
10757
|
declare const errors_SigningError: typeof SigningError;
|
|
10758
|
+
type errors_SnapshotAlreadyDeletedError = SnapshotAlreadyDeletedError;
|
|
10759
|
+
declare const errors_SnapshotAlreadyDeletedError: typeof SnapshotAlreadyDeletedError;
|
|
9993
10760
|
type errors_SnapshotDirNotFoundError = SnapshotDirNotFoundError;
|
|
9994
10761
|
declare const errors_SnapshotDirNotFoundError: typeof SnapshotDirNotFoundError;
|
|
9995
10762
|
type errors_SnapshotId = SnapshotId;
|
|
10763
|
+
type errors_SnapshotIsAccountDefaultError = SnapshotIsAccountDefaultError;
|
|
10764
|
+
declare const errors_SnapshotIsAccountDefaultError: typeof SnapshotIsAccountDefaultError;
|
|
9996
10765
|
type errors_SnapshotLayerCreationFailedError = SnapshotLayerCreationFailedError;
|
|
9997
10766
|
declare const errors_SnapshotLayerCreationFailedError: typeof SnapshotLayerCreationFailedError;
|
|
10767
|
+
type errors_SnapshotLimitExceededError = SnapshotLimitExceededError;
|
|
10768
|
+
declare const errors_SnapshotLimitExceededError: typeof SnapshotLimitExceededError;
|
|
9998
10769
|
type errors_SnapshotLoadTimeoutError = SnapshotLoadTimeoutError;
|
|
9999
10770
|
declare const errors_SnapshotLoadTimeoutError: typeof SnapshotLoadTimeoutError;
|
|
10000
10771
|
type errors_SnapshotNotFoundError = SnapshotNotFoundError;
|
|
@@ -10009,8 +10780,6 @@ type errors_SourceNotFoundError = SourceNotFoundError;
|
|
|
10009
10780
|
declare const errors_SourceNotFoundError: typeof SourceNotFoundError;
|
|
10010
10781
|
type errors_SourceUnauthorizedError = SourceUnauthorizedError;
|
|
10011
10782
|
declare const errors_SourceUnauthorizedError: typeof SourceUnauthorizedError;
|
|
10012
|
-
type errors_StdIoError = StdIoError;
|
|
10013
|
-
declare const errors_StdIoError: typeof StdIoError;
|
|
10014
10783
|
type errors_SubvolumeCreationFailedError = SubvolumeCreationFailedError;
|
|
10015
10784
|
declare const errors_SubvolumeCreationFailedError: typeof SubvolumeCreationFailedError;
|
|
10016
10785
|
type errors_SuspendFailedAndStopFailedError = SuspendFailedAndStopFailedError;
|
|
@@ -10080,6 +10849,7 @@ type errors_VmDeletedError = VmDeletedError;
|
|
|
10080
10849
|
declare const errors_VmDeletedError: typeof VmDeletedError;
|
|
10081
10850
|
type errors_VmExitDuringStartError = VmExitDuringStartError;
|
|
10082
10851
|
declare const errors_VmExitDuringStartError: typeof VmExitDuringStartError;
|
|
10852
|
+
type errors_VmId = VmId;
|
|
10083
10853
|
type errors_VmIsSuspendingError = VmIsSuspendingError;
|
|
10084
10854
|
declare const errors_VmIsSuspendingError: typeof VmIsSuspendingError;
|
|
10085
10855
|
type errors_VmLimitExceededError = VmLimitExceededError;
|
|
@@ -10120,8 +10890,8 @@ type errors_WriteScriptFailedError = WriteScriptFailedError;
|
|
|
10120
10890
|
declare const errors_WriteScriptFailedError: typeof WriteScriptFailedError;
|
|
10121
10891
|
declare const errors_errorFromJSON: typeof errorFromJSON;
|
|
10122
10892
|
declare namespace errors {
|
|
10123
|
-
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 };
|
|
10124
|
-
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 };
|
|
10125
10895
|
}
|
|
10126
10896
|
|
|
10127
10897
|
/**
|
|
@@ -10230,6 +11000,151 @@ declare class DomainsNamespace {
|
|
|
10230
11000
|
}): Promise<ResponseGetDomainsV1Domains200>;
|
|
10231
11001
|
}
|
|
10232
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
|
+
}
|
|
10233
11148
|
/**
|
|
10234
11149
|
* Namespace for managing branches within a Git repository.
|
|
10235
11150
|
*
|
|
@@ -10977,6 +11892,159 @@ declare class GitRepo {
|
|
|
10977
11892
|
base: string;
|
|
10978
11893
|
head: string;
|
|
10979
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>;
|
|
10980
12048
|
}
|
|
10981
12049
|
/**
|
|
10982
12050
|
* Namespace for managing Git repositories.
|
|
@@ -11925,8 +12993,8 @@ interface CreateSnapshotRequest {
|
|
|
11925
12993
|
aptDeps?: string[] | null;
|
|
11926
12994
|
/**
|
|
11927
12995
|
* When true, bypasses the snapshot cache and always creates a new snapshot.
|
|
11928
|
-
* The new snapshot still stores the template hash, so it becomes the updated
|
|
11929
|
-
*
|
|
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.
|
|
11930
12998
|
*/
|
|
11931
12999
|
skipCache?: boolean | null;
|
|
11932
13000
|
};
|
|
@@ -12775,4 +13843,4 @@ declare class Freestyle {
|
|
|
12775
13843
|
declare const freestyle: Freestyle;
|
|
12776
13844
|
|
|
12777
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 };
|
|
12778
|
-
export type { BackgroundRequestLogger, 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 };
|