Documentation ¶
Overview ¶
+groupName=business.pagerduty.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 Service
- func (in *Service) DeepCopy() *Service
- func (in *Service) DeepCopyInto(out *Service)
- func (in *Service) DeepCopyObject() runtime.Object
- func (r *Service) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Service) ValidateCreate() error
- func (r *Service) ValidateDelete() error
- func (r *Service) ValidateUpdate(old runtime.Object) error
- type ServiceList
- type ServiceSpec
- type ServiceSpecResource
- type ServiceStatus
- type ServiceSubscriber
- func (in *ServiceSubscriber) DeepCopy() *ServiceSubscriber
- func (in *ServiceSubscriber) DeepCopyInto(out *ServiceSubscriber)
- func (in *ServiceSubscriber) DeepCopyObject() runtime.Object
- func (r *ServiceSubscriber) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *ServiceSubscriber) ValidateCreate() error
- func (r *ServiceSubscriber) ValidateDelete() error
- func (r *ServiceSubscriber) ValidateUpdate(old runtime.Object) error
- type ServiceSubscriberList
- type ServiceSubscriberSpec
- type ServiceSubscriberSpecResource
- type ServiceSubscriberStatus
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: business.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 Service ¶
type Service struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServiceSpec `json:"spec,omitempty"` Status ServiceStatus `json:"status,omitempty"` }
func (*Service) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Service.
func (*Service) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Service) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Service) SetupWebhookWithManager ¶
func (*Service) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Service) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type ServiceList ¶
type ServiceList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Service CRD objects Items []Service `json:"items,omitempty"` }
ServiceList is a list of Services
func (*ServiceList) DeepCopy ¶
func (in *ServiceList) DeepCopy() *ServiceList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceList.
func (*ServiceList) DeepCopyInto ¶
func (in *ServiceList) DeepCopyInto(out *ServiceList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceList) DeepCopyObject ¶
func (in *ServiceList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceSpec ¶
type ServiceSpec struct { State *ServiceSpecResource `json:"state,omitempty" tf:"-"` Resource ServiceSpecResource `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 (*ServiceSpec) DeepCopy ¶
func (in *ServiceSpec) DeepCopy() *ServiceSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSpec.
func (*ServiceSpec) DeepCopyInto ¶
func (in *ServiceSpec) DeepCopyInto(out *ServiceSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceSpecResource ¶
type ServiceSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Description *string `json:"description,omitempty" tf:"description"` // +optional HtmlURL *string `json:"htmlURL,omitempty" tf:"html_url"` Name *string `json:"name" tf:"name"` // +optional PointOfContact *string `json:"pointOfContact,omitempty" tf:"point_of_contact"` // +optional Self *string `json:"self,omitempty" tf:"self"` // +optional Summary *string `json:"summary,omitempty" tf:"summary"` // +optional Team *string `json:"team,omitempty" tf:"team"` // +optional // Deprecated Type *string `json:"type,omitempty" tf:"type"` }
func (*ServiceSpecResource) DeepCopy ¶
func (in *ServiceSpecResource) DeepCopy() *ServiceSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSpecResource.
func (*ServiceSpecResource) DeepCopyInto ¶
func (in *ServiceSpecResource) DeepCopyInto(out *ServiceSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceStatus ¶
type ServiceStatus 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 (*ServiceStatus) DeepCopy ¶
func (in *ServiceStatus) DeepCopy() *ServiceStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceStatus.
func (*ServiceStatus) DeepCopyInto ¶
func (in *ServiceStatus) DeepCopyInto(out *ServiceStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceSubscriber ¶ added in v0.5.0
type ServiceSubscriber struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServiceSubscriberSpec `json:"spec,omitempty"` Status ServiceSubscriberStatus `json:"status,omitempty"` }
func (*ServiceSubscriber) DeepCopy ¶ added in v0.5.0
func (in *ServiceSubscriber) DeepCopy() *ServiceSubscriber
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSubscriber.
func (*ServiceSubscriber) DeepCopyInto ¶ added in v0.5.0
func (in *ServiceSubscriber) DeepCopyInto(out *ServiceSubscriber)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceSubscriber) DeepCopyObject ¶ added in v0.5.0
func (in *ServiceSubscriber) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ServiceSubscriber) SetupWebhookWithManager ¶ added in v0.5.0
func (r *ServiceSubscriber) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*ServiceSubscriber) ValidateCreate ¶ added in v0.5.0
func (r *ServiceSubscriber) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*ServiceSubscriber) ValidateDelete ¶ added in v0.5.0
func (r *ServiceSubscriber) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*ServiceSubscriber) ValidateUpdate ¶ added in v0.5.0
func (r *ServiceSubscriber) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type ServiceSubscriberList ¶ added in v0.5.0
type ServiceSubscriberList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of ServiceSubscriber CRD objects Items []ServiceSubscriber `json:"items,omitempty"` }
ServiceSubscriberList is a list of ServiceSubscribers
func (*ServiceSubscriberList) DeepCopy ¶ added in v0.5.0
func (in *ServiceSubscriberList) DeepCopy() *ServiceSubscriberList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSubscriberList.
func (*ServiceSubscriberList) DeepCopyInto ¶ added in v0.5.0
func (in *ServiceSubscriberList) DeepCopyInto(out *ServiceSubscriberList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceSubscriberList) DeepCopyObject ¶ added in v0.5.0
func (in *ServiceSubscriberList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceSubscriberSpec ¶ added in v0.5.0
type ServiceSubscriberSpec struct { State *ServiceSubscriberSpecResource `json:"state,omitempty" tf:"-"` Resource ServiceSubscriberSpecResource `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 (*ServiceSubscriberSpec) DeepCopy ¶ added in v0.5.0
func (in *ServiceSubscriberSpec) DeepCopy() *ServiceSubscriberSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSubscriberSpec.
func (*ServiceSubscriberSpec) DeepCopyInto ¶ added in v0.5.0
func (in *ServiceSubscriberSpec) DeepCopyInto(out *ServiceSubscriberSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceSubscriberSpecResource ¶ added in v0.5.0
type ServiceSubscriberSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` BusinessServiceID *string `json:"businessServiceID" tf:"business_service_id"` SubscriberID *string `json:"subscriberID" tf:"subscriber_id"` SubscriberType *string `json:"subscriberType" tf:"subscriber_type"` }
func (*ServiceSubscriberSpecResource) DeepCopy ¶ added in v0.5.0
func (in *ServiceSubscriberSpecResource) DeepCopy() *ServiceSubscriberSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSubscriberSpecResource.
func (*ServiceSubscriberSpecResource) DeepCopyInto ¶ added in v0.5.0
func (in *ServiceSubscriberSpecResource) DeepCopyInto(out *ServiceSubscriberSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceSubscriberStatus ¶ added in v0.5.0
type ServiceSubscriberStatus 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 (*ServiceSubscriberStatus) DeepCopy ¶ added in v0.5.0
func (in *ServiceSubscriberStatus) DeepCopy() *ServiceSubscriberStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSubscriberStatus.
func (*ServiceSubscriberStatus) DeepCopyInto ¶ added in v0.5.0
func (in *ServiceSubscriberStatus) DeepCopyInto(out *ServiceSubscriberStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.