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=project.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: project.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 Invitation added in v0.5.0

type Invitation struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              InvitationSpec   `json:"spec,omitempty"`
	Status            InvitationStatus `json:"status,omitempty"`
}

func (*Invitation) DeepCopy added in v0.5.0

func (in *Invitation) DeepCopy() *Invitation

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

func (*Invitation) DeepCopyInto added in v0.5.0

func (in *Invitation) DeepCopyInto(out *Invitation)

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

func (*Invitation) DeepCopyObject added in v0.5.0

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

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

func (*Invitation) SetupWebhookWithManager added in v0.5.0

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

func (*Invitation) ValidateCreate added in v0.5.0

func (r *Invitation) ValidateCreate() error

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

func (*Invitation) ValidateDelete added in v0.5.0

func (r *Invitation) ValidateDelete() error

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

func (*Invitation) ValidateUpdate added in v0.5.0

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

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

type InvitationList added in v0.5.0

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

InvitationList is a list of Invitations

func (*InvitationList) DeepCopy added in v0.5.0

func (in *InvitationList) DeepCopy() *InvitationList

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

func (*InvitationList) DeepCopyInto added in v0.5.0

func (in *InvitationList) DeepCopyInto(out *InvitationList)

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

func (*InvitationList) DeepCopyObject added in v0.5.0

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

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

type InvitationSpec added in v0.5.0

type InvitationSpec struct {
	State *InvitationSpecResource `json:"state,omitempty" tf:"-"`

	Resource InvitationSpecResource `json:"resource" tf:"resource"`

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

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

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

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

func (*InvitationSpec) DeepCopy added in v0.5.0

func (in *InvitationSpec) DeepCopy() *InvitationSpec

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

func (*InvitationSpec) DeepCopyInto added in v0.5.0

func (in *InvitationSpec) DeepCopyInto(out *InvitationSpec)

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

type InvitationSpecResource added in v0.5.0

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

	// +optional
	CreatedAt *string `json:"createdAt,omitempty" tf:"created_at"`
	// +optional
	ExpiresAt *string `json:"expiresAt,omitempty" tf:"expires_at"`
	// +optional
	InvitationID *string `json:"invitationID,omitempty" tf:"invitation_id"`
	// +optional
	InviterUsername *string  `json:"inviterUsername,omitempty" tf:"inviter_username"`
	ProjectID       *string  `json:"projectID" tf:"project_id"`
	Roles           []string `json:"roles" tf:"roles"`
	Username        *string  `json:"username" tf:"username"`
}

func (*InvitationSpecResource) DeepCopy added in v0.5.0

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

func (*InvitationSpecResource) DeepCopyInto added in v0.5.0

func (in *InvitationSpecResource) DeepCopyInto(out *InvitationSpecResource)

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

type InvitationStatus added in v0.5.0

type InvitationStatus 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 (*InvitationStatus) DeepCopy added in v0.5.0

func (in *InvitationStatus) DeepCopy() *InvitationStatus

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

func (*InvitationStatus) DeepCopyInto added in v0.5.0

func (in *InvitationStatus) DeepCopyInto(out *InvitationStatus)

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

type IpAccessList

type IpAccessList struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              IpAccessListSpec   `json:"spec,omitempty"`
	Status            IpAccessListStatus `json:"status,omitempty"`
}

func (*IpAccessList) DeepCopy

func (in *IpAccessList) DeepCopy() *IpAccessList

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

func (*IpAccessList) DeepCopyInto

func (in *IpAccessList) DeepCopyInto(out *IpAccessList)

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

func (*IpAccessList) DeepCopyObject

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

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

func (*IpAccessList) SetupWebhookWithManager

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

func (*IpAccessList) ValidateCreate

func (r *IpAccessList) ValidateCreate() error

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

func (*IpAccessList) ValidateDelete

func (r *IpAccessList) ValidateDelete() error

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

func (*IpAccessList) ValidateUpdate

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

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

type IpAccessListList

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

IpAccessListList is a list of IpAccessLists

func (*IpAccessListList) DeepCopy

func (in *IpAccessListList) DeepCopy() *IpAccessListList

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

func (*IpAccessListList) DeepCopyInto

func (in *IpAccessListList) DeepCopyInto(out *IpAccessListList)

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

func (*IpAccessListList) DeepCopyObject

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

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

type IpAccessListSpec

