|
| 1 | +// @generated by protoc-gen-es v1.7.2 with parameter "js_import_style=legacy_commonjs" |
| 2 | +// @generated from file anduril/tasks/ad/desertguardian/common/v1/common_tasks.pub.proto (package anduril.tasks.ad.desertguardian.common.v1, syntax proto3) |
| 3 | +/* eslint-disable */ |
| 4 | +// @ts-nocheck |
| 5 | + |
| 6 | +import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; |
| 7 | +import { Message, proto3 } from "@bufbuild/protobuf"; |
| 8 | + |
| 9 | +/** |
| 10 | + * @generated from enum anduril.tasks.ad.desertguardian.common.v1.PowerState |
| 11 | + */ |
| 12 | +export declare enum PowerState { |
| 13 | + /** |
| 14 | + * @generated from enum value: POWER_STATE_INVALID = 0; |
| 15 | + */ |
| 16 | + INVALID = 0, |
| 17 | + |
| 18 | + /** |
| 19 | + * @generated from enum value: POWER_STATE_ON = 1; |
| 20 | + */ |
| 21 | + ON = 1, |
| 22 | + |
| 23 | + /** |
| 24 | + * @generated from enum value: POWER_STATE_OFF = 2; |
| 25 | + */ |
| 26 | + OFF = 2, |
| 27 | +} |
| 28 | + |
| 29 | +/** |
| 30 | + * Set the power state of a Platform. It is up to the Platform to interpret the power state and act accordingly. |
| 31 | + * |
| 32 | + * @generated from message anduril.tasks.ad.desertguardian.common.v1.SetPowerState |
| 33 | + */ |
| 34 | +export declare class SetPowerState extends Message<SetPowerState> { |
| 35 | + /** |
| 36 | + * @generated from field: anduril.tasks.ad.desertguardian.common.v1.PowerState power_state = 1; |
| 37 | + */ |
| 38 | + powerState: PowerState; |
| 39 | + |
| 40 | + constructor(data?: PartialMessage<SetPowerState>); |
| 41 | + |
| 42 | + static readonly runtime: typeof proto3; |
| 43 | + static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.SetPowerState"; |
| 44 | + static readonly fields: FieldList; |
| 45 | + |
| 46 | + static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetPowerState; |
| 47 | + |
| 48 | + static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetPowerState; |
| 49 | + |
| 50 | + static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetPowerState; |
| 51 | + |
| 52 | + static equals(a: SetPowerState | PlainMessage<SetPowerState> | undefined, b: SetPowerState | PlainMessage<SetPowerState> | undefined): boolean; |
| 53 | +} |
| 54 | + |
| 55 | +/** |
| 56 | + * Delete an entity from the internal tracker of a Platform. |
| 57 | + * Does not silence or suppress the track from re-forming if the tracking conditions are satisfied. |
| 58 | + * |
| 59 | + * @generated from message anduril.tasks.ad.desertguardian.common.v1.DeleteTrack |
| 60 | + */ |
| 61 | +export declare class DeleteTrack extends Message<DeleteTrack> { |
| 62 | + /** |
| 63 | + * @generated from field: string entity_id = 1; |
| 64 | + */ |
| 65 | + entityId: string; |
| 66 | + |
| 67 | + constructor(data?: PartialMessage<DeleteTrack>); |
| 68 | + |
| 69 | + static readonly runtime: typeof proto3; |
| 70 | + static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.DeleteTrack"; |
| 71 | + static readonly fields: FieldList; |
| 72 | + |
| 73 | + static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteTrack; |
| 74 | + |
| 75 | + static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteTrack; |
| 76 | + |
| 77 | + static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteTrack; |
| 78 | + |
| 79 | + static equals(a: DeleteTrack | PlainMessage<DeleteTrack> | undefined, b: DeleteTrack | PlainMessage<DeleteTrack> | undefined): boolean; |
| 80 | +} |
| 81 | + |
| 82 | +/** |
| 83 | + * Set this entity as a "High Priority Track". |
| 84 | + * The tasked Platform is responsible for maintaining a list of current High-Priority tracks. |
| 85 | + * |
| 86 | + * @generated from message anduril.tasks.ad.desertguardian.common.v1.SetHighPriorityTrack |
| 87 | + */ |
| 88 | +export declare class SetHighPriorityTrack extends Message<SetHighPriorityTrack> { |
| 89 | + /** |
| 90 | + * @generated from field: string entity_id = 1; |
| 91 | + */ |
| 92 | + entityId: string; |
| 93 | + |
| 94 | + constructor(data?: PartialMessage<SetHighPriorityTrack>); |
| 95 | + |
| 96 | + static readonly runtime: typeof proto3; |
| 97 | + static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.SetHighPriorityTrack"; |
| 98 | + static readonly fields: FieldList; |
| 99 | + |
| 100 | + static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetHighPriorityTrack; |
| 101 | + |
| 102 | + static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetHighPriorityTrack; |
| 103 | + |
| 104 | + static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetHighPriorityTrack; |
| 105 | + |
| 106 | + static equals(a: SetHighPriorityTrack | PlainMessage<SetHighPriorityTrack> | undefined, b: SetHighPriorityTrack | PlainMessage<SetHighPriorityTrack> | undefined): boolean; |
| 107 | +} |
| 108 | + |
| 109 | +/** |
| 110 | + * Unset this entity as a "High Priority Track". |
| 111 | + * The tasked Platform is responsible for maintaining a list of current High-Priority tracks. |
| 112 | + * |
| 113 | + * @generated from message anduril.tasks.ad.desertguardian.common.v1.RemoveHighPriorityTrack |
| 114 | + */ |
| 115 | +export declare class RemoveHighPriorityTrack extends Message<RemoveHighPriorityTrack> { |
| 116 | + /** |
| 117 | + * @generated from field: string entity_id = 1; |
| 118 | + */ |
| 119 | + entityId: string; |
| 120 | + |
| 121 | + constructor(data?: PartialMessage<RemoveHighPriorityTrack>); |
| 122 | + |
| 123 | + static readonly runtime: typeof proto3; |
| 124 | + static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.RemoveHighPriorityTrack"; |
| 125 | + static readonly fields: FieldList; |
| 126 | + |
| 127 | + static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RemoveHighPriorityTrack; |
| 128 | + |
| 129 | + static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RemoveHighPriorityTrack; |
| 130 | + |
| 131 | + static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RemoveHighPriorityTrack; |
| 132 | + |
| 133 | + static equals(a: RemoveHighPriorityTrack | PlainMessage<RemoveHighPriorityTrack> | undefined, b: RemoveHighPriorityTrack | PlainMessage<RemoveHighPriorityTrack> | undefined): boolean; |
| 134 | +} |
| 135 | + |
0 commit comments