Start-IpsVsphereConvertToUefiJob.ps1
<# .SYNOPSIS Starts an Image Portability Service job to convert a VHD(X) image from MBR/BIOS to EFI/GPT on Vsphere. .DESCRIPTION Starts an Image Portability Service job to convert a VHD(X) image on a SMB fileshare from MBR/BIOS to EFI/GPT on Vsphere. .PARAMETER CustomerId Specifies the customer id of the Citrix customer running this command. .PARAMETER SecureClientId Specifies the client id of the Citrix customer's API client. .PARAMETER SecureSecret Specifies the client secret of the Citrix customer's API client. .PARAMETER SmbLocation Specifies the SMB share folder containing the disk file to be converted. .PARAMETER SmbDiskName Specifies the file name of the disk file on the SMB server that will be converted. .PARAMETER SmbDiskFormat Specifies the file format of the disk file that will be converted. Possible values are VhdDiskFormat and VhdxDiskFormat. The default value is VhdxDiskFormat. .PARAMETER SmbOutputDiskName Specifies the file name of the disk file on the SMB server that will created and receive the output of the conversion. This new disk will be a differential disk parented by the input disk. .PARAMETER SmbCwId Specifies the credential wallet id for the credentials used to access the SMB server. .PARAMETER ResourceLocationId Specifies the UUID of the resource location of the Vsphere server. .PARAMETER VsphereCwSecretId Specifies the credential wallet id for the credentials used to access the Vsphere server. .PARAMETER VsphereHost Specifies the host name or IP address of the Vsphere server. .PARAMETER VspherePort Specifies the network port number of the Vsphere server. .PARAMETER VsphereSslCaCertificateFilePath Specifies the path to the file containing the Vsphere SSL certificate. .PARAMETER VsphereSslCaCertificate Specifies the SSL root CA certificate to use in verifying the vCenter host certificate in vSphere API calls. This is only necessary when the VCenter host certificate isn't signed by a recognized authority. This may be the case for example when it was issued by a VMware Certificate Authority (VMCA). The certificate value must be in PEM format as a single-line string with newlines escaped. .PARAMETER VsphereSslNoCheckHostname If specified, do not check the SSL certificate host name (default $false). .PARAMETER VsphereDataCenter Specifies the datacenter where all resources for the job reside. .PARAMETER VsphereDataStore Specified the datastore to use for all storage requirements for the compositing engine VM. .PARAMETER VsphereResourcePool Specifies the resource pool to use for the compositing engine VM compute resources. If unspecified and a cluster or host system is supplied the root resource pool for the cluster or host system will be used. If unspecified and no cluster or host system is supplied the first resource pool named 'Resources' found in the datacenter will be used. .PARAMETER VsphereNetwork Specifies the name of the network on the Vsphere server to use for the export. .PARAMETER VsphereHostSystem Specifies the host system to use for the compositing engine VM compute resources. One of 'cluster' or 'hostSystem' should be specified. .PARAMETER VsphereCluster Specifies the cluster to use for the compositing engine VM compute resources. One of 'cluster' or 'hostSystem' should be specified. .PARAMETER VsphereSslFingerprint Specifies the fingerprint of the Vsphere SSL certificate. .PARAMETER Timeout Specifies an optional time limit for the operation. If the operation does not complete in less than this time it will fail with a timeout error. The default value is 7200. .PARAMETER Prefix Specifies an optional prefix which will be prepended to the name of assets created by the operation. The default value is 'ce'. .PARAMETER DryRun If specified, a test run is performed and any problems with the parameters specified are reported. No actual changes are made. .PARAMETER Deployment Specifies the service address to send the job request to. It defaults to api.layering.cloud.com. This can be used if necessary to send the request to a geo specific deployment such as api.eu.layering.cloud.com. .PARAMETER LogFileDir Specifies the path to the file to log to. The local directory is the default. .PARAMETER LogFileName Specifies the name of the file to log to. .PARAMETER OverwriteLog If specified the log file is overwritten otherwise it is appended to. .PARAMETER Force If specified then any existing output file is overwritten otherwise the operation will fail if the file specified to output to exists. .INPUTS None. .OUTPUTS PSCustomObject. A job description which can be consumed by the Wait-IpsJob cmdlet. .EXAMPLE PS> $ConvertParams = @{ CustomerId = 'a7f4wb1example' SecureClientId = '7fed2a1e-1495-46b7-8fd3-5644764af395' SecureSecret = '9T.3Q~MGlnB6NNgpNUUWrcquVzODrdGK~eXampLe' SmbLocation = "smb://example.com/share/folder" SmbDiskName = 'win10-image' SmbDiskFormat = 'VhdDiskFormat' SmbCwId = 'smbserver-creds' SmbOutputDiskName = 'win10-image-efi' ResourceLocationId = '47251663-6710-4f76-854a-2385e3fe002d' VsphereCwSecretId = 'vsphere-creds' VsphereHost = 'hostname.example.com' VsphereSslFingerprint = 'db767676e22cefdf4112fc9e6ede9fc879627273' VsphereDataCenter = 'datacenter1' VsphereDataStore = 'Storage1' VsphereCluster = 'Cluster1' VsphereNetwork = 'VM Network' Prefix = 'acme' DryRun = $False Timeout = 7200 LogFileName = 'ConvertOnVsphere.log' } PS> Start-IpsVsphereConvertToUefiJob @ConvertParams -Force -OverwriteLog -Verbose | Wait-IpsJob #> Function Start-IpsVsphereConvertToUefiJob { [CmdletBinding(DefaultParameterSetName = 'cmd')] Param( [Parameter(Mandatory = $true)] [string]$CustomerId, [Parameter(Mandatory = $true, ParameterSetName = 'obsoletecmd')] [Obsolete("Replaced by SmbLocation.")] [string]$SmbHost, [Parameter(Mandatory = $false, ParameterSetName = 'obsoletecmd')] [Obsolete("Replaced by SmbLocation.")] [string]$SmbShare, [Parameter(Mandatory = $false, ParameterSetName = 'obsoletecmd')] [Obsolete("Replaced by SmbLocation.")] [string]$SmbPath, [Parameter(Mandatory = $true, ParameterSetName = 'cmd')] [Uri]$SmbLocation, [Parameter(Mandatory = $true)] [string]$SmbDiskName, [Parameter(Mandatory = $true)] [string]$SmbOutputDiskName, [Parameter()] [string]$SmbDiskFormat = "VhdDiskFormat", [Parameter(Mandatory = $true)] [string]$SmbCwId, [Parameter()] [string]$Deployment, [Parameter(Mandatory = $true)] [string]$ResourceLocationId, [Parameter(Mandatory = $true)] [string]$VsphereCwSecretId, [Parameter(Mandatory = $true)] [string]$VsphereHost, [Parameter(Mandatory = $false, ParameterSetName = 'cmd')] [int]$VspherePort = 443, [Parameter()] [string]$VsphereSslCaCertificateFilePath, [Parameter()] [string]$VsphereSslCaCertificate, [Parameter()] [Alias("VCenterSslFingerprint")] [string]$VsphereSslFingerprint, [Parameter()] [bool]$VsphereSslNoCheckHostname, [Parameter(Mandatory = $true)] [string]$VsphereDataCenter, [Parameter(Mandatory = $true)] [string]$VsphereDataStore, [Parameter()] [string]$VsphereResourcePool, [Parameter(Mandatory = $true)] [string]$VsphereNetwork, [Parameter()] [string]$VsphereHostSystem, [Parameter()] [string]$VsphereCluster, [Parameter()] [string]$AssetsId, [Parameter()] [HashTable]$Tags = @{}, [Parameter()] [int]$Timeout = 7200, [Parameter()] [string]$Prefix, [Parameter()] [HashTable]$JobDebug = @{}, [Parameter()] [bool]$DryRun = $false, [Parameter()] [string]$SecureClientId, [Parameter()] [string]$SecureSecret, [Parameter()] [string]$LogFileDir, [Parameter()] [string]$LogFileName = 'ConvertOnVsphere.log', [Parameter()] [switch]$OverwriteLog, [Parameter()] [switch]$Force ) Begin { Add-PSSnapin Citrix.* } Process { # Initialize Logger # Set parameter 'Verbose' by internal parameter 'VerbosePreference', since the option -Verbose is occupied by powershell cmdlet $Verbose = $VerbosePreference -eq 'Continue' LogInit $MyInvocation $LogFileDir $LogFileName $OverwriteLog $Verbose VersionCheck $Deployment $CustomerId try { # Authenticate to Citrix Cloud $parameters = AuthToCitrixCloud $CustomerId $SecureClientId $SecureSecret if ([string]::IsNullOrWhiteSpace($SecureClientId) -Or [string]::IsNullOrWhiteSpace($SecureSecret)) { $SecureClientId = $parameters.ApiKey $SecureSecret = $parameters.SecretKey } } catch { LogFatal "Failed to authenticate to Citrix Cloud" } # Convert try { LogIt "Starting convert workflow" # # Run the convert workflow # Write-Host "***** Call Method: ConvertImageJob overwrite: $($Force.IsPresent) *****" $parameters = GetVariablesAsHash $platformData = Format-VSphereData -ConfigData $Null -Parameters $parameters -Verbose $Verbose $convertData = Format-ConvertData -Platform "vSphere" -Parameters $parameters -Verbose $Verbose # Convert the object to JSON to use in the POST body (Note: Default depth is 2 when serializing) $json = ($convertData + $platformData) | ConvertTo-Json -Depth 10 LogIt "Convert POST body $json" $Verbose $query = @{ "async" = $true "dryRun" = $DryRun } # Send the POST try { $response = Invoke-CCRestMethod 'Post' $Deployment "images/`$convertToUefi" $CustomerId $SecureClientId $SecureSecret $query $json $JobId = $response.id LogIt "Image EFI convert started with id $JobId" } catch { $JobId = "Job failed to start" throw "Failed to start EFI convert: $_" } } catch { LogFatalException -Message "Workflow failed" -Exception $_.Exception } finally { $output = [PSCustomObject]@{ CustomerId = $CustomerId Deployment = $Deployment JobId = $JobId LogFileDir = $LogFileDir LogFileName = $LogFileName SmbLocation = $SmbLocation SmbDiskName = $SmbDiskName SmbDiskFormat = $SmbDiskFormat SmbCwId = $SmbCwId } Write-Output $output # Clear credentials at end of pipeline if ($PSCmdlet.MyInvocation.PipelinePosition -eq $PSCmdlet.MyInvocation.PipelineLength) { Clear-XDCredentials } } } } |