com.google.appengine.v1.HealthCheckOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-appengine-v1 Show documentation
Show all versions of proto-google-appengine-v1 Show documentation
PROTO library for proto-google-appengine-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/appengine/v1/app_yaml.proto
package com.google.appengine.v1;
public interface HealthCheckOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.appengine.v1.HealthCheck)
com.google.protobuf.MessageOrBuilder {
/**
*
* Whether to explicitly disable health checks for this instance.
*
*
* bool disable_health_check = 1;
*/
boolean getDisableHealthCheck();
/**
*
* Host header to send when performing an HTTP health check.
* Example: "myapp.appspot.com"
*
*
* string host = 2;
*/
java.lang.String getHost();
/**
*
* Host header to send when performing an HTTP health check.
* Example: "myapp.appspot.com"
*
*
* string host = 2;
*/
com.google.protobuf.ByteString
getHostBytes();
/**
*
* Number of consecutive successful health checks required before receiving
* traffic.
*
*
* uint32 healthy_threshold = 3;
*/
int getHealthyThreshold();
/**
*
* Number of consecutive failed health checks required before removing
* traffic.
*
*
* uint32 unhealthy_threshold = 4;
*/
int getUnhealthyThreshold();
/**
*
* Number of consecutive failed health checks required before an instance is
* restarted.
*
*
* uint32 restart_threshold = 5;
*/
int getRestartThreshold();
/**
*
* Interval between health checks.
*
*
* .google.protobuf.Duration check_interval = 6;
*/
boolean hasCheckInterval();
/**
*
* Interval between health checks.
*
*
* .google.protobuf.Duration check_interval = 6;
*/
com.google.protobuf.Duration getCheckInterval();
/**
*
* Interval between health checks.
*
*
* .google.protobuf.Duration check_interval = 6;
*/
com.google.protobuf.DurationOrBuilder getCheckIntervalOrBuilder();
/**
*
* Time before the health check is considered failed.
*
*
* .google.protobuf.Duration timeout = 7;
*/
boolean hasTimeout();
/**
*
* Time before the health check is considered failed.
*
*
* .google.protobuf.Duration timeout = 7;
*/
com.google.protobuf.Duration getTimeout();
/**
*
* Time before the health check is considered failed.
*
*
* .google.protobuf.Duration timeout = 7;
*/
com.google.protobuf.DurationOrBuilder getTimeoutOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy