Skip to content

Commit

Permalink
Updated Resources and Cmdlet documentation pages
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Dec 13, 2024
1 parent a2d411e commit f2c3eea
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,21 @@ This function outputs information as the following type:

| Parameter | Required | DataType | Default Value | Allowed Values | Description |
| --- | --- | --- | --- | --- | --- |
| ResourceNames | True | Array | | | Specifies the resources for which the workloads should be determined. |
| ResourceNames | True | Array | | | Specifies the resources for which the workloads should be determined.
Either a single string, an array of strings or an object with 'Name' and 'AuthenticationMethod' can be provided. |

## Examples

-------------------------- EXAMPLE 1 --------------------------

`Get-M365DSCWorkloadsListFromResourceNames -ResourceNames AADUSer`
`Get-M365DSCWorkloadsListFromResourceNames -ResourceNames AADUser`

-------------------------- EXAMPLE 2 --------------------------

`Get-M365DSCWorkloadsListFromResourceNames -ResourceNames @('AADUser', 'AADGroup')`

-------------------------- EXAMPLE 3 --------------------------

`Get-M365DSCWorkloadsListFromResourceNames -ResourceNames @{Name = 'AADUser'; AuthenticationMethod = 'Credentials'}`


0 comments on commit f2c3eea

Please sign in to comment.