v1alpha1

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 22, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=transform.vault.upbound.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "transform.vault.upbound.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	Alphabet_Kind             = "Alphabet"
	Alphabet_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Alphabet_Kind}.String()
	Alphabet_KindAPIVersion   = Alphabet_Kind + "." + CRDGroupVersion.String()
	Alphabet_GroupVersionKind = CRDGroupVersion.WithKind(Alphabet_Kind)
)

Repository type metadata.

View Source
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
)
View Source
var (
	Role_Kind             = "Role"
	Role_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Role_Kind}.String()
	Role_KindAPIVersion   = Role_Kind + "." + CRDGroupVersion.String()
	Role_GroupVersionKind = CRDGroupVersion.WithKind(Role_Kind)
)

Repository type metadata.

View Source
var (
	Template_Kind             = "Template"
	Template_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Template_Kind}.String()
	Template_KindAPIVersion   = Template_Kind + "." + CRDGroupVersion.String()
	Template_GroupVersionKind = CRDGroupVersion.WithKind(Template_Kind)
)

Repository type metadata.

View Source
var (
	Transformation_Kind             = "Transformation"
	Transformation_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Transformation_Kind}.String()
	Transformation_KindAPIVersion   = Transformation_Kind + "." + CRDGroupVersion.String()
	Transformation_GroupVersionKind = CRDGroupVersion.WithKind(Transformation_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type Alphabet

type Alphabet struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || has(self.initProvider.name)",message="name is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.path) || has(self.initProvider.path)",message="path is a required parameter"
	Spec   AlphabetSpec   `json:"spec"`
	Status AlphabetStatus `json:"status,omitempty"`
}

Alphabet is the Schema for the Alphabets API. "/transform/alphabet/{name}" +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 (*Alphabet) DeepCopy

func (in *Alphabet) DeepCopy() *Alphabet

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Alphabet.

func (*Alphabet) DeepCopyInto

func (in *Alphabet) DeepCopyInto(out *Alphabet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Alphabet) DeepCopyObject

func (in *Alphabet) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Alphabet) GetCondition

func (mg *Alphabet) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Alphabet.

func (*Alphabet) GetConnectionDetailsMapping

func (tr *Alphabet) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Alphabet

func (*Alphabet) GetDeletionPolicy

func (mg *Alphabet) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Alphabet.

func (*Alphabet) GetID

func (tr *Alphabet) GetID() string

GetID returns ID of underlying Terraform resource of this Alphabet

func (*Alphabet) GetInitParameters added in v0.2.0

func (tr *Alphabet) GetInitParameters() (map[string]any, error)

GetInitParameters of this Alphabet

func (*Alphabet) GetManagementPolicies added in v0.2.0

func (mg *Alphabet) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Alphabet.

func (*Alphabet) GetObservation

func (tr *Alphabet) GetObservation() (map[string]any, error)

GetObservation of this Alphabet

func (*Alphabet) GetParameters

func (tr *Alphabet) GetParameters() (map[string]any, error)

GetParameters of this Alphabet

func (*Alphabet) GetProviderConfigReference

func (mg *Alphabet) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Alphabet.

func (*Alphabet) GetProviderReference

func (mg *Alphabet) GetProviderReference() *xpv1.Reference

GetProviderReference of this Alphabet. Deprecated: Use GetProviderConfigReference.

func (*Alphabet) GetPublishConnectionDetailsTo

func (mg *Alphabet) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Alphabet.

func (*Alphabet) GetTerraformResourceType

func (mg *Alphabet) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Alphabet

func (*Alphabet) GetTerraformSchemaVersion

func (tr *Alphabet) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Alphabet) GetWriteConnectionSecretToReference

func (mg *Alphabet) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Alphabet.

func (*Alphabet) LateInitialize

func (tr *Alphabet) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Alphabet using its observed tfState. returns True if there are any spec changes for the resource.

func (*Alphabet) SetConditions

func (mg *Alphabet) SetConditions(c ...xpv1.Condition)

SetConditions of this Alphabet.

func (*Alphabet) SetDeletionPolicy

func (mg *Alphabet) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Alphabet.

func (*Alphabet) SetManagementPolicies added in v0.2.0

func (mg *Alphabet) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Alphabet.

func (*Alphabet) SetObservation

