java.io.deephaven.proto.backplane.grpc.SaveFileRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/storage.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface SaveFileRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.SaveFileRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* True to permit replacing an existing file, false to require that no file already exists with that name.
*
*
* bool allow_overwrite = 1;
* @return The allowOverwrite.
*/
boolean getAllowOverwrite();
/**
*
* The path to the file to write contents to
*
*
* string path = 2;
* @return The path.
*/
java.lang.String getPath();
/**
*
* The path to the file to write contents to
*
*
* string path = 2;
* @return The bytes for path.
*/
com.google.protobuf.ByteString
getPathBytes();
/**
*
* The contents to use when creating then file, or to use to replace the file.
*
*
* bytes contents = 3;
* @return The contents.
*/
com.google.protobuf.ByteString getContents();
}