v1alpha1

package
v0.0.0-...-de72ed3 Latest Latest
Warning

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

Go to latest
Published: Jun 15, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

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

Index

Constants

View Source
const (
	CRDGroup   = "keymanager.openstack.jet.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 ACLObservation

type ACLObservation struct {
}

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 ACLReadObservation

type ACLReadObservation struct {
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	UpdatedAt *string `json:"updatedAt,omitempty" tf:"updated_at,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 {

	// +kubebuilder:validation:Optional
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// +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 ConsumersObservation

type ConsumersObservation struct {
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	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"`
	Spec              ContainerV1Spec   `json:"spec"`
	Status            ContainerV1Status `json:"status,omitempty"`
}

ContainerV1 is the Schema for the ContainerV1s API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,openstackjet}

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) GetObservation

func (tr *ContainerV1) GetObservation() (map[string]interface{}, error)

GetObservation of this ContainerV1

func (*ContainerV1) GetParameters

func (tr *ContainerV1) GetParameters() (map[string]interface{}, error)

GetParameters of this ContainerV1

func (*ContainerV1) GetProviderConfigReference

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

GetProviderConfigReference of this ContainerV1.

func (*ContainerV1) GetProviderReference

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

GetProviderReference of this ContainerV1. Deprecated: Use GetProviderConfigReference.

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) SetObservation

func (tr *ContainerV1) SetObservation(obs map[string]interface{}) error

SetObservation for this ContainerV1

func (*ContainerV1) SetParameters

func (tr *ContainerV1) SetParameters(params map[string]interface{}) error

SetParameters for this ContainerV1

func (*ContainerV1) SetProviderConfigReference

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

SetProviderConfigReference of this ContainerV1.

func (*ContainerV1) SetProviderReference

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

SetProviderReference of this ContainerV1. Deprecated: Use SetProviderConfigReference.

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 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 {
	Consumers []ConsumersObservation `json:"consumers,omitempty" tf:"consumers,omitempty"`

	ContainerRef *string `json:"containerRef,omitempty" tf:"container_ref,omitempty"`

	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	CreatorID *string `json:"creatorId,omitempty" tf:"creator_id,omitempty"`

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

	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	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 {

	// +kubebuilder:validation:Optional
	ACL []ACLParameters `json:"acl,omitempty" tf:"acl,omitempty"`

	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// +kubebuilder:validation:Optional
	SecretRefs []SecretRefsParameters `json:"secretRefs,omitempty" tf:"secret_refs,omitempty"`

	// +kubebuilder:validation:Required
	Type *string `json:"type" 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"`
}

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 MetaObservation

type MetaObservation struct {
}

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 {

	// +kubebuilder:validation:Required
	Algorithm *string `json:"algorithm" tf:"algorithm,omitempty"`

	// +kubebuilder:validation:Required
	BitLength *float64 `json:"bitLength" tf:"bit_length,omitempty"`

	// +kubebuilder:validation:Optional
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

	// +kubebuilder:validation:Optional
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// +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"`
	Spec              OrderV1Spec   `json:"spec"`
	Status            OrderV1Status `json:"status,omitempty"`
}

OrderV1 is the Schema for the OrderV1s API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,openstackjet}

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) GetObservation

func (tr *OrderV1) GetObservation() (map[string]interface{}, error)

GetObservation of this OrderV1

func (*OrderV1) GetParameters

func (tr *OrderV1) GetParameters() (map[string]interface{}, error)

GetParameters of this OrderV1

func (*OrderV1) GetProviderConfigReference

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

GetProviderConfigReference of this OrderV1.

func (*OrderV1) GetProviderReference

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

GetProviderReference of this OrderV1. Deprecated: Use GetProviderConfigReference.

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) SetObservation

func (tr *OrderV1) SetObservation(obs map[string]interface{}) error

SetObservation for this OrderV1

func (*OrderV1) SetParameters

func (tr *OrderV1) SetParameters(params map[string]interface{}) error

SetParameters for this OrderV1

func (*OrderV1) SetProviderConfigReference

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

SetProviderConfigReference of this OrderV1.

func (*OrderV1) SetProviderReference

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

