-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_eventsubscriptionupdateparameters.go
76 lines (64 loc) · 3.03 KB
/
model_eventsubscriptionupdateparameters.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package eventsubscriptions
import (
"encoding/json"
"fmt"
"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 EventSubscriptionUpdateParameters struct {
DeadLetterDestination DeadLetterDestination `json:"deadLetterDestination"`
DeadLetterWithResourceIdentity *DeadLetterWithResourceIdentity `json:"deadLetterWithResourceIdentity,omitempty"`
DeliveryWithResourceIdentity *DeliveryWithResourceIdentity `json:"deliveryWithResourceIdentity,omitempty"`
Destination EventSubscriptionDestination `json:"destination"`
EventDeliverySchema *EventDeliverySchema `json:"eventDeliverySchema,omitempty"`
ExpirationTimeUtc *string `json:"expirationTimeUtc,omitempty"`
Filter *EventSubscriptionFilter `json:"filter,omitempty"`
Labels *[]string `json:"labels,omitempty"`
RetryPolicy *RetryPolicy `json:"retryPolicy,omitempty"`
}
func (o *EventSubscriptionUpdateParameters) GetExpirationTimeUtcAsTime() (*time.Time, error) {
if o.ExpirationTimeUtc == nil {
return nil, nil
}
return dates.ParseAsFormat(o.ExpirationTimeUtc, "2006-01-02T15:04:05Z07:00")
}
func (o *EventSubscriptionUpdateParameters) SetExpirationTimeUtcAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.ExpirationTimeUtc = &formatted
}
var _ json.Unmarshaler = &EventSubscriptionUpdateParameters{}
func (s *EventSubscriptionUpdateParameters) UnmarshalJSON(bytes []byte) error {
type alias EventSubscriptionUpdateParameters
var decoded alias
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling into EventSubscriptionUpdateParameters: %+v", err)
}
s.DeadLetterWithResourceIdentity = decoded.DeadLetterWithResourceIdentity
s.DeliveryWithResourceIdentity = decoded.DeliveryWithResourceIdentity
s.EventDeliverySchema = decoded.EventDeliverySchema
s.ExpirationTimeUtc = decoded.ExpirationTimeUtc
s.Filter = decoded.Filter
s.Labels = decoded.Labels
s.RetryPolicy = decoded.RetryPolicy
var temp map[string]json.RawMessage
if err := json.Unmarshal(bytes, &temp); err != nil {
return fmt.Errorf("unmarshaling EventSubscriptionUpdateParameters into map[string]json.RawMessage: %+v", err)
}
if v, ok := temp["deadLetterDestination"]; ok {
impl, err := unmarshalDeadLetterDestinationImplementation(v)
if err != nil {
return fmt.Errorf("unmarshaling field 'DeadLetterDestination' for 'EventSubscriptionUpdateParameters': %+v", err)
}
s.DeadLetterDestination = impl
}
if v, ok := temp["destination"]; ok {
impl, err := unmarshalEventSubscriptionDestinationImplementation(v)
if err != nil {
return fmt.Errorf("unmarshaling field 'Destination' for 'EventSubscriptionUpdateParameters': %+v", err)
}
s.Destination = impl
}
return nil
}