v1alpha1

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Dec 4, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=keymanager.openstack.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "keymanager.openstack.crossplane.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	ContainerV1_Kind             = "ContainerV1"
	ContainerV1_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ContainerV1_Kind}.String()
	ContainerV1_KindAPIVersion   = ContainerV1_Kind + "." + CRDGroupVersion.String()
	ContainerV1_GroupVersionKind = CRDGroupVersion.WithKind(ContainerV1_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 (
	OrderV1_Kind             = "OrderV1"
	OrderV1_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: OrderV1_Kind}.String()
	OrderV1_KindAPIVersion   = OrderV1_Kind + "." + CRDGroupVersion.String()
	OrderV1_GroupVersionKind = CRDGroupVersion.WithKind(OrderV1_Kind)
)

Repository type metadata.

View Source
var (
	SecretV1_Kind             = "SecretV1"
	SecretV1_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: SecretV1_Kind}.String()
	SecretV1_KindAPIVersion   = SecretV1_Kind + "." + CRDGroupVersion.String()
	SecretV1_GroupVersionKind = CRDGroupVersion.WithKind(SecretV1_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type ACLInitParameters

type ACLInitParameters struct {
	Read []ReadInitParameters `json:"read,omitempty" tf:"read,omitempty"`
}

func (*ACLInitParameters) DeepCopy

func (in *ACLInitParameters) DeepCopy() *ACLInitParameters

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

func (*ACLInitParameters) DeepCopyInto

func (in *ACLInitParameters) DeepCopyInto(out *ACLInitParameters)

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

type ACLObservation

type ACLObservation struct {
	Read []ReadObservation `json:"read,omitempty" tf:"read,omitempty"`
}

func (*ACLObservation) DeepCopy

func (in *ACLObservation) DeepCopy() *ACLObservation

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

func (*ACLObservation) DeepCopyInto

func (in *ACLObservation) DeepCopyInto(out *ACLObservation)

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

type ACLParameters

type ACLParameters struct {

	// +kubebuilder:validation:Optional
	Read []ReadParameters `json:"read,omitempty" tf:"read,omitempty"`
}

func (*ACLParameters) DeepCopy

func (in *ACLParameters) DeepCopy() *ACLParameters

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

func (*ACLParameters) DeepCopyInto

func (in *ACLParameters) DeepCopyInto(out *ACLParameters)

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

type ACLReadInitParameters

type ACLReadInitParameters struct {

	// Whether the secret is accessible project wide.
	// Defaults to true.
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// The list of user IDs, which are allowed to access the
	// secret, when project_access is set to false.
	Users []*string `json:"users,omitempty" tf:"users,omitempty"`
}

func (*ACLReadInitParameters) DeepCopy

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

func (*ACLReadInitParameters) DeepCopyInto

func (in *ACLReadInitParameters) DeepCopyInto(out *ACLReadInitParameters)

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

type ACLReadObservation

type ACLReadObservation struct {

	// The date the secret was created.
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	// Whether the secret is accessible project wide.
	// Defaults to true.
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// The date the secret was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty" tf:"updated_at,omitempty"`

	// The list of user IDs, which are allowed to access the
	// secret, when project_access is set to false.
	Users []*string `json:"users,omitempty" tf:"users,omitempty"`
}

func (*ACLReadObservation) DeepCopy

func (in *ACLReadObservation) DeepCopy() *ACLReadObservation

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

func (*ACLReadObservation) DeepCopyInto

func (in *ACLReadObservation) DeepCopyInto(out *ACLReadObservation)

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

type ACLReadParameters

type ACLReadParameters struct {

	// Whether the secret is accessible project wide.
	// Defaults to true.
	// +kubebuilder:validation:Optional
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// The list of user IDs, which are allowed to access the
	// secret, when project_access is set to false.
	// +kubebuilder:validation:Optional
	Users []*string `json:"users,omitempty" tf:"users,omitempty"`
}

func (*ACLReadParameters) DeepCopy

func (in *ACLReadParameters) DeepCopy() *ACLReadParameters

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

func (*ACLReadParameters) DeepCopyInto

func (in *ACLReadParameters) DeepCopyInto(out *ACLReadParameters)

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

type ConsumersInitParameters

type ConsumersInitParameters struct {
}

func (*ConsumersInitParameters) DeepCopy

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

func (*ConsumersInitParameters) DeepCopyInto

func (in *ConsumersInitParameters) DeepCopyInto(out *ConsumersInitParameters)

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

type ConsumersObservation

type ConsumersObservation struct {

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

	// The consumer URL.
	URL *string `json:"url,omitempty" tf:"url,omitempty"`
}

func (*ConsumersObservation) DeepCopy

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

func (*ConsumersObservation) DeepCopyInto

func (in *ConsumersObservation) DeepCopyInto(out *ConsumersObservation)

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

type ConsumersParameters

type ConsumersParameters struct {
}

func (*ConsumersParameters) DeepCopy

func (in *ConsumersParameters) DeepCopy() *ConsumersParameters

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

func (*ConsumersParameters) DeepCopyInto

func (in *ConsumersParameters) DeepCopyInto(out *ConsumersParameters)

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

type ContainerV1

type ContainerV1 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.type) || (has(self.initProvider) && has(self.initProvider.type))",message="spec.forProvider.type is a required parameter"
	Spec   ContainerV1Spec   `json:"spec"`
	Status ContainerV1Status `json:"status,omitempty"`
}

