AADEntitlementManagementAccessPackage¶
Parameters¶
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
DisplayName | Key | String | The display name of the access package. | |
Id | Write | String | The Id of the access package. | |
CatalogId | Write | String | Identifier of the access package catalog referencing this access package. | |
Description | Write | String | The description of the access package. | |
IsHidden | Write | Boolean | Whether the access package is hidden from the requestor. | |
IsRoleScopesVisible | Write | Boolean | Indicates whether role scopes are visible. | |
AccessPackageResourceRoleScopes | Write | MSFT_AccessPackageResourceRoleScope[] | The resources and roles included in the access package. | |
IncompatibleAccessPackages | Write | StringArray[] | The access packages whose assigned users are ineligible to be assigned this access package. | |
AccessPackagesIncompatibleWith | Write | StringArray[] | The access packages that are incompatible with this package. | |
IncompatibleGroups | Write | StringArray[] | The groups whose members are ineligible to be assigned this access package. | |
Ensure | Write | String | Present ensures the policy exists, absent ensures it is removed. | Present , Absent |
Credential | Write | PSCredential | Credentials of the Intune Admin | |
ApplicationId | Write | String | Id of the Azure Active Directory application to authenticate with. | |
TenantId | Write | String | Id of the Azure Active Directory tenant used for authentication. | |
ApplicationSecret | Write | PSCredential | Secret of the Azure Active Directory tenant used for authentication. | |
CertificateThumbprint | Write | String | Thumbprint of the Azure Active Directory application's authentication certificate to use for authentication. | |
ManagedIdentity | Write | Boolean | Managed ID being used for authentication. | |
AccessTokens | Write | StringArray[] | Access token used for authentication. |
MSFT_AccessPackageResourceRoleScope¶
Parameters¶
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Id | Write | String | The Id of the resource roleScope. | |
AccessPackageResourceOriginId | Write | String | The origine Id of the resource. | |
AccessPackageResourceRoleDisplayName | Write | String | The display name of the resource role. |
Description¶
This resource configures an Azure AD Entitlement Management Access Package.
Permissions¶
Microsoft Graph¶
To authenticate with the Microsoft Graph API, this resource required the following permissions:
Delegated permissions¶
-
Read
- EntitlementManagement.Read.All
-
Update
- EntitlementManagement.ReadWrite.All
Application permissions¶
-
Read
- EntitlementManagement.Read.All
-
Update
- EntitlementManagement.ReadWrite.All
Examples¶
Example 1¶
This example is used to test new resources and showcase the usage of new resources being worked on. It is not meant to use as a production baseline.
Configuration Example
{
param(
[Parameter()]
[System.String]
$ApplicationId,
[Parameter()]
[System.String]
$TenantId,
[Parameter()]
[System.String]
$CertificateThumbprint
)
Import-DscResource -ModuleName Microsoft365DSC
node localhost
{
AADEntitlementManagementAccessPackage 'myAccessPackage'
{
AccessPackagesIncompatibleWith = @();
CatalogId = "General";
ApplicationId = $ApplicationId
TenantId = $TenantId
CertificateThumbprint = $CertificateThumbprint
Description = "Integration Tests";
DisplayName = "Integration Package";
Ensure = "Present";
IsHidden = $False;
IsRoleScopesVisible = $True;
}
}
}
Example 2¶
This example is used to test new resources and showcase the usage of new resources being worked on. It is not meant to use as a production baseline.
Configuration Example
{
param(
[Parameter()]
[System.String]
$ApplicationId,
[Parameter()]
[System.String]
$TenantId,
[Parameter()]
[System.String]
$CertificateThumbprint
)
Import-DscResource -ModuleName Microsoft365DSC
node localhost
{
AADEntitlementManagementAccessPackage 'myAccessPackage'
{
AccessPackagesIncompatibleWith = @();
CatalogId = "General";
ApplicationId = $ApplicationId
TenantId = $TenantId
CertificateThumbprint = $CertificateThumbprint
Description = "Integration Tests";
DisplayName = "Integration Package";
Ensure = "Present";
IsHidden = $True; # Updated Property
IsRoleScopesVisible = $True;
}
}
}
Example 3¶
This example is used to test new resources and showcase the usage of new resources being worked on. It is not meant to use as a production baseline.
Configuration Example
{
param(
[Parameter()]
[System.String]
$ApplicationId,
[Parameter()]
[System.String]
$TenantId,
[Parameter()]
[System.String]
$CertificateThumbprint
)
Import-DscResource -ModuleName Microsoft365DSC
node localhost
{
AADEntitlementManagementAccessPackage 'myAccessPackage'
{
DisplayName = 'Integration Package'
Ensure = 'Absent'
ApplicationId = $ApplicationId
TenantId = $TenantId
CertificateThumbprint = $CertificateThumbprint
}
}
}