| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package v1
- import (
- "fmt"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- )
- // +kubebuilder:object:root=false
- // +kubebuilder:object:generate:false
- // +k8s:deepcopy-gen:interfaces=nil
- // +k8s:deepcopy-gen=nil
- // GenericStore is a common interface for interacting with ClusterSecretStore
- // or a namespaced SecretStore.
- type GenericStore interface {
- runtime.Object
- metav1.Object
- GetObjectMeta() *metav1.ObjectMeta
- GetTypeMeta() *metav1.TypeMeta
- GetKind() string
- GetSpec() *SecretStoreSpec
- GetNamespacedName() string
- GetStatus() SecretStoreStatus
- SetStatus(status SecretStoreStatus)
- Copy() GenericStore
- }
- // +kubebuilder:object:root:false
- // +kubebuilder:object:generate:false
- var _ GenericStore = &SecretStore{}
- func (c *SecretStore) GetObjectMeta() *metav1.ObjectMeta {
- return &c.ObjectMeta
- }
- func (c *SecretStore) GetTypeMeta() *metav1.TypeMeta {
- return &c.TypeMeta
- }
- func (c *SecretStore) GetSpec() *SecretStoreSpec {
- return &c.Spec
- }
- func (c *SecretStore) GetStatus() SecretStoreStatus {
- return c.Status
- }
- func (c *SecretStore) SetStatus(status SecretStoreStatus) {
- c.Status = status
- }
- func (c *SecretStore) GetNamespacedName() string {
- return fmt.Sprintf("%s/%s", c.Namespace, c.Name)
- }
- func (c *SecretStore) GetKind() string {
- return SecretStoreKind
- }
- func (c *SecretStore) Copy() GenericStore {
- return c.DeepCopy()
- }
- // +kubebuilder:object:root:false
- // +kubebuilder:object:generate:false
- var _ GenericStore = &ClusterSecretStore{}
- func (c *ClusterSecretStore) GetObjectMeta() *metav1.ObjectMeta {
- return &c.ObjectMeta
- }
- func (c *ClusterSecretStore) GetTypeMeta() *metav1.TypeMeta {
- return &c.TypeMeta
- }
- func (c *ClusterSecretStore) GetSpec() *SecretStoreSpec {
- return &c.Spec
- }
- func (c *ClusterSecretStore) Copy() GenericStore {
- return c.DeepCopy()
- }
- func (c *ClusterSecretStore) GetStatus() SecretStoreStatus {
- return c.Status
- }
- func (c *ClusterSecretStore) SetStatus(status SecretStoreStatus) {
- c.Status = status
- }
- func (c *ClusterSecretStore) GetNamespacedName() string {
- return fmt.Sprintf("%s/%s", c.Namespace, c.Name)
- }
- func (c *ClusterSecretStore) GetKind() string {
- return ClusterSecretStoreKind
- }
|