microsoftTunnelSite resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Entity that represents a Microsoft Tunnel site

Methods

Method Return Type Description
List microsoftTunnelSites microsoftTunnelSite collection List properties and relationships of the microsoftTunnelSite objects.
Get microsoftTunnelSite microsoftTunnelSite Read properties and relationships of the microsoftTunnelSite object.
Create microsoftTunnelSite microsoftTunnelSite Create a new microsoftTunnelSite object.
Delete microsoftTunnelSite None Deletes a microsoftTunnelSite.
Update microsoftTunnelSite microsoftTunnelSite Update the properties of a microsoftTunnelSite object.
requestUpgrade action None

Properties

Property Type Description
id String The unique identifier for the site id. $Insert, $skip, $top is not supported. Read-only.
displayName String The display name for the site. This property is required when a site is created.
description String The site's description (optional)
publicAddress String The site's public domain name or IP address
upgradeWindowUtcOffsetInMinutes Int32 The site's timezone represented as a minute offset from UTC
upgradeWindowStartTime TimeOfDay The site's upgrade window start time of day
upgradeWindowEndTime TimeOfDay The site's upgrade window end time of day
upgradeAutomatically Boolean The site's automatic upgrade setting. True for automatic upgrades, false for manual control
upgradeAvailable Boolean The site provides the state of when an upgrade is available
internalNetworkProbeUrl String The site's Internal Network Access Probe URL
roleScopeTagIds String collection List of Scope Tags for this Entity instance

Relationships

Relationship Type Description
microsoftTunnelConfiguration microsoftTunnelConfiguration The MicrosoftTunnelConfiguration that has been applied to this MicrosoftTunnelSite
microsoftTunnelServers microsoftTunnelServer collection A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.microsoftTunnelSite",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "publicAddress": "String",
  "upgradeWindowUtcOffsetInMinutes": 1024,
  "upgradeWindowStartTime": "String (time of day)",
  "upgradeWindowEndTime": "String (time of day)",
  "upgradeAutomatically": true,
  "upgradeAvailable": true,
  "internalNetworkProbeUrl": "String",
  "roleScopeTagIds": [
    "String"
  ]
}