shared.proto 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.dataproc.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/field_behavior.proto";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/dataproc/v1;dataproc";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "SharedProto";
  21. option java_package = "com.google.cloud.dataproc.v1";
  22. // Cluster components that can be activated.
  23. // Next ID: 16.
  24. enum Component {
  25. // Unspecified component. Specifying this will cause Cluster creation to fail.
  26. COMPONENT_UNSPECIFIED = 0;
  27. // The Anaconda python distribution. The Anaconda component is not supported
  28. // in the Dataproc
  29. // <a
  30. // href="/dataproc/docs/concepts/versioning/dataproc-release-2.0">2.0
  31. // image</a>. The 2.0 image is pre-installed with Miniconda.
  32. ANACONDA = 5;
  33. // Docker
  34. DOCKER = 13;
  35. // The Druid query engine. (alpha)
  36. DRUID = 9;
  37. // Flink
  38. FLINK = 14;
  39. // HBase. (beta)
  40. HBASE = 11;
  41. // The Hive Web HCatalog (the REST service for accessing HCatalog).
  42. HIVE_WEBHCAT = 3;
  43. // The Jupyter Notebook.
  44. JUPYTER = 1;
  45. // The Presto query engine.
  46. PRESTO = 6;
  47. // The Ranger service.
  48. RANGER = 12;
  49. // The Solr service.
  50. SOLR = 10;
  51. // The Zeppelin notebook.
  52. ZEPPELIN = 4;
  53. // The Zookeeper service.
  54. ZOOKEEPER = 8;
  55. }