ContainerV1 is the Schema for the ContainerV1s API. Manages a V1 Barbican container resource within OpenStack. +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,openstack}

func (*ContainerV1) DeepCopy

func (in *ContainerV1) DeepCopy() *ContainerV1

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

func (*ContainerV1) DeepCopyInto

func (in *ContainerV1) DeepCopyInto(out *ContainerV1)

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

func (*ContainerV1) DeepCopyObject

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

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

func (*ContainerV1) GetCondition

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

GetCondition of this ContainerV1.

func (*ContainerV1) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this ContainerV1

func (*ContainerV1) GetDeletionPolicy

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

GetDeletionPolicy of this ContainerV1.

func (*ContainerV1) GetID

func (tr *ContainerV1) GetID() string

GetID returns ID of underlying Terraform resource of this ContainerV1

func (*ContainerV1) GetInitParameters

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

GetInitParameters of this ContainerV1

func (*ContainerV1) GetManagementPolicies

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

GetManagementPolicies of this ContainerV1.

func (*ContainerV1) GetMergedParameters

func (tr *ContainerV1) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this ContainerV1

func (*ContainerV1) GetObservation

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

GetObservation of this ContainerV1

func (*ContainerV1) GetParameters

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

GetParameters of this ContainerV1

func (*ContainerV1) GetProviderConfigReference

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

GetProviderConfigReference of this ContainerV1.

func (*ContainerV1) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this ContainerV1.

func (*ContainerV1) GetTerraformResourceType

func (mg *ContainerV1) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ContainerV1

func (*ContainerV1) GetTerraformSchemaVersion

func (tr *ContainerV1) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ContainerV1) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this ContainerV1.

func (*ContainerV1) LateInitialize

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

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

func (*ContainerV1) SetConditions

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

SetConditions of this ContainerV1.

func (*ContainerV1) SetDeletionPolicy

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

SetDeletionPolicy of this ContainerV1.

func (*ContainerV1) SetManagementPolicies

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

SetManagementPolicies of this ContainerV1.

func (*ContainerV1) SetObservation

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

SetObservation for this ContainerV1

func (*ContainerV1) SetParameters

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

SetParameters for this ContainerV1

func (*ContainerV1) SetProviderConfigReference

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

SetProviderConfigReference of this ContainerV1.

func (*ContainerV1) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this ContainerV1.

func (*ContainerV1) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this ContainerV1.

type ContainerV1InitParameters

