risingwave_pb/sim/
secret.rs1#[derive(prost_helpers::AnyPB)]
3#[derive(Clone, PartialEq, ::prost::Message)]
4pub struct SecretMetaBackend {
5 #[prost(bytes = "vec", tag = "1")]
6 pub value: ::prost::alloc::vec::Vec<u8>,
7}
8#[derive(prost_helpers::AnyPB)]
9#[derive(Clone, PartialEq, ::prost::Message)]
10pub struct SecretHashicropValutBackend {
11 #[prost(string, tag = "1")]
12 pub host: ::prost::alloc::string::String,
13 #[prost(string, tag = "2")]
14 pub vault_token: ::prost::alloc::string::String,
15}
16#[derive(prost_helpers::AnyPB)]
17#[derive(Clone, PartialEq, ::prost::Message)]
18pub struct Secret {
19 #[prost(oneof = "secret::SecretBackend", tags = "1, 2")]
21 pub secret_backend: ::core::option::Option<secret::SecretBackend>,
22}
23pub mod secret {
25 #[derive(prost_helpers::AnyPB)]
27 #[derive(Clone, PartialEq, ::prost::Oneof)]
28 pub enum SecretBackend {
29 #[prost(message, tag = "1")]
30 Meta(super::SecretMetaBackend),
31 #[prost(message, tag = "2")]
32 HashicorpVault(super::SecretHashicropValutBackend),
33 }
34}
35#[derive(prost_helpers::AnyPB)]
36#[derive(Eq, Hash)]
37#[derive(Clone, Copy, PartialEq, ::prost::Message)]
38pub struct SecretRef {
39 #[prost(uint32, tag = "1")]
40 pub secret_id: u32,
41 #[prost(enumeration = "secret_ref::RefAsType", tag = "2")]
42 pub ref_as: i32,
43}
44pub mod secret_ref {
46 #[derive(prost_helpers::AnyPB)]
47 #[derive(
48 Clone,
49 Copy,
50 Debug,
51 PartialEq,
52 Eq,
53 Hash,
54 PartialOrd,
55 Ord,
56 ::prost::Enumeration
57 )]
58 #[repr(i32)]
59 pub enum RefAsType {
60 Unspecified = 0,
61 Text = 1,
62 File = 2,
64 }
65 impl RefAsType {
66 pub fn as_str_name(&self) -> &'static str {
71 match self {
72 Self::Unspecified => "UNSPECIFIED",
73 Self::Text => "TEXT",
74 Self::File => "FILE",
75 }
76 }
77 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
79 match value {
80 "UNSPECIFIED" => Some(Self::Unspecified),
81 "TEXT" => Some(Self::Text),
82 "FILE" => Some(Self::File),
83 _ => None,
84 }
85 }
86 }
87}