-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_generated.managed.go
84 lines (68 loc) · 2.58 KB
/
zz_generated.managed.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
77
78
79
80
81
82
83
84
/*
Copyright 2022 Upbound Inc.
*/
// Code generated by angryjet. DO NOT EDIT.
package v1beta1
import xpv1 "github.com/crossplane/crossplane-runtime/apis/common/v1"
// GetCondition of this EventIntegration.
func (mg *EventIntegration) GetCondition(ct xpv1.ConditionType) xpv1.Condition {
return mg.Status.GetCondition(ct)
}
// GetDeletionPolicy of this EventIntegration.
func (mg *EventIntegration) GetDeletionPolicy() xpv1.DeletionPolicy {
return mg.Spec.DeletionPolicy
}
// GetManagementPolicy of this EventIntegration.
func (mg *EventIntegration) GetManagementPolicy() xpv1.ManagementPolicy {
return mg.Spec.ManagementPolicy
}
// GetProviderConfigReference of this EventIntegration.
func (mg *EventIntegration) GetProviderConfigReference() *xpv1.Reference {
return mg.Spec.ProviderConfigReference
}
/*
GetProviderReference of this EventIntegration.
Deprecated: Use GetProviderConfigReference.
*/
func (mg *EventIntegration) GetProviderReference() *xpv1.Reference {
return mg.Spec.ProviderReference
}
// GetPublishConnectionDetailsTo of this EventIntegration.
func (mg *EventIntegration) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo {
return mg.Spec.PublishConnectionDetailsTo
}
// GetWriteConnectionSecretToReference of this EventIntegration.
func (mg *EventIntegration) GetWriteConnectionSecretToReference() *xpv1.SecretReference {
return mg.Spec.WriteConnectionSecretToReference
}
// SetConditions of this EventIntegration.
func (mg *EventIntegration) SetConditions(c ...xpv1.Condition) {
mg.Status.SetConditions(c...)
}
// SetDeletionPolicy of this EventIntegration.
func (mg *EventIntegration) SetDeletionPolicy(r xpv1.DeletionPolicy) {
mg.Spec.DeletionPolicy = r
}
// SetManagementPolicy of this EventIntegration.
func (mg *EventIntegration) SetManagementPolicy(r xpv1.ManagementPolicy) {
mg.Spec.ManagementPolicy = r
}
// SetProviderConfigReference of this EventIntegration.
func (mg *EventIntegration) SetProviderConfigReference(r *xpv1.Reference) {
mg.Spec.ProviderConfigReference = r
}
/*
SetProviderReference of this EventIntegration.
Deprecated: Use SetProviderConfigReference.
*/
func (mg *EventIntegration) SetProviderReference(r *xpv1.Reference) {
mg.Spec.ProviderReference = r
}
// SetPublishConnectionDetailsTo of this EventIntegration.
func (mg *EventIntegration) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo) {
mg.Spec.PublishConnectionDetailsTo = r
}
// SetWriteConnectionSecretToReference of this EventIntegration.
func (mg *EventIntegration) SetWriteConnectionSecretToReference(r *xpv1.SecretReference) {
mg.Spec.WriteConnectionSecretToReference = r
}