type ContainerV1InitParameters struct {

	// Allows to control an access to a container. Currently only
	// the read operation is supported. If not specified, the container is
	// accessible project wide. The read structure is described below.
	ACL []ACLInitParameters `json:"acl,omitempty" tf:"acl,omitempty"`

	// Human-readable name for the Container. Does not have
	// to be unique.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a container. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 container.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// A set of dictionaries containing references to secrets. The structure is described
	// below.
	SecretRefs []SecretRefsInitParameters `json:"secretRefs,omitempty" tf:"secret_refs,omitempty"`

	// Used to indicate the type of container. Must be one of generic, rsa or certificate.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*ContainerV1InitParameters) DeepCopy

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

func (*ContainerV1InitParameters) DeepCopyInto

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

type ContainerV1List

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

ContainerV1List contains a list of ContainerV1s

func (*ContainerV1List) DeepCopy

func (in *ContainerV1List) DeepCopy() *ContainerV1List

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

func (*ContainerV1List) DeepCopyInto

func (in *ContainerV1List) DeepCopyInto(out *ContainerV1List)

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

func (*ContainerV1List) DeepCopyObject

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

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

func (*ContainerV1List) GetItems

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

GetItems of this ContainerV1List.

type ContainerV1Observation

type ContainerV1Observation struct {

	// Allows to control an access to a container. Currently only
	// the read operation is supported. If not specified, the container is
	// accessible project wide. The read structure is described below.
	ACL []ACLObservation `json:"acl,omitempty" tf:"acl,omitempty"`

	// The list of the container consumers. The structure is described below.
	Consumers []ConsumersObservation `json:"consumers,omitempty" tf:"consumers,omitempty"`

	// The container reference / where to find the container.
	ContainerRef *string `json:"containerRef,omitempty" tf:"container_ref,omitempty"`

	// The date the container was created.
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	// The creator of the container.
	CreatorID *string `json:"creatorId,omitempty" tf:"creator_id,omitempty"`

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

	// Human-readable name for the Container. Does not have
	// to be unique.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a container. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 container.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// A set of dictionaries containing references to secrets. The structure is described
	// below.
	SecretRefs []SecretRefsObservation `json:"secretRefs,omitempty" tf:"secret_refs,omitempty"`

	// The status of the container.
	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	// Used to indicate the type of container. Must be one of generic, rsa or certificate.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`

	// The date the container was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty" tf:"updated_at,omitempty"`
}

func (*ContainerV1Observation) DeepCopy

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

func (*ContainerV1Observation) DeepCopyInto

func (in *ContainerV1Observation) DeepCopyInto(out *ContainerV1Observation)

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

type ContainerV1Parameters

type ContainerV1Parameters struct {

	// Allows to control an access to a container. Currently only
	// the read operation is supported. If not specified, the container is
	// accessible project wide. The read structure is described below.
	// +kubebuilder:validation:Optional
	ACL []ACLParameters `json:"acl,omitempty" tf:"acl,omitempty"`

	// Human-readable name for the Container. Does not have
	// to be unique.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a container. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 container.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// A set of dictionaries containing references to secrets. The structure is described
	// below.
	// +kubebuilder:validation:Optional
	SecretRefs []SecretRefsParameters `json:"secretRefs,omitempty" tf:"secret_refs,omitempty"`

	// Used to indicate the type of container. Must be one of generic, rsa or certificate.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*ContainerV1Parameters) DeepCopy

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

func (*ContainerV1Parameters) DeepCopyInto

func (in *ContainerV1Parameters) DeepCopyInto(out *ContainerV1Parameters)

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

type ContainerV1Spec

type ContainerV1Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ContainerV1Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// 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 ContainerV1InitParameters `json:"initProvider,omitempty"`
}

ContainerV1Spec defines the desired state of ContainerV1

func (*ContainerV1Spec) DeepCopy

func (in *ContainerV1Spec) DeepCopy() *ContainerV1Spec

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

func (*ContainerV1Spec) DeepCopyInto

func (in *ContainerV1Spec) DeepCopyInto(out *ContainerV1Spec)

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

type ContainerV1Status

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

ContainerV1Status defines the observed state of ContainerV1.

func (*ContainerV1Status) DeepCopy

func (in *ContainerV1Status) DeepCopy() *ContainerV1Status

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

func (*ContainerV1Status) DeepCopyInto

func (in *ContainerV1Status) DeepCopyInto(out *ContainerV1Status)

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

type MetaInitParameters

type MetaInitParameters struct {

	// Algorithm to use for key generation.
	Algorithm *string `json:"algorithm,omitempty" tf:"algorithm,omitempty"`

	// - Bit lenght of key to be generated.
	BitLength *float64 `json:"bitLength,omitempty" tf:"bit_length,omitempty"`

	// This is a UTC timestamp in ISO 8601 format YYYY-MM-DDTHH:MM:SSZ. If set, the secret will not be available after this time.
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

	// The mode to use for key generation.
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

	// The name of the secret set by the user.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The media type for the content of the secrets payload. Must be one of text/plain, text/plain;charset=utf-8, text/plain; charset=utf-8, application/octet-stream, application/pkcs8.
	PayloadContentType *string `json:"payloadContentType,omitempty" tf:"payload_content_type,omitempty"`
}

func (*MetaInitParameters) DeepCopy

func (in *MetaInitParameters) DeepCopy() *MetaInitParameters

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

func (*MetaInitParameters) DeepCopyInto

func (in *MetaInitParameters) DeepCopyInto(out *MetaInitParameters)

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

type MetaObservation

type MetaObservation struct {

	// Algorithm to use for key generation.
	Algorithm *string `json:"algorithm,omitempty" tf:"algorithm,omitempty"`

	// - Bit lenght of key to be generated.
	BitLength *float64 `json:"bitLength,omitempty" tf:"bit_length,omitempty"`

	// This is a UTC timestamp in ISO 8601 format YYYY-MM-DDTHH:MM:SSZ. If set, the secret will not be available after this time.
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

	// The mode to use for key generation.
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

	// The name of the secret set by the user.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The media type for the content of the secrets payload. Must be one of text/plain, text/plain;charset=utf-8, text/plain; charset=utf-8, application/octet-stream, application/pkcs8.
	PayloadContentType *string `json:"payloadContentType,omitempty" tf:"payload_content_type,omitempty"`
}

func (*MetaObservation) DeepCopy

func (in *MetaObservation) DeepCopy() *MetaObservation

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

func (*MetaObservation) DeepCopyInto

func (in *MetaObservation) DeepCopyInto(out *MetaObservation)

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

type MetaParameters

type MetaParameters struct {

	// Algorithm to use for key generation.
	// +kubebuilder:validation:Optional
	Algorithm *string `json:"algorithm" tf:"algorithm,omitempty"`

	// - Bit lenght of key to be generated.
	// +kubebuilder:validation:Optional
	BitLength *float64 `json:"bitLength" tf:"bit_length,omitempty"`

	// This is a UTC timestamp in ISO 8601 format YYYY-MM-DDTHH:MM:SSZ. If set, the secret will not be available after this time.
	// +kubebuilder:validation:Optional
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

	// The mode to use for key generation.
	// +kubebuilder:validation:Optional
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

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

	// The media type for the content of the secrets payload. Must be one of text/plain, text/plain;charset=utf-8, text/plain; charset=utf-8, application/octet-stream, application/pkcs8.
	// +kubebuilder:validation:Optional
	PayloadContentType *string `json:"payloadContentType,omitempty" tf:"payload_content_type,omitempty"`
}

func (*MetaParameters) DeepCopy

func (in *MetaParameters) DeepCopy() *MetaParameters

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

func (*MetaParameters) DeepCopyInto

func (in *MetaParameters) DeepCopyInto(out *MetaParameters)

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

type OrderV1

type OrderV1 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.meta) || (has(self.initProvider) && has(self.initProvider.meta))",message="spec.forProvider.meta is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.type) || (has(self.initProvider) && has(self.initProvider.type))",message="spec.forProvider.type is a required parameter"
	Spec   OrderV1Spec   `json:"spec"`
	Status OrderV1Status `json:"status,omitempty"`
}

