chalk_ruby 0.1.4 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/README.dev.md +8 -0
  3. data/chalk_ruby.gemspec +1 -0
  4. data/lib/chalk_ruby/config.rb +5 -0
  5. data/lib/chalk_ruby/defaults.rb +1 -0
  6. data/lib/chalk_ruby/grpc/auth_interceptor.rb +62 -0
  7. data/lib/chalk_ruby/grpc_client.rb +340 -0
  8. data/lib/chalk_ruby/http/http_requester.rb +2 -1
  9. data/lib/chalk_ruby/protos/chalk/aggregate/v1/backfill_pb.rb +28 -0
  10. data/lib/chalk_ruby/protos/chalk/aggregate/v1/service_pb.rb +36 -0
  11. data/lib/chalk_ruby/protos/chalk/aggregate/v1/service_services_pb.rb +42 -0
  12. data/lib/chalk_ruby/protos/chalk/aggregate/v1/timeseries_pb.rb +22 -0
  13. data/lib/chalk_ruby/protos/chalk/arrow/v1/arrow_pb.rb +41 -0
  14. data/lib/chalk_ruby/protos/chalk/artifacts/v1/cdc_pb.rb +20 -0
  15. data/lib/chalk_ruby/protos/chalk/artifacts/v1/chart_pb.rb +34 -0
  16. data/lib/chalk_ruby/protos/chalk/artifacts/v1/cron_query_pb.rb +22 -0
  17. data/lib/chalk_ruby/protos/chalk/artifacts/v1/deployment_pb.rb +25 -0
  18. data/lib/chalk_ruby/protos/chalk/artifacts/v1/export_pb.rb +35 -0
  19. data/lib/chalk_ruby/protos/chalk/auth/v1/agent_pb.rb +29 -0
  20. data/lib/chalk_ruby/protos/chalk/auth/v1/audit_pb.rb +22 -0
  21. data/lib/chalk_ruby/protos/chalk/auth/v1/displayagent_pb.rb +31 -0
  22. data/lib/chalk_ruby/protos/chalk/auth/v1/featurepermission_pb.rb +20 -0
  23. data/lib/chalk_ruby/protos/chalk/auth/v1/permissions_pb.rb +22 -0
  24. data/lib/chalk_ruby/protos/chalk/common/v1/chalk_error_pb.rb +22 -0
  25. data/lib/chalk_ruby/protos/chalk/common/v1/chart_pb.rb +20 -0
  26. data/lib/chalk_ruby/protos/chalk/common/v1/dataset_response_pb.rb +26 -0
  27. data/lib/chalk_ruby/protos/chalk/common/v1/feature_values_pb.rb +31 -0
  28. data/lib/chalk_ruby/protos/chalk/common/v1/offline_query_pb.rb +32 -0
  29. data/lib/chalk_ruby/protos/chalk/common/v1/online_query_pb.rb +44 -0
  30. data/lib/chalk_ruby/protos/chalk/common/v1/operation_kind_pb.rb +19 -0
  31. data/lib/chalk_ruby/protos/chalk/common/v1/query_log_pb.rb +28 -0
  32. data/lib/chalk_ruby/protos/chalk/common/v1/query_status_pb.rb +19 -0
  33. data/lib/chalk_ruby/protos/chalk/common/v1/query_values_pb.rb +26 -0
  34. data/lib/chalk_ruby/protos/chalk/common/v1/upload_features_pb.rb +22 -0
  35. data/lib/chalk_ruby/protos/chalk/engine/v1/bloom_filter_pb.rb +19 -0
  36. data/lib/chalk_ruby/protos/chalk/engine/v1/offline_store_service_pb.rb +24 -0
  37. data/lib/chalk_ruby/protos/chalk/engine/v1/offline_store_service_services_pb.rb +31 -0
  38. data/lib/chalk_ruby/protos/chalk/engine/v1/plan_pb.rb +39 -0
  39. data/lib/chalk_ruby/protos/chalk/engine/v1/plan_server_pb.rb +25 -0
  40. data/lib/chalk_ruby/protos/chalk/engine/v1/plan_server_services_pb.rb +28 -0
  41. data/lib/chalk_ruby/protos/chalk/engine/v1/query_server_pb.rb +25 -0
  42. data/lib/chalk_ruby/protos/chalk/engine/v1/query_server_services_pb.rb +44 -0
  43. data/lib/chalk_ruby/protos/chalk/engine/v2/feature_values_chart_pb.rb +29 -0
  44. data/lib/chalk_ruby/protos/chalk/engine/v2/feature_values_pb.rb +27 -0
  45. data/lib/chalk_ruby/protos/chalk/engine/v2/offline_store_service_pb.rb +25 -0
  46. data/lib/chalk_ruby/protos/chalk/engine/v2/offline_store_service_services_pb.rb +33 -0
  47. data/lib/chalk_ruby/protos/chalk/engine/v2/query_log_pb.rb +28 -0
  48. data/lib/chalk_ruby/protos/chalk/engine/v2/query_values_pb.rb +26 -0
  49. data/lib/chalk_ruby/protos/chalk/expression/v1/expression_pb.rb +76 -0
  50. data/lib/chalk_ruby/protos/chalk/graph/v1/graph_pb.rb +63 -0
  51. data/lib/chalk_ruby/protos/chalk/graph/v1/sources_pb.rb +41 -0
  52. data/lib/chalk_ruby/protos/chalk/graph/v2/sources_pb.rb +25 -0
  53. data/lib/chalk_ruby/protos/chalk/lsp/v1/lsp_pb.rb +32 -0
  54. data/lib/chalk_ruby/protos/chalk/server/v1/audit_pb.rb +27 -0
  55. data/lib/chalk_ruby/protos/chalk/server/v1/audit_services_pb.rb +26 -0
  56. data/lib/chalk_ruby/protos/chalk/server/v1/auth_pb.rb +29 -0
  57. data/lib/chalk_ruby/protos/chalk/server/v1/auth_services_pb.rb +29 -0
  58. data/lib/chalk_ruby/protos/chalk/server/v1/authtesting_pb.rb +34 -0
  59. data/lib/chalk_ruby/protos/chalk/server/v1/authtesting_services_pb.rb +32 -0
  60. data/lib/chalk_ruby/protos/chalk/server/v1/billing_pb.rb +37 -0
  61. data/lib/chalk_ruby/protos/chalk/server/v1/billing_services_pb.rb +43 -0
  62. data/lib/chalk_ruby/protos/chalk/server/v1/bootstrap_pb.rb +24 -0
  63. data/lib/chalk_ruby/protos/chalk/server/v1/builder_pb.rb +60 -0
  64. data/lib/chalk_ruby/protos/chalk/server/v1/builder_services_pb.rb +50 -0
  65. data/lib/chalk_ruby/protos/chalk/server/v1/chart_pb.rb +26 -0
  66. data/lib/chalk_ruby/protos/chalk/server/v1/cli_pb.rb +23 -0
  67. data/lib/chalk_ruby/protos/chalk/server/v1/cli_services_pb.rb +26 -0
  68. data/lib/chalk_ruby/protos/chalk/server/v1/deploy_pb.rb +36 -0
  69. data/lib/chalk_ruby/protos/chalk/server/v1/deploy_services_pb.rb +32 -0
  70. data/lib/chalk_ruby/protos/chalk/server/v1/deployment_pb.rb +23 -0
  71. data/lib/chalk_ruby/protos/chalk/server/v1/environment_pb.rb +32 -0
  72. data/lib/chalk_ruby/protos/chalk/server/v1/flag_pb.rb +26 -0
  73. data/lib/chalk_ruby/protos/chalk/server/v1/flag_services_pb.rb +27 -0
  74. data/lib/chalk_ruby/protos/chalk/server/v1/graph_pb.rb +31 -0
  75. data/lib/chalk_ruby/protos/chalk/server/v1/graph_services_pb.rb +31 -0
  76. data/lib/chalk_ruby/protos/chalk/server/v1/kube_pb.rb +22 -0
  77. data/lib/chalk_ruby/protos/chalk/server/v1/kube_services_pb.rb +28 -0
  78. data/lib/chalk_ruby/protos/chalk/server/v1/link_pb.rb +28 -0
  79. data/lib/chalk_ruby/protos/chalk/server/v1/log_pb.rb +21 -0
  80. data/lib/chalk_ruby/protos/chalk/server/v1/metrics_pb.rb +23 -0
  81. data/lib/chalk_ruby/protos/chalk/server/v1/metrics_services_pb.rb +26 -0
  82. data/lib/chalk_ruby/protos/chalk/server/v1/monitoring_pb.rb +45 -0
  83. data/lib/chalk_ruby/protos/chalk/server/v1/monitoring_services_pb.rb +32 -0
  84. data/lib/chalk_ruby/protos/chalk/server/v1/named_query_pb.rb +27 -0
  85. data/lib/chalk_ruby/protos/chalk/server/v1/named_query_services_pb.rb +28 -0
  86. data/lib/chalk_ruby/protos/chalk/server/v1/pod_request_pb.rb +26 -0
  87. data/lib/chalk_ruby/protos/chalk/server/v1/status_pb.rb +31 -0
  88. data/lib/chalk_ruby/protos/chalk/server/v1/status_services_pb.rb +31 -0
  89. data/lib/chalk_ruby/protos/chalk/server/v1/team_pb.rb +78 -0
  90. data/lib/chalk_ruby/protos/chalk/server/v1/team_services_pb.rb +49 -0
  91. data/lib/chalk_ruby/protos/chalk/server/v1/timeserieschart_pb.rb +24 -0
  92. data/lib/chalk_ruby/protos/chalk/server/v1/topic_pb.rb +21 -0
  93. data/lib/chalk_ruby/protos/chalk/server/v1/topicpush_pb.rb +32 -0
  94. data/lib/chalk_ruby/protos/chalk/server/v1/topicpush_services_pb.rb +30 -0
  95. data/lib/chalk_ruby/protos/chalk/utils/v1/encoding_pb.rb +21 -0
  96. data/lib/chalk_ruby/protos/chalk/utils/v1/sensitive_pb.rb +20 -0
  97. data/lib/chalk_ruby/version.rb +1 -1
  98. data/lib/chalk_ruby.rb +1 -0
  99. metadata +117 -6
