Share via


ManagedClusterHttpProxyConfig Constructors

Definition

Overloads

ManagedClusterHttpProxyConfig()

Initializes a new instance of the ManagedClusterHttpProxyConfig class.

ManagedClusterHttpProxyConfig(String, String, IList<String>, String)

Initializes a new instance of the ManagedClusterHttpProxyConfig class.

ManagedClusterHttpProxyConfig()

Initializes a new instance of the ManagedClusterHttpProxyConfig class.

public ManagedClusterHttpProxyConfig ();
Public Sub New ()

Applies to

ManagedClusterHttpProxyConfig(String, String, IList<String>, String)

Initializes a new instance of the ManagedClusterHttpProxyConfig class.

public ManagedClusterHttpProxyConfig (string httpProxy = default, string httpsProxy = default, System.Collections.Generic.IList<string> noProxy = default, string trustedCa = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterHttpProxyConfig : string * string * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.ContainerService.Models.ManagedClusterHttpProxyConfig
Public Sub New (Optional httpProxy As String = Nothing, Optional httpsProxy As String = Nothing, Optional noProxy As IList(Of String) = Nothing, Optional trustedCa As String = Nothing)

Parameters

httpProxy
String

The HTTP proxy server endpoint to use.

httpsProxy
String

The HTTPS proxy server endpoint to use.

noProxy
IList<String>

The endpoints that should not go through proxy.

trustedCa
String

Alternative CA cert to use for connecting to proxy servers.

Applies to