func (tr *Alphabet) SetObservation(obs map[string]any) error

SetObservation for this Alphabet

func (*Alphabet) SetParameters

func (tr *Alphabet) SetParameters(params map[string]any) error

SetParameters for this Alphabet

func (*Alphabet) SetProviderConfigReference

func (mg *Alphabet) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Alphabet.

func (*Alphabet) SetProviderReference

func (mg *Alphabet) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this Alphabet. Deprecated: Use SetProviderConfigReference.

func (*Alphabet) SetPublishConnectionDetailsTo

func (mg *Alphabet) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Alphabet.

func (*Alphabet) SetWriteConnectionSecretToReference

func (mg *Alphabet) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Alphabet.

type AlphabetInitParameters added in v0.2.0

type AlphabetInitParameters struct {

	// A string of characters that contains the alphabet set.
	// A string of characters that contains the alphabet set.
	Alphabet *string `json:"alphabet,omitempty" tf:"alphabet,omitempty"`

	// The name of the alphabet.
	// The name of the alphabet.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`
}

func (*AlphabetInitParameters) DeepCopy added in v0.2.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlphabetInitParameters.

func (*AlphabetInitParameters) DeepCopyInto added in v0.2.0

func (in *AlphabetInitParameters) DeepCopyInto(out *AlphabetInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlphabetList

type AlphabetList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Alphabet `json:"items"`
}

AlphabetList contains a list of Alphabets

func (*AlphabetList) DeepCopy

func (in *AlphabetList) DeepCopy() *AlphabetList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlphabetList.

func (*AlphabetList) DeepCopyInto

func (in *AlphabetList) DeepCopyInto(out *AlphabetList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AlphabetList) DeepCopyObject

func (in *AlphabetList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*AlphabetList) GetItems

func (l *AlphabetList) GetItems() []resource.Managed

GetItems of this AlphabetList.

type AlphabetObservation

type AlphabetObservation struct {

	// A string of characters that contains the alphabet set.
	// A string of characters that contains the alphabet set.
	Alphabet *string `json:"alphabet,omitempty" tf:"alphabet,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the alphabet.
	// The name of the alphabet.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`
}

func (*AlphabetObservation) DeepCopy

func (in *AlphabetObservation) DeepCopy() *AlphabetObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlphabetObservation.

func (*AlphabetObservation) DeepCopyInto

func (in *AlphabetObservation) DeepCopyInto(out *AlphabetObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlphabetParameters

type AlphabetParameters struct {

	// A string of characters that contains the alphabet set.
	// A string of characters that contains the alphabet set.
	// +kubebuilder:validation:Optional
	Alphabet *string `json:"alphabet,omitempty" tf:"alphabet,omitempty"`

	// The name of the alphabet.
	// The name of the alphabet.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	// +kubebuilder:validation:Optional
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	// +kubebuilder:validation:Optional
	Path *string `json:"path,omitempty" tf:"path,omitempty"`
}

func (*AlphabetParameters) DeepCopy

func (in *AlphabetParameters) DeepCopy() *AlphabetParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlphabetParameters.

func (*AlphabetParameters) DeepCopyInto

func (in *AlphabetParameters) DeepCopyInto(out *AlphabetParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlphabetSpec

type AlphabetSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     AlphabetParameters `json:"forProvider"`
	// THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored
	// unless the relevant Crossplane feature flag is enabled, and may be
	// changed or removed without notice.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider AlphabetInitParameters `json:"initProvider,omitempty"`
}

AlphabetSpec defines the desired state of Alphabet

func (*AlphabetSpec) DeepCopy

func (in *AlphabetSpec) DeepCopy() *AlphabetSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlphabetSpec.

func (*AlphabetSpec) DeepCopyInto

func (in *AlphabetSpec) DeepCopyInto(out *AlphabetSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AlphabetStatus

type AlphabetStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        AlphabetObservation `json:"atProvider,omitempty"`
}

AlphabetStatus defines the observed state of Alphabet.

func (*AlphabetStatus) DeepCopy

func (in *AlphabetStatus) DeepCopy() *AlphabetStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlphabetStatus.

func (*AlphabetStatus) DeepCopyInto

func (in *AlphabetStatus) DeepCopyInto(out *AlphabetStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Role

type Role struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || has(self.initProvider.name)",message="name is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.path) || has(self.initProvider.path)",message="path is a required parameter"
	Spec   RoleSpec   `json:"spec"`
	Status RoleStatus `json:"status,omitempty"`
}

