v1alpha1

package
v0.0.0-...-affaa53 Latest Latest
Warning

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

Go to latest
Published: Jun 28, 2019 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

+groupName=applicationconnector.kyma-project.io

Index

Constants

This section is empty.

Variables

View Source
var (
	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
	SchemeBuilder runtime.SchemeBuilder

	AddToScheme = localSchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: "applicationconnector.kyma-project.io", Version: "v1alpha1"}

SchemeGroupVersion is group version used to register these objects

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type CentralConnection

type CentralConnection struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              CentralConnectionSpec   `json:"spec"`
	Status            CentralConnectionStatus `json:"status,omitempty"`
}

func (*CentralConnection) DeepCopy

func (in *CentralConnection) DeepCopy() *CentralConnection

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

func (*CentralConnection) DeepCopyInto

func (in *CentralConnection) DeepCopyInto(out *CentralConnection)

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

func (*CentralConnection) DeepCopyObject

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

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

func (CentralConnection) HasCertStatus

func (cc CentralConnection) HasCertStatus() bool

func (CentralConnection) HasErrorStatus

func (cc CentralConnection) HasErrorStatus() bool

type CentralConnectionError

type CentralConnectionError struct {
	Message string `json:"message"`
}

type CentralConnectionList

type CentralConnectionList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []CentralConnection `json:"items"`
}

func (*CentralConnectionList) DeepCopy

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

func (*CentralConnectionList) DeepCopyInto

func (in *CentralConnectionList) DeepCopyInto(out *CentralConnectionList)

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

func (*CentralConnectionList) DeepCopyObject

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

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

type CentralConnectionSpec

type CentralConnectionSpec struct {
	ManagementInfoURL string      `json:"managementInfoUrl"`
	EstablishedAt     metav1.Time `json:"establishedAt"`
	RenewNow          bool        `json:"renewNow,omitempty"`
}

func (*CentralConnectionSpec) DeepCopy

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

func (*CentralConnectionSpec) DeepCopyInto

func (in *CentralConnectionSpec) DeepCopyInto(out *CentralConnectionSpec)

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

type CentralConnectionStatus

type CentralConnectionStatus struct {
	SynchronizationStatus SynchronizationStatus   `json:"synchronizationStatus"`
	CertificateStatus     *CertificateStatus      `json:"certificateStatus,omitempty"`
	Error                 *CentralConnectionError `json:"error,omitempty"`
}

func (*CentralConnectionStatus) DeepCopy

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

func (*CentralConnectionStatus) DeepCopyInto

func (in *CentralConnectionStatus) DeepCopyInto(out *CentralConnectionStatus)

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

type CertificateRequest

type CertificateRequest struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              CertificateRequestSpec   `json:"spec"`
	Status            CertificateRequestStatus `json:"status,omitempty"`
}

func (*CertificateRequest) DeepCopy

func (in *CertificateRequest) DeepCopy() *CertificateRequest

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

func (*CertificateRequest) DeepCopyInto

func (in *CertificateRequest) DeepCopyInto(out *CertificateRequest)

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

func (*CertificateRequest) DeepCopyObject

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

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

type CertificateRequestList

type CertificateRequestList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata"`

	Items []CertificateRequest `json:"items"`
}

func (*CertificateRequestList) DeepCopy

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

func (*CertificateRequestList) DeepCopyInto

func (in *CertificateRequestList) DeepCopyInto(out *CertificateRequestList)

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

func (*CertificateRequestList) DeepCopyObject

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

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

type CertificateRequestSpec

type CertificateRequestSpec struct {
	CSRInfoURL string `json:"csrInfoUrl"`
}

func (*CertificateRequestSpec) DeepCopy

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

func (*CertificateRequestSpec) DeepCopyInto

func (in *CertificateRequestSpec) DeepCopyInto(out *CertificateRequestSpec)

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

type CertificateRequestStatus

type CertificateRequestStatus struct {
	Error string `json:"error"`
}

func (*CertificateRequestStatus) DeepCopy

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

func (*CertificateRequestStatus) DeepCopyInto

func (in *CertificateRequestStatus) DeepCopyInto(out *CertificateRequestStatus)

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

type CertificateStatus

type CertificateStatus struct {
	NotBefore metav1.Time `json:"notBefore"`
	NotAfter  metav1.Time `json:"notAfter"`
}

type SynchronizationStatus

type SynchronizationStatus struct {
	LastSync    metav1.Time `json:"lastSync"`
	LastSuccess metav1.Time `json:"lastSuccess"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL