| Name | Type | Description | Notes |
|---|---|---|---|
| Timestamp | time.Time | ||
| Message | string | ||
| Highlights | []KubernetesLogHighlight | ||
| PodName | string | ||
| PodUID | string | ||
| ContainerName | string | ||
| Severity | LogSeverity | [default to LOGSEVERITY_OTHER] | |
| Level | LogLevel | [default to LOGLEVEL_UNKNOWN] |
func NewKubernetesLogRecord(timestamp time.Time, message string, highlights []KubernetesLogHighlight, podName string, podUID string, containerName string, severity LogSeverity, level LogLevel, ) *KubernetesLogRecord
NewKubernetesLogRecord instantiates a new KubernetesLogRecord 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
func NewKubernetesLogRecordWithDefaults() *KubernetesLogRecord
NewKubernetesLogRecordWithDefaults instantiates a new KubernetesLogRecord 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
func (o *KubernetesLogRecord) GetTimestamp() time.Time
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetTimestampOk() (*time.Time, 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.
func (o *KubernetesLogRecord) SetTimestamp(v time.Time)
SetTimestamp sets Timestamp field to given value.
func (o *KubernetesLogRecord) GetMessage() string
GetMessage returns the Message field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetMessageOk() (*string, bool)
GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *KubernetesLogRecord) SetMessage(v string)
SetMessage sets Message field to given value.
func (o *KubernetesLogRecord) GetHighlights() []KubernetesLogHighlight
GetHighlights returns the Highlights field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetHighlightsOk() (*[]KubernetesLogHighlight, bool)
GetHighlightsOk returns a tuple with the Highlights field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *KubernetesLogRecord) SetHighlights(v []KubernetesLogHighlight)
SetHighlights sets Highlights field to given value.
func (o *KubernetesLogRecord) GetPodName() string
GetPodName returns the PodName field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetPodNameOk() (*string, bool)
GetPodNameOk returns a tuple with the PodName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *KubernetesLogRecord) SetPodName(v string)
SetPodName sets PodName field to given value.
func (o *KubernetesLogRecord) GetPodUID() string
GetPodUID returns the PodUID field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetPodUIDOk() (*string, bool)
GetPodUIDOk returns a tuple with the PodUID field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *KubernetesLogRecord) SetPodUID(v string)
SetPodUID sets PodUID field to given value.
func (o *KubernetesLogRecord) GetContainerName() string
GetContainerName returns the ContainerName field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetContainerNameOk() (*string, bool)
GetContainerNameOk returns a tuple with the ContainerName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *KubernetesLogRecord) SetContainerName(v string)
SetContainerName sets ContainerName field to given value.
func (o *KubernetesLogRecord) GetSeverity() LogSeverity
GetSeverity returns the Severity field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetSeverityOk() (*LogSeverity, bool)
GetSeverityOk returns a tuple with the Severity field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *KubernetesLogRecord) SetSeverity(v LogSeverity)
SetSeverity sets Severity field to given value.
func (o *KubernetesLogRecord) GetLevel() LogLevel
GetLevel returns the Level field if non-nil, zero value otherwise.
func (o *KubernetesLogRecord) GetLevelOk() (*LogLevel, bool)
GetLevelOk returns a tuple with the Level field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *KubernetesLogRecord) SetLevel(v LogLevel)
SetLevel sets Level field to given value.