Aktualisieren von „iosVppEBook“
Artikel 11/22/2024
12 Mitwirkende
Feedback
In diesem Artikel
Namespace: microsoft.graph
Hinweis: Die Microsoft Graph-API für Intune setzt eine aktive Intune-Lizenz für den Mandanten voraus.
Diese Methode aktualisiert die Eigenschaften von Objekten des Typs iosVppEBook .
Diese API ist in den folgenden nationalen Cloudbereitstellungen verfügbar.
Weltweiter Service
US Government L4
US Government L5 (DOD)
China, betrieben von 21Vianet
✅
✅
✅
✅
Berechtigungen
Eine der nachfolgenden Berechtigungen ist erforderlich, um diese API aufrufen zu können. Weitere Informationen, unter anderem zur Auswahl von Berechtigungen, finden Sie unter Berechtigungen .
Berechtigungstyp
Berechtigungen (von der Berechtigung mit den wenigsten Rechten zu der mit den meisten Rechten)
Delegiert (Geschäfts-, Schul- oder Unikonto)
DeviceManagementApps.ReadWrite.All
Delegiert (persönliches Microsoft-Konto)
Nicht unterstützt
Anwendung
DeviceManagementApps.ReadWrite.All
HTTP-Anforderung
PATCH /deviceAppManagement/managedEBooks/{managedEBookId}
Anforderungstext
Geben Sie als Anforderungstext eine JSON-Darstellung des Objekts des Typs iosVppEBook an.
In der folgenden Tabelle sind die Eigenschaften aufgeführt, die angegeben werden müssen, wenn Sie ein Objekt des Typs iosVppEBook erstellen.
Eigenschaft
Typ
Beschreibung
id
String
Schlüssel der Entität. Geerbt von managedEBook .
displayName
String
Name des E-Books. Geerbt von managedEBook .
description
String
Beschreibung. Geerbt von managedEBook .
publisher
String
Herausgeber. Geerbt von managedEBook .
publishedDateTime
DateTimeOffset
Datum und Uhrzeit der Veröffentlichung des E-Books. Geerbt von managedEBook .
largeCover
mimeContent
Umschlagbild des Buchs. Geerbt von managedEBook .
createdDateTime
DateTimeOffset
Datum und Uhrzeit der Erstellung der E-Book-Datei. Geerbt von managedEBook .
lastModifiedDateTime
DateTimeOffset
Datum und Uhrzeit der letzten Änderung des E-Books. Geerbt von managedEBook .
informationUrl
String
URL zur Seite mit weiteren Informationen. Geerbt von managedEBook .
privacyInformationUrl
String
URL zur Datenschutzerklärung. Geerbt von managedEBook .
vppTokenId
Guid
ID des VPP-Tokens
appleId
String
Apple-ID, die dem VPP-Token zugeordnet ist
vppOrganizationName
String
Zum VPP-Token gehörender Organisationsname
genres
Collection von Objekten des Typs „String“
Genres
language
String
Sprache
seller
String
Verkäufer
totalLicenseCount
Int32
Gesamtanzahl von Lizenzen
usedLicenseCount
Int32
Gesamtanzahl von genutzten Lizenzen
Antwort
Bei erfolgreicher Ausführung gibt die Methode den Antwortcode 200 OK
und ein aktualisiertes Objekt des Typs iosVppEBook im Antworttext zurück.
Beispiel
Anforderung
Nachfolgend sehen Sie ein Beispiel der Anforderung.
PATCH https://graph.microsoft.com/v1.0/deviceAppManagement/managedEBooks/{managedEBookId}
Content-type: application/json
Content-length: 792
{
"@odata.type": "#microsoft.graph.iosVppEBook",
"displayName": "Display Name value",
"description": "Description value",
"publisher": "Publisher value",
"publishedDateTime": "2016-12-31T23:58:16.1180489-08:00",
"largeCover": {
"@odata.type": "microsoft.graph.mimeContent",
"type": "Type value",
"value": "dmFsdWU="
},
"informationUrl": "https://example.com/informationUrl/",
"privacyInformationUrl": "https://example.com/privacyInformationUrl/",
"vppTokenId": "9148ac60-ac60-9148-60ac-489160ac4891",
"appleId": "Apple Id value",
"vppOrganizationName": "Vpp Organization Name value",
"genres": [
"Genres value"
],
"language": "Language value",
"seller": "Seller value",
"totalLicenseCount": 1,
"usedLicenseCount": 0
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new IosVppEBook
{
OdataType = "#microsoft.graph.iosVppEBook",
DisplayName = "Display Name value",
Description = "Description value",
Publisher = "Publisher value",
PublishedDateTime = DateTimeOffset.Parse("2016-12-31T23:58:16.1180489-08:00"),
LargeCover = new MimeContent
{
OdataType = "microsoft.graph.mimeContent",
Type = "Type value",
Value = Convert.FromBase64String("dmFsdWU="),
},
InformationUrl = "https://example.com/informationUrl/",
PrivacyInformationUrl = "https://example.com/privacyInformationUrl/",
VppTokenId = Guid.Parse("9148ac60-ac60-9148-60ac-489160ac4891"),
AppleId = "Apple Id value",
VppOrganizationName = "Vpp Organization Name value",
Genres = new List<string>
{
"Genres value",
},
Language = "Language value",
Seller = "Seller value",
TotalLicenseCount = 1,
UsedLicenseCount = 0,
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.DeviceAppManagement.ManagedEBooks["{managedEBook-id}"].PatchAsync(requestBody);
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
mgc device-app-management managed-ebooks patch --managed-ebook-id {managedEBook-id} --body '{\
"@odata.type": "#microsoft.graph.iosVppEBook",\
"displayName": "Display Name value",\
"description": "Description value",\
"publisher": "Publisher value",\
"publishedDateTime": "2016-12-31T23:58:16.1180489-08:00",\
"largeCover": {\
"@odata.type": "microsoft.graph.mimeContent",\
"type": "Type value",\
"value": "dmFsdWU="\
},\
"informationUrl": "https://example.com/informationUrl/",\
"privacyInformationUrl": "https://example.com/privacyInformationUrl/",\
"vppTokenId": "9148ac60-ac60-9148-60ac-489160ac4891",\
"appleId": "Apple Id value",\
"vppOrganizationName": "Vpp Organization Name value",\
"genres": [\
"Genres value"\
],\
"language": "Language value",\
"seller": "Seller value",\
"totalLicenseCount": 1,\
"usedLicenseCount": 0\
}\
'
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
"time"
"github.com/google/uuid"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewManagedEBook()
displayName := "Display Name value"
requestBody.SetDisplayName(&displayName)
description := "Description value"
requestBody.SetDescription(&description)
publisher := "Publisher value"
requestBody.SetPublisher(&publisher)
publishedDateTime , err := time.Parse(time.RFC3339, "2016-12-31T23:58:16.1180489-08:00")
requestBody.SetPublishedDateTime(&publishedDateTime)
largeCover := graphmodels.NewMimeContent()
type := "Type value"
largeCover.SetType(&type)
value := []byte("dmFsdWU=")
largeCover.SetValue(&value)
requestBody.SetLargeCover(largeCover)
informationUrl := "https://example.com/informationUrl/"
requestBody.SetInformationUrl(&informationUrl)
privacyInformationUrl := "https://example.com/privacyInformationUrl/"
requestBody.SetPrivacyInformationUrl(&privacyInformationUrl)
vppTokenId := uuid.MustParse("9148ac60-ac60-9148-60ac-489160ac4891")
requestBody.SetVppTokenId(&vppTokenId)
appleId := "Apple Id value"
requestBody.SetAppleId(&appleId)
vppOrganizationName := "Vpp Organization Name value"
requestBody.SetVppOrganizationName(&vppOrganizationName)
genres := []string {
"Genres value",
}
requestBody.SetGenres(genres)
language := "Language value"
requestBody.SetLanguage(&language)
seller := "Seller value"
requestBody.SetSeller(&seller)
totalLicenseCount := int32(1)
requestBody.SetTotalLicenseCount(&totalLicenseCount)
usedLicenseCount := int32(0)
requestBody.SetUsedLicenseCount(&usedLicenseCount)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
managedEBooks, err := graphClient.DeviceAppManagement().ManagedEBooks().ByManagedEBookId("managedEBook-id").Patch(context.Background(), requestBody, nil)
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
IosVppEBook managedEBook = new IosVppEBook();
managedEBook.setOdataType("#microsoft.graph.iosVppEBook");
managedEBook.setDisplayName("Display Name value");
managedEBook.setDescription("Description value");
managedEBook.setPublisher("Publisher value");
OffsetDateTime publishedDateTime = OffsetDateTime.parse("2016-12-31T23:58:16.1180489-08:00");
managedEBook.setPublishedDateTime(publishedDateTime);
MimeContent largeCover = new MimeContent();
largeCover.setOdataType("microsoft.graph.mimeContent");
largeCover.setType("Type value");
byte[] value = Base64.getDecoder().decode("dmFsdWU=");
largeCover.setValue(value);
managedEBook.setLargeCover(largeCover);
managedEBook.setInformationUrl("https://example.com/informationUrl/");
managedEBook.setPrivacyInformationUrl("https://example.com/privacyInformationUrl/");
managedEBook.setVppTokenId(UUID.fromString("9148ac60-ac60-9148-60ac-489160ac4891"));
managedEBook.setAppleId("Apple Id value");
managedEBook.setVppOrganizationName("Vpp Organization Name value");
LinkedList<String> genres = new LinkedList<String>();
genres.add("Genres value");
managedEBook.setGenres(genres);
managedEBook.setLanguage("Language value");
managedEBook.setSeller("Seller value");
managedEBook.setTotalLicenseCount(1);
managedEBook.setUsedLicenseCount(0);
ManagedEBook result = graphClient.deviceAppManagement().managedEBooks().byManagedEBookId("{managedEBook-id}").patch(managedEBook);
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
const options = {
authProvider,
};
const client = Client.init(options);
const managedEBook = {
'@odata.type': '#microsoft.graph.iosVppEBook',
displayName: 'Display Name value',
description: 'Description value',
publisher: 'Publisher value',
publishedDateTime: '2016-12-31T23:58:16.1180489-08:00',
largeCover: {
'@odata.type': 'microsoft.graph.mimeContent',
type: 'Type value',
value: 'dmFsdWU='
},
informationUrl: 'https://example.com/informationUrl/',
privacyInformationUrl: 'https://example.com/privacyInformationUrl/',
vppTokenId: '9148ac60-ac60-9148-60ac-489160ac4891',
appleId: 'Apple Id value',
vppOrganizationName: 'Vpp Organization Name value',
genres: [
'Genres value'
],
language: 'Language value',
seller: 'Seller value',
totalLicenseCount: 1,
usedLicenseCount: 0
};
await client.api('/deviceAppManagement/managedEBooks/{managedEBookId}')
.update(managedEBook);
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Models\IosVppEBook;
use Microsoft\Graph\Generated\Models\MimeContent;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new IosVppEBook();
$requestBody->setOdataType('#microsoft.graph.iosVppEBook');
$requestBody->setDisplayName('Display Name value');
$requestBody->setDescription('Description value');
$requestBody->setPublisher('Publisher value');
$requestBody->setPublishedDateTime(new \DateTime('2016-12-31T23:58:16.1180489-08:00'));
$largeCover = new MimeContent();
$largeCover->setOdataType('microsoft.graph.mimeContent');
$largeCover->setType('Type value');
$largeCover->setValue(\GuzzleHttp\Psr7\Utils::streamFor(base64_decode('dmFsdWU=')));
$requestBody->setLargeCover($largeCover);
$requestBody->setInformationUrl('https://example.com/informationUrl/');
$requestBody->setPrivacyInformationUrl('https://example.com/privacyInformationUrl/');
$requestBody->setVppTokenId('9148ac60-ac60-9148-60ac-489160ac4891');
$requestBody->setAppleId('Apple Id value');
$requestBody->setVppOrganizationName('Vpp Organization Name value');
$requestBody->setGenres(['Genres value', ]);
$requestBody->setLanguage('Language value');
$requestBody->setSeller('Seller value');
$requestBody->setTotalLicenseCount(1);
$requestBody->setUsedLicenseCount(0);
$result = $graphServiceClient->deviceAppManagement()->managedEBooks()->byManagedEBookId('managedEBook-id')->patch($requestBody)->wait();
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
Import-Module Microsoft.Graph.Devices.CorporateManagement
$params = @{
"@odata.type" = "#microsoft.graph.iosVppEBook"
displayName = "Display Name value"
description = "Description value"
publisher = "Publisher value"
publishedDateTime = [System.DateTime]::Parse("2016-12-31T23:58:16.1180489-08:00")
largeCover = @{
"@odata.type" = "microsoft.graph.mimeContent"
type = "Type value"
value = [System.Text.Encoding]::ASCII.GetBytes("dmFsdWU=")
}
informationUrl = "https://example.com/informationUrl/"
privacyInformationUrl = "https://example.com/privacyInformationUrl/"
vppTokenId = "9148ac60-ac60-9148-60ac-489160ac4891"
appleId = "Apple Id value"
vppOrganizationName = "Vpp Organization Name value"
genres = @(
"Genres value"
)
language = "Language value"
seller = "Seller value"
totalLicenseCount =
usedLicenseCount =
}
Update-MgDeviceAppManagementManagedEBook -ManagedEBookId $managedEBookId -BodyParameter $params
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.ios_vpp_e_book import IosVppEBook
from msgraph.generated.models.mime_content import MimeContent
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = IosVppEBook(
odata_type = "#microsoft.graph.iosVppEBook",
display_name = "Display Name value",
description = "Description value",
publisher = "Publisher value",
published_date_time = "2016-12-31T23:58:16.1180489-08:00",
large_cover = MimeContent(
odata_type = "microsoft.graph.mimeContent",
type = "Type value",
value = base64.urlsafe_b64decode("dmFsdWU="),
),
information_url = "https://example.com/informationUrl/",
privacy_information_url = "https://example.com/privacyInformationUrl/",
vpp_token_id = UUID("9148ac60-ac60-9148-60ac-489160ac4891"),
apple_id = "Apple Id value",
vpp_organization_name = "Vpp Organization Name value",
genres = [
"Genres value",
],
language = "Language value",
seller = "Seller value",
total_license_count = 1,
used_license_count = 0,
)
result = await graph_client.device_app_management.managed_e_books.by_managed_e_book_id('managedEBook-id').patch(request_body)
Einzelheiten darüber, wie Sie das SDK zu Ihrem Projekt hinzufügen und eine authProvider-Instanz erstellen , finden Sie in der SDK-Dokumentation .
Antwort
Nachfolgend sehen Sie ein Beispiel der Antwort. Hinweis: Das hier gezeigte Antwortobjekt ist möglicherweise aus Platzgründen abgeschnitten. Von einem tatsächlichen Aufruf werden alle Eigenschaften zurückgegeben.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 964
{
"@odata.type": "#microsoft.graph.iosVppEBook",
"id": "3b9f627e-627e-3b9f-7e62-9f3b7e629f3b",
"displayName": "Display Name value",
"description": "Description value",
"publisher": "Publisher value",
"publishedDateTime": "2016-12-31T23:58:16.1180489-08:00",
"largeCover": {
"@odata.type": "microsoft.graph.mimeContent",
"type": "Type value",
"value": "dmFsdWU="
},
"createdDateTime": "2017-01-01T00:02:43.5775965-08:00",
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
"informationUrl": "https://example.com/informationUrl/",
"privacyInformationUrl": "https://example.com/privacyInformationUrl/",
"vppTokenId": "9148ac60-ac60-9148-60ac-489160ac4891",
"appleId": "Apple Id value",
"vppOrganizationName": "Vpp Organization Name value",
"genres": [
"Genres value"
],
"language": "Language value",
"seller": "Seller value",
"totalLicenseCount": 1,
"usedLicenseCount": 0
}