Skip to content

Commit cc40d5c

Browse files
authored
Merge pull request #995 from KelvinTegelaar/dev
[pull] dev from KelvinTegelaar:dev
2 parents 315584c + 3ca5887 commit cc40d5c

161 files changed

Lines changed: 348 additions & 2 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListAdminPortalLicenses.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListAdminPortalLicenses {
44
Entrypoint
55
.ROLE
66
CIPP.Core.Read
7+
.DESCRIPTION
8+
Retrieves license information from the Microsoft 365 Admin Portal for a tenant, including low-friction trial allotments.
79
#>
810
[CmdletBinding()]
911
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListApiTest.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListApiTest {
44
Entrypoint,AnyTenant
55
.ROLE
66
CIPP.Core.Read
7+
.DESCRIPTION
8+
Returns debug information about the current API request, trigger metadata, and environment variables. Used for CIPP platform diagnostics.
79
#>
810
[CmdletBinding()]
911
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListCustomDataMappings.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListCustomDataMappings {
44
Entrypoint
55
.ROLE
66
CIPP.Core.Read
7+
.DESCRIPTION
8+
Lists custom data mappings that define how external data sources map to CIPP directory objects, filterable by source type, directory object, and tenant.
79
#>
810
[CmdletBinding()]
911
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListDiagnosticsPresets.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListDiagnosticsPresets {
44
Entrypoint
55
.ROLE
66
CIPP.SuperAdmin.Read
7+
.DESCRIPTION
8+
Lists saved diagnostics presets used for troubleshooting CIPP configuration. Requires SuperAdmin access.
79
#>
810
[CmdletBinding()]
911
param (

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListDirectoryObjects.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListDirectoryObjects {
44
Entrypoint,AnyTenant
55
.ROLE
66
CIPP.Core.Read
7+
.DESCRIPTION
8+
Resolves Entra ID directory objects by their IDs using the directoryObjects/getByIds batch endpoint. Accepts an array of object IDs in the request body.
79
#>
810
[CmdletBinding()]
911
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListFeatureFlags.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListFeatureFlags {
44
Entrypoint
55
.ROLE
66
CIPP.Core.Read
7+
.DESCRIPTION
8+
Lists CIPP feature flags and their enabled/disabled state, including environment-driven overrides.
79
#>
810
[CmdletBinding()]
911
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListGraphBulkRequest.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListGraphBulkRequest {
44
Entrypoint
55
.ROLE
66
CIPP.Core.Read
7+
.DESCRIPTION
8+
Executes multiple Microsoft Graph API requests in a single batch call for a given tenant. Accepts an array of request objects in the body.
79
#>
810
[CmdletBinding()]
911
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListGraphRequest.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ function Invoke-ListGraphRequest {
55
Entrypoint
66
.ROLE
77
CIPP.Core.Read
8+
.DESCRIPTION
9+
Proxies an arbitrary Microsoft Graph API GET request for a tenant. Supports custom endpoints, filters, pagination, and field selection via query parameters.
810
#>
911
[CmdletBinding()]
1012
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/Invoke-ListSnoozedAlerts.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function Invoke-ListSnoozedAlerts {
44
Entrypoint,AnyTenant
55
.ROLE
66
CIPP.Alert.Read
7+
.DESCRIPTION
8+
Lists alerts that have been snoozed (temporarily suppressed), filterable by cmdlet name. Returns snooze duration and scope details.
79
#>
810
[CmdletBinding()]
911
param($Request, $TriggerMetadata)

Modules/CIPPHTTP/Public/Entrypoints/HTTP Functions/CIPP/Core/invoke-ListEmptyResults.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ function invoke-ListEmptyResults {
88
Entrypoint,AnyTenant
99
.ROLE
1010
CIPP.Core.Read
11+
.DESCRIPTION
12+
Returns an empty results array. Used as a placeholder endpoint.
1113
#>
1214
[CmdletBinding()]
1315
param($Request, $TriggerMetadata)

0 commit comments

Comments
 (0)