-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_managedhsmproperties.go
38 lines (32 loc) · 1.95 KB
/
model_managedhsmproperties.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
37
38
package managedhsms
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 ManagedHsmProperties struct {
CreateMode *CreateMode `json:"createMode,omitempty"`
EnablePurgeProtection *bool `json:"enablePurgeProtection,omitempty"`
EnableSoftDelete *bool `json:"enableSoftDelete,omitempty"`
HsmUri *string `json:"hsmUri,omitempty"`
InitialAdminObjectIds *[]string `json:"initialAdminObjectIds,omitempty"`
NetworkAcls *MHSMNetworkRuleSet `json:"networkAcls,omitempty"`
PrivateEndpointConnections *[]MHSMPrivateEndpointConnectionItem `json:"privateEndpointConnections,omitempty"`
ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"`
PublicNetworkAccess *PublicNetworkAccess `json:"publicNetworkAccess,omitempty"`
ScheduledPurgeDate *string `json:"scheduledPurgeDate,omitempty"`
SoftDeleteRetentionInDays *int64 `json:"softDeleteRetentionInDays,omitempty"`
StatusMessage *string `json:"statusMessage,omitempty"`
TenantId *string `json:"tenantId,omitempty"`
}
func (o *ManagedHsmProperties) GetScheduledPurgeDateAsTime() (*time.Time, error) {
if o.ScheduledPurgeDate == nil {
return nil, nil
}
return dates.ParseAsFormat(o.ScheduledPurgeDate, "2006-01-02T15:04:05Z07:00")
}
func (o *ManagedHsmProperties) SetScheduledPurgeDateAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.ScheduledPurgeDate = &formatted
}