class Google::Apis::DataprocV1::EndpointConfig
Endpoint config for this cluster
Attributes
enable_http_port_access[RW]
Optional. If true, enable http access to specific ports on the cluster from external sources. Defaults to false. Corresponds to the JSON property `enableHttpPortAccess` @return [Boolean]
enable_http_port_access?[RW]
Optional. If true, enable http access to specific ports on the cluster from external sources. Defaults to false. Corresponds to the JSON property `enableHttpPortAccess` @return [Boolean]
http_ports[RW]
Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access
is true. Corresponds to the JSON property `httpPorts` @return [Hash<String,String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataproc_v1/classes.rb, line 945 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataproc_v1/classes.rb, line 950 def update!(**args) @enable_http_port_access = args[:enable_http_port_access] if args.key?(:enable_http_port_access) @http_ports = args[:http_ports] if args.key?(:http_ports) end