@@ -0,0 +1,76 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/expression/v1/expression.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'chalk_ruby/protos/chalk/arrow/v1/arrow_pb'
8
+
9
+
10
+ descriptor_data = "\n$chalk/expression/v1/expression.proto\x12\x13\x63halk.expression.v1\x1a\x1a\x63halk/arrow/v1/arrow.proto\" \n\nIdentifier\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\x8f\x01\n\x10\x45xprGetAttribute\x12<\n\x06parent\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x06parent\x12=\n\tattribute\x18\x02 \x01(\x0b\x32\x1f.chalk.expression.v1.IdentifierR\tattribute\"\x94\x01\n\x10\x45xprGetSubscript\x12<\n\x06parent\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x06parent\x12\x42\n\tsubscript\x18\x02 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\tsubscript\"\xa2\x02\n\x08\x45xprCall\x12\x38\n\x04\x66unc\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x66unc\x12\x38\n\x04\x61rgs\x18\x02 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x61rgs\x12\x41\n\x06kwargs\x18\x03 \x03(\x0b\x32).chalk.expression.v1.ExprCall.KwargsEntryR\x06kwargs\x1a_\n\x0bKwargsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12:\n\x05value\x18\x02 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x05value:\x02\x38\x01\"u\n\x0b\x45xprLiteral\x12\x31\n\x05value\x18\x01 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value\x12\x33\n\x16is_arrow_scalar_object\x18\x02 \x01(\x08R\x13isArrowScalarObject\"\xc8\x15\n\x0fLogicalExprNode\x12\x41\n\nidentifier\x18# \x01(\x0b\x32\x1f.chalk.expression.v1.IdentifierH\x00R\nidentifier\x12L\n\rget_attribute\x18$ \x01(\x0b\x32%.chalk.expression.v1.ExprGetAttributeH\x00R\x0cgetAttribute\x12L\n\rget_subscript\x18% \x01(\x0b\x32%.chalk.expression.v1.ExprGetSubscriptH\x00R\x0cgetSubscript\x12\x33\n\x04\x63\x61ll\x18& \x01(\x0b\x32\x1d.chalk.expression.v1.ExprCallH\x00R\x04\x63\x61ll\x12G\n\rliteral_value\x18\' \x01(\x0b\x32 .chalk.expression.v1.ExprLiteralH\x00R\x0cliteralValue\x12\x39\n\x06\x63olumn\x18\x01 \x01(\x0b\x32\x1b.chalk.expression.v1.ColumnB\x02\x18\x01H\x01R\x06\x63olumn\x12:\n\x05\x61lias\x18\x02 \x01(\x0b\x32\x1e.chalk.expression.v1.AliasNodeB\x02\x18\x01H\x01R\x05\x61lias\x12;\n\x07literal\x18\x03 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueB\x02\x18\x01H\x01R\x07literal\x12J\n\x0b\x62inary_expr\x18\x04 \x01(\x0b\x32#.chalk.expression.v1.BinaryExprNodeB\x02\x18\x01H\x01R\nbinaryExpr\x12S\n\x0e\x61ggregate_expr\x18\x05 \x01(\x0b\x32&.chalk.expression.v1.AggregateExprNodeB\x02\x18\x01H\x01R\raggregateExpr\x12\x43\n\x0cis_null_expr\x18\x06 \x01(\x0b\x32\x1b.chalk.expression.v1.IsNullB\x02\x18\x01H\x01R\nisNullExpr\x12M\n\x10is_not_null_expr\x18\x07 \x01(\x0b\x32\x1e.chalk.expression.v1.IsNotNullB\x02\x18\x01H\x01R\risNotNullExpr\x12\x39\n\x08not_expr\x18\x08 \x01(\x0b\x32\x18.chalk.expression.v1.NotB\x02\x18\x01H\x01R\x07notExpr\x12@\n\x07\x62\x65tween\x18\t \x01(\x0b\x32 .chalk.expression.v1.BetweenNodeB\x02\x18\x01H\x01R\x07\x62\x65tween\x12\x37\n\x04\x63\x61se\x18\n \x01(\x0b\x32\x1d.chalk.expression.v1.CaseNodeB\x02\x18\x01H\x01R\x04\x63\x61se\x12\x37\n\x04\x63\x61st\x18\x0b \x01(\x0b\x32\x1d.chalk.expression.v1.CastNodeB\x02\x18\x01H\x01R\x04\x63\x61st\x12;\n\x04sort\x18\x0c \x01(\x0b\x32!.chalk.expression.v1.SortExprNodeB\x02\x18\x01H\x01R\x04sort\x12\x43\n\x08negative\x18\r \x01(\x0b\x32!.chalk.expression.v1.NegativeNodeB\x02\x18\x01H\x01R\x08negative\x12>\n\x07in_list\x18\x0e \x01(\x0b\x32\x1f.chalk.expression.v1.InListNodeB\x02\x18\x01H\x01R\x06inList\x12?\n\x08wildcard\x18\x0f \x01(\x0b\x32\x1d.chalk.expression.v1.WildcardB\x02\x18\x01H\x01R\x08wildcard\x12V\n\x0fscalar_function\x18\x10 \x01(\x0b\x32\'.chalk.expression.v1.ScalarFunctionNodeB\x02\x18\x01H\x01R\x0escalarFunction\x12\x41\n\x08try_cast\x18\x11 \x01(\x0b\x32 .chalk.expression.v1.TryCastNodeB\x02\x18\x01H\x01R\x07tryCast\x12J\n\x0bwindow_expr\x18\x12 \x01(\x0b\x32#.chalk.expression.v1.WindowExprNodeB\x02\x18\x01H\x01R\nwindowExpr\x12]\n\x12\x61ggregate_udf_expr\x18\x13 \x01(\x0b\x32).chalk.expression.v1.AggregateUDFExprNodeB\x02\x18\x01H\x01R\x10\x61ggregateUdfExpr\x12T\n\x0fscalar_udf_expr\x18\x14 \x01(\x0b\x32&.chalk.expression.v1.ScalarUDFExprNodeB\x02\x18\x01H\x01R\rscalarUdfExpr\x12V\n\x11get_indexed_field\x18\x15 \x01(\x0b\x32$.chalk.expression.v1.GetIndexedFieldB\x02\x18\x01H\x01R\x0fgetIndexedField\x12M\n\x0cgrouping_set\x18\x16 \x01(\x0b\x32$.chalk.expression.v1.GroupingSetNodeB\x02\x18\x01H\x01R\x0bgroupingSet\x12\x37\n\x04\x63ube\x18\x17 \x01(\x0b\x32\x1d.chalk.expression.v1.CubeNodeB\x02\x18\x01H\x01R\x04\x63ube\x12=\n\x06rollup\x18\x18 \x01(\x0b\x32\x1f.chalk.expression.v1.RollupNodeB\x02\x18\x01H\x01R\x06rollup\x12:\n\x07is_true\x18\x19 \x01(\x0b\x32\x1b.chalk.expression.v1.IsTrueB\x02\x18\x01H\x01R\x06isTrue\x12=\n\x08is_false\x18\x1a \x01(\x0b\x32\x1c.chalk.expression.v1.IsFalseB\x02\x18\x01H\x01R\x07isFalse\x12\x43\n\nis_unknown\x18\x1b \x01(\x0b\x32\x1e.chalk.expression.v1.IsUnknownB\x02\x18\x01H\x01R\tisUnknown\x12\x44\n\x0bis_not_true\x18\x1c \x01(\x0b\x32\x1e.chalk.expression.v1.IsNotTrueB\x02\x18\x01H\x01R\tisNotTrue\x12G\n\x0cis_not_false\x18\x1d \x01(\x0b\x32\x1f.chalk.expression.v1.IsNotFalseB\x02\x18\x01H\x01R\nisNotFalse\x12M\n\x0eis_not_unknown\x18\x1e \x01(\x0b\x32!.chalk.expression.v1.IsNotUnknownB\x02\x18\x01H\x01R\x0cisNotUnknown\x12\x37\n\x04like\x18\x1f \x01(\x0b\x32\x1d.chalk.expression.v1.LikeNodeB\x02\x18\x01H\x01R\x04like\x12:\n\x05ilike\x18 \x01(\x0b\x32\x1e.chalk.expression.v1.ILikeNodeB\x02\x18\x01H\x01R\x05ilike\x12G\n\nsimilar_to\x18! \x01(\x0b\x32\".chalk.expression.v1.SimilarToNodeB\x02\x18\x01H\x01R\tsimilarTo\x12L\n\x0bplaceholder\x18\" \x01(\x0b\x32$.chalk.expression.v1.PlaceholderNodeB\x02\x18\x01H\x01R\x0bplaceholderB\x0b\n\texpr_formB\x0b\n\texpr_type\",\n\x0e\x43olumnRelation\x12\x1a\n\x08relation\x18\x01 \x01(\tR\x08relation\"]\n\x06\x43olumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12?\n\x08relation\x18\x02 \x01(\x0b\x32#.chalk.expression.v1.ColumnRelationR\x08relation\";\n\x08Wildcard\x12!\n\tqualifier\x18\x01 \x01(\tH\x00R\tqualifier\x88\x01\x01\x42\x0c\n\n_qualifier\"Y\n\x0fPlaceholderNode\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x36\n\tdata_type\x18\x02 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\x08\x64\x61taType\"K\n\x0fLogicalExprList\x12\x38\n\x04\x65xpr\x18\x01 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"K\n\x0fGroupingSetNode\x12\x38\n\x04\x65xpr\x18\x01 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprListR\x04\x65xpr\"D\n\x08\x43ubeNode\x12\x38\n\x04\x65xpr\x18\x01 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"F\n\nRollupNode\x12\x38\n\x04\x65xpr\x18\x01 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"C\n\x10NamedStructField\x12/\n\x04name\x18\x01 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x04name\"C\n\tListIndex\x12\x36\n\x03key\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x03key\"\x81\x01\n\tListRange\x12:\n\x05start\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x05start\x12\x38\n\x04stop\x18\x02 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04stop\"\xad\x02\n\x0fGetIndexedField\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12U\n\x12named_struct_field\x18\x02 \x01(\x0b\x32%.chalk.expression.v1.NamedStructFieldH\x00R\x10namedStructField\x12?\n\nlist_index\x18\x03 \x01(\x0b\x32\x1e.chalk.expression.v1.ListIndexH\x00R\tlistIndex\x12?\n\nlist_range\x18\x04 \x01(\x0b\x32\x1e.chalk.expression.v1.ListRangeH\x00R\tlistRangeB\x07\n\x05\x66ield\"B\n\x06IsNull\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"E\n\tIsNotNull\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"B\n\x06IsTrue\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"C\n\x07IsFalse\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"E\n\tIsUnknown\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"E\n\tIsNotTrue\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"F\n\nIsNotFalse\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"H\n\x0cIsNotUnknown\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"?\n\x03Not\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"\xa1\x01\n\tAliasNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x14\n\x05\x61lias\x18\x02 \x01(\tR\x05\x61lias\x12\x44\n\x08relation\x18\x03 \x03(\x0b\x32(.chalk.expression.v1.OwnedTableReferenceR\x08relation\"*\n\x12\x42\x61reTableReference\x12\x14\n\x05table\x18\x01 \x01(\tR\x05table\"E\n\x15PartialTableReference\x12\x16\n\x06schema\x18\x01 \x01(\tR\x06schema\x12\x14\n\x05table\x18\x02 \x01(\tR\x05table\"\\\n\x12\x46ullTableReference\x12\x18\n\x07\x63\x61talog\x18\x01 \x01(\tR\x07\x63\x61talog\x12\x16\n\x06schema\x18\x02 \x01(\tR\x06schema\x12\x14\n\x05table\x18\x03 \x01(\tR\x05table\"\xf3\x01\n\x13OwnedTableReference\x12=\n\x04\x62\x61re\x18\x01 \x01(\x0b\x32\'.chalk.expression.v1.BareTableReferenceH\x00R\x04\x62\x61re\x12\x46\n\x07partial\x18\x02 \x01(\x0b\x32*.chalk.expression.v1.PartialTableReferenceH\x00R\x07partial\x12=\n\x04\x66ull\x18\x03 \x01(\x0b\x32\'.chalk.expression.v1.FullTableReferenceH\x00R\x04\x66ullB\x16\n\x14table_reference_enum\"b\n\x0e\x42inaryExprNode\x12@\n\x08operands\x18\x01 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x08operands\x12\x0e\n\x02op\x18\x03 \x01(\tR\x02op\"H\n\x0cNegativeNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\"\x9a\x01\n\nInListNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x38\n\x04list\x18\x02 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04list\x12\x18\n\x07negated\x18\x03 \x01(\x08R\x07negated\"\x85\x01\n\x12ScalarFunctionNode\x12\x35\n\x03\x66un\x18\x01 \x01(\x0e\x32#.chalk.expression.v1.ScalarFunctionR\x03\x66un\x12\x38\n\x04\x61rgs\x18\x02 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x61rgs\"\xb5\x02\n\x11\x41ggregateExprNode\x12K\n\raggr_function\x18\x01 \x01(\x0e\x32&.chalk.expression.v1.AggregateFunctionR\x0c\x61ggrFunction\x12\x38\n\x04\x65xpr\x18\x02 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x1a\n\x08\x64istinct\x18\x03 \x01(\x08R\x08\x64istinct\x12<\n\x06\x66ilter\x18\x04 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x06\x66ilter\x12?\n\x08order_by\x18\x05 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x07orderBy\"\x9a\x03\n\x14\x41ggregateUDFExprNode\x12\x19\n\x08\x66un_name\x18\x01 \x01(\tR\x07\x66unName\x12\x38\n\x04\x61rgs\x18\x02 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x61rgs\x12<\n\x06\x66ilter\x18\x03 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x06\x66ilter\x12?\n\x08order_by\x18\x04 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x07orderBy\x12M\n\x06kwargs\x18\x05 \x03(\x0b\x32\x35.chalk.expression.v1.AggregateUDFExprNode.KwargsEntryR\x06kwargs\x1a_\n\x0bKwargsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12:\n\x05value\x18\x02 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x05value:\x02\x38\x01\"h\n\x11ScalarUDFExprNode\x12\x19\n\x08\x66un_name\x18\x01 \x01(\tR\x07\x66unName\x12\x38\n\x04\x61rgs\x18\x02 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x61rgs\"\x81\x04\n\x0eWindowExprNode\x12M\n\raggr_function\x18\x01 \x01(\x0e\x32&.chalk.expression.v1.AggregateFunctionH\x00R\x0c\x61ggrFunction\x12X\n\x11\x62uilt_in_function\x18\x02 \x01(\x0e\x32*.chalk.expression.v1.BuiltInWindowFunctionH\x00R\x0f\x62uiltInFunction\x12\x14\n\x04udaf\x18\x03 \x01(\tH\x00R\x04udaf\x12\x14\n\x04udwf\x18\t \x01(\tH\x00R\x04udwf\x12\x38\n\x04\x65xpr\x18\x04 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12G\n\x0cpartition_by\x18\x05 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x0bpartitionBy\x12?\n\x08order_by\x18\x06 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x07orderBy\x12\x43\n\x0cwindow_frame\x18\x08 \x01(\x0b\x32 .chalk.expression.v1.WindowFrameR\x0bwindowFrameB\x11\n\x0fwindow_function\"\xd3\x01\n\x0b\x42\x65tweenNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x18\n\x07negated\x18\x02 \x01(\x08R\x07negated\x12\x36\n\x03low\x18\x03 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x03low\x12\x38\n\x04high\x18\x04 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04high\"\xbf\x01\n\x08LikeNode\x12\x18\n\x07negated\x18\x01 \x01(\x08R\x07negated\x12\x38\n\x04\x65xpr\x18\x02 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12>\n\x07pattern\x18\x03 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x07pattern\x12\x1f\n\x0b\x65scape_char\x18\x04 \x01(\tR\nescapeChar\"\xc0\x01\n\tILikeNode\x12\x18\n\x07negated\x18\x01 \x01(\x08R\x07negated\x12\x38\n\x04\x65xpr\x18\x02 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12>\n\x07pattern\x18\x03 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x07pattern\x12\x1f\n\x0b\x65scape_char\x18\x04 \x01(\tR\nescapeChar\"\xc4\x01\n\rSimilarToNode\x12\x18\n\x07negated\x18\x01 \x01(\x08R\x07negated\x12\x38\n\x04\x65xpr\x18\x02 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12>\n\x07pattern\x18\x03 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x07pattern\x12\x1f\n\x0b\x65scape_char\x18\x04 \x01(\tR\nescapeChar\"\xcc\x01\n\x08\x43\x61seNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x43\n\x0ewhen_then_expr\x18\x02 \x03(\x0b\x32\x1d.chalk.expression.v1.WhenThenR\x0cwhenThenExpr\x12\x41\n\telse_expr\x18\x03 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x08\x65lseExpr\"\x90\x01\n\x08WhenThen\x12\x41\n\twhen_expr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x08whenExpr\x12\x41\n\tthen_expr\x18\x02 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x08thenExpr\"~\n\x08\x43\x61stNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x38\n\narrow_type\x18\x02 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\"\x81\x01\n\x0bTryCastNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x38\n\narrow_type\x18\x02 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\"{\n\x0cSortExprNode\x12\x38\n\x04\x65xpr\x18\x01 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04\x65xpr\x12\x10\n\x03\x61sc\x18\x02 \x01(\x08R\x03\x61sc\x12\x1f\n\x0bnulls_first\x18\x03 \x01(\x08R\nnullsFirst\"\xf6\x01\n\x0bWindowFrame\x12S\n\x12window_frame_units\x18\x01 \x01(\x0e\x32%.chalk.expression.v1.WindowFrameUnitsR\x10windowFrameUnits\x12\x46\n\x0bstart_bound\x18\x02 \x01(\x0b\x32%.chalk.expression.v1.WindowFrameBoundR\nstartBound\x12@\n\x05\x62ound\x18\x03 \x01(\x0b\x32%.chalk.expression.v1.WindowFrameBoundH\x00R\x05\x62ound\x88\x01\x01\x42\x08\n\x06_bound\"\xb2\x01\n\x10WindowFrameBound\x12`\n\x17window_frame_bound_type\x18\x01 \x01(\x0e\x32).chalk.expression.v1.WindowFrameBoundTypeR\x14windowFrameBoundType\x12<\n\x0b\x62ound_value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\nboundValue*\xa0\x1f\n\x0eScalarFunction\x12\x1f\n\x1bSCALAR_FUNCTION_UNSPECIFIED\x10\x00\x12\x17\n\x13SCALAR_FUNCTION_ABS\x10\x01\x12\x18\n\x14SCALAR_FUNCTION_ACOS\x10\x02\x12\x18\n\x14SCALAR_FUNCTION_ASIN\x10\x03\x12\x18\n\x14SCALAR_FUNCTION_ATAN\x10\x04\x12\x19\n\x15SCALAR_FUNCTION_ASCII\x10\x05\x12\x18\n\x14SCALAR_FUNCTION_CEIL\x10\x06\x12\x17\n\x13SCALAR_FUNCTION_COS\x10\x07\x12\x1a\n\x16SCALAR_FUNCTION_DIGEST\x10\x08\x12\x17\n\x13SCALAR_FUNCTION_EXP\x10\t\x12\x19\n\x15SCALAR_FUNCTION_FLOOR\x10\n\x12\x16\n\x12SCALAR_FUNCTION_LN\x10\x0b\x12\x17\n\x13SCALAR_FUNCTION_LOG\x10\x0c\x12\x19\n\x15SCALAR_FUNCTION_LOG10\x10\r\x12\x18\n\x14SCALAR_FUNCTION_LOG2\x10\x0e\x12\x19\n\x15SCALAR_FUNCTION_ROUND\x10\x0f\x12\x1a\n\x16SCALAR_FUNCTION_SIGNUM\x10\x10\x12\x17\n\x13SCALAR_FUNCTION_SIN\x10\x11\x12\x18\n\x14SCALAR_FUNCTION_SQRT\x10\x12\x12\x17\n\x13SCALAR_FUNCTION_TAN\x10\x13\x12\x19\n\x15SCALAR_FUNCTION_TRUNC\x10\x14\x12\x19\n\x15SCALAR_FUNCTION_ARRAY\x10\x15\x12 \n\x1cSCALAR_FUNCTION_REGEXP_MATCH\x10\x16\x12\x1e\n\x1aSCALAR_FUNCTION_BIT_LENGTH\x10\x17\x12\x19\n\x15SCALAR_FUNCTION_BTRIM\x10\x18\x12$\n SCALAR_FUNCTION_CHARACTER_LENGTH\x10\x19\x12\x17\n\x13SCALAR_FUNCTION_CHR\x10\x1a\x12\x1a\n\x16SCALAR_FUNCTION_CONCAT\x10\x1b\x12)\n%SCALAR_FUNCTION_CONCAT_WITH_SEPARATOR\x10\x1c\x12\x1d\n\x19SCALAR_FUNCTION_DATE_PART\x10\x1d\x12\x1e\n\x1aSCALAR_FUNCTION_DATE_TRUNC\x10\x1e\x12\x1c\n\x18SCALAR_FUNCTION_INIT_CAP\x10\x1f\x12\x18\n\x14SCALAR_FUNCTION_LEFT\x10 \x12\x18\n\x14SCALAR_FUNCTION_LPAD\x10!\x12\x19\n\x15SCALAR_FUNCTION_LOWER\x10\"\x12\x19\n\x15SCALAR_FUNCTION_LTRIM\x10#\x12\x17\n\x13SCALAR_FUNCTION_MD5\x10$\x12\x1b\n\x17SCALAR_FUNCTION_NULL_IF\x10%\x12 \n\x1cSCALAR_FUNCTION_OCTET_LENGTH\x10&\x12\x1a\n\x16SCALAR_FUNCTION_RANDOM\x10\'\x12\"\n\x1eSCALAR_FUNCTION_REGEXP_REPLACE\x10(\x12\x1a\n\x16SCALAR_FUNCTION_REPEAT\x10)\x12\x1b\n\x17SCALAR_FUNCTION_REPLACE\x10*\x12\x1b\n\x17SCALAR_FUNCTION_REVERSE\x10+\x12\x19\n\x15SCALAR_FUNCTION_RIGHT\x10,\x12\x18\n\x14SCALAR_FUNCTION_RPAD\x10-\x12\x19\n\x15SCALAR_FUNCTION_RTRIM\x10.\x12\x1a\n\x16SCALAR_FUNCTION_SHA224\x10/\x12\x1a\n\x16SCALAR_FUNCTION_SHA256\x10\x30\x12\x1a\n\x16SCALAR_FUNCTION_SHA384\x10\x31\x12\x1a\n\x16SCALAR_FUNCTION_SHA512\x10\x32\x12\x1e\n\x1aSCALAR_FUNCTION_SPLIT_PART\x10\x33\x12\x1f\n\x1bSCALAR_FUNCTION_STARTS_WITH\x10\x34\x12\x1a\n\x16SCALAR_FUNCTION_STRPOS\x10\x35\x12\x1a\n\x16SCALAR_FUNCTION_SUBSTR\x10\x36\x12\x1a\n\x16SCALAR_FUNCTION_TO_HEX\x10\x37\x12 \n\x1cSCALAR_FUNCTION_TO_TIMESTAMP\x10\x38\x12\'\n#SCALAR_FUNCTION_TO_TIMESTAMP_MILLIS\x10\x39\x12\'\n#SCALAR_FUNCTION_TO_TIMESTAMP_MICROS\x10:\x12(\n$SCALAR_FUNCTION_TO_TIMESTAMP_SECONDS\x10;\x12\x17\n\x13SCALAR_FUNCTION_NOW\x10<\x12\x1d\n\x19SCALAR_FUNCTION_TRANSLATE\x10=\x12\x18\n\x14SCALAR_FUNCTION_TRIM\x10>\x12\x19\n\x15SCALAR_FUNCTION_UPPER\x10?\x12\x1c\n\x18SCALAR_FUNCTION_COALESCE\x10@\x12\x19\n\x15SCALAR_FUNCTION_POWER\x10\x41\x12\x1e\n\x1aSCALAR_FUNCTION_STRUCT_FUN\x10\x42\x12!\n\x1dSCALAR_FUNCTION_FROM_UNIXTIME\x10\x43\x12\x19\n\x15SCALAR_FUNCTION_ATAN2\x10\x44\x12\x1c\n\x18SCALAR_FUNCTION_DATE_BIN\x10\x45\x12 \n\x1cSCALAR_FUNCTION_ARROW_TYPEOF\x10\x46\x12 \n\x1cSCALAR_FUNCTION_CURRENT_DATE\x10G\x12 \n\x1cSCALAR_FUNCTION_CURRENT_TIME\x10H\x12\x18\n\x14SCALAR_FUNCTION_UUID\x10I\x12\x18\n\x14SCALAR_FUNCTION_CBRT\x10J\x12\x19\n\x15SCALAR_FUNCTION_ACOSH\x10K\x12\x19\n\x15SCALAR_FUNCTION_ASINH\x10L\x12\x19\n\x15SCALAR_FUNCTION_ATANH\x10M\x12\x18\n\x14SCALAR_FUNCTION_SINH\x10N\x12\x18\n\x14SCALAR_FUNCTION_COSH\x10O\x12\x18\n\x14SCALAR_FUNCTION_TANH\x10P\x12\x16\n\x12SCALAR_FUNCTION_PI\x10Q\x12\x1b\n\x17SCALAR_FUNCTION_DEGREES\x10R\x12\x1b\n\x17SCALAR_FUNCTION_RADIANS\x10S\x12\x1d\n\x19SCALAR_FUNCTION_FACTORIAL\x10T\x12\x17\n\x13SCALAR_FUNCTION_LCM\x10U\x12\x17\n\x13SCALAR_FUNCTION_GCD\x10V\x12 \n\x1cSCALAR_FUNCTION_ARRAY_APPEND\x10W\x12 \n\x1cSCALAR_FUNCTION_ARRAY_CONCAT\x10X\x12\x1e\n\x1aSCALAR_FUNCTION_ARRAY_DIMS\x10Y\x12 \n\x1cSCALAR_FUNCTION_ARRAY_REPEAT\x10Z\x12 \n\x1cSCALAR_FUNCTION_ARRAY_LENGTH\x10[\x12\x1f\n\x1bSCALAR_FUNCTION_ARRAY_NDIMS\x10\\\x12\"\n\x1eSCALAR_FUNCTION_ARRAY_POSITION\x10]\x12#\n\x1fSCALAR_FUNCTION_ARRAY_POSITIONS\x10^\x12!\n\x1dSCALAR_FUNCTION_ARRAY_PREPEND\x10_\x12 \n\x1cSCALAR_FUNCTION_ARRAY_REMOVE\x10`\x12!\n\x1dSCALAR_FUNCTION_ARRAY_REPLACE\x10\x61\x12#\n\x1fSCALAR_FUNCTION_ARRAY_TO_STRING\x10\x62\x12\x1f\n\x1bSCALAR_FUNCTION_CARDINALITY\x10\x63\x12!\n\x1dSCALAR_FUNCTION_ARRAY_ELEMENT\x10\x64\x12\x1f\n\x1bSCALAR_FUNCTION_ARRAY_SLICE\x10\x65\x12\x1a\n\x16SCALAR_FUNCTION_ENCODE\x10\x66\x12\x1a\n\x16SCALAR_FUNCTION_DECODE\x10g\x12\x17\n\x13SCALAR_FUNCTION_COT\x10h\x12\x1d\n\x19SCALAR_FUNCTION_ARRAY_HAS\x10i\x12!\n\x1dSCALAR_FUNCTION_ARRAY_HAS_ANY\x10j\x12!\n\x1dSCALAR_FUNCTION_ARRAY_HAS_ALL\x10k\x12\"\n\x1eSCALAR_FUNCTION_ARRAY_REMOVE_N\x10l\x12#\n\x1fSCALAR_FUNCTION_ARRAY_REPLACE_N\x10m\x12$\n SCALAR_FUNCTION_ARRAY_REMOVE_ALL\x10n\x12%\n!SCALAR_FUNCTION_ARRAY_REPLACE_ALL\x10o\x12\x19\n\x15SCALAR_FUNCTION_NANVL\x10p\x12\x1b\n\x17SCALAR_FUNCTION_FLATTEN\x10q\x12\x19\n\x15SCALAR_FUNCTION_ISNAN\x10r\x12\x1a\n\x16SCALAR_FUNCTION_ISZERO\x10s\x12\x1f\n\x1bSCALAR_FUNCTION_ARRAY_EMPTY\x10t\x12\"\n\x1eSCALAR_FUNCTION_ARRAY_POP_BACK\x10u\x12#\n\x1fSCALAR_FUNCTION_STRING_TO_ARRAY\x10v\x12&\n\"SCALAR_FUNCTION_TO_TIMESTAMP_NANOS\x10w\x12#\n\x1fSCALAR_FUNCTION_ARRAY_INTERSECT\x10x\x12\x1f\n\x1bSCALAR_FUNCTION_ARRAY_UNION\x10y\x12\x1c\n\x18SCALAR_FUNCTION_OVER_LAY\x10z\x12\x19\n\x15SCALAR_FUNCTION_RANGE\x10{\x12 \n\x1cSCALAR_FUNCTION_ARRAY_EXCEPT\x10|\x12#\n\x1fSCALAR_FUNCTION_ARRAY_POP_FRONT\x10}\x12\x1f\n\x1bSCALAR_FUNCTION_LEVENSHTEIN\x10~\x12 \n\x1cSCALAR_FUNCTION_SUBSTR_INDEX\x10\x7f\x12 \n\x1bSCALAR_FUNCTION_FIND_IN_SET\x10\x80\x01\x12\x1f\n\x1aSCALAR_FUNCTION_ARRAY_SORT\x10\x81\x01\x12#\n\x1eSCALAR_FUNCTION_ARRAY_DISTINCT\x10\x82\x01*\x8b\n\n\x11\x41ggregateFunction\x12\"\n\x1e\x41GGREGATE_FUNCTION_UNSPECIFIED\x10\x00\x12\x1a\n\x16\x41GGREGATE_FUNCTION_MIN\x10\x01\x12\x1a\n\x16\x41GGREGATE_FUNCTION_MAX\x10\x02\x12\x1a\n\x16\x41GGREGATE_FUNCTION_SUM\x10\x03\x12\x1a\n\x16\x41GGREGATE_FUNCTION_AVG\x10\x04\x12\x1c\n\x18\x41GGREGATE_FUNCTION_COUNT\x10\x05\x12&\n\"AGGREGATE_FUNCTION_APPROX_DISTINCT\x10\x06\x12\x1c\n\x18\x41GGREGATE_FUNCTION_ARRAY\x10\x07\x12\x1f\n\x1b\x41GGREGATE_FUNCTION_VARIANCE\x10\x08\x12#\n\x1f\x41GGREGATE_FUNCTION_VARIANCE_POP\x10\t\x12!\n\x1d\x41GGREGATE_FUNCTION_COVARIANCE\x10\n\x12%\n!AGGREGATE_FUNCTION_COVARIANCE_POP\x10\x0b\x12\x1d\n\x19\x41GGREGATE_FUNCTION_STDDEV\x10\x0c\x12!\n\x1d\x41GGREGATE_FUNCTION_STDDEV_POP\x10\r\x12\"\n\x1e\x41GGREGATE_FUNCTION_CORRELATION\x10\x0e\x12-\n)AGGREGATE_FUNCTION_APPROX_PERCENTILE_CONT\x10\x0f\x12$\n AGGREGATE_FUNCTION_APPROX_MEDIAN\x10\x10\x12\x39\n5AGGREGATE_FUNCTION_APPROX_PERCENTILE_CONT_WITH_WEIGHT\x10\x11\x12\x1f\n\x1b\x41GGREGATE_FUNCTION_GROUPING\x10\x12\x12\x1d\n\x19\x41GGREGATE_FUNCTION_MEDIAN\x10\x13\x12\x1e\n\x1a\x41GGREGATE_FUNCTION_BIT_AND\x10\x14\x12\x1d\n\x19\x41GGREGATE_FUNCTION_BIT_OR\x10\x15\x12\x1e\n\x1a\x41GGREGATE_FUNCTION_BIT_XOR\x10\x16\x12\x1f\n\x1b\x41GGREGATE_FUNCTION_BOOL_AND\x10\x17\x12\x1e\n\x1a\x41GGREGATE_FUNCTION_BOOL_OR\x10\x18\x12\"\n\x1e\x41GGREGATE_FUNCTION_FIRST_VALUE\x10\x19\x12!\n\x1d\x41GGREGATE_FUNCTION_LAST_VALUE\x10\x1a\x12!\n\x1d\x41GGREGATE_FUNCTION_REGR_SLOPE\x10\x1b\x12%\n!AGGREGATE_FUNCTION_REGR_INTERCEPT\x10\x1c\x12!\n\x1d\x41GGREGATE_FUNCTION_REGR_COUNT\x10\x1d\x12\x1e\n\x1a\x41GGREGATE_FUNCTION_REGR_R2\x10\x1e\x12 \n\x1c\x41GGREGATE_FUNCTION_REGR_AVGX\x10\x1f\x12 \n\x1c\x41GGREGATE_FUNCTION_REGR_AVGY\x10 \x12\x1f\n\x1b\x41GGREGATE_FUNCTION_REGR_SXX\x10!\x12\x1f\n\x1b\x41GGREGATE_FUNCTION_REGR_SYY\x10\"\x12\x1f\n\x1b\x41GGREGATE_FUNCTION_REGR_SXY\x10#\x12\x1d\n\x19\x41GGREGATE_FUNCTION_STRING\x10$*\xed\x03\n\x15\x42uiltInWindowFunction\x12(\n$BUILT_IN_WINDOW_FUNCTION_UNSPECIFIED\x10\x00\x12\'\n#BUILT_IN_WINDOW_FUNCTION_ROW_NUMBER\x10\x01\x12!\n\x1d\x42UILT_IN_WINDOW_FUNCTION_RANK\x10\x02\x12\'\n#BUILT_IN_WINDOW_FUNCTION_DENSE_RANK\x10\x03\x12)\n%BUILT_IN_WINDOW_FUNCTION_PERCENT_RANK\x10\x04\x12&\n\"BUILT_IN_WINDOW_FUNCTION_CUME_DIST\x10\x05\x12\"\n\x1e\x42UILT_IN_WINDOW_FUNCTION_NTILE\x10\x06\x12 \n\x1c\x42UILT_IN_WINDOW_FUNCTION_LAG\x10\x07\x12!\n\x1d\x42UILT_IN_WINDOW_FUNCTION_LEAD\x10\x08\x12(\n$BUILT_IN_WINDOW_FUNCTION_FIRST_VALUE\x10\t\x12\'\n#BUILT_IN_WINDOW_FUNCTION_LAST_VALUE\x10\n\x12&\n\"BUILT_IN_WINDOW_FUNCTION_NTH_VALUE\x10\x0b*\x90\x01\n\x10WindowFrameUnits\x12\"\n\x1eWINDOW_FRAME_UNITS_UNSPECIFIED\x10\x00\x12\x1b\n\x17WINDOW_FRAME_UNITS_ROWS\x10\x01\x12\x1c\n\x18WINDOW_FRAME_UNITS_RANGE\x10\x02\x12\x1d\n\x19WINDOW_FRAME_UNITS_GROUPS\x10\x03*\xb6\x01\n\x14WindowFrameBoundType\x12\'\n#WINDOW_FRAME_BOUND_TYPE_UNSPECIFIED\x10\x00\x12\'\n#WINDOW_FRAME_BOUND_TYPE_CURRENT_ROW\x10\x01\x12%\n!WINDOW_FRAME_BOUND_TYPE_PRECEDING\x10\x02\x12%\n!WINDOW_FRAME_BOUND_TYPE_FOLLOWING\x10\x03\x42\x98\x01\n\x17\x63om.chalk.expression.v1B\x0f\x45xpressionProtoP\x01\xa2\x02\x03\x43\x45X\xaa\x02\x13\x43halk.Expression.V1\xca\x02\x13\x43halk\\Expression\\V1\xe2\x02\x1f\x43halk\\Expression\\V1\\GPBMetadata\xea\x02\x15\x43halk::Expression::V1b\x06proto3"
11
+
12
+ pool = Google::Protobuf::DescriptorPool.generated_pool
13
+ pool.add_serialized_file(descriptor_data)
14
+
15
+ module Chalk
16
+ module Expression
17
+ module V1
18
+ Identifier = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.Identifier").msgclass
19
+ ExprGetAttribute = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ExprGetAttribute").msgclass
20
+ ExprGetSubscript = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ExprGetSubscript").msgclass
21
+ ExprCall = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ExprCall").msgclass
22
+ ExprLiteral = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ExprLiteral").msgclass
23
+ LogicalExprNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.LogicalExprNode").msgclass
24
+ ColumnRelation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ColumnRelation").msgclass
25
+ Column = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.Column").msgclass
26
+ Wildcard = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.Wildcard").msgclass
27
+ PlaceholderNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.PlaceholderNode").msgclass
28
+ LogicalExprList = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.LogicalExprList").msgclass
29
+ GroupingSetNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.GroupingSetNode").msgclass
30
+ CubeNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.CubeNode").msgclass
31
+ RollupNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.RollupNode").msgclass
32
+ NamedStructField = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.NamedStructField").msgclass
33
+ ListIndex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ListIndex").msgclass
34
+ ListRange = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ListRange").msgclass
35
+ GetIndexedField = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.GetIndexedField").msgclass
36
+ IsNull = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsNull").msgclass
37
+ IsNotNull = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsNotNull").msgclass
38
+ IsTrue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsTrue").msgclass
39
+ IsFalse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsFalse").msgclass
40
+ IsUnknown = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsUnknown").msgclass
41
+ IsNotTrue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsNotTrue").msgclass
42
+ IsNotFalse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsNotFalse").msgclass
43
+ IsNotUnknown = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.IsNotUnknown").msgclass
44
+ Not = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.Not").msgclass
45
+ AliasNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.AliasNode").msgclass
46
+ BareTableReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.BareTableReference").msgclass
47
+ PartialTableReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.PartialTableReference").msgclass
48
+ FullTableReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.FullTableReference").msgclass
49
+ OwnedTableReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.OwnedTableReference").msgclass
50
+ BinaryExprNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.BinaryExprNode").msgclass
51
+ NegativeNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.NegativeNode").msgclass
52
+ InListNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.InListNode").msgclass
53
+ ScalarFunctionNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ScalarFunctionNode").msgclass
54
+ AggregateExprNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.AggregateExprNode").msgclass
55
+ AggregateUDFExprNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.AggregateUDFExprNode").msgclass
56
+ ScalarUDFExprNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ScalarUDFExprNode").msgclass
57
+ WindowExprNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.WindowExprNode").msgclass
58
+ BetweenNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.BetweenNode").msgclass
59
+ LikeNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.LikeNode").msgclass
60
+ ILikeNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ILikeNode").msgclass
61
+ SimilarToNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.SimilarToNode").msgclass
62
+ CaseNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.CaseNode").msgclass
63
+ WhenThen = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.WhenThen").msgclass
64
+ CastNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.CastNode").msgclass
65
+ TryCastNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.TryCastNode").msgclass
66
+ SortExprNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.SortExprNode").msgclass
67
+ WindowFrame = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.WindowFrame").msgclass
68
+ WindowFrameBound = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.WindowFrameBound").msgclass
69
+ ScalarFunction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.ScalarFunction").enummodule
70
+ AggregateFunction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.AggregateFunction").enummodule
71
+ BuiltInWindowFunction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.BuiltInWindowFunction").enummodule
72
+ WindowFrameUnits = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.WindowFrameUnits").enummodule
73
+ WindowFrameBoundType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.expression.v1.WindowFrameBoundType").enummodule
74
+ end
75
+ end
76
+ end
@@ -0,0 +1,63 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/graph/v1/graph.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'chalk_ruby/protos/chalk/arrow/v1/arrow_pb'
8
+ require 'chalk_ruby/protos/chalk/expression/v1/expression_pb'
9
+ require 'chalk_ruby/protos/chalk/graph/v1/sources_pb'
10
+ require 'chalk_ruby/protos/chalk/graph/v2/sources_pb'
11
+ require 'chalk_ruby/protos/chalk/lsp/v1/lsp_pb'
12
+ require 'google/protobuf/duration_pb'
13
+ require 'google/protobuf/timestamp_pb'
14
+
15
+
16
+ descriptor_data = "\n\x1a\x63halk/graph/v1/graph.proto\x12\x0e\x63halk.graph.v1\x1a\x1a\x63halk/arrow/v1/arrow.proto\x1a$chalk/expression/v1/expression.proto\x1a\x1c\x63halk/graph/v1/sources.proto\x1a\x1c\x63halk/graph/v2/sources.proto\x1a\x16\x63halk/lsp/v1/lsp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xdc\x05\n\x05Graph\x12=\n\x0c\x66\x65\x61ture_sets\x18\x01 \x03(\x0b\x32\x1a.chalk.graph.v1.FeatureSetR\x0b\x66\x65\x61tureSets\x12\x36\n\tresolvers\x18\x02 \x03(\x0b\x32\x18.chalk.graph.v1.ResolverR\tresolvers\x12I\n\x10stream_resolvers\x18\x03 \x03(\x0b\x32\x1e.chalk.graph.v1.StreamResolverR\x0fstreamResolvers\x12\x43\n\x0esink_resolvers\x18\x04 \x03(\x0b\x32\x1c.chalk.graph.v1.SinkResolverR\rsinkResolvers\x12M\n\x10\x64\x61tabase_sources\x18\x05 \x03(\x0b\x32\x1e.chalk.graph.v1.DatabaseSourceB\x02\x18\x01R\x0f\x64\x61tabaseSources\x12G\n\x0estream_sources\x18\x06 \x03(\x0b\x32\x1c.chalk.graph.v1.StreamSourceB\x02\x18\x01R\rstreamSources\x12?\n\rnamed_queries\x18\x07 \x03(\x0b\x32\x1a.chalk.graph.v1.NamedQueryR\x0cnamedQueries\x12N\n\x13\x64\x61tabase_sources_v2\x18\x08 \x03(\x0b\x32\x1e.chalk.graph.v2.DatabaseSourceR\x11\x64\x61tabaseSourcesV2\x12Y\n\x16\x64\x61tabase_source_groups\x18\n \x03(\x0b\x32#.chalk.graph.v2.DatabaseSourceGroupR\x14\x64\x61tabaseSourceGroups\x12H\n\x11stream_sources_v2\x18\t \x03(\x0b\x32\x1c.chalk.graph.v2.StreamSourceR\x0fstreamSourcesV2\"\xfc\x06\n\nNamedQuery\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12(\n\rquery_version\x18\x02 \x01(\tH\x00R\x0cqueryVersion\x88\x01\x01\x12\x14\n\x05input\x18\x03 \x03(\tR\x05input\x12\x16\n\x06output\x18\x04 \x03(\tR\x06output\x12\x12\n\x04tags\x18\x05 \x03(\tR\x04tags\x12%\n\x0b\x64\x65scription\x18\x06 \x01(\tH\x01R\x0b\x64\x65scription\x88\x01\x01\x12\x19\n\x05owner\x18\x07 \x01(\tH\x02R\x05owner\x88\x01\x01\x12\x38\n\x04meta\x18\x08 \x03(\x0b\x32$.chalk.graph.v1.NamedQuery.MetaEntryR\x04meta\x12G\n\tstaleness\x18\t \x03(\x0b\x32).chalk.graph.v1.NamedQuery.StalenessEntryR\tstaleness\x12W\n\x0fplanner_options\x18\n \x03(\x0b\x32..chalk.graph.v1.NamedQuery.PlannerOptionsEntryR\x0eplannerOptions\x12\x1b\n\tfile_name\x18\x0b \x01(\tR\x08\x66ileName\x12(\n\rdeployment_id\x18\x0c \x01(\tH\x03R\x0c\x64\x65ploymentId\x88\x01\x01\x12\\\n\x15source_file_reference\x18\r \x01(\x0b\x32#.chalk.graph.v1.SourceFileReferenceH\x04R\x13sourceFileReference\x88\x01\x01\x1a\x37\n\tMetaEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1aW\n\x0eStalenessEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12/\n\x05value\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationR\x05value:\x02\x38\x01\x1a\x41\n\x13PlannerOptionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x10\n\x0e_query_versionB\x0e\n\x0c_descriptionB\x08\n\x06_ownerB\x10\n\x0e_deployment_idB\x18\n\x16_source_file_reference\"\xaa\x03\n\nFeatureSet\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x37\n\x08\x66\x65\x61tures\x18\x02 \x03(\x0b\x32\x1b.chalk.graph.v1.FeatureTypeR\x08\x66\x65\x61tures\x12O\n\x16max_staleness_duration\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationR\x14maxStalenessDuration\x12!\n\x0cis_singleton\x18\x04 \x01(\x08R\x0bisSingleton\x12\x12\n\x04tags\x18\x05 \x03(\tR\x04tags\x12\x19\n\x05owner\x18\x06 \x01(\tH\x00R\x05owner\x88\x01\x01\x12\x15\n\x03\x64oc\x18\x07 \x01(\tH\x01R\x03\x64oc\x88\x01\x01\x12\x36\n\x15\x65tl_offline_to_online\x18\x08 \x01(\x08H\x02R\x12\x65tlOfflineToOnline\x88\x01\x01\x12\"\n\nclass_path\x18\t \x01(\tH\x03R\tclassPath\x88\x01\x01\x42\x08\n\x06_ownerB\x06\n\x04_docB\x18\n\x16_etl_offline_to_onlineB\r\n\x0b_class_path\"\xa2\x03\n\x0b\x46\x65\x61tureType\x12;\n\x06scalar\x18\x01 \x01(\x0b\x32!.chalk.graph.v1.ScalarFeatureTypeH\x00R\x06scalar\x12<\n\x07has_one\x18\x02 \x01(\x0b\x32!.chalk.graph.v1.HasOneFeatureTypeH\x00R\x06hasOne\x12?\n\x08has_many\x18\x03 \x01(\x0b\x32\".chalk.graph.v1.HasManyFeatureTypeH\x00R\x07hasMany\x12K\n\x0c\x66\x65\x61ture_time\x18\x04 \x01(\x0b\x32&.chalk.graph.v1.FeatureTimeFeatureTypeH\x00R\x0b\x66\x65\x61tureTime\x12\x41\n\x08windowed\x18\x05 \x01(\x0b\x32#.chalk.graph.v1.WindowedFeatureTypeH\x00R\x08windowed\x12?\n\x08group_by\x18\x06 \x01(\x0b\x32\".chalk.graph.v1.GroupByFeatureTypeH\x00R\x07groupByB\x06\n\x04type\"\xa9\x01\n\x10\x46\x65\x61tureReference\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12\x34\n\x04path\x18\x03 \x03(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x04path\x12-\n\x02\x64\x66\x18\x04 \x01(\x0b\x32\x1d.chalk.graph.v1.DataFrameTypeR\x02\x64\x66\"\xb3\x02\n\rDataFrameType\x12%\n\x0eroot_namespace\x18\x01 \x01(\tR\rrootNamespace\x12K\n\x10required_columns\x18\x02 \x03(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x0frequiredColumns\x12K\n\x10optional_columns\x18\x03 \x03(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x0foptionalColumns\x12<\n\x06\x66ilter\x18\x04 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x06\x66ilter\x12\x19\n\x05limit\x18\x05 \x01(\x04H\x00R\x05limit\x88\x01\x01\x42\x08\n\x06_limit\"\xd5\x05\n\x12GroupByFeatureType\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12\x1f\n\x0bis_nullable\x18\x03 \x01(\x08R\nisNullable\x12.\n\x10internal_version\x18\x04 \x01(\x04H\x00R\x0finternalVersion\x88\x01\x01\x12\x38\n\narrow_type\x18\x05 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\x12\x43\n\x0b\x61ggregation\x18\x06 \x01(\x0b\x32!.chalk.graph.v1.WindowAggregationR\x0b\x61ggregation\x12\x44\n\x10window_durations\x18\x07 \x03(\x0b\x32\x19.google.protobuf.DurationR\x0fwindowDurations\x12\x44\n\nexpression\x18\x08 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\nexpression\x12@\n\rdefault_value\x18\t \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x0c\x64\x65\x66\x61ultValue\x12\x12\n\x04tags\x18\n \x03(\tR\x04tags\x12%\n\x0b\x64\x65scription\x18\x0b \x01(\tH\x01R\x0b\x64\x65scription\x88\x01\x01\x12\x19\n\x05owner\x18\x0c \x01(\tH\x02R\x05owner\x88\x01\x01\x12\x43\n\x0bvalidations\x18\r \x03(\x0b\x32!.chalk.graph.v1.FeatureValidationR\x0bvalidations\x12%\n\x0e\x61ttribute_name\x18\x0e \x01(\tR\rattributeNameB\x13\n\x11_internal_versionB\x0e\n\x0c_descriptionB\x08\n\x06_owner\"\xfa\t\n\x11ScalarFeatureType\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12)\n\x10is_autogenerated\x18\x03 \x01(\x08R\x0fisAutogenerated\x12\x1d\n\nno_display\x18\x04 \x01(\x08R\tnoDisplay\x12\x1d\n\nis_primary\x18\x05 \x01(\x08R\tisPrimary\x12\x1f\n\x0bis_nullable\x18\x06 \x01(\x08R\nisNullable\x12.\n\x10internal_version\x18\x07 \x01(\x04H\x00R\x0finternalVersion\x88\x01\x01\x12O\n\x16max_staleness_duration\x18\x08 \x01(\x0b\x32\x19.google.protobuf.DurationR\x14maxStalenessDuration\x12K\n\x14offline_ttl_duration\x18\n \x01(\x0b\x32\x19.google.protobuf.DurationR\x12offlineTtlDuration\x12\x38\n\narrow_type\x18\x0b \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\x12\x35\n\x07version\x18\x0c \x01(\x0b\x32\x1b.chalk.graph.v1.VersionInfoR\x07version\x12;\n\x0bwindow_info\x18\r \x01(\x0b\x32\x1a.chalk.graph.v1.WindowInfoR\nwindowInfo\x12@\n\rdefault_value\x18\x0e \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x0c\x64\x65\x66\x61ultValue\x12\x12\n\x04tags\x18\x0f \x03(\tR\x04tags\x12%\n\x0b\x64\x65scription\x18\x10 \x01(\tH\x01R\x0b\x64\x65scription\x88\x01\x01\x12\x19\n\x05owner\x18\x11 \x01(\tH\x02R\x05owner\x88\x01\x01\x12\x44\n\nexpression\x18\x12 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\nexpression\x12\x43\n\x0bvalidations\x18\x13 \x03(\x0b\x32!.chalk.graph.v1.FeatureValidationR\x0bvalidations\x12;\n\x08last_for\x18\x14 \x01(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x07lastFor\x12\x36\n\x15\x65tl_offline_to_online\x18\x15 \x01(\x08H\x03R\x12\x65tlOfflineToOnline\x88\x01\x01\x12:\n\x19is_distance_pseudofeature\x18\x16 \x01(\x08R\x17isDistancePseudofeature\x12%\n\x0e\x61ttribute_name\x18\x17 \x01(\tR\rattributeName\x12#\n\ris_deprecated\x18\x18 \x01(\x08R\x0cisDeprecated\x12\x44\n\x0e\x63\x61\x63he_strategy\x18\x19 \x01(\x0e\x32\x1d.chalk.graph.v1.CacheStrategyR\rcacheStrategyB\x13\n\x11_internal_versionB\x0e\n\x0c_descriptionB\x08\n\x06_ownerB\x18\n\x16_etl_offline_to_online\"\x8f\x03\n\x11HasOneFeatureType\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12+\n\x11\x66oreign_namespace\x18\x03 \x01(\tR\x10\x66oreignNamespace\x12\x38\n\x04join\x18\x04 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04join\x12\x1f\n\x0bis_nullable\x18\x05 \x01(\x08R\nisNullable\x12)\n\x10is_autogenerated\x18\x06 \x01(\x08R\x0fisAutogenerated\x12\x12\n\x04tags\x18\x07 \x03(\tR\x04tags\x12%\n\x0b\x64\x65scription\x18\x08 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12\x19\n\x05owner\x18\t \x01(\tH\x01R\x05owner\x88\x01\x01\x12%\n\x0e\x61ttribute_name\x18\n \x01(\tR\rattributeNameB\x0e\n\x0c_descriptionB\x08\n\x06_owner\"\xc0\x03\n\x12HasManyFeatureType\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12+\n\x11\x66oreign_namespace\x18\x03 \x01(\tR\x10\x66oreignNamespace\x12\x38\n\x04join\x18\x04 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04join\x12)\n\x10is_autogenerated\x18\x05 \x01(\x08R\x0fisAutogenerated\x12O\n\x16max_staleness_duration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationR\x14maxStalenessDuration\x12\x12\n\x04tags\x18\x07 \x03(\tR\x04tags\x12%\n\x0b\x64\x65scription\x18\x08 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12\x19\n\x05owner\x18\t \x01(\tH\x01R\x05owner\x88\x01\x01\x12%\n\x0e\x61ttribute_name\x18\n \x01(\tR\rattributeNameB\x0e\n\x0c_descriptionB\x08\n\x06_owner\"\x8c\x02\n\x16\x46\x65\x61tureTimeFeatureType\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12)\n\x10is_autogenerated\x18\x03 \x01(\x08R\x0fisAutogenerated\x12\x12\n\x04tags\x18\x04 \x03(\tR\x04tags\x12%\n\x0b\x64\x65scription\x18\x05 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12\x19\n\x05owner\x18\x06 \x01(\tH\x01R\x05owner\x88\x01\x01\x12%\n\x0e\x61ttribute_name\x18\x07 \x01(\tR\rattributeNameB\x0e\n\x0c_descriptionB\x08\n\x06_owner\"\xdf\x01\n\x13WindowedFeatureType\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12)\n\x10is_autogenerated\x18\x03 \x01(\x08R\x0fisAutogenerated\x12\x44\n\x10window_durations\x18\x04 \x03(\x0b\x32\x19.google.protobuf.DurationR\x0fwindowDurations\x12%\n\x0e\x61ttribute_name\x18\x05 \x01(\tR\rattributeName\"\xea\x07\n\x11WindowAggregation\x12\x1c\n\tnamespace\x18\x01 \x01(\tR\tnamespace\x12;\n\x08group_by\x18\x02 \x03(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x07groupBy\x12\x42\n\x0f\x62ucket_duration\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationR\x0e\x62ucketDuration\x12 \n\x0b\x61ggregation\x18\x04 \x01(\tR\x0b\x61ggregation\x12H\n\x0c\x61ggregate_on\x18\x05 \x01(\x0b\x32 .chalk.graph.v1.FeatureReferenceH\x00R\x0b\x61ggregateOn\x88\x01\x01\x12\x38\n\narrow_type\x18\x06 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\x12>\n\x07\x66ilters\x18\x07 \x03(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x07\x66ilters\x12\x30\n\x11\x62\x61\x63kfill_resolver\x18\x08 \x01(\tH\x01R\x10\x62\x61\x63kfillResolver\x88\x01\x01\x12\\\n\x1a\x62\x61\x63kfill_lookback_duration\x18\t \x01(\x0b\x32\x19.google.protobuf.DurationH\x02R\x18\x62\x61\x63kfillLookbackDuration\x88\x01\x01\x12O\n\x13\x62\x61\x63kfill_start_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03R\x11\x62\x61\x63kfillStartTime\x88\x01\x01\x12\x34\n\x13\x63ontinuous_resolver\x18\x0b \x01(\tH\x04R\x12\x63ontinuousResolver\x88\x01\x01\x12\\\n\x1a\x63ontinuous_buffer_duration\x18\x0c \x01(\x0b\x32\x19.google.protobuf.DurationH\x05R\x18\x63ontinuousBufferDuration\x88\x01\x01\x12\x30\n\x11\x62\x61\x63kfill_schedule\x18\r \x01(\tH\x06R\x10\x62\x61\x63kfillSchedule\x88\x01\x01\x42\x0f\n\r_aggregate_onB\x14\n\x12_backfill_resolverB\x1d\n\x1b_backfill_lookback_durationB\x16\n\x14_backfill_start_timeB\x16\n\x14_continuous_resolverB\x1d\n\x1b_continuous_buffer_durationB\x14\n\x12_backfill_schedule\"\x9d\x01\n\nWindowInfo\x12\x35\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12H\n\x0b\x61ggregation\x18\x02 \x01(\x0b\x32!.chalk.graph.v1.WindowAggregationH\x00R\x0b\x61ggregation\x88\x01\x01\x42\x0e\n\x0c_aggregation\"\x8c\x01\n\x0c\x46\x65\x61tureInput\x12:\n\x07\x66\x65\x61ture\x18\x01 \x01(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x07\x66\x65\x61ture\x12@\n\rdefault_value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x0c\x64\x65\x66\x61ultValue\"\xbf\x01\n\rResolverInput\x12\x38\n\x07\x66\x65\x61ture\x18\x01 \x01(\x0b\x32\x1c.chalk.graph.v1.FeatureInputH\x00R\x07\x66\x65\x61ture\x12/\n\x02\x64\x66\x18\x02 \x01(\x0b\x32\x1d.chalk.graph.v1.DataFrameTypeH\x00R\x02\x64\x66\x12\x35\n\x05state\x18\x03 \x01(\x0b\x32\x1d.chalk.graph.v1.ResolverStateH\x00R\x05stateB\x0c\n\nannotation\"\x8d\x01\n\x0eResolverOutput\x12<\n\x07\x66\x65\x61ture\x18\x01 \x01(\x0b\x32 .chalk.graph.v1.FeatureReferenceH\x00R\x07\x66\x65\x61ture\x12/\n\x02\x64\x66\x18\x02 \x01(\x0b\x32\x1d.chalk.graph.v1.DataFrameTypeH\x00R\x02\x64\x66\x42\x0c\n\nannotation\"\x9b\t\n\x08Resolver\x12\x10\n\x03\x66qn\x18\x01 \x01(\tR\x03\x66qn\x12\x30\n\x04kind\x18\x02 \x01(\x0e\x32\x1c.chalk.graph.v1.ResolverKindR\x04kind\x12\x35\n\x06inputs\x18\x03 \x03(\x0b\x32\x1d.chalk.graph.v1.ResolverInputR\x06inputs\x12\x38\n\x07outputs\x18\x04 \x03(\x0b\x32\x1e.chalk.graph.v1.ResolverOutputR\x07outputs\x12!\n\x0cis_generator\x18\x05 \x01(\x08R\x0bisGenerator\x12N\n\x0c\x64\x61ta_sources\x18\x06 \x03(\x0b\x32\'.chalk.graph.v1.DatabaseSourceReferenceB\x02\x18\x01R\x0b\x64\x61taSources\x12&\n\x0cmachine_type\x18\x07 \x01(\tH\x00R\x0bmachineType\x88\x01\x01\x12\x12\n\x04tags\x18\x08 \x03(\tR\x04tags\x12\x19\n\x05owner\x18\t \x01(\tH\x01R\x05owner\x88\x01\x01\x12\x15\n\x03\x64oc\x18\n \x01(\tH\x02R\x03\x64oc\x88\x01\x01\x12\"\n\x0c\x65nvironments\x18\x0b \x03(\tR\x0c\x65nvironments\x12\x44\n\x10timeout_duration\x18\x0c \x01(\x0b\x32\x19.google.protobuf.DurationR\x0ftimeoutDuration\x12\x34\n\x08schedule\x18\r \x01(\x0b\x32\x18.chalk.graph.v1.ScheduleR\x08schedule\x12\x38\n\x04when\x18\x0e \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x04when\x12J\n\x0b\x63ron_filter\x18\x0f \x01(\x0b\x32).chalk.graph.v1.CronFilterWithFeatureArgsR\ncronFilter\x12=\n\x08\x66unction\x18\x10 \x01(\x0b\x32!.chalk.graph.v1.FunctionReferenceR\x08\x66unction\x12\x41\n\rresource_hint\x18\x11 \x01(\x0e\x32\x1c.chalk.graph.v1.ResourceHintR\x0cresourceHint\x12\x1b\n\tis_static\x18\x12 \x01(\x08R\x08isStatic\x12\x1e\n\x08is_total\x18\x13 \x01(\x08H\x03R\x07isTotal\x88\x01\x01\x12\x1b\n\tunique_on\x18\x14 \x03(\tR\x08uniqueOn\x12%\n\x0epartitioned_by\x18\x15 \x03(\tR\rpartitionedBy\x12O\n\x0f\x64\x61ta_sources_v2\x18\x16 \x03(\x0b\x32\'.chalk.graph.v2.DatabaseSourceReferenceR\rdataSourcesV2\x12O\n\x10static_operation\x18\x17 \x01(\x0b\x32$.chalk.expression.v1.LogicalExprNodeR\x0fstaticOperationB\x0f\n\r_machine_typeB\x08\n\x06_ownerB\x06\n\x04_docB\x0b\n\t_is_total\"\xc1\x07\n\x0cSinkResolver\x12\x10\n\x03\x66qn\x18\x01 \x01(\tR\x03\x66qn\x12\x35\n\x06inputs\x18\x02 \x03(\x0b\x32\x1d.chalk.graph.v1.ResolverInputR\x06inputs\x12$\n\x0b\x62uffer_size\x18\x03 \x01(\x04H\x01R\nbufferSize\x88\x01\x01\x12\x46\n\x11\x64\x65\x62ounce_duration\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x10\x64\x65\x62ounceDuration\x12G\n\x12max_delay_duration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x10maxDelayDuration\x12\x16\n\x06upsert\x18\x06 \x01(\x08R\x06upsert\x12P\n\rstream_source\x18\x07 \x01(\x0b\x32%.chalk.graph.v1.StreamSourceReferenceB\x02\x18\x01H\x00R\x0cstreamSource\x12V\n\x0f\x64\x61tabase_source\x18\x08 \x01(\x0b\x32\'.chalk.graph.v1.DatabaseSourceReferenceB\x02\x18\x01H\x00R\x0e\x64\x61tabaseSource\x12Q\n\x10stream_source_v2\x18\x0f \x01(\x0b\x32%.chalk.graph.v2.StreamSourceReferenceH\x00R\x0estreamSourceV2\x12W\n\x12\x64\x61tabase_source_v2\x18\x10 \x01(\x0b\x32\'.chalk.graph.v2.DatabaseSourceReferenceH\x00R\x10\x64\x61tabaseSourceV2\x12&\n\x0cmachine_type\x18\t \x01(\tH\x02R\x0bmachineType\x88\x01\x01\x12\x15\n\x03\x64oc\x18\n \x01(\tH\x03R\x03\x64oc\x88\x01\x01\x12\x19\n\x05owner\x18\x0b \x01(\tH\x04R\x05owner\x88\x01\x01\x12\"\n\x0c\x65nvironments\x18\x0c \x03(\tR\x0c\x65nvironments\x12\x44\n\x10timeout_duration\x18\r \x01(\x0b\x32\x19.google.protobuf.DurationR\x0ftimeoutDuration\x12=\n\x08\x66unction\x18\x0e \x01(\x0b\x32!.chalk.graph.v1.FunctionReferenceR\x08\x66unctionB\r\n\x0bintegrationB\x0e\n\x0c_buffer_sizeB\x0f\n\r_machine_typeB\x06\n\x04_docB\x08\n\x06_owner\"\xcd\x02\n\tParseInfo\x12H\n\x0eparse_function\x18\x01 \x01(\x0b\x32!.chalk.graph.v1.FunctionReferenceR\rparseFunction\x12T\n\x19parse_function_input_type\x18\x02 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\x16parseFunctionInputType\x12V\n\x1aparse_function_output_type\x18\x03 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\x17parseFunctionOutputType\x12H\n!is_parse_function_output_optional\x18\x04 \x01(\x08R\x1disParseFunctionOutputOptional\"\xff\x06\n\x0eStreamResolver\x12\x10\n\x03\x66qn\x18\x01 \x01(\tR\x03\x66qn\x12;\n\x06params\x18\x02 \x03(\x0b\x32#.chalk.graph.v1.StreamResolverParamR\x06params\x12\x38\n\x07outputs\x18\x03 \x03(\x0b\x32\x1e.chalk.graph.v1.ResolverOutputR\x07outputs\x12\x42\n\x0f\x65xplicit_schema\x18\x04 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\x0e\x65xplicitSchema\x12-\n\x04keys\x18\x05 \x03(\x0b\x32\x19.chalk.graph.v1.StreamKeyR\x04keys\x12\x41\n\x06source\x18\x06 \x01(\x0b\x32%.chalk.graph.v1.StreamSourceReferenceB\x02\x18\x01R\x06source\x12\x38\n\nparse_info\x18\x07 \x01(\x0b\x32\x19.chalk.graph.v1.ParseInfoR\tparseInfo\x12.\n\x04mode\x18\x08 \x01(\x0e\x32\x1a.chalk.graph.v1.WindowModeR\x04mode\x12\"\n\x0c\x65nvironments\x18\t \x03(\tR\x0c\x65nvironments\x12\x44\n\x10timeout_duration\x18\n \x01(\x0b\x32\x19.google.protobuf.DurationR\x0ftimeoutDuration\x12=\n\x18timestamp_attribute_name\x18\x0b \x01(\tH\x00R\x16timestampAttributeName\x88\x01\x01\x12\x19\n\x05owner\x18\x0c \x01(\tH\x01R\x05owner\x88\x01\x01\x12\x15\n\x03\x64oc\x18\r \x01(\tH\x02R\x03\x64oc\x88\x01\x01\x12&\n\x0cmachine_type\x18\x0e \x01(\tH\x03R\x0bmachineType\x88\x01\x01\x12=\n\x08\x66unction\x18\x0f \x01(\x0b\x32!.chalk.graph.v1.FunctionReferenceR\x08\x66unction\x12\x42\n\tsource_v2\x18\x10 \x01(\x0b\x32%.chalk.graph.v2.StreamSourceReferenceR\x08sourceV2B\x1b\n\x19_timestamp_attribute_nameB\x08\n\x06_ownerB\x06\n\x04_docB\x0f\n\r_machine_type\"\x80\x01\n\rResolverState\x12\x35\n\x07initial\x18\x01 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x07initial\x12\x38\n\narrow_type\x18\x02 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\"\xf7\x01\n\x13StreamResolverParam\x12\x46\n\x07message\x18\x01 \x01(\x0b\x32*.chalk.graph.v1.StreamResolverParamMessageH\x00R\x07message\x12Y\n\x0emessage_window\x18\x02 \x01(\x0b\x32\x30.chalk.graph.v1.StreamResolverParamMessageWindowH\x00R\rmessageWindow\x12\x35\n\x05state\x18\x03 \x01(\x0b\x32\x1d.chalk.graph.v1.ResolverStateH\x00R\x05stateB\x06\n\x04type\"p\n StreamResolverParamMessageWindow\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x38\n\narrow_type\x18\x02 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\"j\n\x1aStreamResolverParamMessage\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x38\n\narrow_type\x18\x02 \x01(\x0b\x32\x19.chalk.arrow.v1.ArrowTypeR\tarrowType\"\xc3\x01\n\x11\x46unctionReference\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06module\x18\x02 \x01(\tR\x06module\x12\x1b\n\tfile_name\x18\x03 \x01(\tR\x08\x66ileName\x12/\n\x13\x66unction_definition\x18\x04 \x01(\tR\x12\x66unctionDefinition\x12$\n\x0bsource_line\x18\x05 \x01(\x05H\x00R\nsourceLine\x88\x01\x01\x42\x0e\n\x0c_source_line\"\x7f\n\x13SourceFileReference\x12)\n\x05range\x18\x01 \x01(\x0b\x32\x13.chalk.lsp.v1.RangeR\x05range\x12\x17\n\x04\x63ode\x18\x02 \x01(\tH\x00R\x04\x63ode\x88\x01\x01\x12\x1b\n\tfile_name\x18\x03 \x01(\tR\x08\x66ileNameB\x07\n\x05_code\"Y\n\tStreamKey\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12:\n\x07\x66\x65\x61ture\x18\x02 \x01(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x07\x66\x65\x61ture\"\x8c\x01\n\x19\x43ronFilterWithFeatureArgs\x12\x39\n\x06\x66ilter\x18\x01 \x01(\x0b\x32!.chalk.graph.v1.FunctionReferenceR\x06\x66ilter\x12\x34\n\x04\x61rgs\x18\x02 \x03(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x04\x61rgs\"\xe1\x01\n\x08Schedule\x12\x1a\n\x07\x63rontab\x18\x01 \x01(\tH\x00R\x07\x63rontab\x12\x37\n\x08\x64uration\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationH\x00R\x08\x64uration\x12\x39\n\x06\x66ilter\x18\x03 \x01(\x0b\x32!.chalk.graph.v1.FunctionReferenceR\x06\x66ilter\x12\x39\n\x06sample\x18\x04 \x01(\x0b\x32!.chalk.graph.v1.FunctionReferenceR\x06sampleB\n\n\x08schedule\"\xa3\x01\n\x11\x46\x65\x61tureValidation\x12\x12\n\x03min\x18\x01 \x01(\x02H\x00R\x03min\x12\x12\n\x03max\x18\x02 \x01(\x02H\x00R\x03max\x12\x1f\n\nmin_length\x18\x03 \x01(\rH\x00R\tminLength\x12\x1f\n\nmax_length\x18\x04 \x01(\rH\x00R\tmaxLength\x12\x16\n\x06strict\x18\x05 \x01(\x08R\x06strictB\x0c\n\nvalidation\"A\n\x0bVersionInfo\x12\x18\n\x07\x64\x65\x66\x61ult\x18\x01 \x01(\rR\x07\x64\x65\x66\x61ult\x12\x18\n\x07maximum\x18\x02 \x01(\rR\x07maximum\"\x93\x01\n\x10StrictValidation\x12:\n\x07\x66\x65\x61ture\x18\x01 \x01(\x0b\x32 .chalk.graph.v1.FeatureReferenceR\x07\x66\x65\x61ture\x12\x43\n\x0bvalidations\x18\x02 \x03(\x0b\x32!.chalk.graph.v1.FeatureValidationR\x0bvalidations*\x9d\x02\n\rCacheStrategy\x12\x1e\n\x1a\x43\x41\x43HE_STRATEGY_UNSPECIFIED\x10\x00\x12\x16\n\x12\x43\x41\x43HE_STRATEGY_ALL\x10\x01\x12\x1b\n\x17\x43\x41\x43HE_STRATEGY_NO_NULLS\x10\x02\x12\x1e\n\x1a\x43\x41\x43HE_STRATEGY_EVICT_NULLS\x10\x03\x12\x1e\n\x1a\x43\x41\x43HE_STRATEGY_NO_DEFAULTS\x10\x04\x12!\n\x1d\x43\x41\x43HE_STRATEGY_EVICT_DEFAULTS\x10\x05\x12\'\n#CACHE_STRATEGY_NO_NULLS_OR_DEFAULTS\x10\x06\x12+\n\'CACHE_STRATEGY_EVICT_NULLS_AND_DEFAULTS\x10\x07*b\n\x0cResolverKind\x12\x1d\n\x19RESOLVER_KIND_UNSPECIFIED\x10\x00\x12\x18\n\x14RESOLVER_KIND_ONLINE\x10\x01\x12\x19\n\x15RESOLVER_KIND_OFFLINE\x10\x02*Z\n\x0cResourceHint\x12\x1d\n\x19RESOURCE_HINT_UNSPECIFIED\x10\x00\x12\x15\n\x11RESOURCE_HINT_CPU\x10\x01\x12\x14\n\x10RESOURCE_HINT_IO\x10\x02*t\n\nWindowMode\x12\x1b\n\x17WINDOW_MODE_UNSPECIFIED\x10\x00\x12\x1a\n\x16WINDOW_MODE_CONTINUOUS\x10\x01\x12\x18\n\x14WINDOW_MODE_TUMBLING\x10\x02\x12\x13\n\x0fWINDOW_MODE_CDC\x10\x03\x42z\n\x12\x63om.chalk.graph.v1B\nGraphProtoP\x01\xa2\x02\x03\x43GX\xaa\x02\x0e\x43halk.Graph.V1\xca\x02\x0e\x43halk\\Graph\\V1\xe2\x02\x1a\x43halk\\Graph\\V1\\GPBMetadata\xea\x02\x10\x43halk::Graph::V1b\x06proto3"
17
+
18
+ pool = Google::Protobuf::DescriptorPool.generated_pool
19
+ pool.add_serialized_file(descriptor_data)
20
+
21
+ module Chalk
22
+ module Graph
23
+ module V1
24
+ Graph = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.Graph").msgclass
25
+ NamedQuery = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.NamedQuery").msgclass
26
+ FeatureSet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.FeatureSet").msgclass
27
+ FeatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.FeatureType").msgclass
28
+ FeatureReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.FeatureReference").msgclass
29
+ DataFrameType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.DataFrameType").msgclass
30
+ GroupByFeatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.GroupByFeatureType").msgclass
31
+ ScalarFeatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.ScalarFeatureType").msgclass
32
+ HasOneFeatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.HasOneFeatureType").msgclass
33
+ HasManyFeatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.HasManyFeatureType").msgclass
34
+ FeatureTimeFeatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.FeatureTimeFeatureType").msgclass
35
+ WindowedFeatureType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.WindowedFeatureType").msgclass
36
+ WindowAggregation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.WindowAggregation").msgclass
37
+ WindowInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.WindowInfo").msgclass
38
+ FeatureInput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.FeatureInput").msgclass
39
+ ResolverInput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.ResolverInput").msgclass
40
+ ResolverOutput = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.ResolverOutput").msgclass
41
+ Resolver = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.Resolver").msgclass
42
+ SinkResolver = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.SinkResolver").msgclass
43
+ ParseInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.ParseInfo").msgclass
44
+ StreamResolver = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamResolver").msgclass
45
+ ResolverState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.ResolverState").msgclass
46
+ StreamResolverParam = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamResolverParam").msgclass
47
+ StreamResolverParamMessageWindow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamResolverParamMessageWindow").msgclass
48
+ StreamResolverParamMessage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamResolverParamMessage").msgclass
49
+ FunctionReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.FunctionReference").msgclass
50
+ SourceFileReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.SourceFileReference").msgclass
51
+ StreamKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamKey").msgclass
52
+ CronFilterWithFeatureArgs = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.CronFilterWithFeatureArgs").msgclass
53
+ Schedule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.Schedule").msgclass
54
+ FeatureValidation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.FeatureValidation").msgclass
55
+ VersionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.VersionInfo").msgclass
56
+ StrictValidation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StrictValidation").msgclass
57
+ CacheStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.CacheStrategy").enummodule
58
+ ResolverKind = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.ResolverKind").enummodule
59
+ ResourceHint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.ResourceHint").enummodule
60
+ WindowMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.WindowMode").enummodule
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/graph/v1/sources.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'chalk_ruby/protos/chalk/arrow/v1/arrow_pb'
8
+ require 'google/protobuf/duration_pb'
9
+
10
+
11
+ descriptor_data = "\n\x1c\x63halk/graph/v1/sources.proto\x12\x0e\x63halk.graph.v1\x1a\x1a\x63halk/arrow/v1/arrow.proto\x1a\x1egoogle/protobuf/duration.proto\"a\n\x15StreamSourceReference\x12\x34\n\x04type\x18\x01 \x01(\x0e\x32 .chalk.graph.v1.StreamSourceTypeR\x04type\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xc0\x01\n\x0cStreamSource\x12\x33\n\x05kafka\x18\x01 \x01(\x0b\x32\x1b.chalk.graph.v1.KafkaSourceH\x00R\x05kafka\x12\x39\n\x07kinesis\x18\x02 \x01(\x0b\x32\x1d.chalk.graph.v1.KinesisSourceH\x00R\x07kinesis\x12\x36\n\x06pubsub\x18\x03 \x01(\x0b\x32\x1c.chalk.graph.v1.PubSubSourceH\x00R\x06pubsubB\x08\n\x06source\"\xee\x03\n\rKinesisSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1f\n\x0bstream_name\x18\x02 \x01(\tR\nstreamName\x12\x1d\n\nstream_arn\x18\x03 \x01(\tR\tstreamArn\x12\x1f\n\x0bregion_name\x18\x04 \x01(\tR\nregionName\x12M\n\x15late_arrival_deadline\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x13lateArrivalDeadline\x12@\n\x1d\x64\x65\x61\x64_letter_queue_stream_name\x18\x06 \x01(\tR\x19\x64\x65\x61\x64LetterQueueStreamName\x12)\n\x11\x61ws_access_key_id\x18\x07 \x01(\tR\x0e\x61wsAccessKeyId\x12\x31\n\x15\x61ws_secret_access_key\x18\x08 \x01(\tR\x12\x61wsSecretAccessKey\x12*\n\x11\x61ws_session_token\x18\t \x01(\tR\x0f\x61wsSessionToken\x12!\n\x0c\x65ndpoint_url\x18\n \x01(\tR\x0b\x65ndpointUrl\x12*\n\x11\x63onsumer_role_arn\x18\x0b \x01(\tR\x0f\x63onsumerRoleArn\"\xae\x04\n\x0bKafkaSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12+\n\x11\x62ootstrap_servers\x18\x02 \x03(\tR\x10\x62ootstrapServers\x12\x14\n\x05topic\x18\x03 \x01(\tR\x05topic\x12\x32\n\x15ssl_keystore_location\x18\x04 \x01(\tR\x13sslKeystoreLocation\x12\x1e\n\x0bssl_ca_file\x18\x05 \x01(\tR\tsslCaFile\x12(\n\x10\x63lient_id_prefix\x18\x06 \x01(\tR\x0e\x63lientIdPrefix\x12&\n\x0fgroup_id_prefix\x18\x07 \x01(\tR\rgroupIdPrefix\x12+\n\x11security_protocol\x18\x08 \x01(\tR\x10securityProtocol\x12%\n\x0esasl_mechanism\x18\t \x01(\tR\rsaslMechanism\x12#\n\rsasl_username\x18\n \x01(\tR\x0csaslUsername\x12#\n\rsasl_password\x18\x0b \x01(\tR\x0csaslPassword\x12M\n\x15late_arrival_deadline\x18\x0c \x01(\x0b\x32\x19.google.protobuf.DurationR\x13lateArrivalDeadline\x12\x35\n\x17\x64\x65\x61\x64_letter_queue_topic\x18\r \x01(\tR\x14\x64\x65\x61\x64LetterQueueTopic\"\xf0\x01\n\x0cPubSubSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\nproject_id\x18\x02 \x01(\tR\tprojectId\x12\'\n\x0fsubscription_id\x18\x03 \x01(\tR\x0esubscriptionId\x12M\n\x15late_arrival_deadline\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x13lateArrivalDeadline\x12\x35\n\x17\x64\x65\x61\x64_letter_queue_topic\x18\x05 \x01(\tR\x14\x64\x65\x61\x64LetterQueueTopic\"e\n\x17\x44\x61tabaseSourceReference\x12\x36\n\x04type\x18\x01 \x01(\x0e\x32\".chalk.graph.v1.DatabaseSourceTypeR\x04type\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xb2\x05\n\x0e\x44\x61tabaseSource\x12<\n\x08\x62igquery\x18\x01 \x01(\x0b\x32\x1e.chalk.graph.v1.BigQuerySourceH\x00R\x08\x62igquery\x12<\n\x08\x63loudsql\x18\x02 \x01(\x0b\x32\x1e.chalk.graph.v1.CloudSQLSourceH\x00R\x08\x63loudsql\x12\x42\n\ndatabricks\x18\x03 \x01(\x0b\x32 .chalk.graph.v1.DatabricksSourceH\x00R\ndatabricks\x12\x33\n\x05mysql\x18\x04 \x01(\x0b\x32\x1b.chalk.graph.v1.MySQLSourceH\x00R\x05mysql\x12<\n\x08postgres\x18\x05 \x01(\x0b\x32\x1e.chalk.graph.v1.PostgresSourceH\x00R\x08postgres\x12<\n\x08redshift\x18\x06 \x01(\x0b\x32\x1e.chalk.graph.v1.RedshiftSourceH\x00R\x08redshift\x12?\n\tsnowflake\x18\x07 \x01(\x0b\x32\x1f.chalk.graph.v1.SnowflakeSourceH\x00R\tsnowflake\x12\x36\n\x06sqlite\x18\x08 \x01(\x0b\x32\x1c.chalk.graph.v1.SQLiteSourceH\x00R\x06sqlite\x12\x39\n\x07spanner\x18\t \x01(\x0b\x32\x1d.chalk.graph.v1.SpannerSourceH\x00R\x07spanner\x12\x33\n\x05trino\x18\n \x01(\x0b\x32\x1b.chalk.graph.v1.TrinoSourceH\x00R\x05trino\x12<\n\x08\x64ynamodb\x18\x0b \x01(\x0b\x32\x1e.chalk.graph.v1.DynamoDBSourceH\x00R\x08\x64ynamodbB\x08\n\x06source\"\xbd\x04\n\x0e\x42igQuerySource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07project\x18\x02 \x01(\tR\x07project\x12\x18\n\x07\x64\x61taset\x18\x03 \x01(\tR\x07\x64\x61taset\x12\x1a\n\x08location\x18\x04 \x01(\tR\x08location\x12-\n\x12\x63redentials_base64\x18\x05 \x01(\tR\x11\x63redentialsBase64\x12)\n\x10\x63redentials_path\x18\x06 \x01(\tR\x0f\x63redentialsPath\x12O\n\x0b\x65ngine_args\x18\x07 \x03(\x0b\x32..chalk.graph.v1.BigQuerySource.EngineArgsEntryR\nengineArgs\x12_\n\x11\x61sync_engine_args\x18\x08 \x03(\x0b\x32\x33.chalk.graph.v1.BigQuerySource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\xf8\x03\n\x0e\x43loudSQLSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x0e\n\x02\x64\x62\x18\x02 \x01(\tR\x02\x64\x62\x12\x12\n\x04user\x18\x03 \x01(\tR\x04user\x12\x1a\n\x08password\x18\x04 \x01(\tR\x08password\x12#\n\rinstance_name\x18\x05 \x01(\tR\x0cinstanceName\x12O\n\x0b\x65ngine_args\x18\x06 \x03(\x0b\x32..chalk.graph.v1.CloudSQLSource.EngineArgsEntryR\nengineArgs\x12_\n\x11\x61sync_engine_args\x18\x07 \x03(\x0b\x32\x33.chalk.graph.v1.CloudSQLSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\x91\x04\n\x10\x44\x61tabricksSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04host\x18\x02 \x01(\tR\x04host\x12\x12\n\x04port\x18\x03 \x01(\tR\x04port\x12\x0e\n\x02\x64\x62\x18\x04 \x01(\tR\x02\x64\x62\x12\x1b\n\thttp_path\x18\x05 \x01(\tR\x08httpPath\x12!\n\x0c\x61\x63\x63\x65ss_token\x18\x06 \x01(\tR\x0b\x61\x63\x63\x65ssToken\x12Q\n\x0b\x65ngine_args\x18\x07 \x03(\x0b\x32\x30.chalk.graph.v1.DatabricksSource.EngineArgsEntryR\nengineArgs\x12\x61\n\x11\x61sync_engine_args\x18\x08 \x03(\x0b\x32\x35.chalk.graph.v1.DatabricksSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\xde\x05\n\x0e\x44ynamoDBSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x38\n\x16\x61ws_client_id_override\x18\x02 \x01(\tH\x00R\x13\x61wsClientIdOverride\x88\x01\x01\x12@\n\x1a\x61ws_client_secret_override\x18\x03 \x01(\tH\x01R\x17\x61wsClientSecretOverride\x88\x01\x01\x12\x33\n\x13\x61ws_region_override\x18\x04 \x01(\tH\x02R\x11\x61wsRegionOverride\x88\x01\x01\x12\x30\n\x11\x65ndpoint_override\x18\x05 \x01(\tH\x03R\x10\x65ndpointOverride\x88\x01\x01\x12O\n\x0b\x65ngine_args\x18\x06 \x03(\x0b\x32..chalk.graph.v1.DynamoDBSource.EngineArgsEntryR\nengineArgs\x12_\n\x11\x61sync_engine_args\x18\x07 \x03(\x0b\x32\x33.chalk.graph.v1.DynamoDBSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x42\x19\n\x17_aws_client_id_overrideB\x1d\n\x1b_aws_client_secret_overrideB\x16\n\x14_aws_region_overrideB\x14\n\x12_endpoint_override\"\xf2\x03\n\x0bMySQLSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04host\x18\x02 \x01(\tR\x04host\x12\x12\n\x04port\x18\x03 \x01(\tR\x04port\x12\x0e\n\x02\x64\x62\x18\x04 \x01(\tR\x02\x64\x62\x12\x12\n\x04user\x18\x05 \x01(\tR\x04user\x12\x1a\n\x08password\x18\x06 \x01(\tR\x08password\x12L\n\x0b\x65ngine_args\x18\x07 \x03(\x0b\x32+.chalk.graph.v1.MySQLSource.EngineArgsEntryR\nengineArgs\x12\\\n\x11\x61sync_engine_args\x18\x08 \x03(\x0b\x32\x30.chalk.graph.v1.MySQLSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\xfb\x03\n\x0ePostgresSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04host\x18\x02 \x01(\tR\x04host\x12\x12\n\x04port\x18\x03 \x01(\tR\x04port\x12\x0e\n\x02\x64\x62\x18\x04 \x01(\tR\x02\x64\x62\x12\x12\n\x04user\x18\x05 \x01(\tR\x04user\x12\x1a\n\x08password\x18\x06 \x01(\tR\x08password\x12O\n\x0b\x65ngine_args\x18\x07 \x03(\x0b\x32..chalk.graph.v1.PostgresSource.EngineArgsEntryR\nengineArgs\x12_\n\x11\x61sync_engine_args\x18\x08 \x03(\x0b\x32\x33.chalk.graph.v1.PostgresSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\xdd\x04\n\x0eRedshiftSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04host\x18\x02 \x01(\tR\x04host\x12\x12\n\x04port\x18\x03 \x01(\tR\x04port\x12\x0e\n\x02\x64\x62\x18\x04 \x01(\tR\x02\x64\x62\x12\x12\n\x04user\x18\x05 \x01(\tR\x04user\x12\x1a\n\x08password\x18\x06 \x01(\tR\x08password\x12\x1b\n\ts3_client\x18\x07 \x01(\tR\x08s3Client\x12\x1b\n\ts3_bucket\x18\x08 \x01(\tR\x08s3Bucket\x12O\n\x0b\x65ngine_args\x18\t \x03(\x0b\x32..chalk.graph.v1.RedshiftSource.EngineArgsEntryR\nengineArgs\x12_\n\x11\x61sync_engine_args\x18\n \x03(\x0b\x32\x33.chalk.graph.v1.RedshiftSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x12&\n\x0funload_iam_role\x18\x0b \x01(\tR\runloadIamRole\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\xf7\x04\n\x0fSnowflakeSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x0e\n\x02\x64\x62\x18\x02 \x01(\tR\x02\x64\x62\x12\x16\n\x06schema\x18\x03 \x01(\tR\x06schema\x12\x12\n\x04role\x18\x04 \x01(\tR\x04role\x12\x12\n\x04user\x18\x05 \x01(\tR\x04user\x12\x1a\n\x08password\x18\x06 \x01(\tR\x08password\x12-\n\x12\x61\x63\x63ount_identifier\x18\x07 \x01(\tR\x11\x61\x63\x63ountIdentifier\x12\x1c\n\twarehouse\x18\x08 \x01(\tR\twarehouse\x12P\n\x0b\x65ngine_args\x18\t \x03(\x0b\x32/.chalk.graph.v1.SnowflakeSource.EngineArgsEntryR\nengineArgs\x12`\n\x11\x61sync_engine_args\x18\n \x03(\x0b\x32\x34.chalk.graph.v1.SnowflakeSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x12&\n\x0fprivate_key_b64\x18\x0b \x01(\tR\rprivateKeyB64\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\xaa\x03\n\x0cSQLiteSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1b\n\tfile_name\x18\x02 \x01(\tR\x08\x66ileName\x12M\n\x0b\x65ngine_args\x18\x03 \x03(\x0b\x32,.chalk.graph.v1.SQLiteSource.EngineArgsEntryR\nengineArgs\x12]\n\x11\x61sync_engine_args\x18\x04 \x03(\x0b\x32\x31.chalk.graph.v1.SQLiteSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\x85\x04\n\rSpannerSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07project\x18\x02 \x01(\tR\x07project\x12\x1a\n\x08instance\x18\x03 \x01(\tR\x08instance\x12\x0e\n\x02\x64\x62\x18\x04 \x01(\tR\x02\x64\x62\x12-\n\x12\x63redentials_base64\x18\x05 \x01(\tR\x11\x63redentialsBase64\x12N\n\x0b\x65ngine_args\x18\x06 \x03(\x0b\x32-.chalk.graph.v1.SpannerSource.EngineArgsEntryR\nengineArgs\x12^\n\x11\x61sync_engine_args\x18\x07 \x03(\x0b\x32\x32.chalk.graph.v1.SpannerSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\"\x94\x04\n\x0bTrinoSource\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04host\x18\x02 \x01(\tR\x04host\x12\x12\n\x04port\x18\x03 \x01(\tR\x04port\x12\x18\n\x07\x63\x61talog\x18\x04 \x01(\tR\x07\x63\x61talog\x12\x16\n\x06schema\x18\x05 \x01(\tR\x06schema\x12\x12\n\x04user\x18\x06 \x01(\tR\x04user\x12\x1a\n\x08password\x18\x07 \x01(\tR\x08password\x12L\n\x0b\x65ngine_args\x18\x08 \x03(\x0b\x32+.chalk.graph.v1.TrinoSource.EngineArgsEntryR\nengineArgs\x12\\\n\x11\x61sync_engine_args\x18\t \x03(\x0b\x32\x30.chalk.graph.v1.TrinoSource.AsyncEngineArgsEntryR\x0f\x61syncEngineArgs\x1aZ\n\x0f\x45ngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01\x1a_\n\x14\x41syncEngineArgsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.chalk.arrow.v1.ScalarValueR\x05value:\x02\x38\x01*\x93\x01\n\x10StreamSourceType\x12\"\n\x1eSTREAM_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18STREAM_SOURCE_TYPE_KAFKA\x10\x01\x12\x1e\n\x1aSTREAM_SOURCE_TYPE_KINESIS\x10\x02\x12\x1d\n\x19STREAM_SOURCE_TYPE_PUBSUB\x10\x03*\xb5\x03\n\x12\x44\x61tabaseSourceType\x12$\n DATABASE_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12!\n\x1d\x44\x41TABASE_SOURCE_TYPE_BIGQUERY\x10\x01\x12!\n\x1d\x44\x41TABASE_SOURCE_TYPE_CLOUDSQL\x10\x02\x12#\n\x1f\x44\x41TABASE_SOURCE_TYPE_DATABRICKS\x10\x03\x12\x1e\n\x1a\x44\x41TABASE_SOURCE_TYPE_MYSQL\x10\x04\x12!\n\x1d\x44\x41TABASE_SOURCE_TYPE_POSTGRES\x10\x05\x12!\n\x1d\x44\x41TABASE_SOURCE_TYPE_REDSHIFT\x10\x06\x12\"\n\x1e\x44\x41TABASE_SOURCE_TYPE_SNOWFLAKE\x10\x07\x12\x1f\n\x1b\x44\x41TABASE_SOURCE_TYPE_SQLITE\x10\x08\x12 \n\x1c\x44\x41TABASE_SOURCE_TYPE_SPANNER\x10\t\x12\x1e\n\x1a\x44\x41TABASE_SOURCE_TYPE_TRINO\x10\n\x12!\n\x1d\x44\x41TABASE_SOURCE_TYPE_DYNAMODB\x10\x0b\x42|\n\x12\x63om.chalk.graph.v1B\x0cSourcesProtoP\x01\xa2\x02\x03\x43GX\xaa\x02\x0e\x43halk.Graph.V1\xca\x02\x0e\x43halk\\Graph\\V1\xe2\x02\x1a\x43halk\\Graph\\V1\\GPBMetadata\xea\x02\x10\x43halk::Graph::V1b\x06proto3"
12
+
13
+ pool = Google::Protobuf::DescriptorPool.generated_pool
14
+ pool.add_serialized_file(descriptor_data)
15
+
16
+ module Chalk
17
+ module Graph
18
+ module V1
19
+ StreamSourceReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamSourceReference").msgclass
20
+ StreamSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamSource").msgclass
21
+ KinesisSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.KinesisSource").msgclass
22
+ KafkaSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.KafkaSource").msgclass
23
+ PubSubSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.PubSubSource").msgclass
24
+ DatabaseSourceReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.DatabaseSourceReference").msgclass
25
+ DatabaseSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.DatabaseSource").msgclass
26
+ BigQuerySource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.BigQuerySource").msgclass
27
+ CloudSQLSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.CloudSQLSource").msgclass
28
+ DatabricksSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.DatabricksSource").msgclass
29
+ DynamoDBSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.DynamoDBSource").msgclass
30
+ MySQLSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.MySQLSource").msgclass
31
+ PostgresSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.PostgresSource").msgclass
32
+ RedshiftSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.RedshiftSource").msgclass
33
+ SnowflakeSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.SnowflakeSource").msgclass
34
+ SQLiteSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.SQLiteSource").msgclass
35
+ SpannerSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.SpannerSource").msgclass
36
+ TrinoSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.TrinoSource").msgclass
37
+ StreamSourceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.StreamSourceType").enummodule
38
+ DatabaseSourceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v1.DatabaseSourceType").enummodule
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/graph/v2/sources.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'google/protobuf/struct_pb'
8
+
9
+
10
+ descriptor_data = "\n\x1c\x63halk/graph/v2/sources.proto\x12\x0e\x63halk.graph.v2\x1a\x1cgoogle/protobuf/struct.proto\"N\n\x17\x44\x61tabaseSourceReference\x12\x1f\n\x0bsource_type\x18\x01 \x01(\tR\nsourceType\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xe0\x01\n\x0e\x44\x61tabaseSource\x12\x1f\n\x0bsource_type\x18\x01 \x01(\tR\nsourceType\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x45\n\x07options\x18\x03 \x03(\x0b\x32+.chalk.graph.v2.DatabaseSource.OptionsEntryR\x07options\x1aR\n\x0cOptionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value:\x02\x38\x01\"\xc3\x02\n\x13\x44\x61tabaseSourceGroup\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12N\n\x0e\x64\x65\x66\x61ult_source\x18\x02 \x01(\x0b\x32\'.chalk.graph.v2.DatabaseSourceReferenceR\rdefaultSource\x12]\n\x0etagged_sources\x18\x03 \x03(\x0b\x32\x36.chalk.graph.v2.DatabaseSourceGroup.TaggedSourcesEntryR\rtaggedSources\x1ai\n\x12TaggedSourcesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12=\n\x05value\x18\x02 \x01(\x0b\x32\'.chalk.graph.v2.DatabaseSourceReferenceR\x05value:\x02\x38\x01\"L\n\x15StreamSourceReference\x12\x1f\n\x0bsource_type\x18\x01 \x01(\tR\nsourceType\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xdc\x01\n\x0cStreamSource\x12\x1f\n\x0bsource_type\x18\x01 \x01(\tR\nsourceType\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x43\n\x07options\x18\x03 \x03(\x0b\x32).chalk.graph.v2.StreamSource.OptionsEntryR\x07options\x1aR\n\x0cOptionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value:\x02\x38\x01\x42|\n\x12\x63om.chalk.graph.v2B\x0cSourcesProtoP\x01\xa2\x02\x03\x43GX\xaa\x02\x0e\x43halk.Graph.V2\xca\x02\x0e\x43halk\\Graph\\V2\xe2\x02\x1a\x43halk\\Graph\\V2\\GPBMetadata\xea\x02\x10\x43halk::Graph::V2b\x06proto3"
11
+
12
+ pool = Google::Protobuf::DescriptorPool.generated_pool
13
+ pool.add_serialized_file(descriptor_data)
14
+
15
+ module Chalk
16
+ module Graph
17
+ module V2
18
+ DatabaseSourceReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v2.DatabaseSourceReference").msgclass
19
+ DatabaseSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v2.DatabaseSource").msgclass
20
+ DatabaseSourceGroup = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v2.DatabaseSourceGroup").msgclass
21
+ StreamSourceReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v2.StreamSourceReference").msgclass
22
+ StreamSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.graph.v2.StreamSource").msgclass
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/lsp/v1/lsp.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+
8
+ descriptor_data = "\n\x16\x63halk/lsp/v1/lsp.proto\x12\x0c\x63halk.lsp.v1\"\x83\x01\n\x03LSP\x12H\n\x0b\x64iagnostics\x18\x01 \x03(\x0b\x32&.chalk.lsp.v1.PublishDiagnosticsParamsR\x0b\x64iagnostics\x12\x32\n\x07\x61\x63tions\x18\x02 \x03(\x0b\x32\x18.chalk.lsp.v1.CodeActionR\x07\x61\x63tions\"h\n\x18PublishDiagnosticsParams\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12:\n\x0b\x64iagnostics\x18\x02 \x03(\x0b\x32\x18.chalk.lsp.v1.DiagnosticR\x0b\x64iagnostics\"\xd8\x02\n\nDiagnostic\x12)\n\x05range\x18\x01 \x01(\x0b\x32\x13.chalk.lsp.v1.RangeR\x05range\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12<\n\x08severity\x18\x03 \x01(\x0e\x32 .chalk.lsp.v1.DiagnosticSeverityR\x08severity\x12\x17\n\x04\x63ode\x18\x04 \x01(\tH\x00R\x04\x63ode\x88\x01\x01\x12H\n\x10\x63ode_description\x18\x05 \x01(\x0b\x32\x1d.chalk.lsp.v1.CodeDescriptionR\x0f\x63odeDescription\x12[\n\x13related_information\x18\x06 \x03(\x0b\x32*.chalk.lsp.v1.DiagnosticRelatedInformationR\x12relatedInformationB\x07\n\x05_code\"_\n\x05Range\x12,\n\x05start\x18\x01 \x01(\x0b\x32\x16.chalk.lsp.v1.PositionR\x05start\x12(\n\x03\x65nd\x18\x02 \x01(\x0b\x32\x16.chalk.lsp.v1.PositionR\x03\x65nd\"]\n\x08Position\x12\x17\n\x04line\x18\x01 \x01(\x05H\x00R\x04line\x88\x01\x01\x12!\n\tcharacter\x18\x02 \x01(\x05H\x01R\tcharacter\x88\x01\x01\x42\x07\n\x05_lineB\x0c\n\n_character\"\x8f\x01\n\nCodeAction\x12\x14\n\x05title\x18\x01 \x01(\tR\x05title\x12:\n\x0b\x64iagnostics\x18\x02 \x03(\x0b\x32\x18.chalk.lsp.v1.DiagnosticR\x0b\x64iagnostics\x12/\n\x04\x65\x64it\x18\x03 \x01(\x0b\x32\x1b.chalk.lsp.v1.WorkspaceEditR\x04\x65\x64it\"Z\n\rWorkspaceEdit\x12I\n\x10\x64ocument_changes\x18\x01 \x03(\x0b\x32\x1e.chalk.lsp.v1.TextDocumentEditR\x0f\x64ocumentChanges\"\x8b\x01\n\x10TextDocumentEdit\x12I\n\rtext_document\x18\x01 \x01(\x0b\x32$.chalk.lsp.v1.TextDocumentIdentifierR\x0ctextDocument\x12,\n\x05\x65\x64its\x18\x02 \x03(\x0b\x32\x16.chalk.lsp.v1.TextEditR\x05\x65\x64its\"*\n\x16TextDocumentIdentifier\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\"P\n\x08TextEdit\x12)\n\x05range\x18\x01 \x01(\x0b\x32\x13.chalk.lsp.v1.RangeR\x05range\x12\x19\n\x08new_text\x18\x02 \x01(\tR\x07newText\"%\n\x0f\x43odeDescription\x12\x12\n\x04href\x18\x01 \x01(\tR\x04href\"l\n\x1c\x44iagnosticRelatedInformation\x12\x32\n\x08location\x18\x01 \x01(\x0b\x32\x16.chalk.lsp.v1.LocationR\x08location\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\"G\n\x08Location\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12)\n\x05range\x18\x02 \x01(\x0b\x32\x13.chalk.lsp.v1.RangeR\x05range*\xbc\x01\n\x12\x44iagnosticSeverity\x12#\n\x1f\x44IAGNOSTIC_SEVERITY_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x44IAGNOSTIC_SEVERITY_ERROR\x10\x01\x12\x1f\n\x1b\x44IAGNOSTIC_SEVERITY_WARNING\x10\x02\x12#\n\x1f\x44IAGNOSTIC_SEVERITY_INFORMATION\x10\x03\x12\x1c\n\x18\x44IAGNOSTIC_SEVERITY_HINT\x10\x04\x42n\n\x10\x63om.chalk.lsp.v1B\x08LspProtoP\x01\xa2\x02\x03\x43LX\xaa\x02\x0c\x43halk.Lsp.V1\xca\x02\x0c\x43halk\\Lsp\\V1\xe2\x02\x18\x43halk\\Lsp\\V1\\GPBMetadata\xea\x02\x0e\x43halk::Lsp::V1b\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
12
+
13
+ module Chalk
14
+ module Lsp
15
+ module V1
16
+ LSP = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.LSP").msgclass
17
+ PublishDiagnosticsParams = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.PublishDiagnosticsParams").msgclass
18
+ Diagnostic = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.Diagnostic").msgclass
19
+ Range = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.Range").msgclass
20
+ Position = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.Position").msgclass
21
+ CodeAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.CodeAction").msgclass
22
+ WorkspaceEdit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.WorkspaceEdit").msgclass
23
+ TextDocumentEdit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.TextDocumentEdit").msgclass
24
+ TextDocumentIdentifier = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.TextDocumentIdentifier").msgclass
25
+ TextEdit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.TextEdit").msgclass
26
+ CodeDescription = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.CodeDescription").msgclass
27
+ DiagnosticRelatedInformation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.DiagnosticRelatedInformation").msgclass
28
+ Location = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.Location").msgclass
29
+ DiagnosticSeverity = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.lsp.v1.DiagnosticSeverity").enummodule
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/server/v1/audit.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'chalk_ruby/protos/chalk/auth/v1/agent_pb'
8
+ require 'chalk_ruby/protos/chalk/auth/v1/permissions_pb'
9
+ require 'google/protobuf/struct_pb'
10
+ require 'google/protobuf/timestamp_pb'
11
+ require 'google/rpc/code_pb'
12
+
13
+
14
+ descriptor_data = "\n\x1b\x63halk/server/v1/audit.proto\x12\x0f\x63halk.server.v1\x1a\x19\x63halk/auth/v1/agent.proto\x1a\x1f\x63halk/auth/v1/permissions.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x15google/rpc/code.proto\"\xe2\x04\n\x08\x41uditLog\x12*\n\x05\x61gent\x18\x01 \x01(\x0b\x32\x14.chalk.auth.v1.AgentR\x05\x61gent\x12%\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12\x1a\n\x08\x65ndpoint\x18\x03 \x01(\tR\x08\x65ndpoint\x12*\n\x02\x61t\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x02\x61t\x12\x1e\n\x08trace_id\x18\x05 \x01(\x04H\x01R\x07traceId\x88\x01\x01\x12)\n\x04\x63ode\x18\x06 \x01(\x0e\x32\x10.google.rpc.CodeH\x02R\x04\x63ode\x88\x01\x01\x12@\n\x07request\x18\x07 \x03(\x0b\x32&.chalk.server.v1.AuditLog.RequestEntryR\x07request\x12\x43\n\x08response\x18\x08 \x03(\x0b\x32\'.chalk.server.v1.AuditLog.ResponseEntryR\x08response\x12\x13\n\x02ip\x18\t \x01(\tH\x03R\x02ip\x88\x01\x01\x1aR\n\x0cRequestEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value:\x02\x38\x01\x1aS\n\rResponseEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value:\x02\x38\x01\x42\x0e\n\x0c_descriptionB\x0b\n\t_trace_idB\x07\n\x05_codeB\x05\n\x03_ip\"\x15\n\x13GetAuditLogsRequest\"E\n\x14GetAuditLogsResponse\x12-\n\x04logs\x18\x01 \x03(\x0b\x32\x19.chalk.server.v1.AuditLogR\x04logs2p\n\x0c\x41uditService\x12`\n\x0cGetAuditLogs\x12$.chalk.server.v1.GetAuditLogsRequest\x1a%.chalk.server.v1.GetAuditLogsResponse\"\x03\x80}\x06\x42\x93\x01\n\x13\x63om.chalk.server.v1B\nAuditProtoP\x01Z\x12server/v1;serverv1\xa2\x02\x03\x43SX\xaa\x02\x0f\x43halk.Server.V1\xca\x02\x0f\x43halk\\Server\\V1\xe2\x02\x1b\x43halk\\Server\\V1\\GPBMetadata\xea\x02\x11\x43halk::Server::V1b\x06proto3"
15
+
16
+ pool = Google::Protobuf::DescriptorPool.generated_pool
17
+ pool.add_serialized_file(descriptor_data)
18
+
19
+ module Chalk
20
+ module Server
21
+ module V1
22
+ AuditLog = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.AuditLog").msgclass
23
+ GetAuditLogsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetAuditLogsRequest").msgclass
24
+ GetAuditLogsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetAuditLogsResponse").msgclass
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,26 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: chalk/server/v1/audit.proto for package 'Chalk.Server.V1'
3
+
4
+ require 'grpc'
5
+ require 'chalk_ruby/protos/chalk/server/v1/audit_pb'
6
+
7
+ module Chalk
8
+ module Server
9
+ module V1
10
+ module AuditService
11
+ class Service
12
+
13
+ include ::GRPC::GenericService
14
+
15
+ self.marshal_class_method = :encode
16
+ self.unmarshal_class_method = :decode
17
+ self.service_name = 'chalk.server.v1.AuditService'
18
+
19
+ rpc :GetAuditLogs, ::Chalk::Server::V1::GetAuditLogsRequest, ::Chalk::Server::V1::GetAuditLogsResponse
20
+ end
21
+
22
+ Stub = Service.rpc_stub_class
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/server/v1/auth.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'chalk_ruby/protos/chalk/auth/v1/audit_pb'
8
+ require 'chalk_ruby/protos/chalk/auth/v1/permissions_pb'
9
+ require 'chalk_ruby/protos/chalk/server/v1/link_pb'
10
+ require 'chalk_ruby/protos/chalk/utils/v1/sensitive_pb'
11
+ require 'google/protobuf/descriptor_pb'
12
+ require 'google/protobuf/timestamp_pb'
13
+
14
+
15
+ descriptor_data = "\n\x1a\x63halk/server/v1/auth.proto\x12\x0f\x63halk.server.v1\x1a\x19\x63halk/auth/v1/audit.proto\x1a\x1f\x63halk/auth/v1/permissions.proto\x1a\x1a\x63halk/server/v1/link.proto\x1a\x1e\x63halk/utils/v1/sensitive.proto\x1a google/protobuf/descriptor.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9d\x01\n\x0fGetTokenRequest\x12\x1b\n\tclient_id\x18\x01 \x01(\tR\x08\x63lientId\x12)\n\rclient_secret\x18\x02 \x01(\tB\x04\xd8\xa1\'\x01R\x0c\x63lientSecret\x12\x1d\n\ngrant_type\x18\x03 \x01(\tR\tgrantType\x12\x19\n\x05scope\x18\x04 \x01(\tH\x00R\x05scope\x88\x01\x01\x42\x08\n\x06_scope\"\xf7\x05\n\x10GetTokenResponse\x12\'\n\x0c\x61\x63\x63\x65ss_token\x18\x01 \x01(\tB\x04\xd8\xa1\'\x01R\x0b\x61\x63\x63\x65ssToken\x12\x1d\n\ntoken_type\x18\x02 \x01(\tR\ttokenType\x12\x1d\n\nexpires_in\x18\x03 \x01(\x05R\texpiresIn\x12\x39\n\nexpires_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt\x12\x1d\n\napi_server\x18\x05 \x01(\tR\tapiServer\x12\x34\n\x13primary_environment\x18\x06 \x01(\tH\x00R\x12primaryEnvironment\x88\x01\x01\x12H\n\x07\x65ngines\x18\x07 \x03(\x0b\x32..chalk.server.v1.GetTokenResponse.EnginesEntryR\x07\x65ngines\x12U\n\x0cgrpc_engines\x18\x08 \x03(\x0b\x32\x32.chalk.server.v1.GetTokenResponse.GrpcEnginesEntryR\x0bgrpcEngines\x12o\n\x16\x65nvironment_id_to_name\x18\t \x03(\x0b\x32:.chalk.server.v1.GetTokenResponse.EnvironmentIdToNameEntryR\x13\x65nvironmentIdToName\x1a:\n\x0c\x45nginesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10GrpcEnginesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a\x46\n\x18\x45nvironmentIdToNameEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x16\n\x14_primary_environment\"j\n\x18UpdateLinkSessionRequest\x12\x16\n\x06status\x18\x01 \x01(\tR\x06status\x12\x17\n\x07user_id\x18\x02 \x01(\tR\x06userId\x12\x1d\n\nsession_id\x18\x03 \x01(\tR\tsessionId\"+\n\x19UpdateLinkSessionResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id2\xbf\x03\n\x0b\x41uthService\x12Z\n\x08GetToken\x12 .chalk.server.v1.GetTokenRequest\x1a!.chalk.server.v1.GetTokenResponse\"\t\x80}\x01\x8a\xd3\x0e\x02\x08\x01\x12u\n\x11\x43reateLinkSession\x12).chalk.server.v1.CreateLinkSessionRequest\x1a*.chalk.server.v1.CreateLinkSessionResponse\"\t\x80}\x01\x8a\xd3\x0e\x02\x08\x01\x12\x66\n\x0eGetLinkSession\x12&.chalk.server.v1.GetLinkSessionRequest\x1a\'.chalk.server.v1.GetLinkSessionResponse\"\x03\x80}\x01\x12u\n\x11UpdateLinkSession\x12).chalk.server.v1.UpdateLinkSessionRequest\x1a*.chalk.server.v1.UpdateLinkSessionResponse\"\t\x80}\x01\x8a\xd3\x0e\x02\x08\x01\x42\x92\x01\n\x13\x63om.chalk.server.v1B\tAuthProtoP\x01Z\x12server/v1;serverv1\xa2\x02\x03\x43SX\xaa\x02\x0f\x43halk.Server.V1\xca\x02\x0f\x43halk\\Server\\V1\xe2\x02\x1b\x43halk\\Server\\V1\\GPBMetadata\xea\x02\x11\x43halk::Server::V1b\x06proto3"
16
+
17
+ pool = Google::Protobuf::DescriptorPool.generated_pool
18
+ pool.add_serialized_file(descriptor_data)
19
+
20
+ module Chalk
21
+ module Server
22
+ module V1
23
+ GetTokenRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetTokenRequest").msgclass
24
+ GetTokenResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetTokenResponse").msgclass
25
+ UpdateLinkSessionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.UpdateLinkSessionRequest").msgclass
26
+ UpdateLinkSessionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.UpdateLinkSessionResponse").msgclass
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,29 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: chalk/server/v1/auth.proto for package 'Chalk.Server.V1'
3
+
4
+ require 'grpc'
5
+ require 'chalk_ruby/protos/chalk/server/v1/auth_pb'
6
+
7
+ module Chalk
8
+ module Server
9
+ module V1
10
+ module AuthService
11
+ class Service
12
+
13
+ include ::GRPC::GenericService
14
+
15
+ self.marshal_class_method = :encode
16
+ self.unmarshal_class_method = :decode
17
+ self.service_name = 'chalk.server.v1.AuthService'
18
+
19
+ rpc :GetToken, ::Chalk::Server::V1::GetTokenRequest, ::Chalk::Server::V1::GetTokenResponse
20
+ rpc :CreateLinkSession, ::Chalk::Server::V1::CreateLinkSessionRequest, ::Chalk::Server::V1::CreateLinkSessionResponse
21
+ rpc :GetLinkSession, ::Chalk::Server::V1::GetLinkSessionRequest, ::Chalk::Server::V1::GetLinkSessionResponse
22
+ rpc :UpdateLinkSession, ::Chalk::Server::V1::UpdateLinkSessionRequest, ::Chalk::Server::V1::UpdateLinkSessionResponse
23
+ end
24
+
25
+ Stub = Service.rpc_stub_class
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: chalk/server/v1/authtesting.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'chalk_ruby/protos/chalk/auth/v1/permissions_pb'
8
+
9
+
10
+ descriptor_data = "\n!chalk/server/v1/authtesting.proto\x12\x0f\x63halk.server.v1\x1a\x1f\x63halk/auth/v1/permissions.proto\" \n\x1eGetUnauthedTestEndpointRequest\"\x1e\n\x1cGetAuthedTestEndpointRequest\"\x1e\n\x1cGetViewerTestEndpointRequest\"%\n#GetDataScientistTestEndpointRequest\"!\n\x1fGetDeveloperTestEndpointRequest\"\x1d\n\x1bGetAdminTestEndpointRequest\"\x1d\n\x1bGetOwnerTestEndpointRequest\"!\n\x1fGetUnauthedTestEndpointResponse\"\x1f\n\x1dGetAuthedTestEndpointResponse\"\x1f\n\x1dGetViewerTestEndpointResponse\"&\n$GetDataScientistTestEndpointResponse\"\"\n GetDeveloperTestEndpointResponse\"\x1e\n\x1cGetAdminTestEndpointResponse\"\x1e\n\x1cGetOwnerTestEndpointResponse2\xb5\x07\n\x12\x41uthTestingService\x12\x84\x01\n\x17GetUnauthedTestEndpoint\x12/.chalk.server.v1.GetUnauthedTestEndpointRequest\x1a\x30.chalk.server.v1.GetUnauthedTestEndpointResponse\"\x06\x90\x02\x01\x80}\x01\x12~\n\x15GetAuthedTestEndpoint\x12-.chalk.server.v1.GetAuthedTestEndpointRequest\x1a..chalk.server.v1.GetAuthedTestEndpointResponse\"\x06\x90\x02\x01\x80}\x02\x12~\n\x15GetViewerTestEndpoint\x12-.chalk.server.v1.GetViewerTestEndpointRequest\x1a..chalk.server.v1.GetViewerTestEndpointResponse\"\x06\x90\x02\x01\x80}\x0b\x12\x93\x01\n\x1cGetDataScientistTestEndpoint\x12\x34.chalk.server.v1.GetDataScientistTestEndpointRequest\x1a\x35.chalk.server.v1.GetDataScientistTestEndpointResponse\"\x06\x90\x02\x01\x80}\x03\x12\x87\x01\n\x18GetDeveloperTestEndpoint\x12\x30.chalk.server.v1.GetDeveloperTestEndpointRequest\x1a\x31.chalk.server.v1.GetDeveloperTestEndpointResponse\"\x06\x90\x02\x01\x80}\x11\x12{\n\x14GetAdminTestEndpoint\x12,.chalk.server.v1.GetAdminTestEndpointRequest\x1a-.chalk.server.v1.GetAdminTestEndpointResponse\"\x06\x90\x02\x01\x80}\x0c\x12{\n\x14GetOwnerTestEndpoint\x12,.chalk.server.v1.GetOwnerTestEndpointRequest\x1a-.chalk.server.v1.GetOwnerTestEndpointResponse\"\x06\x90\x02\x01\x80}\nB\x99\x01\n\x13\x63om.chalk.server.v1B\x10\x41uthtestingProtoP\x01Z\x12server/v1;serverv1\xa2\x02\x03\x43SX\xaa\x02\x0f\x43halk.Server.V1\xca\x02\x0f\x43halk\\Server\\V1\xe2\x02\x1b\x43halk\\Server\\V1\\GPBMetadata\xea\x02\x11\x43halk::Server::V1b\x06proto3"
11
+
12
+ pool = Google::Protobuf::DescriptorPool.generated_pool
13
+ pool.add_serialized_file(descriptor_data)
14
+
15
+ module Chalk
16
+ module Server
17
+ module V1
18
+ GetUnauthedTestEndpointRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetUnauthedTestEndpointRequest").msgclass
19
+ GetAuthedTestEndpointRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetAuthedTestEndpointRequest").msgclass
20
+ GetViewerTestEndpointRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetViewerTestEndpointRequest").msgclass
21
+ GetDataScientistTestEndpointRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetDataScientistTestEndpointRequest").msgclass
22
+ GetDeveloperTestEndpointRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetDeveloperTestEndpointRequest").msgclass
23
+ GetAdminTestEndpointRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetAdminTestEndpointRequest").msgclass
24
+ GetOwnerTestEndpointRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetOwnerTestEndpointRequest").msgclass
25
+ GetUnauthedTestEndpointResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetUnauthedTestEndpointResponse").msgclass
26
+ GetAuthedTestEndpointResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetAuthedTestEndpointResponse").msgclass
27
+ GetViewerTestEndpointResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetViewerTestEndpointResponse").msgclass
28
+ GetDataScientistTestEndpointResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetDataScientistTestEndpointResponse").msgclass
29
+ GetDeveloperTestEndpointResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetDeveloperTestEndpointResponse").msgclass
30
+ GetAdminTestEndpointResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetAdminTestEndpointResponse").msgclass
31
+ GetOwnerTestEndpointResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("chalk.server.v1.GetOwnerTestEndpointResponse").msgclass
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,32 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: chalk/server/v1/authtesting.proto for package 'Chalk.Server.V1'
3
+
4
+ require 'grpc'
5
+ require 'chalk_ruby/protos/chalk/server/v1/authtesting_pb'
6
+
7
+ module Chalk
8
+ module Server
9
+ module V1
10
+ module AuthTestingService
11
+ class Service
12
+
13
+ include ::GRPC::GenericService
14
+
15
+ self.marshal_class_method = :encode
16
+ self.unmarshal_class_method = :decode
17
+ self.service_name = 'chalk.server.v1.AuthTestingService'
18
+
19
+ rpc :GetUnauthedTestEndpoint, ::Chalk::Server::V1::GetUnauthedTestEndpointRequest, ::Chalk::Server::V1::GetUnauthedTestEndpointResponse
20
+ rpc :GetAuthedTestEndpoint, ::Chalk::Server::V1::GetAuthedTestEndpointRequest, ::Chalk::Server::V1::GetAuthedTestEndpointResponse
21
+ rpc :GetViewerTestEndpoint, ::Chalk::Server::V1::GetViewerTestEndpointRequest, ::Chalk::Server::V1::GetViewerTestEndpointResponse
22
+ rpc :GetDataScientistTestEndpoint, ::Chalk::Server::V1::GetDataScientistTestEndpointRequest, ::Chalk::Server::V1::GetDataScientistTestEndpointResponse
23
+ rpc :GetDeveloperTestEndpoint, ::Chalk::Server::V1::GetDeveloperTestEndpointRequest, ::Chalk::Server::V1::GetDeveloperTestEndpointResponse
24
+ rpc :GetAdminTestEndpoint, ::Chalk::Server::V1::GetAdminTestEndpointRequest, ::Chalk::Server::V1::GetAdminTestEndpointResponse
25
+ rpc :GetOwnerTestEndpoint, ::Chalk::Server::V1::GetOwnerTestEndpointRequest, ::Chalk::Server::V1::GetOwnerTestEndpointResponse
26
+ end
27
+
28
+ Stub = Service.rpc_stub_class
29
+ end
30
+ end
31
+ end
32
+ end