Package xyz.block.ftl.language.v1
Interface BuildSuccessOrBuilder
-
- All Implemented Interfaces:
-
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
public interface BuildSuccessOrBuilder implements MessageOrBuilder
-
-
Method Summary
Modifier and Type Method Description abstract StringgetContextId()The id of build context used while building.string context_id = 1;abstract ByteStringgetContextIdBytes()The id of build context used while building.string context_id = 1;abstract booleangetIsAutomaticRebuild()Indicates whether the build was automatically started by the plugin, rather than due to a Build rpc call.bool is_automatic_rebuild = 2;abstract booleanhasModule()Module schema for the built module.xyz.block.ftl.schema.v1.Module module = 3;abstract ModulegetModule()Module schema for the built module.xyz.block.ftl.schema.v1.Module module = 3;abstract ModuleOrBuildergetModuleOrBuilder()Module schema for the built module.xyz.block.ftl.schema.v1.Module module = 3;abstract List<String>getDeployList()Paths for files/directories to be deployedrepeated string deploy = 4;abstract intgetDeployCount()Paths for files/directories to be deployedrepeated string deploy = 4;abstract StringgetDeploy(int index)Paths for files/directories to be deployedrepeated string deploy = 4;abstract ByteStringgetDeployBytes(int index)Paths for files/directories to be deployedrepeated string deploy = 4;abstract StringgetDockerImage()Name of the docker image to use for the runnerstring docker_image = 5;abstract ByteStringgetDockerImageBytes()Name of the docker image to use for the runnerstring docker_image = 5;abstract booleanhasErrors()Errors contains any errors that occurred during the build No errors can have a level of ERROR, instead a BuildFailure should be sent Instead this is useful for INFO and WARN level errors..xyz.block.ftl.language.v1.ErrorList errors = 6;abstract ErrorListgetErrors()Errors contains any errors that occurred during the build No errors can have a level of ERROR, instead a BuildFailure should be sent Instead this is useful for INFO and WARN level errors..xyz.block.ftl.language.v1.ErrorList errors = 6;abstract ErrorListOrBuildergetErrorsOrBuilder()Errors contains any errors that occurred during the build No errors can have a level of ERROR, instead a BuildFailure should be sent Instead this is useful for INFO and WARN level errors..xyz.block.ftl.language.v1.ErrorList errors = 6;abstract booleanhasDevEndpoint()Dev mode endpoint URI. If this is set then rather than trying to deploy the module, FTL will start a runner that connects to this endpoint.optional string dev_endpoint = 7;abstract StringgetDevEndpoint()Dev mode endpoint URI. If this is set then rather than trying to deploy the module, FTL will start a runner that connects to this endpoint.optional string dev_endpoint = 7;abstract ByteStringgetDevEndpointBytes()Dev mode endpoint URI. If this is set then rather than trying to deploy the module, FTL will start a runner that connects to this endpoint.optional string dev_endpoint = 7;abstract booleanhasDebugPort()Dev mode debug portoptional int32 debug_port = 8;abstract intgetDebugPort()Dev mode debug portoptional int32 debug_port = 8;abstract booleanhasDevRunnerInfoFile()Dev mode runner info file, this file is used to allow the runner to communicate provisioner info back to the pluginoptional string dev_runner_info_file = 9;abstract StringgetDevRunnerInfoFile()Dev mode runner info file, this file is used to allow the runner to communicate provisioner info back to the pluginoptional string dev_runner_info_file = 9;abstract ByteStringgetDevRunnerInfoFileBytes()Dev mode runner info file, this file is used to allow the runner to communicate provisioner info back to the pluginoptional string dev_runner_info_file = 9;-
Methods inherited from class com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof -
Methods inherited from class com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getContextId
abstract String getContextId()
The id of build context used while building.string context_id = 1;- Returns:
The contextId.
-
getContextIdBytes
abstract ByteString getContextIdBytes()
The id of build context used while building.string context_id = 1;- Returns:
The bytes for contextId.
-
getIsAutomaticRebuild
abstract boolean getIsAutomaticRebuild()
Indicates whether the build was automatically started by the plugin, rather than due to a Build rpc call.bool is_automatic_rebuild = 2;- Returns:
The isAutomaticRebuild.
-
hasModule
abstract boolean hasModule()
Module schema for the built module.xyz.block.ftl.schema.v1.Module module = 3;- Returns:
Whether the module field is set.
-
getModule
abstract Module getModule()
Module schema for the built module.xyz.block.ftl.schema.v1.Module module = 3;- Returns:
The module.
-
getModuleOrBuilder
abstract ModuleOrBuilder getModuleOrBuilder()
Module schema for the built module.xyz.block.ftl.schema.v1.Module module = 3;
-
getDeployList
abstract List<String> getDeployList()
Paths for files/directories to be deployedrepeated string deploy = 4;- Returns:
A list containing the deploy.
-
getDeployCount
abstract int getDeployCount()
Paths for files/directories to be deployedrepeated string deploy = 4;- Returns:
The count of deploy.
-
getDeploy
abstract String getDeploy(int index)
Paths for files/directories to be deployedrepeated string deploy = 4;- Parameters:
index- The index of the element to return.- Returns:
The deploy at the given index.
-
getDeployBytes
abstract ByteString getDeployBytes(int index)
Paths for files/directories to be deployedrepeated string deploy = 4;- Parameters:
index- The index of the value to return.- Returns:
The bytes of the deploy at the given index.
-
getDockerImage
abstract String getDockerImage()
Name of the docker image to use for the runnerstring docker_image = 5;- Returns:
The dockerImage.
-
getDockerImageBytes
abstract ByteString getDockerImageBytes()
Name of the docker image to use for the runnerstring docker_image = 5;- Returns:
The bytes for dockerImage.
-
hasErrors
abstract boolean hasErrors()
Errors contains any errors that occurred during the build No errors can have a level of ERROR, instead a BuildFailure should be sent Instead this is useful for INFO and WARN level errors..xyz.block.ftl.language.v1.ErrorList errors = 6;- Returns:
Whether the errors field is set.
-
getErrors
abstract ErrorList getErrors()
Errors contains any errors that occurred during the build No errors can have a level of ERROR, instead a BuildFailure should be sent Instead this is useful for INFO and WARN level errors..xyz.block.ftl.language.v1.ErrorList errors = 6;- Returns:
The errors.
-
getErrorsOrBuilder
abstract ErrorListOrBuilder getErrorsOrBuilder()
Errors contains any errors that occurred during the build No errors can have a level of ERROR, instead a BuildFailure should be sent Instead this is useful for INFO and WARN level errors..xyz.block.ftl.language.v1.ErrorList errors = 6;
-
hasDevEndpoint
abstract boolean hasDevEndpoint()
Dev mode endpoint URI. If this is set then rather than trying to deploy the module, FTL will start a runner that connects to this endpoint.optional string dev_endpoint = 7;- Returns:
Whether the devEndpoint field is set.
-
getDevEndpoint
abstract String getDevEndpoint()
Dev mode endpoint URI. If this is set then rather than trying to deploy the module, FTL will start a runner that connects to this endpoint.optional string dev_endpoint = 7;- Returns:
The devEndpoint.
-
getDevEndpointBytes
abstract ByteString getDevEndpointBytes()
Dev mode endpoint URI. If this is set then rather than trying to deploy the module, FTL will start a runner that connects to this endpoint.optional string dev_endpoint = 7;- Returns:
The bytes for devEndpoint.
-
hasDebugPort
abstract boolean hasDebugPort()
Dev mode debug portoptional int32 debug_port = 8;- Returns:
Whether the debugPort field is set.
-
getDebugPort
abstract int getDebugPort()
Dev mode debug portoptional int32 debug_port = 8;- Returns:
The debugPort.
-
hasDevRunnerInfoFile
abstract boolean hasDevRunnerInfoFile()
Dev mode runner info file, this file is used to allow the runner to communicate provisioner info back to the pluginoptional string dev_runner_info_file = 9;- Returns:
Whether the devRunnerInfoFile field is set.
-
getDevRunnerInfoFile
abstract String getDevRunnerInfoFile()
Dev mode runner info file, this file is used to allow the runner to communicate provisioner info back to the pluginoptional string dev_runner_info_file = 9;- Returns:
The devRunnerInfoFile.
-
getDevRunnerInfoFileBytes
abstract ByteString getDevRunnerInfoFileBytes()
Dev mode runner info file, this file is used to allow the runner to communicate provisioner info back to the pluginoptional string dev_runner_info_file = 9;- Returns:
The bytes for devRunnerInfoFile.
-
-
-
-