functions/Add-Phone.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
function Add-Phone { <# .SYNOPSIS Add a Phone to CUCM Environment .DESCRIPTION Add a Phone to CUCM Environment .PARAMETER MacAddress MacAddress for the phone .PARAMETER Product Product .PARAMETER protocolSide Protocol Side (User?) .PARAMETER devicePoolName Name of DevicePool to put phone in. .PARAMETER commonPhoneConfigName Parameter description .PARAMETER phoneTemplateName Parameter description .PARAMETER Protocol Parameter description .PARAMETER AXLVersion Version of AXL .PARAMETER server Server to query .PARAMETER Credential Credential to use for API access .PARAMETER EnableException Replaces user friendly yellow warnings with bloody red exceptions of doom! Use this if you want the function to throw terminating errors you want to catch. .PARAMETER OutputXml Enable the output of the XML instead of the processing of the entity. .PARAMETER WhatIf What If? .PARAMETER Confirm Confirm... .EXAMPLE An example with more here... .NOTES General notes #> [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Low')] param ( [Parameter(Mandatory = $true)] [string] $MacAddress, [Parameter(Mandatory = $true)] [string] $Product, [Parameter(Mandatory = $true)] [string] $protocolSide, [Parameter(Mandatory = $true)] [string] $devicePoolName, [Parameter(Mandatory = $true)] [string] $commonPhoneConfigName, [Parameter(Mandatory = $true)] [string] $phoneTemplateName, [Parameter(Mandatory = $true)] [string] $Protocol, [string] $AXLVersion = '11.5', [Parameter(Mandatory = $true)] [string] $server, [Parameter(Mandatory = $true)] [pscredential] $Credential, [switch] $EnableException, [switch] $OutputXml ) $class = 'Phone' $locationName = 'Hub_None' $useTrustedRelayPoint = 'Default' $primaryPhoneName = '' $deviceMobilityMode = 'Default' $certificateOperation = 'No Pending Operation' $packetCaptureMode = 'None' $builtInBridgeStatus = 'Default' $CucmAxlSplat = @{ entity = 'addPhone' # parameters = @{ # phone = $phonexml # } parameters = @{ phone = @{ name = $MacAddress product = $Product class = $class protocol = $Protocol protocolSide = $protocolSide devicePoolName = $devicePoolName commonPhoneConfigName = $commonPhoneConfigName locationName = $locationName useTrustedRelayPoint = $useTrustedRelayPoint phoneTemplateName = $phoneTemplateName primaryPhoneName = $primaryPhoneName deviceMobilityMode = $deviceMobilityMode certificateOperation = $certificateOperation packetCaptureMode = $packetCaptureMode builtInBridgeStatus = $builtInBridgeStatus } } server = $server AXLVersion = $AXLVersion Credential = $Credential EnableException = $EnableException OutputXml = $OutputXml } Invoke-CucmAxl @CucmAxlSplat } |