Documentation ¶
Overview ¶
+groupName=integration.oci.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 IntegrationInstance
- func (in *IntegrationInstance) DeepCopy() *IntegrationInstance
- func (in *IntegrationInstance) DeepCopyInto(out *IntegrationInstance)
- func (in *IntegrationInstance) DeepCopyObject() runtime.Object
- func (r *IntegrationInstance) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *IntegrationInstance) ValidateCreate() error
- func (r *IntegrationInstance) ValidateDelete() error
- func (r *IntegrationInstance) ValidateUpdate(old runtime.Object) error
- type IntegrationInstanceList
- type IntegrationInstanceSpec
- type IntegrationInstanceSpecAlternateCustomEndpoints
- type IntegrationInstanceSpecCustomEndpoint
- type IntegrationInstanceSpecCustomEndpointCodec
- type IntegrationInstanceSpecNetworkEndpointDetails
- type IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns
- func (in *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns) DeepCopy() *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns
- func (in *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns) DeepCopyInto(out *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns)
- type IntegrationInstanceSpecNetworkEndpointDetailsCodec
- func (IntegrationInstanceSpecNetworkEndpointDetailsCodec) Decode(ptr unsafe.Pointer, iter *jsoniter.Iterator)
- func (IntegrationInstanceSpecNetworkEndpointDetailsCodec) Encode(ptr unsafe.Pointer, stream *jsoniter.Stream)
- func (IntegrationInstanceSpecNetworkEndpointDetailsCodec) IsEmpty(ptr unsafe.Pointer) bool
- type IntegrationInstanceSpecResource
- type IntegrationInstanceStatus
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 Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type IntegrationInstance ¶
type IntegrationInstance struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec IntegrationInstanceSpec `json:"spec,omitempty"` Status IntegrationInstanceStatus `json:"status,omitempty"` }
func (*IntegrationInstance) DeepCopy ¶
func (in *IntegrationInstance) DeepCopy() *IntegrationInstance
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstance.
func (*IntegrationInstance) DeepCopyInto ¶
func (in *IntegrationInstance) DeepCopyInto(out *IntegrationInstance)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IntegrationInstance) DeepCopyObject ¶
func (in *IntegrationInstance) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*IntegrationInstance) SetupWebhookWithManager ¶
func (r *IntegrationInstance) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*IntegrationInstance) ValidateCreate ¶
func (r *IntegrationInstance) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*IntegrationInstance) ValidateDelete ¶
func (r *IntegrationInstance) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*IntegrationInstance) ValidateUpdate ¶
func (r *IntegrationInstance) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type IntegrationInstanceList ¶
type IntegrationInstanceList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of IntegrationInstance CRD objects Items []IntegrationInstance `json:"items,omitempty"` }
IntegrationInstanceList is a list of IntegrationInstances
func (*IntegrationInstanceList) DeepCopy ¶
func (in *IntegrationInstanceList) DeepCopy() *IntegrationInstanceList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceList.
func (*IntegrationInstanceList) DeepCopyInto ¶
func (in *IntegrationInstanceList) DeepCopyInto(out *IntegrationInstanceList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IntegrationInstanceList) DeepCopyObject ¶
func (in *IntegrationInstanceList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IntegrationInstanceSpec ¶
type IntegrationInstanceSpec struct { State *IntegrationInstanceSpecResource `json:"state,omitempty" tf:"-"` Resource IntegrationInstanceSpecResource `json:"resource" tf:"resource"` UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"` TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"` ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"` SecretRef *core.LocalObjectReference `json:"secretRef,omitempty" tf:"-"` BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"` }
func (*IntegrationInstanceSpec) DeepCopy ¶
func (in *IntegrationInstanceSpec) DeepCopy() *IntegrationInstanceSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceSpec.
func (*IntegrationInstanceSpec) DeepCopyInto ¶
func (in *IntegrationInstanceSpec) DeepCopyInto(out *IntegrationInstanceSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IntegrationInstanceSpecAlternateCustomEndpoints ¶
type IntegrationInstanceSpecAlternateCustomEndpoints struct { // +optional CertificateSecretID *string `json:"certificateSecretID,omitempty" tf:"certificate_secret_id"` // +optional CertificateSecretVersion *int64 `json:"certificateSecretVersion,omitempty" tf:"certificate_secret_version"` Hostname *string `json:"hostname" tf:"hostname"` }
func (*IntegrationInstanceSpecAlternateCustomEndpoints) DeepCopy ¶
func (in *IntegrationInstanceSpecAlternateCustomEndpoints) DeepCopy() *IntegrationInstanceSpecAlternateCustomEndpoints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceSpecAlternateCustomEndpoints.
func (*IntegrationInstanceSpecAlternateCustomEndpoints) DeepCopyInto ¶
func (in *IntegrationInstanceSpecAlternateCustomEndpoints) DeepCopyInto(out *IntegrationInstanceSpecAlternateCustomEndpoints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IntegrationInstanceSpecCustomEndpoint ¶
type IntegrationInstanceSpecCustomEndpoint struct { // +optional CertificateSecretID *string `json:"certificateSecretID,omitempty" tf:"certificate_secret_id"` // +optional CertificateSecretVersion *int64 `json:"certificateSecretVersion,omitempty" tf:"certificate_secret_version"` Hostname *string `json:"hostname" tf:"hostname"` }
func (*IntegrationInstanceSpecCustomEndpoint) DeepCopy ¶
func (in *IntegrationInstanceSpecCustomEndpoint) DeepCopy() *IntegrationInstanceSpecCustomEndpoint
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceSpecCustomEndpoint.
func (*IntegrationInstanceSpecCustomEndpoint) DeepCopyInto ¶
func (in *IntegrationInstanceSpecCustomEndpoint) DeepCopyInto(out *IntegrationInstanceSpecCustomEndpoint)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IntegrationInstanceSpecCustomEndpointCodec ¶
type IntegrationInstanceSpecCustomEndpointCodec struct { }
+k8s:deepcopy-gen=false
func (IntegrationInstanceSpecCustomEndpointCodec) Decode ¶
func (IntegrationInstanceSpecCustomEndpointCodec) Decode(ptr unsafe.Pointer, iter *jsoniter.Iterator)
type IntegrationInstanceSpecNetworkEndpointDetails ¶
type IntegrationInstanceSpecNetworkEndpointDetails struct { // +optional AllowlistedHTTPIPS []string `json:"allowlistedHTTPIPS,omitempty" tf:"allowlisted_http_ips"` // +optional AllowlistedHTTPVcns []IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns `json:"allowlistedHTTPVcns,omitempty" tf:"allowlisted_http_vcns"` // +optional IsIntegrationVcnAllowlisted *bool `json:"isIntegrationVcnAllowlisted,omitempty" tf:"is_integration_vcn_allowlisted"` NetworkEndpointType *string `json:"networkEndpointType" tf:"network_endpoint_type"` }
func (*IntegrationInstanceSpecNetworkEndpointDetails) DeepCopy ¶
func (in *IntegrationInstanceSpecNetworkEndpointDetails) DeepCopy() *IntegrationInstanceSpecNetworkEndpointDetails
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceSpecNetworkEndpointDetails.
func (*IntegrationInstanceSpecNetworkEndpointDetails) DeepCopyInto ¶
func (in *IntegrationInstanceSpecNetworkEndpointDetails) DeepCopyInto(out *IntegrationInstanceSpecNetworkEndpointDetails)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns ¶
type IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns struct { // +optional AllowlistedIPS []string `json:"allowlistedIPS,omitempty" tf:"allowlisted_ips"` ID *string `json:"ID" tf:"id"` }
func (*IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns) DeepCopy ¶
func (in *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns) DeepCopy() *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns.
func (*IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns) DeepCopyInto ¶
func (in *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns) DeepCopyInto(out *IntegrationInstanceSpecNetworkEndpointDetailsAllowlistedHTTPVcns)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IntegrationInstanceSpecNetworkEndpointDetailsCodec ¶
type IntegrationInstanceSpecNetworkEndpointDetailsCodec struct { }
+k8s:deepcopy-gen=false
func (IntegrationInstanceSpecNetworkEndpointDetailsCodec) Decode ¶
func (IntegrationInstanceSpecNetworkEndpointDetailsCodec) Decode(ptr unsafe.Pointer, iter *jsoniter.Iterator)
type IntegrationInstanceSpecResource ¶
type IntegrationInstanceSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional AlternateCustomEndpoints []IntegrationInstanceSpecAlternateCustomEndpoints `json:"alternateCustomEndpoints,omitempty" tf:"alternate_custom_endpoints"` CompartmentID *string `json:"compartmentID" tf:"compartment_id"` // +optional ConsumptionModel *string `json:"consumptionModel,omitempty" tf:"consumption_model"` // +optional CustomEndpoint *IntegrationInstanceSpecCustomEndpoint `json:"customEndpoint,omitempty" tf:"custom_endpoint"` // +optional DefinedTags map[string]string `json:"definedTags,omitempty" tf:"defined_tags"` DisplayName *string `json:"displayName" tf:"display_name"` // +optional FreeformTags map[string]string `json:"freeformTags,omitempty" tf:"freeform_tags"` // +optional IdcsAt *string `json:"-" sensitive:"true" tf:"idcs_at"` // +optional InstanceURL *string `json:"instanceURL,omitempty" tf:"instance_url"` IntegrationInstanceType *string `json:"integrationInstanceType" tf:"integration_instance_type"` IsByol *bool `json:"isByol" tf:"is_byol"` // +optional IsFileServerEnabled *bool `json:"isFileServerEnabled,omitempty" tf:"is_file_server_enabled"` // +optional IsVisualBuilderEnabled *bool `json:"isVisualBuilderEnabled,omitempty" tf:"is_visual_builder_enabled"` MessagePacks *int64 `json:"messagePacks" tf:"message_packs"` // +optional NetworkEndpointDetails *IntegrationInstanceSpecNetworkEndpointDetails `json:"networkEndpointDetails,omitempty" tf:"network_endpoint_details"` // +optional State *string `json:"state,omitempty" tf:"state"` // +optional StateMessage *string `json:"stateMessage,omitempty" tf:"state_message"` // +optional TimeCreated *string `json:"timeCreated,omitempty" tf:"time_created"` // +optional TimeUpdated *string `json:"timeUpdated,omitempty" tf:"time_updated"` }
func (*IntegrationInstanceSpecResource) DeepCopy ¶
func (in *IntegrationInstanceSpecResource) DeepCopy() *IntegrationInstanceSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceSpecResource.
func (*IntegrationInstanceSpecResource) DeepCopyInto ¶
func (in *IntegrationInstanceSpecResource) DeepCopyInto(out *IntegrationInstanceSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IntegrationInstanceStatus ¶
type IntegrationInstanceStatus 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 (*IntegrationInstanceStatus) DeepCopy ¶
func (in *IntegrationInstanceStatus) DeepCopy() *IntegrationInstanceStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInstanceStatus.
func (*IntegrationInstanceStatus) DeepCopyInto ¶
func (in *IntegrationInstanceStatus) DeepCopyInto(out *IntegrationInstanceStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.