From f2c3eeade5c25e96bd9c990f81199fc0e25e4ccc Mon Sep 17 00:00:00 2001 From: NikCharlebois Date: Fri, 13 Dec 2024 12:15:22 +0000 Subject: [PATCH] Updated Resources and Cmdlet documentation pages --- .../Get-M365DSCWorkloadsListFromResourceNames.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/docs/user-guide/cmdlets/Get-M365DSCWorkloadsListFromResourceNames.md b/docs/docs/user-guide/cmdlets/Get-M365DSCWorkloadsListFromResourceNames.md index ba1ff1e78a..8db7fc302a 100644 --- a/docs/docs/user-guide/cmdlets/Get-M365DSCWorkloadsListFromResourceNames.md +++ b/docs/docs/user-guide/cmdlets/Get-M365DSCWorkloadsListFromResourceNames.md @@ -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'}`