mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
Update Go SDK docs: 16773222734
This commit is contained in:
@@ -20,6 +20,7 @@ Method | HTTP request | Description
|
||||
[**create-managed-client**](#create-managed-client) | **Post** `/managed-clients` | Create managed client
|
||||
[**delete-managed-client**](#delete-managed-client) | **Delete** `/managed-clients/{id}` | Delete managed client
|
||||
[**get-managed-client**](#get-managed-client) | **Get** `/managed-clients/{id}` | Get managed client
|
||||
[**get-managed-client-health-indicators**](#get-managed-client-health-indicators) | **Get** `/managed-clients/{id}/health-indicators` | Get managed client health indicators
|
||||
[**get-managed-client-status**](#get-managed-client-status) | **Get** `/managed-clients/{id}/status` | Get managed client status
|
||||
[**get-managed-clients**](#get-managed-clients) | **Get** `/managed-clients` | Get managed clients
|
||||
[**update-managed-client**](#update-managed-client) | **Patch** `/managed-clients/{id}` | Update managed client
|
||||
@@ -229,6 +230,72 @@ func main() {
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
## get-managed-client-health-indicators
|
||||
Get managed client health indicators
|
||||
Get a managed client's health indicators, using its ID.
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/v2025/get-managed-client-health-indicators)
|
||||
|
||||
### Path Parameters
|
||||
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.
|
||||
**id** | **string** | Managed client ID to get health indicators for. |
|
||||
|
||||
### Other Parameters
|
||||
|
||||
Other parameters are passed through a pointer to a apiGetManagedClientHealthIndicatorsRequest struct via the builder pattern
|
||||
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
|
||||
|
||||
### Return type
|
||||
|
||||
[**ManagedClientHealthIndicators**](../models/managed-client-health-indicators)
|
||||
|
||||
### HTTP request headers
|
||||
|
||||
- **Content-Type**: Not defined
|
||||
- **Accept**: application/json
|
||||
|
||||
### Example
|
||||
|
||||
```go
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
|
||||
sailpoint "github.com/sailpoint-oss/golang-sdk/v2"
|
||||
)
|
||||
|
||||
func main() {
|
||||
id := `4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7` // string | Managed client ID to get health indicators for. # string | Managed client ID to get health indicators for.
|
||||
|
||||
|
||||
|
||||
configuration := sailpoint.NewDefaultConfiguration()
|
||||
apiClient := sailpoint.NewAPIClient(configuration)
|
||||
resp, r, err := apiClient.V2025.ManagedClientsAPI.GetManagedClientHealthIndicators(context.Background(), id).Execute()
|
||||
//resp, r, err := apiClient.V2025.ManagedClientsAPI.GetManagedClientHealthIndicators(context.Background(), id).Execute()
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Error when calling `ManagedClientsAPI.GetManagedClientHealthIndicators``: %v\n", err)
|
||||
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
|
||||
}
|
||||
// response from `GetManagedClientHealthIndicators`: ManagedClientHealthIndicators
|
||||
fmt.Fprintf(os.Stdout, "Response from `ManagedClientsAPI.GetManagedClientHealthIndicators`: %v\n", resp)
|
||||
}
|
||||
```
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
## get-managed-client-status
|
||||
Get managed client status
|
||||
Get a managed client's status, using its ID.
|
||||
|
||||
250
docs/tools/sdk/go/Reference/V2025/Models/HealthEvent.md
Normal file
250
docs/tools/sdk/go/Reference/V2025/Models/HealthEvent.md
Normal file
@@ -0,0 +1,250 @@
|
||||
---
|
||||
id: v2025-health-event
|
||||
title: HealthEvent
|
||||
pagination_label: HealthEvent
|
||||
sidebar_label: HealthEvent
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'HealthEvent', 'V2025HealthEvent']
|
||||
slug: /tools/sdk/go/v2025/models/health-event
|
||||
tags: ['SDK', 'Software Development Kit', 'HealthEvent', 'V2025HealthEvent']
|
||||
---
|
||||
|
||||
# HealthEvent
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DetailedMessage** | Pointer to **string** | Description of the issue | [optional]
|
||||
**Uuid** | Pointer to **string** | Unique identifier for the health event | [optional]
|
||||
**Url** | Pointer to **NullableString** | Optional URL associated with the issue | [optional]
|
||||
**Timestamp** | Pointer to **SailPointTime** | Time when the event occurred | [optional]
|
||||
**LastNotifiedTimeStamp** | Pointer to **SailPointTime** | Last time notification was sent for this issue | [optional]
|
||||
**CpuUtilizationPercentage** | Pointer to **NullableFloat32** | CPU usage percentage | [optional]
|
||||
**FreeSpacePercentage** | Pointer to **NullableFloat32** | Free memory percentage | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewHealthEvent
|
||||
|
||||
`func NewHealthEvent() *HealthEvent`
|
||||
|
||||
NewHealthEvent instantiates a new HealthEvent object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
and makes sure properties required by API are set, but the set of arguments
|
||||
will change when the set of required properties is changed
|
||||
|
||||
### NewHealthEventWithDefaults
|
||||
|
||||
`func NewHealthEventWithDefaults() *HealthEvent`
|
||||
|
||||
NewHealthEventWithDefaults instantiates a new HealthEvent object
|
||||
This constructor will only assign default values to properties that have it defined,
|
||||
but it doesn't guarantee that properties required by API are set
|
||||
|
||||
### GetDetailedMessage
|
||||
|
||||
`func (o *HealthEvent) GetDetailedMessage() string`
|
||||
|
||||
GetDetailedMessage returns the DetailedMessage field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDetailedMessageOk
|
||||
|
||||
`func (o *HealthEvent) GetDetailedMessageOk() (*string, bool)`
|
||||
|
||||
GetDetailedMessageOk returns a tuple with the DetailedMessage field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetDetailedMessage
|
||||
|
||||
`func (o *HealthEvent) SetDetailedMessage(v string)`
|
||||
|
||||
SetDetailedMessage sets DetailedMessage field to given value.
|
||||
|
||||
### HasDetailedMessage
|
||||
|
||||
`func (o *HealthEvent) HasDetailedMessage() bool`
|
||||
|
||||
HasDetailedMessage returns a boolean if a field has been set.
|
||||
|
||||
### GetUuid
|
||||
|
||||
`func (o *HealthEvent) GetUuid() string`
|
||||
|
||||
GetUuid returns the Uuid field if non-nil, zero value otherwise.
|
||||
|
||||
### GetUuidOk
|
||||
|
||||
`func (o *HealthEvent) GetUuidOk() (*string, bool)`
|
||||
|
||||
GetUuidOk returns a tuple with the Uuid field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetUuid
|
||||
|
||||
`func (o *HealthEvent) SetUuid(v string)`
|
||||
|
||||
SetUuid sets Uuid field to given value.
|
||||
|
||||
### HasUuid
|
||||
|
||||
`func (o *HealthEvent) HasUuid() bool`
|
||||
|
||||
HasUuid returns a boolean if a field has been set.
|
||||
|
||||
### GetUrl
|
||||
|
||||
`func (o *HealthEvent) GetUrl() string`
|
||||
|
||||
GetUrl returns the Url field if non-nil, zero value otherwise.
|
||||
|
||||
### GetUrlOk
|
||||
|
||||
`func (o *HealthEvent) GetUrlOk() (*string, bool)`
|
||||
|
||||
GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetUrl
|
||||
|
||||
`func (o *HealthEvent) SetUrl(v string)`
|
||||
|
||||
SetUrl sets Url field to given value.
|
||||
|
||||
### HasUrl
|
||||
|
||||
`func (o *HealthEvent) HasUrl() bool`
|
||||
|
||||
HasUrl returns a boolean if a field has been set.
|
||||
|
||||
### SetUrlNil
|
||||
|
||||
`func (o *HealthEvent) SetUrlNil(b bool)`
|
||||
|
||||
SetUrlNil sets the value for Url to be an explicit nil
|
||||
|
||||
### UnsetUrl
|
||||
`func (o *HealthEvent) UnsetUrl()`
|
||||
|
||||
UnsetUrl ensures that no value is present for Url, not even an explicit nil
|
||||
### GetTimestamp
|
||||
|
||||
`func (o *HealthEvent) GetTimestamp() SailPointTime`
|
||||
|
||||
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTimestampOk
|
||||
|
||||
`func (o *HealthEvent) GetTimestampOk() (*SailPointTime, bool)`
|
||||
|
||||
GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTimestamp
|
||||
|
||||
`func (o *HealthEvent) SetTimestamp(v SailPointTime)`
|
||||
|
||||
SetTimestamp sets Timestamp field to given value.
|
||||
|
||||
### HasTimestamp
|
||||
|
||||
`func (o *HealthEvent) HasTimestamp() bool`
|
||||
|
||||
HasTimestamp returns a boolean if a field has been set.
|
||||
|
||||
### GetLastNotifiedTimeStamp
|
||||
|
||||
`func (o *HealthEvent) GetLastNotifiedTimeStamp() SailPointTime`
|
||||
|
||||
GetLastNotifiedTimeStamp returns the LastNotifiedTimeStamp field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLastNotifiedTimeStampOk
|
||||
|
||||
`func (o *HealthEvent) GetLastNotifiedTimeStampOk() (*SailPointTime, bool)`
|
||||
|
||||
GetLastNotifiedTimeStampOk returns a tuple with the LastNotifiedTimeStamp field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLastNotifiedTimeStamp
|
||||
|
||||
`func (o *HealthEvent) SetLastNotifiedTimeStamp(v SailPointTime)`
|
||||
|
||||
SetLastNotifiedTimeStamp sets LastNotifiedTimeStamp field to given value.
|
||||
|
||||
### HasLastNotifiedTimeStamp
|
||||
|
||||
`func (o *HealthEvent) HasLastNotifiedTimeStamp() bool`
|
||||
|
||||
HasLastNotifiedTimeStamp returns a boolean if a field has been set.
|
||||
|
||||
### GetCpuUtilizationPercentage
|
||||
|
||||
`func (o *HealthEvent) GetCpuUtilizationPercentage() float32`
|
||||
|
||||
GetCpuUtilizationPercentage returns the CpuUtilizationPercentage field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCpuUtilizationPercentageOk
|
||||
|
||||
`func (o *HealthEvent) GetCpuUtilizationPercentageOk() (*float32, bool)`
|
||||
|
||||
GetCpuUtilizationPercentageOk returns a tuple with the CpuUtilizationPercentage field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCpuUtilizationPercentage
|
||||
|
||||
`func (o *HealthEvent) SetCpuUtilizationPercentage(v float32)`
|
||||
|
||||
SetCpuUtilizationPercentage sets CpuUtilizationPercentage field to given value.
|
||||
|
||||
### HasCpuUtilizationPercentage
|
||||
|
||||
`func (o *HealthEvent) HasCpuUtilizationPercentage() bool`
|
||||
|
||||
HasCpuUtilizationPercentage returns a boolean if a field has been set.
|
||||
|
||||
### SetCpuUtilizationPercentageNil
|
||||
|
||||
`func (o *HealthEvent) SetCpuUtilizationPercentageNil(b bool)`
|
||||
|
||||
SetCpuUtilizationPercentageNil sets the value for CpuUtilizationPercentage to be an explicit nil
|
||||
|
||||
### UnsetCpuUtilizationPercentage
|
||||
`func (o *HealthEvent) UnsetCpuUtilizationPercentage()`
|
||||
|
||||
UnsetCpuUtilizationPercentage ensures that no value is present for CpuUtilizationPercentage, not even an explicit nil
|
||||
### GetFreeSpacePercentage
|
||||
|
||||
`func (o *HealthEvent) GetFreeSpacePercentage() float32`
|
||||
|
||||
GetFreeSpacePercentage returns the FreeSpacePercentage field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFreeSpacePercentageOk
|
||||
|
||||
`func (o *HealthEvent) GetFreeSpacePercentageOk() (*float32, bool)`
|
||||
|
||||
GetFreeSpacePercentageOk returns a tuple with the FreeSpacePercentage field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetFreeSpacePercentage
|
||||
|
||||
`func (o *HealthEvent) SetFreeSpacePercentage(v float32)`
|
||||
|
||||
SetFreeSpacePercentage sets FreeSpacePercentage field to given value.
|
||||
|
||||
### HasFreeSpacePercentage
|
||||
|
||||
`func (o *HealthEvent) HasFreeSpacePercentage() bool`
|
||||
|
||||
HasFreeSpacePercentage returns a boolean if a field has been set.
|
||||
|
||||
### SetFreeSpacePercentageNil
|
||||
|
||||
`func (o *HealthEvent) SetFreeSpacePercentageNil(b bool)`
|
||||
|
||||
SetFreeSpacePercentageNil sets the value for FreeSpacePercentage to be an explicit nil
|
||||
|
||||
### UnsetFreeSpacePercentage
|
||||
`func (o *HealthEvent) UnsetFreeSpacePercentage()`
|
||||
|
||||
UnsetFreeSpacePercentage ensures that no value is present for FreeSpacePercentage, not even an explicit nil
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
---
|
||||
id: v2025-health-indicator-category
|
||||
title: HealthIndicatorCategory
|
||||
pagination_label: HealthIndicatorCategory
|
||||
sidebar_label: HealthIndicatorCategory
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'HealthIndicatorCategory', 'V2025HealthIndicatorCategory']
|
||||
slug: /tools/sdk/go/v2025/models/health-indicator-category
|
||||
tags: ['SDK', 'Software Development Kit', 'HealthIndicatorCategory', 'V2025HealthIndicatorCategory']
|
||||
---
|
||||
|
||||
# HealthIndicatorCategory
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Errors** | Pointer to [**[]HealthEvent**](health-event) | List of error events for this category | [optional]
|
||||
**Warnings** | Pointer to [**[]HealthEvent**](health-event) | List of warning events for this category | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewHealthIndicatorCategory
|
||||
|
||||
`func NewHealthIndicatorCategory() *HealthIndicatorCategory`
|
||||
|
||||
NewHealthIndicatorCategory instantiates a new HealthIndicatorCategory object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
and makes sure properties required by API are set, but the set of arguments
|
||||
will change when the set of required properties is changed
|
||||
|
||||
### NewHealthIndicatorCategoryWithDefaults
|
||||
|
||||
`func NewHealthIndicatorCategoryWithDefaults() *HealthIndicatorCategory`
|
||||
|
||||
NewHealthIndicatorCategoryWithDefaults instantiates a new HealthIndicatorCategory object
|
||||
This constructor will only assign default values to properties that have it defined,
|
||||
but it doesn't guarantee that properties required by API are set
|
||||
|
||||
### GetErrors
|
||||
|
||||
`func (o *HealthIndicatorCategory) GetErrors() []HealthEvent`
|
||||
|
||||
GetErrors returns the Errors field if non-nil, zero value otherwise.
|
||||
|
||||
### GetErrorsOk
|
||||
|
||||
`func (o *HealthIndicatorCategory) GetErrorsOk() (*[]HealthEvent, bool)`
|
||||
|
||||
GetErrorsOk returns a tuple with the Errors field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetErrors
|
||||
|
||||
`func (o *HealthIndicatorCategory) SetErrors(v []HealthEvent)`
|
||||
|
||||
SetErrors sets Errors field to given value.
|
||||
|
||||
### HasErrors
|
||||
|
||||
`func (o *HealthIndicatorCategory) HasErrors() bool`
|
||||
|
||||
HasErrors returns a boolean if a field has been set.
|
||||
|
||||
### GetWarnings
|
||||
|
||||
`func (o *HealthIndicatorCategory) GetWarnings() []HealthEvent`
|
||||
|
||||
GetWarnings returns the Warnings field if non-nil, zero value otherwise.
|
||||
|
||||
### GetWarningsOk
|
||||
|
||||
`func (o *HealthIndicatorCategory) GetWarningsOk() (*[]HealthEvent, bool)`
|
||||
|
||||
GetWarningsOk returns a tuple with the Warnings field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetWarnings
|
||||
|
||||
`func (o *HealthIndicatorCategory) SetWarnings(v []HealthEvent)`
|
||||
|
||||
SetWarnings sets Warnings field to given value.
|
||||
|
||||
### HasWarnings
|
||||
|
||||
`func (o *HealthIndicatorCategory) HasWarnings() bool`
|
||||
|
||||
HasWarnings returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -0,0 +1,122 @@
|
||||
---
|
||||
id: v2025-managed-client-health-indicators
|
||||
title: ManagedClientHealthIndicators
|
||||
pagination_label: ManagedClientHealthIndicators
|
||||
sidebar_label: ManagedClientHealthIndicators
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'ManagedClientHealthIndicators', 'V2025ManagedClientHealthIndicators']
|
||||
slug: /tools/sdk/go/v2025/models/managed-client-health-indicators
|
||||
tags: ['SDK', 'Software Development Kit', 'ManagedClientHealthIndicators', 'V2025ManagedClientHealthIndicators']
|
||||
---
|
||||
|
||||
# ManagedClientHealthIndicators
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Body** | [**ManagedClientHealthIndicatorsBody**](managed-client-health-indicators-body) | |
|
||||
**Status** | **string** | Top-level status of the Managed Client |
|
||||
**Type** | **string** | Type of the Managed Client |
|
||||
**Timestamp** | **SailPointTime** | Timestamp when this report was generated |
|
||||
|
||||
## Methods
|
||||
|
||||
### NewManagedClientHealthIndicators
|
||||
|
||||
`func NewManagedClientHealthIndicators(body ManagedClientHealthIndicatorsBody, status string, type_ string, timestamp SailPointTime, ) *ManagedClientHealthIndicators`
|
||||
|
||||
NewManagedClientHealthIndicators instantiates a new ManagedClientHealthIndicators object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
and makes sure properties required by API are set, but the set of arguments
|
||||
will change when the set of required properties is changed
|
||||
|
||||
### NewManagedClientHealthIndicatorsWithDefaults
|
||||
|
||||
`func NewManagedClientHealthIndicatorsWithDefaults() *ManagedClientHealthIndicators`
|
||||
|
||||
NewManagedClientHealthIndicatorsWithDefaults instantiates a new ManagedClientHealthIndicators object
|
||||
This constructor will only assign default values to properties that have it defined,
|
||||
but it doesn't guarantee that properties required by API are set
|
||||
|
||||
### GetBody
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetBody() ManagedClientHealthIndicatorsBody`
|
||||
|
||||
GetBody returns the Body field if non-nil, zero value otherwise.
|
||||
|
||||
### GetBodyOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetBodyOk() (*ManagedClientHealthIndicatorsBody, bool)`
|
||||
|
||||
GetBodyOk returns a tuple with the Body field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetBody
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) SetBody(v ManagedClientHealthIndicatorsBody)`
|
||||
|
||||
SetBody sets Body field to given value.
|
||||
|
||||
|
||||
### GetStatus
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetStatus() string`
|
||||
|
||||
GetStatus returns the Status field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStatusOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetStatusOk() (*string, bool)`
|
||||
|
||||
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetStatus
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) SetStatus(v string)`
|
||||
|
||||
SetStatus sets Status field to given value.
|
||||
|
||||
|
||||
### GetType
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetType() string`
|
||||
|
||||
GetType returns the Type field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTypeOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetTypeOk() (*string, bool)`
|
||||
|
||||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetType
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) SetType(v string)`
|
||||
|
||||
SetType sets Type field to given value.
|
||||
|
||||
|
||||
### GetTimestamp
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetTimestamp() SailPointTime`
|
||||
|
||||
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTimestampOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) GetTimestampOk() (*SailPointTime, bool)`
|
||||
|
||||
GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTimestamp
|
||||
|
||||
`func (o *ManagedClientHealthIndicators) SetTimestamp(v SailPointTime)`
|
||||
|
||||
SetTimestamp sets Timestamp field to given value.
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,770 @@
|
||||
---
|
||||
id: v2025-managed-client-health-indicators-body
|
||||
title: ManagedClientHealthIndicatorsBody
|
||||
pagination_label: ManagedClientHealthIndicatorsBody
|
||||
sidebar_label: ManagedClientHealthIndicatorsBody
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'ManagedClientHealthIndicatorsBody', 'V2025ManagedClientHealthIndicatorsBody']
|
||||
slug: /tools/sdk/go/v2025/models/managed-client-health-indicators-body
|
||||
tags: ['SDK', 'Software Development Kit', 'ManagedClientHealthIndicatorsBody', 'V2025ManagedClientHealthIndicatorsBody']
|
||||
---
|
||||
|
||||
# ManagedClientHealthIndicatorsBody
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AlertKey** | Pointer to **NullableString** | Health indicator alert key | [optional] [readonly]
|
||||
**Id** | **string** | Unique identifier for the health report |
|
||||
**ClusterId** | **string** | Cluster ID the health report belongs to |
|
||||
**ApiUser** | **string** | API user ID sending the health data |
|
||||
**CcgEtag** | Pointer to **NullableString** | ETag value for CCG version control | [optional]
|
||||
**CcgPin** | Pointer to **NullableString** | PIN value for CCG validation | [optional]
|
||||
**CookbookEtag** | Pointer to **NullableString** | ETag for cookbook version | [optional]
|
||||
**Hostname** | **string** | Hostname of the Managed Client |
|
||||
**InternalIp** | Pointer to **string** | Internal IP address of the Managed Client | [optional]
|
||||
**LastSeen** | Pointer to **string** | Epoch timestamp (in millis) when last seen | [optional]
|
||||
**SinceSeen** | Pointer to **string** | Seconds since last seen | [optional]
|
||||
**SinceSeenMillis** | Pointer to **string** | Milliseconds since last seen | [optional]
|
||||
**LocalDev** | Pointer to **bool** | Indicates if this is a local development instance | [optional] [default to false]
|
||||
**Stacktrace** | Pointer to **NullableString** | Stacktrace associated with any error, if available | [optional]
|
||||
**State** | Pointer to **NullableString** | Optional state value from the client | [optional]
|
||||
**Status** | **string** | Status of the client at the time of report |
|
||||
**Uuid** | Pointer to **NullableString** | Optional UUID from the client | [optional]
|
||||
**Product** | **string** | Product type (e.g., idn) |
|
||||
**VaVersion** | Pointer to **NullableString** | VA version installed on the client | [optional]
|
||||
**PlatformVersion** | **string** | Version of the platform on which VA is running |
|
||||
**OsVersion** | **string** | Operating system version |
|
||||
**OsType** | **string** | Operating system type |
|
||||
**Hypervisor** | **string** | Virtualization platform used |
|
||||
**ConsolidatedHealthIndicatorsStatus** | **string** | Consolidated health indicator status |
|
||||
**LastNotifiedCcgVersion** | Pointer to **string** | The last CCG version for which notification was sent | [optional]
|
||||
**DeployedProcesses** | Pointer to **NullableString** | Information about deployed processes | [optional]
|
||||
**HealthIndicators** | [**ManagedClientHealthIndicatorsBodyHealthIndicators**](managed-client-health-indicators-body-health-indicators) | |
|
||||
|
||||
## Methods
|
||||
|
||||
### NewManagedClientHealthIndicatorsBody
|
||||
|
||||
`func NewManagedClientHealthIndicatorsBody(id string, clusterId string, apiUser string, hostname string, status string, product string, platformVersion string, osVersion string, osType string, hypervisor string, consolidatedHealthIndicatorsStatus string, healthIndicators ManagedClientHealthIndicatorsBodyHealthIndicators, ) *ManagedClientHealthIndicatorsBody`
|
||||
|
||||
NewManagedClientHealthIndicatorsBody instantiates a new ManagedClientHealthIndicatorsBody object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
and makes sure properties required by API are set, but the set of arguments
|
||||
will change when the set of required properties is changed
|
||||
|
||||
### NewManagedClientHealthIndicatorsBodyWithDefaults
|
||||
|
||||
`func NewManagedClientHealthIndicatorsBodyWithDefaults() *ManagedClientHealthIndicatorsBody`
|
||||
|
||||
NewManagedClientHealthIndicatorsBodyWithDefaults instantiates a new ManagedClientHealthIndicatorsBody object
|
||||
This constructor will only assign default values to properties that have it defined,
|
||||
but it doesn't guarantee that properties required by API are set
|
||||
|
||||
### GetAlertKey
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetAlertKey() string`
|
||||
|
||||
GetAlertKey returns the AlertKey field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAlertKeyOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetAlertKeyOk() (*string, bool)`
|
||||
|
||||
GetAlertKeyOk returns a tuple with the AlertKey field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAlertKey
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetAlertKey(v string)`
|
||||
|
||||
SetAlertKey sets AlertKey field to given value.
|
||||
|
||||
### HasAlertKey
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasAlertKey() bool`
|
||||
|
||||
HasAlertKey returns a boolean if a field has been set.
|
||||
|
||||
### SetAlertKeyNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetAlertKeyNil(b bool)`
|
||||
|
||||
SetAlertKeyNil sets the value for AlertKey to be an explicit nil
|
||||
|
||||
### UnsetAlertKey
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetAlertKey()`
|
||||
|
||||
UnsetAlertKey ensures that no value is present for AlertKey, not even an explicit nil
|
||||
### GetId
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetIdOk() (*string, bool)`
|
||||
|
||||
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetId
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
|
||||
### GetClusterId
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetClusterId() string`
|
||||
|
||||
GetClusterId returns the ClusterId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetClusterIdOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetClusterIdOk() (*string, bool)`
|
||||
|
||||
GetClusterIdOk returns a tuple with the ClusterId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetClusterId
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetClusterId(v string)`
|
||||
|
||||
SetClusterId sets ClusterId field to given value.
|
||||
|
||||
|
||||
### GetApiUser
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetApiUser() string`
|
||||
|
||||
GetApiUser returns the ApiUser field if non-nil, zero value otherwise.
|
||||
|
||||
### GetApiUserOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetApiUserOk() (*string, bool)`
|
||||
|
||||
GetApiUserOk returns a tuple with the ApiUser field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetApiUser
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetApiUser(v string)`
|
||||
|
||||
SetApiUser sets ApiUser field to given value.
|
||||
|
||||
|
||||
### GetCcgEtag
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetCcgEtag() string`
|
||||
|
||||
GetCcgEtag returns the CcgEtag field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCcgEtagOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetCcgEtagOk() (*string, bool)`
|
||||
|
||||
GetCcgEtagOk returns a tuple with the CcgEtag field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCcgEtag
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetCcgEtag(v string)`
|
||||
|
||||
SetCcgEtag sets CcgEtag field to given value.
|
||||
|
||||
### HasCcgEtag
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasCcgEtag() bool`
|
||||
|
||||
HasCcgEtag returns a boolean if a field has been set.
|
||||
|
||||
### SetCcgEtagNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetCcgEtagNil(b bool)`
|
||||
|
||||
SetCcgEtagNil sets the value for CcgEtag to be an explicit nil
|
||||
|
||||
### UnsetCcgEtag
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetCcgEtag()`
|
||||
|
||||
UnsetCcgEtag ensures that no value is present for CcgEtag, not even an explicit nil
|
||||
### GetCcgPin
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetCcgPin() string`
|
||||
|
||||
GetCcgPin returns the CcgPin field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCcgPinOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetCcgPinOk() (*string, bool)`
|
||||
|
||||
GetCcgPinOk returns a tuple with the CcgPin field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCcgPin
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetCcgPin(v string)`
|
||||
|
||||
SetCcgPin sets CcgPin field to given value.
|
||||
|
||||
### HasCcgPin
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasCcgPin() bool`
|
||||
|
||||
HasCcgPin returns a boolean if a field has been set.
|
||||
|
||||
### SetCcgPinNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetCcgPinNil(b bool)`
|
||||
|
||||
SetCcgPinNil sets the value for CcgPin to be an explicit nil
|
||||
|
||||
### UnsetCcgPin
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetCcgPin()`
|
||||
|
||||
UnsetCcgPin ensures that no value is present for CcgPin, not even an explicit nil
|
||||
### GetCookbookEtag
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetCookbookEtag() string`
|
||||
|
||||
GetCookbookEtag returns the CookbookEtag field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCookbookEtagOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetCookbookEtagOk() (*string, bool)`
|
||||
|
||||
GetCookbookEtagOk returns a tuple with the CookbookEtag field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCookbookEtag
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetCookbookEtag(v string)`
|
||||
|
||||
SetCookbookEtag sets CookbookEtag field to given value.
|
||||
|
||||
### HasCookbookEtag
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasCookbookEtag() bool`
|
||||
|
||||
HasCookbookEtag returns a boolean if a field has been set.
|
||||
|
||||
### SetCookbookEtagNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetCookbookEtagNil(b bool)`
|
||||
|
||||
SetCookbookEtagNil sets the value for CookbookEtag to be an explicit nil
|
||||
|
||||
### UnsetCookbookEtag
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetCookbookEtag()`
|
||||
|
||||
UnsetCookbookEtag ensures that no value is present for CookbookEtag, not even an explicit nil
|
||||
### GetHostname
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetHostname() string`
|
||||
|
||||
GetHostname returns the Hostname field if non-nil, zero value otherwise.
|
||||
|
||||
### GetHostnameOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetHostnameOk() (*string, bool)`
|
||||
|
||||
GetHostnameOk returns a tuple with the Hostname field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetHostname
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetHostname(v string)`
|
||||
|
||||
SetHostname sets Hostname field to given value.
|
||||
|
||||
|
||||
### GetInternalIp
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetInternalIp() string`
|
||||
|
||||
GetInternalIp returns the InternalIp field if non-nil, zero value otherwise.
|
||||
|
||||
### GetInternalIpOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetInternalIpOk() (*string, bool)`
|
||||
|
||||
GetInternalIpOk returns a tuple with the InternalIp field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetInternalIp
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetInternalIp(v string)`
|
||||
|
||||
SetInternalIp sets InternalIp field to given value.
|
||||
|
||||
### HasInternalIp
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasInternalIp() bool`
|
||||
|
||||
HasInternalIp returns a boolean if a field has been set.
|
||||
|
||||
### GetLastSeen
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetLastSeen() string`
|
||||
|
||||
GetLastSeen returns the LastSeen field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLastSeenOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetLastSeenOk() (*string, bool)`
|
||||
|
||||
GetLastSeenOk returns a tuple with the LastSeen field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLastSeen
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetLastSeen(v string)`
|
||||
|
||||
SetLastSeen sets LastSeen field to given value.
|
||||
|
||||
### HasLastSeen
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasLastSeen() bool`
|
||||
|
||||
HasLastSeen returns a boolean if a field has been set.
|
||||
|
||||
### GetSinceSeen
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetSinceSeen() string`
|
||||
|
||||
GetSinceSeen returns the SinceSeen field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSinceSeenOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetSinceSeenOk() (*string, bool)`
|
||||
|
||||
GetSinceSeenOk returns a tuple with the SinceSeen field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSinceSeen
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetSinceSeen(v string)`
|
||||
|
||||
SetSinceSeen sets SinceSeen field to given value.
|
||||
|
||||
### HasSinceSeen
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasSinceSeen() bool`
|
||||
|
||||
HasSinceSeen returns a boolean if a field has been set.
|
||||
|
||||
### GetSinceSeenMillis
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetSinceSeenMillis() string`
|
||||
|
||||
GetSinceSeenMillis returns the SinceSeenMillis field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSinceSeenMillisOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetSinceSeenMillisOk() (*string, bool)`
|
||||
|
||||
GetSinceSeenMillisOk returns a tuple with the SinceSeenMillis field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSinceSeenMillis
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetSinceSeenMillis(v string)`
|
||||
|
||||
SetSinceSeenMillis sets SinceSeenMillis field to given value.
|
||||
|
||||
### HasSinceSeenMillis
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasSinceSeenMillis() bool`
|
||||
|
||||
HasSinceSeenMillis returns a boolean if a field has been set.
|
||||
|
||||
### GetLocalDev
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetLocalDev() bool`
|
||||
|
||||
GetLocalDev returns the LocalDev field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLocalDevOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetLocalDevOk() (*bool, bool)`
|
||||
|
||||
GetLocalDevOk returns a tuple with the LocalDev field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLocalDev
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetLocalDev(v bool)`
|
||||
|
||||
SetLocalDev sets LocalDev field to given value.
|
||||
|
||||
### HasLocalDev
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasLocalDev() bool`
|
||||
|
||||
HasLocalDev returns a boolean if a field has been set.
|
||||
|
||||
### GetStacktrace
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetStacktrace() string`
|
||||
|
||||
GetStacktrace returns the Stacktrace field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStacktraceOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetStacktraceOk() (*string, bool)`
|
||||
|
||||
GetStacktraceOk returns a tuple with the Stacktrace field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetStacktrace
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetStacktrace(v string)`
|
||||
|
||||
SetStacktrace sets Stacktrace field to given value.
|
||||
|
||||
### HasStacktrace
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasStacktrace() bool`
|
||||
|
||||
HasStacktrace returns a boolean if a field has been set.
|
||||
|
||||
### SetStacktraceNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetStacktraceNil(b bool)`
|
||||
|
||||
SetStacktraceNil sets the value for Stacktrace to be an explicit nil
|
||||
|
||||
### UnsetStacktrace
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetStacktrace()`
|
||||
|
||||
UnsetStacktrace ensures that no value is present for Stacktrace, not even an explicit nil
|
||||
### GetState
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetState() string`
|
||||
|
||||
GetState returns the State field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStateOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetStateOk() (*string, bool)`
|
||||
|
||||
GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetState
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetState(v string)`
|
||||
|
||||
SetState sets State field to given value.
|
||||
|
||||
### HasState
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasState() bool`
|
||||
|
||||
HasState returns a boolean if a field has been set.
|
||||
|
||||
### SetStateNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetStateNil(b bool)`
|
||||
|
||||
SetStateNil sets the value for State to be an explicit nil
|
||||
|
||||
### UnsetState
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetState()`
|
||||
|
||||
UnsetState ensures that no value is present for State, not even an explicit nil
|
||||
### GetStatus
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetStatus() string`
|
||||
|
||||
GetStatus returns the Status field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStatusOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetStatusOk() (*string, bool)`
|
||||
|
||||
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetStatus
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetStatus(v string)`
|
||||
|
||||
SetStatus sets Status field to given value.
|
||||
|
||||
|
||||
### GetUuid
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetUuid() string`
|
||||
|
||||
GetUuid returns the Uuid field if non-nil, zero value otherwise.
|
||||
|
||||
### GetUuidOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetUuidOk() (*string, bool)`
|
||||
|
||||
GetUuidOk returns a tuple with the Uuid field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetUuid
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetUuid(v string)`
|
||||
|
||||
SetUuid sets Uuid field to given value.
|
||||
|
||||
### HasUuid
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasUuid() bool`
|
||||
|
||||
HasUuid returns a boolean if a field has been set.
|
||||
|
||||
### SetUuidNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetUuidNil(b bool)`
|
||||
|
||||
SetUuidNil sets the value for Uuid to be an explicit nil
|
||||
|
||||
### UnsetUuid
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetUuid()`
|
||||
|
||||
UnsetUuid ensures that no value is present for Uuid, not even an explicit nil
|
||||
### GetProduct
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetProduct() string`
|
||||
|
||||
GetProduct returns the Product field if non-nil, zero value otherwise.
|
||||
|
||||
### GetProductOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetProductOk() (*string, bool)`
|
||||
|
||||
GetProductOk returns a tuple with the Product field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetProduct
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetProduct(v string)`
|
||||
|
||||
SetProduct sets Product field to given value.
|
||||
|
||||
|
||||
### GetVaVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetVaVersion() string`
|
||||
|
||||
GetVaVersion returns the VaVersion field if non-nil, zero value otherwise.
|
||||
|
||||
### GetVaVersionOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetVaVersionOk() (*string, bool)`
|
||||
|
||||
GetVaVersionOk returns a tuple with the VaVersion field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetVaVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetVaVersion(v string)`
|
||||
|
||||
SetVaVersion sets VaVersion field to given value.
|
||||
|
||||
### HasVaVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasVaVersion() bool`
|
||||
|
||||
HasVaVersion returns a boolean if a field has been set.
|
||||
|
||||
### SetVaVersionNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetVaVersionNil(b bool)`
|
||||
|
||||
SetVaVersionNil sets the value for VaVersion to be an explicit nil
|
||||
|
||||
### UnsetVaVersion
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetVaVersion()`
|
||||
|
||||
UnsetVaVersion ensures that no value is present for VaVersion, not even an explicit nil
|
||||
### GetPlatformVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetPlatformVersion() string`
|
||||
|
||||
GetPlatformVersion returns the PlatformVersion field if non-nil, zero value otherwise.
|
||||
|
||||
### GetPlatformVersionOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetPlatformVersionOk() (*string, bool)`
|
||||
|
||||
GetPlatformVersionOk returns a tuple with the PlatformVersion field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetPlatformVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetPlatformVersion(v string)`
|
||||
|
||||
SetPlatformVersion sets PlatformVersion field to given value.
|
||||
|
||||
|
||||
### GetOsVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetOsVersion() string`
|
||||
|
||||
GetOsVersion returns the OsVersion field if non-nil, zero value otherwise.
|
||||
|
||||
### GetOsVersionOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetOsVersionOk() (*string, bool)`
|
||||
|
||||
GetOsVersionOk returns a tuple with the OsVersion field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetOsVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetOsVersion(v string)`
|
||||
|
||||
SetOsVersion sets OsVersion field to given value.
|
||||
|
||||
|
||||
### GetOsType
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetOsType() string`
|
||||
|
||||
GetOsType returns the OsType field if non-nil, zero value otherwise.
|
||||
|
||||
### GetOsTypeOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetOsTypeOk() (*string, bool)`
|
||||
|
||||
GetOsTypeOk returns a tuple with the OsType field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetOsType
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetOsType(v string)`
|
||||
|
||||
SetOsType sets OsType field to given value.
|
||||
|
||||
|
||||
### GetHypervisor
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetHypervisor() string`
|
||||
|
||||
GetHypervisor returns the Hypervisor field if non-nil, zero value otherwise.
|
||||
|
||||
### GetHypervisorOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetHypervisorOk() (*string, bool)`
|
||||
|
||||
GetHypervisorOk returns a tuple with the Hypervisor field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetHypervisor
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetHypervisor(v string)`
|
||||
|
||||
SetHypervisor sets Hypervisor field to given value.
|
||||
|
||||
|
||||
### GetConsolidatedHealthIndicatorsStatus
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetConsolidatedHealthIndicatorsStatus() string`
|
||||
|
||||
GetConsolidatedHealthIndicatorsStatus returns the ConsolidatedHealthIndicatorsStatus field if non-nil, zero value otherwise.
|
||||
|
||||
### GetConsolidatedHealthIndicatorsStatusOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetConsolidatedHealthIndicatorsStatusOk() (*string, bool)`
|
||||
|
||||
GetConsolidatedHealthIndicatorsStatusOk returns a tuple with the ConsolidatedHealthIndicatorsStatus field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetConsolidatedHealthIndicatorsStatus
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetConsolidatedHealthIndicatorsStatus(v string)`
|
||||
|
||||
SetConsolidatedHealthIndicatorsStatus sets ConsolidatedHealthIndicatorsStatus field to given value.
|
||||
|
||||
|
||||
### GetLastNotifiedCcgVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetLastNotifiedCcgVersion() string`
|
||||
|
||||
GetLastNotifiedCcgVersion returns the LastNotifiedCcgVersion field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLastNotifiedCcgVersionOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetLastNotifiedCcgVersionOk() (*string, bool)`
|
||||
|
||||
GetLastNotifiedCcgVersionOk returns a tuple with the LastNotifiedCcgVersion field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLastNotifiedCcgVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetLastNotifiedCcgVersion(v string)`
|
||||
|
||||
SetLastNotifiedCcgVersion sets LastNotifiedCcgVersion field to given value.
|
||||
|
||||
### HasLastNotifiedCcgVersion
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasLastNotifiedCcgVersion() bool`
|
||||
|
||||
HasLastNotifiedCcgVersion returns a boolean if a field has been set.
|
||||
|
||||
### GetDeployedProcesses
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetDeployedProcesses() string`
|
||||
|
||||
GetDeployedProcesses returns the DeployedProcesses field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDeployedProcessesOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetDeployedProcessesOk() (*string, bool)`
|
||||
|
||||
GetDeployedProcessesOk returns a tuple with the DeployedProcesses field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetDeployedProcesses
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetDeployedProcesses(v string)`
|
||||
|
||||
SetDeployedProcesses sets DeployedProcesses field to given value.
|
||||
|
||||
### HasDeployedProcesses
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) HasDeployedProcesses() bool`
|
||||
|
||||
HasDeployedProcesses returns a boolean if a field has been set.
|
||||
|
||||
### SetDeployedProcessesNil
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetDeployedProcessesNil(b bool)`
|
||||
|
||||
SetDeployedProcessesNil sets the value for DeployedProcesses to be an explicit nil
|
||||
|
||||
### UnsetDeployedProcesses
|
||||
`func (o *ManagedClientHealthIndicatorsBody) UnsetDeployedProcesses()`
|
||||
|
||||
UnsetDeployedProcesses ensures that no value is present for DeployedProcesses, not even an explicit nil
|
||||
### GetHealthIndicators
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetHealthIndicators() ManagedClientHealthIndicatorsBodyHealthIndicators`
|
||||
|
||||
GetHealthIndicators returns the HealthIndicators field if non-nil, zero value otherwise.
|
||||
|
||||
### GetHealthIndicatorsOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) GetHealthIndicatorsOk() (*ManagedClientHealthIndicatorsBodyHealthIndicators, bool)`
|
||||
|
||||
GetHealthIndicatorsOk returns a tuple with the HealthIndicators field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetHealthIndicators
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBody) SetHealthIndicators(v ManagedClientHealthIndicatorsBodyHealthIndicators)`
|
||||
|
||||
SetHealthIndicators sets HealthIndicators field to given value.
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,116 @@
|
||||
---
|
||||
id: v2025-managed-client-health-indicators-body-health-indicators
|
||||
title: ManagedClientHealthIndicatorsBodyHealthIndicators
|
||||
pagination_label: ManagedClientHealthIndicatorsBodyHealthIndicators
|
||||
sidebar_label: ManagedClientHealthIndicatorsBodyHealthIndicators
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'ManagedClientHealthIndicatorsBodyHealthIndicators', 'V2025ManagedClientHealthIndicatorsBodyHealthIndicators']
|
||||
slug: /tools/sdk/go/v2025/models/managed-client-health-indicators-body-health-indicators
|
||||
tags: ['SDK', 'Software Development Kit', 'ManagedClientHealthIndicatorsBodyHealthIndicators', 'V2025ManagedClientHealthIndicatorsBodyHealthIndicators']
|
||||
---
|
||||
|
||||
# ManagedClientHealthIndicatorsBodyHealthIndicators
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Container** | Pointer to [**HealthIndicatorCategory**](health-indicator-category) | | [optional]
|
||||
**Memory** | Pointer to [**HealthIndicatorCategory**](health-indicator-category) | | [optional]
|
||||
**Cpu** | Pointer to [**HealthIndicatorCategory**](health-indicator-category) | | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewManagedClientHealthIndicatorsBodyHealthIndicators
|
||||
|
||||
`func NewManagedClientHealthIndicatorsBodyHealthIndicators() *ManagedClientHealthIndicatorsBodyHealthIndicators`
|
||||
|
||||
NewManagedClientHealthIndicatorsBodyHealthIndicators instantiates a new ManagedClientHealthIndicatorsBodyHealthIndicators object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
and makes sure properties required by API are set, but the set of arguments
|
||||
will change when the set of required properties is changed
|
||||
|
||||
### NewManagedClientHealthIndicatorsBodyHealthIndicatorsWithDefaults
|
||||
|
||||
`func NewManagedClientHealthIndicatorsBodyHealthIndicatorsWithDefaults() *ManagedClientHealthIndicatorsBodyHealthIndicators`
|
||||
|
||||
NewManagedClientHealthIndicatorsBodyHealthIndicatorsWithDefaults instantiates a new ManagedClientHealthIndicatorsBodyHealthIndicators object
|
||||
This constructor will only assign default values to properties that have it defined,
|
||||
but it doesn't guarantee that properties required by API are set
|
||||
|
||||
### GetContainer
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) GetContainer() HealthIndicatorCategory`
|
||||
|
||||
GetContainer returns the Container field if non-nil, zero value otherwise.
|
||||
|
||||
### GetContainerOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) GetContainerOk() (*HealthIndicatorCategory, bool)`
|
||||
|
||||
GetContainerOk returns a tuple with the Container field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetContainer
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) SetContainer(v HealthIndicatorCategory)`
|
||||
|
||||
SetContainer sets Container field to given value.
|
||||
|
||||
### HasContainer
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) HasContainer() bool`
|
||||
|
||||
HasContainer returns a boolean if a field has been set.
|
||||
|
||||
### GetMemory
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) GetMemory() HealthIndicatorCategory`
|
||||
|
||||
GetMemory returns the Memory field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMemoryOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) GetMemoryOk() (*HealthIndicatorCategory, bool)`
|
||||
|
||||
GetMemoryOk returns a tuple with the Memory field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMemory
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) SetMemory(v HealthIndicatorCategory)`
|
||||
|
||||
SetMemory sets Memory field to given value.
|
||||
|
||||
### HasMemory
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) HasMemory() bool`
|
||||
|
||||
HasMemory returns a boolean if a field has been set.
|
||||
|
||||
### GetCpu
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) GetCpu() HealthIndicatorCategory`
|
||||
|
||||
GetCpu returns the Cpu field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCpuOk
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) GetCpuOk() (*HealthIndicatorCategory, bool)`
|
||||
|
||||
GetCpuOk returns a tuple with the Cpu field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCpu
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) SetCpu(v HealthIndicatorCategory)`
|
||||
|
||||
SetCpu sets Cpu field to given value.
|
||||
|
||||
### HasCpu
|
||||
|
||||
`func (o *ManagedClientHealthIndicatorsBodyHealthIndicators) HasCpu() bool`
|
||||
|
||||
HasCpu returns a boolean if a field has been set.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user