Skip to content

DataSource

saq.sandwich.proto.api.v1.DataSource

Description

Data source consisting of either a file or an inline value.

message DataSource {
  oneof specifier {
    // Local filesystem data source.
    string filename = 1;

    // Bytes inlined in the configuration.
    bytes inline_bytes = 2;

    // String inlined in the configuration.
    string inline_string = 3;
  }
}

Fields

oneof specifier

no description provided

oneof specifier {
    // Local filesystem data source.
    string filename = 1;

    // Bytes inlined in the configuration.
    bytes inline_bytes = 2;

    // String inlined in the configuration.
    string inline_string = 3;
  }

filename

Local filesystem data source.

string filename = 1;

inline_bytes

Bytes inlined in the configuration.

bytes inline_bytes = 2;

inline_string

String inlined in the configuration.

string inline_string = 3;