metal-stack-api 0.0.3__py3-none-any.whl
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.
- buf/__init__.py +0 -0
- buf/validate/__init__.py +0 -0
- buf/validate/validate_pb2.py +450 -0
- buf/validate/validate_pb2.pyi +631 -0
- buf/validate/validate_pb2_grpc.py +4 -0
- metal_stack_api-0.0.3.dist-info/METADATA +26 -0
- metal_stack_api-0.0.3.dist-info/RECORD +107 -0
- metal_stack_api-0.0.3.dist-info/WHEEL +5 -0
- metal_stack_api-0.0.3.dist-info/top_level.txt +2 -0
- metalstack/__init__.py +0 -0
- metalstack/admin/__init__.py +0 -0
- metalstack/admin/v2/__init__.py +0 -0
- metalstack/admin/v2/filesystem_connecpy.py +214 -0
- metalstack/admin/v2/filesystem_pb2.py +60 -0
- metalstack/admin/v2/filesystem_pb2.pyi +45 -0
- metalstack/admin/v2/filesystem_pb2_grpc.py +169 -0
- metalstack/admin/v2/image_connecpy.py +270 -0
- metalstack/admin/v2/image_pb2.py +66 -0
- metalstack/admin/v2/image_pb2.pyi +58 -0
- metalstack/admin/v2/image_pb2_grpc.py +213 -0
- metalstack/admin/v2/ip_connecpy.py +158 -0
- metalstack/admin/v2/ip_pb2.py +53 -0
- metalstack/admin/v2/ip_pb2.pyi +39 -0
- metalstack/admin/v2/ip_pb2_grpc.py +125 -0
- metalstack/admin/v2/network_connecpy.py +326 -0
- metalstack/admin/v2/network_pb2.py +104 -0
- metalstack/admin/v2/network_pb2.pyi +122 -0
- metalstack/admin/v2/network_pb2_grpc.py +257 -0
- metalstack/admin/v2/partition_connecpy.py +270 -0
- metalstack/admin/v2/partition_pb2.py +72 -0
- metalstack/admin/v2/partition_pb2.pyi +90 -0
- metalstack/admin/v2/partition_pb2_grpc.py +213 -0
- metalstack/admin/v2/size_connecpy.py +214 -0
- metalstack/admin/v2/size_pb2.py +66 -0
- metalstack/admin/v2/size_pb2.pyi +54 -0
- metalstack/admin/v2/size_pb2_grpc.py +169 -0
- metalstack/admin/v2/tenant_connecpy.py +158 -0
- metalstack/admin/v2/tenant_pb2.py +58 -0
- metalstack/admin/v2/tenant_pb2.pyi +50 -0
- metalstack/admin/v2/tenant_pb2_grpc.py +125 -0
- metalstack/admin/v2/token_connecpy.py +158 -0
- metalstack/admin/v2/token_pb2.py +56 -0
- metalstack/admin/v2/token_pb2.pyi +34 -0
- metalstack/admin/v2/token_pb2_grpc.py +125 -0
- metalstack/api/__init__.py +0 -0
- metalstack/api/v2/__init__.py +0 -0
- metalstack/api/v2/common_pb2.py +66 -0
- metalstack/api/v2/common_pb2.pyi +128 -0
- metalstack/api/v2/common_pb2_grpc.py +4 -0
- metalstack/api/v2/filesystem_connecpy.py +270 -0
- metalstack/api/v2/filesystem_pb2.py +167 -0
- metalstack/api/v2/filesystem_pb2.pyi +229 -0
- metalstack/api/v2/filesystem_pb2_grpc.py +213 -0
- metalstack/api/v2/health_connecpy.py +102 -0
- metalstack/api/v2/health_pb2.py +70 -0
- metalstack/api/v2/health_pb2.pyi +80 -0
- metalstack/api/v2/health_pb2_grpc.py +81 -0
- metalstack/api/v2/image_connecpy.py +214 -0
- metalstack/api/v2/image_pb2.py +106 -0
- metalstack/api/v2/image_pb2.pyi +115 -0
- metalstack/api/v2/image_pb2_grpc.py +169 -0
- metalstack/api/v2/ip_connecpy.py +326 -0
- metalstack/api/v2/ip_pb2.py +159 -0
- metalstack/api/v2/ip_pb2.pyi +170 -0
- metalstack/api/v2/ip_pb2_grpc.py +257 -0
- metalstack/api/v2/methods_connecpy.py +158 -0
- metalstack/api/v2/methods_pb2.py +62 -0
- metalstack/api/v2/methods_pb2.pyi +50 -0
- metalstack/api/v2/methods_pb2_grpc.py +128 -0
- metalstack/api/v2/network_connecpy.py +382 -0
- metalstack/api/v2/network_pb2.py +191 -0
- metalstack/api/v2/network_pb2.pyi +247 -0
- metalstack/api/v2/network_pb2_grpc.py +301 -0
- metalstack/api/v2/partition_connecpy.py +158 -0
- metalstack/api/v2/partition_pb2.py +81 -0
- metalstack/api/v2/partition_pb2.pyi +79 -0
- metalstack/api/v2/partition_pb2_grpc.py +125 -0
- metalstack/api/v2/project_connecpy.py +718 -0
- metalstack/api/v2/project_pb2.py +156 -0
- metalstack/api/v2/project_pb2.pyi +230 -0
- metalstack/api/v2/project_pb2_grpc.py +565 -0
- metalstack/api/v2/size_connecpy.py +158 -0
- metalstack/api/v2/size_pb2.py +85 -0
- metalstack/api/v2/size_pb2.pyi +85 -0
- metalstack/api/v2/size_pb2_grpc.py +125 -0
- metalstack/api/v2/tenant_connecpy.py +718 -0
- metalstack/api/v2/tenant_pb2.py +140 -0
- metalstack/api/v2/tenant_pb2.pyi +236 -0
- metalstack/api/v2/tenant_pb2_grpc.py +565 -0
- metalstack/api/v2/token_connecpy.py +326 -0
- metalstack/api/v2/token_pb2.py +143 -0
- metalstack/api/v2/token_pb2.pyi +175 -0
- metalstack/api/v2/token_pb2_grpc.py +257 -0
- metalstack/api/v2/user_connecpy.py +102 -0
- metalstack/api/v2/user_pb2.py +48 -0
- metalstack/api/v2/user_pb2.pyi +38 -0
- metalstack/api/v2/user_pb2_grpc.py +81 -0
- metalstack/api/v2/version_connecpy.py +102 -0
- metalstack/api/v2/version_pb2.py +46 -0
- metalstack/api/v2/version_pb2.pyi +29 -0
- metalstack/api/v2/version_pb2_grpc.py +81 -0
- metalstack/infra/__init__.py +0 -0
- metalstack/infra/v2/__init__.py +0 -0
- metalstack/infra/v2/bmc_connecpy.py +102 -0
- metalstack/infra/v2/bmc_pb2.py +44 -0
- metalstack/infra/v2/bmc_pb2.pyi +14 -0
- metalstack/infra/v2/bmc_pb2_grpc.py +81 -0
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by https://github.com/i2y/connecpy/protoc-gen-connecpy. DO NOT EDIT!
|
|
3
|
+
# source: metalstack/api/v2/filesystem.proto
|
|
4
|
+
|
|
5
|
+
from typing import Optional, Protocol, Union
|
|
6
|
+
|
|
7
|
+
import httpx
|
|
8
|
+
|
|
9
|
+
from connecpy.async_client import AsyncConnecpyClient
|
|
10
|
+
from connecpy.base import Endpoint
|
|
11
|
+
from connecpy.server import ConnecpyServer
|
|
12
|
+
from connecpy.client import ConnecpyClient
|
|
13
|
+
from connecpy.context import ClientContext, ServiceContext
|
|
14
|
+
import metalstack.api.v2.filesystem_pb2 as metalstack_dot_api_dot_v2_dot_filesystem__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class FilesystemService(Protocol):
|
|
18
|
+
async def Get(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse: ...
|
|
19
|
+
async def List(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse: ...
|
|
20
|
+
async def Try(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse: ...
|
|
21
|
+
async def Match(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse: ...
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class FilesystemServiceServer(ConnecpyServer):
|
|
25
|
+
def __init__(self, *, service: FilesystemService, server_path_prefix=""):
|
|
26
|
+
super().__init__()
|
|
27
|
+
self._prefix = f"{server_path_prefix}/metalstack.api.v2.FilesystemService"
|
|
28
|
+
self._endpoints = {
|
|
29
|
+
"Get": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse](
|
|
30
|
+
service_name="FilesystemService",
|
|
31
|
+
name="Get",
|
|
32
|
+
function=getattr(service, "Get"),
|
|
33
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest,
|
|
34
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse,
|
|
35
|
+
allowed_methods=("POST",),
|
|
36
|
+
),
|
|
37
|
+
"List": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse](
|
|
38
|
+
service_name="FilesystemService",
|
|
39
|
+
name="List",
|
|
40
|
+
function=getattr(service, "List"),
|
|
41
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest,
|
|
42
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse,
|
|
43
|
+
allowed_methods=("POST",),
|
|
44
|
+
),
|
|
45
|
+
"Try": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse](
|
|
46
|
+
service_name="FilesystemService",
|
|
47
|
+
name="Try",
|
|
48
|
+
function=getattr(service, "Try"),
|
|
49
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest,
|
|
50
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse,
|
|
51
|
+
allowed_methods=("POST",),
|
|
52
|
+
),
|
|
53
|
+
"Match": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse](
|
|
54
|
+
service_name="FilesystemService",
|
|
55
|
+
name="Match",
|
|
56
|
+
function=getattr(service, "Match"),
|
|
57
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest,
|
|
58
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse,
|
|
59
|
+
allowed_methods=("POST",),
|
|
60
|
+
),
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
def serviceName(self):
|
|
64
|
+
return "metalstack.api.v2.FilesystemService"
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
class FilesystemServiceSync(Protocol):
|
|
68
|
+
def Get(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse: ...
|
|
69
|
+
def List(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse: ...
|
|
70
|
+
def Try(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse: ...
|
|
71
|
+
def Match(self, req: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest, ctx: ServiceContext) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse: ...
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
class FilesystemServiceServerSync(ConnecpyServer):
|
|
75
|
+
def __init__(self, *, service: FilesystemServiceSync, server_path_prefix=""):
|
|
76
|
+
super().__init__()
|
|
77
|
+
self._prefix = f"{server_path_prefix}/metalstack.api.v2.FilesystemService"
|
|
78
|
+
self._endpoints = {
|
|
79
|
+
"Get": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse](
|
|
80
|
+
service_name="FilesystemService",
|
|
81
|
+
name="Get",
|
|
82
|
+
function=getattr(service, "Get"),
|
|
83
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest,
|
|
84
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse,
|
|
85
|
+
allowed_methods=("POST",),
|
|
86
|
+
),
|
|
87
|
+
"List": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse](
|
|
88
|
+
service_name="FilesystemService",
|
|
89
|
+
name="List",
|
|
90
|
+
function=getattr(service, "List"),
|
|
91
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest,
|
|
92
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse,
|
|
93
|
+
allowed_methods=("POST",),
|
|
94
|
+
),
|
|
95
|
+
"Try": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse](
|
|
96
|
+
service_name="FilesystemService",
|
|
97
|
+
name="Try",
|
|
98
|
+
function=getattr(service, "Try"),
|
|
99
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest,
|
|
100
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse,
|
|
101
|
+
allowed_methods=("POST",),
|
|
102
|
+
),
|
|
103
|
+
"Match": Endpoint[metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest, metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse](
|
|
104
|
+
service_name="FilesystemService",
|
|
105
|
+
name="Match",
|
|
106
|
+
function=getattr(service, "Match"),
|
|
107
|
+
input=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest,
|
|
108
|
+
output=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse,
|
|
109
|
+
allowed_methods=("POST",),
|
|
110
|
+
),
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
def serviceName(self):
|
|
114
|
+
return "metalstack.api.v2.FilesystemService"
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
class FilesystemServiceClient(ConnecpyClient):
|
|
118
|
+
def Get(
|
|
119
|
+
self,
|
|
120
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest,
|
|
121
|
+
*,
|
|
122
|
+
ctx: Optional[ClientContext] = None,
|
|
123
|
+
server_path_prefix: str = "",
|
|
124
|
+
**kwargs,
|
|
125
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse:
|
|
126
|
+
method = "POST"
|
|
127
|
+
return self._make_request(
|
|
128
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/Get",
|
|
129
|
+
ctx=ctx,
|
|
130
|
+
request=request,
|
|
131
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse,
|
|
132
|
+
method=method,
|
|
133
|
+
**kwargs,
|
|
134
|
+
)
|
|
135
|
+
|
|
136
|
+
def List(
|
|
137
|
+
self,
|
|
138
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest,
|
|
139
|
+
*,
|
|
140
|
+
ctx: Optional[ClientContext] = None,
|
|
141
|
+
server_path_prefix: str = "",
|
|
142
|
+
**kwargs,
|
|
143
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse:
|
|
144
|
+
method = "POST"
|
|
145
|
+
return self._make_request(
|
|
146
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/List",
|
|
147
|
+
ctx=ctx,
|
|
148
|
+
request=request,
|
|
149
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse,
|
|
150
|
+
method=method,
|
|
151
|
+
**kwargs,
|
|
152
|
+
)
|
|
153
|
+
|
|
154
|
+
def Try(
|
|
155
|
+
self,
|
|
156
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest,
|
|
157
|
+
*,
|
|
158
|
+
ctx: Optional[ClientContext] = None,
|
|
159
|
+
server_path_prefix: str = "",
|
|
160
|
+
**kwargs,
|
|
161
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse:
|
|
162
|
+
method = "POST"
|
|
163
|
+
return self._make_request(
|
|
164
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/Try",
|
|
165
|
+
ctx=ctx,
|
|
166
|
+
request=request,
|
|
167
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse,
|
|
168
|
+
method=method,
|
|
169
|
+
**kwargs,
|
|
170
|
+
)
|
|
171
|
+
|
|
172
|
+
def Match(
|
|
173
|
+
self,
|
|
174
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest,
|
|
175
|
+
*,
|
|
176
|
+
ctx: Optional[ClientContext] = None,
|
|
177
|
+
server_path_prefix: str = "",
|
|
178
|
+
**kwargs,
|
|
179
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse:
|
|
180
|
+
method = "POST"
|
|
181
|
+
return self._make_request(
|
|
182
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/Match",
|
|
183
|
+
ctx=ctx,
|
|
184
|
+
request=request,
|
|
185
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse,
|
|
186
|
+
method=method,
|
|
187
|
+
**kwargs,
|
|
188
|
+
)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
class AsyncFilesystemServiceClient(AsyncConnecpyClient):
|
|
192
|
+
async def Get(
|
|
193
|
+
self,
|
|
194
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetRequest,
|
|
195
|
+
*,
|
|
196
|
+
ctx: Optional[ClientContext] = None,
|
|
197
|
+
server_path_prefix: str = "",
|
|
198
|
+
session: Union[httpx.AsyncClient, None] = None,
|
|
199
|
+
**kwargs,
|
|
200
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse:
|
|
201
|
+
method = "POST"
|
|
202
|
+
return await self._make_request(
|
|
203
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/Get",
|
|
204
|
+
ctx=ctx,
|
|
205
|
+
request=request,
|
|
206
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceGetResponse,
|
|
207
|
+
method=method,
|
|
208
|
+
session=session,
|
|
209
|
+
**kwargs,
|
|
210
|
+
)
|
|
211
|
+
|
|
212
|
+
async def List(
|
|
213
|
+
self,
|
|
214
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListRequest,
|
|
215
|
+
*,
|
|
216
|
+
ctx: Optional[ClientContext] = None,
|
|
217
|
+
server_path_prefix: str = "",
|
|
218
|
+
session: Union[httpx.AsyncClient, None] = None,
|
|
219
|
+
**kwargs,
|
|
220
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse:
|
|
221
|
+
method = "POST"
|
|
222
|
+
return await self._make_request(
|
|
223
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/List",
|
|
224
|
+
ctx=ctx,
|
|
225
|
+
request=request,
|
|
226
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceListResponse,
|
|
227
|
+
method=method,
|
|
228
|
+
session=session,
|
|
229
|
+
**kwargs,
|
|
230
|
+
)
|
|
231
|
+
|
|
232
|
+
async def Try(
|
|
233
|
+
self,
|
|
234
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryRequest,
|
|
235
|
+
*,
|
|
236
|
+
ctx: Optional[ClientContext] = None,
|
|
237
|
+
server_path_prefix: str = "",
|
|
238
|
+
session: Union[httpx.AsyncClient, None] = None,
|
|
239
|
+
**kwargs,
|
|
240
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse:
|
|
241
|
+
method = "POST"
|
|
242
|
+
return await self._make_request(
|
|
243
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/Try",
|
|
244
|
+
ctx=ctx,
|
|
245
|
+
request=request,
|
|
246
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceTryResponse,
|
|
247
|
+
method=method,
|
|
248
|
+
session=session,
|
|
249
|
+
**kwargs,
|
|
250
|
+
)
|
|
251
|
+
|
|
252
|
+
async def Match(
|
|
253
|
+
self,
|
|
254
|
+
request: metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchRequest,
|
|
255
|
+
*,
|
|
256
|
+
ctx: Optional[ClientContext] = None,
|
|
257
|
+
server_path_prefix: str = "",
|
|
258
|
+
session: Union[httpx.AsyncClient, None] = None,
|
|
259
|
+
**kwargs,
|
|
260
|
+
) -> metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse:
|
|
261
|
+
method = "POST"
|
|
262
|
+
return await self._make_request(
|
|
263
|
+
url=f"{server_path_prefix}/metalstack.api.v2.FilesystemService/Match",
|
|
264
|
+
ctx=ctx,
|
|
265
|
+
request=request,
|
|
266
|
+
response_class=metalstack_dot_api_dot_v2_dot_filesystem__pb2.FilesystemServiceMatchResponse,
|
|
267
|
+
method=method,
|
|
268
|
+
session=session,
|
|
269
|
+
**kwargs,
|
|
270
|
+
)
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: metalstack/api/v2/filesystem.proto
|
|
5
|
+
# Protobuf Python Version: 6.31.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
31,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'metalstack/api/v2/filesystem.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from buf.validate import validate_pb2 as buf_dot_validate_dot_validate__pb2
|
|
26
|
+
from metalstack.api.v2 import common_pb2 as metalstack_dot_api_dot_v2_dot_common__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"metalstack/api/v2/filesystem.proto\x12\x11metalstack.api.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1emetalstack/api/v2/common.proto\"9\n\x1b\x46ilesystemServiceGetRequest\x12\x1a\n\x02id\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x02id\"F\n\x1c\x46ilesystemServiceListRequest\x12\x1f\n\x02id\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01H\x00R\x02id\x88\x01\x01\x42\x05\n\x03_id\"p\n\x1c\x46ilesystemServiceGetResponse\x12P\n\x11\x66ilesystem_layout\x18\x01 \x01(\x0b\x32#.metalstack.api.v2.FilesystemLayoutR\x10\x66ilesystemLayout\"s\n\x1d\x46ilesystemServiceListResponse\x12R\n\x12\x66ilesystem_layouts\x18\x01 \x03(\x0b\x32#.metalstack.api.v2.FilesystemLayoutR\x11\x66ilesystemLayouts\"_\n\x1b\x46ilesystemServiceTryRequest\x12\x1e\n\x04size\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x04size\x12 \n\x05image\x18\x02 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x05image\"\x81\x01\n\x1d\x46ilesystemServiceMatchRequest\x12\"\n\x07machine\x18\x01 \x01(\tB\x08\xbaH\x05r\x03\xb0\x01\x01R\x07machine\x12<\n\x14\x66ilesystem_layout_id\x18\x02 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x12\x66ilesystemLayoutId\"p\n\x1c\x46ilesystemServiceTryResponse\x12P\n\x11\x66ilesystem_layout\x18\x01 \x01(\x0b\x32#.metalstack.api.v2.FilesystemLayoutR\x10\x66ilesystemLayout\"r\n\x1e\x46ilesystemServiceMatchResponse\x12P\n\x11\x66ilesystem_layout\x18\x01 \x01(\x0b\x32#.metalstack.api.v2.FilesystemLayoutR\x10\x66ilesystemLayout\"\xcb\x04\n\x10\x46ilesystemLayout\x12\x1a\n\x02id\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x02id\x12+\n\x04meta\x18\x02 \x01(\x0b\x32\x17.metalstack.api.v2.MetaR\x04meta\x12#\n\x04name\x18\x03 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01H\x00R\x04name\x88\x01\x01\x12\x31\n\x0b\x64\x65scription\x18\x04 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01H\x01R\x0b\x64\x65scription\x88\x01\x01\x12?\n\x0b\x66ilesystems\x18\x05 \x03(\x0b\x32\x1d.metalstack.api.v2.FilesystemR\x0b\x66ilesystems\x12-\n\x05\x64isks\x18\x06 \x03(\x0b\x32\x17.metalstack.api.v2.DiskR\x05\x64isks\x12+\n\x04raid\x18\x07 \x03(\x0b\x32\x17.metalstack.api.v2.RaidR\x04raid\x12\x43\n\rvolume_groups\x18\x08 \x03(\x0b\x32\x1e.metalstack.api.v2.VolumeGroupR\x0cvolumeGroups\x12I\n\x0flogical_volumes\x18\t \x03(\x0b\x32 .metalstack.api.v2.LogicalVolumeR\x0elogicalVolumes\x12P\n\x0b\x63onstraints\x18\n \x01(\x0b\x32..metalstack.api.v2.FilesystemLayoutConstraintsR\x0b\x63onstraintsB\x07\n\x05_nameB\x0e\n\x0c_description\"\xc2\x01\n\x1b\x46ilesystemLayoutConstraints\x12\x14\n\x05sizes\x18\x01 \x03(\tR\x05sizes\x12R\n\x06images\x18\x02 \x03(\x0b\x32:.metalstack.api.v2.FilesystemLayoutConstraints.ImagesEntryR\x06images\x1a\x39\n\x0bImagesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\xb6\x03\n\nFilesystem\x12\"\n\x06\x64\x65vice\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x06\x64\x65vice\x12>\n\x06\x66ormat\x18\x02 \x01(\x0e\x32\x19.metalstack.api.v2.FormatB\x0b\xbaH\x08\x82\x01\x02\x10\x01\xc8\x01\x01R\x06\x66ormat\x12#\n\x04name\x18\x03 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01H\x00R\x04name\x88\x01\x01\x12\x31\n\x0b\x64\x65scription\x18\x04 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01H\x01R\x0b\x64\x65scription\x88\x01\x01\x12#\n\x04path\x18\x05 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80 H\x02R\x04path\x88\x01\x01\x12%\n\x05label\x18\x06 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01H\x03R\x05label\x88\x01\x01\x12\x38\n\rmount_options\x18\x07 \x03(\tB\x13\xbaH\x10\x92\x01\r\x10 \x18\x01\"\x07r\x05\x10\x01\x18\x80\x01R\x0cmountOptions\x12:\n\x0e\x63reate_options\x18\x08 \x03(\tB\x13\xbaH\x10\x92\x01\r\x10 \x18\x01\"\x07r\x05\x10\x01\x18\x80\x01R\rcreateOptionsB\x07\n\x05_nameB\x0e\n\x0c_descriptionB\x07\n\x05_pathB\x08\n\x06_label\"\x98\x01\n\x04\x44isk\x12\"\n\x06\x64\x65vice\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x06\x64\x65vice\x12@\n\npartitions\x18\x02 \x03(\x0b\x32 .metalstack.api.v2.DiskPartitionR\npartitions\x12*\n\x11wipe_on_reinstall\x18\x03 \x01(\x08R\x0fwipeOnReinstall\"\xd4\x01\n\x04Raid\x12\x1d\n\narray_name\x18\x01 \x01(\tR\tarrayName\x12\x18\n\x07\x64\x65vices\x18\x02 \x03(\tR\x07\x64\x65vices\x12?\n\x05level\x18\x03 \x01(\x0e\x32\x1c.metalstack.api.v2.RaidLevelB\x0b\xbaH\x08\x82\x01\x02\x10\x01\xc8\x01\x01R\x05level\x12:\n\x0e\x63reate_options\x18\x04 \x03(\tB\x13\xbaH\x10\x92\x01\r\x10 \x18\x01\"\x07r\x05\x10\x01\x18\x80\x01R\rcreateOptions\x12\x16\n\x06spares\x18\x05 \x01(\x05R\x06spares\"\xb6\x01\n\rDiskPartition\x12\x16\n\x06number\x18\x01 \x01(\rR\x06number\x12\x19\n\x05label\x18\x02 \x01(\tH\x00R\x05label\x88\x01\x01\x12\x12\n\x04size\x18\x03 \x01(\x04R\x04size\x12G\n\x08gpt_type\x18\x04 \x01(\x0e\x32\x1a.metalstack.api.v2.GPTTypeB\x0b\xbaH\x08\x82\x01\x02\x10\x01\xc8\x01\x01H\x01R\x07gptType\x88\x01\x01\x42\x08\n\x06_labelB\x0b\n\t_gpt_type\"[\n\x0bVolumeGroup\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x04name\x12\x18\n\x07\x64\x65vices\x18\x02 \x03(\tR\x07\x64\x65vices\x12\x12\n\x04tags\x18\x03 \x03(\tR\x04tags\"\xb3\x01\n\rLogicalVolume\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x04name\x12-\n\x0cvolume_group\x18\x02 \x01(\tB\n\xbaH\x07r\x05\x10\x02\x18\x80\x01R\x0bvolumeGroup\x12\x12\n\x04size\x18\x03 \x01(\x04R\x04size\x12?\n\x08lvm_type\x18\x04 \x01(\x0e\x32\x1a.metalstack.api.v2.LVMTypeB\x08\xbaH\x05\x82\x01\x02\x10\x01R\x07lvmType*\x86\x01\n\x07LVMType\x12\x18\n\x14LVM_TYPE_UNSPECIFIED\x10\x00\x12\x1f\n\x0fLVM_TYPE_LINEAR\x10\x01\x1a\n\x82\xb2\x19\x06linear\x12!\n\x10LVM_TYPE_STRIPED\x10\x02\x1a\x0b\x82\xb2\x19\x07striped\x12\x1d\n\x0eLVM_TYPE_RAID1\x10\x03\x1a\t\x82\xb2\x19\x05raid1*\xc4\x01\n\x06\x46ormat\x12\x16\n\x12\x46ORMAT_UNSPECIFIED\x10\x00\x12\x19\n\x0b\x46ORMAT_VFAT\x10\x01\x1a\x08\x82\xb2\x19\x04vfat\x12\x19\n\x0b\x46ORMAT_EXT3\x10\x02\x1a\x08\x82\xb2\x19\x04\x65xt3\x12\x19\n\x0b\x46ORMAT_EXT4\x10\x03\x1a\x08\x82\xb2\x19\x04\x65xt4\x12\x19\n\x0b\x46ORMAT_SWAP\x10\x04\x1a\x08\x82\xb2\x19\x04swap\x12\x1b\n\x0c\x46ORMAT_TMPFS\x10\x05\x1a\t\x82\xb2\x19\x05tmpfs\x12\x19\n\x0b\x46ORMAT_NONE\x10\x06\x1a\x08\x82\xb2\x19\x04none*\xa3\x01\n\x07GPTType\x12\x18\n\x14GPT_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\rGPT_TYPE_BOOT\x10\x01\x1a\x08\x82\xb2\x19\x04\x65\x66\x30\x30\x12\x1c\n\x0eGPT_TYPE_LINUX\x10\x02\x1a\x08\x82\xb2\x19\x04\x38\x33\x30\x30\x12!\n\x13GPT_TYPE_LINUX_RAID\x10\x03\x1a\x08\x82\xb2\x19\x04\x66\x64\x30\x30\x12 \n\x12GPT_TYPE_LINUX_LVM\x10\x04\x1a\x08\x82\xb2\x19\x04\x38\x65\x30\x30*K\n\tRaidLevel\x12\x1a\n\x16RAID_LEVEL_UNSPECIFIED\x10\x00\x12\x10\n\x0cRAID_LEVEL_0\x10\x01\x12\x10\n\x0cRAID_LEVEL_1\x10\x02\x32\xe4\x03\n\x11\x46ilesystemService\x12p\n\x03Get\x12..metalstack.api.v2.FilesystemServiceGetRequest\x1a/.metalstack.api.v2.FilesystemServiceGetResponse\"\x08\xd8\xf3\x18\x03\xe0\xf3\x18\x02\x12s\n\x04List\x12/.metalstack.api.v2.FilesystemServiceListRequest\x1a\x30.metalstack.api.v2.FilesystemServiceListResponse\"\x08\xd8\xf3\x18\x03\xe0\xf3\x18\x02\x12p\n\x03Try\x12..metalstack.api.v2.FilesystemServiceTryRequest\x1a/.metalstack.api.v2.FilesystemServiceTryResponse\"\x08\xd8\xf3\x18\x03\xe0\xf3\x18\x02\x12v\n\x05Match\x12\x30.metalstack.api.v2.FilesystemServiceMatchRequest\x1a\x31.metalstack.api.v2.FilesystemServiceMatchResponse\"\x08\xd8\xf3\x18\x03\xe0\xf3\x18\x02\x42\xc5\x01\n\x15\x63om.metalstack.api.v2B\x0f\x46ilesystemProtoP\x01Z5github.com/metal-stack/api/go/metalstack/api/v2;apiv2\xa2\x02\x03MAX\xaa\x02\x11Metalstack.Api.V2\xca\x02\x11Metalstack\\Api\\V2\xe2\x02\x1dMetalstack\\Api\\V2\\GPBMetadata\xea\x02\x13Metalstack::Api::V2b\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'metalstack.api.v2.filesystem_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\025com.metalstack.api.v2B\017FilesystemProtoP\001Z5github.com/metal-stack/api/go/metalstack/api/v2;apiv2\242\002\003MAX\252\002\021Metalstack.Api.V2\312\002\021Metalstack\\Api\\V2\342\002\035Metalstack\\Api\\V2\\GPBMetadata\352\002\023Metalstack::Api::V2'
|
|
37
|
+
_globals['_LVMTYPE'].values_by_name["LVM_TYPE_LINEAR"]._loaded_options = None
|
|
38
|
+
_globals['_LVMTYPE'].values_by_name["LVM_TYPE_LINEAR"]._serialized_options = b'\202\262\031\006linear'
|
|
39
|
+
_globals['_LVMTYPE'].values_by_name["LVM_TYPE_STRIPED"]._loaded_options = None
|
|
40
|
+
_globals['_LVMTYPE'].values_by_name["LVM_TYPE_STRIPED"]._serialized_options = b'\202\262\031\007striped'
|
|
41
|
+
_globals['_LVMTYPE'].values_by_name["LVM_TYPE_RAID1"]._loaded_options = None
|
|
42
|
+
_globals['_LVMTYPE'].values_by_name["LVM_TYPE_RAID1"]._serialized_options = b'\202\262\031\005raid1'
|
|
43
|
+
_globals['_FORMAT'].values_by_name["FORMAT_VFAT"]._loaded_options = None
|
|
44
|
+
_globals['_FORMAT'].values_by_name["FORMAT_VFAT"]._serialized_options = b'\202\262\031\004vfat'
|
|
45
|
+
_globals['_FORMAT'].values_by_name["FORMAT_EXT3"]._loaded_options = None
|
|
46
|
+
_globals['_FORMAT'].values_by_name["FORMAT_EXT3"]._serialized_options = b'\202\262\031\004ext3'
|
|
47
|
+
_globals['_FORMAT'].values_by_name["FORMAT_EXT4"]._loaded_options = None
|
|
48
|
+
_globals['_FORMAT'].values_by_name["FORMAT_EXT4"]._serialized_options = b'\202\262\031\004ext4'
|
|
49
|
+
_globals['_FORMAT'].values_by_name["FORMAT_SWAP"]._loaded_options = None
|
|
50
|
+
_globals['_FORMAT'].values_by_name["FORMAT_SWAP"]._serialized_options = b'\202\262\031\004swap'
|
|
51
|
+
_globals['_FORMAT'].values_by_name["FORMAT_TMPFS"]._loaded_options = None
|
|
52
|
+
_globals['_FORMAT'].values_by_name["FORMAT_TMPFS"]._serialized_options = b'\202\262\031\005tmpfs'
|
|
53
|
+
_globals['_FORMAT'].values_by_name["FORMAT_NONE"]._loaded_options = None
|
|
54
|
+
_globals['_FORMAT'].values_by_name["FORMAT_NONE"]._serialized_options = b'\202\262\031\004none'
|
|
55
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_BOOT"]._loaded_options = None
|
|
56
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_BOOT"]._serialized_options = b'\202\262\031\004ef00'
|
|
57
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_LINUX"]._loaded_options = None
|
|
58
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_LINUX"]._serialized_options = b'\202\262\031\0048300'
|
|
59
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_LINUX_RAID"]._loaded_options = None
|
|
60
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_LINUX_RAID"]._serialized_options = b'\202\262\031\004fd00'
|
|
61
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_LINUX_LVM"]._loaded_options = None
|
|
62
|
+
_globals['_GPTTYPE'].values_by_name["GPT_TYPE_LINUX_LVM"]._serialized_options = b'\202\262\031\0048e00'
|
|
63
|
+
_globals['_FILESYSTEMSERVICEGETREQUEST'].fields_by_name['id']._loaded_options = None
|
|
64
|
+
_globals['_FILESYSTEMSERVICEGETREQUEST'].fields_by_name['id']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
65
|
+
_globals['_FILESYSTEMSERVICELISTREQUEST'].fields_by_name['id']._loaded_options = None
|
|
66
|
+
_globals['_FILESYSTEMSERVICELISTREQUEST'].fields_by_name['id']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
67
|
+
_globals['_FILESYSTEMSERVICETRYREQUEST'].fields_by_name['size']._loaded_options = None
|
|
68
|
+
_globals['_FILESYSTEMSERVICETRYREQUEST'].fields_by_name['size']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
69
|
+
_globals['_FILESYSTEMSERVICETRYREQUEST'].fields_by_name['image']._loaded_options = None
|
|
70
|
+
_globals['_FILESYSTEMSERVICETRYREQUEST'].fields_by_name['image']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
71
|
+
_globals['_FILESYSTEMSERVICEMATCHREQUEST'].fields_by_name['machine']._loaded_options = None
|
|
72
|
+
_globals['_FILESYSTEMSERVICEMATCHREQUEST'].fields_by_name['machine']._serialized_options = b'\272H\005r\003\260\001\001'
|
|
73
|
+
_globals['_FILESYSTEMSERVICEMATCHREQUEST'].fields_by_name['filesystem_layout_id']._loaded_options = None
|
|
74
|
+
_globals['_FILESYSTEMSERVICEMATCHREQUEST'].fields_by_name['filesystem_layout_id']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
75
|
+
_globals['_FILESYSTEMLAYOUT'].fields_by_name['id']._loaded_options = None
|
|
76
|
+
_globals['_FILESYSTEMLAYOUT'].fields_by_name['id']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
77
|
+
_globals['_FILESYSTEMLAYOUT'].fields_by_name['name']._loaded_options = None
|
|
78
|
+
_globals['_FILESYSTEMLAYOUT'].fields_by_name['name']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
79
|
+
_globals['_FILESYSTEMLAYOUT'].fields_by_name['description']._loaded_options = None
|
|
80
|
+
_globals['_FILESYSTEMLAYOUT'].fields_by_name['description']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
81
|
+
_globals['_FILESYSTEMLAYOUTCONSTRAINTS_IMAGESENTRY']._loaded_options = None
|
|
82
|
+
_globals['_FILESYSTEMLAYOUTCONSTRAINTS_IMAGESENTRY']._serialized_options = b'8\001'
|
|
83
|
+
_globals['_FILESYSTEM'].fields_by_name['device']._loaded_options = None
|
|
84
|
+
_globals['_FILESYSTEM'].fields_by_name['device']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
85
|
+
_globals['_FILESYSTEM'].fields_by_name['format']._loaded_options = None
|
|
86
|
+
_globals['_FILESYSTEM'].fields_by_name['format']._serialized_options = b'\272H\010\202\001\002\020\001\310\001\001'
|
|
87
|
+
_globals['_FILESYSTEM'].fields_by_name['name']._loaded_options = None
|
|
88
|
+
_globals['_FILESYSTEM'].fields_by_name['name']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
89
|
+
_globals['_FILESYSTEM'].fields_by_name['description']._loaded_options = None
|
|
90
|
+
_globals['_FILESYSTEM'].fields_by_name['description']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
91
|
+
_globals['_FILESYSTEM'].fields_by_name['path']._loaded_options = None
|
|
92
|
+
_globals['_FILESYSTEM'].fields_by_name['path']._serialized_options = b'\272H\007r\005\020\002\030\200 '
|
|
93
|
+
_globals['_FILESYSTEM'].fields_by_name['label']._loaded_options = None
|
|
94
|
+
_globals['_FILESYSTEM'].fields_by_name['label']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
95
|
+
_globals['_FILESYSTEM'].fields_by_name['mount_options']._loaded_options = None
|
|
96
|
+
_globals['_FILESYSTEM'].fields_by_name['mount_options']._serialized_options = b'\272H\020\222\001\r\020 \030\001\"\007r\005\020\001\030\200\001'
|
|
97
|
+
_globals['_FILESYSTEM'].fields_by_name['create_options']._loaded_options = None
|
|
98
|
+
_globals['_FILESYSTEM'].fields_by_name['create_options']._serialized_options = b'\272H\020\222\001\r\020 \030\001\"\007r\005\020\001\030\200\001'
|
|
99
|
+
_globals['_DISK'].fields_by_name['device']._loaded_options = None
|
|
100
|
+
_globals['_DISK'].fields_by_name['device']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
101
|
+
_globals['_RAID'].fields_by_name['level']._loaded_options = None
|
|
102
|
+
_globals['_RAID'].fields_by_name['level']._serialized_options = b'\272H\010\202\001\002\020\001\310\001\001'
|
|
103
|
+
_globals['_RAID'].fields_by_name['create_options']._loaded_options = None
|
|
104
|
+
_globals['_RAID'].fields_by_name['create_options']._serialized_options = b'\272H\020\222\001\r\020 \030\001\"\007r\005\020\001\030\200\001'
|
|
105
|
+
_globals['_DISKPARTITION'].fields_by_name['gpt_type']._loaded_options = None
|
|
106
|
+
_globals['_DISKPARTITION'].fields_by_name['gpt_type']._serialized_options = b'\272H\010\202\001\002\020\001\310\001\001'
|
|
107
|
+
_globals['_VOLUMEGROUP'].fields_by_name['name']._loaded_options = None
|
|
108
|
+
_globals['_VOLUMEGROUP'].fields_by_name['name']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
109
|
+
_globals['_LOGICALVOLUME'].fields_by_name['name']._loaded_options = None
|
|
110
|
+
_globals['_LOGICALVOLUME'].fields_by_name['name']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
111
|
+
_globals['_LOGICALVOLUME'].fields_by_name['volume_group']._loaded_options = None
|
|
112
|
+
_globals['_LOGICALVOLUME'].fields_by_name['volume_group']._serialized_options = b'\272H\007r\005\020\002\030\200\001'
|
|
113
|
+
_globals['_LOGICALVOLUME'].fields_by_name['lvm_type']._loaded_options = None
|
|
114
|
+
_globals['_LOGICALVOLUME'].fields_by_name['lvm_type']._serialized_options = b'\272H\005\202\001\002\020\001'
|
|
115
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['Get']._loaded_options = None
|
|
116
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['Get']._serialized_options = b'\330\363\030\003\340\363\030\002'
|
|
117
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['List']._loaded_options = None
|
|
118
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['List']._serialized_options = b'\330\363\030\003\340\363\030\002'
|
|
119
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['Try']._loaded_options = None
|
|
120
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['Try']._serialized_options = b'\330\363\030\003\340\363\030\002'
|
|
121
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['Match']._loaded_options = None
|
|
122
|
+
_globals['_FILESYSTEMSERVICE'].methods_by_name['Match']._serialized_options = b'\330\363\030\003\340\363\030\002'
|
|
123
|
+
_globals['_LVMTYPE']._serialized_start=2998
|
|
124
|
+
_globals['_LVMTYPE']._serialized_end=3132
|
|
125
|
+
_globals['_FORMAT']._serialized_start=3135
|
|
126
|
+
_globals['_FORMAT']._serialized_end=3331
|
|
127
|
+
_globals['_GPTTYPE']._serialized_start=3334
|
|
128
|
+
_globals['_GPTTYPE']._serialized_end=3497
|
|
129
|
+
_globals['_RAIDLEVEL']._serialized_start=3499
|
|
130
|
+
_globals['_RAIDLEVEL']._serialized_end=3574
|
|
131
|
+
_globals['_FILESYSTEMSERVICEGETREQUEST']._serialized_start=118
|
|
132
|
+
_globals['_FILESYSTEMSERVICEGETREQUEST']._serialized_end=175
|
|
133
|
+
_globals['_FILESYSTEMSERVICELISTREQUEST']._serialized_start=177
|
|
134
|
+
_globals['_FILESYSTEMSERVICELISTREQUEST']._serialized_end=247
|
|
135
|
+
_globals['_FILESYSTEMSERVICEGETRESPONSE']._serialized_start=249
|
|
136
|
+
_globals['_FILESYSTEMSERVICEGETRESPONSE']._serialized_end=361
|
|
137
|
+
_globals['_FILESYSTEMSERVICELISTRESPONSE']._serialized_start=363
|
|
138
|
+
_globals['_FILESYSTEMSERVICELISTRESPONSE']._serialized_end=478
|
|
139
|
+
_globals['_FILESYSTEMSERVICETRYREQUEST']._serialized_start=480
|
|
140
|
+
_globals['_FILESYSTEMSERVICETRYREQUEST']._serialized_end=575
|
|
141
|
+
_globals['_FILESYSTEMSERVICEMATCHREQUEST']._serialized_start=578
|
|
142
|
+
_globals['_FILESYSTEMSERVICEMATCHREQUEST']._serialized_end=707
|
|
143
|
+
_globals['_FILESYSTEMSERVICETRYRESPONSE']._serialized_start=709
|
|
144
|
+
_globals['_FILESYSTEMSERVICETRYRESPONSE']._serialized_end=821
|
|
145
|
+
_globals['_FILESYSTEMSERVICEMATCHRESPONSE']._serialized_start=823
|
|
146
|
+
_globals['_FILESYSTEMSERVICEMATCHRESPONSE']._serialized_end=937
|
|
147
|
+
_globals['_FILESYSTEMLAYOUT']._serialized_start=940
|
|
148
|
+
_globals['_FILESYSTEMLAYOUT']._serialized_end=1527
|
|
149
|
+
_globals['_FILESYSTEMLAYOUTCONSTRAINTS']._serialized_start=1530
|
|
150
|
+
_globals['_FILESYSTEMLAYOUTCONSTRAINTS']._serialized_end=1724
|
|
151
|
+
_globals['_FILESYSTEMLAYOUTCONSTRAINTS_IMAGESENTRY']._serialized_start=1667
|
|
152
|
+
_globals['_FILESYSTEMLAYOUTCONSTRAINTS_IMAGESENTRY']._serialized_end=1724
|
|
153
|
+
_globals['_FILESYSTEM']._serialized_start=1727
|
|
154
|
+
_globals['_FILESYSTEM']._serialized_end=2165
|
|
155
|
+
_globals['_DISK']._serialized_start=2168
|
|
156
|
+
_globals['_DISK']._serialized_end=2320
|
|
157
|
+
_globals['_RAID']._serialized_start=2323
|
|
158
|
+
_globals['_RAID']._serialized_end=2535
|
|
159
|
+
_globals['_DISKPARTITION']._serialized_start=2538
|
|
160
|
+
_globals['_DISKPARTITION']._serialized_end=2720
|
|
161
|
+
_globals['_VOLUMEGROUP']._serialized_start=2722
|
|
162
|
+
_globals['_VOLUMEGROUP']._serialized_end=2813
|
|
163
|
+
_globals['_LOGICALVOLUME']._serialized_start=2816
|
|
164
|
+
_globals['_LOGICALVOLUME']._serialized_end=2995
|
|
165
|
+
_globals['_FILESYSTEMSERVICE']._serialized_start=3577
|
|
166
|
+
_globals['_FILESYSTEMSERVICE']._serialized_end=4061
|
|
167
|
+
# @@protoc_insertion_point(module_scope)
|