OrderV1 is the Schema for the OrderV1s API. Manages a V1 Barbican order resource within OpenStack. +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,openstack}

func (*OrderV1) DeepCopy

func (in *OrderV1) DeepCopy() *OrderV1

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

func (*OrderV1) DeepCopyInto

func (in *OrderV1) DeepCopyInto(out *OrderV1)

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

func (*OrderV1) DeepCopyObject

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

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

func (*OrderV1) GetCondition

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

GetCondition of this OrderV1.

func (*OrderV1) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this OrderV1

func (*OrderV1) GetDeletionPolicy

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

GetDeletionPolicy of this OrderV1.

func (*OrderV1) GetID

func (tr *OrderV1) GetID() string

GetID returns ID of underlying Terraform resource of this OrderV1

func (*OrderV1) GetInitParameters

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

GetInitParameters of this OrderV1

func (*OrderV1) GetManagementPolicies

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

GetManagementPolicies of this OrderV1.

func (*OrderV1) GetMergedParameters

func (tr *OrderV1) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this OrderV1

func (*OrderV1) GetObservation

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

GetObservation of this OrderV1

func (*OrderV1) GetParameters

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

GetParameters of this OrderV1

func (*OrderV1) GetProviderConfigReference

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

GetProviderConfigReference of this OrderV1.

func (*OrderV1) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this OrderV1.

func (*OrderV1) GetTerraformResourceType

func (mg *OrderV1) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this OrderV1

func (*OrderV1) GetTerraformSchemaVersion

func (tr *OrderV1) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*OrderV1) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this OrderV1.

func (*OrderV1) LateInitialize

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

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

func (*OrderV1) SetConditions

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

SetConditions of this OrderV1.

func (*OrderV1) SetDeletionPolicy

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

SetDeletionPolicy of this OrderV1.

func (*OrderV1) SetManagementPolicies

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

SetManagementPolicies of this OrderV1.

func (*OrderV1) SetObservation

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

SetObservation for this OrderV1

func (*OrderV1) SetParameters

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

SetParameters for this OrderV1

func (*OrderV1) SetProviderConfigReference

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

SetProviderConfigReference of this OrderV1.

func (*OrderV1) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this OrderV1.

func (*OrderV1) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this OrderV1.

type OrderV1InitParameters

