From 41a164c4739919d2e3dab0beef239b95622e5038 Mon Sep 17 00:00:00 2001 From: Colin Longman Date: Thu, 8 May 2025 11:07:56 -0700 Subject: [PATCH 1/7] Update Get-CsCallQueue.md Updating as we are now enforcing a return of a maximum of 100 CQs at a time. --- teams/teams-ps/teams/Get-CsCallQueue.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/teams/teams-ps/teams/Get-CsCallQueue.md b/teams/teams-ps/teams/Get-CsCallQueue.md index 4c197e143e..aede4d2e58 100644 --- a/teams/teams-ps/teams/Get-CsCallQueue.md +++ b/teams/teams-ps/teams/Get-CsCallQueue.md @@ -32,7 +32,7 @@ The Get-CsCallQueue cmdlet lets you retrieve information about the Call Queues i Get-CsCallQueue ``` -This example gets all Call Queues in the organization. +This example gets the first 100 Call Queues in the organization. ### -------------------------- Example 2 -------------------------- ``` @@ -76,7 +76,9 @@ Accept wildcard characters: False ``` ### -First -The First parameter gets the first N Call Queues. The default behavior is to return the first 100 number of queues. It is intended to be used for pagination purposes. +The First parameter gets the first N Call Queues, up to a maximum of 100 at a time. +When not specified, the default behavior is to return the first 100 number of queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. +If a number greater than 100 is supplied, the request will fail. ```yaml Type: Int32 @@ -92,7 +94,7 @@ Accept wildcard characters: False ``` ### -Skip -The Skip parameter skips the first N Call Queues. It is intended to be used for pagination purposes. +The Skip parameter skips the first N Call Queues. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. ```yaml Type: Int32 From 736455eecb06dff029205b1537eca442b43cabc1 Mon Sep 17 00:00:00 2001 From: Colin Longman Date: Thu, 8 May 2025 11:14:35 -0700 Subject: [PATCH 2/7] Update Get-CsAutoAttendant.md --- teams/teams-ps/teams/Get-CsAutoAttendant.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/teams/teams-ps/teams/Get-CsAutoAttendant.md b/teams/teams-ps/teams/Get-CsAutoAttendant.md index 5b972a6fe7..0c379a028c 100644 --- a/teams/teams-ps/teams/Get-CsAutoAttendant.md +++ b/teams/teams-ps/teams/Get-CsAutoAttendant.md @@ -31,7 +31,7 @@ The Get-CsAutoAttendant cmdlet returns information about the AAs in your organiz Get-CsAutoAttendant ``` -This example gets all AAs in the organization. +This example gets the first 100 AAs in the organization. ### Example 2 ```powershell @@ -91,7 +91,9 @@ Accept wildcard characters: False ``` ### -First -The First parameter indicates the maximum number of auto attendants to retrieve as the result. It is intended to be used for pagination purposes. +The First parameter gets the first N auto attendants, up to a maximum of 100 at a time. +When not specified, the default behavior is to return the first 100 auto attendants. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. +If a number greater than 100 is supplied, the request will fail. ```yaml Type: System.UInt32 @@ -107,7 +109,7 @@ Accept wildcard characters: False ``` ### -Skip -The Skip parameter indicates the number of initial auto attendants to skip in the result. It is intended to be used for pagination purposes. +The Skip parameter skips the first N auto attendants. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. ```yaml Type: System.UInt32 From 99184f6b5c192f080583820e0c469179496484ab Mon Sep 17 00:00:00 2001 From: Colin Longman Date: Thu, 8 May 2025 11:15:59 -0700 Subject: [PATCH 3/7] Update Get-CsCallQueue.md --- teams/teams-ps/teams/Get-CsCallQueue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teams/teams-ps/teams/Get-CsCallQueue.md b/teams/teams-ps/teams/Get-CsCallQueue.md index aede4d2e58..22d74d6433 100644 --- a/teams/teams-ps/teams/Get-CsCallQueue.md +++ b/teams/teams-ps/teams/Get-CsCallQueue.md @@ -77,7 +77,7 @@ Accept wildcard characters: False ### -First The First parameter gets the first N Call Queues, up to a maximum of 100 at a time. -When not specified, the default behavior is to return the first 100 number of queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. +When not specified, the default behavior is to return the first 100 of queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. ```yaml From a396c1652dd0a55c59c941298bf5234ff8d36c72 Mon Sep 17 00:00:00 2001 From: Colin Longman Date: Thu, 8 May 2025 11:18:21 -0700 Subject: [PATCH 4/7] Update Get-CsAutoAttendant.md --- teams/teams-ps/teams/Get-CsAutoAttendant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teams/teams-ps/teams/Get-CsAutoAttendant.md b/teams/teams-ps/teams/Get-CsAutoAttendant.md index 0c379a028c..7fc22623fe 100644 --- a/teams/teams-ps/teams/Get-CsAutoAttendant.md +++ b/teams/teams-ps/teams/Get-CsAutoAttendant.md @@ -31,7 +31,7 @@ The Get-CsAutoAttendant cmdlet returns information about the AAs in your organiz Get-CsAutoAttendant ``` -This example gets the first 100 AAs in the organization. +This example gets the first 100 auto attendants in the organization. ### Example 2 ```powershell From a41ec4436af241c0b24f001fc53cea4fef4678a1 Mon Sep 17 00:00:00 2001 From: Colin Longman Date: Thu, 8 May 2025 11:18:53 -0700 Subject: [PATCH 5/7] Update Get-CsCallQueue.md --- teams/teams-ps/teams/Get-CsCallQueue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teams/teams-ps/teams/Get-CsCallQueue.md b/teams/teams-ps/teams/Get-CsCallQueue.md index 22d74d6433..75d792f5c7 100644 --- a/teams/teams-ps/teams/Get-CsCallQueue.md +++ b/teams/teams-ps/teams/Get-CsCallQueue.md @@ -32,7 +32,7 @@ The Get-CsCallQueue cmdlet lets you retrieve information about the Call Queues i Get-CsCallQueue ``` -This example gets the first 100 Call Queues in the organization. +This example gets the first 100 call queues in the organization. ### -------------------------- Example 2 -------------------------- ``` From ccd18ba9aab69a15246472ddff720cd3384d2084 Mon Sep 17 00:00:00 2001 From: Colin Longman Date: Thu, 8 May 2025 11:19:48 -0700 Subject: [PATCH 6/7] Update Get-CsCallQueue.md --- teams/teams-ps/teams/Get-CsCallQueue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teams/teams-ps/teams/Get-CsCallQueue.md b/teams/teams-ps/teams/Get-CsCallQueue.md index 75d792f5c7..4d6ed18027 100644 --- a/teams/teams-ps/teams/Get-CsCallQueue.md +++ b/teams/teams-ps/teams/Get-CsCallQueue.md @@ -77,7 +77,7 @@ Accept wildcard characters: False ### -First The First parameter gets the first N Call Queues, up to a maximum of 100 at a time. -When not specified, the default behavior is to return the first 100 of queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. +When not specified, the default behavior is to return the first 100 call queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes. If a number greater than 100 is supplied, the request will fail. ```yaml From 0e73fb66062fea6fd9c103fdfed59ee385b0ae41 Mon Sep 17 00:00:00 2001 From: Colin Longman Date: Thu, 8 May 2025 11:20:57 -0700 Subject: [PATCH 7/7] Update Get-CsCallQueue.md --- teams/teams-ps/teams/Get-CsCallQueue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teams/teams-ps/teams/Get-CsCallQueue.md b/teams/teams-ps/teams/Get-CsCallQueue.md index 4d6ed18027..9ea06bec8e 100644 --- a/teams/teams-ps/teams/Get-CsCallQueue.md +++ b/teams/teams-ps/teams/Get-CsCallQueue.md @@ -94,7 +94,7 @@ Accept wildcard characters: False ``` ### -Skip -The Skip parameter skips the first N Call Queues. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. +The Skip parameter skips the first N call queues. It is intended to be used in conjunction with the `-First` parameter for pagination purposes. ```yaml Type: Int32