Documentation ¶
Overview ¶
+groupName=route53recoverycontrolconfig.aws.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 Cluster
- func (in *Cluster) DeepCopy() *Cluster
- func (in *Cluster) DeepCopyInto(out *Cluster)
- func (in *Cluster) DeepCopyObject() runtime.Object
- func (r *Cluster) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Cluster) ValidateCreate() error
- func (r *Cluster) ValidateDelete() error
- func (r *Cluster) ValidateUpdate(old runtime.Object) error
- type ClusterList
- type ClusterSpec
- type ClusterSpecClusterEndpoints
- type ClusterSpecResource
- type ClusterStatus
- type ControlPanel
- func (in *ControlPanel) DeepCopy() *ControlPanel
- func (in *ControlPanel) DeepCopyInto(out *ControlPanel)
- func (in *ControlPanel) DeepCopyObject() runtime.Object
- func (r *ControlPanel) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *ControlPanel) ValidateCreate() error
- func (r *ControlPanel) ValidateDelete() error
- func (r *ControlPanel) ValidateUpdate(old runtime.Object) error
- type ControlPanelList
- type ControlPanelSpec
- type ControlPanelSpecResource
- type ControlPanelStatus
- type RoutingControl
- func (in *RoutingControl) DeepCopy() *RoutingControl
- func (in *RoutingControl) DeepCopyInto(out *RoutingControl)
- func (in *RoutingControl) DeepCopyObject() runtime.Object
- func (r *RoutingControl) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *RoutingControl) ValidateCreate() error
- func (r *RoutingControl) ValidateDelete() error
- func (r *RoutingControl) ValidateUpdate(old runtime.Object) error
- type RoutingControlList
- type RoutingControlSpec
- type RoutingControlSpecResource
- type RoutingControlStatus
- type SafetyRule
- func (in *SafetyRule) DeepCopy() *SafetyRule
- func (in *SafetyRule) DeepCopyInto(out *SafetyRule)
- func (in *SafetyRule) DeepCopyObject() runtime.Object
- func (r *SafetyRule) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *SafetyRule) ValidateCreate() error
- func (r *SafetyRule) ValidateDelete() error
- func (r *SafetyRule) ValidateUpdate(old runtime.Object) error
- type SafetyRuleList
- type SafetyRuleSpec
- type SafetyRuleSpecResource
- type SafetyRuleSpecRuleConfig
- type SafetyRuleSpecRuleConfigCodec
- type SafetyRuleStatus
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: route53recoverycontrolconfig.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type Cluster ¶
type Cluster struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ClusterSpec `json:"spec,omitempty"` Status ClusterStatus `json:"status,omitempty"` }
func (*Cluster) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cluster.
func (*Cluster) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Cluster) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Cluster) SetupWebhookWithManager ¶
func (*Cluster) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Cluster) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type ClusterList ¶
type ClusterList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Cluster CRD objects Items []Cluster `json:"items,omitempty"` }
ClusterList is a list of Clusters
func (*ClusterList) DeepCopy ¶
func (in *ClusterList) DeepCopy() *ClusterList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterList.
func (*ClusterList) DeepCopyInto ¶
func (in *ClusterList) DeepCopyInto(out *ClusterList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterList) DeepCopyObject ¶
func (in *ClusterList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterSpec ¶
type ClusterSpec struct { State *ClusterSpecResource `json:"state,omitempty" tf:"-"` Resource ClusterSpecResource `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 (*ClusterSpec) DeepCopy ¶
func (in *ClusterSpec) DeepCopy() *ClusterSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSpec.
func (*ClusterSpec) DeepCopyInto ¶
func (in *ClusterSpec) DeepCopyInto(out *ClusterSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterSpecClusterEndpoints ¶
type ClusterSpecClusterEndpoints struct { // +optional Endpoint *string `json:"endpoint,omitempty" tf:"endpoint"` // +optional Region *string `json:"region,omitempty" tf:"region"` }
func (*ClusterSpecClusterEndpoints) DeepCopy ¶
func (in *ClusterSpecClusterEndpoints) DeepCopy() *ClusterSpecClusterEndpoints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSpecClusterEndpoints.
func (*ClusterSpecClusterEndpoints) DeepCopyInto ¶
func (in *ClusterSpecClusterEndpoints) DeepCopyInto(out *ClusterSpecClusterEndpoints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterSpecResource ¶
type ClusterSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` // +optional ClusterEndpoints []ClusterSpecClusterEndpoints `json:"clusterEndpoints,omitempty" tf:"cluster_endpoints"` Name *string `json:"name" tf:"name"` // +optional Status *string `json:"status,omitempty" tf:"status"` }
func (*ClusterSpecResource) DeepCopy ¶
func (in *ClusterSpecResource) DeepCopy() *ClusterSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSpecResource.
func (*ClusterSpecResource) DeepCopyInto ¶
func (in *ClusterSpecResource) DeepCopyInto(out *ClusterSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterStatus ¶
type ClusterStatus 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 (*ClusterStatus) DeepCopy ¶
func (in *ClusterStatus) DeepCopy() *ClusterStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterStatus.
func (*ClusterStatus) DeepCopyInto ¶
func (in *ClusterStatus) DeepCopyInto(out *ClusterStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControlPanel ¶
type ControlPanel struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ControlPanelSpec `json:"spec,omitempty"` Status ControlPanelStatus `json:"status,omitempty"` }
func (*ControlPanel) DeepCopy ¶
func (in *ControlPanel) DeepCopy() *ControlPanel
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControlPanel.
func (*ControlPanel) DeepCopyInto ¶
func (in *ControlPanel) DeepCopyInto(out *ControlPanel)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ControlPanel) DeepCopyObject ¶
func (in *ControlPanel) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ControlPanel) SetupWebhookWithManager ¶
func (r *ControlPanel) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*ControlPanel) ValidateCreate ¶
func (r *ControlPanel) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*ControlPanel) ValidateDelete ¶
func (r *ControlPanel) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*ControlPanel) ValidateUpdate ¶
func (r *ControlPanel) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type ControlPanelList ¶
type ControlPanelList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of ControlPanel CRD objects Items []ControlPanel `json:"items,omitempty"` }
ControlPanelList is a list of ControlPanels
func (*ControlPanelList) DeepCopy ¶
func (in *ControlPanelList) DeepCopy() *ControlPanelList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControlPanelList.
func (*ControlPanelList) DeepCopyInto ¶
func (in *ControlPanelList) DeepCopyInto(out *ControlPanelList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ControlPanelList) DeepCopyObject ¶
func (in *ControlPanelList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ControlPanelSpec ¶
type ControlPanelSpec struct { State *ControlPanelSpecResource `json:"state,omitempty" tf:"-"` Resource ControlPanelSpecResource `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 (*ControlPanelSpec) DeepCopy ¶
func (in *ControlPanelSpec) DeepCopy() *ControlPanelSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControlPanelSpec.
func (*ControlPanelSpec) DeepCopyInto ¶
func (in *ControlPanelSpec) DeepCopyInto(out *ControlPanelSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControlPanelSpecResource ¶
type ControlPanelSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` ClusterArn *string `json:"clusterArn" tf:"cluster_arn"` // +optional DefaultControlPanel *bool `json:"defaultControlPanel,omitempty" tf:"default_control_panel"` Name *string `json:"name" tf:"name"` // +optional RoutingControlCount *int64 `json:"routingControlCount,omitempty" tf:"routing_control_count"` // +optional Status *string `json:"status,omitempty" tf:"status"` }
func (*ControlPanelSpecResource) DeepCopy ¶
func (in *ControlPanelSpecResource) DeepCopy() *ControlPanelSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControlPanelSpecResource.
func (*ControlPanelSpecResource) DeepCopyInto ¶
func (in *ControlPanelSpecResource) DeepCopyInto(out *ControlPanelSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControlPanelStatus ¶
type ControlPanelStatus 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 (*ControlPanelStatus) DeepCopy ¶
func (in *ControlPanelStatus) DeepCopy() *ControlPanelStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControlPanelStatus.
func (*ControlPanelStatus) DeepCopyInto ¶
func (in *ControlPanelStatus) DeepCopyInto(out *ControlPanelStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RoutingControl ¶
type RoutingControl struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec RoutingControlSpec `json:"spec,omitempty"` Status RoutingControlStatus `json:"status,omitempty"` }
func (*RoutingControl) DeepCopy ¶
func (in *RoutingControl) DeepCopy() *RoutingControl
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoutingControl.
func (*RoutingControl) DeepCopyInto ¶
func (in *RoutingControl) DeepCopyInto(out *RoutingControl)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RoutingControl) DeepCopyObject ¶
func (in *RoutingControl) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*RoutingControl) SetupWebhookWithManager ¶
func (r *RoutingControl) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*RoutingControl) ValidateCreate ¶
func (r *RoutingControl) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*RoutingControl) ValidateDelete ¶
func (r *RoutingControl) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*RoutingControl) ValidateUpdate ¶
func (r *RoutingControl) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type RoutingControlList ¶
type RoutingControlList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of RoutingControl CRD objects Items []RoutingControl `json:"items,omitempty"` }
RoutingControlList is a list of RoutingControls
func (*RoutingControlList) DeepCopy ¶
func (in *RoutingControlList) DeepCopy() *RoutingControlList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoutingControlList.
func (*RoutingControlList) DeepCopyInto ¶
func (in *RoutingControlList) DeepCopyInto(out *RoutingControlList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RoutingControlList) DeepCopyObject ¶
func (in *RoutingControlList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RoutingControlSpec ¶
type RoutingControlSpec struct { State *RoutingControlSpecResource `json:"state,omitempty" tf:"-"` Resource RoutingControlSpecResource `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 (*RoutingControlSpec) DeepCopy ¶
func (in *RoutingControlSpec) DeepCopy() *RoutingControlSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoutingControlSpec.
func (*RoutingControlSpec) DeepCopyInto ¶
func (in *RoutingControlSpec) DeepCopyInto(out *RoutingControlSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RoutingControlSpecResource ¶
type RoutingControlSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` ClusterArn *string `json:"clusterArn" tf:"cluster_arn"` // +optional ControlPanelArn *string `json:"controlPanelArn,omitempty" tf:"control_panel_arn"` Name *string `json:"name" tf:"name"` // +optional Status *string `json:"status,omitempty" tf:"status"` }
func (*RoutingControlSpecResource) DeepCopy ¶
func (in *RoutingControlSpecResource) DeepCopy() *RoutingControlSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoutingControlSpecResource.
func (*RoutingControlSpecResource) DeepCopyInto ¶
func (in *RoutingControlSpecResource) DeepCopyInto(out *RoutingControlSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RoutingControlStatus ¶
type RoutingControlStatus 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 (*RoutingControlStatus) DeepCopy ¶
func (in *RoutingControlStatus) DeepCopy() *RoutingControlStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoutingControlStatus.
func (*RoutingControlStatus) DeepCopyInto ¶
func (in *RoutingControlStatus) DeepCopyInto(out *RoutingControlStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SafetyRule ¶
type SafetyRule struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec SafetyRuleSpec `json:"spec,omitempty"` Status SafetyRuleStatus `json:"status,omitempty"` }
func (*SafetyRule) DeepCopy ¶
func (in *SafetyRule) DeepCopy() *SafetyRule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SafetyRule.
func (*SafetyRule) DeepCopyInto ¶
func (in *SafetyRule) DeepCopyInto(out *SafetyRule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SafetyRule) DeepCopyObject ¶
func (in *SafetyRule) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*SafetyRule) SetupWebhookWithManager ¶
func (r *SafetyRule) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*SafetyRule) ValidateCreate ¶
func (r *SafetyRule) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*SafetyRule) ValidateDelete ¶
func (r *SafetyRule) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*SafetyRule) ValidateUpdate ¶
func (r *SafetyRule) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type SafetyRuleList ¶
type SafetyRuleList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of SafetyRule CRD objects Items []SafetyRule `json:"items,omitempty"` }
SafetyRuleList is a list of SafetyRules
func (*SafetyRuleList) DeepCopy ¶
func (in *SafetyRuleList) DeepCopy() *SafetyRuleList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SafetyRuleList.
func (*SafetyRuleList) DeepCopyInto ¶
func (in *SafetyRuleList) DeepCopyInto(out *SafetyRuleList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SafetyRuleList) DeepCopyObject ¶
func (in *SafetyRuleList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SafetyRuleSpec ¶
type SafetyRuleSpec struct { State *SafetyRuleSpecResource `json:"state,omitempty" tf:"-"` Resource SafetyRuleSpecResource `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 (*SafetyRuleSpec) DeepCopy ¶
func (in *SafetyRuleSpec) DeepCopy() *SafetyRuleSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SafetyRuleSpec.
func (*SafetyRuleSpec) DeepCopyInto ¶
func (in *SafetyRuleSpec) DeepCopyInto(out *SafetyRuleSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SafetyRuleSpecResource ¶
type SafetyRuleSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` // +optional AssertedControls []string `json:"assertedControls,omitempty" tf:"asserted_controls"` ControlPanelArn *string `json:"controlPanelArn" tf:"control_panel_arn"` // +optional GatingControls []string `json:"gatingControls,omitempty" tf:"gating_controls"` Name *string `json:"name" tf:"name"` RuleConfig *SafetyRuleSpecRuleConfig `json:"ruleConfig" tf:"rule_config"` // +optional Status *string `json:"status,omitempty" tf:"status"` // +optional TargetControls []string `json:"targetControls,omitempty" tf:"target_controls"` WaitPeriodMs *int64 `json:"waitPeriodMs" tf:"wait_period_ms"` }
func (*SafetyRuleSpecResource) DeepCopy ¶
func (in *SafetyRuleSpecResource) DeepCopy() *SafetyRuleSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SafetyRuleSpecResource.
func (*SafetyRuleSpecResource) DeepCopyInto ¶
func (in *SafetyRuleSpecResource) DeepCopyInto(out *SafetyRuleSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SafetyRuleSpecRuleConfig ¶
type SafetyRuleSpecRuleConfig struct { Inverted *bool `json:"inverted" tf:"inverted"` Threshold *int64 `json:"threshold" tf:"threshold"` Type *string `json:"type" tf:"type"` }
func (*SafetyRuleSpecRuleConfig) DeepCopy ¶
func (in *SafetyRuleSpecRuleConfig) DeepCopy() *SafetyRuleSpecRuleConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SafetyRuleSpecRuleConfig.
func (*SafetyRuleSpecRuleConfig) DeepCopyInto ¶
func (in *SafetyRuleSpecRuleConfig) DeepCopyInto(out *SafetyRuleSpecRuleConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SafetyRuleSpecRuleConfigCodec ¶
type SafetyRuleSpecRuleConfigCodec struct { }
+k8s:deepcopy-gen=false
func (SafetyRuleSpecRuleConfigCodec) Decode ¶
func (SafetyRuleSpecRuleConfigCodec) Decode(ptr unsafe.Pointer, iter *jsoniter.Iterator)
type SafetyRuleStatus ¶
type SafetyRuleStatus 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 (*SafetyRuleStatus) DeepCopy ¶
func (in *SafetyRuleStatus) DeepCopy() *SafetyRuleStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SafetyRuleStatus.
func (*SafetyRuleStatus) DeepCopyInto ¶
func (in *SafetyRuleStatus) DeepCopyInto(out *SafetyRuleStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.