Skip to content

New-vRAOnboardingDeployment

SYNOPSIS

Create a vRA Onboarding Deployment

SYNTAX

Standard (Default)

New-vRAOnboardingDeployment -Name <String> [-OnboardingPlanLink <String>] [-WhatIf] [-Confirm]
 [<CommonParameters>]

JSON

New-vRAOnboardingDeployment -JSON <String> [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

Create a vRA Onboarding Deployment

EXAMPLES

EXAMPLE 1

New-vRAOnboardingDeployment -Name "TestOnboardingDeployment" -OnboardingPlanLink "/relocation/onboarding/plan/282dd58e8dcfc7559a0d225680a7"

EXAMPLE 2

$JSON = @"

{ "name": "TestOnboardingDeployment", "planLink": "/relocation/onboarding/plan/282dd58e8dcfc7559a0d225680a7" } "@

$JSON | New-vRAOnboardingDeployment

PARAMETERS

-Name

The name of the Onboarding Deployment

Type: String
Parameter Sets: Standard
Aliases:

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

Link for the Onboarding Plan to associate with

Type: String
Parameter Sets: Standard
Aliases:

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

-JSON

A JSON string with the body payload

Type: String
Parameter Sets: JSON
Aliases:

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

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

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

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

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

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

System.String

OUTPUTS

System.Management.Automation.PSObject

NOTES