Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kasaxena5 committed Nov 7, 2024
1 parent cff7025 commit 5404644
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function Get-TargetResource
{
if ($null -ne $Script:exportedInstances -and $Script:ExportMode)
{
$instance = $Script:exportedInstances | Where-Object -FilterScript {$_.Identity -eq $Identity}
$instance = $Script:exportedInstances | Where-Object -FilterScript {$_.Identity.Name -eq $Identity}
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
class MSFT_M365DataAtRestEncryptionPolicy : OMI_BaseResource
{
[Key, Description("The Identity parameter specifies the data-at-rest encryption policy that you want to modify.")] String Identity;
[Required, Description("The Name parameter specifies a unique name for the Microsoft 365 data-at-rest encryption policy.")] String Name;
[Write, Description("The Name parameter specifies a unique name for the Microsoft 365 data-at-rest encryption policy.")] String Name;
[Write, Description("The Description parameter specifies an optional description for the policy.")] String Description;
[Write, Description("The Enabled parameter specifies whether the policy is enabled or disabled. ")] Boolean Enabled;
[Write, Description("The AzureKeyIDs parameter specifies the URL of the encryption key in the Azure Key Vault that's used for encryption.")] String AzureKeyIDs[];
Expand Down

0 comments on commit 5404644

Please sign in to comment.