@@ -402,6 +402,11 @@ export class GetDesiredStateResponse_NewMachine extends Message<GetDesiredStateR
402
402
*/
403
403
userData ?: string
404
404
405
+ /**
406
+ * @generated from field: optional string volume_id = 9;
407
+ */
408
+ volumeId ?: string
409
+
405
410
constructor ( data ?: PartialMessage < GetDesiredStateResponse_NewMachine > ) {
406
411
super ( )
407
412
proto3 . util . initPartial ( data , this )
@@ -417,6 +422,7 @@ export class GetDesiredStateResponse_NewMachine extends Message<GetDesiredStateR
417
422
{ no : 6 , name : 'security_group' , kind : 'enum' , T : proto3 . getEnumType ( GetDesiredStateResponse_SecurityGroup ) } ,
418
423
{ no : 7 , name : 'root_volume' , kind : 'message' , T : GetDesiredStateResponse_RootVolume } ,
419
424
{ no : 8 , name : 'user_data' , kind : 'scalar' , T : 9 /* ScalarType.STRING */ , opt : true } ,
425
+ { no : 9 , name : 'volume_id' , kind : 'scalar' , T : 9 /* ScalarType.STRING */ , opt : true } ,
420
426
] )
421
427
422
428
static fromBinary ( bytes : Uint8Array , options ?: Partial < BinaryReadOptions > ) : GetDesiredStateResponse_NewMachine {
@@ -1002,6 +1008,13 @@ export class CloudState extends Message<CloudState> {
1002
1008
value : CloudState_Aws
1003
1009
case : 'aws'
1004
1010
}
1011
+ | {
1012
+ /**
1013
+ * @generated from field: depot.cloud.v2.CloudState.Fly fly = 2;
1014
+ */
1015
+ value : CloudState_Fly
1016
+ case : 'fly'
1017
+ }
1005
1018
| { case : undefined ; value ?: undefined } = { case : undefined }
1006
1019
1007
1020
constructor ( data ?: PartialMessage < CloudState > ) {
@@ -1013,6 +1026,7 @@ export class CloudState extends Message<CloudState> {
1013
1026
static readonly typeName = 'depot.cloud.v2.CloudState'
1014
1027
static readonly fields : FieldList = proto3 . util . newFieldList ( ( ) => [
1015
1028
{ no : 1 , name : 'aws' , kind : 'message' , T : CloudState_Aws , oneof : 'state' } ,
1029
+ { no : 2 , name : 'fly' , kind : 'message' , T : CloudState_Fly , oneof : 'state' } ,
1016
1030
] )
1017
1031
1018
1032
static fromBinary ( bytes : Uint8Array , options ?: Partial < BinaryReadOptions > ) : CloudState {
@@ -1081,6 +1095,52 @@ export class CloudState_Aws extends Message<CloudState_Aws> {
1081
1095
}
1082
1096
}
1083
1097
1098
+ /**
1099
+ * @generated from message depot.cloud.v2.CloudState.Fly
1100
+ */
1101
+ export class CloudState_Fly extends Message < CloudState_Fly > {
1102
+ /**
1103
+ * @generated from field: string region = 1;
1104
+ */
1105
+ region = ''
1106
+
1107
+ /**
1108
+ * @generated from field: string state = 2;
1109
+ */
1110
+ state = ''
1111
+
1112
+ constructor ( data ?: PartialMessage < CloudState_Fly > ) {
1113
+ super ( )
1114
+ proto3 . util . initPartial ( data , this )
1115
+ }
1116
+
1117
+ static readonly runtime : typeof proto3 = proto3
1118
+ static readonly typeName = 'depot.cloud.v2.CloudState.Fly'
1119
+ static readonly fields : FieldList = proto3 . util . newFieldList ( ( ) => [
1120
+ { no : 1 , name : 'region' , kind : 'scalar' , T : 9 /* ScalarType.STRING */ } ,
1121
+ { no : 2 , name : 'state' , kind : 'scalar' , T : 9 /* ScalarType.STRING */ } ,
1122
+ ] )
1123
+
1124
+ static fromBinary ( bytes : Uint8Array , options ?: Partial < BinaryReadOptions > ) : CloudState_Fly {
1125
+ return new CloudState_Fly ( ) . fromBinary ( bytes , options )
1126
+ }
1127
+
1128
+ static fromJson ( jsonValue : JsonValue , options ?: Partial < JsonReadOptions > ) : CloudState_Fly {
1129
+ return new CloudState_Fly ( ) . fromJson ( jsonValue , options )
1130
+ }
1131
+
1132
+ static fromJsonString ( jsonString : string , options ?: Partial < JsonReadOptions > ) : CloudState_Fly {
1133
+ return new CloudState_Fly ( ) . fromJsonString ( jsonString , options )
1134
+ }
1135
+
1136
+ static equals (
1137
+ a : CloudState_Fly | PlainMessage < CloudState_Fly > | undefined ,
1138
+ b : CloudState_Fly | PlainMessage < CloudState_Fly > | undefined ,
1139
+ ) : boolean {
1140
+ return proto3 . util . equals ( CloudState_Fly , a , b )
1141
+ }
1142
+ }
1143
+
1084
1144
/**
1085
1145
* @generated from message depot.cloud.v2.CloudStatePatch
1086
1146
*/
@@ -1101,6 +1161,13 @@ export class CloudStatePatch extends Message<CloudStatePatch> {
1101
1161
value : CloudStatePatch_Aws
1102
1162
case : 'aws'
1103
1163
}
1164
+ | {
1165
+ /**
1166
+ * @generated from field: depot.cloud.v2.CloudStatePatch.Fly fly = 3;
1167
+ */
1168
+ value : CloudStatePatch_Fly
1169
+ case : 'fly'
1170
+ }
1104
1171
| { case : undefined ; value ?: undefined } = { case : undefined }
1105
1172
1106
1173
constructor ( data ?: PartialMessage < CloudStatePatch > ) {
@@ -1113,6 +1180,7 @@ export class CloudStatePatch extends Message<CloudStatePatch> {
1113
1180
static readonly fields : FieldList = proto3 . util . newFieldList ( ( ) => [
1114
1181
{ no : 1 , name : 'generation' , kind : 'scalar' , T : 5 /* ScalarType.INT32 */ } ,
1115
1182
{ no : 2 , name : 'aws' , kind : 'message' , T : CloudStatePatch_Aws , oneof : 'patch' } ,
1183
+ { no : 3 , name : 'fly' , kind : 'message' , T : CloudStatePatch_Fly , oneof : 'patch' } ,
1116
1184
] )
1117
1185
1118
1186
static fromBinary ( bytes : Uint8Array , options ?: Partial < BinaryReadOptions > ) : CloudStatePatch {
@@ -1175,6 +1243,46 @@ export class CloudStatePatch_Aws extends Message<CloudStatePatch_Aws> {
1175
1243
}
1176
1244
}
1177
1245
1246
+ /**
1247
+ * @generated from message depot.cloud.v2.CloudStatePatch.Fly
1248
+ */
1249
+ export class CloudStatePatch_Fly extends Message < CloudStatePatch_Fly > {
1250
+ /**
1251
+ * @generated from field: string patch = 1;
1252
+ */
1253
+ patch = ''
1254
+
1255
+ constructor ( data ?: PartialMessage < CloudStatePatch_Fly > ) {
1256
+ super ( )
1257
+ proto3 . util . initPartial ( data , this )
1258
+ }
1259
+
1260
+ static readonly runtime : typeof proto3 = proto3
1261
+ static readonly typeName = 'depot.cloud.v2.CloudStatePatch.Fly'
1262
+ static readonly fields : FieldList = proto3 . util . newFieldList ( ( ) => [
1263
+ { no : 1 , name : 'patch' , kind : 'scalar' , T : 9 /* ScalarType.STRING */ } ,
1264
+ ] )
1265
+
1266
+ static fromBinary ( bytes : Uint8Array , options ?: Partial < BinaryReadOptions > ) : CloudStatePatch_Fly {
1267
+ return new CloudStatePatch_Fly ( ) . fromBinary ( bytes , options )
1268
+ }
1269
+
1270
+ static fromJson ( jsonValue : JsonValue , options ?: Partial < JsonReadOptions > ) : CloudStatePatch_Fly {
1271
+ return new CloudStatePatch_Fly ( ) . fromJson ( jsonValue , options )
1272
+ }
1273
+
1274
+ static fromJsonString ( jsonString : string , options ?: Partial < JsonReadOptions > ) : CloudStatePatch_Fly {
1275
+ return new CloudStatePatch_Fly ( ) . fromJsonString ( jsonString , options )
1276
+ }
1277
+
1278
+ static equals (
1279
+ a : CloudStatePatch_Fly | PlainMessage < CloudStatePatch_Fly > | undefined ,
1280
+ b : CloudStatePatch_Fly | PlainMessage < CloudStatePatch_Fly > | undefined ,
1281
+ ) : boolean {
1282
+ return proto3 . util . equals ( CloudStatePatch_Fly , a , b )
1283
+ }
1284
+ }
1285
+
1178
1286
/**
1179
1287
* @generated from message depot.cloud.v2.ReconcileVolumesRequest
1180
1288
*/
0 commit comments