mirror of https://github.com/dapr/rust-sdk.git
chore: bump protos to rc18 (#265)
Signed-off-by: Mike Nguyen <hey@mike.ee>
This commit is contained in:
parent
99d099f15e
commit
1508ea24cb
|
@ -2373,9 +2373,18 @@ pub struct GetMetadataResponse {
|
||||||
pub runtime_version: ::prost::alloc::string::String,
|
pub runtime_version: ::prost::alloc::string::String,
|
||||||
#[prost(string, repeated, tag = "9")]
|
#[prost(string, repeated, tag = "9")]
|
||||||
pub enabled_features: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
|
pub enabled_features: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
|
||||||
/// TODO: Cassie: probably add scheduler runtime status
|
|
||||||
#[prost(message, optional, tag = "10")]
|
#[prost(message, optional, tag = "10")]
|
||||||
pub actor_runtime: ::core::option::Option<ActorRuntime>,
|
pub actor_runtime: ::core::option::Option<ActorRuntime>,
|
||||||
|
#[prost(message, optional, tag = "11")]
|
||||||
|
pub scheduler: ::core::option::Option<MetadataScheduler>,
|
||||||
|
}
|
||||||
|
/// MetadataScheduler is a message that contains the list of addresses of the
|
||||||
|
/// scheduler connections.
|
||||||
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
|
pub struct MetadataScheduler {
|
||||||
|
/// connected_addresses the list of addresses of the scheduler connections.
|
||||||
|
#[prost(string, repeated, tag = "1")]
|
||||||
|
pub connected_addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
|
||||||
}
|
}
|
||||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
pub struct ActorRuntime {
|
pub struct ActorRuntime {
|
||||||
|
|
Binary file not shown.
|
@ -694,7 +694,14 @@ message GetMetadataResponse {
|
||||||
string runtime_version = 8 [json_name = "runtimeVersion"];
|
string runtime_version = 8 [json_name = "runtimeVersion"];
|
||||||
repeated string enabled_features = 9 [json_name = "enabledFeatures"];
|
repeated string enabled_features = 9 [json_name = "enabledFeatures"];
|
||||||
ActorRuntime actor_runtime = 10 [json_name = "actorRuntime"];
|
ActorRuntime actor_runtime = 10 [json_name = "actorRuntime"];
|
||||||
//TODO: Cassie: probably add scheduler runtime status
|
optional MetadataScheduler scheduler = 11 [json_name = "scheduler"];
|
||||||
|
}
|
||||||
|
|
||||||
|
// MetadataScheduler is a message that contains the list of addresses of the
|
||||||
|
// scheduler connections.
|
||||||
|
message MetadataScheduler {
|
||||||
|
// connected_addresses the list of addresses of the scheduler connections.
|
||||||
|
repeated string connected_addresses = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ActorRuntime {
|
message ActorRuntime {
|
||||||
|
@ -1344,4 +1351,4 @@ message ConversationResponse {
|
||||||
|
|
||||||
// An array of results.
|
// An array of results.
|
||||||
repeated ConversationResult outputs = 2;
|
repeated ConversationResult outputs = 2;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue