io.ray.serve.generated.DeploymentConfigOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: src/ray/protobuf/serve.proto
package io.ray.serve.generated;
public interface DeploymentConfigOrBuilder extends
// @@protoc_insertion_point(interface_extends:ray.serve.DeploymentConfig)
com.google.protobuf.MessageOrBuilder {
/**
* int32 num_replicas = 1 [json_name = "numReplicas"];
* @return The numReplicas.
*/
int getNumReplicas();
/**
* int32 max_ongoing_requests = 2 [json_name = "maxOngoingRequests"];
* @return The maxOngoingRequests.
*/
int getMaxOngoingRequests();
/**
* int32 max_queued_requests = 3 [json_name = "maxQueuedRequests"];
* @return The maxQueuedRequests.
*/
int getMaxQueuedRequests();
/**
* bytes user_config = 4 [json_name = "userConfig"];
* @return The userConfig.
*/
com.google.protobuf.ByteString getUserConfig();
/**
* double graceful_shutdown_wait_loop_s = 5 [json_name = "gracefulShutdownWaitLoopS"];
* @return The gracefulShutdownWaitLoopS.
*/
double getGracefulShutdownWaitLoopS();
/**
* double graceful_shutdown_timeout_s = 6 [json_name = "gracefulShutdownTimeoutS"];
* @return The gracefulShutdownTimeoutS.
*/
double getGracefulShutdownTimeoutS();
/**
* double health_check_period_s = 7 [json_name = "healthCheckPeriodS"];
* @return The healthCheckPeriodS.
*/
double getHealthCheckPeriodS();
/**
* double health_check_timeout_s = 8 [json_name = "healthCheckTimeoutS"];
* @return The healthCheckTimeoutS.
*/
double getHealthCheckTimeoutS();
/**
* bool is_cross_language = 9 [json_name = "isCrossLanguage"];
* @return The isCrossLanguage.
*/
boolean getIsCrossLanguage();
/**
* .ray.serve.DeploymentLanguage deployment_language = 10 [json_name = "deploymentLanguage"];
* @return The enum numeric value on the wire for deploymentLanguage.
*/
int getDeploymentLanguageValue();
/**
* .ray.serve.DeploymentLanguage deployment_language = 10 [json_name = "deploymentLanguage"];
* @return The deploymentLanguage.
*/
io.ray.serve.generated.DeploymentLanguage getDeploymentLanguage();
/**
* .ray.serve.AutoscalingConfig autoscaling_config = 11 [json_name = "autoscalingConfig"];
* @return Whether the autoscalingConfig field is set.
*/
boolean hasAutoscalingConfig();
/**
* .ray.serve.AutoscalingConfig autoscaling_config = 11 [json_name = "autoscalingConfig"];
* @return The autoscalingConfig.
*/
io.ray.serve.generated.AutoscalingConfig getAutoscalingConfig();
/**
* .ray.serve.AutoscalingConfig autoscaling_config = 11 [json_name = "autoscalingConfig"];
*/
io.ray.serve.generated.AutoscalingConfigOrBuilder getAutoscalingConfigOrBuilder();
/**
* string version = 12 [json_name = "version"];
* @return The version.
*/
java.lang.String getVersion();
/**
* string version = 12 [json_name = "version"];
* @return The bytes for version.
*/
com.google.protobuf.ByteString
getVersionBytes();
/**
* repeated string user_configured_option_names = 13 [json_name = "userConfiguredOptionNames"];
* @return A list containing the userConfiguredOptionNames.
*/
java.util.List
getUserConfiguredOptionNamesList();
/**
* repeated string user_configured_option_names = 13 [json_name = "userConfiguredOptionNames"];
* @return The count of userConfiguredOptionNames.
*/
int getUserConfiguredOptionNamesCount();
/**
* repeated string user_configured_option_names = 13 [json_name = "userConfiguredOptionNames"];
* @param index The index of the element to return.
* @return The userConfiguredOptionNames at the given index.
*/
java.lang.String getUserConfiguredOptionNames(int index);
/**
* repeated string user_configured_option_names = 13 [json_name = "userConfiguredOptionNames"];
* @param index The index of the value to return.
* @return The bytes of the userConfiguredOptionNames at the given index.
*/
com.google.protobuf.ByteString
getUserConfiguredOptionNamesBytes(int index);
/**
* .ray.serve.LoggingConfig logging_config = 14 [json_name = "loggingConfig"];
* @return Whether the loggingConfig field is set.
*/
boolean hasLoggingConfig();
/**
* .ray.serve.LoggingConfig logging_config = 14 [json_name = "loggingConfig"];
* @return The loggingConfig.
*/
io.ray.serve.generated.LoggingConfig getLoggingConfig();
/**
* .ray.serve.LoggingConfig logging_config = 14 [json_name = "loggingConfig"];
*/
io.ray.serve.generated.LoggingConfigOrBuilder getLoggingConfigOrBuilder();
}