InboundEnvironmentEndpoint Constructors

Definition

Overloads

InboundEnvironmentEndpoint()

Initializes a new instance of the InboundEnvironmentEndpoint class.

InboundEnvironmentEndpoint(String, IList<String>, IList<String>)

Initializes a new instance of the InboundEnvironmentEndpoint class.

InboundEnvironmentEndpoint()

Initializes a new instance of the InboundEnvironmentEndpoint class.

public InboundEnvironmentEndpoint ();
Public Sub New ()

Applies to

InboundEnvironmentEndpoint(String, IList<String>, IList<String>)

Initializes a new instance of the InboundEnvironmentEndpoint class.

public InboundEnvironmentEndpoint (string description = default, System.Collections.Generic.IList<string> endpoints = default, System.Collections.Generic.IList<string> ports = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.InboundEnvironmentEndpoint : string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.AppService.Fluent.Models.InboundEnvironmentEndpoint
Public Sub New (Optional description As String = Nothing, Optional endpoints As IList(Of String) = Nothing, Optional ports As IList(Of String) = Nothing)

Parameters

description
String

Short text describing the purpose of the network traffic.

endpoints
IList<String>

The IP addresses that network traffic will originate from in cidr notation.

ports
IList<String>

The ports that network traffic will arrive to the App Service Environment at.

Applies to