talos/api/resource/network/device_config.proto
Eddie Zaneski 5ba1df4695
chore: add java package to protos
This option must be defined at the proto level in order to have an
import path that is reasonably usable

Signed-off-by: Eddie Zaneski <eddiezane@gmail.com>
Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
2024-08-26 15:23:21 +04:00

13 lines
408 B
Protocol Buffer

syntax = "proto3";
package resource.network;
option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/network";
option java_package = "dev.talos.api.resource.network";
// DeviceConfigSpecSpec is the spec for the network.DeviceConfigSpec resource.
message DeviceConfigSpecSpec {
// Contains YAML marshalled device config (as part of the machine config).
bytes yaml_marshalled = 1;
}