Skip to main content

ManagedClientHealthIndicatorsBody

Properties

NameTypeDescriptionNotes
AlertKeyStringHealth indicator alert key[optional] [readonly]
IdStringUnique identifier for the health report[required]
ClusterIdStringCluster ID the health report belongs to[required]
ApiUserStringAPI user ID sending the health data[required]
CcgEtagStringETag value for CCG version control[optional]
CcgPinStringPIN value for CCG validation[optional]
CookbookEtagStringETag for cookbook version[optional]
HostnameStringHostname of the Managed Client[required]
InternalIpStringInternal IP address of the Managed Client[optional]
LastSeenStringEpoch timestamp (in millis) when last seen[optional]
SinceSeenStringSeconds since last seen[optional]
SinceSeenMillisStringMilliseconds since last seen[optional]
LocalDevBooleanIndicates if this is a local development instance[optional] [default to $false]
VarStacktraceStringStacktrace associated with any error, if available[optional]
StateStringOptional state value from the client[optional]
StatusEnum [ "NORMAL", "UNDEFINED", "WARNING", "ERROR", "FAILED" ]Status of the client at the time of report[required]
UuidStringOptional UUID from the client[optional]
ProductStringProduct type (e.g., idn)[required]
VaVersionStringVA version installed on the client[optional]
PlatformVersionStringVersion of the platform on which VA is running[required]
OsVersionStringOperating system version[required]
OsTypeStringOperating system type[required]
HypervisorStringVirtualization platform used[required]
ConsolidatedHealthIndicatorsStatusEnum [ "NORMAL", "WARNING", "ERROR" ]Consolidated health indicator status[required]
LastNotifiedCcgVersionStringThe last CCG version for which notification was sent[optional]
DeployedProcessesStringInformation about deployed processes[optional]
HealthIndicatorsManagedClientHealthIndicatorsBodyHealthIndicators[required]

Examples

  • Prepare the resource
$ManagedClientHealthIndicatorsBody = Initialize-V2025ManagedClientHealthIndicatorsBody  -AlertKey  `
-Id 9fe8f1cc-2fd2-4675-a8cf-af4b43488ca2 `
-ClusterId c2a2139cbc754e42b4279a69ec5f58ec `
-ApiUser 9fe8f1cc-2fd2-4675-a8cf-af4b43488ca2 `
-CcgEtag c95e5c4417952dbcc9b4974999ece14e `
-CcgPin NONE `
-CookbookEtag 3018-master-2ce6ac16-20250717124641-3077-master-a101b5fe-20250722162527 `
-Hostname Testing1 `
-InternalIp 172.18.54.5 `
-LastSeen 1754465728720 `
-SinceSeen 23195 `
-SinceSeenMillis 23195 `
-LocalDev false `
-VarStacktrace null `
-State null `
-Status NORMAL `
-Uuid null `
-Product idn `
-VaVersion null `
-PlatformVersion 2 `
-OsVersion 4230.2.1 `
-OsType flatcar `
-Hypervisor vmware `
-ConsolidatedHealthIndicatorsStatus ERROR `
-LastNotifiedCcgVersion 1068 `
-DeployedProcesses null `
-HealthIndicators null
  • Convert the resource to JSON
$ManagedClientHealthIndicatorsBody | ConvertTo-JSON

[Back to top]