shared.proto 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.v1beta2;
  16. import "google/api/annotations.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/dataproc/v1beta2;dataproc";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "SharedProto";
  20. option java_package = "com.google.cloud.dataproc.v1beta2";
  21. // Cluster components that can be activated.
  22. enum Component {
  23. // Unspecified component. Specifying this will cause Cluster creation to fail.
  24. COMPONENT_UNSPECIFIED = 0;
  25. // The Anaconda python distribution.
  26. ANACONDA = 5;
  27. // The Druid query engine.
  28. DRUID = 9;
  29. // HBase.
  30. HBASE = 11;
  31. // The Hive Web HCatalog (the REST service for accessing HCatalog).
  32. HIVE_WEBHCAT = 3;
  33. // The Jupyter Notebook.
  34. JUPYTER = 1;
  35. // The Kerberos security feature.
  36. KERBEROS = 7;
  37. // The Presto query engine.
  38. PRESTO = 6;
  39. // The Ranger service.
  40. RANGER = 12;
  41. // The Solr service.
  42. SOLR = 10;
  43. // The Zeppelin notebook.
  44. ZEPPELIN = 4;
  45. // The Zookeeper service.
  46. ZOOKEEPER = 8;
  47. }