ManagedClusterHttpProxyConfig Constructors

Definition

Overloads

Name Description
ManagedClusterHttpProxyConfig()

Initializes a new instance of the ManagedClusterHttpProxyConfig class.

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

Initializes a new instance of the ManagedClusterHttpProxyConfig class.

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

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

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

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, bool? enabled = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterHttpProxyConfig : string * string * System.Collections.Generic.IList<string> * string * Nullable<bool> -> 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, Optional enabled As Nullable(Of Boolean) = 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.

enabled
Nullable<Boolean>

Whether to enable HTTP proxy. If disabled, the specified proxy configuration will be not be set on pods and nodes. If not specified, the default is true.

Applies to