Citrix Daas SDK

Remove-MonitorNotificationPolicy

Removes persisted policy from the database by marking them as deleted

Syntax

Remove-MonitorNotificationPolicy
      [-InputObject <MonitorNotificationPolicy[]>]
      [-LoggingId <Guid>]
      [<CitrixCommonParameters>]
      [<CommonParameters>]
<!--NeedCopy-->
Remove-MonitorNotificationPolicy
      [-Uid <Int64[]>]
      [-LoggingId <Guid>]
      [<CitrixCommonParameters>]
      [<CommonParameters>]
<!--NeedCopy-->

Description

Removes the policy object from database by marking them as deleted and disable all the condtions associated with that

Examples

EXAMPLE 1

Removes the policy with id 1

Remove-MonitorNotificationPolicy -Id 1
<!--NeedCopy-->

EXAMPLE 2

Removes the policy with id matching the policy object specified

Remove-MonitorNotificationPolicy -InputObject $policy
<!--NeedCopy-->

Parameters

-InputObject

Removes all of the instances with the id matching in the specified policy objects

Type: MonitorNotificationPolicy[]
Position: Named
Default value: None
Required: False
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Uid

Removes all of the instances with the specified ids. If any of the ids are invalid, an exception is thrown.

Type: Int64[]
Position: Named
Default value: None
Required: False
Accept pipeline input: False
Accept wildcard characters: False

-LoggingId

Specifies the identifier of the high-level operation this cmdlet call forms a part of. Citrix Studio and Director typically create high-level operations. PowerShell scripts can also wrap a series of cmdlet calls in a high-level operation by way of the Start-LogHighLevelOperation and Stop-LogHighLevelOperation cmdlets.

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

CitrixCommonParameters

This cmdlet supports the common Citrix parameters: -AdminAddress, -AdminClientIP, -BearerToken, -TraceParent, -TraceState and -VirtualSiteId. For more information, see about_CitrixCommonParameters.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

None

You can’t pipe objects to this cmdlet.

Outputs

Return success if all operations are succeeded

Return success if all operations are succeeded. An exception is thrown otherwise

Remove-MonitorNotificationPolicy