pub mod alpha;
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Empty {}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct KeyValue {
#[prost(string, tag = "1")]
pub key: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub value: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Duration {
#[prost(int64, tag = "1")]
pub seconds: i64,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GameServer {
#[prost(message, optional, tag = "1")]
pub object_meta: ::core::option::Option<game_server::ObjectMeta>,
#[prost(message, optional, tag = "2")]
pub spec: ::core::option::Option<game_server::Spec>,
#[prost(message, optional, tag = "3")]
pub status: ::core::option::Option<game_server::Status>,
}
pub mod game_server {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ObjectMeta {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub namespace: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub uid: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub resource_version: ::prost::alloc::string::String,
#[prost(int64, tag = "5")]
pub generation: i64,
#[prost(int64, tag = "6")]
pub creation_timestamp: i64,
#[prost(int64, tag = "7")]
pub deletion_timestamp: i64,
#[prost(map = "string, string", tag = "8")]
pub annotations: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(map = "string, string", tag = "9")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Spec {
#[prost(message, optional, tag = "1")]
pub health: ::core::option::Option<spec::Health>,
}
pub mod spec {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Health {
#[prost(bool, tag = "1")]
pub disabled: bool,
#[prost(int32, tag = "2")]
pub period_seconds: i32,
#[prost(int32, tag = "3")]
pub failure_threshold: i32,
#[prost(int32, tag = "4")]
pub initial_delay_seconds: i32,
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Status {
#[prost(string, tag = "1")]
pub state: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub address: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "3")]
pub ports: ::prost::alloc::vec::Vec<status::Port>,
#[prost(message, optional, tag = "4")]
pub players: ::core::option::Option<status::PlayerStatus>,
}
pub mod status {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Port {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(int32, tag = "2")]
pub port: i32,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PlayerStatus {
#[prost(int64, tag = "1")]
pub count: i64,
#[prost(int64, tag = "2")]
pub capacity: i64,
#[prost(string, repeated, tag = "3")]
pub ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
}
}
pub mod sdk_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::http::Uri;
use tonic::codegen::*;
#[derive(Debug, Clone)]
pub struct SdkClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> SdkClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(inner: T, interceptor: F) -> SdkClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<http::Request<tonic::body::BoxBody>>>::Error:
Into<StdError> + Send + Sync,
{
SdkClient::new(InterceptedService::new(inner, interceptor))
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
pub async fn ready(
&mut self,
request: impl tonic::IntoRequest<super::Empty>,
) -> std::result::Result<tonic::Response<super::Empty>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/Ready");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "Ready"));
self.inner.unary(req, path, codec).await
}
pub async fn allocate(
&mut self,
request: impl tonic::IntoRequest<super::Empty>,
) -> std::result::Result<tonic::Response<super::Empty>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/Allocate");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "Allocate"));
self.inner.unary(req, path, codec).await
}
pub async fn shutdown(
&mut self,
request: impl tonic::IntoRequest<super::Empty>,
) -> std::result::Result<tonic::Response<super::Empty>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/Shutdown");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "Shutdown"));
self.inner.unary(req, path, codec).await
}
pub async fn health(
&mut self,
request: impl tonic::IntoStreamingRequest<Message = super::Empty>,
) -> std::result::Result<tonic::Response<super::Empty>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/Health");
let mut req = request.into_streaming_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "Health"));
self.inner.client_streaming(req, path, codec).await
}
pub async fn get_game_server(
&mut self,
request: impl tonic::IntoRequest<super::Empty>,
) -> std::result::Result<tonic::Response<super::GameServer>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/GetGameServer");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "GetGameServer"));
self.inner.unary(req, path, codec).await
}
pub async fn watch_game_server(
&mut self,
request: impl tonic::IntoRequest<super::Empty>,
) -> std::result::Result<
tonic::Response<tonic::codec::Streaming<super::GameServer>>,
tonic::Status,
> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/WatchGameServer");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "WatchGameServer"));
self.inner.server_streaming(req, path, codec).await
}
pub async fn set_label(
&mut self,
request: impl tonic::IntoRequest<super::KeyValue>,
) -> std::result::Result<tonic::Response<super::Empty>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/SetLabel");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "SetLabel"));
self.inner.unary(req, path, codec).await
}
pub async fn set_annotation(
&mut self,
request: impl tonic::IntoRequest<super::KeyValue>,
) -> std::result::Result<tonic::Response<super::Empty>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/SetAnnotation");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "SetAnnotation"));
self.inner.unary(req, path, codec).await
}
pub async fn reserve(
&mut self,
request: impl tonic::IntoRequest<super::Duration>,
) -> std::result::Result<tonic::Response<super::Empty>, tonic::Status> {
self.inner.ready().await.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static("/agones.dev.sdk.SDK/Reserve");
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("agones.dev.sdk.SDK", "Reserve"));
self.inner.unary(req, path, codec).await
}
}
}