Documentation ¶
Overview ¶
+groupName=publicip.azurerm.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 Prefix
- func (in *Prefix) DeepCopy() *Prefix
- func (in *Prefix) DeepCopyInto(out *Prefix)
- func (in *Prefix) DeepCopyObject() runtime.Object
- func (r *Prefix) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Prefix) ValidateCreate() error
- func (r *Prefix) ValidateDelete() error
- func (r *Prefix) ValidateUpdate(old runtime.Object) error
- type PrefixList
- type PrefixSpec
- type PrefixSpecResource
- type PrefixStatus
- type PublicIP
- func (in *PublicIP) DeepCopy() *PublicIP
- func (in *PublicIP) DeepCopyInto(out *PublicIP)
- func (in *PublicIP) DeepCopyObject() runtime.Object
- func (r *PublicIP) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *PublicIP) ValidateCreate() error
- func (r *PublicIP) ValidateDelete() error
- func (r *PublicIP) ValidateUpdate(old runtime.Object) error
- type PublicIPList
- type PublicIPSpec
- type PublicIPSpecResource
- type PublicIPStatus
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: publicip.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 Prefix ¶
type Prefix struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec PrefixSpec `json:"spec,omitempty"` Status PrefixStatus `json:"status,omitempty"` }
func (*Prefix) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Prefix.
func (*Prefix) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Prefix) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Prefix) SetupWebhookWithManager ¶
func (*Prefix) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Prefix) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type PrefixList ¶
type PrefixList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Prefix CRD objects Items []Prefix `json:"items,omitempty"` }
PrefixList is a list of Prefixs
func (*PrefixList) DeepCopy ¶
func (in *PrefixList) DeepCopy() *PrefixList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrefixList.
func (*PrefixList) DeepCopyInto ¶
func (in *PrefixList) DeepCopyInto(out *PrefixList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PrefixList) DeepCopyObject ¶
func (in *PrefixList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PrefixSpec ¶
type PrefixSpec struct { State *PrefixSpecResource `json:"state,omitempty" tf:"-"` Resource PrefixSpecResource `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 (*PrefixSpec) DeepCopy ¶
func (in *PrefixSpec) DeepCopy() *PrefixSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrefixSpec.
func (*PrefixSpec) DeepCopyInto ¶
func (in *PrefixSpec) DeepCopyInto(out *PrefixSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrefixSpecResource ¶
type PrefixSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional AvailabilityZone *string `json:"availabilityZone,omitempty" tf:"availability_zone"` // +optional IpPrefix *string `json:"ipPrefix,omitempty" tf:"ip_prefix"` // +optional IpVersion *string `json:"ipVersion,omitempty" tf:"ip_version"` Location *string `json:"location" tf:"location"` Name *string `json:"name" tf:"name"` // +optional PrefixLength *int64 `json:"prefixLength,omitempty" tf:"prefix_length"` ResourceGroupName *string `json:"resourceGroupName" tf:"resource_group_name"` // +optional Sku *string `json:"sku,omitempty" tf:"sku"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional // Deprecated Zones []string `json:"zones,omitempty" tf:"zones"` }
func (*PrefixSpecResource) DeepCopy ¶
func (in *PrefixSpecResource) DeepCopy() *PrefixSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrefixSpecResource.
func (*PrefixSpecResource) DeepCopyInto ¶
func (in *PrefixSpecResource) DeepCopyInto(out *PrefixSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrefixStatus ¶
type PrefixStatus 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 (*PrefixStatus) DeepCopy ¶
func (in *PrefixStatus) DeepCopy() *PrefixStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrefixStatus.
func (*PrefixStatus) DeepCopyInto ¶
func (in *PrefixStatus) DeepCopyInto(out *PrefixStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PublicIP ¶
type PublicIP struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec PublicIPSpec `json:"spec,omitempty"` Status PublicIPStatus `json:"status,omitempty"` }
func (*PublicIP) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PublicIP.
func (*PublicIP) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PublicIP) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*PublicIP) SetupWebhookWithManager ¶
func (*PublicIP) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*PublicIP) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type PublicIPList ¶
type PublicIPList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of PublicIP CRD objects Items []PublicIP `json:"items,omitempty"` }
PublicIPList is a list of PublicIPs
func (*PublicIPList) DeepCopy ¶
func (in *PublicIPList) DeepCopy() *PublicIPList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PublicIPList.
func (*PublicIPList) DeepCopyInto ¶
func (in *PublicIPList) DeepCopyInto(out *PublicIPList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PublicIPList) DeepCopyObject ¶
func (in *PublicIPList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PublicIPSpec ¶
type PublicIPSpec struct { State *PublicIPSpecResource `json:"state,omitempty" tf:"-"` Resource PublicIPSpecResource `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 (*PublicIPSpec) DeepCopy ¶
func (in *PublicIPSpec) DeepCopy() *PublicIPSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PublicIPSpec.
func (*PublicIPSpec) DeepCopyInto ¶
func (in *PublicIPSpec) DeepCopyInto(out *PublicIPSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PublicIPSpecResource ¶
type PublicIPSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` AllocationMethod *string `json:"allocationMethod" tf:"allocation_method"` // +optional AvailabilityZone *string `json:"availabilityZone,omitempty" tf:"availability_zone"` // +optional DomainNameLabel *string `json:"domainNameLabel,omitempty" tf:"domain_name_label"` // +optional Fqdn *string `json:"fqdn,omitempty" tf:"fqdn"` // +optional IdleTimeoutInMinutes *int64 `json:"idleTimeoutInMinutes,omitempty" tf:"idle_timeout_in_minutes"` // +optional IpAddress *string `json:"ipAddress,omitempty" tf:"ip_address"` // +optional IpTags *map[string]string `json:"ipTags,omitempty" tf:"ip_tags"` // +optional IpVersion *string `json:"ipVersion,omitempty" tf:"ip_version"` Location *string `json:"location" tf:"location"` Name *string `json:"name" tf:"name"` // +optional PublicIPPrefixID *string `json:"publicIPPrefixID,omitempty" tf:"public_ip_prefix_id"` ResourceGroupName *string `json:"resourceGroupName" tf:"resource_group_name"` // +optional ReverseFqdn *string `json:"reverseFqdn,omitempty" tf:"reverse_fqdn"` // +optional Sku *string `json:"sku,omitempty" tf:"sku"` // +optional SkuTier *string `json:"skuTier,omitempty" tf:"sku_tier"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional // Deprecated Zones []string `json:"zones,omitempty" tf:"zones"` }
func (*PublicIPSpecResource) DeepCopy ¶
func (in *PublicIPSpecResource) DeepCopy() *PublicIPSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PublicIPSpecResource.
func (*PublicIPSpecResource) DeepCopyInto ¶
func (in *PublicIPSpecResource) DeepCopyInto(out *PublicIPSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PublicIPStatus ¶
type PublicIPStatus 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 (*PublicIPStatus) DeepCopy ¶
func (in *PublicIPStatus) DeepCopy() *PublicIPStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PublicIPStatus.
func (*PublicIPStatus) DeepCopyInto ¶
func (in *PublicIPStatus) DeepCopyInto(out *PublicIPStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.