Create microsoftTunnelServer
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.
Create a new microsoftTunnelServer object.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementConfiguration.ReadWrite.All |
HTTP Request
POST /deviceManagement/microsoftTunnelSites/{microsoftTunnelSiteId}/microsoftTunnelServers
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the microsoftTunnelServer object.
The following table shows the properties that are required when you create the microsoftTunnelServer.
Property | Type | Description |
---|---|---|
id | String | The unique identifier for the managed server. This ID is assigned at registration time. Supports: $filter, $select, $top, $skip, $orderby. $search is not supported. Read-only. |
displayName | String | The display name of the server. It is the same as the host name during registration and can be changed later. Supports: $filter, $select, $top, $skip, $orderby. $search is not supported. Max allowed length is 200 chars. |
tunnelServerHealthStatus | microsoftTunnelServerHealthStatus | Indicates the server's health Status as of the last evaluation time. Health is evaluated every 60 seconds, and the possible values are: unknown, healthy, unhealthy, warning, offline, upgradeInProgress, upgradeFailed. Supports: $filter, $select, $top, $skip, $orderby. $search is not supported. Read-only. Possible values are: unknown , healthy , unhealthy , warning , offline , upgradeInProgress , upgradeFailed , unknownFutureValue . |
lastCheckinDateTime | DateTimeOffset | Indicates when the server last checked in. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Supports: $filter, $select, $top, $skip, $orderby. $search is not supported Read-only. |
agentImageDigest | String | The digest of the current agent image running on this server. Supports: $filter, $select, $top, $skip, $orderby. $search is not supported. Read-only. |
serverImageDigest | String | The digest of the current server image running on this server. Supports: $filter, $select, $top, $skip, $orderby. $search is not supported. Read-only. |
deploymentMode | microsoftTunnelDeploymentMode | Microsoft Tunnel server deployment mode. The value is set when the server is registered. Possible values are standaloneRootful, standaloneRootless, podRootful, podRootless. Default value: standaloneRootful. Supports: $filter, $select, $top, $skip, $orderby. $search is not supported. Read-only. Possible values are: standaloneRootful , standaloneRootless , podRootful , podRootless , unknownFutureValue . |
Response
If successful, this method returns a 201 Created
response code and a microsoftTunnelServer object in the response body.
Example
Request
Here is an example of the request.
POST https://graph.microsoft.com/beta/deviceManagement/microsoftTunnelSites/{microsoftTunnelSiteId}/microsoftTunnelServers
Content-type: application/json
Content-length: 355
{
"@odata.type": "#microsoft.graph.microsoftTunnelServer",
"displayName": "Display Name value",
"tunnelServerHealthStatus": "healthy",
"lastCheckinDateTime": "2017-01-01T00:02:46.0431416-08:00",
"agentImageDigest": "Agent Image Digest value",
"serverImageDigest": "Server Image Digest value",
"deploymentMode": "standaloneRootless"
}
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 404
{
"@odata.type": "#microsoft.graph.microsoftTunnelServer",
"id": "b5cf0aee-0aee-b5cf-ee0a-cfb5ee0acfb5",
"displayName": "Display Name value",
"tunnelServerHealthStatus": "healthy",
"lastCheckinDateTime": "2017-01-01T00:02:46.0431416-08:00",
"agentImageDigest": "Agent Image Digest value",
"serverImageDigest": "Server Image Digest value",
"deploymentMode": "standaloneRootless"
}