Les API sous la version /beta dans Microsoft Graph sont susceptibles d’être modifiées. L’utilisation de ces API dans des applications de production n’est pas prise en charge. Pour déterminer si une API est disponible dans v1.0, utilisez le sélecteur Version .
POST https://graph.microsoft.com/beta/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.Beta.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 $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphsolutions "github.com/microsoftgraph/msgraph-beta-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.beta.solutions.backuprestore.enable.EnablePostRequestBody enablePostRequestBody = new com.microsoft.graph.beta.solutions.backuprestore.enable.EnablePostRequestBody();
enablePostRequestBody.setAppOwnerTenantId("23014d8c-71fe-4d00-a01a-31850bc5b42a");
var result = graphClient.solutions().backupRestore().enable().post(enablePostRequestBody);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\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_beta import GraphServiceClient
from msgraph_beta.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)