Documentation ¶
Overview ¶
+groupName=integration.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 ServiceEnvironment
- func (in *ServiceEnvironment) DeepCopy() *ServiceEnvironment
- func (in *ServiceEnvironment) DeepCopyInto(out *ServiceEnvironment)
- func (in *ServiceEnvironment) DeepCopyObject() runtime.Object
- func (r *ServiceEnvironment) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *ServiceEnvironment) ValidateCreate() error
- func (r *ServiceEnvironment) ValidateDelete() error
- func (r *ServiceEnvironment) ValidateUpdate(old runtime.Object) error
- type ServiceEnvironmentList
- type ServiceEnvironmentSpec
- type ServiceEnvironmentSpecResource
- type ServiceEnvironmentStatus
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: integration.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 ServiceEnvironment ¶
type ServiceEnvironment struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServiceEnvironmentSpec `json:"spec,omitempty"` Status ServiceEnvironmentStatus `json:"status,omitempty"` }
func (*ServiceEnvironment) DeepCopy ¶
func (in *ServiceEnvironment) DeepCopy() *ServiceEnvironment
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceEnvironment.
func (*ServiceEnvironment) DeepCopyInto ¶
func (in *ServiceEnvironment) DeepCopyInto(out *ServiceEnvironment)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceEnvironment) DeepCopyObject ¶
func (in *ServiceEnvironment) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ServiceEnvironment) SetupWebhookWithManager ¶
func (r *ServiceEnvironment) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*ServiceEnvironment) ValidateCreate ¶
func (r *ServiceEnvironment) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*ServiceEnvironment) ValidateDelete ¶
func (r *ServiceEnvironment) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*ServiceEnvironment) ValidateUpdate ¶
func (r *ServiceEnvironment) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type ServiceEnvironmentList ¶
type ServiceEnvironmentList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of ServiceEnvironment CRD objects Items []ServiceEnvironment `json:"items,omitempty"` }
ServiceEnvironmentList is a list of ServiceEnvironments
func (*ServiceEnvironmentList) DeepCopy ¶
func (in *ServiceEnvironmentList) DeepCopy() *ServiceEnvironmentList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceEnvironmentList.
func (*ServiceEnvironmentList) DeepCopyInto ¶
func (in *ServiceEnvironmentList) DeepCopyInto(out *ServiceEnvironmentList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceEnvironmentList) DeepCopyObject ¶
func (in *ServiceEnvironmentList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceEnvironmentSpec ¶
type ServiceEnvironmentSpec struct { State *ServiceEnvironmentSpecResource `json:"state,omitempty" tf:"-"` Resource ServiceEnvironmentSpecResource `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 (*ServiceEnvironmentSpec) DeepCopy ¶
func (in *ServiceEnvironmentSpec) DeepCopy() *ServiceEnvironmentSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceEnvironmentSpec.
func (*ServiceEnvironmentSpec) DeepCopyInto ¶
func (in *ServiceEnvironmentSpec) DeepCopyInto(out *ServiceEnvironmentSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceEnvironmentSpecResource ¶
type ServiceEnvironmentSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` AccessEndpointType *string `json:"accessEndpointType" tf:"access_endpoint_type"` // +optional ConnectorEndpointIPAddresses []string `json:"connectorEndpointIPAddresses,omitempty" tf:"connector_endpoint_ip_addresses"` // +optional ConnectorOutboundIPAddresses []string `json:"connectorOutboundIPAddresses,omitempty" tf:"connector_outbound_ip_addresses"` Location *string `json:"location" tf:"location"` Name *string `json:"name" tf:"name"` ResourceGroupName *string `json:"resourceGroupName" tf:"resource_group_name"` // +optional SkuName *string `json:"skuName,omitempty" tf:"sku_name"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +kubebuilder:validation:MaxItems=4 // +kubebuilder:validation:MinItems=4 VirtualNetworkSubnetIDS []string `json:"virtualNetworkSubnetIDS" tf:"virtual_network_subnet_ids"` // +optional WorkflowEndpointIPAddresses []string `json:"workflowEndpointIPAddresses,omitempty" tf:"workflow_endpoint_ip_addresses"` // +optional WorkflowOutboundIPAddresses []string `json:"workflowOutboundIPAddresses,omitempty" tf:"workflow_outbound_ip_addresses"` }
func (*ServiceEnvironmentSpecResource) DeepCopy ¶
func (in *ServiceEnvironmentSpecResource) DeepCopy() *ServiceEnvironmentSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceEnvironmentSpecResource.
func (*ServiceEnvironmentSpecResource) DeepCopyInto ¶
func (in *ServiceEnvironmentSpecResource) DeepCopyInto(out *ServiceEnvironmentSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceEnvironmentStatus ¶
type ServiceEnvironmentStatus 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 (*ServiceEnvironmentStatus) DeepCopy ¶
func (in *ServiceEnvironmentStatus) DeepCopy() *ServiceEnvironmentStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceEnvironmentStatus.
func (*ServiceEnvironmentStatus) DeepCopyInto ¶
func (in *ServiceEnvironmentStatus) DeepCopyInto(out *ServiceEnvironmentStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.