Role is the Schema for the Roles API. "/transform/role/{name}" +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 (*Role) DeepCopy

func (in *Role) DeepCopy() *Role

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Role.

func (*Role) DeepCopyInto

func (in *Role) DeepCopyInto(out *Role)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Role) DeepCopyObject

func (in *Role) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Role) GetCondition

func (mg *Role) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Role.

func (*Role) GetConnectionDetailsMapping

func (tr *Role) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Role

func (*Role) GetDeletionPolicy

func (mg *Role) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Role.

func (*Role) GetID

func (tr *Role) GetID() string

GetID returns ID of underlying Terraform resource of this Role

func (*Role) GetInitParameters added in v0.2.0

func (tr *Role) GetInitParameters() (map[string]any, error)

GetInitParameters of this Role

func (*Role) GetManagementPolicies added in v0.2.0

func (mg *Role) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Role.

func (*Role) GetObservation

func (tr *Role) GetObservation() (map[string]any, error)

GetObservation of this Role

func (*Role) GetParameters

func (tr *Role) GetParameters() (map[string]any, error)

GetParameters of this Role

func (*Role) GetProviderConfigReference

func (mg *Role) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Role.

func (*Role) GetProviderReference

func (mg *Role) GetProviderReference() *xpv1.Reference

GetProviderReference of this Role. Deprecated: Use GetProviderConfigReference.

func (*Role) GetPublishConnectionDetailsTo

func (mg *Role) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Role.

func (*Role) GetTerraformResourceType

func (mg *Role) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Role

func (*Role) GetTerraformSchemaVersion

func (tr *Role) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Role) GetWriteConnectionSecretToReference

func (mg *Role) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Role.

func (*Role) LateInitialize

func (tr *Role) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Role using its observed tfState. returns True if there are any spec changes for the resource.

func (*Role) SetConditions

func (mg *Role) SetConditions(c ...xpv1.Condition)

SetConditions of this Role.

func (*Role) SetDeletionPolicy

func (mg *Role) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Role.

func (*Role) SetManagementPolicies added in v0.2.0

func (mg *Role) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Role.

func (*Role) SetObservation

func (tr *Role) SetObservation(obs map[string]any) error

SetObservation for this Role

func (*Role) SetParameters

func (tr *Role) SetParameters(params map[string]any) error

SetParameters for this Role

func (*Role) SetProviderConfigReference

func (mg *Role) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Role.

func (*Role) SetProviderReference

func (mg *Role) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this Role. Deprecated: Use SetProviderConfigReference.

func (*Role) SetPublishConnectionDetailsTo

func (mg *Role) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Role.

func (*Role) SetWriteConnectionSecretToReference

func (mg *Role) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Role.

type RoleInitParameters added in v0.2.0

type RoleInitParameters struct {

	// The name of the role.
	// The name of the role.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// A comma separated string or slice of transformations to use.
	// A comma separated string or slice of transformations to use.
	Transformations []*string `json:"transformations,omitempty" tf:"transformations,omitempty"`
}

func (*RoleInitParameters) DeepCopy added in v0.2.0

func (in *RoleInitParameters) DeepCopy() *RoleInitParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleInitParameters.

func (*RoleInitParameters) DeepCopyInto added in v0.2.0

func (in *RoleInitParameters) DeepCopyInto(out *RoleInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleList

type RoleList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Role `json:"items"`
}

RoleList contains a list of Roles

func (*RoleList) DeepCopy

func (in *RoleList) DeepCopy() *RoleList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleList.

func (*RoleList) DeepCopyInto

func (in *RoleList) DeepCopyInto(out *RoleList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RoleList) DeepCopyObject

func (in *RoleList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*RoleList) GetItems

func (l *RoleList) GetItems() []resource.Managed

GetItems of this RoleList.

type RoleObservation

type RoleObservation struct {
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the role.
	// The name of the role.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// A comma separated string or slice of transformations to use.
	// A comma separated string or slice of transformations to use.
	Transformations []*string `json:"transformations,omitempty" tf:"transformations,omitempty"`
}

