class Google::Apis::DataprocV1beta2::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_v1beta2/classes.rb, line 857
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_v1beta2/classes.rb, line 862
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