Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Commit

Permalink
Release 2.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-it committed Oct 1, 2023
1 parent 17c7faf commit 072604a
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 6 deletions.
10 changes: 10 additions & 0 deletions data/pnpPsModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -1560,6 +1560,11 @@
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Get-PnPTenantId.md",
"docs": "https://pnp.github.io/powershell/cmdlets/Get-PnPTenantId.html"
},
{
"name": "Get-PnPTenantInfo",
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Get-PnPTenantInfo.md",
"docs": "https://pnp.github.io/powershell/cmdlets/Get-PnPTenantInfo.html"
},
{
"name": "Get-PnPTenantInstance",
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Get-PnPTenantInstance.md",
Expand Down Expand Up @@ -3035,6 +3040,11 @@
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Set-PnPSearchConfiguration.md",
"docs": "https://pnp.github.io/powershell/cmdlets/Set-PnPSearchConfiguration.html"
},
{
"name": "Set-PnPSearchExternalItem",
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Set-PnPSearchExternalItem.md",
"docs": "https://pnp.github.io/powershell/cmdlets/Set-PnPSearchExternalItem.html"
},
{
"name": "Set-PnPSearchSettings",
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Set-PnPSearchSettings.md",
Expand Down
2 changes: 1 addition & 1 deletion data/samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -4434,4 +4434,4 @@
]
}
]
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pnp-powershell-extension",
"displayName": "PnP PowerShell extension",
"description": "This extension provides functionalities that may be helpful when creating scripts using PnP PowerShell like docs, commands list, sample gallery and many more.",
"version": "2.9.4",
"version": "2.10.1",
"publisher": "adamwojcikit",
"author": {
"name": "Adam"
Expand Down
22 changes: 20 additions & 2 deletions snippets/pnpPowerShell.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -3108,6 +3108,15 @@
"Get-PnPTenantId -TenantUrl $1"
]
},
"Get-PnPTenantInfo": {
"description": "Gets the tenantId, federation brand name, company name and default domain name regarding a specific tenant. If no Domain name or Tenant id is specified, it returns the Tenant Info of the currently connected to tenant.",
"prefix": [
"Get-PnPTenantInfo"
],
"body": [
"Get-PnPTenantInfo "
]
},
"Get-PnPTenantInstance": {
"description": "Allows to retrieve list of all instances of the tenant.",
"prefix": [
Expand Down Expand Up @@ -4107,12 +4116,12 @@
]
},
"Read-PnPTenantTemplate": {
"description": "Allows to load a PnP tenant template from the file system to memory and return its instance object.",
"description": "Allows to load a PnP tenant template from the file system, from a stream or from a string to memory and return its instance object.",
"prefix": [
"Read-PnPTenantTemplate"
],
"body": [
"Read-PnPTenantTemplate "
"Read-PnPTenantTemplate -Path $1"
]
},
"Receive-PnPCopyMoveJobStatus": {
Expand Down Expand Up @@ -5966,6 +5975,15 @@
"Set-PnPSearchConfiguration -Configuration $1"
]
},
"Set-PnPSearchExternalItem": {
"description": "This cmdlet can be used to add or update an external item in Microsoft Search on custom connectors. The cmdlet will create a new external item if the item does not exist yet. If the item already exists, it will be updated.",
"prefix": [
"Set-PnPSearchExternalItem"
],
"body": [
"Set-PnPSearchExternalItem -ItemId $1 -ConnectionId $2 -Properties $3"
]
},
"Set-PnPSearchSettings": {
"description": "Allows to modify search settings for a site.",
"prefix": [
Expand Down

0 comments on commit 072604a

Please sign in to comment.