freestyle-sandboxes 0.1.43 → 0.1.45
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 -1006
- package/index.d.cts +1929 -852
- package/index.d.mts +1929 -852
- package/index.mjs +1360 -1006
- 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,24 @@ 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
|
+
};
|
|
6301
|
+
"/auth/v1/background-test": {
|
|
6302
|
+
options: {
|
|
6303
|
+
query?: GetAuthV1BackgroundTestQueryParams;
|
|
6304
|
+
headers?: Record<string, string>;
|
|
6305
|
+
};
|
|
6306
|
+
response: ResponseGetAuthV1BackgroundTest200;
|
|
6307
|
+
};
|
|
5785
6308
|
"/auth/v1/whoami": {
|
|
5786
6309
|
options?: {
|
|
5787
6310
|
headers?: Record<string, string>;
|
|
@@ -5973,6 +6496,38 @@ type GetPathMap = {
|
|
|
5973
6496
|
};
|
|
5974
6497
|
response: ResponseGetGitV1RepoRepoGitTreesHash200;
|
|
5975
6498
|
};
|
|
6499
|
+
"/git/v1/repo/{repo}/search": {
|
|
6500
|
+
options: {
|
|
6501
|
+
params: GetGitV1RepoRepoSearchPathParams;
|
|
6502
|
+
query?: GetGitV1RepoRepoSearchQueryParams;
|
|
6503
|
+
headers?: Record<string, string>;
|
|
6504
|
+
};
|
|
6505
|
+
response: ResponseGetGitV1RepoRepoSearch200;
|
|
6506
|
+
};
|
|
6507
|
+
"/git/v1/repo/{repo}/search/commits": {
|
|
6508
|
+
options: {
|
|
6509
|
+
params: GetGitV1RepoRepoSearchCommitsPathParams;
|
|
6510
|
+
query?: GetGitV1RepoRepoSearchCommitsQueryParams;
|
|
6511
|
+
headers?: Record<string, string>;
|
|
6512
|
+
};
|
|
6513
|
+
response: ResponseGetGitV1RepoRepoSearchCommits200;
|
|
6514
|
+
};
|
|
6515
|
+
"/git/v1/repo/{repo}/search/diffs": {
|
|
6516
|
+
options: {
|
|
6517
|
+
params: GetGitV1RepoRepoSearchDiffsPathParams;
|
|
6518
|
+
query?: GetGitV1RepoRepoSearchDiffsQueryParams;
|
|
6519
|
+
headers?: Record<string, string>;
|
|
6520
|
+
};
|
|
6521
|
+
response: ResponseGetGitV1RepoRepoSearchDiffs200;
|
|
6522
|
+
};
|
|
6523
|
+
"/git/v1/repo/{repo}/search/files": {
|
|
6524
|
+
options: {
|
|
6525
|
+
params: GetGitV1RepoRepoSearchFilesPathParams;
|
|
6526
|
+
query?: GetGitV1RepoRepoSearchFilesQueryParams;
|
|
6527
|
+
headers?: Record<string, string>;
|
|
6528
|
+
};
|
|
6529
|
+
response: ResponseGetGitV1RepoRepoSearchFiles200;
|
|
6530
|
+
};
|
|
5976
6531
|
"/git/v1/repo/{repo}/tarball": {
|
|
5977
6532
|
options: {
|
|
5978
6533
|
params: GetGitV1RepoRepoTarballPathParams;
|
|
@@ -6086,13 +6641,15 @@ type GetPathMap = {
|
|
|
6086
6641
|
response: ResponseGetV1CronSchedulesIdSuccessRate200;
|
|
6087
6642
|
};
|
|
6088
6643
|
"/v1/vms": {
|
|
6089
|
-
options
|
|
6644
|
+
options: {
|
|
6645
|
+
query?: GetV1VmsQueryParams;
|
|
6090
6646
|
headers?: Record<string, string>;
|
|
6091
6647
|
};
|
|
6092
6648
|
response: ResponseGetV1Vms200;
|
|
6093
6649
|
};
|
|
6094
6650
|
"/v1/vms/snapshots": {
|
|
6095
|
-
options
|
|
6651
|
+
options: {
|
|
6652
|
+
query?: GetV1VmsSnapshotsQueryParams;
|
|
6096
6653
|
headers?: Record<string, string>;
|
|
6097
6654
|
};
|
|
6098
6655
|
response: ResponseGetV1VmsSnapshots200;
|
|
@@ -6637,6 +7194,13 @@ type DeletePathMap = {
|
|
|
6637
7194
|
};
|
|
6638
7195
|
response: ResponseDeleteV1CronSchedulesId200;
|
|
6639
7196
|
};
|
|
7197
|
+
"/v1/vms/snapshots/{snapshot_id}": {
|
|
7198
|
+
options: {
|
|
7199
|
+
params: DeleteV1VmsSnapshotsSnapshotIdPathParams;
|
|
7200
|
+
headers?: Record<string, string>;
|
|
7201
|
+
};
|
|
7202
|
+
response: ResponseDeleteV1VmsSnapshotsSnapshotId200;
|
|
7203
|
+
};
|
|
6640
7204
|
"/v1/vms/{vm_id}": {
|
|
6641
7205
|
options: {
|
|
6642
7206
|
params: DeleteV1VmsVmIdPathParams;
|
|
@@ -6676,6 +7240,14 @@ type PatchPathMap = {
|
|
|
6676
7240
|
};
|
|
6677
7241
|
response: ResponsePatchV1CronSchedulesId200;
|
|
6678
7242
|
};
|
|
7243
|
+
"/v1/vms/snapshots/{snapshot_id}": {
|
|
7244
|
+
options: {
|
|
7245
|
+
params: PatchV1VmsSnapshotsSnapshotIdPathParams;
|
|
7246
|
+
body: PatchV1VmsSnapshotsSnapshotIdRequestBody;
|
|
7247
|
+
headers?: Record<string, string>;
|
|
7248
|
+
};
|
|
7249
|
+
response: ResponsePatchV1VmsSnapshotsSnapshotId200;
|
|
7250
|
+
};
|
|
6679
7251
|
"/web/v1/deployments/{deployment_id}/fetch": {
|
|
6680
7252
|
options: {
|
|
6681
7253
|
params: PatchWebV1DeploymentsDeploymentIdFetchPathParams;
|
|
@@ -6709,9 +7281,9 @@ declare class ApiClient {
|
|
|
6709
7281
|
fetch(url: string, options?: RequestInit): Promise<Response>;
|
|
6710
7282
|
resolveUrl(path: string, params?: Record<string, string>, query?: Record<string, any>): string;
|
|
6711
7283
|
getRaw<P extends keyof GetPathMap>(path: P, options?: GetPathMap[P]["options"]): Promise<Response>;
|
|
7284
|
+
postRaw<P extends keyof PostPathMap>(path: P, ...args: PostPathMap[P]["options"] extends undefined ? [options?: PostPathMap[P]["options"]] : [options: PostPathMap[P]["options"]]): Promise<Response>;
|
|
6712
7285
|
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
7286
|
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
7287
|
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
7288
|
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
7289
|
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 +7336,60 @@ declare class GitErrorError extends Error {
|
|
|
6764
7336
|
static readonly description: string;
|
|
6765
7337
|
constructor(body: unknown & FreestyleError);
|
|
6766
7338
|
}
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
|
|
7339
|
+
declare class SuspendFailedAndStopFailedError extends Error {
|
|
7340
|
+
body: unknown & FreestyleError;
|
|
7341
|
+
static readonly code: string;
|
|
7342
|
+
static readonly statusCode: number;
|
|
7343
|
+
static readonly description: string;
|
|
7344
|
+
constructor(body: unknown & FreestyleError);
|
|
7345
|
+
}
|
|
7346
|
+
declare class SuspendFailedAndStoppedError extends Error {
|
|
7347
|
+
body: unknown & FreestyleError;
|
|
7348
|
+
static readonly code: string;
|
|
7349
|
+
static readonly statusCode: number;
|
|
7350
|
+
static readonly description: string;
|
|
7351
|
+
constructor(body: unknown & FreestyleError);
|
|
7352
|
+
}
|
|
7353
|
+
interface InvalidGitRepoSpecErrorPublic {
|
|
7354
|
+
message: string;
|
|
7355
|
+
[k: string]: unknown;
|
|
7356
|
+
}
|
|
7357
|
+
declare class InvalidGitRepoSpecErrorError extends Error {
|
|
7358
|
+
body: InvalidGitRepoSpecErrorPublic & FreestyleError;
|
|
7359
|
+
static readonly code: string;
|
|
7360
|
+
static readonly statusCode: number;
|
|
7361
|
+
static readonly description: string;
|
|
7362
|
+
constructor(body: InvalidGitRepoSpecErrorPublic & FreestyleError);
|
|
7363
|
+
}
|
|
7364
|
+
declare class InternalErrorError extends Error {
|
|
7365
|
+
body: unknown & FreestyleError;
|
|
7366
|
+
static readonly code: string;
|
|
7367
|
+
static readonly statusCode: number;
|
|
7368
|
+
static readonly description: string;
|
|
7369
|
+
constructor(body: unknown & FreestyleError);
|
|
7370
|
+
}
|
|
7371
|
+
interface PublicForkVmNotFound {
|
|
7372
|
+
forkVmId: string;
|
|
7373
|
+
[k: string]: unknown;
|
|
7374
|
+
}
|
|
7375
|
+
declare class ForkVmNotFoundError extends Error {
|
|
7376
|
+
body: PublicForkVmNotFound & FreestyleError;
|
|
7377
|
+
static readonly code: string;
|
|
7378
|
+
static readonly statusCode: number;
|
|
7379
|
+
static readonly description: string;
|
|
7380
|
+
constructor(body: PublicForkVmNotFound & FreestyleError);
|
|
7381
|
+
}
|
|
7382
|
+
interface PublicCreateSnapshotBadRequest {
|
|
7383
|
+
message: string;
|
|
7384
|
+
[k: string]: unknown;
|
|
7385
|
+
}
|
|
7386
|
+
declare class CreateSnapshotBadRequestError extends Error {
|
|
7387
|
+
body: PublicCreateSnapshotBadRequest & FreestyleError;
|
|
7388
|
+
static readonly code: string;
|
|
7389
|
+
static readonly statusCode: number;
|
|
7390
|
+
static readonly description: string;
|
|
7391
|
+
constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
|
|
7392
|
+
}
|
|
6772
7393
|
interface PublicSnapshotNotFound {
|
|
6773
7394
|
snapshotId: SnapshotId;
|
|
6774
7395
|
[k: string]: unknown;
|
|
@@ -6871,13 +7492,6 @@ declare class VmAccessDeniedError extends Error {
|
|
|
6871
7492
|
static readonly description: string;
|
|
6872
7493
|
constructor(body: unknown & FreestyleError);
|
|
6873
7494
|
}
|
|
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
7495
|
declare class FailedToSpawnUffdError extends Error {
|
|
6882
7496
|
body: unknown & FreestyleError;
|
|
6883
7497
|
static readonly code: string;
|
|
@@ -6899,37 +7513,70 @@ declare class VmSubnetNotFoundError extends Error {
|
|
|
6899
7513
|
static readonly description: string;
|
|
6900
7514
|
constructor(body: unknown & FreestyleError);
|
|
6901
7515
|
}
|
|
6902
|
-
interface
|
|
6903
|
-
|
|
6904
|
-
|
|
7516
|
+
interface PublicSnapshotSetupFailed {
|
|
7517
|
+
snapshotId: SnapshotId;
|
|
7518
|
+
failedReason: string;
|
|
6905
7519
|
[k: string]: unknown;
|
|
6906
7520
|
}
|
|
6907
|
-
declare class
|
|
6908
|
-
body:
|
|
7521
|
+
declare class SnapshotSetupFailedError extends Error {
|
|
7522
|
+
body: PublicSnapshotSetupFailed & FreestyleError;
|
|
6909
7523
|
static readonly code: string;
|
|
6910
7524
|
static readonly statusCode: number;
|
|
6911
7525
|
static readonly description: string;
|
|
6912
|
-
constructor(body:
|
|
7526
|
+
constructor(body: PublicSnapshotSetupFailed & FreestyleError);
|
|
6913
7527
|
}
|
|
6914
|
-
interface
|
|
6915
|
-
|
|
6916
|
-
expectedTransactionId: string;
|
|
6917
|
-
providedTransactionId: string;
|
|
7528
|
+
interface PublicSnapshotVmBadRequest {
|
|
7529
|
+
message: string;
|
|
6918
7530
|
[k: string]: unknown;
|
|
6919
7531
|
}
|
|
6920
|
-
declare class
|
|
6921
|
-
body:
|
|
7532
|
+
declare class SnapshotVmBadRequestError extends Error {
|
|
7533
|
+
body: PublicSnapshotVmBadRequest & FreestyleError;
|
|
6922
7534
|
static readonly code: string;
|
|
6923
7535
|
static readonly statusCode: number;
|
|
6924
7536
|
static readonly description: string;
|
|
6925
|
-
constructor(body:
|
|
7537
|
+
constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
|
|
6926
7538
|
}
|
|
6927
|
-
|
|
6928
|
-
|
|
7539
|
+
interface PublicSnapshotIsAccountDefault {
|
|
7540
|
+
snapshotId: SnapshotId;
|
|
7541
|
+
[k: string]: unknown;
|
|
7542
|
+
}
|
|
7543
|
+
declare class SnapshotIsAccountDefaultError extends Error {
|
|
7544
|
+
body: PublicSnapshotIsAccountDefault & FreestyleError;
|
|
6929
7545
|
static readonly code: string;
|
|
6930
7546
|
static readonly statusCode: number;
|
|
6931
7547
|
static readonly description: string;
|
|
6932
|
-
constructor(body:
|
|
7548
|
+
constructor(body: PublicSnapshotIsAccountDefault & FreestyleError);
|
|
7549
|
+
}
|
|
7550
|
+
/**
|
|
7551
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7552
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7553
|
+
*/
|
|
7554
|
+
type SnapshotId = string;
|
|
7555
|
+
/**
|
|
7556
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7557
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7558
|
+
*/
|
|
7559
|
+
type SnapshotId = string;
|
|
7560
|
+
/**
|
|
7561
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7562
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7563
|
+
*/
|
|
7564
|
+
type SnapshotId = string;
|
|
7565
|
+
/**
|
|
7566
|
+
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
7567
|
+
* Unlike `VmShortId`, this is a plain `String` wrapper with no fixed-size array or padding.
|
|
7568
|
+
*/
|
|
7569
|
+
type SnapshotId = string;
|
|
7570
|
+
interface PublicSnapshotAlreadyDeleted {
|
|
7571
|
+
snapshotId: SnapshotId;
|
|
7572
|
+
[k: string]: unknown;
|
|
7573
|
+
}
|
|
7574
|
+
declare class SnapshotAlreadyDeletedError extends Error {
|
|
7575
|
+
body: PublicSnapshotAlreadyDeleted & FreestyleError;
|
|
7576
|
+
static readonly code: string;
|
|
7577
|
+
static readonly statusCode: number;
|
|
7578
|
+
static readonly description: string;
|
|
7579
|
+
constructor(body: PublicSnapshotAlreadyDeleted & FreestyleError);
|
|
6933
7580
|
}
|
|
6934
7581
|
declare class VmNotFoundInFsError extends Error {
|
|
6935
7582
|
body: unknown & FreestyleError;
|
|
@@ -6946,7 +7593,7 @@ declare class VmNotRunningError extends Error {
|
|
|
6946
7593
|
constructor(body: unknown & FreestyleError);
|
|
6947
7594
|
}
|
|
6948
7595
|
interface VmNotFoundPublic {
|
|
6949
|
-
vmId:
|
|
7596
|
+
vmId: VmId;
|
|
6950
7597
|
[k: string]: unknown;
|
|
6951
7598
|
}
|
|
6952
7599
|
declare class VmNotFoundError extends Error {
|
|
@@ -6957,7 +7604,7 @@ declare class VmNotFoundError extends Error {
|
|
|
6957
7604
|
constructor(body: VmNotFoundPublic & FreestyleError);
|
|
6958
7605
|
}
|
|
6959
7606
|
interface PublicInternalForkVmNotFound {
|
|
6960
|
-
forkVmId:
|
|
7607
|
+
forkVmId: VmId;
|
|
6961
7608
|
[k: string]: unknown;
|
|
6962
7609
|
}
|
|
6963
7610
|
declare class InternalForkVmNotFoundError extends Error {
|
|
@@ -6979,7 +7626,7 @@ declare class BadRequestError extends Error {
|
|
|
6979
7626
|
constructor(body: PublicBadRequest & FreestyleError);
|
|
6980
7627
|
}
|
|
6981
7628
|
interface PublicInternalVmNotFound {
|
|
6982
|
-
vmId:
|
|
7629
|
+
vmId: VmId;
|
|
6983
7630
|
[k: string]: unknown;
|
|
6984
7631
|
}
|
|
6985
7632
|
declare class InternalVmNotFoundError extends Error {
|
|
@@ -6989,232 +7636,197 @@ declare class InternalVmNotFoundError extends Error {
|
|
|
6989
7636
|
static readonly description: string;
|
|
6990
7637
|
constructor(body: PublicInternalVmNotFound & FreestyleError);
|
|
6991
7638
|
}
|
|
6992
|
-
declare class
|
|
7639
|
+
declare class NoDefaultSnapshotAvailableError extends Error {
|
|
6993
7640
|
body: unknown & FreestyleError;
|
|
6994
7641
|
static readonly code: string;
|
|
6995
7642
|
static readonly statusCode: number;
|
|
6996
7643
|
static readonly description: string;
|
|
6997
7644
|
constructor(body: unknown & FreestyleError);
|
|
6998
7645
|
}
|
|
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 {
|
|
7646
|
+
declare class DockerSnapshotFailedError extends Error {
|
|
7011
7647
|
body: unknown & FreestyleError;
|
|
7012
7648
|
static readonly code: string;
|
|
7013
7649
|
static readonly statusCode: number;
|
|
7014
7650
|
static readonly description: string;
|
|
7015
7651
|
constructor(body: unknown & FreestyleError);
|
|
7016
7652
|
}
|
|
7017
|
-
declare class
|
|
7653
|
+
declare class SetDefaultSnapshotFailedError extends Error {
|
|
7018
7654
|
body: unknown & FreestyleError;
|
|
7019
7655
|
static readonly code: string;
|
|
7020
7656
|
static readonly statusCode: number;
|
|
7021
7657
|
static readonly description: string;
|
|
7022
7658
|
constructor(body: unknown & FreestyleError);
|
|
7023
7659
|
}
|
|
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 {
|
|
7660
|
+
declare class SnapshotLayerCreationFailedError extends Error {
|
|
7036
7661
|
body: unknown & FreestyleError;
|
|
7037
7662
|
static readonly code: string;
|
|
7038
7663
|
static readonly statusCode: number;
|
|
7039
7664
|
static readonly description: string;
|
|
7040
7665
|
constructor(body: unknown & FreestyleError);
|
|
7041
7666
|
}
|
|
7042
|
-
declare class
|
|
7667
|
+
declare class SnapshotDirNotFoundError extends Error {
|
|
7043
7668
|
body: unknown & FreestyleError;
|
|
7044
7669
|
static readonly code: string;
|
|
7045
7670
|
static readonly statusCode: number;
|
|
7046
7671
|
static readonly description: string;
|
|
7047
7672
|
constructor(body: unknown & FreestyleError);
|
|
7048
7673
|
}
|
|
7049
|
-
declare class
|
|
7674
|
+
declare class SubvolumeCreationFailedError extends Error {
|
|
7050
7675
|
body: unknown & FreestyleError;
|
|
7051
7676
|
static readonly code: string;
|
|
7052
7677
|
static readonly statusCode: number;
|
|
7053
7678
|
static readonly description: string;
|
|
7054
7679
|
constructor(body: unknown & FreestyleError);
|
|
7055
7680
|
}
|
|
7056
|
-
declare class
|
|
7681
|
+
declare class GetDefaultSnapshotFailedError extends Error {
|
|
7057
7682
|
body: unknown & FreestyleError;
|
|
7058
7683
|
static readonly code: string;
|
|
7059
7684
|
static readonly statusCode: number;
|
|
7060
7685
|
static readonly description: string;
|
|
7061
7686
|
constructor(body: unknown & FreestyleError);
|
|
7062
7687
|
}
|
|
7063
|
-
declare class
|
|
7688
|
+
declare class UserNotFoundError extends Error {
|
|
7064
7689
|
body: unknown & FreestyleError;
|
|
7065
7690
|
static readonly code: string;
|
|
7066
7691
|
static readonly statusCode: number;
|
|
7067
7692
|
static readonly description: string;
|
|
7068
7693
|
constructor(body: unknown & FreestyleError);
|
|
7069
7694
|
}
|
|
7070
|
-
|
|
7071
|
-
|
|
7695
|
+
interface PublicUserAlreadyExists {
|
|
7696
|
+
userName: string;
|
|
7697
|
+
[k: string]: unknown;
|
|
7698
|
+
}
|
|
7699
|
+
declare class UserAlreadyExistsError extends Error {
|
|
7700
|
+
body: PublicUserAlreadyExists & FreestyleError;
|
|
7072
7701
|
static readonly code: string;
|
|
7073
7702
|
static readonly statusCode: number;
|
|
7074
7703
|
static readonly description: string;
|
|
7075
|
-
constructor(body:
|
|
7704
|
+
constructor(body: PublicUserAlreadyExists & FreestyleError);
|
|
7076
7705
|
}
|
|
7077
|
-
declare class
|
|
7706
|
+
declare class ValidationErrorError extends Error {
|
|
7078
7707
|
body: unknown & FreestyleError;
|
|
7079
7708
|
static readonly code: string;
|
|
7080
7709
|
static readonly statusCode: number;
|
|
7081
7710
|
static readonly description: string;
|
|
7082
7711
|
constructor(body: unknown & FreestyleError);
|
|
7083
7712
|
}
|
|
7084
|
-
declare class
|
|
7713
|
+
declare class GroupNotFoundError extends Error {
|
|
7085
7714
|
body: unknown & FreestyleError;
|
|
7086
7715
|
static readonly code: string;
|
|
7087
7716
|
static readonly statusCode: number;
|
|
7088
7717
|
static readonly description: string;
|
|
7089
7718
|
constructor(body: unknown & FreestyleError);
|
|
7090
7719
|
}
|
|
7091
|
-
|
|
7092
|
-
|
|
7720
|
+
interface PublicGroupAlreadyExists {
|
|
7721
|
+
groupName: string;
|
|
7722
|
+
[k: string]: unknown;
|
|
7723
|
+
}
|
|
7724
|
+
declare class GroupAlreadyExistsError extends Error {
|
|
7725
|
+
body: PublicGroupAlreadyExists & FreestyleError;
|
|
7093
7726
|
static readonly code: string;
|
|
7094
7727
|
static readonly statusCode: number;
|
|
7095
7728
|
static readonly description: string;
|
|
7096
|
-
constructor(body:
|
|
7729
|
+
constructor(body: PublicGroupAlreadyExists & FreestyleError);
|
|
7097
7730
|
}
|
|
7098
|
-
declare class
|
|
7731
|
+
declare class DuplicateUserNameError extends Error {
|
|
7099
7732
|
body: unknown & FreestyleError;
|
|
7100
7733
|
static readonly code: string;
|
|
7101
7734
|
static readonly statusCode: number;
|
|
7102
7735
|
static readonly description: string;
|
|
7103
7736
|
constructor(body: unknown & FreestyleError);
|
|
7104
7737
|
}
|
|
7105
|
-
declare class
|
|
7738
|
+
declare class UserGroupEmptyError extends Error {
|
|
7106
7739
|
body: unknown & FreestyleError;
|
|
7107
7740
|
static readonly code: string;
|
|
7108
7741
|
static readonly statusCode: number;
|
|
7109
7742
|
static readonly description: string;
|
|
7110
7743
|
constructor(body: unknown & FreestyleError);
|
|
7111
7744
|
}
|
|
7112
|
-
declare class
|
|
7745
|
+
declare class UserSystemFlagMismatchError extends Error {
|
|
7113
7746
|
body: unknown & FreestyleError;
|
|
7114
7747
|
static readonly code: string;
|
|
7115
7748
|
static readonly statusCode: number;
|
|
7116
7749
|
static readonly description: string;
|
|
7117
7750
|
constructor(body: unknown & FreestyleError);
|
|
7118
7751
|
}
|
|
7119
|
-
declare class
|
|
7752
|
+
declare class UserUidOutOfRangeError extends Error {
|
|
7120
7753
|
body: unknown & FreestyleError;
|
|
7121
7754
|
static readonly code: string;
|
|
7122
7755
|
static readonly statusCode: number;
|
|
7123
7756
|
static readonly description: string;
|
|
7124
7757
|
constructor(body: unknown & FreestyleError);
|
|
7125
7758
|
}
|
|
7126
|
-
declare class
|
|
7759
|
+
declare class UserHomeInvalidError extends Error {
|
|
7127
7760
|
body: unknown & FreestyleError;
|
|
7128
7761
|
static readonly code: string;
|
|
7129
7762
|
static readonly statusCode: number;
|
|
7130
7763
|
static readonly description: string;
|
|
7131
7764
|
constructor(body: unknown & FreestyleError);
|
|
7132
7765
|
}
|
|
7133
|
-
declare class
|
|
7766
|
+
declare class UserShellInvalidError extends Error {
|
|
7134
7767
|
body: unknown & FreestyleError;
|
|
7135
7768
|
static readonly code: string;
|
|
7136
7769
|
static readonly statusCode: number;
|
|
7137
7770
|
static readonly description: string;
|
|
7138
7771
|
constructor(body: unknown & FreestyleError);
|
|
7139
7772
|
}
|
|
7140
|
-
declare class
|
|
7773
|
+
declare class DuplicateGroupNameError extends Error {
|
|
7141
7774
|
body: unknown & FreestyleError;
|
|
7142
7775
|
static readonly code: string;
|
|
7143
7776
|
static readonly statusCode: number;
|
|
7144
7777
|
static readonly description: string;
|
|
7145
7778
|
constructor(body: unknown & FreestyleError);
|
|
7146
7779
|
}
|
|
7147
|
-
declare class
|
|
7780
|
+
declare class GroupNameReservedError extends Error {
|
|
7148
7781
|
body: unknown & FreestyleError;
|
|
7149
7782
|
static readonly code: string;
|
|
7150
7783
|
static readonly statusCode: number;
|
|
7151
7784
|
static readonly description: string;
|
|
7152
7785
|
constructor(body: unknown & FreestyleError);
|
|
7153
7786
|
}
|
|
7154
|
-
declare class
|
|
7787
|
+
declare class GroupNameInvalidCharsError extends Error {
|
|
7155
7788
|
body: unknown & FreestyleError;
|
|
7156
7789
|
static readonly code: string;
|
|
7157
7790
|
static readonly statusCode: number;
|
|
7158
7791
|
static readonly description: string;
|
|
7159
7792
|
constructor(body: unknown & FreestyleError);
|
|
7160
7793
|
}
|
|
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;
|
|
7794
|
+
declare class GroupNameTooLongError extends Error {
|
|
7795
|
+
body: unknown & FreestyleError;
|
|
7179
7796
|
static readonly code: string;
|
|
7180
7797
|
static readonly statusCode: number;
|
|
7181
7798
|
static readonly description: string;
|
|
7182
|
-
constructor(body:
|
|
7799
|
+
constructor(body: unknown & FreestyleError);
|
|
7183
7800
|
}
|
|
7184
|
-
declare class
|
|
7801
|
+
declare class GroupNameEmptyError extends Error {
|
|
7185
7802
|
body: unknown & FreestyleError;
|
|
7186
7803
|
static readonly code: string;
|
|
7187
7804
|
static readonly statusCode: number;
|
|
7188
7805
|
static readonly description: string;
|
|
7189
7806
|
constructor(body: unknown & FreestyleError);
|
|
7190
7807
|
}
|
|
7191
|
-
declare class
|
|
7808
|
+
declare class ActiveTransactionErrorError extends Error {
|
|
7192
7809
|
body: unknown & FreestyleError;
|
|
7193
7810
|
static readonly code: string;
|
|
7194
7811
|
static readonly statusCode: number;
|
|
7195
7812
|
static readonly description: string;
|
|
7196
7813
|
constructor(body: unknown & FreestyleError);
|
|
7197
7814
|
}
|
|
7198
|
-
|
|
7199
|
-
|
|
7200
|
-
details: string;
|
|
7201
|
-
[k: string]: unknown;
|
|
7202
|
-
}
|
|
7203
|
-
declare class InvalidVmIdError extends Error {
|
|
7204
|
-
body: PublicInvalidVmId & FreestyleError;
|
|
7815
|
+
declare class SwapVmTapError extends Error {
|
|
7816
|
+
body: unknown & FreestyleError;
|
|
7205
7817
|
static readonly code: string;
|
|
7206
7818
|
static readonly statusCode: number;
|
|
7207
7819
|
static readonly description: string;
|
|
7208
|
-
constructor(body:
|
|
7820
|
+
constructor(body: unknown & FreestyleError);
|
|
7209
7821
|
}
|
|
7210
|
-
declare class
|
|
7822
|
+
declare class RootfsCopyErrorError extends Error {
|
|
7211
7823
|
body: unknown & FreestyleError;
|
|
7212
7824
|
static readonly code: string;
|
|
7213
7825
|
static readonly statusCode: number;
|
|
7214
7826
|
static readonly description: string;
|
|
7215
7827
|
constructor(body: unknown & FreestyleError);
|
|
7216
7828
|
}
|
|
7217
|
-
declare class
|
|
7829
|
+
declare class PartitionNotFoundError extends Error {
|
|
7218
7830
|
body: unknown & FreestyleError;
|
|
7219
7831
|
static readonly code: string;
|
|
7220
7832
|
static readonly statusCode: number;
|
|
@@ -7243,61 +7855,56 @@ declare class FilesBadRequestError extends Error {
|
|
|
7243
7855
|
static readonly description: string;
|
|
7244
7856
|
constructor(body: PublicFilesBadRequest & FreestyleError);
|
|
7245
7857
|
}
|
|
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 {
|
|
7858
|
+
declare class DatabaseErrorError extends Error {
|
|
7258
7859
|
body: unknown & FreestyleError;
|
|
7259
7860
|
static readonly code: string;
|
|
7260
7861
|
static readonly statusCode: number;
|
|
7261
7862
|
static readonly description: string;
|
|
7262
7863
|
constructor(body: unknown & FreestyleError);
|
|
7263
7864
|
}
|
|
7264
|
-
interface
|
|
7265
|
-
|
|
7865
|
+
interface PublicInvalidVmId {
|
|
7866
|
+
vmId: string;
|
|
7867
|
+
details: string;
|
|
7266
7868
|
[k: string]: unknown;
|
|
7267
7869
|
}
|
|
7268
|
-
declare class
|
|
7269
|
-
body:
|
|
7870
|
+
declare class InvalidVmIdError extends Error {
|
|
7871
|
+
body: PublicInvalidVmId & FreestyleError;
|
|
7270
7872
|
static readonly code: string;
|
|
7271
7873
|
static readonly statusCode: number;
|
|
7272
7874
|
static readonly description: string;
|
|
7273
|
-
constructor(body:
|
|
7875
|
+
constructor(body: PublicInvalidVmId & FreestyleError);
|
|
7274
7876
|
}
|
|
7275
|
-
interface
|
|
7276
|
-
|
|
7877
|
+
interface VmOperationDeniedDuringTransactionPublic {
|
|
7878
|
+
vmId: VmId;
|
|
7879
|
+
transactionId: string;
|
|
7277
7880
|
[k: string]: unknown;
|
|
7278
7881
|
}
|
|
7279
|
-
declare class
|
|
7280
|
-
body:
|
|
7882
|
+
declare class VmOperationDeniedDuringTransactionError extends Error {
|
|
7883
|
+
body: VmOperationDeniedDuringTransactionPublic & FreestyleError;
|
|
7281
7884
|
static readonly code: string;
|
|
7282
7885
|
static readonly statusCode: number;
|
|
7283
7886
|
static readonly description: string;
|
|
7284
|
-
constructor(body:
|
|
7887
|
+
constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError);
|
|
7285
7888
|
}
|
|
7286
|
-
|
|
7287
|
-
|
|
7288
|
-
|
|
7289
|
-
|
|
7290
|
-
|
|
7291
|
-
|
|
7889
|
+
type VmId = string;
|
|
7890
|
+
type VmId = string;
|
|
7891
|
+
type VmId = string;
|
|
7892
|
+
type VmId = string;
|
|
7893
|
+
type VmId = string;
|
|
7894
|
+
interface VmTransactionIdMismatchPublic {
|
|
7895
|
+
vmId: VmId;
|
|
7896
|
+
expectedTransactionId: string;
|
|
7897
|
+
providedTransactionId: string;
|
|
7898
|
+
[k: string]: unknown;
|
|
7292
7899
|
}
|
|
7293
|
-
declare class
|
|
7294
|
-
body:
|
|
7900
|
+
declare class VmTransactionIdMismatchError extends Error {
|
|
7901
|
+
body: VmTransactionIdMismatchPublic & FreestyleError;
|
|
7295
7902
|
static readonly code: string;
|
|
7296
7903
|
static readonly statusCode: number;
|
|
7297
7904
|
static readonly description: string;
|
|
7298
|
-
constructor(body:
|
|
7905
|
+
constructor(body: VmTransactionIdMismatchPublic & FreestyleError);
|
|
7299
7906
|
}
|
|
7300
|
-
declare class
|
|
7907
|
+
declare class VmNotInTransactionError extends Error {
|
|
7301
7908
|
body: unknown & FreestyleError;
|
|
7302
7909
|
static readonly code: string;
|
|
7303
7910
|
static readonly statusCode: number;
|
|
@@ -7315,24 +7922,32 @@ declare class CreateVmBadRequestError extends Error {
|
|
|
7315
7922
|
static readonly description: string;
|
|
7316
7923
|
constructor(body: PublicCreateVmBadRequest & FreestyleError);
|
|
7317
7924
|
}
|
|
7925
|
+
interface VmSetupFailedPublic {
|
|
7926
|
+
snapshotId?: string | null;
|
|
7927
|
+
failedReason: string;
|
|
7928
|
+
diagnostics?: PostBootDiagnostics | null;
|
|
7929
|
+
[k: string]: unknown;
|
|
7930
|
+
}
|
|
7931
|
+
interface PostBootDiagnostics {
|
|
7932
|
+
/**
|
|
7933
|
+
* Summary of all systemd service states grouped by (active_state, sub_state)
|
|
7934
|
+
*/
|
|
7935
|
+
serviceStates: ServiceStateGroup[];
|
|
7936
|
+
/**
|
|
7937
|
+
* Journald logs for all services in a failed state
|
|
7938
|
+
*/
|
|
7939
|
+
failedServiceLogs: ServiceLog[];
|
|
7940
|
+
[k: string]: unknown;
|
|
7941
|
+
}
|
|
7318
7942
|
interface ServiceStateGroup {
|
|
7319
7943
|
activeState: string;
|
|
7320
7944
|
subState: string;
|
|
7321
7945
|
services: string[];
|
|
7946
|
+
[k: string]: unknown;
|
|
7322
7947
|
}
|
|
7323
7948
|
interface ServiceLog {
|
|
7324
7949
|
unitName: string;
|
|
7325
7950
|
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
7951
|
[k: string]: unknown;
|
|
7337
7952
|
}
|
|
7338
7953
|
declare class VmSetupFailedError extends Error {
|
|
@@ -7545,135 +8160,121 @@ declare class ExpiredError extends Error {
|
|
|
7545
8160
|
static readonly description: string;
|
|
7546
8161
|
constructor(body: unknown & FreestyleError);
|
|
7547
8162
|
}
|
|
7548
|
-
|
|
7549
|
-
|
|
8163
|
+
interface PublicBranchNotFound {
|
|
8164
|
+
branch: string;
|
|
8165
|
+
[k: string]: unknown;
|
|
8166
|
+
}
|
|
8167
|
+
declare class BranchNotFoundError extends Error {
|
|
8168
|
+
body: PublicBranchNotFound & FreestyleError;
|
|
7550
8169
|
static readonly code: string;
|
|
7551
8170
|
static readonly statusCode: number;
|
|
7552
8171
|
static readonly description: string;
|
|
7553
|
-
constructor(body:
|
|
8172
|
+
constructor(body: PublicBranchNotFound & FreestyleError);
|
|
7554
8173
|
}
|
|
7555
|
-
|
|
7556
|
-
|
|
8174
|
+
interface PublicBranchAlreadyExists {
|
|
8175
|
+
branch: string;
|
|
8176
|
+
[k: string]: unknown;
|
|
8177
|
+
}
|
|
8178
|
+
declare class BranchAlreadyExistsError extends Error {
|
|
8179
|
+
body: PublicBranchAlreadyExists & FreestyleError;
|
|
7557
8180
|
static readonly code: string;
|
|
7558
8181
|
static readonly statusCode: number;
|
|
7559
8182
|
static readonly description: string;
|
|
7560
|
-
constructor(body:
|
|
7561
|
-
}
|
|
7562
|
-
interface PublicBlobNotFound {
|
|
7563
|
-
hash: string;
|
|
7564
|
-
[k: string]: unknown;
|
|
7565
|
-
}
|
|
7566
|
-
declare class BlobNotFoundError extends Error {
|
|
7567
|
-
body: PublicBlobNotFound & FreestyleError;
|
|
7568
|
-
static readonly code: string;
|
|
7569
|
-
static readonly statusCode: number;
|
|
7570
|
-
static readonly description: string;
|
|
7571
|
-
constructor(body: PublicBlobNotFound & FreestyleError);
|
|
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);
|
|
8183
|
+
constructor(body: PublicBranchAlreadyExists & FreestyleError);
|
|
7584
8184
|
}
|
|
7585
|
-
declare class
|
|
8185
|
+
declare class NoDefaultBranchError extends Error {
|
|
7586
8186
|
body: unknown & FreestyleError;
|
|
7587
8187
|
static readonly code: string;
|
|
7588
8188
|
static readonly statusCode: number;
|
|
7589
8189
|
static readonly description: string;
|
|
7590
8190
|
constructor(body: unknown & FreestyleError);
|
|
7591
8191
|
}
|
|
7592
|
-
interface
|
|
8192
|
+
interface PublicCommitNotFound {
|
|
7593
8193
|
sha: string;
|
|
7594
|
-
branch: string;
|
|
7595
8194
|
[k: string]: unknown;
|
|
7596
8195
|
}
|
|
7597
|
-
declare class
|
|
7598
|
-
body:
|
|
8196
|
+
declare class CommitNotFoundError extends Error {
|
|
8197
|
+
body: PublicCommitNotFound & FreestyleError;
|
|
7599
8198
|
static readonly code: string;
|
|
7600
8199
|
static readonly statusCode: number;
|
|
7601
8200
|
static readonly description: string;
|
|
7602
|
-
constructor(body:
|
|
8201
|
+
constructor(body: PublicCommitNotFound & FreestyleError);
|
|
7603
8202
|
}
|
|
7604
|
-
interface
|
|
8203
|
+
interface PublicParentNotFound {
|
|
7605
8204
|
sha: string;
|
|
7606
8205
|
[k: string]: unknown;
|
|
7607
8206
|
}
|
|
7608
|
-
declare class
|
|
7609
|
-
body:
|
|
8207
|
+
declare class ParentNotFoundError extends Error {
|
|
8208
|
+
body: PublicParentNotFound & FreestyleError;
|
|
7610
8209
|
static readonly code: string;
|
|
7611
8210
|
static readonly statusCode: number;
|
|
7612
8211
|
static readonly description: string;
|
|
7613
|
-
constructor(body:
|
|
8212
|
+
constructor(body: PublicParentNotFound & FreestyleError);
|
|
7614
8213
|
}
|
|
7615
|
-
interface
|
|
7616
|
-
|
|
8214
|
+
interface PublicTreeNotFound {
|
|
8215
|
+
sha: string;
|
|
7617
8216
|
[k: string]: unknown;
|
|
7618
8217
|
}
|
|
7619
|
-
declare class
|
|
7620
|
-
body:
|
|
8218
|
+
declare class TreeNotFoundError extends Error {
|
|
8219
|
+
body: PublicTreeNotFound & FreestyleError;
|
|
7621
8220
|
static readonly code: string;
|
|
7622
8221
|
static readonly statusCode: number;
|
|
7623
8222
|
static readonly description: string;
|
|
7624
|
-
constructor(body:
|
|
8223
|
+
constructor(body: PublicTreeNotFound & FreestyleError);
|
|
7625
8224
|
}
|
|
7626
|
-
declare class
|
|
8225
|
+
declare class PackfileError extends Error {
|
|
7627
8226
|
body: unknown & FreestyleError;
|
|
7628
8227
|
static readonly code: string;
|
|
7629
8228
|
static readonly statusCode: number;
|
|
7630
8229
|
static readonly description: string;
|
|
7631
8230
|
constructor(body: unknown & FreestyleError);
|
|
7632
8231
|
}
|
|
7633
|
-
interface
|
|
7634
|
-
|
|
8232
|
+
interface PublicInvalidRevision {
|
|
8233
|
+
revision: string;
|
|
7635
8234
|
[k: string]: unknown;
|
|
7636
8235
|
}
|
|
7637
|
-
declare class
|
|
7638
|
-
body:
|
|
8236
|
+
declare class InvalidRevisionError extends Error {
|
|
8237
|
+
body: PublicInvalidRevision & FreestyleError;
|
|
7639
8238
|
static readonly code: string;
|
|
7640
8239
|
static readonly statusCode: number;
|
|
7641
8240
|
static readonly description: string;
|
|
7642
|
-
constructor(body:
|
|
8241
|
+
constructor(body: PublicInvalidRevision & FreestyleError);
|
|
7643
8242
|
}
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
8243
|
+
declare class ForbiddenError extends Error {
|
|
8244
|
+
body: unknown & FreestyleError;
|
|
8245
|
+
static readonly code: string;
|
|
8246
|
+
static readonly statusCode: number;
|
|
8247
|
+
static readonly description: string;
|
|
8248
|
+
constructor(body: unknown & FreestyleError);
|
|
7647
8249
|
}
|
|
7648
|
-
declare class
|
|
7649
|
-
body:
|
|
8250
|
+
declare class UnauthorizedError extends Error {
|
|
8251
|
+
body: unknown & FreestyleError;
|
|
7650
8252
|
static readonly code: string;
|
|
7651
8253
|
static readonly statusCode: number;
|
|
7652
8254
|
static readonly description: string;
|
|
7653
|
-
constructor(body:
|
|
8255
|
+
constructor(body: unknown & FreestyleError);
|
|
7654
8256
|
}
|
|
7655
|
-
interface
|
|
8257
|
+
interface PublicPathNotFound {
|
|
7656
8258
|
path: string;
|
|
7657
8259
|
[k: string]: unknown;
|
|
7658
8260
|
}
|
|
7659
|
-
declare class
|
|
7660
|
-
body:
|
|
8261
|
+
declare class PathNotFoundError extends Error {
|
|
8262
|
+
body: PublicPathNotFound & FreestyleError;
|
|
7661
8263
|
static readonly code: string;
|
|
7662
8264
|
static readonly statusCode: number;
|
|
7663
8265
|
static readonly description: string;
|
|
7664
|
-
constructor(body:
|
|
8266
|
+
constructor(body: PublicPathNotFound & FreestyleError);
|
|
7665
8267
|
}
|
|
7666
|
-
interface
|
|
7667
|
-
|
|
7668
|
-
actual?: string | null;
|
|
8268
|
+
interface PublicReferenceNotFound {
|
|
8269
|
+
reference: string;
|
|
7669
8270
|
[k: string]: unknown;
|
|
7670
8271
|
}
|
|
7671
|
-
declare class
|
|
7672
|
-
body:
|
|
8272
|
+
declare class ReferenceNotFoundError extends Error {
|
|
8273
|
+
body: PublicReferenceNotFound & FreestyleError;
|
|
7673
8274
|
static readonly code: string;
|
|
7674
8275
|
static readonly statusCode: number;
|
|
7675
8276
|
static readonly description: string;
|
|
7676
|
-
constructor(body:
|
|
8277
|
+
constructor(body: PublicReferenceNotFound & FreestyleError);
|
|
7677
8278
|
}
|
|
7678
8279
|
interface PublicAmbiguous {
|
|
7679
8280
|
rev: string;
|
|
@@ -7708,114 +8309,151 @@ declare class InvalidError extends Error {
|
|
|
7708
8309
|
static readonly description: string;
|
|
7709
8310
|
constructor(body: PublicInvalid & FreestyleError);
|
|
7710
8311
|
}
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
};
|
|
7714
|
-
interface PublicUnsupportedTransfer {
|
|
7715
|
-
requested: LfsTransferAdapter[];
|
|
7716
|
-
supported: LfsTransferAdapter[];
|
|
8312
|
+
interface PublicDiffInvalidPathPattern {
|
|
8313
|
+
reason: string;
|
|
7717
8314
|
[k: string]: unknown;
|
|
7718
8315
|
}
|
|
7719
|
-
declare class
|
|
7720
|
-
body:
|
|
8316
|
+
declare class DiffInvalidPathPatternError extends Error {
|
|
8317
|
+
body: PublicDiffInvalidPathPattern & FreestyleError;
|
|
7721
8318
|
static readonly code: string;
|
|
7722
8319
|
static readonly statusCode: number;
|
|
7723
8320
|
static readonly description: string;
|
|
7724
|
-
constructor(body:
|
|
8321
|
+
constructor(body: PublicDiffInvalidPathPattern & FreestyleError);
|
|
7725
8322
|
}
|
|
7726
|
-
interface
|
|
7727
|
-
|
|
8323
|
+
interface PublicDiffInvalidRegex {
|
|
8324
|
+
reason: string;
|
|
7728
8325
|
[k: string]: unknown;
|
|
7729
8326
|
}
|
|
7730
|
-
declare class
|
|
7731
|
-
body:
|
|
8327
|
+
declare class DiffInvalidRegexError extends Error {
|
|
8328
|
+
body: PublicDiffInvalidRegex & FreestyleError;
|
|
7732
8329
|
static readonly code: string;
|
|
7733
8330
|
static readonly statusCode: number;
|
|
7734
8331
|
static readonly description: string;
|
|
7735
|
-
constructor(body:
|
|
8332
|
+
constructor(body: PublicDiffInvalidRegex & FreestyleError);
|
|
7736
8333
|
}
|
|
7737
|
-
|
|
7738
|
-
|
|
8334
|
+
declare class DiffEmptyQueryError extends Error {
|
|
8335
|
+
body: unknown & FreestyleError;
|
|
8336
|
+
static readonly code: string;
|
|
8337
|
+
static readonly statusCode: number;
|
|
8338
|
+
static readonly description: string;
|
|
8339
|
+
constructor(body: unknown & FreestyleError);
|
|
8340
|
+
}
|
|
8341
|
+
interface PublicCommitInvalidRegex {
|
|
8342
|
+
reason: string;
|
|
7739
8343
|
[k: string]: unknown;
|
|
7740
8344
|
}
|
|
7741
|
-
declare class
|
|
7742
|
-
body:
|
|
8345
|
+
declare class CommitInvalidRegexError extends Error {
|
|
8346
|
+
body: PublicCommitInvalidRegex & FreestyleError;
|
|
7743
8347
|
static readonly code: string;
|
|
7744
8348
|
static readonly statusCode: number;
|
|
7745
8349
|
static readonly description: string;
|
|
7746
|
-
constructor(body:
|
|
8350
|
+
constructor(body: PublicCommitInvalidRegex & FreestyleError);
|
|
7747
8351
|
}
|
|
7748
|
-
declare class
|
|
8352
|
+
declare class CommitEmptyQueryError extends Error {
|
|
7749
8353
|
body: unknown & FreestyleError;
|
|
7750
8354
|
static readonly code: string;
|
|
7751
8355
|
static readonly statusCode: number;
|
|
7752
8356
|
static readonly description: string;
|
|
7753
8357
|
constructor(body: unknown & FreestyleError);
|
|
7754
8358
|
}
|
|
7755
|
-
|
|
8359
|
+
interface PublicFilenameInvalidPattern {
|
|
8360
|
+
reason: string;
|
|
8361
|
+
[k: string]: unknown;
|
|
8362
|
+
}
|
|
8363
|
+
declare class FilenameInvalidPatternError extends Error {
|
|
8364
|
+
body: PublicFilenameInvalidPattern & FreestyleError;
|
|
8365
|
+
static readonly code: string;
|
|
8366
|
+
static readonly statusCode: number;
|
|
8367
|
+
static readonly description: string;
|
|
8368
|
+
constructor(body: PublicFilenameInvalidPattern & FreestyleError);
|
|
8369
|
+
}
|
|
8370
|
+
declare class FilenameEmptyQueryError extends Error {
|
|
7756
8371
|
body: unknown & FreestyleError;
|
|
7757
8372
|
static readonly code: string;
|
|
7758
8373
|
static readonly statusCode: number;
|
|
7759
8374
|
static readonly description: string;
|
|
7760
8375
|
constructor(body: unknown & FreestyleError);
|
|
7761
8376
|
}
|
|
7762
|
-
interface
|
|
7763
|
-
|
|
8377
|
+
interface PublicInvalidRegex {
|
|
8378
|
+
reason: string;
|
|
7764
8379
|
[k: string]: unknown;
|
|
7765
8380
|
}
|
|
7766
|
-
declare class
|
|
7767
|
-
body:
|
|
8381
|
+
declare class InvalidRegexError extends Error {
|
|
8382
|
+
body: PublicInvalidRegex & FreestyleError;
|
|
7768
8383
|
static readonly code: string;
|
|
7769
8384
|
static readonly statusCode: number;
|
|
7770
8385
|
static readonly description: string;
|
|
7771
|
-
constructor(body:
|
|
8386
|
+
constructor(body: PublicInvalidRegex & FreestyleError);
|
|
7772
8387
|
}
|
|
7773
|
-
interface
|
|
7774
|
-
|
|
8388
|
+
interface PublicInvalidPathPattern {
|
|
8389
|
+
reason: string;
|
|
7775
8390
|
[k: string]: unknown;
|
|
7776
8391
|
}
|
|
7777
|
-
declare class
|
|
7778
|
-
body:
|
|
8392
|
+
declare class InvalidPathPatternError extends Error {
|
|
8393
|
+
body: PublicInvalidPathPattern & FreestyleError;
|
|
7779
8394
|
static readonly code: string;
|
|
7780
8395
|
static readonly statusCode: number;
|
|
7781
8396
|
static readonly description: string;
|
|
7782
|
-
constructor(body:
|
|
8397
|
+
constructor(body: PublicInvalidPathPattern & FreestyleError);
|
|
7783
8398
|
}
|
|
7784
|
-
|
|
7785
|
-
|
|
8399
|
+
declare class EmptyQueryError extends Error {
|
|
8400
|
+
body: unknown & FreestyleError;
|
|
8401
|
+
static readonly code: string;
|
|
8402
|
+
static readonly statusCode: number;
|
|
8403
|
+
static readonly description: string;
|
|
8404
|
+
constructor(body: unknown & FreestyleError);
|
|
8405
|
+
}
|
|
8406
|
+
declare class ConflictError extends Error {
|
|
8407
|
+
body: unknown & FreestyleError;
|
|
8408
|
+
static readonly code: string;
|
|
8409
|
+
static readonly statusCode: number;
|
|
8410
|
+
static readonly description: string;
|
|
8411
|
+
constructor(body: unknown & FreestyleError);
|
|
8412
|
+
}
|
|
8413
|
+
interface PublicInvalidBase64Content {
|
|
8414
|
+
path: string;
|
|
7786
8415
|
[k: string]: unknown;
|
|
7787
8416
|
}
|
|
7788
|
-
declare class
|
|
7789
|
-
body:
|
|
8417
|
+
declare class InvalidBase64ContentError extends Error {
|
|
8418
|
+
body: PublicInvalidBase64Content & FreestyleError;
|
|
7790
8419
|
static readonly code: string;
|
|
7791
8420
|
static readonly statusCode: number;
|
|
7792
8421
|
static readonly description: string;
|
|
7793
|
-
constructor(body:
|
|
8422
|
+
constructor(body: PublicInvalidBase64Content & FreestyleError);
|
|
7794
8423
|
}
|
|
7795
|
-
interface
|
|
7796
|
-
|
|
8424
|
+
interface PublicInvalidFileChange {
|
|
8425
|
+
path: string;
|
|
7797
8426
|
[k: string]: unknown;
|
|
7798
8427
|
}
|
|
7799
|
-
declare class
|
|
7800
|
-
body:
|
|
8428
|
+
declare class InvalidFileChangeError extends Error {
|
|
8429
|
+
body: PublicInvalidFileChange & FreestyleError;
|
|
7801
8430
|
static readonly code: string;
|
|
7802
8431
|
static readonly statusCode: number;
|
|
7803
8432
|
static readonly description: string;
|
|
7804
|
-
constructor(body:
|
|
8433
|
+
constructor(body: PublicInvalidFileChange & FreestyleError);
|
|
7805
8434
|
}
|
|
7806
|
-
|
|
7807
|
-
|
|
8435
|
+
interface PublicInvalidFilePath {
|
|
8436
|
+
path: string;
|
|
8437
|
+
[k: string]: unknown;
|
|
8438
|
+
}
|
|
8439
|
+
declare class InvalidFilePathError extends Error {
|
|
8440
|
+
body: PublicInvalidFilePath & FreestyleError;
|
|
7808
8441
|
static readonly code: string;
|
|
7809
8442
|
static readonly statusCode: number;
|
|
7810
8443
|
static readonly description: string;
|
|
7811
|
-
constructor(body:
|
|
8444
|
+
constructor(body: PublicInvalidFilePath & FreestyleError);
|
|
7812
8445
|
}
|
|
7813
|
-
|
|
7814
|
-
|
|
8446
|
+
interface PublicConflictingParent {
|
|
8447
|
+
expected: string;
|
|
8448
|
+
actual?: string | null;
|
|
8449
|
+
[k: string]: unknown;
|
|
8450
|
+
}
|
|
8451
|
+
declare class ConflictingParentError extends Error {
|
|
8452
|
+
body: PublicConflictingParent & FreestyleError;
|
|
7815
8453
|
static readonly code: string;
|
|
7816
8454
|
static readonly statusCode: number;
|
|
7817
8455
|
static readonly description: string;
|
|
7818
|
-
constructor(body:
|
|
8456
|
+
constructor(body: PublicConflictingParent & FreestyleError);
|
|
7819
8457
|
}
|
|
7820
8458
|
interface PublicInvalidAccountId {
|
|
7821
8459
|
accountId: string;
|
|
@@ -7883,615 +8521,687 @@ declare class RepoAlreadyExistsError extends Error {
|
|
|
7883
8521
|
static readonly description: string;
|
|
7884
8522
|
constructor(body: PublicRepoAlreadyExists & FreestyleError);
|
|
7885
8523
|
}
|
|
7886
|
-
declare class
|
|
8524
|
+
declare class SendErrorError extends Error {
|
|
7887
8525
|
body: unknown & FreestyleError;
|
|
7888
8526
|
static readonly code: string;
|
|
7889
8527
|
static readonly statusCode: number;
|
|
7890
8528
|
static readonly description: string;
|
|
7891
8529
|
constructor(body: unknown & FreestyleError);
|
|
7892
8530
|
}
|
|
7893
|
-
interface
|
|
7894
|
-
|
|
8531
|
+
interface PublicInvalidRange {
|
|
8532
|
+
since: string;
|
|
8533
|
+
until: string;
|
|
7895
8534
|
[k: string]: unknown;
|
|
7896
8535
|
}
|
|
7897
|
-
declare class
|
|
7898
|
-
body:
|
|
8536
|
+
declare class InvalidRangeError extends Error {
|
|
8537
|
+
body: PublicInvalidRange & FreestyleError;
|
|
7899
8538
|
static readonly code: string;
|
|
7900
8539
|
static readonly statusCode: number;
|
|
7901
8540
|
static readonly description: string;
|
|
7902
|
-
constructor(body:
|
|
8541
|
+
constructor(body: PublicInvalidRange & FreestyleError);
|
|
7903
8542
|
}
|
|
7904
|
-
declare class
|
|
8543
|
+
declare class OffsetWithSelectorError extends Error {
|
|
7905
8544
|
body: unknown & FreestyleError;
|
|
7906
8545
|
static readonly code: string;
|
|
7907
8546
|
static readonly statusCode: number;
|
|
7908
8547
|
static readonly description: string;
|
|
7909
8548
|
constructor(body: unknown & FreestyleError);
|
|
7910
8549
|
}
|
|
7911
|
-
interface
|
|
7912
|
-
|
|
8550
|
+
interface PublicCommitNotInBranch {
|
|
8551
|
+
sha: string;
|
|
8552
|
+
branch: string;
|
|
7913
8553
|
[k: string]: unknown;
|
|
7914
8554
|
}
|
|
7915
|
-
declare class
|
|
7916
|
-
body:
|
|
8555
|
+
declare class CommitNotInBranchError extends Error {
|
|
8556
|
+
body: PublicCommitNotInBranch & FreestyleError;
|
|
7917
8557
|
static readonly code: string;
|
|
7918
8558
|
static readonly statusCode: number;
|
|
7919
8559
|
static readonly description: string;
|
|
7920
|
-
constructor(body:
|
|
8560
|
+
constructor(body: PublicCommitNotInBranch & FreestyleError);
|
|
7921
8561
|
}
|
|
7922
|
-
|
|
7923
|
-
|
|
8562
|
+
interface PublicTagNotFound {
|
|
8563
|
+
hash: string;
|
|
8564
|
+
[k: string]: unknown;
|
|
8565
|
+
}
|
|
8566
|
+
declare class TagNotFoundError extends Error {
|
|
8567
|
+
body: PublicTagNotFound & FreestyleError;
|
|
7924
8568
|
static readonly code: string;
|
|
7925
8569
|
static readonly statusCode: number;
|
|
7926
8570
|
static readonly description: string;
|
|
7927
|
-
constructor(body:
|
|
8571
|
+
constructor(body: PublicTagNotFound & FreestyleError);
|
|
7928
8572
|
}
|
|
7929
|
-
declare class
|
|
8573
|
+
declare class InvalidServiceError extends Error {
|
|
7930
8574
|
body: unknown & FreestyleError;
|
|
7931
8575
|
static readonly code: string;
|
|
7932
8576
|
static readonly statusCode: number;
|
|
7933
8577
|
static readonly description: string;
|
|
7934
8578
|
constructor(body: unknown & FreestyleError);
|
|
7935
8579
|
}
|
|
7936
|
-
declare class
|
|
8580
|
+
declare class ExpectedServiceError extends Error {
|
|
7937
8581
|
body: unknown & FreestyleError;
|
|
7938
8582
|
static readonly code: string;
|
|
7939
8583
|
static readonly statusCode: number;
|
|
7940
8584
|
static readonly description: string;
|
|
7941
8585
|
constructor(body: unknown & FreestyleError);
|
|
7942
8586
|
}
|
|
7943
|
-
declare class
|
|
8587
|
+
declare class GitHubSyncConflictError extends Error {
|
|
7944
8588
|
body: unknown & FreestyleError;
|
|
7945
8589
|
static readonly code: string;
|
|
7946
8590
|
static readonly statusCode: number;
|
|
7947
8591
|
static readonly description: string;
|
|
7948
8592
|
constructor(body: unknown & FreestyleError);
|
|
7949
8593
|
}
|
|
7950
|
-
interface
|
|
7951
|
-
|
|
8594
|
+
interface InvalidObjectIdPublic {
|
|
8595
|
+
hash: string;
|
|
7952
8596
|
[k: string]: unknown;
|
|
7953
8597
|
}
|
|
7954
|
-
declare class
|
|
7955
|
-
body:
|
|
8598
|
+
declare class InvalidObjectIdError extends Error {
|
|
8599
|
+
body: InvalidObjectIdPublic & FreestyleError;
|
|
7956
8600
|
static readonly code: string;
|
|
7957
8601
|
static readonly statusCode: number;
|
|
7958
8602
|
static readonly description: string;
|
|
7959
|
-
constructor(body:
|
|
7960
|
-
}
|
|
7961
|
-
interface PublicObservabilityAccessDenied {
|
|
7962
|
-
deploymentId: string;
|
|
7963
|
-
[k: string]: unknown;
|
|
8603
|
+
constructor(body: InvalidObjectIdPublic & FreestyleError);
|
|
7964
8604
|
}
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
}
|
|
7972
|
-
interface PublicParseLogsFailed {
|
|
7973
|
-
message: string;
|
|
8605
|
+
type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
|
|
8606
|
+
other: string;
|
|
8607
|
+
};
|
|
8608
|
+
interface PublicUnsupportedTransfer {
|
|
8609
|
+
requested: LfsTransferAdapter[];
|
|
8610
|
+
supported: LfsTransferAdapter[];
|
|
7974
8611
|
[k: string]: unknown;
|
|
7975
8612
|
}
|
|
7976
|
-
declare class
|
|
7977
|
-
body:
|
|
8613
|
+
declare class UnsupportedTransferError extends Error {
|
|
8614
|
+
body: PublicUnsupportedTransfer & FreestyleError;
|
|
7978
8615
|
static readonly code: string;
|
|
7979
8616
|
static readonly statusCode: number;
|
|
7980
8617
|
static readonly description: string;
|
|
7981
|
-
constructor(body:
|
|
8618
|
+
constructor(body: PublicUnsupportedTransfer & FreestyleError);
|
|
7982
8619
|
}
|
|
7983
|
-
interface
|
|
7984
|
-
|
|
8620
|
+
interface PublicBlobNotFound {
|
|
8621
|
+
hash: string;
|
|
7985
8622
|
[k: string]: unknown;
|
|
7986
8623
|
}
|
|
7987
|
-
declare class
|
|
7988
|
-
body:
|
|
8624
|
+
declare class BlobNotFoundError extends Error {
|
|
8625
|
+
body: PublicBlobNotFound & FreestyleError;
|
|
7989
8626
|
static readonly code: string;
|
|
7990
8627
|
static readonly statusCode: number;
|
|
7991
8628
|
static readonly description: string;
|
|
7992
|
-
constructor(body:
|
|
7993
|
-
}
|
|
7994
|
-
interface PublicInvalidQuery {
|
|
7995
|
-
message: string;
|
|
7996
|
-
[k: string]: unknown;
|
|
8629
|
+
constructor(body: PublicBlobNotFound & FreestyleError);
|
|
7997
8630
|
}
|
|
7998
|
-
declare class
|
|
7999
|
-
body:
|
|
8631
|
+
declare class UnavailableError extends Error {
|
|
8632
|
+
body: unknown & FreestyleError;
|
|
8000
8633
|
static readonly code: string;
|
|
8001
8634
|
static readonly statusCode: number;
|
|
8002
8635
|
static readonly description: string;
|
|
8003
|
-
constructor(body:
|
|
8004
|
-
}
|
|
8005
|
-
interface PublicLogsNotFound {
|
|
8006
|
-
deploymentId: string;
|
|
8007
|
-
[k: string]: unknown;
|
|
8636
|
+
constructor(body: unknown & FreestyleError);
|
|
8008
8637
|
}
|
|
8009
|
-
declare class
|
|
8010
|
-
body:
|
|
8638
|
+
declare class ScheduleNotFoundError extends Error {
|
|
8639
|
+
body: unknown & FreestyleError;
|
|
8011
8640
|
static readonly code: string;
|
|
8012
8641
|
static readonly statusCode: number;
|
|
8013
8642
|
static readonly description: string;
|
|
8014
|
-
constructor(body:
|
|
8643
|
+
constructor(body: unknown & FreestyleError);
|
|
8015
8644
|
}
|
|
8016
|
-
|
|
8017
|
-
|
|
8018
|
-
|
|
8645
|
+
declare class ServiceUnavailableError extends Error {
|
|
8646
|
+
body: unknown & FreestyleError;
|
|
8647
|
+
static readonly code: string;
|
|
8648
|
+
static readonly statusCode: number;
|
|
8649
|
+
static readonly description: string;
|
|
8650
|
+
constructor(body: unknown & FreestyleError);
|
|
8019
8651
|
}
|
|
8020
|
-
declare class
|
|
8021
|
-
body:
|
|
8652
|
+
declare class ExecuteLimitExceededError extends Error {
|
|
8653
|
+
body: unknown & FreestyleError;
|
|
8022
8654
|
static readonly code: string;
|
|
8023
8655
|
static readonly statusCode: number;
|
|
8024
8656
|
static readonly description: string;
|
|
8025
|
-
constructor(body:
|
|
8657
|
+
constructor(body: unknown & FreestyleError);
|
|
8026
8658
|
}
|
|
8027
|
-
declare class
|
|
8659
|
+
declare class AccessDeniedError extends Error {
|
|
8028
8660
|
body: unknown & FreestyleError;
|
|
8029
8661
|
static readonly code: string;
|
|
8030
8662
|
static readonly statusCode: number;
|
|
8031
8663
|
static readonly description: string;
|
|
8032
8664
|
constructor(body: unknown & FreestyleError);
|
|
8033
8665
|
}
|
|
8034
|
-
interface
|
|
8666
|
+
interface PublicCloudstateInternalError {
|
|
8035
8667
|
message: string;
|
|
8036
8668
|
[k: string]: unknown;
|
|
8037
8669
|
}
|
|
8038
|
-
declare class
|
|
8039
|
-
body:
|
|
8670
|
+
declare class CloudstateInternalErrorError extends Error {
|
|
8671
|
+
body: PublicCloudstateInternalError & FreestyleError;
|
|
8040
8672
|
static readonly code: string;
|
|
8041
8673
|
static readonly statusCode: number;
|
|
8042
8674
|
static readonly description: string;
|
|
8043
|
-
constructor(body:
|
|
8675
|
+
constructor(body: PublicCloudstateInternalError & FreestyleError);
|
|
8044
8676
|
}
|
|
8045
|
-
interface
|
|
8677
|
+
interface PublicCloudstateDatabaseError {
|
|
8046
8678
|
message: string;
|
|
8047
8679
|
[k: string]: unknown;
|
|
8048
8680
|
}
|
|
8049
|
-
declare class
|
|
8050
|
-
body:
|
|
8681
|
+
declare class CloudstateDatabaseErrorError extends Error {
|
|
8682
|
+
body: PublicCloudstateDatabaseError & FreestyleError;
|
|
8051
8683
|
static readonly code: string;
|
|
8052
8684
|
static readonly statusCode: number;
|
|
8053
8685
|
static readonly description: string;
|
|
8054
|
-
constructor(body:
|
|
8686
|
+
constructor(body: PublicCloudstateDatabaseError & FreestyleError);
|
|
8055
8687
|
}
|
|
8056
|
-
interface
|
|
8057
|
-
|
|
8688
|
+
interface PublicCloudstateAccessDenied {
|
|
8689
|
+
projectId: string;
|
|
8058
8690
|
[k: string]: unknown;
|
|
8059
8691
|
}
|
|
8060
|
-
declare class
|
|
8061
|
-
body:
|
|
8692
|
+
declare class CloudstateAccessDeniedError extends Error {
|
|
8693
|
+
body: PublicCloudstateAccessDenied & FreestyleError;
|
|
8062
8694
|
static readonly code: string;
|
|
8063
8695
|
static readonly statusCode: number;
|
|
8064
8696
|
static readonly description: string;
|
|
8065
|
-
constructor(body:
|
|
8697
|
+
constructor(body: PublicCloudstateAccessDenied & FreestyleError);
|
|
8066
8698
|
}
|
|
8067
|
-
interface
|
|
8699
|
+
interface PublicRestoreFailed {
|
|
8068
8700
|
message: string;
|
|
8069
8701
|
[k: string]: unknown;
|
|
8070
8702
|
}
|
|
8071
|
-
declare class
|
|
8072
|
-
body:
|
|
8703
|
+
declare class RestoreFailedError extends Error {
|
|
8704
|
+
body: PublicRestoreFailed & FreestyleError;
|
|
8073
8705
|
static readonly code: string;
|
|
8074
8706
|
static readonly statusCode: number;
|
|
8075
8707
|
static readonly description: string;
|
|
8076
|
-
constructor(body:
|
|
8708
|
+
constructor(body: PublicRestoreFailed & FreestyleError);
|
|
8077
8709
|
}
|
|
8078
|
-
interface
|
|
8710
|
+
interface PublicCreateBackupFailed {
|
|
8079
8711
|
message: string;
|
|
8080
8712
|
[k: string]: unknown;
|
|
8081
8713
|
}
|
|
8082
|
-
declare class
|
|
8083
|
-
body:
|
|
8714
|
+
declare class CreateBackupFailedError extends Error {
|
|
8715
|
+
body: PublicCreateBackupFailed & FreestyleError;
|
|
8084
8716
|
static readonly code: string;
|
|
8085
8717
|
static readonly statusCode: number;
|
|
8086
8718
|
static readonly description: string;
|
|
8087
|
-
constructor(body:
|
|
8719
|
+
constructor(body: PublicCreateBackupFailed & FreestyleError);
|
|
8088
8720
|
}
|
|
8089
|
-
interface
|
|
8721
|
+
interface PublicBackupFailed {
|
|
8090
8722
|
message: string;
|
|
8091
8723
|
[k: string]: unknown;
|
|
8092
8724
|
}
|
|
8093
|
-
declare class
|
|
8094
|
-
body:
|
|
8725
|
+
declare class BackupFailedError extends Error {
|
|
8726
|
+
body: PublicBackupFailed & FreestyleError;
|
|
8095
8727
|
static readonly code: string;
|
|
8096
8728
|
static readonly statusCode: number;
|
|
8097
8729
|
static readonly description: string;
|
|
8098
|
-
constructor(body:
|
|
8730
|
+
constructor(body: PublicBackupFailed & FreestyleError);
|
|
8099
8731
|
}
|
|
8100
|
-
interface
|
|
8732
|
+
interface PublicDeploymentFailed {
|
|
8101
8733
|
message: string;
|
|
8102
8734
|
[k: string]: unknown;
|
|
8103
8735
|
}
|
|
8104
|
-
declare class
|
|
8105
|
-
body:
|
|
8736
|
+
declare class DeploymentFailedError extends Error {
|
|
8737
|
+
body: PublicDeploymentFailed & FreestyleError;
|
|
8106
8738
|
static readonly code: string;
|
|
8107
8739
|
static readonly statusCode: number;
|
|
8108
8740
|
static readonly description: string;
|
|
8109
|
-
constructor(body:
|
|
8741
|
+
constructor(body: PublicDeploymentFailed & FreestyleError);
|
|
8110
8742
|
}
|
|
8111
|
-
interface
|
|
8743
|
+
interface PublicInvalidDeploymentRequest {
|
|
8112
8744
|
message: string;
|
|
8113
8745
|
[k: string]: unknown;
|
|
8114
8746
|
}
|
|
8115
|
-
declare class
|
|
8116
|
-
body:
|
|
8747
|
+
declare class InvalidDeploymentRequestError extends Error {
|
|
8748
|
+
body: PublicInvalidDeploymentRequest & FreestyleError;
|
|
8117
8749
|
static readonly code: string;
|
|
8118
8750
|
static readonly statusCode: number;
|
|
8119
8751
|
static readonly description: string;
|
|
8120
|
-
constructor(body:
|
|
8752
|
+
constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
|
|
8121
8753
|
}
|
|
8122
|
-
interface
|
|
8123
|
-
|
|
8754
|
+
interface PublicProjectNotFound {
|
|
8755
|
+
projectId: string;
|
|
8124
8756
|
[k: string]: unknown;
|
|
8125
8757
|
}
|
|
8126
|
-
declare class
|
|
8127
|
-
body:
|
|
8758
|
+
declare class ProjectNotFoundError extends Error {
|
|
8759
|
+
body: PublicProjectNotFound & FreestyleError;
|
|
8128
8760
|
static readonly code: string;
|
|
8129
8761
|
static readonly statusCode: number;
|
|
8130
8762
|
static readonly description: string;
|
|
8131
|
-
constructor(body:
|
|
8763
|
+
constructor(body: PublicProjectNotFound & FreestyleError);
|
|
8132
8764
|
}
|
|
8133
|
-
interface
|
|
8134
|
-
|
|
8765
|
+
interface PublicBuildFailed {
|
|
8766
|
+
logs: string;
|
|
8767
|
+
vmId: string;
|
|
8135
8768
|
[k: string]: unknown;
|
|
8136
8769
|
}
|
|
8137
|
-
declare class
|
|
8138
|
-
body:
|
|
8770
|
+
declare class BuildFailedError extends Error {
|
|
8771
|
+
body: PublicBuildFailed & FreestyleError;
|
|
8139
8772
|
static readonly code: string;
|
|
8140
8773
|
static readonly statusCode: number;
|
|
8141
8774
|
static readonly description: string;
|
|
8142
|
-
constructor(body:
|
|
8775
|
+
constructor(body: PublicBuildFailed & FreestyleError);
|
|
8143
8776
|
}
|
|
8144
|
-
|
|
8777
|
+
declare class ServerDeploymentFailedError extends Error {
|
|
8778
|
+
body: unknown & FreestyleError;
|
|
8779
|
+
static readonly code: string;
|
|
8780
|
+
static readonly statusCode: number;
|
|
8781
|
+
static readonly description: string;
|
|
8782
|
+
constructor(body: unknown & FreestyleError);
|
|
8783
|
+
}
|
|
8784
|
+
interface PublicLockfileError {
|
|
8145
8785
|
message: string;
|
|
8146
8786
|
[k: string]: unknown;
|
|
8147
8787
|
}
|
|
8148
|
-
declare class
|
|
8149
|
-
body:
|
|
8788
|
+
declare class LockfileErrorError extends Error {
|
|
8789
|
+
body: PublicLockfileError & FreestyleError;
|
|
8150
8790
|
static readonly code: string;
|
|
8151
8791
|
static readonly statusCode: number;
|
|
8152
8792
|
static readonly description: string;
|
|
8153
|
-
constructor(body:
|
|
8793
|
+
constructor(body: PublicLockfileError & FreestyleError);
|
|
8154
8794
|
}
|
|
8155
|
-
|
|
8156
|
-
|
|
8795
|
+
declare class UploadErrorError extends Error {
|
|
8796
|
+
body: unknown & FreestyleError;
|
|
8797
|
+
static readonly code: string;
|
|
8798
|
+
static readonly statusCode: number;
|
|
8799
|
+
static readonly description: string;
|
|
8800
|
+
constructor(body: unknown & FreestyleError);
|
|
8801
|
+
}
|
|
8802
|
+
interface PublicDomainMappingError {
|
|
8803
|
+
domain: string;
|
|
8157
8804
|
[k: string]: unknown;
|
|
8158
8805
|
}
|
|
8159
|
-
declare class
|
|
8160
|
-
body:
|
|
8806
|
+
declare class DomainMappingErrorError extends Error {
|
|
8807
|
+
body: PublicDomainMappingError & FreestyleError;
|
|
8161
8808
|
static readonly code: string;
|
|
8162
8809
|
static readonly statusCode: number;
|
|
8163
8810
|
static readonly description: string;
|
|
8164
|
-
constructor(body:
|
|
8811
|
+
constructor(body: PublicDomainMappingError & FreestyleError);
|
|
8165
8812
|
}
|
|
8166
|
-
interface
|
|
8167
|
-
|
|
8168
|
-
|
|
8813
|
+
interface PublicCertificateProvisioningError {
|
|
8814
|
+
domain: string;
|
|
8815
|
+
reason?: string | null;
|
|
8169
8816
|
[k: string]: unknown;
|
|
8170
8817
|
}
|
|
8171
|
-
declare class
|
|
8172
|
-
body:
|
|
8818
|
+
declare class CertificateProvisioningErrorError extends Error {
|
|
8819
|
+
body: PublicCertificateProvisioningError & FreestyleError;
|
|
8173
8820
|
static readonly code: string;
|
|
8174
8821
|
static readonly statusCode: number;
|
|
8175
8822
|
static readonly description: string;
|
|
8176
|
-
constructor(body:
|
|
8823
|
+
constructor(body: PublicCertificateProvisioningError & FreestyleError);
|
|
8177
8824
|
}
|
|
8178
|
-
|
|
8179
|
-
|
|
8825
|
+
declare class NoEntrypointFoundError extends Error {
|
|
8826
|
+
body: unknown & FreestyleError;
|
|
8827
|
+
static readonly code: string;
|
|
8828
|
+
static readonly statusCode: number;
|
|
8829
|
+
static readonly description: string;
|
|
8830
|
+
constructor(body: unknown & FreestyleError);
|
|
8831
|
+
}
|
|
8832
|
+
interface PublicEntrypointNotFound {
|
|
8833
|
+
entrypoint: string;
|
|
8180
8834
|
[k: string]: unknown;
|
|
8181
8835
|
}
|
|
8182
|
-
declare class
|
|
8183
|
-
body:
|
|
8836
|
+
declare class EntrypointNotFoundError extends Error {
|
|
8837
|
+
body: PublicEntrypointNotFound & FreestyleError;
|
|
8184
8838
|
static readonly code: string;
|
|
8185
8839
|
static readonly statusCode: number;
|
|
8186
8840
|
static readonly description: string;
|
|
8187
|
-
constructor(body:
|
|
8841
|
+
constructor(body: PublicEntrypointNotFound & FreestyleError);
|
|
8188
8842
|
}
|
|
8189
|
-
interface
|
|
8190
|
-
|
|
8843
|
+
interface PublicNoDomainOwnership {
|
|
8844
|
+
domain: string;
|
|
8191
8845
|
[k: string]: unknown;
|
|
8192
8846
|
}
|
|
8193
|
-
declare class
|
|
8194
|
-
body:
|
|
8847
|
+
declare class NoDomainOwnershipError extends Error {
|
|
8848
|
+
body: PublicNoDomainOwnership & FreestyleError;
|
|
8195
8849
|
static readonly code: string;
|
|
8196
8850
|
static readonly statusCode: number;
|
|
8197
8851
|
static readonly description: string;
|
|
8198
|
-
constructor(body:
|
|
8852
|
+
constructor(body: PublicNoDomainOwnership & FreestyleError);
|
|
8199
8853
|
}
|
|
8200
|
-
interface
|
|
8201
|
-
|
|
8854
|
+
interface PublicInvalidDomains {
|
|
8855
|
+
domains: string[];
|
|
8202
8856
|
[k: string]: unknown;
|
|
8203
8857
|
}
|
|
8204
|
-
declare class
|
|
8205
|
-
body:
|
|
8858
|
+
declare class InvalidDomainsError extends Error {
|
|
8859
|
+
body: PublicInvalidDomains & FreestyleError;
|
|
8206
8860
|
static readonly code: string;
|
|
8207
8861
|
static readonly statusCode: number;
|
|
8208
8862
|
static readonly description: string;
|
|
8209
|
-
constructor(body:
|
|
8863
|
+
constructor(body: PublicInvalidDomains & FreestyleError);
|
|
8210
8864
|
}
|
|
8211
|
-
interface
|
|
8865
|
+
interface PublicWebDeploymentBadRequest {
|
|
8212
8866
|
message: string;
|
|
8213
8867
|
[k: string]: unknown;
|
|
8214
8868
|
}
|
|
8215
|
-
declare class
|
|
8216
|
-
body:
|
|
8869
|
+
declare class WebDeploymentBadRequestError extends Error {
|
|
8870
|
+
body: PublicWebDeploymentBadRequest & FreestyleError;
|
|
8217
8871
|
static readonly code: string;
|
|
8218
8872
|
static readonly statusCode: number;
|
|
8219
8873
|
static readonly description: string;
|
|
8220
|
-
constructor(body:
|
|
8874
|
+
constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
|
|
8221
8875
|
}
|
|
8222
|
-
interface
|
|
8223
|
-
|
|
8876
|
+
interface PublicTimeoutLimitExceeded {
|
|
8877
|
+
requestedMs: number;
|
|
8878
|
+
maxMs: number;
|
|
8224
8879
|
[k: string]: unknown;
|
|
8225
8880
|
}
|
|
8226
|
-
declare class
|
|
8227
|
-
body:
|
|
8881
|
+
declare class TimeoutLimitExceededError extends Error {
|
|
8882
|
+
body: PublicTimeoutLimitExceeded & FreestyleError;
|
|
8228
8883
|
static readonly code: string;
|
|
8229
8884
|
static readonly statusCode: number;
|
|
8230
8885
|
static readonly description: string;
|
|
8231
|
-
constructor(body:
|
|
8886
|
+
constructor(body: PublicTimeoutLimitExceeded & FreestyleError);
|
|
8232
8887
|
}
|
|
8233
|
-
interface
|
|
8234
|
-
|
|
8888
|
+
interface PublicDeploymentLimitExceeded {
|
|
8889
|
+
limit: number;
|
|
8890
|
+
current: number;
|
|
8235
8891
|
[k: string]: unknown;
|
|
8236
8892
|
}
|
|
8237
|
-
declare class
|
|
8238
|
-
body:
|
|
8893
|
+
declare class DeploymentLimitExceededError extends Error {
|
|
8894
|
+
body: PublicDeploymentLimitExceeded & FreestyleError;
|
|
8239
8895
|
static readonly code: string;
|
|
8240
8896
|
static readonly statusCode: number;
|
|
8241
8897
|
static readonly description: string;
|
|
8242
|
-
constructor(body:
|
|
8898
|
+
constructor(body: PublicDeploymentLimitExceeded & FreestyleError);
|
|
8243
8899
|
}
|
|
8244
|
-
|
|
8900
|
+
declare class DeploymentNotFoundError extends Error {
|
|
8901
|
+
body: unknown & FreestyleError;
|
|
8902
|
+
static readonly code: string;
|
|
8903
|
+
static readonly statusCode: number;
|
|
8904
|
+
static readonly description: string;
|
|
8905
|
+
constructor(body: unknown & FreestyleError);
|
|
8906
|
+
}
|
|
8907
|
+
interface PublicResizeFailed {
|
|
8245
8908
|
message: string;
|
|
8246
8909
|
[k: string]: unknown;
|
|
8247
8910
|
}
|
|
8248
|
-
declare class
|
|
8249
|
-
body:
|
|
8911
|
+
declare class ResizeFailedError extends Error {
|
|
8912
|
+
body: PublicResizeFailed & FreestyleError;
|
|
8250
8913
|
static readonly code: string;
|
|
8251
8914
|
static readonly statusCode: number;
|
|
8252
8915
|
static readonly description: string;
|
|
8253
|
-
constructor(body:
|
|
8916
|
+
constructor(body: PublicResizeFailed & FreestyleError);
|
|
8254
8917
|
}
|
|
8255
|
-
|
|
8256
|
-
|
|
8918
|
+
declare class InternalResizeVmNotFoundError extends Error {
|
|
8919
|
+
body: unknown & FreestyleError;
|
|
8920
|
+
static readonly code: string;
|
|
8921
|
+
static readonly statusCode: number;
|
|
8922
|
+
static readonly description: string;
|
|
8923
|
+
constructor(body: unknown & FreestyleError);
|
|
8924
|
+
}
|
|
8925
|
+
declare class BranchNameEmptyError extends Error {
|
|
8926
|
+
body: unknown & FreestyleError;
|
|
8927
|
+
static readonly code: string;
|
|
8928
|
+
static readonly statusCode: number;
|
|
8929
|
+
static readonly description: string;
|
|
8930
|
+
constructor(body: unknown & FreestyleError);
|
|
8931
|
+
}
|
|
8932
|
+
interface PublicSnapshotLimitExceeded {
|
|
8933
|
+
limit: number;
|
|
8934
|
+
current: number;
|
|
8257
8935
|
[k: string]: unknown;
|
|
8258
8936
|
}
|
|
8259
|
-
declare class
|
|
8260
|
-
body:
|
|
8937
|
+
declare class SnapshotLimitExceededError extends Error {
|
|
8938
|
+
body: PublicSnapshotLimitExceeded & FreestyleError;
|
|
8261
8939
|
static readonly code: string;
|
|
8262
8940
|
static readonly statusCode: number;
|
|
8263
8941
|
static readonly description: string;
|
|
8264
|
-
constructor(body:
|
|
8942
|
+
constructor(body: PublicSnapshotLimitExceeded & FreestyleError);
|
|
8265
8943
|
}
|
|
8266
|
-
|
|
8267
|
-
|
|
8944
|
+
declare class PersistentVmsNotAllowedError extends Error {
|
|
8945
|
+
body: unknown & FreestyleError;
|
|
8946
|
+
static readonly code: string;
|
|
8947
|
+
static readonly statusCode: number;
|
|
8948
|
+
static readonly description: string;
|
|
8949
|
+
constructor(body: unknown & FreestyleError);
|
|
8950
|
+
}
|
|
8951
|
+
interface PublicTotalVmLimitExceeded {
|
|
8952
|
+
limit: number;
|
|
8953
|
+
current: number;
|
|
8268
8954
|
[k: string]: unknown;
|
|
8269
8955
|
}
|
|
8270
|
-
declare class
|
|
8271
|
-
body:
|
|
8956
|
+
declare class TotalVmLimitExceededError extends Error {
|
|
8957
|
+
body: PublicTotalVmLimitExceeded & FreestyleError;
|
|
8272
8958
|
static readonly code: string;
|
|
8273
8959
|
static readonly statusCode: number;
|
|
8274
8960
|
static readonly description: string;
|
|
8275
|
-
constructor(body:
|
|
8961
|
+
constructor(body: PublicTotalVmLimitExceeded & FreestyleError);
|
|
8276
8962
|
}
|
|
8277
|
-
interface
|
|
8278
|
-
|
|
8963
|
+
interface PublicVmLimitExceeded {
|
|
8964
|
+
limit: number;
|
|
8965
|
+
current: number;
|
|
8279
8966
|
[k: string]: unknown;
|
|
8280
8967
|
}
|
|
8281
|
-
declare class
|
|
8282
|
-
body:
|
|
8968
|
+
declare class VmLimitExceededError extends Error {
|
|
8969
|
+
body: PublicVmLimitExceeded & FreestyleError;
|
|
8283
8970
|
static readonly code: string;
|
|
8284
8971
|
static readonly statusCode: number;
|
|
8285
8972
|
static readonly description: string;
|
|
8286
|
-
constructor(body:
|
|
8973
|
+
constructor(body: PublicVmLimitExceeded & FreestyleError);
|
|
8287
8974
|
}
|
|
8288
|
-
interface
|
|
8975
|
+
interface PublicObservabilityDatabaseError {
|
|
8289
8976
|
message: string;
|
|
8290
8977
|
[k: string]: unknown;
|
|
8291
8978
|
}
|
|
8292
|
-
declare class
|
|
8293
|
-
body:
|
|
8979
|
+
declare class ObservabilityDatabaseErrorError extends Error {
|
|
8980
|
+
body: PublicObservabilityDatabaseError & FreestyleError;
|
|
8294
8981
|
static readonly code: string;
|
|
8295
8982
|
static readonly statusCode: number;
|
|
8296
8983
|
static readonly description: string;
|
|
8297
|
-
constructor(body:
|
|
8984
|
+
constructor(body: PublicObservabilityDatabaseError & FreestyleError);
|
|
8298
8985
|
}
|
|
8299
|
-
interface
|
|
8300
|
-
|
|
8986
|
+
interface PublicObservabilityAccessDenied {
|
|
8987
|
+
deploymentId: string;
|
|
8301
8988
|
[k: string]: unknown;
|
|
8302
8989
|
}
|
|
8303
|
-
declare class
|
|
8304
|
-
body:
|
|
8990
|
+
declare class ObservabilityAccessDeniedError extends Error {
|
|
8991
|
+
body: PublicObservabilityAccessDenied & FreestyleError;
|
|
8305
8992
|
static readonly code: string;
|
|
8306
8993
|
static readonly statusCode: number;
|
|
8307
8994
|
static readonly description: string;
|
|
8308
|
-
constructor(body:
|
|
8995
|
+
constructor(body: PublicObservabilityAccessDenied & FreestyleError);
|
|
8309
8996
|
}
|
|
8310
|
-
interface
|
|
8311
|
-
|
|
8312
|
-
|
|
8997
|
+
interface PublicParseLogsFailed {
|
|
8998
|
+
message: string;
|
|
8999
|
+
[k: string]: unknown;
|
|
9000
|
+
}
|
|
9001
|
+
declare class ParseLogsFailedError extends Error {
|
|
9002
|
+
body: PublicParseLogsFailed & FreestyleError;
|
|
9003
|
+
static readonly code: string;
|
|
9004
|
+
static readonly statusCode: number;
|
|
9005
|
+
static readonly description: string;
|
|
9006
|
+
constructor(body: PublicParseLogsFailed & FreestyleError);
|
|
9007
|
+
}
|
|
9008
|
+
interface PublicRetrieveLogsFailed {
|
|
9009
|
+
message: string;
|
|
8313
9010
|
[k: string]: unknown;
|
|
8314
9011
|
}
|
|
8315
|
-
declare class
|
|
8316
|
-
body:
|
|
9012
|
+
declare class RetrieveLogsFailedError extends Error {
|
|
9013
|
+
body: PublicRetrieveLogsFailed & FreestyleError;
|
|
8317
9014
|
static readonly code: string;
|
|
8318
9015
|
static readonly statusCode: number;
|
|
8319
9016
|
static readonly description: string;
|
|
8320
|
-
constructor(body:
|
|
9017
|
+
constructor(body: PublicRetrieveLogsFailed & FreestyleError);
|
|
8321
9018
|
}
|
|
8322
|
-
|
|
8323
|
-
|
|
9019
|
+
interface PublicInvalidQuery {
|
|
9020
|
+
message: string;
|
|
9021
|
+
[k: string]: unknown;
|
|
9022
|
+
}
|
|
9023
|
+
declare class InvalidQueryError extends Error {
|
|
9024
|
+
body: PublicInvalidQuery & FreestyleError;
|
|
8324
9025
|
static readonly code: string;
|
|
8325
9026
|
static readonly statusCode: number;
|
|
8326
9027
|
static readonly description: string;
|
|
8327
|
-
constructor(body:
|
|
9028
|
+
constructor(body: PublicInvalidQuery & FreestyleError);
|
|
8328
9029
|
}
|
|
8329
|
-
interface
|
|
8330
|
-
|
|
9030
|
+
interface PublicLogsNotFound {
|
|
9031
|
+
deploymentId: string;
|
|
8331
9032
|
[k: string]: unknown;
|
|
8332
9033
|
}
|
|
8333
|
-
declare class
|
|
8334
|
-
body:
|
|
9034
|
+
declare class LogsNotFoundError extends Error {
|
|
9035
|
+
body: PublicLogsNotFound & FreestyleError;
|
|
8335
9036
|
static readonly code: string;
|
|
8336
9037
|
static readonly statusCode: number;
|
|
8337
9038
|
static readonly description: string;
|
|
8338
|
-
constructor(body:
|
|
9039
|
+
constructor(body: PublicLogsNotFound & FreestyleError);
|
|
8339
9040
|
}
|
|
8340
|
-
|
|
8341
|
-
|
|
9041
|
+
interface PublicDomainOwnershipNotVerified {
|
|
9042
|
+
domain: string;
|
|
9043
|
+
[k: string]: unknown;
|
|
9044
|
+
}
|
|
9045
|
+
declare class DomainOwnershipNotVerifiedError extends Error {
|
|
9046
|
+
body: PublicDomainOwnershipNotVerified & FreestyleError;
|
|
8342
9047
|
static readonly code: string;
|
|
8343
9048
|
static readonly statusCode: number;
|
|
8344
9049
|
static readonly description: string;
|
|
8345
|
-
constructor(body:
|
|
9050
|
+
constructor(body: PublicDomainOwnershipNotVerified & FreestyleError);
|
|
8346
9051
|
}
|
|
8347
|
-
interface
|
|
8348
|
-
|
|
9052
|
+
interface PublicVmAccessDeniedForMapping {
|
|
9053
|
+
vmId: string;
|
|
8349
9054
|
[k: string]: unknown;
|
|
8350
9055
|
}
|
|
8351
|
-
declare class
|
|
8352
|
-
body:
|
|
9056
|
+
declare class VmAccessDeniedForMappingError extends Error {
|
|
9057
|
+
body: PublicVmAccessDeniedForMapping & FreestyleError;
|
|
8353
9058
|
static readonly code: string;
|
|
8354
9059
|
static readonly statusCode: number;
|
|
8355
9060
|
static readonly description: string;
|
|
8356
|
-
constructor(body:
|
|
9061
|
+
constructor(body: PublicVmAccessDeniedForMapping & FreestyleError);
|
|
8357
9062
|
}
|
|
8358
|
-
interface
|
|
8359
|
-
|
|
8360
|
-
reason?: string | null;
|
|
9063
|
+
interface PublicDeploymentAccessDenied {
|
|
9064
|
+
deploymentId: string;
|
|
8361
9065
|
[k: string]: unknown;
|
|
8362
9066
|
}
|
|
8363
|
-
declare class
|
|
8364
|
-
body:
|
|
9067
|
+
declare class DeploymentAccessDeniedError extends Error {
|
|
9068
|
+
body: PublicDeploymentAccessDenied & FreestyleError;
|
|
8365
9069
|
static readonly code: string;
|
|
8366
9070
|
static readonly statusCode: number;
|
|
8367
9071
|
static readonly description: string;
|
|
8368
|
-
constructor(body:
|
|
9072
|
+
constructor(body: PublicDeploymentAccessDenied & FreestyleError);
|
|
8369
9073
|
}
|
|
8370
|
-
|
|
8371
|
-
|
|
9074
|
+
interface PublicFailedToProvisionCertificateForMapping {
|
|
9075
|
+
message: string;
|
|
9076
|
+
[k: string]: unknown;
|
|
9077
|
+
}
|
|
9078
|
+
declare class FailedToProvisionCertificateForMappingError extends Error {
|
|
9079
|
+
body: PublicFailedToProvisionCertificateForMapping & FreestyleError;
|
|
8372
9080
|
static readonly code: string;
|
|
8373
9081
|
static readonly statusCode: number;
|
|
8374
9082
|
static readonly description: string;
|
|
8375
|
-
constructor(body:
|
|
9083
|
+
constructor(body: PublicFailedToProvisionCertificateForMapping & FreestyleError);
|
|
8376
9084
|
}
|
|
8377
|
-
interface
|
|
8378
|
-
|
|
9085
|
+
interface PublicFailedInsertDomainMapping {
|
|
9086
|
+
message: string;
|
|
8379
9087
|
[k: string]: unknown;
|
|
8380
9088
|
}
|
|
8381
|
-
declare class
|
|
8382
|
-
body:
|
|
9089
|
+
declare class FailedInsertDomainMappingError extends Error {
|
|
9090
|
+
body: PublicFailedInsertDomainMapping & FreestyleError;
|
|
8383
9091
|
static readonly code: string;
|
|
8384
9092
|
static readonly statusCode: number;
|
|
8385
9093
|
static readonly description: string;
|
|
8386
|
-
constructor(body:
|
|
9094
|
+
constructor(body: PublicFailedInsertDomainMapping & FreestyleError);
|
|
8387
9095
|
}
|
|
8388
|
-
interface
|
|
9096
|
+
interface PublicDomainAlreadyExists {
|
|
8389
9097
|
domain: string;
|
|
8390
9098
|
[k: string]: unknown;
|
|
8391
9099
|
}
|
|
8392
|
-
declare class
|
|
8393
|
-
body:
|
|
9100
|
+
declare class DomainAlreadyExistsError extends Error {
|
|
9101
|
+
body: PublicDomainAlreadyExists & FreestyleError;
|
|
8394
9102
|
static readonly code: string;
|
|
8395
9103
|
static readonly statusCode: number;
|
|
8396
9104
|
static readonly description: string;
|
|
8397
|
-
constructor(body:
|
|
9105
|
+
constructor(body: PublicDomainAlreadyExists & FreestyleError);
|
|
8398
9106
|
}
|
|
8399
|
-
interface
|
|
8400
|
-
|
|
9107
|
+
interface PublicFailedToInsertOwnership {
|
|
9108
|
+
message: string;
|
|
8401
9109
|
[k: string]: unknown;
|
|
8402
9110
|
}
|
|
8403
|
-
declare class
|
|
8404
|
-
body:
|
|
9111
|
+
declare class FailedToInsertOwnershipError extends Error {
|
|
9112
|
+
body: PublicFailedToInsertOwnership & FreestyleError;
|
|
8405
9113
|
static readonly code: string;
|
|
8406
9114
|
static readonly statusCode: number;
|
|
8407
9115
|
static readonly description: string;
|
|
8408
|
-
constructor(body:
|
|
9116
|
+
constructor(body: PublicFailedToInsertOwnership & FreestyleError);
|
|
8409
9117
|
}
|
|
8410
|
-
interface
|
|
9118
|
+
interface PublicFailedRemoveDomainMapping {
|
|
8411
9119
|
message: string;
|
|
8412
9120
|
[k: string]: unknown;
|
|
8413
9121
|
}
|
|
8414
|
-
declare class
|
|
8415
|
-
body:
|
|
9122
|
+
declare class FailedRemoveDomainMappingError extends Error {
|
|
9123
|
+
body: PublicFailedRemoveDomainMapping & FreestyleError;
|
|
8416
9124
|
static readonly code: string;
|
|
8417
9125
|
static readonly statusCode: number;
|
|
8418
9126
|
static readonly description: string;
|
|
8419
|
-
constructor(body:
|
|
9127
|
+
constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
|
|
8420
9128
|
}
|
|
8421
|
-
interface
|
|
8422
|
-
|
|
8423
|
-
maxMs: number;
|
|
9129
|
+
interface PublicFailedPermissionsCheck {
|
|
9130
|
+
domain: string;
|
|
8424
9131
|
[k: string]: unknown;
|
|
8425
9132
|
}
|
|
8426
|
-
declare class
|
|
8427
|
-
body:
|
|
9133
|
+
declare class FailedPermissionsCheckError extends Error {
|
|
9134
|
+
body: PublicFailedPermissionsCheck & FreestyleError;
|
|
8428
9135
|
static readonly code: string;
|
|
8429
9136
|
static readonly statusCode: number;
|
|
8430
9137
|
static readonly description: string;
|
|
8431
|
-
constructor(body:
|
|
9138
|
+
constructor(body: PublicFailedPermissionsCheck & FreestyleError);
|
|
8432
9139
|
}
|
|
8433
|
-
interface
|
|
8434
|
-
|
|
8435
|
-
current: number;
|
|
9140
|
+
interface PublicFailedToCheckDomainMappingPermissions {
|
|
9141
|
+
message: string;
|
|
8436
9142
|
[k: string]: unknown;
|
|
8437
9143
|
}
|
|
8438
|
-
declare class
|
|
8439
|
-
body:
|
|
9144
|
+
declare class FailedToCheckDomainMappingPermissionsError extends Error {
|
|
9145
|
+
body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
|
|
8440
9146
|
static readonly code: string;
|
|
8441
9147
|
static readonly statusCode: number;
|
|
8442
9148
|
static readonly description: string;
|
|
8443
|
-
constructor(body:
|
|
9149
|
+
constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
|
|
8444
9150
|
}
|
|
8445
|
-
declare class
|
|
9151
|
+
declare class DomainOwnershipVerificationFailedError extends Error {
|
|
8446
9152
|
body: unknown & FreestyleError;
|
|
8447
9153
|
static readonly code: string;
|
|
8448
9154
|
static readonly statusCode: number;
|
|
8449
9155
|
static readonly description: string;
|
|
8450
9156
|
constructor(body: unknown & FreestyleError);
|
|
8451
9157
|
}
|
|
8452
|
-
interface
|
|
9158
|
+
interface PublicErrorDeletingRecord {
|
|
9159
|
+
domain: string;
|
|
9160
|
+
name: string;
|
|
8453
9161
|
message: string;
|
|
8454
9162
|
[k: string]: unknown;
|
|
8455
9163
|
}
|
|
8456
|
-
declare class
|
|
8457
|
-
body:
|
|
9164
|
+
declare class ErrorDeletingRecordError extends Error {
|
|
9165
|
+
body: PublicErrorDeletingRecord & FreestyleError;
|
|
8458
9166
|
static readonly code: string;
|
|
8459
9167
|
static readonly statusCode: number;
|
|
8460
9168
|
static readonly description: string;
|
|
8461
|
-
constructor(body:
|
|
9169
|
+
constructor(body: PublicErrorDeletingRecord & FreestyleError);
|
|
8462
9170
|
}
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
|
|
8466
|
-
|
|
8467
|
-
static readonly description: string;
|
|
8468
|
-
constructor(body: unknown & FreestyleError);
|
|
9171
|
+
interface PublicRecordOwnershipError {
|
|
9172
|
+
recordId: string;
|
|
9173
|
+
accountId: string;
|
|
9174
|
+
[k: string]: unknown;
|
|
8469
9175
|
}
|
|
8470
|
-
declare class
|
|
8471
|
-
body:
|
|
9176
|
+
declare class RecordOwnershipErrorError extends Error {
|
|
9177
|
+
body: PublicRecordOwnershipError & FreestyleError;
|
|
8472
9178
|
static readonly code: string;
|
|
8473
9179
|
static readonly statusCode: number;
|
|
8474
9180
|
static readonly description: string;
|
|
8475
|
-
constructor(body:
|
|
9181
|
+
constructor(body: PublicRecordOwnershipError & FreestyleError);
|
|
8476
9182
|
}
|
|
8477
|
-
|
|
8478
|
-
|
|
9183
|
+
interface PublicErrorCreatingRecord {
|
|
9184
|
+
message: string;
|
|
9185
|
+
[k: string]: unknown;
|
|
9186
|
+
}
|
|
9187
|
+
declare class ErrorCreatingRecordError extends Error {
|
|
9188
|
+
body: PublicErrorCreatingRecord & FreestyleError;
|
|
8479
9189
|
static readonly code: string;
|
|
8480
9190
|
static readonly statusCode: number;
|
|
8481
9191
|
static readonly description: string;
|
|
8482
|
-
constructor(body:
|
|
9192
|
+
constructor(body: PublicErrorCreatingRecord & FreestyleError);
|
|
8483
9193
|
}
|
|
8484
|
-
interface
|
|
8485
|
-
|
|
8486
|
-
|
|
9194
|
+
interface PublicDomainOwnershipError {
|
|
9195
|
+
domain: string;
|
|
9196
|
+
accountId: string;
|
|
8487
9197
|
[k: string]: unknown;
|
|
8488
9198
|
}
|
|
8489
|
-
declare class
|
|
8490
|
-
body:
|
|
9199
|
+
declare class DomainOwnershipErrorError extends Error {
|
|
9200
|
+
body: PublicDomainOwnershipError & FreestyleError;
|
|
8491
9201
|
static readonly code: string;
|
|
8492
9202
|
static readonly statusCode: number;
|
|
8493
9203
|
static readonly description: string;
|
|
8494
|
-
constructor(body:
|
|
9204
|
+
constructor(body: PublicDomainOwnershipError & FreestyleError);
|
|
8495
9205
|
}
|
|
8496
9206
|
interface PublicTriggerError {
|
|
8497
9207
|
message: string;
|
|
@@ -8698,145 +9408,176 @@ declare class RepositoryNotFoundError extends Error {
|
|
|
8698
9408
|
static readonly description: string;
|
|
8699
9409
|
constructor(body: PublicRepositoryNotFound & FreestyleError);
|
|
8700
9410
|
}
|
|
8701
|
-
interface
|
|
8702
|
-
|
|
9411
|
+
interface PublicExecuteInternalError {
|
|
9412
|
+
message: string;
|
|
8703
9413
|
[k: string]: unknown;
|
|
8704
9414
|
}
|
|
8705
|
-
declare class
|
|
8706
|
-
body:
|
|
9415
|
+
declare class ExecuteInternalErrorError extends Error {
|
|
9416
|
+
body: PublicExecuteInternalError & FreestyleError;
|
|
8707
9417
|
static readonly code: string;
|
|
8708
9418
|
static readonly statusCode: number;
|
|
8709
9419
|
static readonly description: string;
|
|
8710
|
-
constructor(body:
|
|
9420
|
+
constructor(body: PublicExecuteInternalError & FreestyleError);
|
|
8711
9421
|
}
|
|
8712
|
-
|
|
8713
|
-
|
|
9422
|
+
declare class ExecuteAccessDeniedError extends Error {
|
|
9423
|
+
body: unknown & FreestyleError;
|
|
9424
|
+
static readonly code: string;
|
|
9425
|
+
static readonly statusCode: number;
|
|
9426
|
+
static readonly description: string;
|
|
9427
|
+
constructor(body: unknown & FreestyleError);
|
|
9428
|
+
}
|
|
9429
|
+
interface PublicListRunsFailed {
|
|
9430
|
+
message: string;
|
|
8714
9431
|
[k: string]: unknown;
|
|
8715
9432
|
}
|
|
8716
|
-
declare class
|
|
8717
|
-
body:
|
|
9433
|
+
declare class ListRunsFailedError extends Error {
|
|
9434
|
+
body: PublicListRunsFailed & FreestyleError;
|
|
8718
9435
|
static readonly code: string;
|
|
8719
9436
|
static readonly statusCode: number;
|
|
8720
9437
|
static readonly description: string;
|
|
8721
|
-
constructor(body:
|
|
9438
|
+
constructor(body: PublicListRunsFailed & FreestyleError);
|
|
8722
9439
|
}
|
|
8723
|
-
interface
|
|
8724
|
-
|
|
9440
|
+
interface PublicExecutionError {
|
|
9441
|
+
message: string;
|
|
8725
9442
|
[k: string]: unknown;
|
|
8726
9443
|
}
|
|
8727
|
-
declare class
|
|
8728
|
-
body:
|
|
9444
|
+
declare class ExecutionErrorError extends Error {
|
|
9445
|
+
body: PublicExecutionError & FreestyleError;
|
|
8729
9446
|
static readonly code: string;
|
|
8730
9447
|
static readonly statusCode: number;
|
|
8731
9448
|
static readonly description: string;
|
|
8732
|
-
constructor(body:
|
|
9449
|
+
constructor(body: PublicExecutionError & FreestyleError);
|
|
8733
9450
|
}
|
|
8734
|
-
interface
|
|
9451
|
+
interface PublicConnectionFailed {
|
|
8735
9452
|
message: string;
|
|
8736
9453
|
[k: string]: unknown;
|
|
8737
9454
|
}
|
|
8738
|
-
declare class
|
|
8739
|
-
body:
|
|
9455
|
+
declare class ConnectionFailedError extends Error {
|
|
9456
|
+
body: PublicConnectionFailed & FreestyleError;
|
|
8740
9457
|
static readonly code: string;
|
|
8741
9458
|
static readonly statusCode: number;
|
|
8742
9459
|
static readonly description: string;
|
|
8743
|
-
constructor(body:
|
|
9460
|
+
constructor(body: PublicConnectionFailed & FreestyleError);
|
|
8744
9461
|
}
|
|
8745
|
-
interface
|
|
9462
|
+
interface PublicMetadataWriteFailed {
|
|
8746
9463
|
message: string;
|
|
8747
9464
|
[k: string]: unknown;
|
|
8748
9465
|
}
|
|
8749
|
-
declare class
|
|
8750
|
-
body:
|
|
9466
|
+
declare class MetadataWriteFailedError extends Error {
|
|
9467
|
+
body: PublicMetadataWriteFailed & FreestyleError;
|
|
8751
9468
|
static readonly code: string;
|
|
8752
9469
|
static readonly statusCode: number;
|
|
8753
9470
|
static readonly description: string;
|
|
8754
|
-
constructor(body:
|
|
9471
|
+
constructor(body: PublicMetadataWriteFailed & FreestyleError);
|
|
8755
9472
|
}
|
|
8756
|
-
interface
|
|
8757
|
-
|
|
9473
|
+
interface PublicNodeModulesInstallFailed {
|
|
9474
|
+
message: string;
|
|
9475
|
+
[k: string]: unknown;
|
|
9476
|
+
}
|
|
9477
|
+
declare class NodeModulesInstallFailedError extends Error {
|
|
9478
|
+
body: PublicNodeModulesInstallFailed & FreestyleError;
|
|
9479
|
+
static readonly code: string;
|
|
9480
|
+
static readonly statusCode: number;
|
|
9481
|
+
static readonly description: string;
|
|
9482
|
+
constructor(body: PublicNodeModulesInstallFailed & FreestyleError);
|
|
9483
|
+
}
|
|
9484
|
+
interface PublicNodeModulesDownloadFailed {
|
|
9485
|
+
message: string;
|
|
9486
|
+
[k: string]: unknown;
|
|
9487
|
+
}
|
|
9488
|
+
declare class NodeModulesDownloadFailedError extends Error {
|
|
9489
|
+
body: PublicNodeModulesDownloadFailed & FreestyleError;
|
|
9490
|
+
static readonly code: string;
|
|
9491
|
+
static readonly statusCode: number;
|
|
9492
|
+
static readonly description: string;
|
|
9493
|
+
constructor(body: PublicNodeModulesDownloadFailed & FreestyleError);
|
|
9494
|
+
}
|
|
9495
|
+
interface PublicLockGenerationFailed {
|
|
9496
|
+
message: string;
|
|
8758
9497
|
[k: string]: unknown;
|
|
8759
9498
|
}
|
|
8760
|
-
declare class
|
|
8761
|
-
body:
|
|
9499
|
+
declare class LockGenerationFailedError extends Error {
|
|
9500
|
+
body: PublicLockGenerationFailed & FreestyleError;
|
|
8762
9501
|
static readonly code: string;
|
|
8763
9502
|
static readonly statusCode: number;
|
|
8764
9503
|
static readonly description: string;
|
|
8765
|
-
constructor(body:
|
|
9504
|
+
constructor(body: PublicLockGenerationFailed & FreestyleError);
|
|
8766
9505
|
}
|
|
8767
|
-
interface
|
|
9506
|
+
interface PublicWriteScriptFailed {
|
|
8768
9507
|
message: string;
|
|
8769
9508
|
[k: string]: unknown;
|
|
8770
9509
|
}
|
|
8771
|
-
declare class
|
|
8772
|
-
body:
|
|
9510
|
+
declare class WriteScriptFailedError extends Error {
|
|
9511
|
+
body: PublicWriteScriptFailed & FreestyleError;
|
|
8773
9512
|
static readonly code: string;
|
|
8774
9513
|
static readonly statusCode: number;
|
|
8775
9514
|
static readonly description: string;
|
|
8776
|
-
constructor(body:
|
|
9515
|
+
constructor(body: PublicWriteScriptFailed & FreestyleError);
|
|
8777
9516
|
}
|
|
8778
|
-
interface
|
|
9517
|
+
interface PublicDirectoryCreationFailed {
|
|
8779
9518
|
message: string;
|
|
8780
9519
|
[k: string]: unknown;
|
|
8781
9520
|
}
|
|
8782
|
-
declare class
|
|
8783
|
-
body:
|
|
9521
|
+
declare class DirectoryCreationFailedError extends Error {
|
|
9522
|
+
body: PublicDirectoryCreationFailed & FreestyleError;
|
|
8784
9523
|
static readonly code: string;
|
|
8785
9524
|
static readonly statusCode: number;
|
|
8786
9525
|
static readonly description: string;
|
|
8787
|
-
constructor(body:
|
|
9526
|
+
constructor(body: PublicDirectoryCreationFailed & FreestyleError);
|
|
8788
9527
|
}
|
|
8789
|
-
interface
|
|
8790
|
-
|
|
9528
|
+
interface PublicNetworkPermissionsFailed {
|
|
9529
|
+
message: string;
|
|
8791
9530
|
[k: string]: unknown;
|
|
8792
9531
|
}
|
|
8793
|
-
declare class
|
|
8794
|
-
body:
|
|
9532
|
+
declare class NetworkPermissionsFailedError extends Error {
|
|
9533
|
+
body: PublicNetworkPermissionsFailed & FreestyleError;
|
|
8795
9534
|
static readonly code: string;
|
|
8796
9535
|
static readonly statusCode: number;
|
|
8797
9536
|
static readonly description: string;
|
|
8798
|
-
constructor(body:
|
|
9537
|
+
constructor(body: PublicNetworkPermissionsFailed & FreestyleError);
|
|
8799
9538
|
}
|
|
8800
|
-
interface
|
|
9539
|
+
interface PublicLoggingFailed {
|
|
8801
9540
|
message: string;
|
|
8802
9541
|
[k: string]: unknown;
|
|
8803
9542
|
}
|
|
8804
|
-
declare class
|
|
8805
|
-
body:
|
|
9543
|
+
declare class LoggingFailedError extends Error {
|
|
9544
|
+
body: PublicLoggingFailed & FreestyleError;
|
|
8806
9545
|
static readonly code: string;
|
|
8807
9546
|
static readonly statusCode: number;
|
|
8808
9547
|
static readonly description: string;
|
|
8809
|
-
constructor(body:
|
|
9548
|
+
constructor(body: PublicLoggingFailed & FreestyleError);
|
|
8810
9549
|
}
|
|
8811
|
-
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
|
-
static readonly statusCode: number;
|
|
8815
|
-
static readonly description: string;
|
|
8816
|
-
constructor(body: unknown & FreestyleError);
|
|
9550
|
+
interface PublicRunNotFound {
|
|
9551
|
+
runId: string;
|
|
9552
|
+
[k: string]: unknown;
|
|
8817
9553
|
}
|
|
8818
|
-
declare class
|
|
8819
|
-
body:
|
|
9554
|
+
declare class RunNotFoundError extends Error {
|
|
9555
|
+
body: PublicRunNotFound & FreestyleError;
|
|
8820
9556
|
static readonly code: string;
|
|
8821
9557
|
static readonly statusCode: number;
|
|
8822
9558
|
static readonly description: string;
|
|
8823
|
-
constructor(body:
|
|
9559
|
+
constructor(body: PublicRunNotFound & FreestyleError);
|
|
8824
9560
|
}
|
|
8825
|
-
|
|
8826
|
-
|
|
9561
|
+
interface UnauthorizedErrorPublic {
|
|
9562
|
+
route: string;
|
|
9563
|
+
reason?: string | null;
|
|
9564
|
+
[k: string]: unknown;
|
|
9565
|
+
}
|
|
9566
|
+
declare class UnauthorizedErrorError extends Error {
|
|
9567
|
+
body: UnauthorizedErrorPublic & FreestyleError;
|
|
8827
9568
|
static readonly code: string;
|
|
8828
9569
|
static readonly statusCode: number;
|
|
8829
9570
|
static readonly description: string;
|
|
8830
|
-
constructor(body:
|
|
9571
|
+
constructor(body: UnauthorizedErrorPublic & FreestyleError);
|
|
8831
9572
|
}
|
|
8832
|
-
declare class
|
|
9573
|
+
declare class GitRepoLimitExceededError extends Error {
|
|
8833
9574
|
body: unknown & FreestyleError;
|
|
8834
9575
|
static readonly code: string;
|
|
8835
9576
|
static readonly statusCode: number;
|
|
8836
9577
|
static readonly description: string;
|
|
8837
9578
|
constructor(body: unknown & FreestyleError);
|
|
8838
9579
|
}
|
|
8839
|
-
declare class
|
|
9580
|
+
declare class EmptyTagError extends Error {
|
|
8840
9581
|
body: unknown & FreestyleError;
|
|
8841
9582
|
static readonly code: string;
|
|
8842
9583
|
static readonly statusCode: number;
|
|
@@ -9027,159 +9768,149 @@ declare class IdentityNotFoundError extends Error {
|
|
|
9027
9768
|
static readonly description: string;
|
|
9028
9769
|
constructor(body: unknown & FreestyleError);
|
|
9029
9770
|
}
|
|
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;
|
|
9771
|
+
interface PublicLimitExceeded {
|
|
9772
|
+
limit: number;
|
|
9773
|
+
current: number;
|
|
9041
9774
|
[k: string]: unknown;
|
|
9042
9775
|
}
|
|
9043
|
-
declare class
|
|
9044
|
-
body:
|
|
9776
|
+
declare class LimitExceededError extends Error {
|
|
9777
|
+
body: PublicLimitExceeded & FreestyleError;
|
|
9045
9778
|
static readonly code: string;
|
|
9046
9779
|
static readonly statusCode: number;
|
|
9047
9780
|
static readonly description: string;
|
|
9048
|
-
constructor(body:
|
|
9781
|
+
constructor(body: PublicLimitExceeded & FreestyleError);
|
|
9049
9782
|
}
|
|
9050
|
-
interface
|
|
9051
|
-
|
|
9052
|
-
accountId: string;
|
|
9783
|
+
interface PublicFailedToProvisionCertificate {
|
|
9784
|
+
message: string;
|
|
9053
9785
|
[k: string]: unknown;
|
|
9054
9786
|
}
|
|
9055
|
-
declare class
|
|
9056
|
-
body:
|
|
9787
|
+
declare class FailedToProvisionCertificateError extends Error {
|
|
9788
|
+
body: PublicFailedToProvisionCertificate & FreestyleError;
|
|
9057
9789
|
static readonly code: string;
|
|
9058
9790
|
static readonly statusCode: number;
|
|
9059
9791
|
static readonly description: string;
|
|
9060
|
-
constructor(body:
|
|
9792
|
+
constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
|
|
9061
9793
|
}
|
|
9062
|
-
interface
|
|
9794
|
+
interface PublicFailedToInsertDomainMapping {
|
|
9063
9795
|
message: string;
|
|
9064
9796
|
[k: string]: unknown;
|
|
9065
9797
|
}
|
|
9066
|
-
declare class
|
|
9067
|
-
body:
|
|
9798
|
+
declare class FailedToInsertDomainMappingError extends Error {
|
|
9799
|
+
body: PublicFailedToInsertDomainMapping & FreestyleError;
|
|
9068
9800
|
static readonly code: string;
|
|
9069
9801
|
static readonly statusCode: number;
|
|
9070
9802
|
static readonly description: string;
|
|
9071
|
-
constructor(body:
|
|
9803
|
+
constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
|
|
9072
9804
|
}
|
|
9073
|
-
interface
|
|
9074
|
-
|
|
9075
|
-
accountId: string;
|
|
9805
|
+
interface PublicPermissionDenied {
|
|
9806
|
+
message: string;
|
|
9076
9807
|
[k: string]: unknown;
|
|
9077
9808
|
}
|
|
9078
|
-
declare class
|
|
9079
|
-
body:
|
|
9809
|
+
declare class PermissionDeniedError extends Error {
|
|
9810
|
+
body: PublicPermissionDenied & FreestyleError;
|
|
9080
9811
|
static readonly code: string;
|
|
9081
9812
|
static readonly statusCode: number;
|
|
9082
9813
|
static readonly description: string;
|
|
9083
|
-
constructor(body:
|
|
9814
|
+
constructor(body: PublicPermissionDenied & FreestyleError);
|
|
9084
9815
|
}
|
|
9085
|
-
interface
|
|
9816
|
+
interface PublicFailedToCheckPermissions {
|
|
9086
9817
|
message: string;
|
|
9087
9818
|
[k: string]: unknown;
|
|
9088
9819
|
}
|
|
9089
|
-
declare class
|
|
9090
|
-
body:
|
|
9820
|
+
declare class FailedToCheckPermissionsError extends Error {
|
|
9821
|
+
body: PublicFailedToCheckPermissions & FreestyleError;
|
|
9091
9822
|
static readonly code: string;
|
|
9092
9823
|
static readonly statusCode: number;
|
|
9093
9824
|
static readonly description: string;
|
|
9094
|
-
constructor(body:
|
|
9825
|
+
constructor(body: PublicFailedToCheckPermissions & FreestyleError);
|
|
9095
9826
|
}
|
|
9096
|
-
interface
|
|
9827
|
+
interface PublicFailedToListDomains {
|
|
9097
9828
|
message: string;
|
|
9098
9829
|
[k: string]: unknown;
|
|
9099
9830
|
}
|
|
9100
|
-
declare class
|
|
9101
|
-
body:
|
|
9831
|
+
declare class FailedToListDomainsError extends Error {
|
|
9832
|
+
body: PublicFailedToListDomains & FreestyleError;
|
|
9102
9833
|
static readonly code: string;
|
|
9103
9834
|
static readonly statusCode: number;
|
|
9104
9835
|
static readonly description: string;
|
|
9105
|
-
constructor(body:
|
|
9836
|
+
constructor(body: PublicFailedToListDomains & FreestyleError);
|
|
9106
9837
|
}
|
|
9107
|
-
interface
|
|
9108
|
-
|
|
9838
|
+
interface PublicFailedToListVerifications {
|
|
9839
|
+
message: string;
|
|
9109
9840
|
[k: string]: unknown;
|
|
9110
9841
|
}
|
|
9111
|
-
declare class
|
|
9112
|
-
body:
|
|
9842
|
+
declare class FailedToListVerificationsError extends Error {
|
|
9843
|
+
body: PublicFailedToListVerifications & FreestyleError;
|
|
9113
9844
|
static readonly code: string;
|
|
9114
9845
|
static readonly statusCode: number;
|
|
9115
9846
|
static readonly description: string;
|
|
9116
|
-
constructor(body:
|
|
9847
|
+
constructor(body: PublicFailedToListVerifications & FreestyleError);
|
|
9117
9848
|
}
|
|
9118
|
-
interface
|
|
9849
|
+
interface PublicFailedToVerifyDomain {
|
|
9119
9850
|
message: string;
|
|
9120
9851
|
[k: string]: unknown;
|
|
9121
9852
|
}
|
|
9122
|
-
declare class
|
|
9123
|
-
body:
|
|
9853
|
+
declare class FailedToVerifyDomainError extends Error {
|
|
9854
|
+
body: PublicFailedToVerifyDomain & FreestyleError;
|
|
9124
9855
|
static readonly code: string;
|
|
9125
9856
|
static readonly statusCode: number;
|
|
9126
9857
|
static readonly description: string;
|
|
9127
|
-
constructor(body:
|
|
9858
|
+
constructor(body: PublicFailedToVerifyDomain & FreestyleError);
|
|
9128
9859
|
}
|
|
9129
|
-
interface
|
|
9860
|
+
interface PublicVerificationFailed {
|
|
9130
9861
|
message: string;
|
|
9131
9862
|
[k: string]: unknown;
|
|
9132
9863
|
}
|
|
9133
|
-
declare class
|
|
9134
|
-
body:
|
|
9864
|
+
declare class VerificationFailedError extends Error {
|
|
9865
|
+
body: PublicVerificationFailed & FreestyleError;
|
|
9135
9866
|
static readonly code: string;
|
|
9136
9867
|
static readonly statusCode: number;
|
|
9137
9868
|
static readonly description: string;
|
|
9138
|
-
constructor(body:
|
|
9869
|
+
constructor(body: PublicVerificationFailed & FreestyleError);
|
|
9139
9870
|
}
|
|
9140
|
-
interface
|
|
9871
|
+
interface PublicFailedToDeleteVerification {
|
|
9141
9872
|
message: string;
|
|
9142
9873
|
[k: string]: unknown;
|
|
9143
9874
|
}
|
|
9144
|
-
declare class
|
|
9145
|
-
body:
|
|
9875
|
+
declare class FailedToDeleteVerificationError extends Error {
|
|
9876
|
+
body: PublicFailedToDeleteVerification & FreestyleError;
|
|
9146
9877
|
static readonly code: string;
|
|
9147
9878
|
static readonly statusCode: number;
|
|
9148
9879
|
static readonly description: string;
|
|
9149
|
-
constructor(body:
|
|
9880
|
+
constructor(body: PublicFailedToDeleteVerification & FreestyleError);
|
|
9150
9881
|
}
|
|
9151
|
-
interface
|
|
9152
|
-
|
|
9882
|
+
interface PublicVerificationNotFound {
|
|
9883
|
+
domain: string;
|
|
9153
9884
|
[k: string]: unknown;
|
|
9154
9885
|
}
|
|
9155
|
-
declare class
|
|
9156
|
-
body:
|
|
9886
|
+
declare class VerificationNotFoundError extends Error {
|
|
9887
|
+
body: PublicVerificationNotFound & FreestyleError;
|
|
9157
9888
|
static readonly code: string;
|
|
9158
9889
|
static readonly statusCode: number;
|
|
9159
9890
|
static readonly description: string;
|
|
9160
|
-
constructor(body:
|
|
9891
|
+
constructor(body: PublicVerificationNotFound & FreestyleError);
|
|
9161
9892
|
}
|
|
9162
|
-
interface
|
|
9893
|
+
interface PublicFailedToCreateVerificationCode {
|
|
9163
9894
|
message: string;
|
|
9164
9895
|
[k: string]: unknown;
|
|
9165
9896
|
}
|
|
9166
|
-
declare class
|
|
9167
|
-
body:
|
|
9897
|
+
declare class FailedToCreateVerificationCodeError extends Error {
|
|
9898
|
+
body: PublicFailedToCreateVerificationCode & FreestyleError;
|
|
9168
9899
|
static readonly code: string;
|
|
9169
9900
|
static readonly statusCode: number;
|
|
9170
9901
|
static readonly description: string;
|
|
9171
|
-
constructor(body:
|
|
9902
|
+
constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
|
|
9172
9903
|
}
|
|
9173
|
-
interface
|
|
9174
|
-
|
|
9904
|
+
interface PublicInvalidDomain {
|
|
9905
|
+
domain: string;
|
|
9175
9906
|
[k: string]: unknown;
|
|
9176
9907
|
}
|
|
9177
|
-
declare class
|
|
9178
|
-
body:
|
|
9908
|
+
declare class InvalidDomainError extends Error {
|
|
9909
|
+
body: PublicInvalidDomain & FreestyleError;
|
|
9179
9910
|
static readonly code: string;
|
|
9180
9911
|
static readonly statusCode: number;
|
|
9181
9912
|
static readonly description: string;
|
|
9182
|
-
constructor(body:
|
|
9913
|
+
constructor(body: PublicInvalidDomain & FreestyleError);
|
|
9183
9914
|
}
|
|
9184
9915
|
declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
9185
9916
|
BAD_PARSE: typeof BadParseError;
|
|
@@ -9188,6 +9919,12 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9188
9919
|
BAD_HEADER: typeof BadHeaderError;
|
|
9189
9920
|
BAD_KEY: typeof BadKeyError;
|
|
9190
9921
|
GIT_ERROR: typeof GitErrorError;
|
|
9922
|
+
SUSPEND_FAILED_AND_STOP_FAILED: typeof SuspendFailedAndStopFailedError;
|
|
9923
|
+
SUSPEND_FAILED_AND_STOPPED: typeof SuspendFailedAndStoppedError;
|
|
9924
|
+
INVALID_GIT_REPO_SPEC_ERROR: typeof InvalidGitRepoSpecErrorError;
|
|
9925
|
+
INTERNAL_ERROR: typeof InternalErrorError;
|
|
9926
|
+
FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
|
|
9927
|
+
CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
|
|
9191
9928
|
SNAPSHOT_NOT_FOUND: typeof SnapshotNotFoundError;
|
|
9192
9929
|
RESUMED_VM_NON_RESPONSIVE: typeof ResumedVmNonResponsiveError;
|
|
9193
9930
|
SNAPSHOT_LOAD_TIMEOUT: typeof SnapshotLoadTimeoutError;
|
|
@@ -9202,19 +9939,26 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9202
9939
|
VM_IS_SUSPENDING: typeof VmIsSuspendingError;
|
|
9203
9940
|
VM_EXIT_DURING_START: typeof VmExitDuringStartError;
|
|
9204
9941
|
VM_ACCESS_DENIED: typeof VmAccessDeniedError;
|
|
9205
|
-
STD_IO: typeof StdIoError;
|
|
9206
9942
|
FAILED_TO_SPAWN_UFFD: typeof FailedToSpawnUffdError;
|
|
9207
9943
|
VM_SPAWN_PROCESS: typeof VmSpawnProcessError;
|
|
9208
9944
|
VM_SUBNET_NOT_FOUND: typeof VmSubnetNotFoundError;
|
|
9209
|
-
|
|
9210
|
-
|
|
9211
|
-
|
|
9945
|
+
SNAPSHOT_SETUP_FAILED: typeof SnapshotSetupFailedError;
|
|
9946
|
+
SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
|
|
9947
|
+
SNAPSHOT_IS_ACCOUNT_DEFAULT: typeof SnapshotIsAccountDefaultError;
|
|
9948
|
+
SNAPSHOT_ALREADY_DELETED: typeof SnapshotAlreadyDeletedError;
|
|
9212
9949
|
VM_NOT_FOUND_IN_FS: typeof VmNotFoundInFsError;
|
|
9213
9950
|
VM_NOT_RUNNING: typeof VmNotRunningError;
|
|
9214
9951
|
VM_NOT_FOUND: typeof VmNotFoundError;
|
|
9215
9952
|
INTERNAL_FORK_VM_NOT_FOUND: typeof InternalForkVmNotFoundError;
|
|
9216
9953
|
BAD_REQUEST: typeof BadRequestError;
|
|
9217
9954
|
INTERNAL_VM_NOT_FOUND: typeof InternalVmNotFoundError;
|
|
9955
|
+
NO_DEFAULT_SNAPSHOT_AVAILABLE: typeof NoDefaultSnapshotAvailableError;
|
|
9956
|
+
DOCKER_SNAPSHOT_FAILED: typeof DockerSnapshotFailedError;
|
|
9957
|
+
SET_DEFAULT_SNAPSHOT_FAILED: typeof SetDefaultSnapshotFailedError;
|
|
9958
|
+
SNAPSHOT_LAYER_CREATION_FAILED: typeof SnapshotLayerCreationFailedError;
|
|
9959
|
+
SNAPSHOT_DIR_NOT_FOUND: typeof SnapshotDirNotFoundError;
|
|
9960
|
+
SUBVOLUME_CREATION_FAILED: typeof SubvolumeCreationFailedError;
|
|
9961
|
+
GET_DEFAULT_SNAPSHOT_FAILED: typeof GetDefaultSnapshotFailedError;
|
|
9218
9962
|
USER_NOT_FOUND: typeof UserNotFoundError;
|
|
9219
9963
|
USER_ALREADY_EXISTS: typeof UserAlreadyExistsError;
|
|
9220
9964
|
VALIDATION_ERROR: typeof ValidationErrorError;
|
|
@@ -9231,29 +9975,17 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9231
9975
|
GROUP_NAME_INVALID_CHARS: typeof GroupNameInvalidCharsError;
|
|
9232
9976
|
GROUP_NAME_TOO_LONG: typeof GroupNameTooLongError;
|
|
9233
9977
|
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
9978
|
ACTIVE_TRANSACTION_ERROR: typeof ActiveTransactionErrorError;
|
|
9255
9979
|
SWAP_VM_TAP: typeof SwapVmTapError;
|
|
9256
9980
|
ROOTFS_COPY_ERROR: typeof RootfsCopyErrorError;
|
|
9981
|
+
PARTITION_NOT_FOUND: typeof PartitionNotFoundError;
|
|
9982
|
+
FILE_NOT_FOUND: typeof FileNotFoundError;
|
|
9983
|
+
FILES_BAD_REQUEST: typeof FilesBadRequestError;
|
|
9984
|
+
DATABASE_ERROR: typeof DatabaseErrorError;
|
|
9985
|
+
INVALID_VM_ID: typeof InvalidVmIdError;
|
|
9986
|
+
VM_OPERATION_DENIED_DURING_TRANSACTION: typeof VmOperationDeniedDuringTransactionError;
|
|
9987
|
+
VM_TRANSACTION_ID_MISMATCH: typeof VmTransactionIdMismatchError;
|
|
9988
|
+
VM_NOT_IN_TRANSACTION: typeof VmNotInTransactionError;
|
|
9257
9989
|
CREATE_VM_BAD_REQUEST: typeof CreateVmBadRequestError;
|
|
9258
9990
|
VM_SETUP_FAILED: typeof VmSetupFailedError;
|
|
9259
9991
|
WANTED_BY_EMPTY: typeof WantedByEmptyError;
|
|
@@ -9277,85 +10009,72 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9277
10009
|
RUNTIME_ERROR: typeof RuntimeErrorError;
|
|
9278
10010
|
SYNTAX_ERROR: typeof SyntaxErrorError;
|
|
9279
10011
|
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;
|
|
10012
|
+
SIGNING: typeof SigningError;
|
|
10013
|
+
INVALID_SIGNATURE: typeof InvalidSignatureError;
|
|
10014
|
+
INVALID_PARAMETERS: typeof InvalidParametersError;
|
|
10015
|
+
MAX_USES_EXCEEDED: typeof MaxUsesExceededError;
|
|
10016
|
+
EXPIRED: typeof ExpiredError;
|
|
9292
10017
|
BRANCH_NOT_FOUND: typeof BranchNotFoundError;
|
|
10018
|
+
BRANCH_ALREADY_EXISTS: typeof BranchAlreadyExistsError;
|
|
9293
10019
|
NO_DEFAULT_BRANCH: typeof NoDefaultBranchError;
|
|
10020
|
+
COMMIT_NOT_FOUND: typeof CommitNotFoundError;
|
|
10021
|
+
PARENT_NOT_FOUND: typeof ParentNotFoundError;
|
|
10022
|
+
TREE_NOT_FOUND: typeof TreeNotFoundError;
|
|
10023
|
+
PACKFILE: typeof PackfileError;
|
|
10024
|
+
INVALID_REVISION: typeof InvalidRevisionError;
|
|
10025
|
+
FORBIDDEN: typeof ForbiddenError;
|
|
10026
|
+
UNAUTHORIZED: typeof UnauthorizedError;
|
|
10027
|
+
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
10028
|
+
REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
|
|
10029
|
+
AMBIGUOUS: typeof AmbiguousError;
|
|
10030
|
+
NOT_FOUND: typeof NotFoundError;
|
|
10031
|
+
INVALID: typeof InvalidError;
|
|
10032
|
+
DIFF_INVALID_PATH_PATTERN: typeof DiffInvalidPathPatternError;
|
|
10033
|
+
DIFF_INVALID_REGEX: typeof DiffInvalidRegexError;
|
|
10034
|
+
DIFF_EMPTY_QUERY: typeof DiffEmptyQueryError;
|
|
10035
|
+
COMMIT_INVALID_REGEX: typeof CommitInvalidRegexError;
|
|
10036
|
+
COMMIT_EMPTY_QUERY: typeof CommitEmptyQueryError;
|
|
10037
|
+
FILENAME_INVALID_PATTERN: typeof FilenameInvalidPatternError;
|
|
10038
|
+
FILENAME_EMPTY_QUERY: typeof FilenameEmptyQueryError;
|
|
10039
|
+
INVALID_REGEX: typeof InvalidRegexError;
|
|
10040
|
+
INVALID_PATH_PATTERN: typeof InvalidPathPatternError;
|
|
10041
|
+
EMPTY_QUERY: typeof EmptyQueryError;
|
|
10042
|
+
CONFLICT: typeof ConflictError;
|
|
9294
10043
|
INVALID_BASE64_CONTENT: typeof InvalidBase64ContentError;
|
|
9295
10044
|
INVALID_FILE_CHANGE: typeof InvalidFileChangeError;
|
|
9296
10045
|
INVALID_FILE_PATH: typeof InvalidFilePathError;
|
|
9297
10046
|
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
10047
|
INVALID_ACCOUNT_ID: typeof InvalidAccountIdError;
|
|
9313
10048
|
SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
|
|
9314
10049
|
SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
|
|
9315
10050
|
SOURCE_NOT_FOUND: typeof SourceNotFoundError;
|
|
9316
10051
|
IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
|
|
9317
10052
|
REPO_ALREADY_EXISTS: typeof RepoAlreadyExistsError;
|
|
9318
|
-
|
|
9319
|
-
|
|
10053
|
+
SEND_ERROR: typeof SendErrorError;
|
|
10054
|
+
INVALID_RANGE: typeof InvalidRangeError;
|
|
10055
|
+
OFFSET_WITH_SELECTOR: typeof OffsetWithSelectorError;
|
|
10056
|
+
COMMIT_NOT_IN_BRANCH: typeof CommitNotInBranchError;
|
|
10057
|
+
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
10058
|
+
INVALID_SERVICE: typeof InvalidServiceError;
|
|
10059
|
+
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
9320
10060
|
GIT_HUB_SYNC_CONFLICT: typeof GitHubSyncConflictError;
|
|
9321
10061
|
INVALID_OBJECT_ID: typeof InvalidObjectIdError;
|
|
10062
|
+
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
10063
|
+
BLOB_NOT_FOUND: typeof BlobNotFoundError;
|
|
9322
10064
|
UNAVAILABLE: typeof UnavailableError;
|
|
9323
10065
|
SCHEDULE_NOT_FOUND: typeof ScheduleNotFoundError;
|
|
9324
10066
|
SERVICE_UNAVAILABLE: typeof ServiceUnavailableError;
|
|
9325
10067
|
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;
|
|
10068
|
+
ACCESS_DENIED: typeof AccessDeniedError;
|
|
10069
|
+
CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
|
|
10070
|
+
CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
|
|
10071
|
+
CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
|
|
10072
|
+
RESTORE_FAILED: typeof RestoreFailedError;
|
|
10073
|
+
CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
|
|
10074
|
+
BACKUP_FAILED: typeof BackupFailedError;
|
|
10075
|
+
DEPLOYMENT_FAILED: typeof DeploymentFailedError;
|
|
10076
|
+
INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
|
|
10077
|
+
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
9359
10078
|
BUILD_FAILED: typeof BuildFailedError;
|
|
9360
10079
|
SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
|
|
9361
10080
|
LOCKFILE_ERROR: typeof LockfileErrorError;
|
|
@@ -9372,9 +10091,32 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9372
10091
|
DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
|
|
9373
10092
|
RESIZE_FAILED: typeof ResizeFailedError;
|
|
9374
10093
|
INTERNAL_RESIZE_VM_NOT_FOUND: typeof InternalResizeVmNotFoundError;
|
|
9375
|
-
ACCESS_DENIED: typeof AccessDeniedError;
|
|
9376
10094
|
BRANCH_NAME_EMPTY: typeof BranchNameEmptyError;
|
|
9377
|
-
|
|
10095
|
+
SNAPSHOT_LIMIT_EXCEEDED: typeof SnapshotLimitExceededError;
|
|
10096
|
+
PERSISTENT_VMS_NOT_ALLOWED: typeof PersistentVmsNotAllowedError;
|
|
10097
|
+
TOTAL_VM_LIMIT_EXCEEDED: typeof TotalVmLimitExceededError;
|
|
10098
|
+
VM_LIMIT_EXCEEDED: typeof VmLimitExceededError;
|
|
10099
|
+
OBSERVABILITY_DATABASE_ERROR: typeof ObservabilityDatabaseErrorError;
|
|
10100
|
+
OBSERVABILITY_ACCESS_DENIED: typeof ObservabilityAccessDeniedError;
|
|
10101
|
+
PARSE_LOGS_FAILED: typeof ParseLogsFailedError;
|
|
10102
|
+
RETRIEVE_LOGS_FAILED: typeof RetrieveLogsFailedError;
|
|
10103
|
+
INVALID_QUERY: typeof InvalidQueryError;
|
|
10104
|
+
LOGS_NOT_FOUND: typeof LogsNotFoundError;
|
|
10105
|
+
DOMAIN_OWNERSHIP_NOT_VERIFIED: typeof DomainOwnershipNotVerifiedError;
|
|
10106
|
+
VM_ACCESS_DENIED_FOR_MAPPING: typeof VmAccessDeniedForMappingError;
|
|
10107
|
+
DEPLOYMENT_ACCESS_DENIED: typeof DeploymentAccessDeniedError;
|
|
10108
|
+
FAILED_TO_PROVISION_CERTIFICATE_FOR_MAPPING: typeof FailedToProvisionCertificateForMappingError;
|
|
10109
|
+
FAILED_INSERT_DOMAIN_MAPPING: typeof FailedInsertDomainMappingError;
|
|
10110
|
+
DOMAIN_ALREADY_EXISTS: typeof DomainAlreadyExistsError;
|
|
10111
|
+
FAILED_TO_INSERT_OWNERSHIP: typeof FailedToInsertOwnershipError;
|
|
10112
|
+
FAILED_REMOVE_DOMAIN_MAPPING: typeof FailedRemoveDomainMappingError;
|
|
10113
|
+
FAILED_PERMISSIONS_CHECK: typeof FailedPermissionsCheckError;
|
|
10114
|
+
FAILED_TO_CHECK_DOMAIN_MAPPING_PERMISSIONS: typeof FailedToCheckDomainMappingPermissionsError;
|
|
10115
|
+
DOMAIN_OWNERSHIP_VERIFICATION_FAILED: typeof DomainOwnershipVerificationFailedError;
|
|
10116
|
+
ERROR_DELETING_RECORD: typeof ErrorDeletingRecordError;
|
|
10117
|
+
RECORD_OWNERSHIP_ERROR: typeof RecordOwnershipErrorError;
|
|
10118
|
+
ERROR_CREATING_RECORD: typeof ErrorCreatingRecordError;
|
|
10119
|
+
DOMAIN_OWNERSHIP_ERROR: typeof DomainOwnershipErrorError;
|
|
9378
10120
|
TRIGGER_ERROR: typeof TriggerErrorError;
|
|
9379
10121
|
TOKEN_ERROR: typeof TokenErrorError;
|
|
9380
10122
|
PERMISSION_ERROR: typeof PermissionErrorError;
|
|
@@ -9394,21 +10136,23 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9394
10136
|
SERIALIZATION_ERROR: typeof SerializationErrorError;
|
|
9395
10137
|
GIT_INVALID_REQUEST: typeof GitInvalidRequestError;
|
|
9396
10138
|
REPOSITORY_NOT_FOUND: typeof RepositoryNotFoundError;
|
|
9397
|
-
|
|
9398
|
-
|
|
9399
|
-
|
|
9400
|
-
|
|
9401
|
-
|
|
9402
|
-
|
|
9403
|
-
|
|
9404
|
-
|
|
9405
|
-
|
|
9406
|
-
|
|
10139
|
+
EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
|
|
10140
|
+
EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
|
|
10141
|
+
LIST_RUNS_FAILED: typeof ListRunsFailedError;
|
|
10142
|
+
EXECUTION_ERROR: typeof ExecutionErrorError;
|
|
10143
|
+
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
10144
|
+
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
10145
|
+
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
10146
|
+
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
10147
|
+
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
10148
|
+
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
10149
|
+
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
10150
|
+
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
10151
|
+
LOGGING_FAILED: typeof LoggingFailedError;
|
|
10152
|
+
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
10153
|
+
UNAUTHORIZED_ERROR: typeof UnauthorizedErrorError;
|
|
9407
10154
|
GIT_REPO_LIMIT_EXCEEDED: typeof GitRepoLimitExceededError;
|
|
9408
10155
|
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
10156
|
PERMISSION_ALREADY_EXISTS: typeof PermissionAlreadyExistsError;
|
|
9413
10157
|
LIST_TOKENS_FAILED: typeof ListTokensFailedError;
|
|
9414
10158
|
REVOKE_TOKEN_FAILED: typeof RevokeTokenFailedError;
|
|
@@ -9429,20 +10173,19 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
9429
10173
|
CANNOT_MODIFY_MANAGED_IDENTITY: typeof CannotModifyManagedIdentityError;
|
|
9430
10174
|
IDENTITY_ACCESS_DENIED: typeof IdentityAccessDeniedError;
|
|
9431
10175
|
IDENTITY_NOT_FOUND: typeof IdentityNotFoundError;
|
|
9432
|
-
|
|
9433
|
-
|
|
9434
|
-
|
|
9435
|
-
|
|
9436
|
-
|
|
9437
|
-
|
|
9438
|
-
|
|
9439
|
-
|
|
9440
|
-
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
|
|
9444
|
-
|
|
9445
|
-
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
10176
|
+
LIMIT_EXCEEDED: typeof LimitExceededError;
|
|
10177
|
+
FAILED_TO_PROVISION_CERTIFICATE: typeof FailedToProvisionCertificateError;
|
|
10178
|
+
FAILED_TO_INSERT_DOMAIN_MAPPING: typeof FailedToInsertDomainMappingError;
|
|
10179
|
+
PERMISSION_DENIED: typeof PermissionDeniedError;
|
|
10180
|
+
FAILED_TO_CHECK_PERMISSIONS: typeof FailedToCheckPermissionsError;
|
|
10181
|
+
FAILED_TO_LIST_DOMAINS: typeof FailedToListDomainsError;
|
|
10182
|
+
FAILED_TO_LIST_VERIFICATIONS: typeof FailedToListVerificationsError;
|
|
10183
|
+
FAILED_TO_VERIFY_DOMAIN: typeof FailedToVerifyDomainError;
|
|
10184
|
+
VERIFICATION_FAILED: typeof VerificationFailedError;
|
|
10185
|
+
FAILED_TO_DELETE_VERIFICATION: typeof FailedToDeleteVerificationError;
|
|
10186
|
+
VERIFICATION_NOT_FOUND: typeof VerificationNotFoundError;
|
|
10187
|
+
FAILED_TO_CREATE_VERIFICATION_CODE: typeof FailedToCreateVerificationCodeError;
|
|
10188
|
+
INVALID_DOMAIN: typeof InvalidDomainError;
|
|
9446
10189
|
};
|
|
9447
10190
|
|
|
9448
10191
|
type errors_AccessDeniedError = AccessDeniedError;
|
|
@@ -9489,6 +10232,10 @@ type errors_CloudstateDatabaseErrorError = CloudstateDatabaseErrorError;
|
|
|
9489
10232
|
declare const errors_CloudstateDatabaseErrorError: typeof CloudstateDatabaseErrorError;
|
|
9490
10233
|
type errors_CloudstateInternalErrorError = CloudstateInternalErrorError;
|
|
9491
10234
|
declare const errors_CloudstateInternalErrorError: typeof CloudstateInternalErrorError;
|
|
10235
|
+
type errors_CommitEmptyQueryError = CommitEmptyQueryError;
|
|
10236
|
+
declare const errors_CommitEmptyQueryError: typeof CommitEmptyQueryError;
|
|
10237
|
+
type errors_CommitInvalidRegexError = CommitInvalidRegexError;
|
|
10238
|
+
declare const errors_CommitInvalidRegexError: typeof CommitInvalidRegexError;
|
|
9492
10239
|
type errors_CommitNotFoundError = CommitNotFoundError;
|
|
9493
10240
|
declare const errors_CommitNotFoundError: typeof CommitNotFoundError;
|
|
9494
10241
|
type errors_CommitNotInBranchError = CommitNotInBranchError;
|
|
@@ -9527,6 +10274,12 @@ type errors_DeploymentLimitExceededError = DeploymentLimitExceededError;
|
|
|
9527
10274
|
declare const errors_DeploymentLimitExceededError: typeof DeploymentLimitExceededError;
|
|
9528
10275
|
type errors_DeploymentNotFoundError = DeploymentNotFoundError;
|
|
9529
10276
|
declare const errors_DeploymentNotFoundError: typeof DeploymentNotFoundError;
|
|
10277
|
+
type errors_DiffEmptyQueryError = DiffEmptyQueryError;
|
|
10278
|
+
declare const errors_DiffEmptyQueryError: typeof DiffEmptyQueryError;
|
|
10279
|
+
type errors_DiffInvalidPathPatternError = DiffInvalidPathPatternError;
|
|
10280
|
+
declare const errors_DiffInvalidPathPatternError: typeof DiffInvalidPathPatternError;
|
|
10281
|
+
type errors_DiffInvalidRegexError = DiffInvalidRegexError;
|
|
10282
|
+
declare const errors_DiffInvalidRegexError: typeof DiffInvalidRegexError;
|
|
9530
10283
|
type errors_DirectoryCreationFailedError = DirectoryCreationFailedError;
|
|
9531
10284
|
declare const errors_DirectoryCreationFailedError: typeof DirectoryCreationFailedError;
|
|
9532
10285
|
type errors_DockerSnapshotFailedError = DockerSnapshotFailedError;
|
|
@@ -9547,6 +10300,8 @@ type errors_DuplicateGroupNameError = DuplicateGroupNameError;
|
|
|
9547
10300
|
declare const errors_DuplicateGroupNameError: typeof DuplicateGroupNameError;
|
|
9548
10301
|
type errors_DuplicateUserNameError = DuplicateUserNameError;
|
|
9549
10302
|
declare const errors_DuplicateUserNameError: typeof DuplicateUserNameError;
|
|
10303
|
+
type errors_EmptyQueryError = EmptyQueryError;
|
|
10304
|
+
declare const errors_EmptyQueryError: typeof EmptyQueryError;
|
|
9550
10305
|
type errors_EmptyTagError = EmptyTagError;
|
|
9551
10306
|
declare const errors_EmptyTagError: typeof EmptyTagError;
|
|
9552
10307
|
type errors_EntrypointNotFoundError = EntrypointNotFoundError;
|
|
@@ -9606,6 +10361,10 @@ type errors_FailedToVerifyDomainError = FailedToVerifyDomainError;
|
|
|
9606
10361
|
declare const errors_FailedToVerifyDomainError: typeof FailedToVerifyDomainError;
|
|
9607
10362
|
type errors_FileNotFoundError = FileNotFoundError;
|
|
9608
10363
|
declare const errors_FileNotFoundError: typeof FileNotFoundError;
|
|
10364
|
+
type errors_FilenameEmptyQueryError = FilenameEmptyQueryError;
|
|
10365
|
+
declare const errors_FilenameEmptyQueryError: typeof FilenameEmptyQueryError;
|
|
10366
|
+
type errors_FilenameInvalidPatternError = FilenameInvalidPatternError;
|
|
10367
|
+
declare const errors_FilenameInvalidPatternError: typeof FilenameInvalidPatternError;
|
|
9609
10368
|
type errors_FilesBadRequestError = FilesBadRequestError;
|
|
9610
10369
|
declare const errors_FilesBadRequestError: typeof FilesBadRequestError;
|
|
9611
10370
|
type errors_FirecrackerApiSocketNotFoundError = FirecrackerApiSocketNotFoundError;
|
|
@@ -9699,10 +10458,14 @@ declare const errors_InvalidObjectIdError: typeof InvalidObjectIdError;
|
|
|
9699
10458
|
type errors_InvalidObjectIdPublic = InvalidObjectIdPublic;
|
|
9700
10459
|
type errors_InvalidParametersError = InvalidParametersError;
|
|
9701
10460
|
declare const errors_InvalidParametersError: typeof InvalidParametersError;
|
|
10461
|
+
type errors_InvalidPathPatternError = InvalidPathPatternError;
|
|
10462
|
+
declare const errors_InvalidPathPatternError: typeof InvalidPathPatternError;
|
|
9702
10463
|
type errors_InvalidQueryError = InvalidQueryError;
|
|
9703
10464
|
declare const errors_InvalidQueryError: typeof InvalidQueryError;
|
|
9704
10465
|
type errors_InvalidRangeError = InvalidRangeError;
|
|
9705
10466
|
declare const errors_InvalidRangeError: typeof InvalidRangeError;
|
|
10467
|
+
type errors_InvalidRegexError = InvalidRegexError;
|
|
10468
|
+
declare const errors_InvalidRegexError: typeof InvalidRegexError;
|
|
9706
10469
|
type errors_InvalidRequestError = InvalidRequestError;
|
|
9707
10470
|
declare const errors_InvalidRequestError: typeof InvalidRequestError;
|
|
9708
10471
|
type errors_InvalidRevisionError = InvalidRevisionError;
|
|
@@ -9803,6 +10566,7 @@ type errors_PublicCertificateProvisioningError = PublicCertificateProvisioningEr
|
|
|
9803
10566
|
type errors_PublicCloudstateAccessDenied = PublicCloudstateAccessDenied;
|
|
9804
10567
|
type errors_PublicCloudstateDatabaseError = PublicCloudstateDatabaseError;
|
|
9805
10568
|
type errors_PublicCloudstateInternalError = PublicCloudstateInternalError;
|
|
10569
|
+
type errors_PublicCommitInvalidRegex = PublicCommitInvalidRegex;
|
|
9806
10570
|
type errors_PublicCommitNotFound = PublicCommitNotFound;
|
|
9807
10571
|
type errors_PublicCommitNotInBranch = PublicCommitNotInBranch;
|
|
9808
10572
|
type errors_PublicConflictingParent = PublicConflictingParent;
|
|
@@ -9819,6 +10583,8 @@ type errors_PublicDeleteRepositoryFailed = PublicDeleteRepositoryFailed;
|
|
|
9819
10583
|
type errors_PublicDeploymentAccessDenied = PublicDeploymentAccessDenied;
|
|
9820
10584
|
type errors_PublicDeploymentFailed = PublicDeploymentFailed;
|
|
9821
10585
|
type errors_PublicDeploymentLimitExceeded = PublicDeploymentLimitExceeded;
|
|
10586
|
+
type errors_PublicDiffInvalidPathPattern = PublicDiffInvalidPathPattern;
|
|
10587
|
+
type errors_PublicDiffInvalidRegex = PublicDiffInvalidRegex;
|
|
9822
10588
|
type errors_PublicDirectoryCreationFailed = PublicDirectoryCreationFailed;
|
|
9823
10589
|
type errors_PublicDomainAlreadyExists = PublicDomainAlreadyExists;
|
|
9824
10590
|
type errors_PublicDomainMappingError = PublicDomainMappingError;
|
|
@@ -9845,6 +10611,7 @@ type errors_PublicFailedToProvisionCertificate = PublicFailedToProvisionCertific
|
|
|
9845
10611
|
type errors_PublicFailedToProvisionCertificateForMapping = PublicFailedToProvisionCertificateForMapping;
|
|
9846
10612
|
type errors_PublicFailedToVerifyDomain = PublicFailedToVerifyDomain;
|
|
9847
10613
|
type errors_PublicFileNotFound = PublicFileNotFound;
|
|
10614
|
+
type errors_PublicFilenameInvalidPattern = PublicFilenameInvalidPattern;
|
|
9848
10615
|
type errors_PublicFilesBadRequest = PublicFilesBadRequest;
|
|
9849
10616
|
type errors_PublicForkVmNotFound = PublicForkVmNotFound;
|
|
9850
10617
|
type errors_PublicGetContentFailed = PublicGetContentFailed;
|
|
@@ -9867,8 +10634,10 @@ type errors_PublicInvalidDomain = PublicInvalidDomain;
|
|
|
9867
10634
|
type errors_PublicInvalidDomains = PublicInvalidDomains;
|
|
9868
10635
|
type errors_PublicInvalidFileChange = PublicInvalidFileChange;
|
|
9869
10636
|
type errors_PublicInvalidFilePath = PublicInvalidFilePath;
|
|
10637
|
+
type errors_PublicInvalidPathPattern = PublicInvalidPathPattern;
|
|
9870
10638
|
type errors_PublicInvalidQuery = PublicInvalidQuery;
|
|
9871
10639
|
type errors_PublicInvalidRange = PublicInvalidRange;
|
|
10640
|
+
type errors_PublicInvalidRegex = PublicInvalidRegex;
|
|
9872
10641
|
type errors_PublicInvalidRevision = PublicInvalidRevision;
|
|
9873
10642
|
type errors_PublicInvalidVmId = PublicInvalidVmId;
|
|
9874
10643
|
type errors_PublicLimitExceeded = PublicLimitExceeded;
|
|
@@ -9909,6 +10678,9 @@ type errors_PublicRunNotFound = PublicRunNotFound;
|
|
|
9909
10678
|
type errors_PublicRuntimeError = PublicRuntimeError;
|
|
9910
10679
|
type errors_PublicSerializationError = PublicSerializationError;
|
|
9911
10680
|
type errors_PublicServiceAlreadyExists = PublicServiceAlreadyExists;
|
|
10681
|
+
type errors_PublicSnapshotAlreadyDeleted = PublicSnapshotAlreadyDeleted;
|
|
10682
|
+
type errors_PublicSnapshotIsAccountDefault = PublicSnapshotIsAccountDefault;
|
|
10683
|
+
type errors_PublicSnapshotLimitExceeded = PublicSnapshotLimitExceeded;
|
|
9912
10684
|
type errors_PublicSnapshotNotFound = PublicSnapshotNotFound;
|
|
9913
10685
|
type errors_PublicSnapshotSetupFailed = PublicSnapshotSetupFailed;
|
|
9914
10686
|
type errors_PublicSnapshotVmBadRequest = PublicSnapshotVmBadRequest;
|
|
@@ -9917,6 +10689,7 @@ type errors_PublicSourceUnauthorized = PublicSourceUnauthorized;
|
|
|
9917
10689
|
type errors_PublicTagNotFound = PublicTagNotFound;
|
|
9918
10690
|
type errors_PublicTimeoutLimitExceeded = PublicTimeoutLimitExceeded;
|
|
9919
10691
|
type errors_PublicTokenError = PublicTokenError;
|
|
10692
|
+
type errors_PublicTotalVmLimitExceeded = PublicTotalVmLimitExceeded;
|
|
9920
10693
|
type errors_PublicTreeNotFound = PublicTreeNotFound;
|
|
9921
10694
|
type errors_PublicTriggerError = PublicTriggerError;
|
|
9922
10695
|
type errors_PublicUnsupportedTransfer = PublicUnsupportedTransfer;
|
|
@@ -9926,6 +10699,7 @@ type errors_PublicUserAlreadyExists = PublicUserAlreadyExists;
|
|
|
9926
10699
|
type errors_PublicVerificationFailed = PublicVerificationFailed;
|
|
9927
10700
|
type errors_PublicVerificationNotFound = PublicVerificationNotFound;
|
|
9928
10701
|
type errors_PublicVmAccessDeniedForMapping = PublicVmAccessDeniedForMapping;
|
|
10702
|
+
type errors_PublicVmLimitExceeded = PublicVmLimitExceeded;
|
|
9929
10703
|
type errors_PublicWebDeploymentBadRequest = PublicWebDeploymentBadRequest;
|
|
9930
10704
|
type errors_PublicWriteScriptFailed = PublicWriteScriptFailed;
|
|
9931
10705
|
type errors_RecordOwnershipErrorError = RecordOwnershipErrorError;
|
|
@@ -9990,11 +10764,17 @@ type errors_SetDefaultSnapshotFailedError = SetDefaultSnapshotFailedError;
|
|
|
9990
10764
|
declare const errors_SetDefaultSnapshotFailedError: typeof SetDefaultSnapshotFailedError;
|
|
9991
10765
|
type errors_SigningError = SigningError;
|
|
9992
10766
|
declare const errors_SigningError: typeof SigningError;
|
|
10767
|
+
type errors_SnapshotAlreadyDeletedError = SnapshotAlreadyDeletedError;
|
|
10768
|
+
declare const errors_SnapshotAlreadyDeletedError: typeof SnapshotAlreadyDeletedError;
|
|
9993
10769
|
type errors_SnapshotDirNotFoundError = SnapshotDirNotFoundError;
|
|
9994
10770
|
declare const errors_SnapshotDirNotFoundError: typeof SnapshotDirNotFoundError;
|
|
9995
10771
|
type errors_SnapshotId = SnapshotId;
|
|
10772
|
+
type errors_SnapshotIsAccountDefaultError = SnapshotIsAccountDefaultError;
|
|
10773
|
+
declare const errors_SnapshotIsAccountDefaultError: typeof SnapshotIsAccountDefaultError;
|
|
9996
10774
|
type errors_SnapshotLayerCreationFailedError = SnapshotLayerCreationFailedError;
|
|
9997
10775
|
declare const errors_SnapshotLayerCreationFailedError: typeof SnapshotLayerCreationFailedError;
|
|
10776
|
+
type errors_SnapshotLimitExceededError = SnapshotLimitExceededError;
|
|
10777
|
+
declare const errors_SnapshotLimitExceededError: typeof SnapshotLimitExceededError;
|
|
9998
10778
|
type errors_SnapshotLoadTimeoutError = SnapshotLoadTimeoutError;
|
|
9999
10779
|
declare const errors_SnapshotLoadTimeoutError: typeof SnapshotLoadTimeoutError;
|
|
10000
10780
|
type errors_SnapshotNotFoundError = SnapshotNotFoundError;
|
|
@@ -10009,8 +10789,6 @@ type errors_SourceNotFoundError = SourceNotFoundError;
|
|
|
10009
10789
|
declare const errors_SourceNotFoundError: typeof SourceNotFoundError;
|
|
10010
10790
|
type errors_SourceUnauthorizedError = SourceUnauthorizedError;
|
|
10011
10791
|
declare const errors_SourceUnauthorizedError: typeof SourceUnauthorizedError;
|
|
10012
|
-
type errors_StdIoError = StdIoError;
|
|
10013
|
-
declare const errors_StdIoError: typeof StdIoError;
|
|
10014
10792
|
type errors_SubvolumeCreationFailedError = SubvolumeCreationFailedError;
|
|
10015
10793
|
declare const errors_SubvolumeCreationFailedError: typeof SubvolumeCreationFailedError;
|
|
10016
10794
|
type errors_SuspendFailedAndStopFailedError = SuspendFailedAndStopFailedError;
|
|
@@ -10080,6 +10858,7 @@ type errors_VmDeletedError = VmDeletedError;
|
|
|
10080
10858
|
declare const errors_VmDeletedError: typeof VmDeletedError;
|
|
10081
10859
|
type errors_VmExitDuringStartError = VmExitDuringStartError;
|
|
10082
10860
|
declare const errors_VmExitDuringStartError: typeof VmExitDuringStartError;
|
|
10861
|
+
type errors_VmId = VmId;
|
|
10083
10862
|
type errors_VmIsSuspendingError = VmIsSuspendingError;
|
|
10084
10863
|
declare const errors_VmIsSuspendingError: typeof VmIsSuspendingError;
|
|
10085
10864
|
type errors_VmLimitExceededError = VmLimitExceededError;
|
|
@@ -10120,8 +10899,8 @@ type errors_WriteScriptFailedError = WriteScriptFailedError;
|
|
|
10120
10899
|
declare const errors_WriteScriptFailedError: typeof WriteScriptFailedError;
|
|
10121
10900
|
declare const errors_errorFromJSON: typeof errorFromJSON;
|
|
10122
10901
|
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 };
|
|
10902
|
+
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 };
|
|
10903
|
+
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
10904
|
}
|
|
10126
10905
|
|
|
10127
10906
|
/**
|
|
@@ -10230,6 +11009,151 @@ declare class DomainsNamespace {
|
|
|
10230
11009
|
}): Promise<ResponseGetDomainsV1Domains200>;
|
|
10231
11010
|
}
|
|
10232
11011
|
|
|
11012
|
+
/**
|
|
11013
|
+
* A single matching line within a file, including surrounding context.
|
|
11014
|
+
*/
|
|
11015
|
+
interface GitSearchLineMatch {
|
|
11016
|
+
/** 1-based line number of the match. */
|
|
11017
|
+
lineNumber: number;
|
|
11018
|
+
/** The full text of the matching line. */
|
|
11019
|
+
line: string;
|
|
11020
|
+
/** 0-based column offset of the first match in the line. */
|
|
11021
|
+
startColumn: number;
|
|
11022
|
+
/** 0-based column offset of the end of the first match in the line. */
|
|
11023
|
+
endColumn: number;
|
|
11024
|
+
/** Context lines before the match. */
|
|
11025
|
+
contextBefore: string[];
|
|
11026
|
+
/** Context lines after the match. */
|
|
11027
|
+
contextAfter: string[];
|
|
11028
|
+
}
|
|
11029
|
+
/**
|
|
11030
|
+
* Search results for a single file.
|
|
11031
|
+
*/
|
|
11032
|
+
interface GitSearchFileResult {
|
|
11033
|
+
/** The file path relative to the repository root. */
|
|
11034
|
+
path: string;
|
|
11035
|
+
/** The file extension (e.g. "rs", "ts"), if any. */
|
|
11036
|
+
extension: string | null;
|
|
11037
|
+
/** The file size in bytes. */
|
|
11038
|
+
size: number;
|
|
11039
|
+
/** The matches found in this file. */
|
|
11040
|
+
matches: GitSearchLineMatch[];
|
|
11041
|
+
}
|
|
11042
|
+
/**
|
|
11043
|
+
* Full-text search results across a repository.
|
|
11044
|
+
*/
|
|
11045
|
+
interface GitSearchResult {
|
|
11046
|
+
/** Total number of files with matches (before pagination). */
|
|
11047
|
+
totalFiles: number;
|
|
11048
|
+
/** Total number of individual line matches across all files (before pagination). */
|
|
11049
|
+
totalMatches: number;
|
|
11050
|
+
/** Whether there are more results beyond the current page. */
|
|
11051
|
+
hasMore: boolean;
|
|
11052
|
+
/** The matching files with their line matches. */
|
|
11053
|
+
files: GitSearchFileResult[];
|
|
11054
|
+
}
|
|
11055
|
+
/**
|
|
11056
|
+
* A file entry returned from filename search.
|
|
11057
|
+
*/
|
|
11058
|
+
interface GitFilenameEntry {
|
|
11059
|
+
/** The full file path relative to the repository root. */
|
|
11060
|
+
path: string;
|
|
11061
|
+
/** The file extension (e.g. "rs", "ts"), if any. */
|
|
11062
|
+
extension: string | null;
|
|
11063
|
+
/** The file size in bytes. */
|
|
11064
|
+
size: number;
|
|
11065
|
+
}
|
|
11066
|
+
/**
|
|
11067
|
+
* Filename search results.
|
|
11068
|
+
*/
|
|
11069
|
+
interface GitFilenameSearchResult {
|
|
11070
|
+
/** Total number of matching files. */
|
|
11071
|
+
totalFiles: number;
|
|
11072
|
+
/** Whether there are more results beyond those returned. */
|
|
11073
|
+
hasMore: boolean;
|
|
11074
|
+
/** The matching file entries. */
|
|
11075
|
+
files: GitFilenameEntry[];
|
|
11076
|
+
}
|
|
11077
|
+
/**
|
|
11078
|
+
* A commit entry returned from commit message search.
|
|
11079
|
+
*/
|
|
11080
|
+
interface GitCommitSearchEntry {
|
|
11081
|
+
/** The commit SHA. */
|
|
11082
|
+
sha: string;
|
|
11083
|
+
/** The commit message (first line / summary). */
|
|
11084
|
+
message: string;
|
|
11085
|
+
/** The full commit message. */
|
|
11086
|
+
fullMessage: string;
|
|
11087
|
+
/** The author name. */
|
|
11088
|
+
authorName: string;
|
|
11089
|
+
/** The author email. */
|
|
11090
|
+
authorEmail: string;
|
|
11091
|
+
/** The commit timestamp (ISO 8601). */
|
|
11092
|
+
timestamp: string;
|
|
11093
|
+
}
|
|
11094
|
+
/**
|
|
11095
|
+
* Commit message search results.
|
|
11096
|
+
*/
|
|
11097
|
+
interface GitCommitSearchResult {
|
|
11098
|
+
/** Total number of matching commits found. */
|
|
11099
|
+
totalCommits: number;
|
|
11100
|
+
/** Whether there are more results beyond those returned. */
|
|
11101
|
+
hasMore: boolean;
|
|
11102
|
+
/** The matching commits. */
|
|
11103
|
+
commits: GitCommitSearchEntry[];
|
|
11104
|
+
}
|
|
11105
|
+
/**
|
|
11106
|
+
* A line that was added or changed in a diff that matched the search query.
|
|
11107
|
+
*/
|
|
11108
|
+
interface GitDiffLineMatch {
|
|
11109
|
+
/** The matched line content. */
|
|
11110
|
+
line: string;
|
|
11111
|
+
/** 1-based line number in the new file (for additions) or old file (for deletions). */
|
|
11112
|
+
lineNumber: number;
|
|
11113
|
+
/** 0-based byte offset of the match start within the line. */
|
|
11114
|
+
startColumn: number;
|
|
11115
|
+
/** 0-based byte offset of the match end within the line. */
|
|
11116
|
+
endColumn: number;
|
|
11117
|
+
/** Whether this was an added line (true) or a deleted line (false). */
|
|
11118
|
+
isAddition: boolean;
|
|
11119
|
+
}
|
|
11120
|
+
/**
|
|
11121
|
+
* A file within a commit that contained matching changed content.
|
|
11122
|
+
*/
|
|
11123
|
+
interface GitDiffFileMatch {
|
|
11124
|
+
/** The file path relative to the repository root. */
|
|
11125
|
+
path: string;
|
|
11126
|
+
/** The matching lines in the diff for this file. */
|
|
11127
|
+
matches: GitDiffLineMatch[];
|
|
11128
|
+
}
|
|
11129
|
+
/**
|
|
11130
|
+
* A commit that contained matching diff content.
|
|
11131
|
+
*/
|
|
11132
|
+
interface GitDiffSearchCommit {
|
|
11133
|
+
/** The commit SHA. */
|
|
11134
|
+
sha: string;
|
|
11135
|
+
/** The commit message summary (first line). */
|
|
11136
|
+
message: string;
|
|
11137
|
+
/** The author name. */
|
|
11138
|
+
authorName: string;
|
|
11139
|
+
/** The author email. */
|
|
11140
|
+
authorEmail: string;
|
|
11141
|
+
/** The commit timestamp (ISO 8601). */
|
|
11142
|
+
timestamp: string;
|
|
11143
|
+
/** Files in this commit with matching changed content. */
|
|
11144
|
+
files: GitDiffFileMatch[];
|
|
11145
|
+
}
|
|
11146
|
+
/**
|
|
11147
|
+
* Diff content search results.
|
|
11148
|
+
*/
|
|
11149
|
+
interface GitDiffSearchResult {
|
|
11150
|
+
/** Total number of commits with matching changes (before pagination). */
|
|
11151
|
+
totalCommits: number;
|
|
11152
|
+
/** Whether there are more results beyond the current page. */
|
|
11153
|
+
hasMore: boolean;
|
|
11154
|
+
/** The matching commits with their file-level diff matches. */
|
|
11155
|
+
commits: GitDiffSearchCommit[];
|
|
11156
|
+
}
|
|
10233
11157
|
/**
|
|
10234
11158
|
* Namespace for managing branches within a Git repository.
|
|
10235
11159
|
*
|
|
@@ -10977,6 +11901,159 @@ declare class GitRepo {
|
|
|
10977
11901
|
base: string;
|
|
10978
11902
|
head: string;
|
|
10979
11903
|
}): Promise<ResponseGetGitV1RepoRepoCompare200>;
|
|
11904
|
+
/**
|
|
11905
|
+
* Full-text search across all files in this repository.
|
|
11906
|
+
*
|
|
11907
|
+
* Walks the entire tree at the given revision and searches each text file
|
|
11908
|
+
* for the query string, returning matching lines with context.
|
|
11909
|
+
*
|
|
11910
|
+
* @param query - The text to search for in file contents
|
|
11911
|
+
* @param rev - The revision (branch, tag, or commit SHA) to search. Defaults to HEAD.
|
|
11912
|
+
* @param pathPattern - Optional glob pattern to filter file paths (e.g. "*.ts", "src/**")
|
|
11913
|
+
* @param maxResults - Maximum number of matching files to return (default 100, max 1000)
|
|
11914
|
+
* @param caseSensitive - Whether to perform a case-sensitive search (default false)
|
|
11915
|
+
*
|
|
11916
|
+
* @example
|
|
11917
|
+
* ```ts
|
|
11918
|
+
* // Search for a string across the whole repo
|
|
11919
|
+
* const results = await repo.search({ query: "TODO" });
|
|
11920
|
+
* console.log(`Found ${results.totalMatches} matches in ${results.totalFiles} files`);
|
|
11921
|
+
*
|
|
11922
|
+
* // Search only TypeScript files on a specific branch
|
|
11923
|
+
* const results = await repo.search({
|
|
11924
|
+
* query: "handleRequest",
|
|
11925
|
+
* rev: "main",
|
|
11926
|
+
* pathPattern: "**\/*.ts",
|
|
11927
|
+
* });
|
|
11928
|
+
*
|
|
11929
|
+
* // Case-sensitive search
|
|
11930
|
+
* const results = await repo.search({
|
|
11931
|
+
* query: "MyClass",
|
|
11932
|
+
* caseSensitive: true,
|
|
11933
|
+
* });
|
|
11934
|
+
*
|
|
11935
|
+
* for (const file of results.files) {
|
|
11936
|
+
* console.log(`${file.path}:`);
|
|
11937
|
+
* for (const match of file.matches) {
|
|
11938
|
+
* console.log(` L${match.lineNumber}: ${match.line}`);
|
|
11939
|
+
* }
|
|
11940
|
+
* }
|
|
11941
|
+
* ```
|
|
11942
|
+
*/
|
|
11943
|
+
search({ query, rev, pathPattern, excludePattern, maxResults, caseSensitive, isRegex, wholeWord, offset, }: {
|
|
11944
|
+
/** The search query string. */
|
|
11945
|
+
query: string;
|
|
11946
|
+
/** Git ref to search (branch, tag, or commit SHA). Defaults to HEAD. */
|
|
11947
|
+
rev?: string;
|
|
11948
|
+
/** Glob pattern to filter file paths (e.g. "*.rs", "src/**"). */
|
|
11949
|
+
pathPattern?: string;
|
|
11950
|
+
/** Glob pattern to exclude file paths (e.g. "*.lock", "node_modules/**"). */
|
|
11951
|
+
excludePattern?: string;
|
|
11952
|
+
/** Maximum number of file results to return (default 50). */
|
|
11953
|
+
maxResults?: number;
|
|
11954
|
+
/** Whether the search is case-sensitive (default false). */
|
|
11955
|
+
caseSensitive?: boolean;
|
|
11956
|
+
/** Treat the query as a regular expression. */
|
|
11957
|
+
isRegex?: boolean;
|
|
11958
|
+
/** Match whole words only. */
|
|
11959
|
+
wholeWord?: boolean;
|
|
11960
|
+
/** Offset for pagination (number of file results to skip). */
|
|
11961
|
+
offset?: number;
|
|
11962
|
+
}): Promise<GitSearchResult>;
|
|
11963
|
+
/**
|
|
11964
|
+
* Search for files by name or path pattern.
|
|
11965
|
+
*
|
|
11966
|
+
* @example
|
|
11967
|
+
* ```ts
|
|
11968
|
+
* const result = await repo.searchFiles({ query: "main" });
|
|
11969
|
+
* for (const file of result.files) {
|
|
11970
|
+
* console.log(`${file.path} (${file.size} bytes)`);
|
|
11971
|
+
* }
|
|
11972
|
+
* ```
|
|
11973
|
+
*/
|
|
11974
|
+
searchFiles({ query, rev, pathPattern, excludePattern, maxResults, caseSensitive, isRegex, offset, }: {
|
|
11975
|
+
/** The filename/path query string. */
|
|
11976
|
+
query: string;
|
|
11977
|
+
/** Git ref to search (branch, tag, or commit SHA). Defaults to HEAD. */
|
|
11978
|
+
rev?: string;
|
|
11979
|
+
/** Glob pattern to filter file paths. */
|
|
11980
|
+
pathPattern?: string;
|
|
11981
|
+
/** Glob pattern to exclude file paths. */
|
|
11982
|
+
excludePattern?: string;
|
|
11983
|
+
/** Maximum number of results to return (default 100). */
|
|
11984
|
+
maxResults?: number;
|
|
11985
|
+
/** Whether the search is case-sensitive (default false). */
|
|
11986
|
+
caseSensitive?: boolean;
|
|
11987
|
+
/** Treat the query as a regular expression. */
|
|
11988
|
+
isRegex?: boolean;
|
|
11989
|
+
/** Offset for pagination. */
|
|
11990
|
+
offset?: number;
|
|
11991
|
+
}): Promise<GitFilenameSearchResult>;
|
|
11992
|
+
/**
|
|
11993
|
+
* Search commit messages.
|
|
11994
|
+
*
|
|
11995
|
+
* @example
|
|
11996
|
+
* ```ts
|
|
11997
|
+
* const result = await repo.searchCommits({ query: "fix bug" });
|
|
11998
|
+
* for (const commit of result.commits) {
|
|
11999
|
+
* console.log(`${commit.sha.slice(0, 7)} ${commit.message}`);
|
|
12000
|
+
* }
|
|
12001
|
+
* ```
|
|
12002
|
+
*/
|
|
12003
|
+
searchCommits({ query, rev, maxResults, caseSensitive, isRegex, offset, }: {
|
|
12004
|
+
/** The commit message query string. */
|
|
12005
|
+
query: string;
|
|
12006
|
+
/** Git ref to start searching from (default HEAD). */
|
|
12007
|
+
rev?: string;
|
|
12008
|
+
/** Maximum number of results to return (default 50). */
|
|
12009
|
+
maxResults?: number;
|
|
12010
|
+
/** Whether the search is case-sensitive (default false). */
|
|
12011
|
+
caseSensitive?: boolean;
|
|
12012
|
+
/** Treat the query as a regular expression. */
|
|
12013
|
+
isRegex?: boolean;
|
|
12014
|
+
/** Offset for pagination. */
|
|
12015
|
+
offset?: number;
|
|
12016
|
+
}): Promise<GitCommitSearchResult>;
|
|
12017
|
+
/**
|
|
12018
|
+
* Search file content changes across commits (git log -S/-G equivalent).
|
|
12019
|
+
*
|
|
12020
|
+
* Returns commits where matching content was added or removed, along with
|
|
12021
|
+
* the specific changed lines and which files they were in.
|
|
12022
|
+
*
|
|
12023
|
+
* @example
|
|
12024
|
+
* ```ts
|
|
12025
|
+
* const result = await repo.searchDiffs({ query: "TODO" });
|
|
12026
|
+
* for (const commit of result.commits) {
|
|
12027
|
+
* console.log(`${commit.sha.slice(0, 7)} ${commit.message}`);
|
|
12028
|
+
* for (const file of commit.files) {
|
|
12029
|
+
* for (const match of file.matches) {
|
|
12030
|
+
* const prefix = match.isAddition ? "+" : "-";
|
|
12031
|
+
* console.log(` ${file.path}:${match.lineNumber} ${prefix} ${match.line}`);
|
|
12032
|
+
* }
|
|
12033
|
+
* }
|
|
12034
|
+
* }
|
|
12035
|
+
* ```
|
|
12036
|
+
*/
|
|
12037
|
+
searchDiffs({ query, rev, pathPattern, excludePattern, maxResults, caseSensitive, isRegex, wholeWord, offset, }: {
|
|
12038
|
+
/** The search query string. */
|
|
12039
|
+
query: string;
|
|
12040
|
+
/** Git ref to start searching from (default HEAD). */
|
|
12041
|
+
rev?: string;
|
|
12042
|
+
/** Glob pattern to filter file paths (e.g. "*.rs", "src/**"). */
|
|
12043
|
+
pathPattern?: string;
|
|
12044
|
+
/** Glob pattern to exclude file paths (e.g. "*.lock", "node_modules/**"). */
|
|
12045
|
+
excludePattern?: string;
|
|
12046
|
+
/** Maximum number of commit results to return (default 100). */
|
|
12047
|
+
maxResults?: number;
|
|
12048
|
+
/** Whether the search is case-sensitive (default false). */
|
|
12049
|
+
caseSensitive?: boolean;
|
|
12050
|
+
/** Treat the query as a regular expression. */
|
|
12051
|
+
isRegex?: boolean;
|
|
12052
|
+
/** Match whole words only. */
|
|
12053
|
+
wholeWord?: boolean;
|
|
12054
|
+
/** Offset for pagination (number of commit results to skip). */
|
|
12055
|
+
offset?: number;
|
|
12056
|
+
}): Promise<GitDiffSearchResult>;
|
|
10980
12057
|
}
|
|
10981
12058
|
/**
|
|
10982
12059
|
* Namespace for managing Git repositories.
|
|
@@ -11925,8 +13002,8 @@ interface CreateSnapshotRequest {
|
|
|
11925
13002
|
aptDeps?: string[] | null;
|
|
11926
13003
|
/**
|
|
11927
13004
|
* 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
|
-
*
|
|
13005
|
+
* The new snapshot still stores the template hash, so it becomes the updated cache entry
|
|
13006
|
+
* for future requests that do not set skip_cache.
|
|
11930
13007
|
*/
|
|
11931
13008
|
skipCache?: boolean | null;
|
|
11932
13009
|
};
|
|
@@ -12775,4 +13852,4 @@ declare class Freestyle {
|
|
|
12775
13852
|
declare const freestyle: Freestyle;
|
|
12776
13853
|
|
|
12777
13854
|
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 };
|
|
13855
|
+
export type { BackgroundRequestLogger, CreateVmOptions, CronSchedule, FreestyleOptions, GitCommitSearchEntry, GitCommitSearchResult, GitDiffFileMatch, GitDiffLineMatch, GitDiffSearchCommit, GitDiffSearchResult, GitFilenameEntry, GitFilenameSearchResult, GitSearchFileResult, GitSearchLineMatch, GitSearchResult, SystemdServiceInput, VmWaitForConfig, VmWithDefaultFieldRecord };
|