Public/Request-IBAvailableIP.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 |
<# Copyright 2015 Brandon Olin Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #> function Request-IBAvailableIP { [cmdletbinding(SupportsShouldProcess = $true)] param( [Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] [string]$GridServer = (Read-Host -Prompt 'InfoBlox Grid server'), [Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] [pscredential]$Credential = (Get-Credential -Message 'InfoBlox credential'), [Parameter(Mandatory)] [string]$Network = (Read-Host -Prompt 'Network'), [Parameter(Mandatory)] [string]$Name = (Read-Host -Prompt 'Hostname'), [string]$Comment = [string]::Empty, [switch]$ConfigureForDNS ) begin { $apiVersion = $script:apiVersion } process { Write-Debug -Message "Searching for host record [$Name]" $match = Get-IBResourceRecord -Type Host -SearchText $Name -GridServer $GridServer -Credential $Credential if ($match) { if ($match.Name -eq $Name) { $exist = $true } else { $exist = $false } } else { $exist = $false } if ($exist -eq $false) { Write-Debug -Message "Host [$Name] not found. Continuing..." $net = Get-IBNetwork -GridServer $GridServer -Credential $Credential -Network $Network if ($null -ne $net) { Write-Verbose -Message "Found network [$($Net._ref)]" Write-Verbose -Message 'Searching for next available IP:' $availableIP = Get-IBNextAvailableIP -GridServer $GridServer -Credential $Credential -NetworkRef $net._ref -Quantity 1 if ($null -ne $availableIP) { $params = @{ GridServer = $GridServer Credential = $Credential IPv4Address = $availableIP HostName = $Name Comment = $Comment } if ($PSBoundParameters.ContainsKey('ConfigureForDNS')) { $params.CreateInDNS = $true } if ($PSCmdlet.ShouldProcess($Network, 'Request InfoBlox available IP')) { $hostRef = Add-IBResourceRecordHost @params if ($null -ne $hostRef) { $uri = "https://$GridServer/wapi/v$apiVersion/$hostRef" $result = Invoke-RestMethod -Uri $uri -Credential $Credential return $result.ipv4addrs } else { Write-Error -Message "Failed to allocate host record for IP [$availableIP]" } } } else { Write-Error -Message "There are no available IPs on network [$Network]" } } else { Write-Error -Message "Could not find network [$Network]" } } else { Write-Error -Message "There is already a host record with name [$Name]" } } end {} } |