Documentation ¶
Overview ¶
Package v1alpha1 contains server_group_controller zpa resources. +kubebuilder:object:generate=true +groupName=zpa.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Observation
- type ServerGroup
- func (in *ServerGroup) DeepCopy() *ServerGroup
- func (in *ServerGroup) DeepCopyInto(out *ServerGroup)
- func (in *ServerGroup) DeepCopyObject() runtime.Object
- func (mg *ServerGroup) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (mg *ServerGroup) GetDeletionPolicy() xpv1.DeletionPolicy
- func (mg *ServerGroup) GetProviderConfigReference() *xpv1.Reference
- func (mg *ServerGroup) GetProviderReference() *xpv1.Reference
- func (mg *ServerGroup) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *ServerGroup) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (mg *ServerGroup) SetConditions(c ...xpv1.Condition)
- func (mg *ServerGroup) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *ServerGroup) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ServerGroup) SetProviderReference(r *xpv1.Reference)
- func (mg *ServerGroup) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ServerGroup) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ServerGroupList
- type ServerGroupParameters
- type ServerGroupSpec
- type ServerGroupStatus
Constants ¶
const ( Group = "zpa.crossplane.io" Version = "v1alpha1" )
Package type metadata.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion} )
var ( ServerGroupKind = reflect.TypeOf(ServerGroup{}).Name() ServerGroupGroupKind = schema.GroupKind{Group: Group, Kind: ServerGroupKind}.String() ServerGroupKindAPIVersion = ServerGroupKind + "." + SchemeGroupVersion.String() ServerGroupGroupVersionKind = SchemeGroupVersion.WithKind(ServerGroupKind) )
ServerGroup type metadata.
Functions ¶
This section is empty.
Types ¶
type Observation ¶
type Observation struct { CreationTime string `json:"creationTime,omitempty"` ModifiedBy string `json:"modifiedBy,omitempty"` ModifiedTime string `json:"modifiedTime,omitempty"` ID string `json:"id,omitempty"` }
Observation are the observable fields of a ServerGroup.
func (*Observation) DeepCopy ¶
func (in *Observation) DeepCopy() *Observation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Observation.
func (*Observation) DeepCopyInto ¶
func (in *Observation) DeepCopyInto(out *Observation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerGroup ¶
type ServerGroup struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServerGroupSpec `json:"spec"` Status ServerGroupStatus `json:"status,omitempty"` }
A ServerGroup is the schema for ZPA ServerGroups 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:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,zpa}
func (*ServerGroup) DeepCopy ¶
func (in *ServerGroup) DeepCopy() *ServerGroup
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerGroup.
func (*ServerGroup) DeepCopyInto ¶
func (in *ServerGroup) DeepCopyInto(out *ServerGroup)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServerGroup) DeepCopyObject ¶
func (in *ServerGroup) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ServerGroup) GetCondition ¶
func (mg *ServerGroup) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this ServerGroup.
func (*ServerGroup) GetDeletionPolicy ¶
func (mg *ServerGroup) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ServerGroup.
func (*ServerGroup) GetProviderConfigReference ¶
func (mg *ServerGroup) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this ServerGroup.
func (*ServerGroup) GetProviderReference ¶
func (mg *ServerGroup) GetProviderReference() *xpv1.Reference
GetProviderReference of this ServerGroup. Deprecated: Use GetProviderConfigReference.
func (*ServerGroup) GetPublishConnectionDetailsTo ¶ added in v0.4.0
func (mg *ServerGroup) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this ServerGroup.
func (*ServerGroup) GetWriteConnectionSecretToReference ¶
func (mg *ServerGroup) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ServerGroup.
func (*ServerGroup) SetConditions ¶
func (mg *ServerGroup) SetConditions(c ...xpv1.Condition)
SetConditions of this ServerGroup.
func (*ServerGroup) SetDeletionPolicy ¶
func (mg *ServerGroup) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ServerGroup.
func (*ServerGroup) SetProviderConfigReference ¶
func (mg *ServerGroup) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this ServerGroup.
func (*ServerGroup) SetProviderReference ¶
func (mg *ServerGroup) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this ServerGroup. Deprecated: Use SetProviderConfigReference.
func (*ServerGroup) SetPublishConnectionDetailsTo ¶ added in v0.4.0
func (mg *ServerGroup) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this ServerGroup.
func (*ServerGroup) SetWriteConnectionSecretToReference ¶
func (mg *ServerGroup) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this ServerGroup.
type ServerGroupList ¶
type ServerGroupList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ServerGroup `json:"items"` }
ServerGroupList contains a list of ServerGroup
func (*ServerGroupList) DeepCopy ¶
func (in *ServerGroupList) DeepCopy() *ServerGroupList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerGroupList.
func (*ServerGroupList) DeepCopyInto ¶
func (in *ServerGroupList) DeepCopyInto(out *ServerGroupList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServerGroupList) DeepCopyObject ¶
func (in *ServerGroupList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ServerGroupList) GetItems ¶
func (l *ServerGroupList) GetItems() []resource.Managed
GetItems of this ServerGroupList.
type ServerGroupParameters ¶
type ServerGroupParameters struct { // enabled Enabled *bool `json:"enabled,omitempty"` // description Description string `json:"description,omitempty"` // ip anchored IPAnchored *bool `json:"ipAnchored,omitempty"` // config space // +kubebuilder:validation:Enum=DEFAULT;SIEM ConfigSpace string `json:"configSpace,omitempty"` // Defaults to false. DynamicDiscovery bool `json:"dynamicDiscovery"` // app connector groups AppConnectorGroups []string `json:"appConnectorGroups,omitempty"` // Name for ServerGroup. // +kubebuilder:validation:Required Name string `json:"name"` }
A ServerGroupParameters defines desired state of a ServerSegment
func (*ServerGroupParameters) DeepCopy ¶
func (in *ServerGroupParameters) DeepCopy() *ServerGroupParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerGroupParameters.
func (*ServerGroupParameters) DeepCopyInto ¶
func (in *ServerGroupParameters) DeepCopyInto(out *ServerGroupParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerGroupSpec ¶
type ServerGroupSpec struct { xpv1.ResourceSpec `json:",inline"` ForProvider ServerGroupParameters `json:"forProvider"` }
A ServerGroupSpec defines the desired state of a ServerGroup.
func (*ServerGroupSpec) DeepCopy ¶
func (in *ServerGroupSpec) DeepCopy() *ServerGroupSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerGroupSpec.
func (*ServerGroupSpec) DeepCopyInto ¶
func (in *ServerGroupSpec) DeepCopyInto(out *ServerGroupSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerGroupStatus ¶
type ServerGroupStatus struct { xpv1.ResourceStatus `json:",inline"` AtProvider Observation `json:"atProvider,omitempty"` }
A ServerGroupStatus represents the status of a ServerGroup.
func (*ServerGroupStatus) DeepCopy ¶
func (in *ServerGroupStatus) DeepCopy() *ServerGroupStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerGroupStatus.
func (*ServerGroupStatus) DeepCopyInto ¶
func (in *ServerGroupStatus) DeepCopyInto(out *ServerGroupStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.