Documentation ¶
Overview ¶
Package v1 contains API Schema definitions for the connectors v1 API group +kubebuilder:object:generate=true +groupName=connectors.cloud.yandex.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "connectors.cloud.yandex.com", Version: "v1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type StaticAccessKey ¶
type StaticAccessKey struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StaticAccessKeySpec `json:"spec,omitempty"` Status StaticAccessKeyStatus `json:"status,omitempty"` }
StaticAccessKey is the Schema for the staticaccesskey API +kubebuilder:object:root=true +kubebuilder:resource:shortName=sakey
func (*StaticAccessKey) DeepCopy ¶
func (in *StaticAccessKey) DeepCopy() *StaticAccessKey
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticAccessKey.
func (*StaticAccessKey) DeepCopyInto ¶
func (in *StaticAccessKey) DeepCopyInto(out *StaticAccessKey)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StaticAccessKey) DeepCopyObject ¶
func (in *StaticAccessKey) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StaticAccessKeyList ¶
type StaticAccessKeyList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []StaticAccessKey `json:"items"` }
StaticAccessKeyList contains a list of StaticAccessKey +kubebuilder:object:root=true
func (*StaticAccessKeyList) DeepCopy ¶
func (in *StaticAccessKeyList) DeepCopy() *StaticAccessKeyList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticAccessKeyList.
func (*StaticAccessKeyList) DeepCopyInto ¶
func (in *StaticAccessKeyList) DeepCopyInto(out *StaticAccessKeyList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StaticAccessKeyList) DeepCopyObject ¶
func (in *StaticAccessKeyList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StaticAccessKeySpec ¶
type StaticAccessKeySpec struct { // ServiceAccountID: id of service account from which the key will be issued. Must be immutable. // +kubebuilder:validation:Required ServiceAccountID string `json:"serviceAccountId"` }
StaticAccessKeySpec defines the desired state of StaticAccessKeySpec
func (*StaticAccessKeySpec) DeepCopy ¶
func (in *StaticAccessKeySpec) DeepCopy() *StaticAccessKeySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticAccessKeySpec.
func (*StaticAccessKeySpec) DeepCopyInto ¶
func (in *StaticAccessKeySpec) DeepCopyInto(out *StaticAccessKeySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StaticAccessKeyStatus ¶
type StaticAccessKeyStatus struct { // KeyID: id of an issued key KeyID string `json:"keyId,omitempty"` // SecretRef: reference to a secret containing // issued key values. It is always in the same // namespace as the StaticAccessKey. SecretName string `json:"secretName,omitempty"` }
StaticAccessKeyStatus defines the observed state of StaticAccessKey
func (*StaticAccessKeyStatus) DeepCopy ¶
func (in *StaticAccessKeyStatus) DeepCopy() *StaticAccessKeyStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaticAccessKeyStatus.
func (*StaticAccessKeyStatus) DeepCopyInto ¶
func (in *StaticAccessKeyStatus) DeepCopyInto(out *StaticAccessKeyStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.