SetProviderReference of this OrderV1. Deprecated: Use SetProviderConfigReference.

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 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 {
	ContainerRef *string `json:"containerRef,omitempty" tf:"container_ref,omitempty"`

	Created *string `json:"created,omitempty" tf:"created,omitempty"`

	CreatorID *string `json:"creatorId,omitempty" tf:"creator_id,omitempty"`

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

	OrderRef *string `json:"orderRef,omitempty" tf:"order_ref,omitempty"`

	SecretRef *string `json:"secretRef,omitempty" tf:"secret_ref,omitempty"`

	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	SubStatus *string `json:"subStatus,omitempty" tf:"sub_status,omitempty"`

	SubStatusMessage *string `json:"subStatusMessage,omitempty" tf:"sub_status_message,omitempty"`

	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 {

	// +kubebuilder:validation:Required
	Meta []MetaParameters `json:"meta" tf:"meta,omitempty"`

	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// +kubebuilder:validation:Required
	Type *string `json:"type" 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"`
}

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 ReadObservation

type ReadObservation struct {
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	UpdatedAt *string `json:"updatedAt,omitempty" tf:"updated_at,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 {

	// +kubebuilder:validation:Optional
	ProjectAccess *bool `json:"projectAccess,omitempty" tf:"project_access,omitempty"`

	// +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 SecretRefsObservation

type SecretRefsObservation struct {
}

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 {

	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// +kubebuilder:validation:Required
	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 +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,openstackjet}

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) GetObservation

func (tr *SecretV1) GetObservation() (map[string]interface{}, error)

GetObservation of this SecretV1

func (*SecretV1) GetParameters

func (tr *SecretV1) GetParameters() (map[string]interface{}, error)

GetParameters of this SecretV1

func (*SecretV1) GetProviderConfigReference

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

GetProviderConfigReference of this SecretV1.

func (*SecretV1) GetProviderReference

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

GetProviderReference of this SecretV1. Deprecated: Use GetProviderConfigReference.

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) SetObservation

func (tr *SecretV1) SetObservation(obs map[string]interface{}) error

SetObservation for this SecretV1

func (*SecretV1) SetParameters

func (tr *SecretV1) SetParameters(params map[string]interface{}) error

SetParameters for this SecretV1

func (*SecretV1) SetProviderConfigReference

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

SetProviderConfigReference of this SecretV1.

func (*SecretV1) SetProviderReference

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

SetProviderReference of this SecretV1. Deprecated: Use SetProviderConfigReference.

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 SecretV1ACLObservation

type SecretV1ACLObservation struct {
}

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 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 {
	AllMetadata map[string]*string `json:"allMetadata,omitempty" tf:"all_metadata,omitempty"`

	ContentTypes map[string]*string `json:"contentTypes,omitempty" tf:"content_types,omitempty"`

	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at,omitempty"`

	CreatorID *string `json:"creatorId,omitempty" tf:"creator_id,omitempty"`

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

	SecretRef *string `json:"secretRef,omitempty" tf:"secret_ref,omitempty"`

	Status *string `json:"status,omitempty" tf:"status,omitempty"`

	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 {

	// +kubebuilder:validation:Optional
	ACL []SecretV1ACLParameters `json:"acl,omitempty" tf:"acl,omitempty"`

	// +kubebuilder:validation:Optional
	Algorithm *string `json:"algorithm,omitempty" tf:"algorithm,omitempty"`

	// +kubebuilder:validation:Optional
	BitLength *float64 `json:"bitLength,omitempty" tf:"bit_length,omitempty"`

	// +kubebuilder:validation:Optional
	Expiration *string `json:"expiration,omitempty" tf:"expiration,omitempty"`

	// +kubebuilder:validation:Optional
	Metadata map[string]*string `json:"metadata,omitempty" tf:"metadata,omitempty"`

	// +kubebuilder:validation:Optional
	Mode *string `json:"mode,omitempty" tf:"mode,omitempty"`

	// +kubebuilder:validation:Optional
	PayloadContentEncoding *string `json:"payloadContentEncoding,omitempty" tf:"payload_content_encoding,omitempty"`

	// +kubebuilder:validation:Optional
	PayloadContentType *string `json:"payloadContentType,omitempty" tf:"payload_content_type,omitempty"`

	// +kubebuilder:validation:Optional
	PayloadSecretRef *v1.SecretKeySelector `json:"payloadSecretRef,omitempty" tf:"-"`

	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// +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"`
}

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