Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate
### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate1

## NOTES

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Microsoft.Graph.Applications
Module Guid: 1c619071-81dc-42e2-ab0f-0669e2dffd2f
Module Guid: f1ce971c-da15-4b4d-b3a3-3517dc2cf7b7
Download Help Link: https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.applications
Help Version: 1.0.0.0
Locale: en-US
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ Add new entity to applicationTemplates
### CreateExpanded (Default)
```
New-MgApplicationTemplate [-AdditionalProperties <Hashtable>] [-Categories <String[]>] [-Description <String>]
[-DisplayName <String>] [-HomePageUrl <String>] [-Id <String>] [-LogoUrl <String>] [-Publisher <String>]
[-DisplayName <String>] [-HomePageUrl <String>] [-Id <String>]
[-InformationalUrls <IMicrosoftGraphInformationalUrls>] [-LogoUrl <String>] [-Publisher <String>]
[-SupportedProvisioningTypes <String[]>] [-SupportedSingleSignOnModes <String[]>] [-Confirm] [-WhatIf]
[<CommonParameters>]
```

### Create
```
New-MgApplicationTemplate -BodyParameter <IMicrosoftGraphApplicationTemplate> [-Confirm] [-WhatIf]
New-MgApplicationTemplate -BodyParameter <IMicrosoftGraphApplicationTemplate1> [-Confirm] [-WhatIf]
[<CommonParameters>]
```

Expand Down Expand Up @@ -53,7 +54,7 @@ applicationTemplate
To construct, please use Get-Help -Online and see NOTES section for BODYPARAMETER properties and create a hash table.

```yaml
Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate
Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate1
Parameter Sets: Create
Aliases:

Expand Down Expand Up @@ -140,6 +141,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -InformationalUrls
informationalUrls
To construct, please use Get-Help -Online and see NOTES section for INFORMATIONALURLS properties and create a hash table.

```yaml
Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInformationalUrls
Parameter Sets: CreateExpanded
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -LogoUrl
The URL to get the logo for this application.

Expand Down Expand Up @@ -238,11 +255,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate
### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate1

## OUTPUTS

### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate
### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate1

## NOTES

Expand All @@ -253,17 +270,26 @@ COMPLEX PARAMETER PROPERTIES
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.


BODYPARAMETER <IMicrosoftGraphApplicationTemplate>: applicationTemplate
BODYPARAMETER <IMicrosoftGraphApplicationTemplate1>: applicationTemplate
- `[(Any) <Object>]`: This indicates any property can be added to this object.
- `[Id <String>]`: Read-only.
- `[Categories <String[]>]`: The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
- `[Description <String>]`: A description of the application.
- `[DisplayName <String>]`: The name of the application.
- `[HomePageUrl <String>]`: The home page URL of the application.
- `[InformationalUrls <IMicrosoftGraphInformationalUrls>]`: informationalUrls
- `[(Any) <Object>]`: This indicates any property can be added to this object.
- `[AppSignUpUrl <String>]`:
- `[SingleSignOnDocumentationUrl <String>]`:
- `[LogoUrl <String>]`: The URL to get the logo for this application.
- `[Publisher <String>]`: The name of the publisher for this application.
- `[SupportedProvisioningTypes <String[]>]`: The list of provisioning modes supported by this application. The only valid value is sync.
- `[SupportedSingleSignOnModes <String[]>]`: The list of single sign-on modes supported by this application. The supported values are oidc, password, saml, and notSupported.

INFORMATIONALURLS <IMicrosoftGraphInformationalUrls>: informationalUrls
- `[(Any) <Object>]`: This indicates any property can be added to this object.
- `[AppSignUpUrl <String>]`:
- `[SingleSignOnDocumentationUrl <String>]`:

## RELATED LINKS

Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,30 @@ Update entity in applicationTemplates
```
Update-MgApplicationTemplate -ApplicationTemplateId <String> [-AdditionalProperties <Hashtable>]
[-Categories <String[]>] [-Description <String>] [-DisplayName <String>] [-HomePageUrl <String>]
[-Id <String>] [-LogoUrl <String>] [-Publisher <String>] [-SupportedProvisioningTypes <String[]>]
[-SupportedSingleSignOnModes <String[]>] [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
[-Id <String>] [-InformationalUrls <IMicrosoftGraphInformationalUrls>] [-LogoUrl <String>]
[-Publisher <String>] [-SupportedProvisioningTypes <String[]>] [-SupportedSingleSignOnModes <String[]>]
[-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
```

### Update
```
Update-MgApplicationTemplate -ApplicationTemplateId <String>
-BodyParameter <IMicrosoftGraphApplicationTemplate> [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
-BodyParameter <IMicrosoftGraphApplicationTemplate1> [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
```

### UpdateViaIdentity
```
Update-MgApplicationTemplate -InputObject <IApplicationsIdentity>
-BodyParameter <IMicrosoftGraphApplicationTemplate> [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
-BodyParameter <IMicrosoftGraphApplicationTemplate1> [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
```

