Class: Temporalio::Client::Connection::HTTPConnectProxyOptions
- Inherits:
-
Struct
- Object
- Struct
- Temporalio::Client::Connection::HTTPConnectProxyOptions
- Defined in:
- lib/temporalio/client/connection.rb
Overview
Options for HTTP CONNECT proxy for client connections.
Instance Attribute Summary collapse
-
#basic_auth_pass ⇒ String?
Pass for HTTP basic auth for the proxy, must be combined with #basic_auth_user.
-
#basic_auth_user ⇒ String?
User for HTTP basic auth for the proxy, must be combined with #basic_auth_pass.
-
#target_host ⇒ String
Target host:port for the HTTP CONNECT proxy.
Instance Attribute Details
#basic_auth_pass ⇒ String?
Returns Pass for HTTP basic auth for the proxy, must be combined with #basic_auth_user.
116 117 118 119 120 121 |
# File 'lib/temporalio/client/connection.rb', line 116 HTTPConnectProxyOptions = Struct.new( :target_host, :basic_auth_user, # Optional :basic_auth_pass, # Optional, keyword_init: true ) |
#basic_auth_user ⇒ String?
Returns User for HTTP basic auth for the proxy, must be combined with #basic_auth_pass.
116 117 118 119 120 121 |
# File 'lib/temporalio/client/connection.rb', line 116 HTTPConnectProxyOptions = Struct.new( :target_host, :basic_auth_user, # Optional :basic_auth_pass, # Optional, keyword_init: true ) |
#target_host ⇒ String
Returns Target host:port for the HTTP CONNECT proxy.
116 117 118 119 120 121 |
# File 'lib/temporalio/client/connection.rb', line 116 HTTPConnectProxyOptions = Struct.new( :target_host, :basic_auth_user, # Optional :basic_auth_pass, # Optional, keyword_init: true ) |