Package com.google.cloud.dataproc.v1
Interface EndpointConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EndpointConfig
,EndpointConfig.Builder
public interface EndpointConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsHttpPorts(String key)
Output only.boolean
getEnableHttpPortAccess()
Optional.Map<String,String>
getHttpPorts()
Deprecated.int
getHttpPortsCount()
Output only.Map<String,String>
getHttpPortsMap()
Output only.String
getHttpPortsOrDefault(String key, String defaultValue)
Output only.String
getHttpPortsOrThrow(String key)
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getHttpPortsCount
int getHttpPortsCount()
Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access is true.
map<string, string> http_ports = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
containsHttpPorts
boolean containsHttpPorts(String key)
Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access is true.
map<string, string> http_ports = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getHttpPorts
@Deprecated Map<String,String> getHttpPorts()
Deprecated.UsegetHttpPortsMap()
instead.
-
getHttpPortsMap
Map<String,String> getHttpPortsMap()
Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access is true.
map<string, string> http_ports = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getHttpPortsOrDefault
String getHttpPortsOrDefault(String key, String defaultValue)
Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access is true.
map<string, string> http_ports = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getHttpPortsOrThrow
String getHttpPortsOrThrow(String key)
Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access is true.
map<string, string> http_ports = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getEnableHttpPortAccess
boolean getEnableHttpPortAccess()
Optional. If true, enable http access to specific ports on the cluster from external sources. Defaults to false.
bool enable_http_port_access = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The enableHttpPortAccess.
-
-