@metal-stack/api 0.0.51 → 0.0.52
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/js/metalstack/admin/v2/size_imageconstraint_pb.d.ts +293 -0
- package/js/metalstack/admin/v2/size_imageconstraint_pb.js +68 -0
- package/js/metalstack/admin/v2/size_imageconstraint_pb.ts +345 -0
- package/js/metalstack/api/v2/machine_pb.d.ts +27 -3
- package/js/metalstack/api/v2/machine_pb.js +33 -28
- package/js/metalstack/api/v2/machine_pb.ts +59 -31
- package/js/metalstack/api/v2/size_imageconstraint_pb.d.ts +165 -0
- package/js/metalstack/api/v2/size_imageconstraint_pb.js +42 -0
- package/js/metalstack/api/v2/size_imageconstraint_pb.ts +202 -0
- package/js/metalstack/api/v2/size_pb.js +1 -1
- package/js/metalstack/api/v2/size_pb.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Meta, UpdateMeta } from "../../api/v2/common_pb";
|
|
3
|
+
import type { ImageConstraint, SizeImageConstraint, SizeImageConstraintQuery } from "../../api/v2/size_imageconstraint_pb";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file metalstack/admin/v2/size_imageconstraint.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_metalstack_admin_v2_size_imageconstraint: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* SizeImageConstraintServiceCreateRequest is the request payload for a size image constraint create request
|
|
11
|
+
*
|
|
12
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceCreateRequest
|
|
13
|
+
*/
|
|
14
|
+
export type SizeImageConstraintServiceCreateRequest = Message<"metalstack.admin.v2.SizeImageConstraintServiceCreateRequest"> & {
|
|
15
|
+
/**
|
|
16
|
+
* Size of the constraint
|
|
17
|
+
*
|
|
18
|
+
* @generated from field: string size = 1;
|
|
19
|
+
*/
|
|
20
|
+
size: string;
|
|
21
|
+
/**
|
|
22
|
+
* ImageConstraints to apply to this size
|
|
23
|
+
*
|
|
24
|
+
* @generated from field: repeated metalstack.api.v2.ImageConstraint image_constraints = 2;
|
|
25
|
+
*/
|
|
26
|
+
imageConstraints: ImageConstraint[];
|
|
27
|
+
/**
|
|
28
|
+
* Meta for this size image constraint
|
|
29
|
+
*
|
|
30
|
+
* @generated from field: metalstack.api.v2.Meta meta = 3;
|
|
31
|
+
*/
|
|
32
|
+
meta?: Meta;
|
|
33
|
+
/**
|
|
34
|
+
* Name of this size image constraint
|
|
35
|
+
*
|
|
36
|
+
* @generated from field: optional string name = 4;
|
|
37
|
+
*/
|
|
38
|
+
name?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Description of this size image constraint
|
|
41
|
+
*
|
|
42
|
+
* @generated from field: optional string description = 5;
|
|
43
|
+
*/
|
|
44
|
+
description?: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceCreateRequest.
|
|
48
|
+
* Use `create(SizeImageConstraintServiceCreateRequestSchema)` to create a new message.
|
|
49
|
+
*/
|
|
50
|
+
export declare const SizeImageConstraintServiceCreateRequestSchema: GenMessage<SizeImageConstraintServiceCreateRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* SizeImageConstraintServiceCreateResponse is the response payload for a size image constraint create request
|
|
53
|
+
*
|
|
54
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceCreateResponse
|
|
55
|
+
*/
|
|
56
|
+
export type SizeImageConstraintServiceCreateResponse = Message<"metalstack.admin.v2.SizeImageConstraintServiceCreateResponse"> & {
|
|
57
|
+
/**
|
|
58
|
+
* SizeImageConstraint created
|
|
59
|
+
*
|
|
60
|
+
* @generated from field: metalstack.api.v2.SizeImageConstraint size_image_constraint = 1;
|
|
61
|
+
*/
|
|
62
|
+
sizeImageConstraint?: SizeImageConstraint;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceCreateResponse.
|
|
66
|
+
* Use `create(SizeImageConstraintServiceCreateResponseSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export declare const SizeImageConstraintServiceCreateResponseSchema: GenMessage<SizeImageConstraintServiceCreateResponse>;
|
|
69
|
+
/**
|
|
70
|
+
* SizeImageConstraintServiceUpdateRequest is the request payload for a size image constraint update request
|
|
71
|
+
*
|
|
72
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceUpdateRequest
|
|
73
|
+
*/
|
|
74
|
+
export type SizeImageConstraintServiceUpdateRequest = Message<"metalstack.admin.v2.SizeImageConstraintServiceUpdateRequest"> & {
|
|
75
|
+
/**
|
|
76
|
+
* Size of the image constraint to update
|
|
77
|
+
*
|
|
78
|
+
* @generated from field: string size = 1;
|
|
79
|
+
*/
|
|
80
|
+
size: string;
|
|
81
|
+
/**
|
|
82
|
+
* UpdateMeta contains the timestamp and strategy to be used in this update request
|
|
83
|
+
*
|
|
84
|
+
* @generated from field: metalstack.api.v2.UpdateMeta update_meta = 2;
|
|
85
|
+
*/
|
|
86
|
+
updateMeta?: UpdateMeta;
|
|
87
|
+
/**
|
|
88
|
+
* ImageConstraints to apply to this size
|
|
89
|
+
*
|
|
90
|
+
* @generated from field: repeated metalstack.api.v2.ImageConstraint image_constraints = 3;
|
|
91
|
+
*/
|
|
92
|
+
imageConstraints: ImageConstraint[];
|
|
93
|
+
/**
|
|
94
|
+
* Name of this size image constraint
|
|
95
|
+
*
|
|
96
|
+
* @generated from field: optional string name = 4;
|
|
97
|
+
*/
|
|
98
|
+
name?: string;
|
|
99
|
+
/**
|
|
100
|
+
* Description of this size image constraint
|
|
101
|
+
*
|
|
102
|
+
* @generated from field: optional string description = 5;
|
|
103
|
+
*/
|
|
104
|
+
description?: string;
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceUpdateRequest.
|
|
108
|
+
* Use `create(SizeImageConstraintServiceUpdateRequestSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
export declare const SizeImageConstraintServiceUpdateRequestSchema: GenMessage<SizeImageConstraintServiceUpdateRequest>;
|
|
111
|
+
/**
|
|
112
|
+
* SizeImageConstraintServiceUpdateResponse is the response payload for a size image constraint update request
|
|
113
|
+
*
|
|
114
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceUpdateResponse
|
|
115
|
+
*/
|
|
116
|
+
export type SizeImageConstraintServiceUpdateResponse = Message<"metalstack.admin.v2.SizeImageConstraintServiceUpdateResponse"> & {
|
|
117
|
+
/**
|
|
118
|
+
* SizeImageConstraint updated
|
|
119
|
+
*
|
|
120
|
+
* @generated from field: metalstack.api.v2.SizeImageConstraint size_image_constraint = 1;
|
|
121
|
+
*/
|
|
122
|
+
sizeImageConstraint?: SizeImageConstraint;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceUpdateResponse.
|
|
126
|
+
* Use `create(SizeImageConstraintServiceUpdateResponseSchema)` to create a new message.
|
|
127
|
+
*/
|
|
128
|
+
export declare const SizeImageConstraintServiceUpdateResponseSchema: GenMessage<SizeImageConstraintServiceUpdateResponse>;
|
|
129
|
+
/**
|
|
130
|
+
* SizeImageConstraintServiceDeleteRequest is the request payload for a size image constraint delete request
|
|
131
|
+
*
|
|
132
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceDeleteRequest
|
|
133
|
+
*/
|
|
134
|
+
export type SizeImageConstraintServiceDeleteRequest = Message<"metalstack.admin.v2.SizeImageConstraintServiceDeleteRequest"> & {
|
|
135
|
+
/**
|
|
136
|
+
* Size of the constraint
|
|
137
|
+
*
|
|
138
|
+
* @generated from field: string size = 1;
|
|
139
|
+
*/
|
|
140
|
+
size: string;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceDeleteRequest.
|
|
144
|
+
* Use `create(SizeImageConstraintServiceDeleteRequestSchema)` to create a new message.
|
|
145
|
+
*/
|
|
146
|
+
export declare const SizeImageConstraintServiceDeleteRequestSchema: GenMessage<SizeImageConstraintServiceDeleteRequest>;
|
|
147
|
+
/**
|
|
148
|
+
* SizeImageConstraintServiceDeleteResponse is the response payload for a size image constraint delete request
|
|
149
|
+
*
|
|
150
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceDeleteResponse
|
|
151
|
+
*/
|
|
152
|
+
export type SizeImageConstraintServiceDeleteResponse = Message<"metalstack.admin.v2.SizeImageConstraintServiceDeleteResponse"> & {
|
|
153
|
+
/**
|
|
154
|
+
* SizeImageConstraint deleted
|
|
155
|
+
*
|
|
156
|
+
* @generated from field: metalstack.api.v2.SizeImageConstraint size_image_constraint = 1;
|
|
157
|
+
*/
|
|
158
|
+
sizeImageConstraint?: SizeImageConstraint;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceDeleteResponse.
|
|
162
|
+
* Use `create(SizeImageConstraintServiceDeleteResponseSchema)` to create a new message.
|
|
163
|
+
*/
|
|
164
|
+
export declare const SizeImageConstraintServiceDeleteResponseSchema: GenMessage<SizeImageConstraintServiceDeleteResponse>;
|
|
165
|
+
/**
|
|
166
|
+
* SizeImageConstraintServiceGetRequest is the request payload for a size image constraint get request
|
|
167
|
+
*
|
|
168
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceGetRequest
|
|
169
|
+
*/
|
|
170
|
+
export type SizeImageConstraintServiceGetRequest = Message<"metalstack.admin.v2.SizeImageConstraintServiceGetRequest"> & {
|
|
171
|
+
/**
|
|
172
|
+
* Size of the constraint
|
|
173
|
+
*
|
|
174
|
+
* @generated from field: string size = 1;
|
|
175
|
+
*/
|
|
176
|
+
size: string;
|
|
177
|
+
};
|
|
178
|
+
/**
|
|
179
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceGetRequest.
|
|
180
|
+
* Use `create(SizeImageConstraintServiceGetRequestSchema)` to create a new message.
|
|
181
|
+
*/
|
|
182
|
+
export declare const SizeImageConstraintServiceGetRequestSchema: GenMessage<SizeImageConstraintServiceGetRequest>;
|
|
183
|
+
/**
|
|
184
|
+
* SizeImageConstraintServiceGetResponse is the response payload for a size image constraint get request
|
|
185
|
+
*
|
|
186
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceGetResponse
|
|
187
|
+
*/
|
|
188
|
+
export type SizeImageConstraintServiceGetResponse = Message<"metalstack.admin.v2.SizeImageConstraintServiceGetResponse"> & {
|
|
189
|
+
/**
|
|
190
|
+
* SizeImageConstraint get
|
|
191
|
+
*
|
|
192
|
+
* @generated from field: metalstack.api.v2.SizeImageConstraint size_image_constraint = 1;
|
|
193
|
+
*/
|
|
194
|
+
sizeImageConstraint?: SizeImageConstraint;
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceGetResponse.
|
|
198
|
+
* Use `create(SizeImageConstraintServiceGetResponseSchema)` to create a new message.
|
|
199
|
+
*/
|
|
200
|
+
export declare const SizeImageConstraintServiceGetResponseSchema: GenMessage<SizeImageConstraintServiceGetResponse>;
|
|
201
|
+
/**
|
|
202
|
+
* SizeImageConstraintServiceListRequest is the request payload for a size image constraint list request
|
|
203
|
+
*
|
|
204
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceListRequest
|
|
205
|
+
*/
|
|
206
|
+
export type SizeImageConstraintServiceListRequest = Message<"metalstack.admin.v2.SizeImageConstraintServiceListRequest"> & {
|
|
207
|
+
/**
|
|
208
|
+
* Query for size image constraints
|
|
209
|
+
*
|
|
210
|
+
* @generated from field: metalstack.api.v2.SizeImageConstraintQuery query = 1;
|
|
211
|
+
*/
|
|
212
|
+
query?: SizeImageConstraintQuery;
|
|
213
|
+
};
|
|
214
|
+
/**
|
|
215
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceListRequest.
|
|
216
|
+
* Use `create(SizeImageConstraintServiceListRequestSchema)` to create a new message.
|
|
217
|
+
*/
|
|
218
|
+
export declare const SizeImageConstraintServiceListRequestSchema: GenMessage<SizeImageConstraintServiceListRequest>;
|
|
219
|
+
/**
|
|
220
|
+
* SizeImageConstraintServiceListResponse is the response payload for a size image constraint list request
|
|
221
|
+
*
|
|
222
|
+
* @generated from message metalstack.admin.v2.SizeImageConstraintServiceListResponse
|
|
223
|
+
*/
|
|
224
|
+
export type SizeImageConstraintServiceListResponse = Message<"metalstack.admin.v2.SizeImageConstraintServiceListResponse"> & {
|
|
225
|
+
/**
|
|
226
|
+
* SizeImageConstraints listed
|
|
227
|
+
*
|
|
228
|
+
* @generated from field: repeated metalstack.api.v2.SizeImageConstraint size_image_constraints = 1;
|
|
229
|
+
*/
|
|
230
|
+
sizeImageConstraints: SizeImageConstraint[];
|
|
231
|
+
};
|
|
232
|
+
/**
|
|
233
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceListResponse.
|
|
234
|
+
* Use `create(SizeImageConstraintServiceListResponseSchema)` to create a new message.
|
|
235
|
+
*/
|
|
236
|
+
export declare const SizeImageConstraintServiceListResponseSchema: GenMessage<SizeImageConstraintServiceListResponse>;
|
|
237
|
+
/**
|
|
238
|
+
* SizeImageConstraintService serves size and image constraint related functions
|
|
239
|
+
*
|
|
240
|
+
* @generated from service metalstack.admin.v2.SizeImageConstraintService
|
|
241
|
+
*/
|
|
242
|
+
export declare const SizeImageConstraintService: GenService<{
|
|
243
|
+
/**
|
|
244
|
+
* Create a size image constraint
|
|
245
|
+
*
|
|
246
|
+
* @generated from rpc metalstack.admin.v2.SizeImageConstraintService.Create
|
|
247
|
+
*/
|
|
248
|
+
create: {
|
|
249
|
+
methodKind: "unary";
|
|
250
|
+
input: typeof SizeImageConstraintServiceCreateRequestSchema;
|
|
251
|
+
output: typeof SizeImageConstraintServiceCreateResponseSchema;
|
|
252
|
+
};
|
|
253
|
+
/**
|
|
254
|
+
* Update a size image constraint
|
|
255
|
+
*
|
|
256
|
+
* @generated from rpc metalstack.admin.v2.SizeImageConstraintService.Update
|
|
257
|
+
*/
|
|
258
|
+
update: {
|
|
259
|
+
methodKind: "unary";
|
|
260
|
+
input: typeof SizeImageConstraintServiceUpdateRequestSchema;
|
|
261
|
+
output: typeof SizeImageConstraintServiceUpdateResponseSchema;
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* Delete a size image constraint
|
|
265
|
+
*
|
|
266
|
+
* @generated from rpc metalstack.admin.v2.SizeImageConstraintService.Delete
|
|
267
|
+
*/
|
|
268
|
+
delete: {
|
|
269
|
+
methodKind: "unary";
|
|
270
|
+
input: typeof SizeImageConstraintServiceDeleteRequestSchema;
|
|
271
|
+
output: typeof SizeImageConstraintServiceDeleteResponseSchema;
|
|
272
|
+
};
|
|
273
|
+
/**
|
|
274
|
+
* Get a size image constraint
|
|
275
|
+
*
|
|
276
|
+
* @generated from rpc metalstack.admin.v2.SizeImageConstraintService.Get
|
|
277
|
+
*/
|
|
278
|
+
get: {
|
|
279
|
+
methodKind: "unary";
|
|
280
|
+
input: typeof SizeImageConstraintServiceGetRequestSchema;
|
|
281
|
+
output: typeof SizeImageConstraintServiceGetResponseSchema;
|
|
282
|
+
};
|
|
283
|
+
/**
|
|
284
|
+
* List a size image constraint
|
|
285
|
+
*
|
|
286
|
+
* @generated from rpc metalstack.admin.v2.SizeImageConstraintService.List
|
|
287
|
+
*/
|
|
288
|
+
list: {
|
|
289
|
+
methodKind: "unary";
|
|
290
|
+
input: typeof SizeImageConstraintServiceListRequestSchema;
|
|
291
|
+
output: typeof SizeImageConstraintServiceListResponseSchema;
|
|
292
|
+
};
|
|
293
|
+
}>;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file metalstack/admin/v2/size_imageconstraint.proto (package metalstack.admin.v2, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_buf_validate_validate } from "../../../buf/validate/validate_pb";
|
|
6
|
+
import { file_metalstack_api_v2_common } from "../../api/v2/common_pb";
|
|
7
|
+
import { file_metalstack_api_v2_predefined_rules } from "../../api/v2/predefined_rules_pb";
|
|
8
|
+
import { file_metalstack_api_v2_size_imageconstraint } from "../../api/v2/size_imageconstraint_pb";
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file metalstack/admin/v2/size_imageconstraint.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_metalstack_admin_v2_size_imageconstraint = /*@__PURE__*/ fileDesc("Ci5tZXRhbHN0YWNrL2FkbWluL3YyL3NpemVfaW1hZ2Vjb25zdHJhaW50LnByb3RvEhNtZXRhbHN0YWNrLmFkbWluLnYyIooCCidTaXplSW1hZ2VDb25zdHJhaW50U2VydmljZUNyZWF0ZVJlcXVlc3QSGQoEc2l6ZRgBIAEoCUILukgIcgbAs66xAgESPQoRaW1hZ2VfY29uc3RyYWludHMYAiADKAsyIi5tZXRhbHN0YWNrLmFwaS52Mi5JbWFnZUNvbnN0cmFpbnQSJQoEbWV0YRgDIAEoCzIXLm1ldGFsc3RhY2suYXBpLnYyLk1ldGESHgoEbmFtZRgEIAEoCUILukgIcgbAs66xAgFIAIgBARIlCgtkZXNjcmlwdGlvbhgFIAEoCUILukgIcgbIs66xAgFIAYgBAUIHCgVfbmFtZUIOCgxfZGVzY3JpcHRpb24icQooU2l6ZUltYWdlQ29uc3RyYWludFNlcnZpY2VDcmVhdGVSZXNwb25zZRJFChVzaXplX2ltYWdlX2NvbnN0cmFpbnQYASABKAsyJi5tZXRhbHN0YWNrLmFwaS52Mi5TaXplSW1hZ2VDb25zdHJhaW50Ip8CCidTaXplSW1hZ2VDb25zdHJhaW50U2VydmljZVVwZGF0ZVJlcXVlc3QSGQoEc2l6ZRgBIAEoCUILukgIcgbAs66xAgESOgoLdXBkYXRlX21ldGEYAiABKAsyHS5tZXRhbHN0YWNrLmFwaS52Mi5VcGRhdGVNZXRhQga6SAPIAQESPQoRaW1hZ2VfY29uc3RyYWludHMYAyADKAsyIi5tZXRhbHN0YWNrLmFwaS52Mi5JbWFnZUNvbnN0cmFpbnQSHgoEbmFtZRgEIAEoCUILukgIcgbAs66xAgFIAIgBARIlCgtkZXNjcmlwdGlvbhgFIAEoCUILukgIcgbIs66xAgFIAYgBAUIHCgVfbmFtZUIOCgxfZGVzY3JpcHRpb24icQooU2l6ZUltYWdlQ29uc3RyYWludFNlcnZpY2VVcGRhdGVSZXNwb25zZRJFChVzaXplX2ltYWdlX2NvbnN0cmFpbnQYASABKAsyJi5tZXRhbHN0YWNrLmFwaS52Mi5TaXplSW1hZ2VDb25zdHJhaW50IkQKJ1NpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlRGVsZXRlUmVxdWVzdBIZCgRzaXplGAEgASgJQgu6SAhyBsCzrrECASJxCihTaXplSW1hZ2VDb25zdHJhaW50U2VydmljZURlbGV0ZVJlc3BvbnNlEkUKFXNpemVfaW1hZ2VfY29uc3RyYWludBgBIAEoCzImLm1ldGFsc3RhY2suYXBpLnYyLlNpemVJbWFnZUNvbnN0cmFpbnQiQQokU2l6ZUltYWdlQ29uc3RyYWludFNlcnZpY2VHZXRSZXF1ZXN0EhkKBHNpemUYASABKAlCC7pICHIGwLOusQIBIm4KJVNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlR2V0UmVzcG9uc2USRQoVc2l6ZV9pbWFnZV9jb25zdHJhaW50GAEgASgLMiYubWV0YWxzdGFjay5hcGkudjIuU2l6ZUltYWdlQ29uc3RyYWludCJjCiVTaXplSW1hZ2VDb25zdHJhaW50U2VydmljZUxpc3RSZXF1ZXN0EjoKBXF1ZXJ5GAEgASgLMisubWV0YWxzdGFjay5hcGkudjIuU2l6ZUltYWdlQ29uc3RyYWludFF1ZXJ5InAKJlNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlTGlzdFJlc3BvbnNlEkYKFnNpemVfaW1hZ2VfY29uc3RyYWludHMYASADKAsyJi5tZXRhbHN0YWNrLmFwaS52Mi5TaXplSW1hZ2VDb25zdHJhaW50Mu4FChpTaXplSW1hZ2VDb25zdHJhaW50U2VydmljZRKQAQoGQ3JlYXRlEjwubWV0YWxzdGFjay5hZG1pbi52Mi5TaXplSW1hZ2VDb25zdHJhaW50U2VydmljZUNyZWF0ZVJlcXVlc3QaPS5tZXRhbHN0YWNrLmFkbWluLnYyLlNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlQ3JlYXRlUmVzcG9uc2UiCdLzGAEB4PMYARKQAQoGVXBkYXRlEjwubWV0YWxzdGFjay5hZG1pbi52Mi5TaXplSW1hZ2VDb25zdHJhaW50U2VydmljZVVwZGF0ZVJlcXVlc3QaPS5tZXRhbHN0YWNrLmFkbWluLnYyLlNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlVXBkYXRlUmVzcG9uc2UiCdLzGAEB4PMYARKQAQoGRGVsZXRlEjwubWV0YWxzdGFjay5hZG1pbi52Mi5TaXplSW1hZ2VDb25zdHJhaW50U2VydmljZURlbGV0ZVJlcXVlc3QaPS5tZXRhbHN0YWNrLmFkbWluLnYyLlNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlRGVsZXRlUmVzcG9uc2UiCdLzGAEB4PMYARKIAQoDR2V0EjkubWV0YWxzdGFjay5hZG1pbi52Mi5TaXplSW1hZ2VDb25zdHJhaW50U2VydmljZUdldFJlcXVlc3QaOi5tZXRhbHN0YWNrLmFkbWluLnYyLlNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlR2V0UmVzcG9uc2UiCtLzGAIBAuDzGAISiwEKBExpc3QSOi5tZXRhbHN0YWNrLmFkbWluLnYyLlNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlTGlzdFJlcXVlc3QaOy5tZXRhbHN0YWNrLmFkbWluLnYyLlNpemVJbWFnZUNvbnN0cmFpbnRTZXJ2aWNlTGlzdFJlc3BvbnNlIgrS8xgCAQLg8xgCQtwBChdjb20ubWV0YWxzdGFjay5hZG1pbi52MkIYU2l6ZUltYWdlY29uc3RyYWludFByb3RvUAFaOWdpdGh1Yi5jb20vbWV0YWwtc3RhY2svYXBpL2dvL21ldGFsc3RhY2svYWRtaW4vdjI7YWRtaW52MqICA01BWKoCE01ldGFsc3RhY2suQWRtaW4uVjLKAhNNZXRhbHN0YWNrXEFkbWluXFYy4gIfTWV0YWxzdGFja1xBZG1pblxWMlxHUEJNZXRhZGF0YeoCFU1ldGFsc3RhY2s6OkFkbWluOjpWMmIGcHJvdG8z", [file_buf_validate_validate, file_metalstack_api_v2_common, file_metalstack_api_v2_predefined_rules, file_metalstack_api_v2_size_imageconstraint]);
|
|
13
|
+
/**
|
|
14
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceCreateRequest.
|
|
15
|
+
* Use `create(SizeImageConstraintServiceCreateRequestSchema)` to create a new message.
|
|
16
|
+
*/
|
|
17
|
+
export const SizeImageConstraintServiceCreateRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 0);
|
|
18
|
+
/**
|
|
19
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceCreateResponse.
|
|
20
|
+
* Use `create(SizeImageConstraintServiceCreateResponseSchema)` to create a new message.
|
|
21
|
+
*/
|
|
22
|
+
export const SizeImageConstraintServiceCreateResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 1);
|
|
23
|
+
/**
|
|
24
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceUpdateRequest.
|
|
25
|
+
* Use `create(SizeImageConstraintServiceUpdateRequestSchema)` to create a new message.
|
|
26
|
+
*/
|
|
27
|
+
export const SizeImageConstraintServiceUpdateRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 2);
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceUpdateResponse.
|
|
30
|
+
* Use `create(SizeImageConstraintServiceUpdateResponseSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export const SizeImageConstraintServiceUpdateResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 3);
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceDeleteRequest.
|
|
35
|
+
* Use `create(SizeImageConstraintServiceDeleteRequestSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export const SizeImageConstraintServiceDeleteRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 4);
|
|
38
|
+
/**
|
|
39
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceDeleteResponse.
|
|
40
|
+
* Use `create(SizeImageConstraintServiceDeleteResponseSchema)` to create a new message.
|
|
41
|
+
*/
|
|
42
|
+
export const SizeImageConstraintServiceDeleteResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 5);
|
|
43
|
+
/**
|
|
44
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceGetRequest.
|
|
45
|
+
* Use `create(SizeImageConstraintServiceGetRequestSchema)` to create a new message.
|
|
46
|
+
*/
|
|
47
|
+
export const SizeImageConstraintServiceGetRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 6);
|
|
48
|
+
/**
|
|
49
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceGetResponse.
|
|
50
|
+
* Use `create(SizeImageConstraintServiceGetResponseSchema)` to create a new message.
|
|
51
|
+
*/
|
|
52
|
+
export const SizeImageConstraintServiceGetResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 7);
|
|
53
|
+
/**
|
|
54
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceListRequest.
|
|
55
|
+
* Use `create(SizeImageConstraintServiceListRequestSchema)` to create a new message.
|
|
56
|
+
*/
|
|
57
|
+
export const SizeImageConstraintServiceListRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 8);
|
|
58
|
+
/**
|
|
59
|
+
* Describes the message metalstack.admin.v2.SizeImageConstraintServiceListResponse.
|
|
60
|
+
* Use `create(SizeImageConstraintServiceListResponseSchema)` to create a new message.
|
|
61
|
+
*/
|
|
62
|
+
export const SizeImageConstraintServiceListResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_admin_v2_size_imageconstraint, 9);
|
|
63
|
+
/**
|
|
64
|
+
* SizeImageConstraintService serves size and image constraint related functions
|
|
65
|
+
*
|
|
66
|
+
* @generated from service metalstack.admin.v2.SizeImageConstraintService
|
|
67
|
+
*/
|
|
68
|
+
export const SizeImageConstraintService = /*@__PURE__*/ serviceDesc(file_metalstack_admin_v2_size_imageconstraint, 0);
|