-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #531 from pnp/dev
Release 1.5
- Loading branch information
Showing
53 changed files
with
2,053 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ online version: https://pnp.github.io/powershell/cmdlets/Get-PnPSubscribeSharePo | |
|
||
* SharePoint: Access to the SharePoint Tenant Administration site | ||
|
||
You must connect to the tenant admin website (https://:<tenant>-admin.sharepoint.com) with Connect-PnPOnline in order to use this cmdlet. | ||
You must connect to the tenant admin website (https://tenant-admin.sharepoint.com) with Connect-PnPOnline in order to use this cmdlet. | ||
|
||
Retrieves if the SharePoint News Digest mails are enabled or disabled for a particular user. | ||
|
||
|
@@ -42,7 +42,7 @@ Returns if this user will receive the SharePoint News digest mails | |
## PARAMETERS | ||
|
||
### -Account | ||
The account of the user, formatted either as a login name, or as a claims identity, e.g. i:0#.f|membership|[email protected] | ||
The account of the user, formatted either as a login name, e.g. [email protected], or as a claims identity, e.g. i:0#.f|membership|[email protected] | ||
|
||
```yaml | ||
Type: String | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
--- | ||
Module Name: PnP.PowerShell | ||
title: Get-PnPSyntexModel | ||
schema: 2.0.0 | ||
applicable: SharePoint Online | ||
external help file: PnP.PowerShell.dll-Help.xml | ||
online version: https://pnp.github.io/powershell/cmdlets/Get-PnPPage.html | ||
--- | ||
|
||
# Get-PnPSyntexModel | ||
|
||
## SYNOPSIS | ||
Returns SharePoint Syntex models from a SharePoint Syntex Content Center. | ||
|
||
This cmdlet only works when you've connected to a SharePoint Syntex Content Center site. | ||
|
||
## SYNTAX | ||
|
||
```powershell | ||
Get-PnPSyntexModel [-Identity] <SyntexModelPipeBind> [-Connection <PnPConnection>] | ||
[<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
This command allows the retrieval of a SharePoint Syntex content understanding models defined in the connected SharePoint Syntex Content Center site. | ||
|
||
## EXAMPLES | ||
|
||
### EXAMPLE 1 | ||
```powershell | ||
Get-PnPSyntexModel | ||
``` | ||
|
||
Lists all the content understanding models in the connected SharePoint Syntex Content Center site. | ||
|
||
### EXAMPLE 2 | ||
```powershell | ||
Get-PnPSyntexModel -Identity 1 | ||
``` | ||
|
||
Gets the content understanding model with id 1. | ||
|
||
### EXAMPLE 3 | ||
```powershell | ||
Get-PnPSyntexModel -Identity "Invoice model" | ||
``` | ||
|
||
Gets the content understanding model named "Invoice model". | ||
|
||
## PARAMETERS | ||
|
||
### -Connection | ||
Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection. | ||
|
||
```yaml | ||
Type: PnPConnection | ||
Parameter Sets: (All) | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -Identity | ||
The name or id of the SharePoint Syntex model. | ||
```yaml | ||
Type: SyntexModelPipeBind | ||
Parameter Sets: (All) | ||
|
||
Required: True | ||
Position: 0 | ||
Default value: None | ||
Accept pipeline input: True (ByValue) | ||
Accept wildcard characters: False | ||
``` | ||
## RELATED LINKS | ||
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
--- | ||
Module Name: PnP.PowerShell | ||
title: Get-PnPSyntexModelPublication | ||
schema: 2.0.0 | ||
applicable: SharePoint Online | ||
external help file: PnP.PowerShell.dll-Help.xml | ||
online version: https://pnp.github.io/powershell/cmdlets/Get-PnPPage.html | ||
--- | ||
|
||
# Get-PnPSyntexModelPublication | ||
|
||
## SYNOPSIS | ||
Returns the libraries to which a SharePoint Syntex model was published. | ||
|
||
This cmdlet only works when you've connected to a SharePoint Syntex Content Center site. | ||
|
||
## SYNTAX | ||
|
||
```powershell | ||
Get-PnPSyntexModelPublications -Model <SyntexModelPipeBind> [-Connection <PnPConnection>] | ||
[<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
This command returns the libraries to which a SharePoint Syntex content understanding model defined in the connected SharePoint Syntex Content Center site was published. | ||
|
||
## EXAMPLES | ||
|
||
### EXAMPLE 1 | ||
```powershell | ||
Get-PnPSyntexModelPublication -Identity "Invoice model" | ||
``` | ||
|
||
Gets the libraries to which the content understanding model named "Invoice model" was published. | ||
|
||
## PARAMETERS | ||
|
||
### -Connection | ||
Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection. | ||
|
||
```yaml | ||
Type: PnPConnection | ||
Parameter Sets: (All) | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -Model | ||
The name or id of the SharePoint Syntex model. | ||
```yaml | ||
Type: SyntexModelPipeBind | ||
Parameter Sets: (All) | ||
|
||
Required: True | ||
Position: 0 | ||
Default value: None | ||
Accept pipeline input: True (ByValue) | ||
Accept wildcard characters: False | ||
``` | ||
## RELATED LINKS | ||
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.