From 63ce5452693af21ecbb073cfea0df743c5f52895 Mon Sep 17 00:00:00 2001 From: rig-bot Date: Thu, 23 May 2024 12:33:23 +0000 Subject: [PATCH] push latest version of APIs --- operator/api/v1/pipeline/object_status_pb.ts | 44 ++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/operator/api/v1/pipeline/object_status_pb.ts b/operator/api/v1/pipeline/object_status_pb.ts index 50687cd..b940f10 100644 --- a/operator/api/v1/pipeline/object_status_pb.ts +++ b/operator/api/v1/pipeline/object_status_pb.ts @@ -267,6 +267,11 @@ export class RouteStatus extends Message { */ host = ""; + /** + * @generated from field: string interface_name = 3; + */ + interfaceName = ""; + constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); @@ -277,6 +282,7 @@ export class RouteStatus extends Message { static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "host", kind: "scalar", T: 9 /* ScalarType.STRING */ }, + { no: 3, name: "interface_name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): RouteStatus { @@ -576,6 +582,37 @@ export class CapsuleStatus extends Message { } } +/** + * @generated from message api.v1.pipeline.InterfaceStatus + */ +export class InterfaceStatus extends Message { + constructor(data?: PartialMessage) { + super(); + proto3.util.initPartial(data, this); + } + + static readonly runtime: typeof proto3 = proto3; + static readonly typeName = "api.v1.pipeline.InterfaceStatus"; + static readonly fields: FieldList = proto3.util.newFieldList(() => [ + ]); + + static fromBinary(bytes: Uint8Array, options?: Partial): InterfaceStatus { + return new InterfaceStatus().fromBinary(bytes, options); + } + + static fromJson(jsonValue: JsonValue, options?: Partial): InterfaceStatus { + return new InterfaceStatus().fromJson(jsonValue, options); + } + + static fromJsonString(jsonString: string, options?: Partial): InterfaceStatus { + return new InterfaceStatus().fromJsonString(jsonString, options); + } + + static equals(a: InterfaceStatus | PlainMessage | undefined, b: InterfaceStatus | PlainMessage | undefined): boolean { + return proto3.util.equals(InterfaceStatus, a, b); + } +} + /** * @generated from message api.v1.pipeline.PlatformObjectStatus */ @@ -624,6 +661,12 @@ export class PlatformObjectStatus extends Message { */ value: CapsuleStatus; case: "capsule"; + } | { + /** + * @generated from field: api.v1.pipeline.InterfaceStatus interface = 8; + */ + value: InterfaceStatus; + case: "interface"; } | { case: undefined; value?: undefined } = { case: undefined }; constructor(data?: PartialMessage) { @@ -641,6 +684,7 @@ export class PlatformObjectStatus extends Message { { no: 5, name: "config_file", kind: "message", T: ConfigFileStatus, oneof: "kind" }, { no: 6, name: "cronjob", kind: "message", T: CronjobStatus, oneof: "kind" }, { no: 7, name: "capsule", kind: "message", T: CapsuleStatus, oneof: "kind" }, + { no: 8, name: "interface", kind: "message", T: InterfaceStatus, oneof: "kind" }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): PlatformObjectStatus {