v1alpha1

package
v0.1.5 Latest Latest
Warning

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

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

Documentation

Overview

+kubebuilder:object:generate=true +groupName=resources.gitea.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "resources.gitea.jet.crossplane.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

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 (
	Repository_Kind             = "Repository"
	Repository_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Repository_Kind}.String()
	Repository_KindAPIVersion   = Repository_Kind + "." + CRDGroupVersion.String()
	Repository_GroupVersionKind = CRDGroupVersion.WithKind(Repository_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type Repository

type Repository struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              RepositorySpec   `json:"spec"`
	Status            RepositoryStatus `json:"status,omitempty"`
}

Repository is the Schema for the Repositorys 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,giteajet}

func (*Repository) DeepCopy

func (in *Repository) DeepCopy() *Repository

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

func (*Repository) DeepCopyInto

func (in *Repository) DeepCopyInto(out *Repository)

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

func (*Repository) DeepCopyObject

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

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

func (*Repository) GetCondition

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

GetCondition of this Repository.

func (*Repository) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this Repository

func (*Repository) GetDeletionPolicy

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

GetDeletionPolicy of this Repository.

func (*Repository) GetID

func (tr *Repository) GetID() string

GetID returns ID of underlying Terraform resource of this Repository

func (*Repository) GetObservation

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

GetObservation of this Repository

func (*Repository) GetParameters

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

GetParameters of this Repository

func (*Repository) GetProviderConfigReference

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

GetProviderConfigReference of this Repository.

func (*Repository) GetProviderReference

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

GetProviderReference of this Repository. Deprecated: Use GetProviderConfigReference.

func (*Repository) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this Repository.

func (*Repository) GetTerraformResourceType

func (mg *Repository) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Repository

func (*Repository) GetTerraformSchemaVersion

func (tr *Repository) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Repository) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Repository.

func (*Repository) LateInitialize

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

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

func (*Repository) SetConditions

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

SetConditions of this Repository.

func (*Repository) SetDeletionPolicy

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

SetDeletionPolicy of this Repository.

func (*Repository) SetObservation

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

SetObservation for this Repository

func (*Repository) SetParameters

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

SetParameters for this Repository

func (*Repository) SetProviderConfigReference

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

SetProviderConfigReference of this Repository.

func (*Repository) SetProviderReference

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

SetProviderReference of this Repository. Deprecated: Use SetProviderConfigReference.

func (*Repository) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this Repository.

func (*Repository) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Repository.

type RepositoryList

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

RepositoryList contains a list of Repositorys

func (*RepositoryList) DeepCopy

func (in *RepositoryList) DeepCopy() *RepositoryList

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

func (*RepositoryList) DeepCopyInto

func (in *RepositoryList) DeepCopyInto(out *RepositoryList)

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

func (*RepositoryList) DeepCopyObject

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

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

func (*RepositoryList) GetItems

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

GetItems of this RepositoryList.

type RepositoryObservation

type RepositoryObservation struct {
	Created *string `json:"created,omitempty" tf:"created,omitempty"`

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

	PermissionAdmin *bool `json:"permissionAdmin,omitempty" tf:"permission_admin,omitempty"`

	PermissionPull *bool `json:"permissionPull,omitempty" tf:"permission_pull,omitempty"`

	PermissionPush *bool `json:"permissionPush,omitempty" tf:"permission_push,omitempty"`

	Updated *string `json:"updated,omitempty" tf:"updated,omitempty"`
}

func (*RepositoryObservation) DeepCopy

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

func (*RepositoryObservation) DeepCopyInto

func (in *RepositoryObservation) DeepCopyInto(out *RepositoryObservation)

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

type RepositoryParameters

