#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ControllerRuntimeDependency {
#[prost(message, optional, tag = "1")]
pub metadata: ::core::option::Option<super::common::Metadata>,
#[prost(message, repeated, tag = "2")]
pub edges: ::prost::alloc::vec::Vec<ControllerDependencyEdge>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ControllerRuntimeDependenciesResponse {
#[prost(message, repeated, tag = "1")]
pub messages: ::prost::alloc::vec::Vec<ControllerRuntimeDependency>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ControllerDependencyEdge {
#[prost(string, tag = "1")]
pub controller_name: ::prost::alloc::string::String,
#[prost(enumeration = "DependencyEdgeType", tag = "2")]
pub edge_type: i32,
#[prost(string, tag = "3")]
pub resource_namespace: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub resource_type: ::prost::alloc::string::String,
#[prost(string, tag = "5")]
pub resource_id: ::prost::alloc::string::String,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum DependencyEdgeType {
OutputExclusive = 0,
OutputShared = 3,
InputStrong = 1,
InputWeak = 2,
InputDestroyReady = 4,
}
impl DependencyEdgeType {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::OutputExclusive => "OUTPUT_EXCLUSIVE",
Self::OutputShared => "OUTPUT_SHARED",
Self::InputStrong => "INPUT_STRONG",
Self::InputWeak => "INPUT_WEAK",
Self::InputDestroyReady => "INPUT_DESTROY_READY",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"OUTPUT_EXCLUSIVE" => Some(Self::OutputExclusive),
"OUTPUT_SHARED" => Some(Self::OutputShared),
"INPUT_STRONG" => Some(Self::InputStrong),
"INPUT_WEAK" => Some(Self::InputWeak),
"INPUT_DESTROY_READY" => Some(Self::InputDestroyReady),
_ => None,
}
}
}
pub mod inspect_service_client {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct InspectServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl InspectServiceClient<tonic::transport::Channel> {
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> InspectServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::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,
) -> InspectServiceClient<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> + std::marker::Send + std::marker::Sync,
{
InspectServiceClient::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 controller_runtime_dependencies(
&mut self,
request: impl tonic::IntoRequest<super::super::google::protobuf::Empty>,
) -> std::result::Result<
tonic::Response<super::ControllerRuntimeDependenciesResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/inspect.InspectService/ControllerRuntimeDependencies",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"inspect.InspectService",
"ControllerRuntimeDependencies",
),
);
self.inner.unary(req, path, codec).await
}
}
}