In the request body, supply only the values for properties that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values.
The following table specifies the properties that can be updated.
Property
Type
Description
displayName
String
The access package catalog name.
description
String
The description of the access package catalog.
catalogType
accessPackageCatalogType
Whether the catalog is created by a user or entitlement management. The possible values are: userManaged, serviceDefault, serviceManaged, unknownFutureValue.
state
accessPackageCatalogState
Has the value published if the access packages are available for management. The possible values are: unpublished, published, unknownFutureValue.
isExternallyVisible
Boolean
Whether the access packages in this catalog can be requested by users outside of the tenant.
Response
If successful, this method returns a 204 No Content response code.
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestBody = new AccessPackageCatalog();
$requestBody->setDisplayName('Catalog One');
$requestResult = $graphServiceClient->identityGovernance()->entitlementManagement()->catalogsById('accessPackageCatalog-id')->patch($requestBody);