v1alpha1

package
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: May 8, 2022 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

+groupName=x509.mongodbatlas.kubeform.com

Index

Constants

This section is empty.

Variables

View Source
var (
	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
	SchemeBuilder runtime.SchemeBuilder

	AddToScheme = localSchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: x509.GroupName, Version: "v1alpha1"}

Functions

func GetDecoder

func GetDecoder() map[string]jsoniter.ValDecoder

func GetEncoder

func GetEncoder() map[string]jsoniter.ValEncoder

func Kind

func Kind(kind string) schema.GroupKind

Kind takes an unqualified kind and returns a Group qualified GroupKind

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type AuthenticationDatabaseUser

type AuthenticationDatabaseUser struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              AuthenticationDatabaseUserSpec   `json:"spec,omitempty"`
	Status            AuthenticationDatabaseUserStatus `json:"status,omitempty"`
}

func (*AuthenticationDatabaseUser) DeepCopy

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

func (*AuthenticationDatabaseUser) DeepCopyInto

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

func (*AuthenticationDatabaseUser) DeepCopyObject

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

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

func (*AuthenticationDatabaseUser) SetupWebhookWithManager

func (r *AuthenticationDatabaseUser) SetupWebhookWithManager(mgr ctrl.Manager) error

func (*AuthenticationDatabaseUser) ValidateCreate

func (r *AuthenticationDatabaseUser) ValidateCreate() error

ValidateCreate implements webhook.Validator so a webhook will be registered for the type

func (*AuthenticationDatabaseUser) ValidateDelete

func (r *AuthenticationDatabaseUser) ValidateDelete() error

ValidateDelete implements webhook.Validator so a webhook will be registered for the type

func (*AuthenticationDatabaseUser) ValidateUpdate

func (r *AuthenticationDatabaseUser) ValidateUpdate(old runtime.Object) error

ValidateUpdate implements webhook.Validator so a webhook will be registered for the type

type AuthenticationDatabaseUserList

type AuthenticationDatabaseUserList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	// Items is a list of AuthenticationDatabaseUser CRD objects
	Items []AuthenticationDatabaseUser `json:"items,omitempty"`
}

AuthenticationDatabaseUserList is a list of AuthenticationDatabaseUsers

func (*AuthenticationDatabaseUserList) DeepCopy

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

func (*AuthenticationDatabaseUserList) DeepCopyInto

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

func (*AuthenticationDatabaseUserList) DeepCopyObject

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

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

type AuthenticationDatabaseUserSpec

type AuthenticationDatabaseUserSpec struct {
	State *AuthenticationDatabaseUserSpecResource `json:"state,omitempty" tf:"-"`

	Resource AuthenticationDatabaseUserSpecResource `json:"resource" tf:"resource"`

	UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"`

	TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"`

	ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"`

	SecretRef *core.LocalObjectReference `json:"secretRef,omitempty" tf:"-"`

	BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"`
}

func (*AuthenticationDatabaseUserSpec) DeepCopy

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

func (*AuthenticationDatabaseUserSpec) DeepCopyInto

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

type AuthenticationDatabaseUserSpecCertificates

type AuthenticationDatabaseUserSpecCertificates struct {
	// +optional
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at"`
	// +optional
	GroupID *string `json:"groupID,omitempty" tf:"group_id"`
	// +optional
	ID *int64 `json:"ID,omitempty" tf:"id"`
	// +optional
	NotAfter *string `json:"notAfter,omitempty" tf:"not_after"`
	// +optional
	Subject *string `json:"subject,omitempty" tf:"subject"`
}

func (*AuthenticationDatabaseUserSpecCertificates) DeepCopy

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

func (*AuthenticationDatabaseUserSpecCertificates) DeepCopyInto

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

type AuthenticationDatabaseUserSpecResource

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

	// +optional
	Certificates []AuthenticationDatabaseUserSpecCertificates `json:"certificates,omitempty" tf:"certificates"`
	// +optional
	CurrentCertificate *string `json:"-" sensitive:"true" tf:"current_certificate"`
	// +optional
	CustomerX509Cas *string `json:"-" sensitive:"true" tf:"customer_x509_cas"`
	// +optional
	MonthsUntilExpiration *int64  `json:"monthsUntilExpiration,omitempty" tf:"months_until_expiration"`
	ProjectID             *string `json:"projectID" tf:"project_id"`
	// +optional
	Username *string `json:"username,omitempty" tf:"username"`
}

func (*AuthenticationDatabaseUserSpecResource) DeepCopy

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

func (*AuthenticationDatabaseUserSpecResource) DeepCopyInto

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

type AuthenticationDatabaseUserStatus

type AuthenticationDatabaseUserStatus struct {
	// Resource generation, which is updated on mutation by the API Server.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty"`
	// +optional
	Phase status.Status `json:"phase,omitempty"`
	// +optional
	Conditions []kmapi.Condition `json:"conditions,omitempty"`
}

func (*AuthenticationDatabaseUserStatus) DeepCopy

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

func (*AuthenticationDatabaseUserStatus) DeepCopyInto

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