|
6 | 6 | from .types import ListServerPrivateNetworksRequestOrderBy |
7 | 7 | from .types import ListServersRequestOrderBy |
8 | 8 | from .types import RunnerConfigurationProvider |
| 9 | +from .types import RunnerConfigurationV2Provider |
| 10 | +from .types import RunnerStatus |
| 11 | +from .content import RUNNER_TRANSIENT_STATUSES |
9 | 12 | from .types import ServerPrivateNetworkServerStatus |
10 | 13 | from .content import SERVER_PRIVATE_NETWORK_SERVER_TRANSIENT_STATUSES |
11 | 14 | from .types import ServerPrivateNetworkStatus |
|
14 | 17 | from .content import SERVER_TRANSIENT_STATUSES |
15 | 18 | from .types import ServerTypeStock |
16 | 19 | from .types import OSSupportedServerType |
| 20 | +from .types import GithubRunnerConfiguration |
| 21 | +from .types import GitlabRunnerConfiguration |
17 | 22 | from .types import Commitment |
18 | 23 | from .types import OS |
19 | 24 | from .types import RunnerConfiguration |
| 25 | +from .types import RunnerConfigurationV2 |
20 | 26 | from .types import ServerTypeCPU |
21 | 27 | from .types import ServerTypeDisk |
22 | 28 | from .types import ServerTypeGPU |
|
26 | 32 | from .types import BatchCreateServersRequestBatchInnerCreateServerRequest |
27 | 33 | from .types import Server |
28 | 34 | from .types import ConnectivityDiagnosticServerHealth |
| 35 | +from .types import AppliedRunnerConfigurations |
| 36 | +from .types import Runner |
29 | 37 | from .types import ServerPrivateNetwork |
30 | 38 | from .types import ServerType |
31 | 39 | from .types import CommitmentTypeValue |
32 | 40 | from .types import BatchCreateServersRequest |
33 | 41 | from .types import BatchCreateServersResponse |
34 | 42 | from .types import ConnectivityDiagnostic |
| 43 | +from .types import CreateRunnerRequest |
35 | 44 | from .types import CreateServerRequest |
| 45 | +from .types import DeleteRunnerRequest |
36 | 46 | from .types import DeleteServerRequest |
37 | 47 | from .types import GetConnectivityDiagnosticRequest |
38 | 48 | from .types import GetOSRequest |
| 49 | +from .types import GetRunnerRequest |
39 | 50 | from .types import GetServerRequest |
40 | 51 | from .types import GetServerTypeRequest |
41 | 52 | from .types import ListOSRequest |
42 | 53 | from .types import ListOSResponse |
| 54 | +from .types import ListRunnersRequest |
| 55 | +from .types import ListRunnersResponse |
43 | 56 | from .types import ListServerPrivateNetworksResponse |
44 | 57 | from .types import ListServerTypesRequest |
45 | 58 | from .types import ListServerTypesResponse |
|
55 | 68 | from .types import SetServerPrivateNetworksResponse |
56 | 69 | from .types import StartConnectivityDiagnosticRequest |
57 | 70 | from .types import StartConnectivityDiagnosticResponse |
| 71 | +from .types import UpdateRunnerRequest |
58 | 72 | from .types import UpdateServerRequest |
59 | 73 | from .api import ApplesiliconV1Alpha1API |
60 | 74 | from .api import ApplesiliconV1Alpha1PrivateNetworkAPI |
|
66 | 80 | "ListServerPrivateNetworksRequestOrderBy", |
67 | 81 | "ListServersRequestOrderBy", |
68 | 82 | "RunnerConfigurationProvider", |
| 83 | + "RunnerConfigurationV2Provider", |
| 84 | + "RunnerStatus", |
| 85 | + "RUNNER_TRANSIENT_STATUSES", |
69 | 86 | "ServerPrivateNetworkServerStatus", |
70 | 87 | "SERVER_PRIVATE_NETWORK_SERVER_TRANSIENT_STATUSES", |
71 | 88 | "ServerPrivateNetworkStatus", |
|
74 | 91 | "SERVER_TRANSIENT_STATUSES", |
75 | 92 | "ServerTypeStock", |
76 | 93 | "OSSupportedServerType", |
| 94 | + "GithubRunnerConfiguration", |
| 95 | + "GitlabRunnerConfiguration", |
77 | 96 | "Commitment", |
78 | 97 | "OS", |
79 | 98 | "RunnerConfiguration", |
| 99 | + "RunnerConfigurationV2", |
80 | 100 | "ServerTypeCPU", |
81 | 101 | "ServerTypeDisk", |
82 | 102 | "ServerTypeGPU", |
|
86 | 106 | "BatchCreateServersRequestBatchInnerCreateServerRequest", |
87 | 107 | "Server", |
88 | 108 | "ConnectivityDiagnosticServerHealth", |
| 109 | + "AppliedRunnerConfigurations", |
| 110 | + "Runner", |
89 | 111 | "ServerPrivateNetwork", |
90 | 112 | "ServerType", |
91 | 113 | "CommitmentTypeValue", |
92 | 114 | "BatchCreateServersRequest", |
93 | 115 | "BatchCreateServersResponse", |
94 | 116 | "ConnectivityDiagnostic", |
| 117 | + "CreateRunnerRequest", |
95 | 118 | "CreateServerRequest", |
| 119 | + "DeleteRunnerRequest", |
96 | 120 | "DeleteServerRequest", |
97 | 121 | "GetConnectivityDiagnosticRequest", |
98 | 122 | "GetOSRequest", |
| 123 | + "GetRunnerRequest", |
99 | 124 | "GetServerRequest", |
100 | 125 | "GetServerTypeRequest", |
101 | 126 | "ListOSRequest", |
102 | 127 | "ListOSResponse", |
| 128 | + "ListRunnersRequest", |
| 129 | + "ListRunnersResponse", |
103 | 130 | "ListServerPrivateNetworksResponse", |
104 | 131 | "ListServerTypesRequest", |
105 | 132 | "ListServerTypesResponse", |
|
115 | 142 | "SetServerPrivateNetworksResponse", |
116 | 143 | "StartConnectivityDiagnosticRequest", |
117 | 144 | "StartConnectivityDiagnosticResponse", |
| 145 | + "UpdateRunnerRequest", |
118 | 146 | "UpdateServerRequest", |
119 | 147 | "ApplesiliconV1Alpha1API", |
120 | 148 | "ApplesiliconV1Alpha1PrivateNetworkAPI", |
|
0 commit comments