type OrderV1InitParameters struct {

	// Dictionary containing the order metadata used to generate the order. The structure is described below.
	Meta []MetaInitParameters `json:"meta,omitempty" tf:"meta,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a order. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 order.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The type of key to be generated. Must be one of asymmetric, key.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*OrderV1InitParameters) DeepCopy

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

func (*OrderV1InitParameters) DeepCopyInto

func (in *OrderV1InitParameters) DeepCopyInto(out *OrderV1InitParameters)

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

type OrderV1List

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

OrderV1List contains a list of OrderV1s

func (*OrderV1List) DeepCopy

func (in *OrderV1List) DeepCopy() *OrderV1List

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

func (*OrderV1List) DeepCopyInto

func (in *OrderV1List) DeepCopyInto(out *OrderV1List)

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

func (*OrderV1List) DeepCopyObject

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

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

func (*OrderV1List) GetItems

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

GetItems of this OrderV1List.

type OrderV1Observation

type OrderV1Observation struct {

	// The container reference / where to find the container.
	ContainerRef *string `json:"containerRef,omitempty" tf:"container_ref,omitempty"`

	// The date the order was created.
	Created *string `json:"created,omitempty" tf:"created,omitempty"`

	// The creator of the order.
	CreatorID *string `json:"creatorId,omitempty" tf:"creator_id,omitempty"`

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

	// Dictionary containing the order metadata used to generate the order. The structure is described below.
	Meta []MetaObservation `json:"meta,omitempty" tf:"meta,omitempty"`

	// The order reference / where to find the order.
	OrderRef *string `json:"orderRef,omitempty" tf:"order_ref,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a order. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 order.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The secret reference / where to find the secret.
	SecretRef *string `json:"secretRef,omitempty" tf:"secret_ref,omitempty"`

	// The status of the order.
	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	// The sub status of the order.
	SubStatus *string `json:"subStatus,omitempty" tf:"sub_status,omitempty"`

	// The sub status message of the order.
	SubStatusMessage *string `json:"subStatusMessage,omitempty" tf:"sub_status_message,omitempty"`

	// The type of key to be generated. Must be one of asymmetric, key.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`

	// The date the order was last updated.
	Updated *string `json:"updated,omitempty" tf:"updated,omitempty"`
}

func (*OrderV1Observation) DeepCopy

func (in *OrderV1Observation) DeepCopy() *OrderV1Observation

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

func (*OrderV1Observation) DeepCopyInto

func (in *OrderV1Observation) DeepCopyInto(out *OrderV1Observation)

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

type OrderV1Parameters

type OrderV1Parameters struct {

	// Dictionary containing the order metadata used to generate the order. The structure is described below.
	// +kubebuilder:validation:Optional
	Meta []MetaParameters `json:"meta,omitempty" tf:"meta,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a order. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 order.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The type of key to be generated. Must be one of asymmetric, key.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*OrderV1Parameters) DeepCopy

func (in *OrderV1Parameters) DeepCopy() *OrderV1Parameters

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

func (*OrderV1Parameters) DeepCopyInto

func (in *OrderV1Parameters) DeepCopyInto(out *OrderV1Parameters)

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

type OrderV1Spec

type OrderV1Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     OrderV1Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// 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 OrderV1InitParameters `json:"initProvider,omitempty"`
}

OrderV1Spec defines the desired state of OrderV1

func (*OrderV1Spec) DeepCopy

func (in *OrderV1Spec) DeepCopy() *OrderV1Spec

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

func (*OrderV1Spec) DeepCopyInto

func (in *OrderV1Spec) DeepCopyInto(out *OrderV1Spec)

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

type OrderV1Status

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

OrderV1Status defines the observed state of OrderV1.

func (*OrderV1Status) DeepCopy

func (in *OrderV1Status) DeepCopy() *OrderV1Status

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

func (*OrderV1Status) DeepCopyInto

func (in *OrderV1Status) DeepCopyInto(out *OrderV1Status)

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

type ReadInitParameters

type ReadInitParameters struct {

	// Whether the container is accessible project wide.
	// Defaults to true.
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// The list of user IDs, which are allowed to access the
	// container, when project_access is set to false.
	Users []*string `json:"users,omitempty" tf:"users,omitempty"`
}

func (*ReadInitParameters) DeepCopy

func (in *ReadInitParameters) DeepCopy() *ReadInitParameters

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

func (*ReadInitParameters) DeepCopyInto

func (in *ReadInitParameters) DeepCopyInto(out *ReadInitParameters)

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

type ReadObservation

type ReadObservation struct {

	// The date the container was created.
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	// Whether the container is accessible project wide.
	// Defaults to true.
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// The date the container was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty" tf:"updated_at,omitempty"`

	// The list of user IDs, which are allowed to access the
	// container, when project_access is set to false.
	Users []*string `json:"users,omitempty" tf:"users,omitempty"`
}

func (*ReadObservation) DeepCopy

