#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CloudApplication {
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
#[prost(enumeration = "cloud_application::Status", tag = "2")]
pub status: i32,
#[prost(message, optional, tag = "3")]
pub billing: ::core::option::Option<cloud_application::Billing>,
}
pub mod cloud_application {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Billing {
#[prost(enumeration = "billing::BillingType", tag = "1")]
pub r#type: i32,
#[prost(message, repeated, tag = "2")]
pub subscriptions: ::prost::alloc::vec::Vec<billing::Subscription>,
}
pub mod billing {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Subscription {
#[prost(string, tag = "1")]
pub instance_id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub template_id: ::prost::alloc::string::String,
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum BillingType {
Unspecified = 0,
PayAsYouGo = 1,
Subscription = 2,
}
impl BillingType {
pub fn as_str_name(&self) -> &'static str {
match self {
BillingType::Unspecified => "BILLING_TYPE_UNSPECIFIED",
BillingType::PayAsYouGo => "PAY_AS_YOU_GO",
BillingType::Subscription => "SUBSCRIPTION",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"BILLING_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"PAY_AS_YOU_GO" => Some(Self::PayAsYouGo),
"SUBSCRIPTION" => Some(Self::Subscription),
_ => None,
}
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Status {
Unspecified = 0,
Processing = 1,
Deployed = 2,
Failed = 3,
}
impl Status {
pub fn as_str_name(&self) -> &'static str {
match self {
Status::Unspecified => "STATUS_UNSPECIFIED",
Status::Processing => "PROCESSING",
Status::Deployed => "DEPLOYED",
Status::Failed => "FAILED",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATUS_UNSPECIFIED" => Some(Self::Unspecified),
"PROCESSING" => Some(Self::Processing),
"DEPLOYED" => Some(Self::Deployed),
"FAILED" => Some(Self::Failed),
_ => None,
}
}
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ResolveByWorkloadRequest {
#[prost(enumeration = "resolve_by_workload_request::WorkloadType", tag = "1")]
pub workload_type: i32,
#[prost(string, tag = "2")]
pub workload_id: ::prost::alloc::string::String,
}
pub mod resolve_by_workload_request {
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum WorkloadType {
Unspecified = 0,
ComputeInstance = 1,
}
impl WorkloadType {
pub fn as_str_name(&self) -> &'static str {
match self {
WorkloadType::Unspecified => "WORKLOAD_TYPE_UNSPECIFIED",
WorkloadType::ComputeInstance => "COMPUTE_INSTANCE",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"WORKLOAD_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"COMPUTE_INSTANCE" => Some(Self::ComputeInstance),
_ => None,
}
}
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ResolveByWorkloadResponse {
#[prost(message, optional, tag = "1")]
pub cloud_application: ::core::option::Option<CloudApplication>,
}
pub mod cloud_application_service_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct CloudApplicationServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl CloudApplicationServiceClient<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> CloudApplicationServiceClient<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,
) -> CloudApplicationServiceClient<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,
{
CloudApplicationServiceClient::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 get(
&mut self,
request: impl tonic::IntoRequest<()>,
) -> std::result::Result<
tonic::Response<super::CloudApplication>,
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(
"/yandex.cloud.cloudapps.workload.v1.CloudApplicationService/Get",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.cloudapps.workload.v1.CloudApplicationService",
"Get",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn resolve_by_workload(
&mut self,
request: impl tonic::IntoRequest<super::ResolveByWorkloadRequest>,
) -> std::result::Result<
tonic::Response<super::ResolveByWorkloadResponse>,
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(
"/yandex.cloud.cloudapps.workload.v1.CloudApplicationService/ResolveByWorkload",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.cloudapps.workload.v1.CloudApplicationService",
"ResolveByWorkload",
),
);
self.inner.unary(req, path, codec).await
}
}
}