type IpAccessListSpec struct {
	State *IpAccessListSpecResource `json:"state,omitempty" tf:"-"`

	Resource IpAccessListSpecResource `json:"resource" tf:"resource"`

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

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

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

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

func (*IpAccessListSpec) DeepCopy

func (in *IpAccessListSpec) DeepCopy() *IpAccessListSpec

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

func (*IpAccessListSpec) DeepCopyInto

func (in *IpAccessListSpec) DeepCopyInto(out *IpAccessListSpec)

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

type IpAccessListSpecResource

type IpAccessListSpecResource struct {
	Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"`

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

	// +optional
	AwsSecurityGroup *string `json:"awsSecurityGroup,omitempty" tf:"aws_security_group"`
	// +optional
	CidrBlock *string `json:"cidrBlock,omitempty" tf:"cidr_block"`
	// +optional
	Comment *string `json:"comment,omitempty" tf:"comment"`
	// +optional
	IpAddress *string `json:"ipAddress,omitempty" tf:"ip_address"`
	ProjectID *string `json:"projectID" tf:"project_id"`
}

func (*IpAccessListSpecResource) DeepCopy

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

func (*IpAccessListSpecResource) DeepCopyInto

func (in *IpAccessListSpecResource) DeepCopyInto(out *IpAccessListSpecResource)

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

type IpAccessListStatus

type IpAccessListStatus 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 (*IpAccessListStatus) DeepCopy

func (in *IpAccessListStatus) DeepCopy() *IpAccessListStatus

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

func (*IpAccessListStatus) DeepCopyInto

func (in *IpAccessListStatus) DeepCopyInto(out *IpAccessListStatus)

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

type Project

type Project struct {
	metav1.TypeMeta   `json:",inline,omitempty"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              ProjectSpec   `json:"spec,omitempty"`
	Status            ProjectStatus `json:"status,omitempty"`
}

func (*Project) DeepCopy

func (in *Project) DeepCopy() *Project

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

func (*Project) DeepCopyInto

func (in *Project) DeepCopyInto(out *Project)

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

func (*Project) DeepCopyObject

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

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

func (*Project) SetupWebhookWithManager

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

func (*Project) ValidateCreate

func (r *Project) ValidateCreate() error

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

func (*Project) ValidateDelete

func (r *Project) ValidateDelete() error

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

func (*Project) ValidateUpdate

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

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

type ProjectList

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

ProjectList is a list of Projects

func (*ProjectList) DeepCopy

func (in *ProjectList) DeepCopy() *ProjectList

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

func (*ProjectList) DeepCopyInto

func (in *ProjectList) DeepCopyInto(out *ProjectList)

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

func (*ProjectList) DeepCopyObject

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

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

type ProjectSpec

type ProjectSpec struct {
	State *ProjectSpecResource `json:"state,omitempty" tf:"-"`

	Resource ProjectSpecResource `json:"resource" tf:"resource"`

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

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

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

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

func (*ProjectSpec) DeepCopy

func (in *ProjectSpec) DeepCopy() *ProjectSpec

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

func (*ProjectSpec) DeepCopyInto

func (in *ProjectSpec) DeepCopyInto(out *ProjectSpec)

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

type ProjectSpecApiKeys added in v0.5.0

type ProjectSpecApiKeys struct {
	ApiKeyID  *string  `json:"apiKeyID" tf:"api_key_id"`
	RoleNames []string `json:"roleNames" tf:"role_names"`
}

func (*ProjectSpecApiKeys) DeepCopy added in v0.5.0

func (in *ProjectSpecApiKeys) DeepCopy() *ProjectSpecApiKeys

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

func (*ProjectSpecApiKeys) DeepCopyInto added in v0.5.0

func (in *ProjectSpecApiKeys) DeepCopyInto(out *ProjectSpecApiKeys)

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

type ProjectSpecResource

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

	// +optional
	ApiKeys []ProjectSpecApiKeys `json:"apiKeys,omitempty" tf:"api_keys"`
	// +optional
	ClusterCount *int64 `json:"clusterCount,omitempty" tf:"cluster_count"`
	// +optional
	Created *string `json:"created,omitempty" tf:"created"`
	Name    *string `json:"name" tf:"name"`
	OrgID   *string `json:"orgID" tf:"org_id"`
	// +optional
	ProjectOwnerID *string `json:"projectOwnerID,omitempty" tf:"project_owner_id"`
	// +optional
	Teams []ProjectSpecTeams `json:"teams,omitempty" tf:"teams"`
	// +optional
	WithDefaultAlertsSettings *bool `json:"withDefaultAlertsSettings,omitempty" tf:"with_default_alerts_settings"`
}

func (*ProjectSpecResource) DeepCopy

func (in *ProjectSpecResource) DeepCopy() *ProjectSpecResource

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

func (*ProjectSpecResource) DeepCopyInto

func (in *ProjectSpecResource) DeepCopyInto(out *ProjectSpecResource)

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

type ProjectSpecTeams

type ProjectSpecTeams struct {
	RoleNames []string `json:"roleNames" tf:"role_names"`
	TeamID    *string  `json:"teamID" tf:"team_id"`
}

func (*ProjectSpecTeams) DeepCopy

func (in *ProjectSpecTeams) DeepCopy() *ProjectSpecTeams

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

func (*ProjectSpecTeams) DeepCopyInto

func (in *ProjectSpecTeams) DeepCopyInto(out *ProjectSpecTeams)

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

type ProjectStatus

type ProjectStatus 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 (*ProjectStatus) DeepCopy

func (in *ProjectStatus) DeepCopy() *ProjectStatus

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

func (*ProjectStatus) DeepCopyInto

func (in *ProjectStatus) DeepCopyInto(out *ProjectStatus)

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