func (in *ReadObservation) DeepCopy() *ReadObservation

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

func (*ReadObservation) DeepCopyInto

func (in *ReadObservation) DeepCopyInto(out *ReadObservation)

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

type ReadParameters

type ReadParameters struct {

	// Whether the container is accessible project wide.
	// Defaults to true.
	// +kubebuilder:validation:Optional
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// The list of user IDs, which are allowed to access the
	// container, when project_access is set to false.
	// +kubebuilder:validation:Optional
	Users []*string `json:"users,omitempty" tf:"users,omitempty"`
}

func (*ReadParameters) DeepCopy

func (in *ReadParameters) DeepCopy() *ReadParameters

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

func (*ReadParameters) DeepCopyInto

func (in *ReadParameters) DeepCopyInto(out *ReadParameters)

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

type SecretRefsInitParameters

type SecretRefsInitParameters struct {

	// The name of the secret reference. The reference names must correspond the container type, more details are available here.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The secret reference / where to find the secret, URL.
	SecretRef *string `json:"secretRef,omitempty" tf:"secret_ref,omitempty"`
}

func (*SecretRefsInitParameters) DeepCopy

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

func (*SecretRefsInitParameters) DeepCopyInto

func (in *SecretRefsInitParameters) DeepCopyInto(out *SecretRefsInitParameters)

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

type SecretRefsObservation

type SecretRefsObservation struct {

	// The name of the secret reference. The reference names must correspond the container type, more details are available here.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The secret reference / where to find the secret, URL.
	SecretRef *string `json:"secretRef,omitempty" tf:"secret_ref,omitempty"`
}

func (*SecretRefsObservation) DeepCopy

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

func (*SecretRefsObservation) DeepCopyInto

func (in *SecretRefsObservation) DeepCopyInto(out *SecretRefsObservation)

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

type SecretRefsParameters

type SecretRefsParameters struct {

	// The name of the secret reference. The reference names must correspond the container type, more details are available here.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The secret reference / where to find the secret, URL.
	// +kubebuilder:validation:Optional
	SecretRef *string `json:"secretRef" tf:"secret_ref,omitempty"`
}

func (*SecretRefsParameters) DeepCopy

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

func (*SecretRefsParameters) DeepCopyInto

func (in *SecretRefsParameters) DeepCopyInto(out *SecretRefsParameters)

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

type SecretV1

type SecretV1 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              SecretV1Spec   `json:"spec"`
	Status            SecretV1Status `json:"status,omitempty"`
}

SecretV1 is the Schema for the SecretV1s API. Manages a V1 Barbican secret resource within OpenStack. +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,openstack}

func (*SecretV1) DeepCopy

func (in *SecretV1) DeepCopy() *SecretV1

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

func (*SecretV1) DeepCopyInto

func (in *SecretV1) DeepCopyInto(out *SecretV1)

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

func (*SecretV1) DeepCopyObject

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

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

func (*SecretV1) GetCondition

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

GetCondition of this SecretV1.

func (*SecretV1) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this SecretV1

func (*SecretV1) GetDeletionPolicy

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

GetDeletionPolicy of this SecretV1.

func (*SecretV1) GetID

func (tr *SecretV1) GetID() string

GetID returns ID of underlying Terraform resource of this SecretV1

func (*SecretV1) GetInitParameters

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

GetInitParameters of this SecretV1

func (*SecretV1) GetManagementPolicies

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

GetManagementPolicies of this SecretV1.

func (*SecretV1) GetMergedParameters

func (tr *SecretV1) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this SecretV1

func (*SecretV1) GetObservation

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

GetObservation of this SecretV1

func (*SecretV1) GetParameters

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

GetParameters of this SecretV1

func (*SecretV1) GetProviderConfigReference

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

GetProviderConfigReference of this SecretV1.

func (*SecretV1) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this SecretV1.

func (*SecretV1) GetTerraformResourceType

func (mg *SecretV1) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this SecretV1

func (*SecretV1) GetTerraformSchemaVersion

func (tr *SecretV1) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*SecretV1) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this SecretV1.

func (*SecretV1) LateInitialize

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

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

func (*SecretV1) SetConditions

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

SetConditions of this SecretV1.

func (*SecretV1) SetDeletionPolicy

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

SetDeletionPolicy of this SecretV1.

func (*SecretV1) SetManagementPolicies

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

SetManagementPolicies of this SecretV1.

func (*SecretV1) SetObservation

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

SetObservation for this SecretV1

func (*SecretV1) SetParameters

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

SetParameters for this SecretV1

func (*SecretV1) SetProviderConfigReference

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

SetProviderConfigReference of this SecretV1.

func (*SecretV1) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this SecretV1.

