Skip to content

Commit

Permalink
removed Id as required
Browse files Browse the repository at this point in the history
  • Loading branch information
William-Francillette committed Nov 10, 2023
1 parent f72ee31 commit 48296e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Get-TargetResource
[System.String]
$DisplayName,

[Parameter(Mandatory = $true)]
[Parameter()]
[System.String]
$Id,

Expand Down Expand Up @@ -219,7 +219,7 @@ function Set-TargetResource
[System.String]
$DisplayName,

[Parameter(Mandatory = $true)]
[Parameter()]
[System.String]
$Id,

Expand Down Expand Up @@ -443,7 +443,7 @@ function Test-TargetResource
[System.String]
$DisplayName,

[Parameter(Mandatory = $true)]
[Parameter()]
[System.String]
$Id,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MSFT_DeviceManagementConfigurationPolicyAssignments
class MSFT_IntuneDeviceEnrollmentStatusPageWindows10 : OMI_BaseResource
{
[Key, Description("The display name of the device enrollment configuration")] String DisplayName;
[Required, Description("The unique identifier for an entity. Read-only.")] String Id;
[Write, Description("The unique identifier for an entity. Read-only.")] String Id;
[Write, Description("The description of the device enrollment configuration")] String Description;
[Write, Description("Allow or block device reset on installation failure")] Boolean AllowDeviceResetOnInstallFailure;
[Write, Description("Allow the user to continue using the device on installation failure")] Boolean AllowDeviceUseOnInstallFailure;
Expand Down

0 comments on commit 48296e0

Please sign in to comment.