build.bazel.remote.execution.v2.OutputSymlinkOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
// Protobuf Java Version: 3.25.3
package build.bazel.remote.execution.v2;
public interface OutputSymlinkOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.OutputSymlink)
com.google.protobuf.MessageOrBuilder {
/**
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @return The path.
*/
java.lang.String getPath();
/**
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @return The bytes for path.
*/
com.google.protobuf.ByteString
getPathBytes();
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
*
* string target = 2;
* @return The target.
*/
java.lang.String getTarget();
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
*
* string target = 2;
* @return The bytes for target.
*/
com.google.protobuf.ByteString
getTargetBytes();
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
* @return Whether the nodeProperties field is set.
*/
boolean hasNodeProperties();
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
* @return The nodeProperties.
*/
build.bazel.remote.execution.v2.NodeProperties getNodeProperties();
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
*/
build.bazel.remote.execution.v2.NodePropertiesOrBuilder getNodePropertiesOrBuilder();
}