func (*SecretV1) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this SecretV1.

type SecretV1ACLInitParameters

type SecretV1ACLInitParameters struct {
	Read []ACLReadInitParameters `json:"read,omitempty" tf:"read,omitempty"`
}

func (*SecretV1ACLInitParameters) DeepCopy

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

func (*SecretV1ACLInitParameters) DeepCopyInto

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

type SecretV1ACLObservation

type SecretV1ACLObservation struct {
	Read []ACLReadObservation `json:"read,omitempty" tf:"read,omitempty"`
}

func (*SecretV1ACLObservation) DeepCopy

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

func (*SecretV1ACLObservation) DeepCopyInto

func (in *SecretV1ACLObservation) DeepCopyInto(out *SecretV1ACLObservation)

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

type SecretV1ACLParameters

type SecretV1ACLParameters struct {

	// +kubebuilder:validation:Optional
	Read []ACLReadParameters `json:"read,omitempty" tf:"read,omitempty"`
}

func (*SecretV1ACLParameters) DeepCopy

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

func (*SecretV1ACLParameters) DeepCopyInto

func (in *SecretV1ACLParameters) DeepCopyInto(out *SecretV1ACLParameters)

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

type SecretV1InitParameters

type SecretV1InitParameters struct {

	// Allows to control an access to a secret. Currently only the
	// read operation is supported. If not specified, the secret is accessible
	// project wide.
	ACL []SecretV1ACLInitParameters `json:"acl,omitempty" tf:"acl,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	Algorithm *string `json:"algorithm,omitempty" tf:"algorithm,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	BitLength *float64 `json:"bitLength,omitempty" tf:"bit_length,omitempty"`

	// The expiration time of the secret in the RFC3339 timestamp format (e.g. 2019-03-09T12:58:49Z). If omitted, a secret will never expire. Changing this creates a new secret.
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

	// Additional Metadata for the secret.
	Metadata map[string]*string `json:"metadata,omitempty" tf:"metadata,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

	// Human-readable name for the Secret. Does not have
	// to be unique.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The encoding used for the payload to be able to include it in the JSON request. Must be either base64 or binary.
	PayloadContentEncoding *string `json:"payloadContentEncoding,omitempty" tf:"payload_content_encoding,omitempty"`

	// The media type for the content of the payload. Must be one of text/plain, text/plain;charset=utf-8, text/plain; charset=utf-8, application/octet-stream, application/pkcs8.
	PayloadContentType *string `json:"payloadContentType,omitempty" tf:"payload_content_type,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a secret. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 secret.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// Used to indicate the type of secret being stored. For more information see Secret types.
	SecretType *string `json:"secretType,omitempty" tf:"secret_type,omitempty"`
}

func (*SecretV1InitParameters) DeepCopy

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

func (*SecretV1InitParameters) DeepCopyInto

func (in *SecretV1InitParameters) DeepCopyInto(out *SecretV1InitParameters)

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

type SecretV1List

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

SecretV1List contains a list of SecretV1s

func (*SecretV1List) DeepCopy

func (in *SecretV1List) DeepCopy() *SecretV1List

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

func (*SecretV1List) DeepCopyInto

func (in *SecretV1List) DeepCopyInto(out *SecretV1List)

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

func (*SecretV1List) DeepCopyObject

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

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

func (*SecretV1List) GetItems

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

GetItems of this SecretV1List.

type SecretV1Observation

type SecretV1Observation struct {

	// Allows to control an access to a secret. Currently only the
	// read operation is supported. If not specified, the secret is accessible
	// project wide.
	ACL []SecretV1ACLObservation `json:"acl,omitempty" tf:"acl,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	Algorithm *string `json:"algorithm,omitempty" tf:"algorithm,omitempty"`

	// The map of metadata, assigned on the secret, which has been
	// explicitly and implicitly added.
	AllMetadata map[string]*string `json:"allMetadata,omitempty" tf:"all_metadata,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	BitLength *float64 `json:"bitLength,omitempty" tf:"bit_length,omitempty"`

	// The map of the content types, assigned on the secret.
	ContentTypes map[string]*string `json:"contentTypes,omitempty" tf:"content_types,omitempty"`

	// The date the secret was created.
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	// The creator of the secret.
	CreatorID *string `json:"creatorId,omitempty" tf:"creator_id,omitempty"`

	// The expiration time of the secret in the RFC3339 timestamp format (e.g. 2019-03-09T12:58:49Z). If omitted, a secret will never expire. Changing this creates a new secret.
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

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

	// Additional Metadata for the secret.
	Metadata map[string]*string `json:"metadata,omitempty" tf:"metadata,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

	// Human-readable name for the Secret. Does not have
	// to be unique.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The encoding used for the payload to be able to include it in the JSON request. Must be either base64 or binary.
	PayloadContentEncoding *string `json:"payloadContentEncoding,omitempty" tf:"payload_content_encoding,omitempty"`

	// The media type for the content of the payload. Must be one of text/plain, text/plain;charset=utf-8, text/plain; charset=utf-8, application/octet-stream, application/pkcs8.
	PayloadContentType *string `json:"payloadContentType,omitempty" tf:"payload_content_type,omitempty"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a secret. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 secret.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The secret reference / where to find the secret.
	SecretRef *string `json:"secretRef,omitempty" tf:"secret_ref,omitempty"`

	// Used to indicate the type of secret being stored. For more information see Secret types.
	SecretType *string `json:"secretType,omitempty" tf:"secret_type,omitempty"`

	// The status of the secret.
	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	// The date the secret was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty" tf:"updated_at,omitempty"`
}

