1#[derive(prost_helpers::AnyPB)]
4#[derive(Clone, PartialEq, ::prost::Message)]
5pub struct ColIndexMapping {
6 #[prost(uint64, tag = "1")]
8 pub target_size: u64,
9 #[prost(int64, repeated, tag = "2")]
12 pub map: ::prost::alloc::vec::Vec<i64>,
13}
14#[derive(prost_helpers::AnyPB)]
15#[derive(Eq, Hash)]
16#[derive(Clone, PartialEq, ::prost::Message)]
17pub struct WatermarkDesc {
18 #[prost(uint32, tag = "1")]
20 pub watermark_idx: u32,
21 #[prost(message, optional, tag = "2")]
23 pub expr: ::core::option::Option<super::expr::ExprNode>,
24}
25#[derive(prost_helpers::AnyPB)]
26#[derive(Eq, Hash)]
27#[derive(Clone, PartialEq, ::prost::Message)]
28pub struct StreamSourceInfo {
29 #[prost(enumeration = "super::plan_common::RowFormatType", tag = "1")]
31 pub row_format: i32,
32 #[prost(string, tag = "2")]
33 pub row_schema_location: ::prost::alloc::string::String,
34 #[prost(bool, tag = "3")]
40 pub use_schema_registry: bool,
41 #[prost(string, tag = "4")]
42 pub proto_message_name: ::prost::alloc::string::String,
43 #[prost(int32, tag = "5")]
44 pub csv_delimiter: i32,
45 #[prost(bool, tag = "6")]
46 pub csv_has_header: bool,
47 #[prost(enumeration = "super::plan_common::FormatType", tag = "8")]
48 pub format: i32,
49 #[prost(enumeration = "super::plan_common::EncodeType", tag = "9")]
50 pub row_encode: i32,
51 #[prost(enumeration = "SchemaRegistryNameStrategy", tag = "10")]
52 pub name_strategy: i32,
53 #[prost(string, optional, tag = "11")]
54 pub key_message_name: ::core::option::Option<::prost::alloc::string::String>,
55 #[prost(message, optional, tag = "12")]
56 pub external_table: ::core::option::Option<super::plan_common::ExternalTableDesc>,
57 #[prost(bool, tag = "13")]
69 pub cdc_source_job: bool,
70 #[prost(bool, tag = "15")]
76 pub is_distributed: bool,
77 #[prost(btree_map = "string, string", tag = "14")]
79 pub format_encode_options: ::prost::alloc::collections::BTreeMap<
80 ::prost::alloc::string::String,
81 ::prost::alloc::string::String,
82 >,
83 #[prost(btree_map = "string, message", tag = "16")]
86 pub format_encode_secret_refs: ::prost::alloc::collections::BTreeMap<
87 ::prost::alloc::string::String,
88 super::secret::SecretRef,
89 >,
90 #[prost(uint32, optional, tag = "17")]
92 pub connection_id: ::core::option::Option<u32>,
93}
94#[derive(prost_helpers::AnyPB)]
95#[derive(Eq, Hash)]
96#[derive(Clone, PartialEq, ::prost::Message)]
97pub struct WebhookSourceInfo {
98 #[prost(message, optional, tag = "1")]
99 pub secret_ref: ::core::option::Option<super::secret::SecretRef>,
100 #[prost(message, optional, tag = "2")]
101 pub signature_expr: ::core::option::Option<super::expr::ExprNode>,
102 #[prost(bool, tag = "3")]
104 pub wait_for_persistence: bool,
105}
106#[derive(prost_helpers::AnyPB)]
107#[derive(Clone, PartialEq, ::prost::Message)]
108pub struct Source {
109 #[prost(uint32, tag = "1")]
112 pub id: u32,
113 #[prost(uint32, tag = "2")]
114 pub schema_id: u32,
115 #[prost(uint32, tag = "3")]
116 pub database_id: u32,
117 #[prost(string, tag = "4")]
118 pub name: ::prost::alloc::string::String,
119 #[prost(uint32, optional, tag = "5")]
122 pub row_id_index: ::core::option::Option<u32>,
123 #[prost(message, repeated, tag = "6")]
125 pub columns: ::prost::alloc::vec::Vec<super::plan_common::ColumnCatalog>,
126 #[prost(int32, repeated, tag = "7")]
129 pub pk_column_ids: ::prost::alloc::vec::Vec<i32>,
130 #[prost(btree_map = "string, string", tag = "8")]
132 pub with_properties: ::prost::alloc::collections::BTreeMap<
133 ::prost::alloc::string::String,
134 ::prost::alloc::string::String,
135 >,
136 #[prost(uint32, tag = "9")]
137 pub owner: u32,
138 #[prost(message, optional, tag = "10")]
139 pub info: ::core::option::Option<StreamSourceInfo>,
140 #[prost(message, repeated, tag = "11")]
143 pub watermark_descs: ::prost::alloc::vec::Vec<WatermarkDesc>,
144 #[prost(string, tag = "13")]
145 pub definition: ::prost::alloc::string::String,
146 #[prost(uint32, optional, tag = "14")]
148 pub connection_id: ::core::option::Option<u32>,
149 #[prost(uint64, optional, tag = "15")]
150 pub initialized_at_epoch: ::core::option::Option<u64>,
151 #[prost(uint64, optional, tag = "16")]
152 pub created_at_epoch: ::core::option::Option<u64>,
153 #[prost(string, optional, tag = "17")]
155 pub initialized_at_cluster_version: ::core::option::Option<
156 ::prost::alloc::string::String,
157 >,
158 #[prost(string, optional, tag = "18")]
159 pub created_at_cluster_version: ::core::option::Option<
160 ::prost::alloc::string::String,
161 >,
162 #[prost(btree_map = "string, message", tag = "19")]
165 pub secret_refs: ::prost::alloc::collections::BTreeMap<
166 ::prost::alloc::string::String,
167 super::secret::SecretRef,
168 >,
169 #[prost(uint64, tag = "100")]
171 pub version: u64,
172 #[prost(uint32, optional, tag = "101")]
173 pub rate_limit: ::core::option::Option<u32>,
174 #[prost(oneof = "source::OptionalAssociatedTableId", tags = "12")]
176 pub optional_associated_table_id: ::core::option::Option<
177 source::OptionalAssociatedTableId,
178 >,
179}
180pub mod source {
182 #[derive(prost_helpers::AnyPB)]
184 #[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
185 pub enum OptionalAssociatedTableId {
186 #[prost(uint32, tag = "12")]
187 AssociatedTableId(u32),
188 }
189}
190#[derive(prost_helpers::AnyPB)]
192#[derive(Clone, PartialEq, ::prost::Message)]
193pub struct SinkFormatDesc {
194 #[prost(enumeration = "super::plan_common::FormatType", tag = "1")]
195 pub format: i32,
196 #[prost(enumeration = "super::plan_common::EncodeType", tag = "2")]
197 pub encode: i32,
198 #[prost(btree_map = "string, string", tag = "3")]
199 pub options: ::prost::alloc::collections::BTreeMap<
200 ::prost::alloc::string::String,
201 ::prost::alloc::string::String,
202 >,
203 #[prost(enumeration = "super::plan_common::EncodeType", optional, tag = "4")]
204 pub key_encode: ::core::option::Option<i32>,
205 #[prost(btree_map = "string, message", tag = "5")]
207 pub secret_refs: ::prost::alloc::collections::BTreeMap<
208 ::prost::alloc::string::String,
209 super::secret::SecretRef,
210 >,
211 #[prost(uint32, optional, tag = "6")]
213 pub connection_id: ::core::option::Option<u32>,
214}
215#[derive(prost_helpers::AnyPB)]
220#[derive(Clone, PartialEq, ::prost::Message)]
221pub struct Sink {
222 #[prost(uint32, tag = "1")]
223 pub id: u32,
224 #[prost(uint32, tag = "2")]
225 pub schema_id: u32,
226 #[prost(uint32, tag = "3")]
227 pub database_id: u32,
228 #[prost(string, tag = "4")]
229 pub name: ::prost::alloc::string::String,
230 #[prost(message, repeated, tag = "5")]
231 pub columns: ::prost::alloc::vec::Vec<super::plan_common::ColumnCatalog>,
232 #[prost(message, repeated, tag = "6")]
234 pub plan_pk: ::prost::alloc::vec::Vec<super::common::ColumnOrder>,
235 #[deprecated]
236 #[prost(uint32, repeated, packed = "false", tag = "7")]
237 pub dependent_relations: ::prost::alloc::vec::Vec<u32>,
238 #[prost(int32, repeated, tag = "8")]
239 pub distribution_key: ::prost::alloc::vec::Vec<i32>,
240 #[prost(int32, repeated, tag = "9")]
242 pub downstream_pk: ::prost::alloc::vec::Vec<i32>,
243 #[prost(enumeration = "SinkType", tag = "10")]
245 pub sink_type: i32,
246 #[prost(uint32, tag = "11")]
247 pub owner: u32,
248 #[prost(btree_map = "string, string", tag = "12")]
249 pub properties: ::prost::alloc::collections::BTreeMap<
250 ::prost::alloc::string::String,
251 ::prost::alloc::string::String,
252 >,
253 #[prost(string, tag = "13")]
254 pub definition: ::prost::alloc::string::String,
255 #[prost(uint32, optional, tag = "14")]
257 pub connection_id: ::core::option::Option<u32>,
258 #[prost(uint64, optional, tag = "15")]
259 pub initialized_at_epoch: ::core::option::Option<u64>,
260 #[prost(uint64, optional, tag = "16")]
261 pub created_at_epoch: ::core::option::Option<u64>,
262 #[prost(string, tag = "17")]
263 pub db_name: ::prost::alloc::string::String,
264 #[prost(string, tag = "18")]
265 pub sink_from_name: ::prost::alloc::string::String,
266 #[prost(enumeration = "StreamJobStatus", tag = "19")]
267 pub stream_job_status: i32,
268 #[prost(message, optional, tag = "20")]
269 pub format_desc: ::core::option::Option<SinkFormatDesc>,
270 #[prost(uint32, optional, tag = "21")]
272 pub target_table: ::core::option::Option<u32>,
273 #[prost(string, optional, tag = "22")]
275 pub initialized_at_cluster_version: ::core::option::Option<
276 ::prost::alloc::string::String,
277 >,
278 #[prost(string, optional, tag = "23")]
279 pub created_at_cluster_version: ::core::option::Option<
280 ::prost::alloc::string::String,
281 >,
282 #[prost(enumeration = "CreateType", tag = "24")]
284 pub create_type: i32,
285 #[prost(btree_map = "string, message", tag = "25")]
288 pub secret_refs: ::prost::alloc::collections::BTreeMap<
289 ::prost::alloc::string::String,
290 super::secret::SecretRef,
291 >,
292 #[prost(message, repeated, tag = "26")]
294 pub original_target_columns: ::prost::alloc::vec::Vec<
295 super::plan_common::ColumnCatalog,
296 >,
297}
298#[derive(prost_helpers::AnyPB)]
299#[derive(Clone, PartialEq, ::prost::Message)]
300pub struct Subscription {
301 #[prost(uint32, tag = "1")]
302 pub id: u32,
303 #[prost(string, tag = "2")]
304 pub name: ::prost::alloc::string::String,
305 #[prost(string, tag = "3")]
306 pub definition: ::prost::alloc::string::String,
307 #[prost(uint64, tag = "6")]
308 pub retention_seconds: u64,
309 #[prost(uint32, tag = "8")]
310 pub database_id: u32,
311 #[prost(uint32, tag = "9")]
312 pub schema_id: u32,
313 #[prost(uint32, tag = "10")]
314 pub dependent_table_id: u32,
315 #[prost(uint64, optional, tag = "11")]
316 pub initialized_at_epoch: ::core::option::Option<u64>,
317 #[prost(uint64, optional, tag = "12")]
318 pub created_at_epoch: ::core::option::Option<u64>,
319 #[prost(uint32, tag = "13")]
320 pub owner: u32,
321 #[prost(string, optional, tag = "15")]
322 pub initialized_at_cluster_version: ::core::option::Option<
323 ::prost::alloc::string::String,
324 >,
325 #[prost(string, optional, tag = "16")]
326 pub created_at_cluster_version: ::core::option::Option<
327 ::prost::alloc::string::String,
328 >,
329 #[prost(enumeration = "subscription::SubscriptionState", tag = "19")]
330 pub subscription_state: i32,
331}
332pub mod subscription {
334 #[derive(prost_helpers::AnyPB)]
335 #[derive(
336 Clone,
337 Copy,
338 Debug,
339 PartialEq,
340 Eq,
341 Hash,
342 PartialOrd,
343 Ord,
344 ::prost::Enumeration
345 )]
346 #[repr(i32)]
347 pub enum SubscriptionState {
348 Unspecified = 0,
349 Init = 1,
350 Created = 2,
351 }
352 impl SubscriptionState {
353 pub fn as_str_name(&self) -> &'static str {
358 match self {
359 Self::Unspecified => "UNSPECIFIED",
360 Self::Init => "INIT",
361 Self::Created => "CREATED",
362 }
363 }
364 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
366 match value {
367 "UNSPECIFIED" => Some(Self::Unspecified),
368 "INIT" => Some(Self::Init),
369 "CREATED" => Some(Self::Created),
370 _ => None,
371 }
372 }
373 }
374}
375#[derive(prost_helpers::AnyPB)]
376#[derive(Clone, PartialEq, ::prost::Message)]
377pub struct ConnectionParams {
378 #[prost(enumeration = "connection_params::ConnectionType", tag = "1")]
379 pub connection_type: i32,
380 #[prost(map = "string, string", tag = "2")]
381 pub properties: ::std::collections::HashMap<
382 ::prost::alloc::string::String,
383 ::prost::alloc::string::String,
384 >,
385 #[prost(map = "string, message", tag = "3")]
386 pub secret_refs: ::std::collections::HashMap<
387 ::prost::alloc::string::String,
388 super::secret::SecretRef,
389 >,
390}
391pub mod connection_params {
393 #[derive(prost_helpers::AnyPB)]
394 #[derive(
395 Clone,
396 Copy,
397 Debug,
398 PartialEq,
399 Eq,
400 Hash,
401 PartialOrd,
402 Ord,
403 ::prost::Enumeration
404 )]
405 #[repr(i32)]
406 pub enum ConnectionType {
407 Unspecified = 0,
408 Kafka = 1,
409 Iceberg = 2,
410 SchemaRegistry = 3,
411 Elasticsearch = 4,
412 }
413 impl ConnectionType {
414 pub fn as_str_name(&self) -> &'static str {
419 match self {
420 Self::Unspecified => "CONNECTION_TYPE_UNSPECIFIED",
421 Self::Kafka => "CONNECTION_TYPE_KAFKA",
422 Self::Iceberg => "CONNECTION_TYPE_ICEBERG",
423 Self::SchemaRegistry => "CONNECTION_TYPE_SCHEMA_REGISTRY",
424 Self::Elasticsearch => "CONNECTION_TYPE_ELASTICSEARCH",
425 }
426 }
427 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
429 match value {
430 "CONNECTION_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
431 "CONNECTION_TYPE_KAFKA" => Some(Self::Kafka),
432 "CONNECTION_TYPE_ICEBERG" => Some(Self::Iceberg),
433 "CONNECTION_TYPE_SCHEMA_REGISTRY" => Some(Self::SchemaRegistry),
434 "CONNECTION_TYPE_ELASTICSEARCH" => Some(Self::Elasticsearch),
435 _ => None,
436 }
437 }
438 }
439}
440#[derive(prost_helpers::AnyPB)]
441#[derive(Clone, PartialEq, ::prost::Message)]
442pub struct Connection {
443 #[prost(uint32, tag = "1")]
444 pub id: u32,
445 #[prost(uint32, tag = "2")]
446 pub schema_id: u32,
447 #[prost(uint32, tag = "3")]
448 pub database_id: u32,
449 #[prost(string, tag = "4")]
450 pub name: ::prost::alloc::string::String,
451 #[prost(uint32, tag = "6")]
452 pub owner: u32,
453 #[prost(oneof = "connection::Info", tags = "5, 7")]
454 pub info: ::core::option::Option<connection::Info>,
455}
456pub mod connection {
458 #[derive(prost_helpers::AnyPB)]
459 #[derive(Clone, PartialEq, ::prost::Message)]
460 pub struct PrivateLinkService {
461 #[prost(enumeration = "private_link_service::PrivateLinkProvider", tag = "1")]
462 pub provider: i32,
463 #[prost(string, tag = "2")]
464 pub service_name: ::prost::alloc::string::String,
465 #[prost(string, tag = "3")]
466 pub endpoint_id: ::prost::alloc::string::String,
467 #[prost(map = "string, string", tag = "4")]
468 pub dns_entries: ::std::collections::HashMap<
469 ::prost::alloc::string::String,
470 ::prost::alloc::string::String,
471 >,
472 #[prost(string, tag = "5")]
473 pub endpoint_dns_name: ::prost::alloc::string::String,
474 }
475 pub mod private_link_service {
477 #[derive(prost_helpers::AnyPB)]
478 #[derive(
479 Clone,
480 Copy,
481 Debug,
482 PartialEq,
483 Eq,
484 Hash,
485 PartialOrd,
486 Ord,
487 ::prost::Enumeration
488 )]
489 #[repr(i32)]
490 pub enum PrivateLinkProvider {
491 Unspecified = 0,
492 Mock = 1,
493 Aws = 2,
494 }
495 impl PrivateLinkProvider {
496 pub fn as_str_name(&self) -> &'static str {
501 match self {
502 Self::Unspecified => "UNSPECIFIED",
503 Self::Mock => "MOCK",
504 Self::Aws => "AWS",
505 }
506 }
507 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
509 match value {
510 "UNSPECIFIED" => Some(Self::Unspecified),
511 "MOCK" => Some(Self::Mock),
512 "AWS" => Some(Self::Aws),
513 _ => None,
514 }
515 }
516 }
517 }
518 #[derive(prost_helpers::AnyPB)]
519 #[derive(Clone, PartialEq, ::prost::Oneof)]
520 pub enum Info {
521 #[prost(message, tag = "5")]
522 PrivateLinkService(PrivateLinkService),
523 #[prost(message, tag = "7")]
524 ConnectionParams(super::ConnectionParams),
525 }
526}
527#[derive(prost_helpers::AnyPB)]
528#[derive(Clone, PartialEq, ::prost::Message)]
529pub struct Index {
530 #[prost(uint32, tag = "1")]
531 pub id: u32,
532 #[prost(uint32, tag = "2")]
533 pub schema_id: u32,
534 #[prost(uint32, tag = "3")]
535 pub database_id: u32,
536 #[prost(string, tag = "4")]
537 pub name: ::prost::alloc::string::String,
538 #[prost(uint32, tag = "5")]
539 pub owner: u32,
540 #[prost(uint32, tag = "6")]
541 pub index_table_id: u32,
542 #[prost(uint32, tag = "7")]
543 pub primary_table_id: u32,
544 #[prost(message, repeated, tag = "8")]
547 pub index_item: ::prost::alloc::vec::Vec<super::expr::ExprNode>,
548 #[prost(message, repeated, tag = "16")]
549 pub index_column_properties: ::prost::alloc::vec::Vec<IndexColumnProperties>,
550 #[prost(uint64, optional, tag = "10")]
551 pub initialized_at_epoch: ::core::option::Option<u64>,
552 #[prost(uint64, optional, tag = "11")]
553 pub created_at_epoch: ::core::option::Option<u64>,
554 #[prost(enumeration = "StreamJobStatus", tag = "12")]
555 pub stream_job_status: i32,
556 #[prost(uint32, tag = "13")]
559 pub index_columns_len: u32,
560 #[prost(string, optional, tag = "14")]
562 pub initialized_at_cluster_version: ::core::option::Option<
563 ::prost::alloc::string::String,
564 >,
565 #[prost(string, optional, tag = "15")]
566 pub created_at_cluster_version: ::core::option::Option<
567 ::prost::alloc::string::String,
568 >,
569}
570#[derive(prost_helpers::AnyPB)]
572#[derive(Eq, Hash)]
573#[derive(Clone, Copy, PartialEq, ::prost::Message)]
574pub struct IndexColumnProperties {
575 #[prost(bool, tag = "1")]
577 pub is_desc: bool,
578 #[prost(bool, tag = "2")]
580 pub nulls_first: bool,
581}
582#[derive(prost_helpers::AnyPB)]
583#[derive(Clone, PartialEq, ::prost::Message)]
584pub struct Function {
585 #[prost(uint32, tag = "1")]
586 pub id: u32,
587 #[prost(uint32, tag = "2")]
588 pub schema_id: u32,
589 #[prost(uint32, tag = "3")]
590 pub database_id: u32,
591 #[prost(string, tag = "4")]
592 pub name: ::prost::alloc::string::String,
593 #[prost(uint32, tag = "9")]
594 pub owner: u32,
595 #[prost(string, repeated, tag = "15")]
596 pub arg_names: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
597 #[prost(message, repeated, tag = "5")]
598 pub arg_types: ::prost::alloc::vec::Vec<super::data::DataType>,
599 #[prost(message, optional, tag = "6")]
600 pub return_type: ::core::option::Option<super::data::DataType>,
601 #[prost(string, tag = "7")]
602 pub language: ::prost::alloc::string::String,
603 #[prost(string, optional, tag = "8")]
604 pub link: ::core::option::Option<::prost::alloc::string::String>,
605 #[prost(string, optional, tag = "10")]
607 pub name_in_runtime: ::core::option::Option<::prost::alloc::string::String>,
608 #[prost(string, optional, tag = "14")]
610 pub body: ::core::option::Option<::prost::alloc::string::String>,
611 #[prost(bytes = "vec", optional, tag = "17")]
613 pub compressed_binary: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
614 #[prost(bool, tag = "16")]
615 pub always_retry_on_network_error: bool,
616 #[prost(string, optional, tag = "18")]
618 pub runtime: ::core::option::Option<::prost::alloc::string::String>,
619 #[prost(bool, optional, tag = "20")]
621 pub is_async: ::core::option::Option<bool>,
622 #[prost(bool, optional, tag = "21")]
623 pub is_batched: ::core::option::Option<bool>,
624 #[prost(oneof = "function::Kind", tags = "11, 12, 13")]
625 pub kind: ::core::option::Option<function::Kind>,
626}
627pub mod function {
629 #[derive(prost_helpers::AnyPB)]
630 #[derive(Clone, Copy, PartialEq, ::prost::Message)]
631 pub struct ScalarFunction {}
632 #[derive(prost_helpers::AnyPB)]
633 #[derive(Clone, Copy, PartialEq, ::prost::Message)]
634 pub struct TableFunction {}
635 #[derive(prost_helpers::AnyPB)]
636 #[derive(Clone, Copy, PartialEq, ::prost::Message)]
637 pub struct AggregateFunction {}
638 #[derive(prost_helpers::AnyPB)]
639 #[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
640 pub enum Kind {
641 #[prost(message, tag = "11")]
642 Scalar(ScalarFunction),
643 #[prost(message, tag = "12")]
644 Table(TableFunction),
645 #[prost(message, tag = "13")]
646 Aggregate(AggregateFunction),
647 }
648}
649#[derive(prost_helpers::AnyPB)]
656#[derive(Clone, PartialEq, ::prost::Message)]
657pub struct Table {
658 #[prost(uint32, tag = "1")]
659 pub id: u32,
660 #[prost(uint32, tag = "2")]
661 pub schema_id: u32,
662 #[prost(uint32, tag = "3")]
663 pub database_id: u32,
664 #[prost(string, tag = "4")]
665 pub name: ::prost::alloc::string::String,
666 #[prost(message, repeated, tag = "5")]
667 pub columns: ::prost::alloc::vec::Vec<super::plan_common::ColumnCatalog>,
668 #[prost(message, repeated, tag = "6")]
669 pub pk: ::prost::alloc::vec::Vec<super::common::ColumnOrder>,
670 #[prost(uint32, repeated, tag = "8")]
674 pub dependent_relations: ::prost::alloc::vec::Vec<u32>,
675 #[prost(enumeration = "table::TableType", tag = "10")]
676 pub table_type: i32,
677 #[prost(int32, repeated, tag = "12")]
678 pub distribution_key: ::prost::alloc::vec::Vec<i32>,
679 #[prost(int32, repeated, tag = "13")]
681 pub stream_key: ::prost::alloc::vec::Vec<i32>,
682 #[prost(bool, tag = "14")]
683 pub append_only: bool,
684 #[prost(uint32, tag = "15")]
685 pub owner: u32,
686 #[prost(uint32, tag = "17")]
687 pub fragment_id: u32,
688 #[prost(uint32, optional, tag = "18")]
691 pub vnode_col_index: ::core::option::Option<u32>,
692 #[prost(uint32, optional, tag = "19")]
695 pub row_id_index: ::core::option::Option<u32>,
696 #[prost(int32, repeated, tag = "20")]
700 pub value_indices: ::prost::alloc::vec::Vec<i32>,
701 #[prost(string, tag = "21")]
702 pub definition: ::prost::alloc::string::String,
703 #[prost(enumeration = "HandleConflictBehavior", tag = "22")]
705 pub handle_pk_conflict_behavior: i32,
706 #[prost(uint32, tag = "23")]
710 pub read_prefix_len_hint: u32,
711 #[prost(int32, repeated, tag = "24")]
712 pub watermark_indices: ::prost::alloc::vec::Vec<i32>,
713 #[prost(int32, repeated, tag = "25")]
714 pub dist_key_in_pk: ::prost::alloc::vec::Vec<i32>,
715 #[prost(uint32, optional, tag = "26")]
718 pub dml_fragment_id: ::core::option::Option<u32>,
719 #[prost(message, optional, tag = "27")]
723 pub cardinality: ::core::option::Option<super::plan_common::Cardinality>,
724 #[prost(uint64, optional, tag = "28")]
725 pub initialized_at_epoch: ::core::option::Option<u64>,
726 #[prost(uint64, optional, tag = "29")]
727 pub created_at_epoch: ::core::option::Option<u64>,
728 #[prost(bool, tag = "30")]
732 pub cleaned_by_watermark: bool,
733 #[prost(enumeration = "StreamJobStatus", tag = "31")]
735 pub stream_job_status: i32,
736 #[prost(enumeration = "CreateType", tag = "32")]
737 pub create_type: i32,
738 #[prost(string, optional, tag = "33")]
740 pub description: ::core::option::Option<::prost::alloc::string::String>,
741 #[prost(uint32, repeated, tag = "34")]
743 pub incoming_sinks: ::prost::alloc::vec::Vec<u32>,
744 #[prost(string, optional, tag = "35")]
746 pub initialized_at_cluster_version: ::core::option::Option<
747 ::prost::alloc::string::String,
748 >,
749 #[prost(string, optional, tag = "36")]
750 pub created_at_cluster_version: ::core::option::Option<
751 ::prost::alloc::string::String,
752 >,
753 #[prost(uint32, optional, tag = "37")]
756 pub retention_seconds: ::core::option::Option<u32>,
757 #[prost(uint32, optional, tag = "38")]
761 pub version_column_index: ::core::option::Option<u32>,
762 #[prost(string, optional, tag = "39")]
766 pub cdc_table_id: ::core::option::Option<::prost::alloc::string::String>,
767 #[prost(uint32, optional, tag = "40")]
780 pub maybe_vnode_count: ::core::option::Option<u32>,
781 #[prost(message, optional, tag = "41")]
783 pub webhook_info: ::core::option::Option<WebhookSourceInfo>,
784 #[prost(uint32, optional, tag = "42")]
786 pub job_id: ::core::option::Option<u32>,
787 #[prost(enumeration = "table::Engine", optional, tag = "43")]
789 pub engine: ::core::option::Option<i32>,
790 #[prost(int32, optional, tag = "44")]
793 pub clean_watermark_index_in_pk: ::core::option::Option<i32>,
794 #[prost(message, optional, tag = "100")]
798 pub version: ::core::option::Option<table::TableVersion>,
799 #[prost(oneof = "table::OptionalAssociatedSourceId", tags = "9")]
800 pub optional_associated_source_id: ::core::option::Option<
801 table::OptionalAssociatedSourceId,
802 >,
803}
804pub mod table {
806 #[derive(prost_helpers::AnyPB)]
807 #[derive(Clone, Copy, PartialEq, ::prost::Message)]
808 pub struct TableVersion {
809 #[prost(uint64, tag = "1")]
812 pub version: u64,
813 #[prost(int32, tag = "2")]
816 pub next_column_id: i32,
817 }
818 #[derive(prost_helpers::AnyPB)]
819 #[derive(
820 Clone,
821 Copy,
822 Debug,
823 PartialEq,
824 Eq,
825 Hash,
826 PartialOrd,
827 Ord,
828 ::prost::Enumeration
829 )]
830 #[repr(i32)]
831 pub enum TableType {
832 Unspecified = 0,
833 Table = 1,
834 MaterializedView = 2,
835 Index = 3,
836 Internal = 4,
837 }
838 impl TableType {
839 pub fn as_str_name(&self) -> &'static str {
844 match self {
845 Self::Unspecified => "UNSPECIFIED",
846 Self::Table => "TABLE",
847 Self::MaterializedView => "MATERIALIZED_VIEW",
848 Self::Index => "INDEX",
849 Self::Internal => "INTERNAL",
850 }
851 }
852 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
854 match value {
855 "UNSPECIFIED" => Some(Self::Unspecified),
856 "TABLE" => Some(Self::Table),
857 "MATERIALIZED_VIEW" => Some(Self::MaterializedView),
858 "INDEX" => Some(Self::Index),
859 "INTERNAL" => Some(Self::Internal),
860 _ => None,
861 }
862 }
863 }
864 #[derive(prost_helpers::AnyPB)]
865 #[derive(
866 Clone,
867 Copy,
868 Debug,
869 PartialEq,
870 Eq,
871 Hash,
872 PartialOrd,
873 Ord,
874 ::prost::Enumeration
875 )]
876 #[repr(i32)]
877 pub enum Engine {
878 Unspecified = 0,
879 Hummock = 1,
880 Iceberg = 2,
881 }
882 impl Engine {
883 pub fn as_str_name(&self) -> &'static str {
888 match self {
889 Self::Unspecified => "ENGINE_UNSPECIFIED",
890 Self::Hummock => "HUMMOCK",
891 Self::Iceberg => "ICEBERG",
892 }
893 }
894 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
896 match value {
897 "ENGINE_UNSPECIFIED" => Some(Self::Unspecified),
898 "HUMMOCK" => Some(Self::Hummock),
899 "ICEBERG" => Some(Self::Iceberg),
900 _ => None,
901 }
902 }
903 }
904 #[derive(prost_helpers::AnyPB)]
905 #[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
906 pub enum OptionalAssociatedSourceId {
907 #[prost(uint32, tag = "9")]
908 AssociatedSourceId(u32),
909 }
910}
911#[derive(prost_helpers::AnyPB)]
912#[derive(Clone, PartialEq, ::prost::Message)]
913pub struct View {
914 #[prost(uint32, tag = "1")]
915 pub id: u32,
916 #[prost(uint32, tag = "2")]
917 pub schema_id: u32,
918 #[prost(uint32, tag = "3")]
919 pub database_id: u32,
920 #[prost(string, tag = "4")]
921 pub name: ::prost::alloc::string::String,
922 #[prost(uint32, tag = "5")]
923 pub owner: u32,
924 #[prost(btree_map = "string, string", tag = "6")]
925 pub properties: ::prost::alloc::collections::BTreeMap<
926 ::prost::alloc::string::String,
927 ::prost::alloc::string::String,
928 >,
929 #[prost(string, tag = "7")]
930 pub sql: ::prost::alloc::string::String,
931 #[prost(uint32, repeated, tag = "8")]
932 pub dependent_relations: ::prost::alloc::vec::Vec<u32>,
933 #[prost(message, repeated, tag = "9")]
935 pub columns: ::prost::alloc::vec::Vec<super::plan_common::Field>,
936}
937#[derive(prost_helpers::AnyPB)]
938#[derive(Clone, PartialEq, ::prost::Message)]
939pub struct Schema {
940 #[prost(uint32, tag = "1")]
941 pub id: u32,
942 #[prost(uint32, tag = "2")]
943 pub database_id: u32,
944 #[prost(string, tag = "3")]
945 pub name: ::prost::alloc::string::String,
946 #[prost(uint32, tag = "4")]
947 pub owner: u32,
948}
949#[derive(prost_helpers::AnyPB)]
950#[derive(Clone, PartialEq, ::prost::Message)]
951pub struct Database {
952 #[prost(uint32, tag = "1")]
953 pub id: u32,
954 #[prost(string, tag = "2")]
955 pub name: ::prost::alloc::string::String,
956 #[prost(uint32, tag = "3")]
957 pub owner: u32,
958 #[prost(string, tag = "4")]
959 pub resource_group: ::prost::alloc::string::String,
960}
961#[derive(prost_helpers::AnyPB)]
962#[derive(Clone, PartialEq, ::prost::Message)]
963pub struct Comment {
964 #[prost(uint32, tag = "1")]
965 pub table_id: u32,
966 #[prost(uint32, tag = "2")]
967 pub schema_id: u32,
968 #[prost(uint32, tag = "3")]
969 pub database_id: u32,
970 #[prost(uint32, optional, tag = "4")]
971 pub column_index: ::core::option::Option<u32>,
972 #[prost(string, optional, tag = "5")]
973 pub description: ::core::option::Option<::prost::alloc::string::String>,
974}
975#[derive(prost_helpers::AnyPB)]
976#[derive(Clone, PartialEq, ::prost::Message)]
977pub struct Secret {
978 #[prost(uint32, tag = "1")]
979 pub id: u32,
980 #[prost(string, tag = "2")]
981 pub name: ::prost::alloc::string::String,
982 #[prost(uint32, tag = "3")]
983 pub database_id: u32,
984 #[prost(bytes = "vec", tag = "4")]
986 pub value: ::prost::alloc::vec::Vec<u8>,
987 #[prost(uint32, tag = "5")]
988 pub owner: u32,
989 #[prost(uint32, tag = "6")]
990 pub schema_id: u32,
991}
992#[derive(prost_helpers::AnyPB)]
993#[derive(Clone, PartialEq, ::prost::Message)]
994pub struct OptionsWithSecret {
995 #[prost(map = "string, string", tag = "1")]
996 pub options: ::std::collections::HashMap<
997 ::prost::alloc::string::String,
998 ::prost::alloc::string::String,
999 >,
1000 #[prost(map = "string, message", tag = "2")]
1001 pub secret_refs: ::std::collections::HashMap<
1002 ::prost::alloc::string::String,
1003 super::secret::SecretRef,
1004 >,
1005}
1006#[derive(prost_helpers::AnyPB)]
1007#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1008#[repr(i32)]
1009pub enum SchemaRegistryNameStrategy {
1010 Unspecified = 0,
1011 RecordNameStrategy = 1,
1012 TopicRecordNameStrategy = 2,
1013}
1014impl SchemaRegistryNameStrategy {
1015 pub fn as_str_name(&self) -> &'static str {
1020 match self {
1021 Self::Unspecified => "SCHEMA_REGISTRY_NAME_STRATEGY_UNSPECIFIED",
1022 Self::RecordNameStrategy => {
1023 "SCHEMA_REGISTRY_NAME_STRATEGY_RECORD_NAME_STRATEGY"
1024 }
1025 Self::TopicRecordNameStrategy => {
1026 "SCHEMA_REGISTRY_NAME_STRATEGY_TOPIC_RECORD_NAME_STRATEGY"
1027 }
1028 }
1029 }
1030 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
1032 match value {
1033 "SCHEMA_REGISTRY_NAME_STRATEGY_UNSPECIFIED" => Some(Self::Unspecified),
1034 "SCHEMA_REGISTRY_NAME_STRATEGY_RECORD_NAME_STRATEGY" => {
1035 Some(Self::RecordNameStrategy)
1036 }
1037 "SCHEMA_REGISTRY_NAME_STRATEGY_TOPIC_RECORD_NAME_STRATEGY" => {
1038 Some(Self::TopicRecordNameStrategy)
1039 }
1040 _ => None,
1041 }
1042 }
1043}
1044#[derive(prost_helpers::AnyPB)]
1045#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1046#[repr(i32)]
1047pub enum StreamJobStatus {
1048 Unspecified = 0,
1050 Creating = 1,
1051 Created = 2,
1052}
1053impl StreamJobStatus {
1054 pub fn as_str_name(&self) -> &'static str {
1059 match self {
1060 Self::Unspecified => "STREAM_JOB_STATUS_UNSPECIFIED",
1061 Self::Creating => "STREAM_JOB_STATUS_CREATING",
1062 Self::Created => "STREAM_JOB_STATUS_CREATED",
1063 }
1064 }
1065 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
1067 match value {
1068 "STREAM_JOB_STATUS_UNSPECIFIED" => Some(Self::Unspecified),
1069 "STREAM_JOB_STATUS_CREATING" => Some(Self::Creating),
1070 "STREAM_JOB_STATUS_CREATED" => Some(Self::Created),
1071 _ => None,
1072 }
1073 }
1074}
1075#[derive(prost_helpers::AnyPB)]
1078#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1079#[repr(i32)]
1080pub enum CreateType {
1081 Unspecified = 0,
1082 Background = 1,
1083 Foreground = 2,
1084}
1085impl CreateType {
1086 pub fn as_str_name(&self) -> &'static str {
1091 match self {
1092 Self::Unspecified => "CREATE_TYPE_UNSPECIFIED",
1093 Self::Background => "CREATE_TYPE_BACKGROUND",
1094 Self::Foreground => "CREATE_TYPE_FOREGROUND",
1095 }
1096 }
1097 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
1099 match value {
1100 "CREATE_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
1101 "CREATE_TYPE_BACKGROUND" => Some(Self::Background),
1102 "CREATE_TYPE_FOREGROUND" => Some(Self::Foreground),
1103 _ => None,
1104 }
1105 }
1106}
1107#[derive(prost_helpers::AnyPB)]
1108#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1109#[repr(i32)]
1110pub enum SinkType {
1111 Unspecified = 0,
1112 AppendOnly = 1,
1113 ForceAppendOnly = 2,
1114 Upsert = 3,
1115}
1116impl SinkType {
1117 pub fn as_str_name(&self) -> &'static str {
1122 match self {
1123 Self::Unspecified => "SINK_TYPE_UNSPECIFIED",
1124 Self::AppendOnly => "SINK_TYPE_APPEND_ONLY",
1125 Self::ForceAppendOnly => "SINK_TYPE_FORCE_APPEND_ONLY",
1126 Self::Upsert => "SINK_TYPE_UPSERT",
1127 }
1128 }
1129 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
1131 match value {
1132 "SINK_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
1133 "SINK_TYPE_APPEND_ONLY" => Some(Self::AppendOnly),
1134 "SINK_TYPE_FORCE_APPEND_ONLY" => Some(Self::ForceAppendOnly),
1135 "SINK_TYPE_UPSERT" => Some(Self::Upsert),
1136 _ => None,
1137 }
1138 }
1139}
1140#[derive(prost_helpers::AnyPB)]
1141#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1142#[repr(i32)]
1143pub enum HandleConflictBehavior {
1144 Unspecified = 0,
1145 Overwrite = 1,
1146 Ignore = 2,
1147 NoCheck = 3,
1148 DoUpdateIfNotNull = 4,
1149}
1150impl HandleConflictBehavior {
1151 pub fn as_str_name(&self) -> &'static str {
1156 match self {
1157 Self::Unspecified => "HANDLE_CONFLICT_BEHAVIOR_UNSPECIFIED",
1158 Self::Overwrite => "HANDLE_CONFLICT_BEHAVIOR_OVERWRITE",
1159 Self::Ignore => "HANDLE_CONFLICT_BEHAVIOR_IGNORE",
1160 Self::NoCheck => "HANDLE_CONFLICT_BEHAVIOR_NO_CHECK",
1161 Self::DoUpdateIfNotNull => "HANDLE_CONFLICT_BEHAVIOR_DO_UPDATE_IF_NOT_NULL",
1162 }
1163 }
1164 pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
1166 match value {
1167 "HANDLE_CONFLICT_BEHAVIOR_UNSPECIFIED" => Some(Self::Unspecified),
1168 "HANDLE_CONFLICT_BEHAVIOR_OVERWRITE" => Some(Self::Overwrite),
1169 "HANDLE_CONFLICT_BEHAVIOR_IGNORE" => Some(Self::Ignore),
1170 "HANDLE_CONFLICT_BEHAVIOR_NO_CHECK" => Some(Self::NoCheck),
1171 "HANDLE_CONFLICT_BEHAVIOR_DO_UPDATE_IF_NOT_NULL" => {
1172 Some(Self::DoUpdateIfNotNull)
1173 }
1174 _ => None,
1175 }
1176 }
1177}