build.bazel.remote.execution.v2.SymlinkNodeOrBuilder 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 SymlinkNodeOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.SymlinkNode)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* 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 as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
*
* 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 as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
*
* 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();
}