Documentation
This commit is contained in:
@@ -1,11 +1,27 @@
|
||||
function Assign-Tag {
|
||||
<#
|
||||
.SYNOPSIS
|
||||
|
||||
Assign tag to address.
|
||||
|
||||
.PARAMETER Tag
|
||||
Tag object to assign.
|
||||
#>
|
||||
[CmdletBinding()]
|
||||
param (
|
||||
[parameter(Mandatory=$true,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true,Position=0)]
|
||||
[parameter(
|
||||
Mandatory=$true,
|
||||
ValueFromPipeline=$true,
|
||||
ValueFromPipelineByPropertyName=$true,
|
||||
Position=0
|
||||
)]
|
||||
[ValidateNotNullOrEmpty()]
|
||||
[PS.IPAM.Address]
|
||||
$AddressObject,
|
||||
[parameter(Mandatory=$true,Position=1)]
|
||||
[parameter(
|
||||
Mandatory=$true,
|
||||
Position=1
|
||||
)]
|
||||
[ValidateNotNullOrEmpty()]
|
||||
[PS.IPAM.Tag]
|
||||
$Tag
|
||||
|
||||
Reference in New Issue
Block a user