Wählen Sie die Berechtigungen aus, die für diese API als am wenigsten privilegiert markiert sind. Verwenden Sie eine höhere Berechtigung oder Berechtigungen nur, wenn Ihre App dies erfordert. Ausführliche Informationen zu delegierten Berechtigungen und Anwendungsberechtigungen finden Sie unter Berechtigungstypen. Weitere Informationen zu diesen Berechtigungen finden Sie in der Berechtigungsreferenz.
POST https://graph.microsoft.com/v1.0/solutions/backupRestore/enable
{
"appOwnerTenantId": "23014d8c-71fe-4d00-a01a-31850bc5b42a"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Solutions.BackupRestore.Enable;
var requestBody = new EnablePostRequestBody
{
AppOwnerTenantId = "23014d8c-71fe-4d00-a01a-31850bc5b42a",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Solutions.BackupRestore.Enable.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphsolutions "github.com/microsoftgraph/msgraph-sdk-go/solutions"
//other-imports
)
requestBody := graphsolutions.NewEnablePostRequestBody()
appOwnerTenantId := "23014d8c-71fe-4d00-a01a-31850bc5b42a"
requestBody.SetAppOwnerTenantId(&appOwnerTenantId)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
enable, err := graphClient.Solutions().BackupRestore().Enable().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.solutions.backuprestore.enable.EnablePostRequestBody enablePostRequestBody = new com.microsoft.graph.solutions.backuprestore.enable.EnablePostRequestBody();
enablePostRequestBody.setAppOwnerTenantId("23014d8c-71fe-4d00-a01a-31850bc5b42a");
var result = graphClient.solutions().backupRestore().enable().post(enablePostRequestBody);
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Solutions\BackupRestore\Enable\EnablePostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new EnablePostRequestBody();
$requestBody->setAppOwnerTenantId('23014d8c-71fe-4d00-a01a-31850bc5b42a');
$result = $graphServiceClient->solutions()->backupRestore()->enable()->post($requestBody)->wait();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.solutions.backuprestore.enable.enable_post_request_body import EnablePostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = EnablePostRequestBody(
app_owner_tenant_id = "23014d8c-71fe-4d00-a01a-31850bc5b42a",
)
result = await graph_client.solutions.backup_restore.enable.post(request_body)