func (*RoleObservation) DeepCopy

func (in *RoleObservation) DeepCopy() *RoleObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleObservation.

func (*RoleObservation) DeepCopyInto

func (in *RoleObservation) DeepCopyInto(out *RoleObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleParameters

type RoleParameters struct {

	// The name of the role.
	// The name of the role.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	// +kubebuilder:validation:Optional
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	// +kubebuilder:validation:Optional
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// A comma separated string or slice of transformations to use.
	// A comma separated string or slice of transformations to use.
	// +kubebuilder:validation:Optional
	Transformations []*string `json:"transformations,omitempty" tf:"transformations,omitempty"`
}

func (*RoleParameters) DeepCopy

func (in *RoleParameters) DeepCopy() *RoleParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleParameters.

func (*RoleParameters) DeepCopyInto

func (in *RoleParameters) DeepCopyInto(out *RoleParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleSpec

type RoleSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RoleParameters `json:"forProvider"`
	// THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored
	// unless the relevant Crossplane feature flag is enabled, and may be
	// changed or removed without notice.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider RoleInitParameters `json:"initProvider,omitempty"`
}

RoleSpec defines the desired state of Role

func (*RoleSpec) DeepCopy

func (in *RoleSpec) DeepCopy() *RoleSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleSpec.

func (*RoleSpec) DeepCopyInto

func (in *RoleSpec) DeepCopyInto(out *RoleSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleStatus

type RoleStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        RoleObservation `json:"atProvider,omitempty"`
}

RoleStatus defines the observed state of Role.

func (*RoleStatus) DeepCopy

func (in *RoleStatus) DeepCopy() *RoleStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleStatus.

func (*RoleStatus) DeepCopyInto

func (in *RoleStatus) DeepCopyInto(out *RoleStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Template

type Template struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || has(self.initProvider.name)",message="name is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.path) || has(self.initProvider.path)",message="path is a required parameter"
	Spec   TemplateSpec   `json:"spec"`
	Status TemplateStatus `json:"status,omitempty"`
}

Template is the Schema for the Templates API. "/transform/template/{name}" +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 (*Template) DeepCopy

func (in *Template) DeepCopy() *Template

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Template.

func (*Template) DeepCopyInto

func (in *Template) DeepCopyInto(out *Template)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Template) DeepCopyObject

func (in *Template) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Template) GetCondition

func (mg *Template) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Template.

func (*Template) GetConnectionDetailsMapping

func (tr *Template) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Template

func (*Template) GetDeletionPolicy

func (mg *Template) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Template.

func (*Template) GetID

func (tr *Template) GetID() string

GetID returns ID of underlying Terraform resource of this Template

func (*Template) GetInitParameters added in v0.2.0

func (tr *Template) GetInitParameters() (map[string]any, error)

GetInitParameters of this Template

func (*Template) GetManagementPolicies added in v0.2.0

func (mg *Template) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Template.

func (*Template) GetObservation

func (tr *Template) GetObservation() (map[string]any, error)

GetObservation of this Template

func (*Template) GetParameters

func (tr *Template) GetParameters() (map[string]any, error)

GetParameters of this Template

func (*Template) GetProviderConfigReference

func (mg *Template) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Template.

func (*Template) GetProviderReference

func (mg *Template) GetProviderReference() *xpv1.Reference

GetProviderReference of this Template. Deprecated: Use GetProviderConfigReference.

func (*Template) GetPublishConnectionDetailsTo

func (mg *Template) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Template.

func (*Template) GetTerraformResourceType

func (mg *Template) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Template

func (*Template) GetTerraformSchemaVersion

func (tr *Template) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Template) GetWriteConnectionSecretToReference

func (mg *Template) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Template.

func (*Template) LateInitialize

func (tr *Template) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Template using its observed tfState. returns True if there are any spec changes for the resource.

func (*Template) SetConditions

func (mg *Template) SetConditions(c ...xpv1.Condition)

SetConditions of this Template.

func (*Template) SetDeletionPolicy

func (mg *Template) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Template.

func (*Template) SetManagementPolicies added in v0.2.0

func (mg *Template) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Template.

func (*Template) SetObservation

func (tr *Template) SetObservation(obs map[string]any) error

SetObservation for this Template

func (*Template) SetParameters

