Skip to main content

Managedclientrequest

Properties

NameTypeDescriptionNotes
ClusterIdStringCluster ID that the ManagedClient is linked to[required]
DescriptionStringdescription for the ManagedClient to create[optional]
NameStringname for the ManagedClient to create[optional]
TypeStringType of the ManagedClient (VA, CCG) to create[optional]

Examples

  • Prepare the resource
$Managedclientrequest = Initialize-Managedclientrequest  -ClusterId aClusterId `
-Description A short description of the ManagedClient `
-Name aName `
-Type VA
  • Convert the resource to JSON
$Managedclientrequest | ConvertTo-JSON

[Back to top]