@metal-stack/api 0.2.5 → 0.3.0
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/buf/validate/validate_pb.d.ts +23 -17
- package/js/buf/validate/validate_pb.js +1 -1
- package/js/buf/validate/validate_pb.ts +23 -17
- package/js/metalstack/admin/v2/tenant_pb.d.ts +17 -3
- package/js/metalstack/admin/v2/tenant_pb.js +1 -1
- package/js/metalstack/admin/v2/tenant_pb.ts +14 -2
- package/js/metalstack/api/v2/machine_pb.d.ts +29 -17
- package/js/metalstack/api/v2/machine_pb.js +1 -1
- package/js/metalstack/api/v2/machine_pb.ts +32 -18
- package/js/metalstack/api/v2/predefined_rules_pb.d.ts +18 -0
- package/js/metalstack/api/v2/predefined_rules_pb.js +19 -1
- package/js/metalstack/api/v2/predefined_rules_pb.ts +25 -1
- package/js/metalstack/api/v2/project_pb.d.ts +58 -0
- package/js/metalstack/api/v2/project_pb.js +19 -9
- package/js/metalstack/api/v2/project_pb.ts +75 -9
- package/js/metalstack/api/v2/switch_pb.d.ts +24 -12
- package/js/metalstack/api/v2/switch_pb.js +1 -1
- package/js/metalstack/api/v2/switch_pb.ts +27 -13
- package/js/metalstack/api/v2/tenant_pb.d.ts +66 -1
- package/js/metalstack/api/v2/tenant_pb.js +13 -3
- package/js/metalstack/api/v2/tenant_pb.ts +75 -3
- package/js/metalstack/api/v2/token_pb.d.ts +2 -0
- package/js/metalstack/api/v2/token_pb.js +1 -1
- package/js/metalstack/api/v2/token_pb.ts +3 -1
- package/package.json +1 -1
|
@@ -1549,7 +1549,7 @@ export type UInt64Rules = Message<"buf.validate.UInt64Rules"> & {
|
|
|
1549
1549
|
* message MyUInt64 {
|
|
1550
1550
|
* uint64 value = 1 [
|
|
1551
1551
|
* (buf.validate.field).uint64.example = 1,
|
|
1552
|
-
* (buf.validate.field).uint64.example =
|
|
1552
|
+
* (buf.validate.field).uint64.example = 10
|
|
1553
1553
|
* ];
|
|
1554
1554
|
* }
|
|
1555
1555
|
* ```
|
|
@@ -2618,8 +2618,8 @@ export type BoolRules = Message<"buf.validate.BoolRules"> & {
|
|
|
2618
2618
|
* ```proto
|
|
2619
2619
|
* message MyBool {
|
|
2620
2620
|
* bool value = 1 [
|
|
2621
|
-
* (buf.validate.field).bool.example =
|
|
2622
|
-
* (buf.validate.field).bool.example =
|
|
2621
|
+
* (buf.validate.field).bool.example = true,
|
|
2622
|
+
* (buf.validate.field).bool.example = false
|
|
2623
2623
|
* ];
|
|
2624
2624
|
* }
|
|
2625
2625
|
* ```
|
|
@@ -2833,7 +2833,7 @@ export type StringRules = Message<"buf.validate.StringRules"> & {
|
|
|
2833
2833
|
* ```proto
|
|
2834
2834
|
* message MyString {
|
|
2835
2835
|
* // must be in list ["apple", "banana"]
|
|
2836
|
-
* string value = 1 [(buf.validate.field).string
|
|
2836
|
+
* string value = 1 [(buf.validate.field).string = { in: ["apple", "banana"] }];
|
|
2837
2837
|
* }
|
|
2838
2838
|
* ```
|
|
2839
2839
|
*
|
|
@@ -2847,7 +2847,7 @@ export type StringRules = Message<"buf.validate.StringRules"> & {
|
|
|
2847
2847
|
* ```proto
|
|
2848
2848
|
* message MyString {
|
|
2849
2849
|
* // value must not be in list ["orange", "grape"]
|
|
2850
|
-
* string value = 1 [(buf.validate.field).string
|
|
2850
|
+
* string value = 1 [(buf.validate.field).string = { not_in: ["orange", "grape"] }];
|
|
2851
2851
|
* }
|
|
2852
2852
|
* ```
|
|
2853
2853
|
*
|
|
@@ -3491,7 +3491,7 @@ export type BytesRules = Message<"buf.validate.BytesRules"> & {
|
|
|
3491
3491
|
* ```proto
|
|
3492
3492
|
* message MyBytes {
|
|
3493
3493
|
* // value must in ["\x01\x02", "\x02\x03", "\x03\x04"]
|
|
3494
|
-
* optional bytes value = 1 [(buf.validate.field).bytes
|
|
3494
|
+
* optional bytes value = 1 [(buf.validate.field).bytes = { in: ["\x01\x02", "\x02\x03", "\x03\x04"] }];
|
|
3495
3495
|
* }
|
|
3496
3496
|
* ```
|
|
3497
3497
|
*
|
|
@@ -3507,7 +3507,7 @@ export type BytesRules = Message<"buf.validate.BytesRules"> & {
|
|
|
3507
3507
|
* ```proto
|
|
3508
3508
|
* message MyBytes {
|
|
3509
3509
|
* // value must not in ["\x01\x02", "\x02\x03", "\x03\x04"]
|
|
3510
|
-
* optional bytes value = 1 [(buf.validate.field).bytes
|
|
3510
|
+
* optional bytes value = 1 [(buf.validate.field).bytes = { not_in: ["\x01\x02", "\x02\x03", "\x03\x04"] }];
|
|
3511
3511
|
* }
|
|
3512
3512
|
* ```
|
|
3513
3513
|
*
|
|
@@ -3713,8 +3713,10 @@ export type EnumRules = Message<"buf.validate.EnumRules"> & {
|
|
|
3713
3713
|
* }
|
|
3714
3714
|
*
|
|
3715
3715
|
* message MyMessage {
|
|
3716
|
+
* MyEnum value = 1 [
|
|
3716
3717
|
* (buf.validate.field).enum.example = 1,
|
|
3717
3718
|
* (buf.validate.field).enum.example = 2
|
|
3719
|
+
* ];
|
|
3718
3720
|
* }
|
|
3719
3721
|
* ```
|
|
3720
3722
|
*
|
|
@@ -3948,7 +3950,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
3948
3950
|
* ```proto
|
|
3949
3951
|
* message MyDuration {
|
|
3950
3952
|
* // value must equal 5s
|
|
3951
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.const =
|
|
3953
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.const = { seconds: 5 }];
|
|
3952
3954
|
* }
|
|
3953
3955
|
* ```
|
|
3954
3956
|
*
|
|
@@ -3967,7 +3969,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
3967
3969
|
* ```proto
|
|
3968
3970
|
* message MyDuration {
|
|
3969
3971
|
* // must be less than 5s
|
|
3970
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lt =
|
|
3972
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lt = { seconds: 5 }];
|
|
3971
3973
|
* }
|
|
3972
3974
|
* ```
|
|
3973
3975
|
*
|
|
@@ -3984,7 +3986,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
3984
3986
|
* ```proto
|
|
3985
3987
|
* message MyDuration {
|
|
3986
3988
|
* // must be less than or equal to 10s
|
|
3987
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lte =
|
|
3989
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lte = { seconds: 10 }];
|
|
3988
3990
|
* }
|
|
3989
3991
|
* ```
|
|
3990
3992
|
*
|
|
@@ -4061,7 +4063,9 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4061
4063
|
* ```proto
|
|
4062
4064
|
* message MyDuration {
|
|
4063
4065
|
* // must be in list [1s, 2s, 3s]
|
|
4064
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration
|
|
4066
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration = {
|
|
4067
|
+
* in: [{ seconds: 1 }, { seconds: 2 }, { seconds: 3 }]
|
|
4068
|
+
* }];
|
|
4065
4069
|
* }
|
|
4066
4070
|
* ```
|
|
4067
4071
|
*
|
|
@@ -4077,7 +4081,9 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4077
4081
|
* ```proto
|
|
4078
4082
|
* message MyDuration {
|
|
4079
4083
|
* // value must not be in list [1s, 2s, 3s]
|
|
4080
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration
|
|
4084
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration = {
|
|
4085
|
+
* not_in: [{ seconds: 1 }, { seconds: 2 }, { seconds: 3 }]
|
|
4086
|
+
* }];
|
|
4081
4087
|
* }
|
|
4082
4088
|
* ```
|
|
4083
4089
|
*
|
|
@@ -4093,7 +4099,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4093
4099
|
* message MyDuration {
|
|
4094
4100
|
* google.protobuf.Duration value = 1 [
|
|
4095
4101
|
* (buf.validate.field).duration.example = { seconds: 1 },
|
|
4096
|
-
* (buf.validate.field).duration.example = { seconds: 2 }
|
|
4102
|
+
* (buf.validate.field).duration.example = { seconds: 2 }
|
|
4097
4103
|
* ];
|
|
4098
4104
|
* }
|
|
4099
4105
|
* ```
|
|
@@ -4177,7 +4183,7 @@ export type FieldMaskRules = Message<"buf.validate.FieldMaskRules"> & {
|
|
|
4177
4183
|
* message MyFieldMask {
|
|
4178
4184
|
* google.protobuf.FieldMask value = 1 [
|
|
4179
4185
|
* (buf.validate.field).field_mask.example = { paths: ["a", "b"] },
|
|
4180
|
-
* (buf.validate.field).field_mask.example = { paths: ["c.a", "d"] }
|
|
4186
|
+
* (buf.validate.field).field_mask.example = { paths: ["c.a", "d"] }
|
|
4181
4187
|
* ];
|
|
4182
4188
|
* }
|
|
4183
4189
|
* ```
|
|
@@ -4356,7 +4362,7 @@ export type TimestampRules = Message<"buf.validate.TimestampRules"> & {
|
|
|
4356
4362
|
* message MyTimestamp {
|
|
4357
4363
|
* google.protobuf.Timestamp value = 1 [
|
|
4358
4364
|
* (buf.validate.field).timestamp.example = { seconds: 1672444800 },
|
|
4359
|
-
* (buf.validate.field).timestamp.example = { seconds: 1672531200 }
|
|
4365
|
+
* (buf.validate.field).timestamp.example = { seconds: 1672531200 }
|
|
4360
4366
|
* ];
|
|
4361
4367
|
* }
|
|
4362
4368
|
* ```
|
|
@@ -4475,7 +4481,7 @@ export type Violation = Message<"buf.validate.Violation"> & {
|
|
|
4475
4481
|
* bool b = 2 [(buf.validate.field).cel = {
|
|
4476
4482
|
* id: "custom_rule",
|
|
4477
4483
|
* expression: "!this ? 'b must be true': ''"
|
|
4478
|
-
* }]
|
|
4484
|
+
* }];
|
|
4479
4485
|
* }
|
|
4480
4486
|
* ```
|
|
4481
4487
|
*
|
|
@@ -4810,7 +4816,7 @@ export declare const field: GenExtension<FieldOptions, FieldRules>;
|
|
|
4810
4816
|
*
|
|
4811
4817
|
* ```proto
|
|
4812
4818
|
* extend buf.validate.Int32Rules {
|
|
4813
|
-
* bool is_zero [(buf.validate.predefined).cel = {
|
|
4819
|
+
* bool is_zero = 1001 [(buf.validate.predefined).cel = {
|
|
4814
4820
|
* id: "int32.is_zero",
|
|
4815
4821
|
* message: "must be zero",
|
|
4816
4822
|
* expression: "!rule || this == 0",
|
|
@@ -339,7 +339,7 @@ export const field = /*@__PURE__*/ extDesc(file_buf_validate_validate, 2);
|
|
|
339
339
|
*
|
|
340
340
|
* ```proto
|
|
341
341
|
* extend buf.validate.Int32Rules {
|
|
342
|
-
* bool is_zero [(buf.validate.predefined).cel = {
|
|
342
|
+
* bool is_zero = 1001 [(buf.validate.predefined).cel = {
|
|
343
343
|
* id: "int32.is_zero",
|
|
344
344
|
* message: "must be zero",
|
|
345
345
|
* expression: "!rule || this == 0",
|
|
@@ -1636,7 +1636,7 @@ export type UInt64Rules = Message<"buf.validate.UInt64Rules"> & {
|
|
|
1636
1636
|
* message MyUInt64 {
|
|
1637
1637
|
* uint64 value = 1 [
|
|
1638
1638
|
* (buf.validate.field).uint64.example = 1,
|
|
1639
|
-
* (buf.validate.field).uint64.example =
|
|
1639
|
+
* (buf.validate.field).uint64.example = 10
|
|
1640
1640
|
* ];
|
|
1641
1641
|
* }
|
|
1642
1642
|
* ```
|
|
@@ -2721,8 +2721,8 @@ export type BoolRules = Message<"buf.validate.BoolRules"> & {
|
|
|
2721
2721
|
* ```proto
|
|
2722
2722
|
* message MyBool {
|
|
2723
2723
|
* bool value = 1 [
|
|
2724
|
-
* (buf.validate.field).bool.example =
|
|
2725
|
-
* (buf.validate.field).bool.example =
|
|
2724
|
+
* (buf.validate.field).bool.example = true,
|
|
2725
|
+
* (buf.validate.field).bool.example = false
|
|
2726
2726
|
* ];
|
|
2727
2727
|
* }
|
|
2728
2728
|
* ```
|
|
@@ -2951,7 +2951,7 @@ export type StringRules = Message<"buf.validate.StringRules"> & {
|
|
|
2951
2951
|
* ```proto
|
|
2952
2952
|
* message MyString {
|
|
2953
2953
|
* // must be in list ["apple", "banana"]
|
|
2954
|
-
* string value = 1 [(buf.validate.field).string
|
|
2954
|
+
* string value = 1 [(buf.validate.field).string = { in: ["apple", "banana"] }];
|
|
2955
2955
|
* }
|
|
2956
2956
|
* ```
|
|
2957
2957
|
*
|
|
@@ -2966,7 +2966,7 @@ export type StringRules = Message<"buf.validate.StringRules"> & {
|
|
|
2966
2966
|
* ```proto
|
|
2967
2967
|
* message MyString {
|
|
2968
2968
|
* // value must not be in list ["orange", "grape"]
|
|
2969
|
-
* string value = 1 [(buf.validate.field).string
|
|
2969
|
+
* string value = 1 [(buf.validate.field).string = { not_in: ["orange", "grape"] }];
|
|
2970
2970
|
* }
|
|
2971
2971
|
* ```
|
|
2972
2972
|
*
|
|
@@ -3621,7 +3621,7 @@ export type BytesRules = Message<"buf.validate.BytesRules"> & {
|
|
|
3621
3621
|
* ```proto
|
|
3622
3622
|
* message MyBytes {
|
|
3623
3623
|
* // value must in ["\x01\x02", "\x02\x03", "\x03\x04"]
|
|
3624
|
-
* optional bytes value = 1 [(buf.validate.field).bytes
|
|
3624
|
+
* optional bytes value = 1 [(buf.validate.field).bytes = { in: ["\x01\x02", "\x02\x03", "\x03\x04"] }];
|
|
3625
3625
|
* }
|
|
3626
3626
|
* ```
|
|
3627
3627
|
*
|
|
@@ -3638,7 +3638,7 @@ export type BytesRules = Message<"buf.validate.BytesRules"> & {
|
|
|
3638
3638
|
* ```proto
|
|
3639
3639
|
* message MyBytes {
|
|
3640
3640
|
* // value must not in ["\x01\x02", "\x02\x03", "\x03\x04"]
|
|
3641
|
-
* optional bytes value = 1 [(buf.validate.field).bytes
|
|
3641
|
+
* optional bytes value = 1 [(buf.validate.field).bytes = { not_in: ["\x01\x02", "\x02\x03", "\x03\x04"] }];
|
|
3642
3642
|
* }
|
|
3643
3643
|
* ```
|
|
3644
3644
|
*
|
|
@@ -3850,8 +3850,10 @@ export type EnumRules = Message<"buf.validate.EnumRules"> & {
|
|
|
3850
3850
|
* }
|
|
3851
3851
|
*
|
|
3852
3852
|
* message MyMessage {
|
|
3853
|
+
* MyEnum value = 1 [
|
|
3853
3854
|
* (buf.validate.field).enum.example = 1,
|
|
3854
3855
|
* (buf.validate.field).enum.example = 2
|
|
3856
|
+
* ];
|
|
3855
3857
|
* }
|
|
3856
3858
|
* ```
|
|
3857
3859
|
*
|
|
@@ -4104,7 +4106,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4104
4106
|
* ```proto
|
|
4105
4107
|
* message MyDuration {
|
|
4106
4108
|
* // value must equal 5s
|
|
4107
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.const =
|
|
4109
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.const = { seconds: 5 }];
|
|
4108
4110
|
* }
|
|
4109
4111
|
* ```
|
|
4110
4112
|
*
|
|
@@ -4124,7 +4126,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4124
4126
|
* ```proto
|
|
4125
4127
|
* message MyDuration {
|
|
4126
4128
|
* // must be less than 5s
|
|
4127
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lt =
|
|
4129
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lt = { seconds: 5 }];
|
|
4128
4130
|
* }
|
|
4129
4131
|
* ```
|
|
4130
4132
|
*
|
|
@@ -4141,7 +4143,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4141
4143
|
* ```proto
|
|
4142
4144
|
* message MyDuration {
|
|
4143
4145
|
* // must be less than or equal to 10s
|
|
4144
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lte =
|
|
4146
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration.lte = { seconds: 10 }];
|
|
4145
4147
|
* }
|
|
4146
4148
|
* ```
|
|
4147
4149
|
*
|
|
@@ -4214,7 +4216,9 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4214
4216
|
* ```proto
|
|
4215
4217
|
* message MyDuration {
|
|
4216
4218
|
* // must be in list [1s, 2s, 3s]
|
|
4217
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration
|
|
4219
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration = {
|
|
4220
|
+
* in: [{ seconds: 1 }, { seconds: 2 }, { seconds: 3 }]
|
|
4221
|
+
* }];
|
|
4218
4222
|
* }
|
|
4219
4223
|
* ```
|
|
4220
4224
|
*
|
|
@@ -4231,7 +4235,9 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4231
4235
|
* ```proto
|
|
4232
4236
|
* message MyDuration {
|
|
4233
4237
|
* // value must not be in list [1s, 2s, 3s]
|
|
4234
|
-
* google.protobuf.Duration value = 1 [(buf.validate.field).duration
|
|
4238
|
+
* google.protobuf.Duration value = 1 [(buf.validate.field).duration = {
|
|
4239
|
+
* not_in: [{ seconds: 1 }, { seconds: 2 }, { seconds: 3 }]
|
|
4240
|
+
* }];
|
|
4235
4241
|
* }
|
|
4236
4242
|
* ```
|
|
4237
4243
|
*
|
|
@@ -4248,7 +4254,7 @@ export type DurationRules = Message<"buf.validate.DurationRules"> & {
|
|
|
4248
4254
|
* message MyDuration {
|
|
4249
4255
|
* google.protobuf.Duration value = 1 [
|
|
4250
4256
|
* (buf.validate.field).duration.example = { seconds: 1 },
|
|
4251
|
-
* (buf.validate.field).duration.example = { seconds: 2 }
|
|
4257
|
+
* (buf.validate.field).duration.example = { seconds: 2 }
|
|
4252
4258
|
* ];
|
|
4253
4259
|
* }
|
|
4254
4260
|
* ```
|
|
@@ -4338,7 +4344,7 @@ export type FieldMaskRules = Message<"buf.validate.FieldMaskRules"> & {
|
|
|
4338
4344
|
* message MyFieldMask {
|
|
4339
4345
|
* google.protobuf.FieldMask value = 1 [
|
|
4340
4346
|
* (buf.validate.field).field_mask.example = { paths: ["a", "b"] },
|
|
4341
|
-
* (buf.validate.field).field_mask.example = { paths: ["c.a", "d"] }
|
|
4347
|
+
* (buf.validate.field).field_mask.example = { paths: ["c.a", "d"] }
|
|
4342
4348
|
* ];
|
|
4343
4349
|
* }
|
|
4344
4350
|
* ```
|
|
@@ -4518,7 +4524,7 @@ export type TimestampRules = Message<"buf.validate.TimestampRules"> & {
|
|
|
4518
4524
|
* message MyTimestamp {
|
|
4519
4525
|
* google.protobuf.Timestamp value = 1 [
|
|
4520
4526
|
* (buf.validate.field).timestamp.example = { seconds: 1672444800 },
|
|
4521
|
-
* (buf.validate.field).timestamp.example = { seconds: 1672531200 }
|
|
4527
|
+
* (buf.validate.field).timestamp.example = { seconds: 1672531200 }
|
|
4522
4528
|
* ];
|
|
4523
4529
|
* }
|
|
4524
4530
|
* ```
|
|
@@ -4644,7 +4650,7 @@ export type Violation = Message<"buf.validate.Violation"> & {
|
|
|
4644
4650
|
* bool b = 2 [(buf.validate.field).cel = {
|
|
4645
4651
|
* id: "custom_rule",
|
|
4646
4652
|
* expression: "!this ? 'b must be true': ''"
|
|
4647
|
-
* }]
|
|
4653
|
+
* }];
|
|
4648
4654
|
* }
|
|
4649
4655
|
* ```
|
|
4650
4656
|
*
|
|
@@ -5009,7 +5015,7 @@ export const field: GenExtension<FieldOptions, FieldRules> = /*@__PURE__*/
|
|
|
5009
5015
|
*
|
|
5010
5016
|
* ```proto
|
|
5011
5017
|
* extend buf.validate.Int32Rules {
|
|
5012
|
-
* bool is_zero [(buf.validate.predefined).cel = {
|
|
5018
|
+
* bool is_zero = 1001 [(buf.validate.predefined).cel = {
|
|
5013
5019
|
* id: "int32.is_zero",
|
|
5014
5020
|
* message: "must be zero",
|
|
5015
5021
|
* expression: "!rule || this == 0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
2
|
import type { Labels, TenantRole } from "../../api/v2/common_pb";
|
|
3
|
-
import type { Tenant, TenantQuery } from "../../api/v2/tenant_pb";
|
|
3
|
+
import type { Tenant, TenantMember, TenantQuery } from "../../api/v2/tenant_pb";
|
|
4
4
|
import type { Message } from "@bufbuild/protobuf";
|
|
5
5
|
/**
|
|
6
6
|
* Describes the file metalstack/admin/v2/tenant.proto.
|
|
@@ -143,7 +143,14 @@ export declare const TenantServiceAddMemberRequestSchema: GenMessage<TenantServi
|
|
|
143
143
|
*
|
|
144
144
|
* @generated from message metalstack.admin.v2.TenantServiceAddMemberResponse
|
|
145
145
|
*/
|
|
146
|
-
export type TenantServiceAddMemberResponse = Message<"metalstack.admin.v2.TenantServiceAddMemberResponse"> & {
|
|
146
|
+
export type TenantServiceAddMemberResponse = Message<"metalstack.admin.v2.TenantServiceAddMemberResponse"> & {
|
|
147
|
+
/**
|
|
148
|
+
* TenantMember is the added tenant member
|
|
149
|
+
*
|
|
150
|
+
* @generated from field: metalstack.api.v2.TenantMember tenant_member = 1;
|
|
151
|
+
*/
|
|
152
|
+
tenantMember?: TenantMember | undefined;
|
|
153
|
+
};
|
|
147
154
|
/**
|
|
148
155
|
* Describes the message metalstack.admin.v2.TenantServiceAddMemberResponse.
|
|
149
156
|
* Use `create(TenantServiceAddMemberResponseSchema)` to create a new message.
|
|
@@ -178,7 +185,14 @@ export declare const TenantServiceRemoveMemberRequestSchema: GenMessage<TenantSe
|
|
|
178
185
|
*
|
|
179
186
|
* @generated from message metalstack.admin.v2.TenantServiceRemoveMemberResponse
|
|
180
187
|
*/
|
|
181
|
-
export type TenantServiceRemoveMemberResponse = Message<"metalstack.admin.v2.TenantServiceRemoveMemberResponse"> & {
|
|
188
|
+
export type TenantServiceRemoveMemberResponse = Message<"metalstack.admin.v2.TenantServiceRemoveMemberResponse"> & {
|
|
189
|
+
/**
|
|
190
|
+
* TenantMember is the removed tenant member
|
|
191
|
+
*
|
|
192
|
+
* @generated from field: metalstack.api.v2.TenantMember tenant_member = 1;
|
|
193
|
+
*/
|
|
194
|
+
tenantMember?: TenantMember | undefined;
|
|
195
|
+
};
|
|
182
196
|
/**
|
|
183
197
|
* Describes the message metalstack.admin.v2.TenantServiceRemoveMemberResponse.
|
|
184
198
|
* Use `create(TenantServiceRemoveMemberResponseSchema)` to create a new message.
|
|
@@ -9,7 +9,7 @@ import { file_metalstack_api_v2_tenant } from "../../api/v2/tenant_pb";
|
|
|
9
9
|
/**
|
|
10
10
|
* Describes the file metalstack/admin/v2/tenant.proto.
|
|
11
11
|
*/
|
|
12
|
-
export const file_metalstack_admin_v2_tenant = /*@__PURE__*/ fileDesc("
|
|
12
|
+
export const file_metalstack_admin_v2_tenant = /*@__PURE__*/ fileDesc("CiBtZXRhbHN0YWNrL2FkbWluL3YyL3RlbmFudC5wcm90bxITbWV0YWxzdGFjay5hZG1pbi52MiL1AQoaVGVuYW50U2VydmljZUNyZWF0ZVJlcXVlc3QSGQoEbmFtZRgBIAEoCUILukgIcgaQtK6xAgESJQoLZGVzY3JpcHRpb24YAiABKAlCC7pICHIGyLOusQIBSACIAQESGwoFZW1haWwYAyABKAlCB7pIBHICYAFIAYgBARIkCgphdmF0YXJfdXJsGAQgASgJQgu6SAhyBuCzrrECAUgCiAEBEikKBmxhYmVscxgFIAEoCzIZLm1ldGFsc3RhY2suYXBpLnYyLkxhYmVsc0IOCgxfZGVzY3JpcHRpb25CCAoGX2VtYWlsQg0KC19hdmF0YXJfdXJsIkgKG1RlbmFudFNlcnZpY2VDcmVhdGVSZXNwb25zZRIpCgZ0ZW5hbnQYASABKAsyGS5tZXRhbHN0YWNrLmFwaS52Mi5UZW5hbnQiSQoYVGVuYW50U2VydmljZUxpc3RSZXF1ZXN0Ei0KBXF1ZXJ5GAEgASgLMh4ubWV0YWxzdGFjay5hcGkudjIuVGVuYW50UXVlcnkibQoZVGVuYW50U2VydmljZUxpc3RSZXNwb25zZRIqCgd0ZW5hbnRzGAEgAygLMhkubWV0YWxzdGFjay5hcGkudjIuVGVuYW50EhYKCW5leHRfcGFnZRgCIAEoBEgAiAEBQgwKCl9uZXh0X3BhZ2UikAEKHVRlbmFudFNlcnZpY2VBZGRNZW1iZXJSZXF1ZXN0EhsKBnRlbmFudBgBIAEoCUILukgIcgaQtK6xAgESGwoGbWVtYmVyGAIgASgJQgu6SAhyBpC0rrECARI1CgRyb2xlGAMgASgOMh0ubWV0YWxzdGFjay5hcGkudjIuVGVuYW50Um9sZUIIukgFggECEAEiWAoeVGVuYW50U2VydmljZUFkZE1lbWJlclJlc3BvbnNlEjYKDXRlbmFudF9tZW1iZXIYASABKAsyHy5tZXRhbHN0YWNrLmFwaS52Mi5UZW5hbnRNZW1iZXIiXAogVGVuYW50U2VydmljZVJlbW92ZU1lbWJlclJlcXVlc3QSGwoGdGVuYW50GAEgASgJQgu6SAhyBpC0rrECARIbCgZtZW1iZXIYAiABKAlCC7pICHIGkLSusQIBIlsKIVRlbmFudFNlcnZpY2VSZW1vdmVNZW1iZXJSZXNwb25zZRI2Cg10ZW5hbnRfbWVtYmVyGAEgASgLMh8ubWV0YWxzdGFjay5hcGkudjIuVGVuYW50TWVtYmVyMoYECg1UZW5hbnRTZXJ2aWNlEnYKBkNyZWF0ZRIvLm1ldGFsc3RhY2suYWRtaW4udjIuVGVuYW50U2VydmljZUNyZWF0ZVJlcXVlc3QaMC5tZXRhbHN0YWNrLmFkbWluLnYyLlRlbmFudFNlcnZpY2VDcmVhdGVSZXNwb25zZSIJ0vMYAQHg8xgBEnEKBExpc3QSLS5tZXRhbHN0YWNrLmFkbWluLnYyLlRlbmFudFNlcnZpY2VMaXN0UmVxdWVzdBouLm1ldGFsc3RhY2suYWRtaW4udjIuVGVuYW50U2VydmljZUxpc3RSZXNwb25zZSIK0vMYAgEC4PMYARJ/CglBZGRNZW1iZXISMi5tZXRhbHN0YWNrLmFkbWluLnYyLlRlbmFudFNlcnZpY2VBZGRNZW1iZXJSZXF1ZXN0GjMubWV0YWxzdGFjay5hZG1pbi52Mi5UZW5hbnRTZXJ2aWNlQWRkTWVtYmVyUmVzcG9uc2UiCdLzGAEB4PMYARKIAQoMUmVtb3ZlTWVtYmVyEjUubWV0YWxzdGFjay5hZG1pbi52Mi5UZW5hbnRTZXJ2aWNlUmVtb3ZlTWVtYmVyUmVxdWVzdBo2Lm1ldGFsc3RhY2suYWRtaW4udjIuVGVuYW50U2VydmljZVJlbW92ZU1lbWJlclJlc3BvbnNlIgnS8xgBAeDzGAFCzwEKF2NvbS5tZXRhbHN0YWNrLmFkbWluLnYyQgtUZW5hbnRQcm90b1ABWjlnaXRodWIuY29tL21ldGFsLXN0YWNrL2FwaS9nby9tZXRhbHN0YWNrL2FkbWluL3YyO2FkbWludjKiAgNNQViqAhNNZXRhbHN0YWNrLkFkbWluLlYyygITTWV0YWxzdGFja1xBZG1pblxWMuICH01ldGFsc3RhY2tcQWRtaW5cVjJcR1BCTWV0YWRhdGHqAhVNZXRhbHN0YWNrOjpBZG1pbjo6VjJiBnByb3RvMw", [file_buf_validate_validate, file_metalstack_api_v2_common, file_metalstack_api_v2_predefined_rules, file_metalstack_api_v2_tenant]);
|
|
13
13
|
/**
|
|
14
14
|
* Describes the message metalstack.admin.v2.TenantServiceCreateRequest.
|
|
15
15
|
* Use `create(TenantServiceCreateRequestSchema)` to create a new message.
|
|
@@ -8,7 +8,7 @@ import { file_buf_validate_validate } from "../../../buf/validate/validate_pb";
|
|
|
8
8
|
import type { Labels, TenantRole } from "../../api/v2/common_pb";
|
|
9
9
|
import { file_metalstack_api_v2_common } from "../../api/v2/common_pb";
|
|
10
10
|
import { file_metalstack_api_v2_predefined_rules } from "../../api/v2/predefined_rules_pb";
|
|
11
|
-
import type { Tenant, TenantQuery } from "../../api/v2/tenant_pb";
|
|
11
|
+
import type { Tenant, TenantMember, TenantQuery } from "../../api/v2/tenant_pb";
|
|
12
12
|
import { file_metalstack_api_v2_tenant } from "../../api/v2/tenant_pb";
|
|
13
13
|
import type { Message } from "@bufbuild/protobuf";
|
|
14
14
|
|
|
@@ -16,7 +16,7 @@ import type { Message } from "@bufbuild/protobuf";
|
|
|
16
16
|
* Describes the file metalstack/admin/v2/tenant.proto.
|
|
17
17
|
*/
|
|
18
18
|
export const file_metalstack_admin_v2_tenant: GenFile = /*@__PURE__*/
|
|
19
|
-
fileDesc("
|
|
19
|
+
fileDesc("CiBtZXRhbHN0YWNrL2FkbWluL3YyL3RlbmFudC5wcm90bxITbWV0YWxzdGFjay5hZG1pbi52MiL1AQoaVGVuYW50U2VydmljZUNyZWF0ZVJlcXVlc3QSGQoEbmFtZRgBIAEoCUILukgIcgaQtK6xAgESJQoLZGVzY3JpcHRpb24YAiABKAlCC7pICHIGyLOusQIBSACIAQESGwoFZW1haWwYAyABKAlCB7pIBHICYAFIAYgBARIkCgphdmF0YXJfdXJsGAQgASgJQgu6SAhyBuCzrrECAUgCiAEBEikKBmxhYmVscxgFIAEoCzIZLm1ldGFsc3RhY2suYXBpLnYyLkxhYmVsc0IOCgxfZGVzY3JpcHRpb25CCAoGX2VtYWlsQg0KC19hdmF0YXJfdXJsIkgKG1RlbmFudFNlcnZpY2VDcmVhdGVSZXNwb25zZRIpCgZ0ZW5hbnQYASABKAsyGS5tZXRhbHN0YWNrLmFwaS52Mi5UZW5hbnQiSQoYVGVuYW50U2VydmljZUxpc3RSZXF1ZXN0Ei0KBXF1ZXJ5GAEgASgLMh4ubWV0YWxzdGFjay5hcGkudjIuVGVuYW50UXVlcnkibQoZVGVuYW50U2VydmljZUxpc3RSZXNwb25zZRIqCgd0ZW5hbnRzGAEgAygLMhkubWV0YWxzdGFjay5hcGkudjIuVGVuYW50EhYKCW5leHRfcGFnZRgCIAEoBEgAiAEBQgwKCl9uZXh0X3BhZ2UikAEKHVRlbmFudFNlcnZpY2VBZGRNZW1iZXJSZXF1ZXN0EhsKBnRlbmFudBgBIAEoCUILukgIcgaQtK6xAgESGwoGbWVtYmVyGAIgASgJQgu6SAhyBpC0rrECARI1CgRyb2xlGAMgASgOMh0ubWV0YWxzdGFjay5hcGkudjIuVGVuYW50Um9sZUIIukgFggECEAEiWAoeVGVuYW50U2VydmljZUFkZE1lbWJlclJlc3BvbnNlEjYKDXRlbmFudF9tZW1iZXIYASABKAsyHy5tZXRhbHN0YWNrLmFwaS52Mi5UZW5hbnRNZW1iZXIiXAogVGVuYW50U2VydmljZVJlbW92ZU1lbWJlclJlcXVlc3QSGwoGdGVuYW50GAEgASgJQgu6SAhyBpC0rrECARIbCgZtZW1iZXIYAiABKAlCC7pICHIGkLSusQIBIlsKIVRlbmFudFNlcnZpY2VSZW1vdmVNZW1iZXJSZXNwb25zZRI2Cg10ZW5hbnRfbWVtYmVyGAEgASgLMh8ubWV0YWxzdGFjay5hcGkudjIuVGVuYW50TWVtYmVyMoYECg1UZW5hbnRTZXJ2aWNlEnYKBkNyZWF0ZRIvLm1ldGFsc3RhY2suYWRtaW4udjIuVGVuYW50U2VydmljZUNyZWF0ZVJlcXVlc3QaMC5tZXRhbHN0YWNrLmFkbWluLnYyLlRlbmFudFNlcnZpY2VDcmVhdGVSZXNwb25zZSIJ0vMYAQHg8xgBEnEKBExpc3QSLS5tZXRhbHN0YWNrLmFkbWluLnYyLlRlbmFudFNlcnZpY2VMaXN0UmVxdWVzdBouLm1ldGFsc3RhY2suYWRtaW4udjIuVGVuYW50U2VydmljZUxpc3RSZXNwb25zZSIK0vMYAgEC4PMYARJ/CglBZGRNZW1iZXISMi5tZXRhbHN0YWNrLmFkbWluLnYyLlRlbmFudFNlcnZpY2VBZGRNZW1iZXJSZXF1ZXN0GjMubWV0YWxzdGFjay5hZG1pbi52Mi5UZW5hbnRTZXJ2aWNlQWRkTWVtYmVyUmVzcG9uc2UiCdLzGAEB4PMYARKIAQoMUmVtb3ZlTWVtYmVyEjUubWV0YWxzdGFjay5hZG1pbi52Mi5UZW5hbnRTZXJ2aWNlUmVtb3ZlTWVtYmVyUmVxdWVzdBo2Lm1ldGFsc3RhY2suYWRtaW4udjIuVGVuYW50U2VydmljZVJlbW92ZU1lbWJlclJlc3BvbnNlIgnS8xgBAeDzGAFCzwEKF2NvbS5tZXRhbHN0YWNrLmFkbWluLnYyQgtUZW5hbnRQcm90b1ABWjlnaXRodWIuY29tL21ldGFsLXN0YWNrL2FwaS9nby9tZXRhbHN0YWNrL2FkbWluL3YyO2FkbWludjKiAgNNQViqAhNNZXRhbHN0YWNrLkFkbWluLlYyygITTWV0YWxzdGFja1xBZG1pblxWMuICH01ldGFsc3RhY2tcQWRtaW5cVjJcR1BCTWV0YWRhdGHqAhVNZXRhbHN0YWNrOjpBZG1pbjo6VjJiBnByb3RvMw", [file_buf_validate_validate, file_metalstack_api_v2_common, file_metalstack_api_v2_predefined_rules, file_metalstack_api_v2_tenant]);
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* TenantServiceCreateRequest is the request payload for creating a tenant.
|
|
@@ -178,6 +178,12 @@ export const TenantServiceAddMemberRequestSchema: GenMessage<TenantServiceAddMem
|
|
|
178
178
|
* @generated from message metalstack.admin.v2.TenantServiceAddMemberResponse
|
|
179
179
|
*/
|
|
180
180
|
export type TenantServiceAddMemberResponse = Message<"metalstack.admin.v2.TenantServiceAddMemberResponse"> & {
|
|
181
|
+
/**
|
|
182
|
+
* TenantMember is the added tenant member
|
|
183
|
+
*
|
|
184
|
+
* @generated from field: metalstack.api.v2.TenantMember tenant_member = 1;
|
|
185
|
+
*/
|
|
186
|
+
tenantMember?: TenantMember | undefined;
|
|
181
187
|
};
|
|
182
188
|
|
|
183
189
|
/**
|
|
@@ -221,6 +227,12 @@ export const TenantServiceRemoveMemberRequestSchema: GenMessage<TenantServiceRem
|
|
|
221
227
|
* @generated from message metalstack.admin.v2.TenantServiceRemoveMemberResponse
|
|
222
228
|
*/
|
|
223
229
|
export type TenantServiceRemoveMemberResponse = Message<"metalstack.admin.v2.TenantServiceRemoveMemberResponse"> & {
|
|
230
|
+
/**
|
|
231
|
+
* TenantMember is the removed tenant member
|
|
232
|
+
*
|
|
233
|
+
* @generated from field: metalstack.api.v2.TenantMember tenant_member = 1;
|
|
234
|
+
*/
|
|
235
|
+
tenantMember?: TenantMember | undefined;
|
|
224
236
|
};
|
|
225
237
|
|
|
226
238
|
/**
|
|
@@ -490,34 +490,40 @@ export type Machine = Message<"metalstack.api.v2.Machine"> & {
|
|
|
490
490
|
* @generated from field: string rack = 4;
|
|
491
491
|
*/
|
|
492
492
|
rack: string;
|
|
493
|
+
/**
|
|
494
|
+
* Room where this machine is located
|
|
495
|
+
*
|
|
496
|
+
* @generated from field: string room = 5;
|
|
497
|
+
*/
|
|
498
|
+
room: string;
|
|
493
499
|
/**
|
|
494
500
|
* Size of this machine
|
|
495
501
|
*
|
|
496
|
-
* @generated from field: metalstack.api.v2.Size size =
|
|
502
|
+
* @generated from field: metalstack.api.v2.Size size = 6;
|
|
497
503
|
*/
|
|
498
504
|
size?: Size | undefined;
|
|
499
505
|
/**
|
|
500
506
|
* Hardware specs of this machine
|
|
501
507
|
*
|
|
502
|
-
* @generated from field: metalstack.api.v2.MachineHardware hardware =
|
|
508
|
+
* @generated from field: metalstack.api.v2.MachineHardware hardware = 7;
|
|
503
509
|
*/
|
|
504
510
|
hardware?: MachineHardware | undefined;
|
|
505
511
|
/**
|
|
506
512
|
* Allocation details
|
|
507
513
|
*
|
|
508
|
-
* @generated from field: metalstack.api.v2.MachineAllocation allocation =
|
|
514
|
+
* @generated from field: metalstack.api.v2.MachineAllocation allocation = 8;
|
|
509
515
|
*/
|
|
510
516
|
allocation?: MachineAllocation | undefined;
|
|
511
517
|
/**
|
|
512
518
|
* Status contains several status details related to this machine
|
|
513
519
|
*
|
|
514
|
-
* @generated from field: metalstack.api.v2.MachineStatus status =
|
|
520
|
+
* @generated from field: metalstack.api.v2.MachineStatus status = 9;
|
|
515
521
|
*/
|
|
516
522
|
status?: MachineStatus | undefined;
|
|
517
523
|
/**
|
|
518
524
|
* MachineRecentProvisioningEvents contains the recent provisioning events
|
|
519
525
|
*
|
|
520
|
-
* @generated from field: metalstack.api.v2.MachineRecentProvisioningEvents recent_provisioning_events =
|
|
526
|
+
* @generated from field: metalstack.api.v2.MachineRecentProvisioningEvents recent_provisioning_events = 10;
|
|
521
527
|
*/
|
|
522
528
|
recentProvisioningEvents?: MachineRecentProvisioningEvents | undefined;
|
|
523
529
|
};
|
|
@@ -1517,79 +1523,85 @@ export type MachineQuery = Message<"metalstack.api.v2.MachineQuery"> & {
|
|
|
1517
1523
|
* @generated from field: optional string rack = 5;
|
|
1518
1524
|
*/
|
|
1519
1525
|
rack?: string | undefined;
|
|
1526
|
+
/**
|
|
1527
|
+
* Room of the machine to get
|
|
1528
|
+
*
|
|
1529
|
+
* @generated from field: optional string room = 6;
|
|
1530
|
+
*/
|
|
1531
|
+
room?: string | undefined;
|
|
1520
1532
|
/**
|
|
1521
1533
|
* Labels for which this machine should get filtered
|
|
1522
1534
|
*
|
|
1523
|
-
* @generated from field: optional metalstack.api.v2.Labels labels =
|
|
1535
|
+
* @generated from field: optional metalstack.api.v2.Labels labels = 7;
|
|
1524
1536
|
*/
|
|
1525
1537
|
labels?: Labels | undefined;
|
|
1526
1538
|
/**
|
|
1527
1539
|
* Allocation specific machine queries
|
|
1528
1540
|
*
|
|
1529
|
-
* @generated from field: optional metalstack.api.v2.MachineAllocationQuery allocation =
|
|
1541
|
+
* @generated from field: optional metalstack.api.v2.MachineAllocationQuery allocation = 8;
|
|
1530
1542
|
*/
|
|
1531
1543
|
allocation?: MachineAllocationQuery | undefined;
|
|
1532
1544
|
/**
|
|
1533
1545
|
* Network specific machine queries
|
|
1534
1546
|
*
|
|
1535
|
-
* @generated from field: optional metalstack.api.v2.MachineNetworkQuery network =
|
|
1547
|
+
* @generated from field: optional metalstack.api.v2.MachineNetworkQuery network = 9;
|
|
1536
1548
|
*/
|
|
1537
1549
|
network?: MachineNetworkQuery | undefined;
|
|
1538
1550
|
/**
|
|
1539
1551
|
* Nic specific machine queries
|
|
1540
1552
|
*
|
|
1541
|
-
* @generated from field: optional metalstack.api.v2.MachineNicQuery nic =
|
|
1553
|
+
* @generated from field: optional metalstack.api.v2.MachineNicQuery nic = 10;
|
|
1542
1554
|
*/
|
|
1543
1555
|
nic?: MachineNicQuery | undefined;
|
|
1544
1556
|
/**
|
|
1545
1557
|
* Disk specific machine queries
|
|
1546
1558
|
*
|
|
1547
|
-
* @generated from field: optional metalstack.api.v2.MachineDiskQuery disk =
|
|
1559
|
+
* @generated from field: optional metalstack.api.v2.MachineDiskQuery disk = 11;
|
|
1548
1560
|
*/
|
|
1549
1561
|
disk?: MachineDiskQuery | undefined;
|
|
1550
1562
|
/**
|
|
1551
1563
|
* Bmc specific machine queries
|
|
1552
1564
|
*
|
|
1553
|
-
* @generated from field: optional metalstack.api.v2.MachineBMCQuery bmc =
|
|
1565
|
+
* @generated from field: optional metalstack.api.v2.MachineBMCQuery bmc = 12;
|
|
1554
1566
|
*/
|
|
1555
1567
|
bmc?: MachineBMCQuery | undefined;
|
|
1556
1568
|
/**
|
|
1557
1569
|
* Fru specific machine queries
|
|
1558
1570
|
*
|
|
1559
|
-
* @generated from field: optional metalstack.api.v2.MachineFRUQuery fru =
|
|
1571
|
+
* @generated from field: optional metalstack.api.v2.MachineFRUQuery fru = 13;
|
|
1560
1572
|
*/
|
|
1561
1573
|
fru?: MachineFRUQuery | undefined;
|
|
1562
1574
|
/**
|
|
1563
1575
|
* Hardware specific machine query
|
|
1564
1576
|
*
|
|
1565
|
-
* @generated from field: optional metalstack.api.v2.MachineHardwareQuery hardware =
|
|
1577
|
+
* @generated from field: optional metalstack.api.v2.MachineHardwareQuery hardware = 14;
|
|
1566
1578
|
*/
|
|
1567
1579
|
hardware?: MachineHardwareQuery | undefined;
|
|
1568
1580
|
/**
|
|
1569
1581
|
* State this machine has
|
|
1570
1582
|
*
|
|
1571
|
-
* @generated from field: optional metalstack.api.v2.MachineState state =
|
|
1583
|
+
* @generated from field: optional metalstack.api.v2.MachineState state = 15;
|
|
1572
1584
|
*/
|
|
1573
1585
|
state?: MachineState | undefined;
|
|
1574
1586
|
/**
|
|
1575
1587
|
* Waiting if set to true, only waiting machines are returned.
|
|
1576
1588
|
* Only useful for admins.
|
|
1577
1589
|
*
|
|
1578
|
-
* @generated from field: optional bool waiting =
|
|
1590
|
+
* @generated from field: optional bool waiting = 16;
|
|
1579
1591
|
*/
|
|
1580
1592
|
waiting?: boolean | undefined;
|
|
1581
1593
|
/**
|
|
1582
1594
|
* Preallocated if set to true, only machines which are preallocated are returned.
|
|
1583
1595
|
* Only useful for admins.
|
|
1584
1596
|
*
|
|
1585
|
-
* @generated from field: optional bool preallocated =
|
|
1597
|
+
* @generated from field: optional bool preallocated = 17;
|
|
1586
1598
|
*/
|
|
1587
1599
|
preallocated?: boolean | undefined;
|
|
1588
1600
|
/**
|
|
1589
1601
|
* NotAllocated if set to true, only machines which are not allocated are returned.
|
|
1590
1602
|
* Only useful for admins.
|
|
1591
1603
|
*
|
|
1592
|
-
* @generated from field: optional bool not_allocated =
|
|
1604
|
+
* @generated from field: optional bool not_allocated = 18;
|
|
1593
1605
|
*/
|
|
1594
1606
|
notAllocated?: boolean | undefined;
|
|
1595
1607
|
};
|