Class: Google::Apis::DataprocV1beta2::EndpointConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/representations.rb

Overview

Endpoint config for this cluster

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ EndpointConfig

Returns a new instance of EndpointConfig.



841
842
843
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 841

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enable_http_port_accessBoolean Also known as: enable_http_port_access?

Optional. If true, enable http access to specific ports on the cluster from external sources. Defaults to false. Corresponds to the JSON property enableHttpPortAccess

Returns:

  • (Boolean)


832
833
834
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 832

def enable_http_port_access
  @enable_http_port_access
end

#http_portsHash<String,String>

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

Returns:

  • (Hash<String,String>)


839
840
841
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 839

def http_ports
  @http_ports
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



846
847
848
849
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 846

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