type RepositoryParameters struct {

	// +kubebuilder:validation:Optional
	AllowManualMerge *bool `json:"allowManualMerge,omitempty" tf:"allow_manual_merge,omitempty"`

	// +kubebuilder:validation:Optional
	AllowMergeCommits *bool `json:"allowMergeCommits,omitempty" tf:"allow_merge_commits,omitempty"`

	// +kubebuilder:validation:Optional
	AllowRebase *bool `json:"allowRebase,omitempty" tf:"allow_rebase,omitempty"`

	// +kubebuilder:validation:Optional
	AllowRebaseExplicit *bool `json:"allowRebaseExplicit,omitempty" tf:"allow_rebase_explicit,omitempty"`

	// +kubebuilder:validation:Optional
	AllowSquashMerge *bool `json:"allowSquashMerge,omitempty" tf:"allow_squash_merge,omitempty"`

	// +kubebuilder:validation:Optional
	Archived *bool `json:"archived,omitempty" tf:"archived,omitempty"`

	// Flag if the repository should be initiated with the configured values
	// +kubebuilder:validation:Optional
	AutoInit *bool `json:"autoInit,omitempty" tf:"auto_init,omitempty"`

	// +kubebuilder:validation:Optional
	AutodetectManualMerge *bool `json:"autodetectManualMerge,omitempty" tf:"autodetect_manual_merge,omitempty"`

	// The default branch of the repository. Defaults to `main`
	// +kubebuilder:validation:Optional
	DefaultBranch *string `json:"defaultBranch,omitempty" tf:"default_branch,omitempty"`

	// The description of the repository.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// A specific gitignore that should be commited to the repositoryon creation if `auto_init` is set to `true`
	// Need to exist in the gitea instance
	// +kubebuilder:validation:Optional
	Gitignores *string `json:"gitignores,omitempty" tf:"gitignores,omitempty"`

	// A flag if the repository should have issue management enabled or not.
	// +kubebuilder:validation:Optional
	HasIssues *bool `json:"hasIssues,omitempty" tf:"has_issues,omitempty"`

	// A flag if the repository should have the native project management enabled or not.
	// +kubebuilder:validation:Optional
	HasProjects *bool `json:"hasProjects,omitempty" tf:"has_projects,omitempty"`

	// A flag if the repository should acceppt pull requests or not.
	// +kubebuilder:validation:Optional
	HasPullRequests *bool `json:"hasPullRequests,omitempty" tf:"has_pull_requests,omitempty"`

	// A flag if the repository should have the native wiki enabled or not.
	// +kubebuilder:validation:Optional
	HasWiki *bool `json:"hasWiki,omitempty" tf:"has_wiki,omitempty"`

	// +kubebuilder:validation:Optional
	IgnoreWhitespaceConflicts *bool `json:"ignoreWhitespaceConflicts,omitempty" tf:"ignore_whitespace_conflicts,omitempty"`

	// The Issue Label configuration to be used in this repository.
	// Need to exist in the gitea instance
	// +kubebuilder:validation:Optional
	IssueLabels *string `json:"issueLabels,omitempty" tf:"issue_labels,omitempty"`

	// The license under which the source code of this repository should be.
	// Need to exist in the gitea instance
	// +kubebuilder:validation:Optional
	License *string `json:"license,omitempty" tf:"license,omitempty"`

	// +kubebuilder:validation:Optional
	MigrationCloneAddress *string `json:"migrationCloneAddress,omitempty" tf:"migration_clone_address,omitempty"`

	// DEPRECATED in favor of `migration_clone_address`
	// +kubebuilder:validation:Optional
	MigrationCloneAddresse *string `json:"migrationCloneAddresse,omitempty" tf:"migration_clone_addresse,omitempty"`

	// +kubebuilder:validation:Optional
	MigrationIssueLabels *bool `json:"migrationIssueLabels,omitempty" tf:"migration_issue_labels,omitempty"`

	// +kubebuilder:validation:Optional
	MigrationLfs *bool `json:"migrationLfs,omitempty" tf:"migration_lfs,omitempty"`

	// +kubebuilder:validation:Optional
	MigrationLfsEndpoint *string `json:"migrationLfsEndpoint,omitempty" tf:"migration_lfs_endpoint,omitempty"`

	// +kubebuilder:validation:Optional
	MigrationMilestones *bool `json:"migrationMilestones,omitempty" tf:"migration_milestones,omitempty"`

	// valid time units are 'h', 'm', 's'. 0 to disable automatic sync
	// +kubebuilder:validation:Optional
	MigrationMirrorInterval *string `json:"migrationMirrorInterval,omitempty" tf:"migration_mirror_interval,omitempty"`

	// +kubebuilder:validation:Optional
	MigrationReleases *bool `json:"migrationReleases,omitempty" tf:"migration_releases,omitempty"`

	// git/github/gitlab/gitea/gogs
	// +kubebuilder:validation:Optional
	MigrationService *string `json:"migrationService,omitempty" tf:"migration_service,omitempty"`

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

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

	// +kubebuilder:validation:Optional
	MigrationServiceAuthUsername *string `json:"migrationServiceAuthUsername,omitempty" tf:"migration_service_auth_username,omitempty"`

	// +kubebuilder:validation:Optional
	Mirror *bool `json:"mirror,omitempty" tf:"mirror,omitempty"`

	// The Name of the repository
	// +kubebuilder:validation:Required
	Name *string `json:"name" tf:"name,omitempty"`

	// Flag if the repository should be private or not.
	// +kubebuilder:validation:Optional
	Private *bool `json:"private,omitempty" tf:"private,omitempty"`

	// +kubebuilder:validation:Optional
	Readme *string `json:"readme,omitempty" tf:"readme,omitempty"`

	// +kubebuilder:validation:Optional
	RepoTemplate *bool `json:"repoTemplate,omitempty" tf:"repo_template,omitempty"`

	// The Owner of the repository
	// +kubebuilder:validation:Required
	Username *string `json:"username" tf:"username,omitempty"`

	// A link to a website with more information.
	// +kubebuilder:validation:Optional
	Website *string `json:"website,omitempty" tf:"website,omitempty"`
}

func (*RepositoryParameters) DeepCopy

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

func (*RepositoryParameters) DeepCopyInto

func (in *RepositoryParameters) DeepCopyInto(out *RepositoryParameters)

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

type RepositorySpec

type RepositorySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RepositoryParameters `json:"forProvider"`
}

RepositorySpec defines the desired state of Repository

func (*RepositorySpec) DeepCopy

func (in *RepositorySpec) DeepCopy() *RepositorySpec

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

func (*RepositorySpec) DeepCopyInto

func (in *RepositorySpec) DeepCopyInto(out *RepositorySpec)

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

type RepositoryStatus

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

RepositoryStatus defines the observed state of Repository.

func (*RepositoryStatus) DeepCopy

func (in *RepositoryStatus) DeepCopy() *RepositoryStatus

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

func (*RepositoryStatus) DeepCopyInto

func (in *RepositoryStatus) DeepCopyInto(out *RepositoryStatus)

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