-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_clusterreportedproperties.go
36 lines (30 loc) · 1.42 KB
/
model_clusterreportedproperties.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package clusters
import (
"time"
"github.com/hashicorp/go-azure-helpers/lang/dates"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type ClusterReportedProperties struct {
ClusterId *string `json:"clusterId,omitempty"`
ClusterName *string `json:"clusterName,omitempty"`
ClusterType *ClusterNodeType `json:"clusterType,omitempty"`
ClusterVersion *string `json:"clusterVersion,omitempty"`
DiagnosticLevel *DiagnosticLevel `json:"diagnosticLevel,omitempty"`
ImdsAttestation *ImdsAttestation `json:"imdsAttestation,omitempty"`
LastUpdated *string `json:"lastUpdated,omitempty"`
Manufacturer *string `json:"manufacturer,omitempty"`
Nodes *[]ClusterNode `json:"nodes,omitempty"`
OemActivation *OemActivation `json:"oemActivation,omitempty"`
SupportedCapabilities *[]string `json:"supportedCapabilities,omitempty"`
}
func (o *ClusterReportedProperties) GetLastUpdatedAsTime() (*time.Time, error) {
if o.LastUpdated == nil {
return nil, nil
}
return dates.ParseAsFormat(o.LastUpdated, "2006-01-02T15:04:05Z07:00")
}
func (o *ClusterReportedProperties) SetLastUpdatedAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.LastUpdated = &formatted
}