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.
Get the daily aggregated remote connection reports, such as round trip time, available bandwidth, and so on, in a given period.
This API is available in the following national cloud deployments.
Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
✅ |
✅ |
✅ |
❌ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type |
Least privileged permissions |
Higher privileged permissions |
Delegated (work or school account) |
CloudPC.Read.All |
CloudPC.ReadWrite.All |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
CloudPC.Read.All |
CloudPC.ReadWrite.All |
HTTP request
POST /deviceManagement/virtualEndpoint/reports/getDailyAggregatedRemoteConnectionReports
Request body
In the request body, supply a JSON representation of the parameters.
The following table shows the parameters that can be used with this action.
Parameter |
Type |
Description |
filter |
String |
OData filter syntax. Supported filters include and , or , lt , le , gt , ge and eq . |
select |
String collection |
OData select syntax. Represents the selected columns of the reports. |
search |
String |
Specifies a string to search |
groupBy |
String collection |
Specify how to group the reports. If used, must have the same contents as select parameter |
orderBy |
String collection |
Specify how to sort the reports. |
skip |
Int32 |
Number of records to skip. |
top |
Int32 |
The number of top records to return. |
Response
If successful, this action returns a 200 OK
response code and a Stream in the response body.
Examples
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/reports/getDailyAggregatedRemoteConnectionReports
Content-Type: application/json
Content-length: 199
{
"filter" : "CloudPcId eq '5db15afe-025d-4f1b-b43a-d0554b63ffff' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 ",
"search" : "abc0907",
"select" : ["EventDateTime", "CloudPcId", "ManagedDeviceName", "UsageInHour", "RoundTripTimeInMsP50", "AvailableBandwidthInMbpsP50", "RemoteSignInTimeInSecP50", "UserPrincipalName"],
"skip": "0",
"top": "25"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.DeviceManagement.VirtualEndpoint.Reports.GetDailyAggregatedRemoteConnectionReports;
var requestBody = new GetDailyAggregatedRemoteConnectionReportsPostRequestBody
{
Filter = "CloudPcId eq '5db15afe-025d-4f1b-b43a-d0554b63ffff' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 ",
Search = "abc0907",
Select = new List<string>
{
"EventDateTime",
"CloudPcId",
"ManagedDeviceName",
"UsageInHour",
"RoundTripTimeInMsP50",
"AvailableBandwidthInMbpsP50",
"RemoteSignInTimeInSecP50",
"UserPrincipalName",
},
Skip = 0,
Top = 25,
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.DeviceManagement.VirtualEndpoint.Reports.GetDailyAggregatedRemoteConnectionReports.PostAsync(requestBody);
mgc-beta device-management virtual-endpoint reports get-daily-aggregated-remote-connection-reports post --body '{\
"filter" : "CloudPcId eq '5db15afe-025d-4f1b-b43a-d0554b63ffff' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 ", \
"search" : "abc0907", \
"select" : ["EventDateTime", "CloudPcId", "ManagedDeviceName", "UsageInHour", "RoundTripTimeInMsP50", "AvailableBandwidthInMbpsP50", "RemoteSignInTimeInSecP50", "UserPrincipalName"],\
"skip": "0",\
"top": "25"\
}\
'
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphdevicemanagement "github.com/microsoftgraph/msgraph-beta-sdk-go/devicemanagement"
//other-imports
)
requestBody := graphdevicemanagement.NewGetDailyAggregatedRemoteConnectionReportsPostRequestBody()
filter := "CloudPcId eq '5db15afe-025d-4f1b-b43a-d0554b63ffff' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 "
requestBody.SetFilter(&filter)
search := "abc0907"
requestBody.SetSearch(&search)
select := []string {
"EventDateTime",
"CloudPcId",
"ManagedDeviceName",
"UsageInHour",
"RoundTripTimeInMsP50",
"AvailableBandwidthInMbpsP50",
"RemoteSignInTimeInSecP50",
"UserPrincipalName",
}
requestBody.SetSelect(select)
skip := int32(0)
requestBody.SetSkip(&skip)
top := int32(25)
requestBody.SetTop(&top)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
graphClient.DeviceManagement().VirtualEndpoint().Reports().GetDailyAggregatedRemoteConnectionReports().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.devicemanagement.virtualendpoint.reports.getdailyaggregatedremoteconnectionreports.GetDailyAggregatedRemoteConnectionReportsPostRequestBody getDailyAggregatedRemoteConnectionReportsPostRequestBody = new com.microsoft.graph.beta.devicemanagement.virtualendpoint.reports.getdailyaggregatedremoteconnectionreports.GetDailyAggregatedRemoteConnectionReportsPostRequestBody();
getDailyAggregatedRemoteConnectionReportsPostRequestBody.setFilter("CloudPcId eq '5db15afe-025d-4f1b-b43a-d0554b63ffff' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 ");
getDailyAggregatedRemoteConnectionReportsPostRequestBody.setSearch("abc0907");
LinkedList<String> select = new LinkedList<String>();
select.add("EventDateTime");
select.add("CloudPcId");
select.add("ManagedDeviceName");
select.add("UsageInHour");
select.add("RoundTripTimeInMsP50");
select.add("AvailableBandwidthInMbpsP50");
select.add("RemoteSignInTimeInSecP50");
select.add("UserPrincipalName");
getDailyAggregatedRemoteConnectionReportsPostRequestBody.setSelect(select);
getDailyAggregatedRemoteConnectionReportsPostRequestBody.setSkip(0);
getDailyAggregatedRemoteConnectionReportsPostRequestBody.setTop(25);
graphClient.deviceManagement().virtualEndpoint().reports().getDailyAggregatedRemoteConnectionReports().post(getDailyAggregatedRemoteConnectionReportsPostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const stream = {
filter: 'CloudPcId eq \'5db15afe-025d-4f1b-b43a-d0554b63ffff\' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 ',
search: 'abc0907',
select: ['EventDateTime', 'CloudPcId', 'ManagedDeviceName', 'UsageInHour', 'RoundTripTimeInMsP50', 'AvailableBandwidthInMbpsP50', 'RemoteSignInTimeInSecP50', 'UserPrincipalName'],
skip: '0',
top: '25'
};
await client.api('/deviceManagement/virtualEndpoint/reports/getDailyAggregatedRemoteConnectionReports')
.version('beta')
.post(stream);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\DeviceManagement\VirtualEndpoint\Reports\GetDailyAggregatedRemoteConnectionReports\GetDailyAggregatedRemoteConnectionReportsPostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new GetDailyAggregatedRemoteConnectionReportsPostRequestBody();
$requestBody->setFilter('CloudPcId eq \'5db15afe-025d-4f1b-b43a-d0554b63ffff\' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 ');
$requestBody->setSearch('abc0907');
$requestBody->setSelect(['EventDateTime', 'CloudPcId', 'ManagedDeviceName', 'UsageInHour', 'RoundTripTimeInMsP50', 'AvailableBandwidthInMbpsP50', 'RemoteSignInTimeInSecP50', 'UserPrincipalName', ]);
$requestBody->setSkip(0);
$requestBody->setTop(25);
$graphServiceClient->deviceManagement()->virtualEndpoint()->reports()->getDailyAggregatedRemoteConnectionReports()->post($requestBody)->wait();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.devicemanagement.virtualendpoint.reports.get_daily_aggregated_remote_connection_reports.get_daily_aggregated_remote_connection_reports_post_request_body import GetDailyAggregatedRemoteConnectionReportsPostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = GetDailyAggregatedRemoteConnectionReportsPostRequestBody(
filter = "CloudPcId eq '5db15afe-025d-4f1b-b43a-d0554b63ffff' and RoundTripTimeInMsP50 lt 100 and EventDateTime gt 2022-06-01 ",
search = "abc0907",
select = [
"EventDateTime",
"CloudPcId",
"ManagedDeviceName",
"UsageInHour",
"RoundTripTimeInMsP50",
"AvailableBandwidthInMbpsP50",
"RemoteSignInTimeInSecP50",
"UserPrincipalName",
],
skip = 0,
top = 25,
)
await graph_client.device_management.virtual_endpoint.reports.get_daily_aggregated_remote_connection_reports.post(request_body)
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/octet-stream
{
"TotalRowCount": 1,
"Schema": [
{
"Column": "UsageInHour",
"PropertyType": "Double"
},
{
"Column": "RoundTripTimeInMsP50",
"PropertyType": "Double"
},
{
"Column": "RemoteSignInTimeInSecP50",
"PropertyType": "Double"
},
{
"Column": "AvailableBandwidthInMbpsP50",
"PropertyType": "Double"
},
{
"Column": "EventDateTime",
"PropertyType": "DateTime"
}
],
"Values": [
[
16.310277777777777,
393.0,
9.088,
1.423828125,
"2022-09-15T00:00:00"
]
]
}