ipApplicationSegment resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the segment configurations that are allowed for an on-premises nonweb application published through Microsoft Entra application proxy and accessed via non-HTTP protocols.

Inherits from applicationSegment.

Methods

Method Return type Description
List ipApplicationSegment collection Get a list of the ipApplicationSegment objects and their properties.
Create ipApplicationSegment Create a new ipApplicationSegment object.
Get ipApplicationSegment Read the properties and relationships of an ipApplicationSegment object.
Update ipApplicationSegment Update the properties of an ipApplicationSegment object.
Delete None Delete an ipApplicationSegment object.

Properties

Property Type Description
destinationHost String Either the IP address, IP range, or FQDN of the applicationSegment, with or without wildcards.
destinationType privateNetworkDestinationType The possible values are: ipAddress, ipRange, ipRangeCidr, fqdn, dnsSuffix, unknownFutureValue.
id String Identifier for the application segment. Inherited from applicationSegment.
port (deprecated) Int32 Port supported for the application segment. DO NOT USE.
ports String collection List of ports supported for the application segment.
protocol privateNetworkProtocol Indicates the protocol of the network traffic acquired for the application segment. The possible values are: tcp, udp, unknownFutureValue.

Relationships

Relationship Type Description
application application The on-premises nonweb application published through Microsoft Entra application proxy. Expanded by default and supports $expand.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.ipApplicationSegment",
  "id": "String (identifier)",
  "destinationHost": "String",
  "destinationType": "String",
  "port": "Integer",
  "ports": [
    "String"
  ],
  "protocol": "String"
}