func (tr *Template) SetParameters(params map[string]any) error

SetParameters for this Template

func (*Template) SetProviderConfigReference

func (mg *Template) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Template.

func (*Template) SetProviderReference

func (mg *Template) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this Template. Deprecated: Use SetProviderConfigReference.

func (*Template) SetPublishConnectionDetailsTo

func (mg *Template) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Template.

func (*Template) SetWriteConnectionSecretToReference

func (mg *Template) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Template.

type TemplateInitParameters added in v0.2.0

type TemplateInitParameters struct {

	// The alphabet to use for this template. This is only used during FPE transformations.
	// The alphabet to use for this template. This is only used during FPE transformations.
	Alphabet *string `json:"alphabet,omitempty" tf:"alphabet,omitempty"`

	// - Optional mapping of name to regular expression template, used to customize
	// the decoded output. (requires Vault Enterprise 1.9+)
	// The map of regular expression templates used to customize decoded outputs.
	// Only applicable to FPE transformations.
	DecodeFormats map[string]*string `json:"decodeFormats,omitempty" tf:"decode_formats,omitempty"`

	// - The regular expression template used to format encoded values.
	// (requires Vault Enterprise 1.9+)
	// The regular expression template used for encoding values.
	// Only applicable to FPE transformations.
	EncodeFormat *string `json:"encodeFormat,omitempty" tf:"encode_format,omitempty"`

	// The name of the template.
	// The name of the template.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The pattern used for matching. Currently, only regular expression pattern is supported.
	// The pattern used for matching. Currently, only regular expression pattern is supported.
	Pattern *string `json:"pattern,omitempty" tf:"pattern,omitempty"`

	// The pattern type to use for match detection. Currently, only regex is supported.
	// The pattern type to use for match detection. Currently, only regex is supported.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*TemplateInitParameters) DeepCopy added in v0.2.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateInitParameters.

func (*TemplateInitParameters) DeepCopyInto added in v0.2.0

func (in *TemplateInitParameters) DeepCopyInto(out *TemplateInitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TemplateList

type TemplateList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Template `json:"items"`
}

TemplateList contains a list of Templates

func (*TemplateList) DeepCopy

func (in *TemplateList) DeepCopy() *TemplateList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateList.

func (*TemplateList) DeepCopyInto

func (in *TemplateList) DeepCopyInto(out *TemplateList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*TemplateList) DeepCopyObject

func (in *TemplateList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*TemplateList) GetItems

func (l *TemplateList) GetItems() []resource.Managed

GetItems of this TemplateList.

type TemplateObservation

type TemplateObservation struct {

	// The alphabet to use for this template. This is only used during FPE transformations.
	// The alphabet to use for this template. This is only used during FPE transformations.
	Alphabet *string `json:"alphabet,omitempty" tf:"alphabet,omitempty"`

	// - Optional mapping of name to regular expression template, used to customize
	// the decoded output. (requires Vault Enterprise 1.9+)
	// The map of regular expression templates used to customize decoded outputs.
	// Only applicable to FPE transformations.
	DecodeFormats map[string]*string `json:"decodeFormats,omitempty" tf:"decode_formats,omitempty"`

	// - The regular expression template used to format encoded values.
	// (requires Vault Enterprise 1.9+)
	// The regular expression template used for encoding values.
	// Only applicable to FPE transformations.
	EncodeFormat *string `json:"encodeFormat,omitempty" tf:"encode_format,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the template.
	// The name of the template.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The pattern used for matching. Currently, only regular expression pattern is supported.
	// The pattern used for matching. Currently, only regular expression pattern is supported.
	Pattern *string `json:"pattern,omitempty" tf:"pattern,omitempty"`

	// The pattern type to use for match detection. Currently, only regex is supported.
	// The pattern type to use for match detection. Currently, only regex is supported.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*TemplateObservation) DeepCopy

func (in *TemplateObservation) DeepCopy() *TemplateObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateObservation.

func (*TemplateObservation) DeepCopyInto

func (in *TemplateObservation) DeepCopyInto(out *TemplateObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TemplateParameters

type TemplateParameters struct {

	// The alphabet to use for this template. This is only used during FPE transformations.
	// The alphabet to use for this template. This is only used during FPE transformations.
	// +kubebuilder:validation:Optional
	Alphabet *string `json:"alphabet,omitempty" tf:"alphabet,omitempty"`

	// - Optional mapping of name to regular expression template, used to customize
	// the decoded output. (requires Vault Enterprise 1.9+)
	// The map of regular expression templates used to customize decoded outputs.
	// Only applicable to FPE transformations.
	// +kubebuilder:validation:Optional
	DecodeFormats map[string]*string `json:"decodeFormats,omitempty" tf:"decode_formats,omitempty"`

	// - The regular expression template used to format encoded values.
	// (requires Vault Enterprise 1.9+)
	// The regular expression template used for encoding values.
	// Only applicable to FPE transformations.
	// +kubebuilder:validation:Optional
	EncodeFormat *string `json:"encodeFormat,omitempty" tf:"encode_format,omitempty"`

	// The name of the template.
	// The name of the template.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	// +kubebuilder:validation:Optional
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	// +kubebuilder:validation:Optional
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The pattern used for matching. Currently, only regular expression pattern is supported.
	// The pattern used for matching. Currently, only regular expression pattern is supported.
	// +kubebuilder:validation:Optional
	Pattern *string `json:"pattern,omitempty" tf:"pattern,omitempty"`

	// The pattern type to use for match detection. Currently, only regex is supported.
	// The pattern type to use for match detection. Currently, only regex is supported.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*TemplateParameters) DeepCopy

func (in *TemplateParameters) DeepCopy() *TemplateParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateParameters.

func (*TemplateParameters) DeepCopyInto

func (in *TemplateParameters) DeepCopyInto(out *TemplateParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TemplateSpec

type TemplateSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     TemplateParameters `json:"forProvider"`
	// THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored
	// unless the relevant Crossplane feature flag is enabled, and may be
	// changed or removed without notice.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider TemplateInitParameters `json:"initProvider,omitempty"`
}

TemplateSpec defines the desired state of Template

func (*TemplateSpec) DeepCopy

func (in *TemplateSpec) DeepCopy() *TemplateSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateSpec.

func (*TemplateSpec) DeepCopyInto

func (in *TemplateSpec) DeepCopyInto(out *TemplateSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TemplateStatus

type TemplateStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        TemplateObservation `json:"atProvider,omitempty"`
}

TemplateStatus defines the observed state of Template.

func (*TemplateStatus) DeepCopy

func (in *TemplateStatus) DeepCopy() *TemplateStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateStatus.

func (*TemplateStatus) DeepCopyInto

func (in *TemplateStatus) DeepCopyInto(out *TemplateStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Transformation

type Transformation struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || has(self.initProvider.name)",message="name is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.path) || has(self.initProvider.path)",message="path is a required parameter"
	Spec   TransformationSpec   `json:"spec"`
	Status TransformationStatus `json:"status,omitempty"`
}

Transformation is the Schema for the Transformations API. "/transform/transformation/{name}" +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 (*Transformation) DeepCopy

func (in *Transformation) DeepCopy() *Transformation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Transformation.

func (*Transformation) DeepCopyInto

func (in *Transformation) DeepCopyInto(out *Transformation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Transformation) DeepCopyObject

func (in *Transformation) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Transformation) GetCondition

func (mg *Transformation) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Transformation.

func (*Transformation) GetConnectionDetailsMapping

func (tr *Transformation) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Transformation

func (*Transformation) GetDeletionPolicy

func (mg *Transformation) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Transformation.

func (*Transformation) GetID

func (tr *Transformation) GetID() string

GetID returns ID of underlying Terraform resource of this Transformation

func (*Transformation) GetInitParameters added in v0.2.0

func (tr *Transformation) GetInitParameters() (map[string]any, error)

GetInitParameters of this Transformation

func (*Transformation) GetManagementPolicies added in v0.2.0

func (mg *Transformation) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Transformation.

func (*Transformation) GetObservation

func (tr *Transformation) GetObservation() (map[string]any, error)

GetObservation of this Transformation

func (*Transformation) GetParameters

func (tr *Transformation) GetParameters() (map[string]any, error)

GetParameters of this Transformation

func (*Transformation) GetProviderConfigReference

func (mg *Transformation) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Transformation.

func (*Transformation) GetProviderReference

func (mg *Transformation) GetProviderReference() *xpv1.Reference

GetProviderReference of this Transformation. Deprecated: Use GetProviderConfigReference.

func (*Transformation) GetPublishConnectionDetailsTo

func (mg *Transformation) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Transformation.

func (*Transformation) GetTerraformResourceType

func (mg *Transformation) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Transformation

func (*Transformation) GetTerraformSchemaVersion

func (tr *Transformation) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Transformation) GetWriteConnectionSecretToReference

func (mg *Transformation) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Transformation.

func (*Transformation) LateInitialize

func (tr *Transformation) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Transformation using its observed tfState. returns True if there are any spec changes for the resource.

func (*Transformation) SetConditions

func (mg *Transformation) SetConditions(c ...xpv1.Condition)

SetConditions of this Transformation.

func (*Transformation) SetDeletionPolicy

func (mg *Transformation) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Transformation.

func (*Transformation) SetManagementPolicies added in v0.2.0

func (mg *Transformation) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Transformation.

func (*Transformation) SetObservation

func (tr *Transformation) SetObservation(obs map[string]any) error

SetObservation for this Transformation

func (*Transformation) SetParameters

func (tr *Transformation) SetParameters(params map[string]any) error

SetParameters for this Transformation

func (*Transformation) SetProviderConfigReference

func (mg *Transformation) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Transformation.

func (*Transformation) SetProviderReference

func (mg *Transformation) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this Transformation. Deprecated: Use SetProviderConfigReference.

func (*Transformation) SetPublishConnectionDetailsTo

func (mg *Transformation) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Transformation.

func (*Transformation) SetWriteConnectionSecretToReference

func (mg *Transformation) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Transformation.

type TransformationInitParameters added in v0.2.0

type TransformationInitParameters struct {

	// The set of roles allowed to perform this transformation.
	// The set of roles allowed to perform this transformation.
	AllowedRoles []*string `json:"allowedRoles,omitempty" tf:"allowed_roles,omitempty"`

	// If true, this transform can be deleted.
	// Otherwise, deletion is blocked while this value remains false. Default: false
	// Only supported on vault-1.12+
	// If true, this transform can be deleted. Otherwise deletion is blocked while this value remains false.
	DeletionAllowed *bool `json:"deletionAllowed,omitempty" tf:"deletion_allowed,omitempty"`

	// The character used to replace data when in masking mode
	// The character used to replace data when in masking mode
	MaskingCharacter *string `json:"maskingCharacter,omitempty" tf:"masking_character,omitempty"`

	// The name of the transformation.
	// The name of the transformation.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The name of the template to use.
	// The name of the template to use.
	Template *string `json:"template,omitempty" tf:"template,omitempty"`

	// Templates configured for transformation.
	// Templates configured for transformation.
	Templates []*string `json:"templates,omitempty" tf:"templates,omitempty"`

	// The source of where the tweak value comes from. Only valid when in FPE mode.
	// The source of where the tweak value comes from. Only valid when in FPE mode.
	TweakSource *string `json:"tweakSource,omitempty" tf:"tweak_source,omitempty"`

	// The type of transformation to perform.
	// The type of transformation to perform.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*TransformationInitParameters) DeepCopy added in v0.2.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TransformationInitParameters.

func (*TransformationInitParameters) DeepCopyInto added in v0.2.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TransformationList

type TransformationList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Transformation `json:"items"`
}

TransformationList contains a list of Transformations

func (*TransformationList) DeepCopy

func (in *TransformationList) DeepCopy() *TransformationList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TransformationList.

func (*TransformationList) DeepCopyInto

func (in *TransformationList) DeepCopyInto(out *TransformationList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*TransformationList) DeepCopyObject

func (in *TransformationList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*TransformationList) GetItems

func (l *TransformationList) GetItems() []resource.Managed

GetItems of this TransformationList.

type TransformationObservation

type TransformationObservation struct {

	// The set of roles allowed to perform this transformation.
	// The set of roles allowed to perform this transformation.
	AllowedRoles []*string `json:"allowedRoles,omitempty" tf:"allowed_roles,omitempty"`

	// If true, this transform can be deleted.
	// Otherwise, deletion is blocked while this value remains false. Default: false
	// Only supported on vault-1.12+
	// If true, this transform can be deleted. Otherwise deletion is blocked while this value remains false.
	DeletionAllowed *bool `json:"deletionAllowed,omitempty" tf:"deletion_allowed,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The character used to replace data when in masking mode
	// The character used to replace data when in masking mode
	MaskingCharacter *string `json:"maskingCharacter,omitempty" tf:"masking_character,omitempty"`

	// The name of the transformation.
	// The name of the transformation.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The name of the template to use.
	// The name of the template to use.
	Template *string `json:"template,omitempty" tf:"template,omitempty"`

	// Templates configured for transformation.
	// Templates configured for transformation.
	Templates []*string `json:"templates,omitempty" tf:"templates,omitempty"`

	// The source of where the tweak value comes from. Only valid when in FPE mode.
	// The source of where the tweak value comes from. Only valid when in FPE mode.
	TweakSource *string `json:"tweakSource,omitempty" tf:"tweak_source,omitempty"`

	// The type of transformation to perform.
	// The type of transformation to perform.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*TransformationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TransformationObservation.

func (*TransformationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TransformationParameters

type TransformationParameters struct {

	// The set of roles allowed to perform this transformation.
	// The set of roles allowed to perform this transformation.
	// +kubebuilder:validation:Optional
	AllowedRoles []*string `json:"allowedRoles,omitempty" tf:"allowed_roles,omitempty"`

	// If true, this transform can be deleted.
	// Otherwise, deletion is blocked while this value remains false. Default: false
	// Only supported on vault-1.12+
	// If true, this transform can be deleted. Otherwise deletion is blocked while this value remains false.
	// +kubebuilder:validation:Optional
	DeletionAllowed *bool `json:"deletionAllowed,omitempty" tf:"deletion_allowed,omitempty"`

	// The character used to replace data when in masking mode
	// The character used to replace data when in masking mode
	// +kubebuilder:validation:Optional
	MaskingCharacter *string `json:"maskingCharacter,omitempty" tf:"masking_character,omitempty"`

	// The name of the transformation.
	// The name of the transformation.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The namespace to provision the resource in.
	// The value should not contain leading or trailing forward slashes.
	// The namespace is always relative to the provider's configured namespace.
	// Available only for Vault Enterprise.
	// Target namespace. (requires Enterprise)
	// +kubebuilder:validation:Optional
	Namespace *string `json:"namespace,omitempty" tf:"namespace,omitempty"`

	// Path to where the back-end is mounted within Vault.
	// The mount path for a back-end, for example, the path given in "$ vault auth enable -path=my-aws aws".
	// +kubebuilder:validation:Optional
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The name of the template to use.
	// The name of the template to use.
	// +kubebuilder:validation:Optional
	Template *string `json:"template,omitempty" tf:"template,omitempty"`

	// Templates configured for transformation.
	// Templates configured for transformation.
	// +kubebuilder:validation:Optional
	Templates []*string `json:"templates,omitempty" tf:"templates,omitempty"`

	// The source of where the tweak value comes from. Only valid when in FPE mode.
	// The source of where the tweak value comes from. Only valid when in FPE mode.
	// +kubebuilder:validation:Optional
	TweakSource *string `json:"tweakSource,omitempty" tf:"tweak_source,omitempty"`

	// The type of transformation to perform.
	// The type of transformation to perform.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*TransformationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TransformationParameters.

func (*TransformationParameters) DeepCopyInto

func (in *TransformationParameters) DeepCopyInto(out *TransformationParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TransformationSpec

type TransformationSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     TransformationParameters `json:"forProvider"`
	// THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored
	// unless the relevant Crossplane feature flag is enabled, and may be
	// changed or removed without notice.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider TransformationInitParameters `json:"initProvider,omitempty"`
}

TransformationSpec defines the desired state of Transformation

func (*TransformationSpec) DeepCopy

func (in *TransformationSpec) DeepCopy() *TransformationSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TransformationSpec.

func (*TransformationSpec) DeepCopyInto

func (in *TransformationSpec) DeepCopyInto(out *TransformationSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type TransformationStatus

type TransformationStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        TransformationObservation `json:"atProvider,omitempty"`
}

TransformationStatus defines the observed state of Transformation.

func (*TransformationStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TransformationStatus.

func (*TransformationStatus) DeepCopyInto

func (in *TransformationStatus) DeepCopyInto(out *TransformationStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL