Documentation
¶
Overview ¶
+kubebuilder:object:generate=true +groupName=auth.vault.upbound.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Backend
- func (in *Backend) DeepCopy() *Backend
- func (in *Backend) DeepCopyInto(out *Backend)
- func (in *Backend) DeepCopyObject() runtime.Object
- func (mg *Backend) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Backend) GetConnectionDetailsMapping() map[string]string
- func (mg *Backend) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Backend) GetID() string
- func (tr *Backend) GetObservation() (map[string]any, error)
- func (tr *Backend) GetParameters() (map[string]any, error)
- func (mg *Backend) GetProviderConfigReference() *xpv1.Reference
- func (mg *Backend) GetProviderReference() *xpv1.Reference
- func (mg *Backend) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Backend) GetTerraformResourceType() string
- func (tr *Backend) GetTerraformSchemaVersion() int
- func (mg *Backend) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Backend) LateInitialize(attrs []byte) (bool, error)
- func (mg *Backend) SetConditions(c ...xpv1.Condition)
- func (mg *Backend) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Backend) SetObservation(obs map[string]any) error
- func (tr *Backend) SetParameters(params map[string]any) error
- func (mg *Backend) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Backend) SetProviderReference(r *xpv1.Reference)
- func (mg *Backend) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Backend) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type BackendList
- type BackendObservation
- type BackendParameters
- type BackendSpec
- type BackendStatus
- type TuneObservation
- type TuneParameters
Constants ¶
const ( CRDGroup = "auth.vault.upbound.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Backend_Kind = "Backend" Backend_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Backend_Kind}.String() Backend_KindAPIVersion = Backend_Kind + "." + CRDGroupVersion.String() Backend_GroupVersionKind = CRDGroupVersion.WithKind(Backend_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 )
Functions ¶
This section is empty.
Types ¶
type Backend ¶
type Backend struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec BackendSpec `json:"spec"` Status BackendStatus `json:"status,omitempty"` }
Backend is the Schema for the Backends API. <no value> +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,vault}
func (*Backend) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Backend.
func (*Backend) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Backend) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Backend) GetCondition ¶
func (mg *Backend) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Backend.
func (*Backend) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Backend
func (*Backend) GetDeletionPolicy ¶
func (mg *Backend) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Backend.
func (*Backend) GetObservation ¶
GetObservation of this Backend
func (*Backend) GetParameters ¶
GetParameters of this Backend
func (*Backend) GetProviderConfigReference ¶
GetProviderConfigReference of this Backend.
func (*Backend) GetProviderReference ¶
GetProviderReference of this Backend. Deprecated: Use GetProviderConfigReference.
func (*Backend) GetPublishConnectionDetailsTo ¶
func (mg *Backend) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Backend.
func (*Backend) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Backend
func (*Backend) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Backend) GetWriteConnectionSecretToReference ¶
func (mg *Backend) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Backend.
func (*Backend) LateInitialize ¶
LateInitialize this Backend using its observed tfState. returns True if there are any spec changes for the resource.
func (*Backend) SetConditions ¶
SetConditions of this Backend.
func (*Backend) SetDeletionPolicy ¶
func (mg *Backend) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Backend.
func (*Backend) SetObservation ¶
SetObservation for this Backend
func (*Backend) SetParameters ¶
SetParameters for this Backend
func (*Backend) SetProviderConfigReference ¶
SetProviderConfigReference of this Backend.
func (*Backend) SetProviderReference ¶
SetProviderReference of this Backend. Deprecated: Use SetProviderConfigReference.
func (*Backend) SetPublishConnectionDetailsTo ¶
func (mg *Backend) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Backend.
func (*Backend) SetWriteConnectionSecretToReference ¶
func (mg *Backend) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Backend.
type BackendList ¶
type BackendList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Backend `json:"items"` }
BackendList contains a list of Backends
func (*BackendList) DeepCopy ¶
func (in *BackendList) DeepCopy() *BackendList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendList.
func (*BackendList) DeepCopyInto ¶
func (in *BackendList) DeepCopyInto(out *BackendList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BackendList) DeepCopyObject ¶
func (in *BackendList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*BackendList) GetItems ¶
func (l *BackendList) GetItems() []resource.Managed
GetItems of this BackendList.
type BackendObservation ¶
type BackendObservation struct { // The accessor of the auth backend Accessor *string `json:"accessor,omitempty" tf:"accessor,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` }
func (*BackendObservation) DeepCopy ¶
func (in *BackendObservation) DeepCopy() *BackendObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendObservation.
func (*BackendObservation) DeepCopyInto ¶
func (in *BackendObservation) DeepCopyInto(out *BackendObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackendParameters ¶
type BackendParameters struct { // The description of the auth backend // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // If set, opts out of mount migration on path updates. // +kubebuilder:validation:Optional DisableRemount *bool `json:"disableRemount,omitempty" tf:"disable_remount,omitempty"` // Specifies if the auth method is local only // +kubebuilder:validation:Optional Local *bool `json:"local,omitempty" tf:"local,omitempty"` // Target namespace. (requires Enterprise) // +kubebuilder:validation:Optional Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"` // path to mount the backend. This defaults to the type. // +kubebuilder:validation:Optional Path *string `json:"path,omitempty" tf:"path,omitempty"` // +kubebuilder:validation:Optional Tune []TuneParameters `json:"tune,omitempty" tf:"tune,omitempty"` // Name of the auth backend // +kubebuilder:validation:Required Type *string `json:"type" tf:"type,omitempty"` }
func (*BackendParameters) DeepCopy ¶
func (in *BackendParameters) DeepCopy() *BackendParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendParameters.
func (*BackendParameters) DeepCopyInto ¶
func (in *BackendParameters) DeepCopyInto(out *BackendParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackendSpec ¶
type BackendSpec struct { v1.ResourceSpec `json:",inline"` ForProvider BackendParameters `json:"forProvider"` }
BackendSpec defines the desired state of Backend
func (*BackendSpec) DeepCopy ¶
func (in *BackendSpec) DeepCopy() *BackendSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendSpec.
func (*BackendSpec) DeepCopyInto ¶
func (in *BackendSpec) DeepCopyInto(out *BackendSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackendStatus ¶
type BackendStatus struct { v1.ResourceStatus `json:",inline"` AtProvider BackendObservation `json:"atProvider,omitempty"` }
BackendStatus defines the observed state of Backend.
func (*BackendStatus) DeepCopy ¶
func (in *BackendStatus) DeepCopy() *BackendStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendStatus.
func (*BackendStatus) DeepCopyInto ¶
func (in *BackendStatus) DeepCopyInto(out *BackendStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TuneObservation ¶
type TuneObservation struct { }
func (*TuneObservation) DeepCopy ¶
func (in *TuneObservation) DeepCopy() *TuneObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TuneObservation.
func (*TuneObservation) DeepCopyInto ¶
func (in *TuneObservation) DeepCopyInto(out *TuneObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TuneParameters ¶
type TuneParameters struct { // +kubebuilder:validation:Optional AllowedResponseHeaders []*string `json:"allowedResponseHeaders,omitempty" tf:"allowed_response_headers"` // +kubebuilder:validation:Optional AuditNonHMACRequestKeys []*string `json:"auditNonHmacRequestKeys,omitempty" tf:"audit_non_hmac_request_keys"` // +kubebuilder:validation:Optional AuditNonHMACResponseKeys []*string `json:"auditNonHmacResponseKeys,omitempty" tf:"audit_non_hmac_response_keys"` // +kubebuilder:validation:Optional DefaultLeaseTTL *string `json:"defaultLeaseTtl,omitempty" tf:"default_lease_ttl"` // +kubebuilder:validation:Optional ListingVisibility *string `json:"listingVisibility,omitempty" tf:"listing_visibility"` // +kubebuilder:validation:Optional MaxLeaseTTL *string `json:"maxLeaseTtl,omitempty" tf:"max_lease_ttl"` // +kubebuilder:validation:Optional PassthroughRequestHeaders []*string `json:"passthroughRequestHeaders,omitempty" tf:"passthrough_request_headers"` // +kubebuilder:validation:Optional TokenType *string `json:"tokenType,omitempty" tf:"token_type"` }
func (*TuneParameters) DeepCopy ¶
func (in *TuneParameters) DeepCopy() *TuneParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TuneParameters.
func (*TuneParameters) DeepCopyInto ¶
func (in *TuneParameters) DeepCopyInto(out *TuneParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.