func (*SecretV1Observation) DeepCopy

func (in *SecretV1Observation) DeepCopy() *SecretV1Observation

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

func (*SecretV1Observation) DeepCopyInto

func (in *SecretV1Observation) DeepCopyInto(out *SecretV1Observation)

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

type SecretV1Parameters

type SecretV1Parameters struct {

	// Allows to control an access to a secret. Currently only the
	// read operation is supported. If not specified, the secret is accessible
	// project wide.
	// +kubebuilder:validation:Optional
	ACL []SecretV1ACLParameters `json:"acl,omitempty" tf:"acl,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	// +kubebuilder:validation:Optional
	Algorithm *string `json:"algorithm,omitempty" tf:"algorithm,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	// +kubebuilder:validation:Optional
	BitLength *float64 `json:"bitLength,omitempty" tf:"bit_length,omitempty"`

	// The expiration time of the secret in the RFC3339 timestamp format (e.g. 2019-03-09T12:58:49Z). If omitted, a secret will never expire. Changing this creates a new secret.
	// +kubebuilder:validation:Optional
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

	// Additional Metadata for the secret.
	// +kubebuilder:validation:Optional
	Metadata map[string]*string `json:"metadata,omitempty" tf:"metadata,omitempty"`

	// Metadata provided by a user or system for informational purposes.
	// +kubebuilder:validation:Optional
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

	// Human-readable name for the Secret. Does not have
	// to be unique.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The encoding used for the payload to be able to include it in the JSON request. Must be either base64 or binary.
	// +kubebuilder:validation:Optional
	PayloadContentEncoding *string `json:"payloadContentEncoding,omitempty" tf:"payload_content_encoding,omitempty"`

	// The media type for the content of the payload. Must be one of text/plain, text/plain;charset=utf-8, text/plain; charset=utf-8, application/octet-stream, application/pkcs8.
	// +kubebuilder:validation:Optional
	PayloadContentType *string `json:"payloadContentType,omitempty" tf:"payload_content_type,omitempty"`

	// The secret's data to be stored. payload_content_type must also be supplied if payload is included.
	// +kubebuilder:validation:Optional
	PayloadSecretRef *v1.SecretKeySelector `json:"payloadSecretRef,omitempty" tf:"-"`

	// The region in which to obtain the V1 KeyManager client.
	// A KeyManager client is needed to create a secret. If omitted, the
	// region argument of the provider is used. Changing this creates a new
	// V1 secret.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// Used to indicate the type of secret being stored. For more information see Secret types.
	// +kubebuilder:validation:Optional
	SecretType *string `json:"secretType,omitempty" tf:"secret_type,omitempty"`
}

func (*SecretV1Parameters) DeepCopy

func (in *SecretV1Parameters) DeepCopy() *SecretV1Parameters

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

func (*SecretV1Parameters) DeepCopyInto

func (in *SecretV1Parameters) DeepCopyInto(out *SecretV1Parameters)

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

type SecretV1Spec

type SecretV1Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     SecretV1Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// 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 SecretV1InitParameters `json:"initProvider,omitempty"`
}

SecretV1Spec defines the desired state of SecretV1

func (*SecretV1Spec) DeepCopy

func (in *SecretV1Spec) DeepCopy() *SecretV1Spec

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

func (*SecretV1Spec) DeepCopyInto

func (in *SecretV1Spec) DeepCopyInto(out *SecretV1Spec)

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

type SecretV1Status

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

SecretV1Status defines the observed state of SecretV1.

func (*SecretV1Status) DeepCopy

func (in *SecretV1Status) DeepCopy() *SecretV1Status

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

func (*SecretV1Status) DeepCopyInto

func (in *SecretV1Status) DeepCopyInto(out *SecretV1Status)

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