• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/dataproc/v1/clusters.proto
18 
19 package com.google.cloud.dataproc.v1;
20 
21 public interface SecurityConfigOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.dataproc.v1.SecurityConfig)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Optional. Kerberos related configuration.
31    * </pre>
32    *
33    * <code>
34    * .google.cloud.dataproc.v1.KerberosConfig kerberos_config = 1 [(.google.api.field_behavior) = OPTIONAL];
35    * </code>
36    *
37    * @return Whether the kerberosConfig field is set.
38    */
hasKerberosConfig()39   boolean hasKerberosConfig();
40   /**
41    *
42    *
43    * <pre>
44    * Optional. Kerberos related configuration.
45    * </pre>
46    *
47    * <code>
48    * .google.cloud.dataproc.v1.KerberosConfig kerberos_config = 1 [(.google.api.field_behavior) = OPTIONAL];
49    * </code>
50    *
51    * @return The kerberosConfig.
52    */
getKerberosConfig()53   com.google.cloud.dataproc.v1.KerberosConfig getKerberosConfig();
54   /**
55    *
56    *
57    * <pre>
58    * Optional. Kerberos related configuration.
59    * </pre>
60    *
61    * <code>
62    * .google.cloud.dataproc.v1.KerberosConfig kerberos_config = 1 [(.google.api.field_behavior) = OPTIONAL];
63    * </code>
64    */
getKerberosConfigOrBuilder()65   com.google.cloud.dataproc.v1.KerberosConfigOrBuilder getKerberosConfigOrBuilder();
66 
67   /**
68    *
69    *
70    * <pre>
71    * Optional. Identity related configuration, including service account based
72    * secure multi-tenancy user mappings.
73    * </pre>
74    *
75    * <code>
76    * .google.cloud.dataproc.v1.IdentityConfig identity_config = 2 [(.google.api.field_behavior) = OPTIONAL];
77    * </code>
78    *
79    * @return Whether the identityConfig field is set.
80    */
hasIdentityConfig()81   boolean hasIdentityConfig();
82   /**
83    *
84    *
85    * <pre>
86    * Optional. Identity related configuration, including service account based
87    * secure multi-tenancy user mappings.
88    * </pre>
89    *
90    * <code>
91    * .google.cloud.dataproc.v1.IdentityConfig identity_config = 2 [(.google.api.field_behavior) = OPTIONAL];
92    * </code>
93    *
94    * @return The identityConfig.
95    */
getIdentityConfig()96   com.google.cloud.dataproc.v1.IdentityConfig getIdentityConfig();
97   /**
98    *
99    *
100    * <pre>
101    * Optional. Identity related configuration, including service account based
102    * secure multi-tenancy user mappings.
103    * </pre>
104    *
105    * <code>
106    * .google.cloud.dataproc.v1.IdentityConfig identity_config = 2 [(.google.api.field_behavior) = OPTIONAL];
107    * </code>
108    */
getIdentityConfigOrBuilder()109   com.google.cloud.dataproc.v1.IdentityConfigOrBuilder getIdentityConfigOrBuilder();
110 }
111