-
Notifications
You must be signed in to change notification settings - Fork 107
SPOAppPrincipalMgmtServiceAppProxy
dscbot edited this page Mar 17, 2023
·
6 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Name | Key | String | The name of the SPO application principal management service application proxy | |
Ensure | Write | String | Present ensures service app proxy exists, absent ensures it is removed |
Present , Absent
|
OnlineTenantUri | Required | String | URL to SharePoint Online Tenant |
Type: Distributed Requires CredSSP: No
This resource is used to create a SharePoint Online management Application Proxy. This is used by for example hybrid search. It will identify an instance of the SPO management apllication proxy through the display name. Currently the resource will provision the app proxy if it does not yet exist, and will recreate the proxy if the Online Tenant URI associated to the proxy does not match the configuration.
The default value for the Ensure parameter is Present. When not specifying this parameter, the service application is provisioned.
This example shows how to create a new SharePoint Online management Application Proxy in the farm connecting to the contoso tenant.
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[PSCredential]
$SetupAccount
)
Import-DscResource -ModuleName SharePointDsc
node localhost
{
SPOAppPrincipalMgmtServiceAppProxy SPOAddInManagementProxy
{
Name = "SPO Add-in Management Proxy"
OnlineTenantUri = "https://contoso.sharepoint.com"
PsDscRunAsCredential = $SetupAccount
}
}
}
- Home
- Getting Started
- Pre-requisites
- Installing the module
- Exporting SharePoint Configuration
- Creating Configuration Files
- Pre-created Examples
- Creating an Azure development environment
- Understanding Resources & Syntax
- Remote PowerShell Authentication
- Contributing to SharePointDsc
- Other useful modules for SharePoint DSC configurations