### UpdateViaIdentityExpanded
```
Update-MgApplicationTemplate -InputObject <IApplicationsIdentity> [-AdditionalProperties <Hashtable>]
[-Categories <String[]>] [-Description <String>] [-DisplayName <String>] [-HomePageUrl <String>]
[-Id <String>] [-LogoUrl <String>] [-Publisher <String>] [-SupportedProvisioningTypes <String[]>]
[-SupportedSingleSignOnModes <String[]>] [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
[-Id <String>] [-InformationalUrls <IMicrosoftGraphInformationalUrls>] [-LogoUrl <String>]
[-Publisher <String>] [-SupportedProvisioningTypes <String[]>] [-SupportedSingleSignOnModes <String[]>]
[-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -82,7 +84,7 @@ applicationTemplate
To construct, please use Get-Help -Online and see NOTES section for BODYPARAMETER properties and create a hash table.

```yaml
Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate
Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate1
Parameter Sets: Update, UpdateViaIdentity
Aliases:

Expand Down Expand Up @@ -169,6 +171,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -InformationalUrls
informationalUrls
To construct, please use Get-Help -Online and see NOTES section for INFORMATIONALURLS properties and create a hash table.

```yaml
Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInformationalUrls
Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -InputObject
Identity Parameter
To construct, please use Get-Help -Online and see NOTES section for INPUTOBJECT properties and create a hash table.
Expand Down Expand Up @@ -300,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

### Microsoft.Graph.PowerShell.Models.IApplicationsIdentity

### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate
### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApplicationTemplate1

## OUTPUTS

Expand All @@ -315,18 +333,27 @@ COMPLEX PARAMETER PROPERTIES
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.


BODYPARAMETER <IMicrosoftGraphApplicationTemplate>: applicationTemplate
BODYPARAMETER <IMicrosoftGraphApplicationTemplate1>: applicationTemplate
- `[(Any) <Object>]`: This indicates any property can be added to this object.
- `[Id <String>]`: Read-only.
- `[Categories <String[]>]`: The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
- `[Description <String>]`: A description of the application.
- `[DisplayName <String>]`: The name of the application.
- `[HomePageUrl <String>]`: The home page URL of the application.
- `[InformationalUrls <IMicrosoftGraphInformationalUrls>]`: informationalUrls
- `[(Any) <Object>]`: This indicates any property can be added to this object.
- `[AppSignUpUrl <String>]`:
- `[SingleSignOnDocumentationUrl <String>]`:
- `[LogoUrl <String>]`: The URL to get the logo for this application.
- `[Publisher <String>]`: The name of the publisher for this application.
- `[SupportedProvisioningTypes <String[]>]`: The list of provisioning modes supported by this application. The only valid value is sync.
- `[SupportedSingleSignOnModes <String[]>]`: The list of single sign-on modes supported by this application. The supported values are oidc, password, saml, and notSupported.

INFORMATIONALURLS <IMicrosoftGraphInformationalUrls>: informationalUrls
- `[(Any) <Object>]`: This indicates any property can be added to this object.
- `[AppSignUpUrl <String>]`:
- `[SingleSignOnDocumentationUrl <String>]`:

INPUTOBJECT <IApplicationsIdentity>: Identity Parameter
- `[AppRoleAssignmentId <String>]`: key: id of appRoleAssignment
- `[ApplicationId <String>]`: key: id of application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ To learn about other permissions for this resource, see the [permissions referen
To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`.
For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`.

### Example 4: Use -Search to get all the applications whose display name contains 'Test' including a count of the returned users
### Example 4: Use -Search to get all the applications whose display name contains 'Test' including a count of the returned applications
```powershell
Connect-MgGraph -Scopes 'Application.Read.All'
Get-MgApplication -ConsistencyLevel eventual -Count appCount -Search '"DisplayName:Test"'
Expand All @@ -120,7 +120,7 @@ To learn about other permissions for this resource, see the [permissions referen
To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`.
For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`.

### Example 5: Use -Filter to get all the applications with a display name that starts with 'New' including a count of the returned users, with the results ordered by display name
### Example 5: Use -Filter to get all the applications with a display name that starts with 'New' including a count of the returned applications, with the results ordered by display name
```powershell
Connect-MgGraph -Scopes 'Application.Read.All'
Get-MgApplication -ConsistencyLevel eventual -Count appCount -Filter "startsWith(DisplayName, 'New')" -OrderBy DisplayName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Microsoft.Graph.Applications
Module Guid: 1c619071-81dc-42e2-ab0f-0669e2dffd2f
Module Guid: f1ce971c-da15-4b4d-b3a3-3517dc2cf7b7
Download Help Link: https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.applications
Help Version: 1.0.0.0
Locale: en-US
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Microsoft.Graph.Compliance
Module Guid: 9cbff46d-fee8-41d0-b9ba-9c5e3d592758
Module Guid: 2499bf86-13bf-4280-9a38-edaf6953c428
Download Help Link: https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.compliance
Help Version: 1.0.0.0
Locale: en-US
Expand Down
Loading