Skip to main content

ManagedClient

Properties

NameTypeDescriptionNotes
IdStringManagedClient ID[optional] [readonly]
AlertKeyStringManagedClient alert key[optional] [readonly]
ApiGatewayBaseUrlStringManagedClient gateway base url[optional] [readonly]
CcIdInt64Previous CC ID to be used in data migration. (This field will be deleted after CC migration!)[optional]
ClientIdStringThe client ID used in API management[required]
ClusterIdStringCluster ID that the ManagedClient is linked to[required]
CookbookStringVA cookbook[optional] [readonly]
DescriptionStringManagedClient description[required]
IpAddressStringThe public IP address of the ManagedClient[optional] [readonly]
LastSeenSystem.DateTimeWhen the ManagedClient was last seen by the server[optional] [readonly]
NameStringManagedClient name[optional]
SinceLastSeenStringMilliseconds since the ManagedClient has polled the server[optional] [readonly]
StatusManagedClientStatusEnumStatus of the ManagedClient[optional] [readonly]
TypeStringType of the ManagedClient (VA, CCG)[required]
VaDownloadUrlStringManagedClient VA download URL[optional] [readonly]
VaVersionStringVersion that the ManagedClient's VA is running[optional] [readonly]
SecretStringClient's apiKey[optional]

Examples

  • Prepare the resource
$ManagedClient = Initialize-PSSailpoint.BetaManagedClient  -Id aClientId `
-AlertKey anAlertKey `
-ApiGatewayBaseUrl https://denali-xxx.api.cloud.sailpoint.com `
-CcId 2248 `
-ClientId aClientApiId `
-ClusterId aClusterId `
-Cookbook va-cookbook-info `
-Description A short description of the ManagedClient `
-IpAddress 123.456.78.90 `
-LastSeen 2020-01-01T00:00Z `
-Name aName `
-SinceLastSeen 15000 `
-Status null `
-Type VA `
-VaDownloadUrl aUrl `
-VaVersion va-megapod-useast1-610-1621372012 `
-Secret ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381
  • Convert the resource to JSON
$ManagedClient | ConvertTo-JSON

[Back to top]