Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=vpcep.otc.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type EndpointV1
- func (in *EndpointV1) DeepCopy() *EndpointV1
- func (in *EndpointV1) DeepCopyInto(out *EndpointV1)
- func (in *EndpointV1) DeepCopyObject() runtime.Object
- func (mg *EndpointV1) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *EndpointV1) GetConnectionDetailsMapping() map[string]string
- func (mg *EndpointV1) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *EndpointV1) GetID() string
- func (tr *EndpointV1) GetObservation() (map[string]interface{}, error)
- func (tr *EndpointV1) GetParameters() (map[string]interface{}, error)
- func (mg *EndpointV1) GetProviderConfigReference() *xpv1.Reference
- func (mg *EndpointV1) GetProviderReference() *xpv1.Reference
- func (mg *EndpointV1) GetTerraformResourceType() string
- func (tr *EndpointV1) GetTerraformSchemaVersion() int
- func (mg *EndpointV1) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *EndpointV1) LateInitialize(attrs []byte) (bool, error)
- func (mg *EndpointV1) SetConditions(c ...xpv1.Condition)
- func (mg *EndpointV1) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *EndpointV1) SetObservation(obs map[string]interface{}) error
- func (tr *EndpointV1) SetParameters(params map[string]interface{}) error
- func (mg *EndpointV1) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *EndpointV1) SetProviderReference(r *xpv1.Reference)
- func (mg *EndpointV1) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type EndpointV1List
- type EndpointV1Observation
- type EndpointV1Parameters
- type EndpointV1Spec
- type EndpointV1Status
- type PortObservation
- type PortParameters
- type ServiceV1
- func (in *ServiceV1) DeepCopy() *ServiceV1
- func (in *ServiceV1) DeepCopyInto(out *ServiceV1)
- func (in *ServiceV1) DeepCopyObject() runtime.Object
- func (mg *ServiceV1) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *ServiceV1) GetConnectionDetailsMapping() map[string]string
- func (mg *ServiceV1) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *ServiceV1) GetID() string
- func (tr *ServiceV1) GetObservation() (map[string]interface{}, error)
- func (tr *ServiceV1) GetParameters() (map[string]interface{}, error)
- func (mg *ServiceV1) GetProviderConfigReference() *xpv1.Reference
- func (mg *ServiceV1) GetProviderReference() *xpv1.Reference
- func (mg *ServiceV1) GetTerraformResourceType() string
- func (tr *ServiceV1) GetTerraformSchemaVersion() int
- func (mg *ServiceV1) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *ServiceV1) LateInitialize(attrs []byte) (bool, error)
- func (mg *ServiceV1) SetConditions(c ...xpv1.Condition)
- func (mg *ServiceV1) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *ServiceV1) SetObservation(obs map[string]interface{}) error
- func (tr *ServiceV1) SetParameters(params map[string]interface{}) error
- func (mg *ServiceV1) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ServiceV1) SetProviderReference(r *xpv1.Reference)
- func (mg *ServiceV1) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ServiceV1List
- type ServiceV1Observation
- type ServiceV1Parameters
- type ServiceV1Spec
- type ServiceV1Status
Constants ¶
const ( CRDGroup = "vpcep.otc.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( EndpointV1_Kind = "EndpointV1" EndpointV1_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: EndpointV1_Kind}.String() EndpointV1_KindAPIVersion = EndpointV1_Kind + "." + CRDGroupVersion.String() EndpointV1_GroupVersionKind = CRDGroupVersion.WithKind(EndpointV1_Kind) )
Repository type metadata.
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( ServiceV1_Kind = "ServiceV1" ServiceV1_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: ServiceV1_Kind}.String() ServiceV1_KindAPIVersion = ServiceV1_Kind + "." + CRDGroupVersion.String() ServiceV1_GroupVersionKind = CRDGroupVersion.WithKind(ServiceV1_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type EndpointV1 ¶
type EndpointV1 struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec EndpointV1Spec `json:"spec"` Status EndpointV1Status `json:"status,omitempty"` }
EndpointV1 is the Schema for the EndpointV1s API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,otcjet}
func (*EndpointV1) DeepCopy ¶
func (in *EndpointV1) DeepCopy() *EndpointV1
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV1.
func (*EndpointV1) DeepCopyInto ¶
func (in *EndpointV1) DeepCopyInto(out *EndpointV1)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EndpointV1) DeepCopyObject ¶
func (in *EndpointV1) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*EndpointV1) GetCondition ¶
func (mg *EndpointV1) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this EndpointV1.
func (*EndpointV1) GetConnectionDetailsMapping ¶
func (tr *EndpointV1) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this EndpointV1
func (*EndpointV1) GetDeletionPolicy ¶
func (mg *EndpointV1) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this EndpointV1.
func (*EndpointV1) GetID ¶
func (tr *EndpointV1) GetID() string
GetID returns ID of underlying Terraform resource of this EndpointV1
func (*EndpointV1) GetObservation ¶
func (tr *EndpointV1) GetObservation() (map[string]interface{}, error)
GetObservation of this EndpointV1
func (*EndpointV1) GetParameters ¶
func (tr *EndpointV1) GetParameters() (map[string]interface{}, error)
GetParameters of this EndpointV1
func (*EndpointV1) GetProviderConfigReference ¶
func (mg *EndpointV1) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this EndpointV1.
func (*EndpointV1) GetProviderReference ¶
func (mg *EndpointV1) GetProviderReference() *xpv1.Reference
GetProviderReference of this EndpointV1. Deprecated: Use GetProviderConfigReference.
func (*EndpointV1) GetTerraformResourceType ¶
func (mg *EndpointV1) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this EndpointV1
func (*EndpointV1) GetTerraformSchemaVersion ¶
func (tr *EndpointV1) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*EndpointV1) GetWriteConnectionSecretToReference ¶
func (mg *EndpointV1) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this EndpointV1.
func (*EndpointV1) LateInitialize ¶
func (tr *EndpointV1) LateInitialize(attrs []byte) (bool, error)
LateInitialize this EndpointV1 using its observed tfState. returns True if there are any spec changes for the resource.
func (*EndpointV1) SetConditions ¶
func (mg *EndpointV1) SetConditions(c ...xpv1.Condition)
SetConditions of this EndpointV1.
func (*EndpointV1) SetDeletionPolicy ¶
func (mg *EndpointV1) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this EndpointV1.
func (*EndpointV1) SetObservation ¶
func (tr *EndpointV1) SetObservation(obs map[string]interface{}) error
SetObservation for this EndpointV1
func (*EndpointV1) SetParameters ¶
func (tr *EndpointV1) SetParameters(params map[string]interface{}) error
SetParameters for this EndpointV1
func (*EndpointV1) SetProviderConfigReference ¶
func (mg *EndpointV1) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this EndpointV1.
func (*EndpointV1) SetProviderReference ¶
func (mg *EndpointV1) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this EndpointV1. Deprecated: Use SetProviderConfigReference.
func (*EndpointV1) SetWriteConnectionSecretToReference ¶
func (mg *EndpointV1) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this EndpointV1.
type EndpointV1List ¶
type EndpointV1List struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []EndpointV1 `json:"items"` }
EndpointV1List contains a list of EndpointV1s
func (*EndpointV1List) DeepCopy ¶
func (in *EndpointV1List) DeepCopy() *EndpointV1List
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV1List.
func (*EndpointV1List) DeepCopyInto ¶
func (in *EndpointV1List) DeepCopyInto(out *EndpointV1List)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EndpointV1List) DeepCopyObject ¶
func (in *EndpointV1List) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*EndpointV1List) GetItems ¶
func (l *EndpointV1List) GetItems() []resource.Managed
GetItems of this EndpointV1List.
type EndpointV1Observation ¶
type EndpointV1Observation struct { DNSNames []*string `json:"dnsNames,omitempty" tf:"dns_names,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` MarkerID *int64 `json:"markerId,omitempty" tf:"marker_id,omitempty"` ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` ServiceName *string `json:"serviceName,omitempty" tf:"service_name,omitempty"` ServiceType *string `json:"serviceType,omitempty" tf:"service_type,omitempty"` }
func (*EndpointV1Observation) DeepCopy ¶
func (in *EndpointV1Observation) DeepCopy() *EndpointV1Observation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV1Observation.
func (*EndpointV1Observation) DeepCopyInto ¶
func (in *EndpointV1Observation) DeepCopyInto(out *EndpointV1Observation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EndpointV1Parameters ¶
type EndpointV1Parameters struct { // +kubebuilder:validation:Optional EnableDNS *bool `json:"enableDns,omitempty" tf:"enable_dns,omitempty"` // +kubebuilder:validation:Optional EnableWhitelist *bool `json:"enableWhitelist,omitempty" tf:"enable_whitelist,omitempty"` // +kubebuilder:validation:Optional PortIP *string `json:"portIp,omitempty" tf:"port_ip,omitempty"` // +kubebuilder:validation:Optional RouteTables []*string `json:"routeTables,omitempty" tf:"route_tables,omitempty"` // +kubebuilder:validation:Required ServiceID *string `json:"serviceId" tf:"service_id,omitempty"` // +kubebuilder:validation:Optional SubnetID *string `json:"subnetId,omitempty" tf:"subnet_id,omitempty"` // +kubebuilder:validation:Optional Tags map[string]string `json:"tags,omitempty" tf:"tags,omitempty"` // +kubebuilder:validation:Required VPCID *string `json:"vpcId" tf:"vpc_id,omitempty"` // +kubebuilder:validation:Optional Whitelist []*string `json:"whitelist,omitempty" tf:"whitelist,omitempty"` }
func (*EndpointV1Parameters) DeepCopy ¶
func (in *EndpointV1Parameters) DeepCopy() *EndpointV1Parameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV1Parameters.
func (*EndpointV1Parameters) DeepCopyInto ¶
func (in *EndpointV1Parameters) DeepCopyInto(out *EndpointV1Parameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EndpointV1Spec ¶
type EndpointV1Spec struct { v1.ResourceSpec `json:",inline"` ForProvider EndpointV1Parameters `json:"forProvider"` }
EndpointV1Spec defines the desired state of EndpointV1
func (*EndpointV1Spec) DeepCopy ¶
func (in *EndpointV1Spec) DeepCopy() *EndpointV1Spec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV1Spec.
func (*EndpointV1Spec) DeepCopyInto ¶
func (in *EndpointV1Spec) DeepCopyInto(out *EndpointV1Spec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EndpointV1Status ¶
type EndpointV1Status struct { v1.ResourceStatus `json:",inline"` AtProvider EndpointV1Observation `json:"atProvider,omitempty"` }
EndpointV1Status defines the observed state of EndpointV1.
func (*EndpointV1Status) DeepCopy ¶
func (in *EndpointV1Status) DeepCopy() *EndpointV1Status
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV1Status.
func (*EndpointV1Status) DeepCopyInto ¶
func (in *EndpointV1Status) DeepCopyInto(out *EndpointV1Status)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PortObservation ¶
type PortObservation struct { }
func (*PortObservation) DeepCopy ¶
func (in *PortObservation) DeepCopy() *PortObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortObservation.
func (*PortObservation) DeepCopyInto ¶
func (in *PortObservation) DeepCopyInto(out *PortObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PortParameters ¶
type PortParameters struct { // +kubebuilder:validation:Required ClientPort *int64 `json:"clientPort" tf:"client_port,omitempty"` // +kubebuilder:validation:Optional Protocol *string `json:"protocol,omitempty" tf:"protocol,omitempty"` // +kubebuilder:validation:Required ServerPort *int64 `json:"serverPort" tf:"server_port,omitempty"` }
func (*PortParameters) DeepCopy ¶
func (in *PortParameters) DeepCopy() *PortParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortParameters.
func (*PortParameters) DeepCopyInto ¶
func (in *PortParameters) DeepCopyInto(out *PortParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceV1 ¶
type ServiceV1 struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServiceV1Spec `json:"spec"` Status ServiceV1Status `json:"status,omitempty"` }
ServiceV1 is the Schema for the ServiceV1s API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,otcjet}
func (*ServiceV1) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV1.
func (*ServiceV1) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceV1) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ServiceV1) GetCondition ¶
func (mg *ServiceV1) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this ServiceV1.
func (*ServiceV1) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this ServiceV1
func (*ServiceV1) GetDeletionPolicy ¶
func (mg *ServiceV1) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ServiceV1.
func (*ServiceV1) GetObservation ¶
GetObservation of this ServiceV1
func (*ServiceV1) GetParameters ¶
GetParameters of this ServiceV1
func (*ServiceV1) GetProviderConfigReference ¶
GetProviderConfigReference of this ServiceV1.
func (*ServiceV1) GetProviderReference ¶
GetProviderReference of this ServiceV1. Deprecated: Use GetProviderConfigReference.
func (*ServiceV1) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this ServiceV1
func (*ServiceV1) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*ServiceV1) GetWriteConnectionSecretToReference ¶
func (mg *ServiceV1) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ServiceV1.
func (*ServiceV1) LateInitialize ¶
LateInitialize this ServiceV1 using its observed tfState. returns True if there are any spec changes for the resource.
func (*ServiceV1) SetConditions ¶
SetConditions of this ServiceV1.
func (*ServiceV1) SetDeletionPolicy ¶
func (mg *ServiceV1) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ServiceV1.
func (*ServiceV1) SetObservation ¶
SetObservation for this ServiceV1
func (*ServiceV1) SetParameters ¶
SetParameters for this ServiceV1
func (*ServiceV1) SetProviderConfigReference ¶
SetProviderConfigReference of this ServiceV1.
func (*ServiceV1) SetProviderReference ¶
SetProviderReference of this ServiceV1. Deprecated: Use SetProviderConfigReference.
func (*ServiceV1) SetWriteConnectionSecretToReference ¶
func (mg *ServiceV1) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this ServiceV1.
type ServiceV1List ¶
type ServiceV1List struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ServiceV1 `json:"items"` }
ServiceV1List contains a list of ServiceV1s
func (*ServiceV1List) DeepCopy ¶
func (in *ServiceV1List) DeepCopy() *ServiceV1List
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV1List.
func (*ServiceV1List) DeepCopyInto ¶
func (in *ServiceV1List) DeepCopyInto(out *ServiceV1List)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceV1List) DeepCopyObject ¶
func (in *ServiceV1List) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ServiceV1List) GetItems ¶
func (l *ServiceV1List) GetItems() []resource.Managed
GetItems of this ServiceV1List.
type ServiceV1Observation ¶
type ServiceV1Observation struct {
ID *string `json:"id,omitempty" tf:"id,omitempty"`
}
func (*ServiceV1Observation) DeepCopy ¶
func (in *ServiceV1Observation) DeepCopy() *ServiceV1Observation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV1Observation.
func (*ServiceV1Observation) DeepCopyInto ¶
func (in *ServiceV1Observation) DeepCopyInto(out *ServiceV1Observation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceV1Parameters ¶
type ServiceV1Parameters struct { // +kubebuilder:validation:Optional ApprovalEnabled *bool `json:"approvalEnabled,omitempty" tf:"approval_enabled,omitempty"` // +kubebuilder:validation:Optional PoolID *string `json:"poolId,omitempty" tf:"pool_id,omitempty"` // +kubebuilder:validation:Required Port []PortParameters `json:"port" tf:"port,omitempty"` // +kubebuilder:validation:Required PortID *string `json:"portId" tf:"port_id,omitempty"` // +kubebuilder:validation:Required ServerType *string `json:"serverType" tf:"server_type,omitempty"` // +kubebuilder:validation:Optional ServiceType *string `json:"serviceType,omitempty" tf:"service_type,omitempty"` // +kubebuilder:validation:Optional TCPProxy *string `json:"tcpProxy,omitempty" tf:"tcp_proxy,omitempty"` // +kubebuilder:validation:Optional Tags map[string]string `json:"tags,omitempty" tf:"tags,omitempty"` // +kubebuilder:validation:Required VPCID *string `json:"vpcId" tf:"vpc_id,omitempty"` // +kubebuilder:validation:Optional VipPortID *string `json:"vipPortId,omitempty" tf:"vip_port_id,omitempty"` }
func (*ServiceV1Parameters) DeepCopy ¶
func (in *ServiceV1Parameters) DeepCopy() *ServiceV1Parameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV1Parameters.
func (*ServiceV1Parameters) DeepCopyInto ¶
func (in *ServiceV1Parameters) DeepCopyInto(out *ServiceV1Parameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceV1Spec ¶
type ServiceV1Spec struct { v1.ResourceSpec `json:",inline"` ForProvider ServiceV1Parameters `json:"forProvider"` }
ServiceV1Spec defines the desired state of ServiceV1
func (*ServiceV1Spec) DeepCopy ¶
func (in *ServiceV1Spec) DeepCopy() *ServiceV1Spec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV1Spec.
func (*ServiceV1Spec) DeepCopyInto ¶
func (in *ServiceV1Spec) DeepCopyInto(out *ServiceV1Spec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceV1Status ¶
type ServiceV1Status struct { v1.ResourceStatus `json:",inline"` AtProvider ServiceV1Observation `json:"atProvider,omitempty"` }
ServiceV1Status defines the observed state of ServiceV1.
func (*ServiceV1Status) DeepCopy ¶
func (in *ServiceV1Status) DeepCopy() *ServiceV1Status
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV1Status.
func (*ServiceV1Status) DeepCopyInto ¶
func (in *ServiceV1Status) DeepCopyInto(out *ServiceV1Status)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.