Documentation
¶
Overview ¶
+groupName=essential.google.kubeform.com
Index ¶
- Variables
- func GetDecoder() map[string]jsoniter.ValDecoder
- func GetEncoder() map[string]jsoniter.ValEncoder
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type ContactsContact
- func (in *ContactsContact) DeepCopy() *ContactsContact
- func (in *ContactsContact) DeepCopyInto(out *ContactsContact)
- func (in *ContactsContact) DeepCopyObject() runtime.Object
- func (r *ContactsContact) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *ContactsContact) ValidateCreate() error
- func (r *ContactsContact) ValidateDelete() error
- func (r *ContactsContact) ValidateUpdate(old runtime.Object) error
- type ContactsContactList
- type ContactsContactSpec
- type ContactsContactSpecResource
- type ContactsContactStatus
Constants ¶
This section is empty.
Variables ¶
var ( // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. SchemeBuilder runtime.SchemeBuilder AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: essential.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Kind ¶
Kind takes an unqualified kind and returns a Group qualified GroupKind
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type ContactsContact ¶
type ContactsContact struct {
metav1.TypeMeta `json:",inline,omitempty"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec ContactsContactSpec `json:"spec,omitempty"`
Status ContactsContactStatus `json:"status,omitempty"`
}
func (*ContactsContact) DeepCopy ¶
func (in *ContactsContact) DeepCopy() *ContactsContact
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContactsContact.
func (*ContactsContact) DeepCopyInto ¶
func (in *ContactsContact) DeepCopyInto(out *ContactsContact)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ContactsContact) DeepCopyObject ¶
func (in *ContactsContact) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ContactsContact) SetupWebhookWithManager ¶
func (r *ContactsContact) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*ContactsContact) ValidateCreate ¶
func (r *ContactsContact) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*ContactsContact) ValidateDelete ¶
func (r *ContactsContact) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*ContactsContact) ValidateUpdate ¶
func (r *ContactsContact) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type ContactsContactList ¶
type ContactsContactList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
// Items is a list of ContactsContact CRD objects
Items []ContactsContact `json:"items,omitempty"`
}
ContactsContactList is a list of ContactsContacts
func (*ContactsContactList) DeepCopy ¶
func (in *ContactsContactList) DeepCopy() *ContactsContactList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContactsContactList.
func (*ContactsContactList) DeepCopyInto ¶
func (in *ContactsContactList) DeepCopyInto(out *ContactsContactList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ContactsContactList) DeepCopyObject ¶
func (in *ContactsContactList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ContactsContactSpec ¶
type ContactsContactSpec struct {
State *ContactsContactSpecResource `json:"state,omitempty" tf:"-"`
Resource ContactsContactSpecResource `json:"resource" tf:"resource"`
UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"`
TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"`
ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"`
BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"`
}
func (*ContactsContactSpec) DeepCopy ¶
func (in *ContactsContactSpec) DeepCopy() *ContactsContactSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContactsContactSpec.
func (*ContactsContactSpec) DeepCopyInto ¶
func (in *ContactsContactSpec) DeepCopyInto(out *ContactsContactSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContactsContactSpecResource ¶
type ContactsContactSpecResource struct {
Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"`
ID string `json:"id,omitempty" tf:"id,omitempty"`
// The email address to send notifications to. This does not need to be a Google account.
Email *string `json:"email" tf:"email"`
// The preferred language for notifications, as a ISO 639-1 language code. See Supported languages for a list of supported languages.
LanguageTag *string `json:"languageTag" tf:"language_tag"`
// The identifier for the contact. Format: {resourceType}/{resource_id}/contacts/{contact_id}
// +optional
Name *string `json:"name,omitempty" tf:"name"`
// The categories of notifications that the contact will receive communications for.
NotificationCategorySubscriptions []string `json:"notificationCategorySubscriptions" tf:"notification_category_subscriptions"`
// The resource to save this contact for. Format: organizations/{organization_id}, folders/{folder_id} or projects/{project_id}
Parent *string `json:"parent" tf:"parent"`
}
func (*ContactsContactSpecResource) DeepCopy ¶
func (in *ContactsContactSpecResource) DeepCopy() *ContactsContactSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContactsContactSpecResource.
func (*ContactsContactSpecResource) DeepCopyInto ¶
func (in *ContactsContactSpecResource) DeepCopyInto(out *ContactsContactSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContactsContactStatus ¶
type ContactsContactStatus struct {
// Resource generation, which is updated on mutation by the API Server.
// +optional
ObservedGeneration int64 `json:"observedGeneration,omitempty"`
// +optional
Phase status.Status `json:"phase,omitempty"`
// +optional
Conditions []kmapi.Condition `json:"conditions,omitempty"`
}
func (*ContactsContactStatus) DeepCopy ¶
func (in *ContactsContactStatus) DeepCopy() *ContactsContactStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContactsContactStatus.
func (*ContactsContactStatus) DeepCopyInto ¶
func (in *ContactsContactStatus) DeepCopyInto(out *ContactsContactStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
Source Files
¶
- codec.go
- contacts_contact_types.go
- contacts_contact_webhook.go
- doc.go
- register.go
- zz_generated.deepcopy.go