Getting Started with Vcf Sddc Manager cmdlets
Provides cmdlets for managing VCF SDDC Manager servers.
Step 1: Connect to Environment
# Connects to a VMware SDDC Manager server with a MySDDCManager.com address by passing a valid user name and password.
PS C:\> Connect-VcfSddcManagerServer -Server MySDDCManager.com -User "User" -Password "Password"
You can also connect to remote environment by running one of the alternative options to connect below:
Option 1 :
# Connects to a VMware SDDC Manager server with a MySDDCManager.com address by passing a credential object.
PS C:\> $myCredential = Get-Credential PS C:\> Connect-VcfSddcManagerServer -Server MySDDCManager.com -Credential $myCredential
Step 2: Retrieve a object by running a Get command
# Retrieve all Cluster objects.
PS C:\> Get-SddcCluster