|
| 1 | +/* |
| 2 | +Copyright AppsCode Inc. and Contributors |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package v1alpha1 |
| 18 | + |
| 19 | +import ( |
| 20 | + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" |
| 21 | + kmapi "kmodules.xyz/client-go/api/v1" |
| 22 | +) |
| 23 | + |
| 24 | +const ( |
| 25 | + ResourceKindDatabaseInfo = "DatabaseInfo" |
| 26 | + ResourceDatabaseInfo = "databaseinfo" |
| 27 | + ResourceDatabaseInfos = "databaseinfos" |
| 28 | +) |
| 29 | + |
| 30 | +// +genclient |
| 31 | +// +genclient:nonNamespaced |
| 32 | +// +genclient:skipVerbs=get,list,update,delete,watch |
| 33 | +// +genclient:onlyVerbs=create |
| 34 | +// +k8s:openapi-gen=true |
| 35 | +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object |
| 36 | + |
| 37 | +// +kubebuilder:object:root=true |
| 38 | +// +kubebuilder:resource:path=databaseinfos,singular=databaseinfo,scope=Cluster |
| 39 | +type DatabaseInfo struct { |
| 40 | + metav1.TypeMeta `json:",inline"` |
| 41 | + // Request describes the attributes for the graph request. |
| 42 | + // +optional |
| 43 | + Request *DatabaseInfoRequest `json:"request,omitempty"` |
| 44 | + // Response describes the attributes for the graph response. |
| 45 | + // +optional |
| 46 | + Response *DatabaseInfoResponse `json:"response,omitempty"` |
| 47 | +} |
| 48 | + |
| 49 | +type DatabaseInfoRequest struct { |
| 50 | + Source kmapi.ObjectInfo `json:"source"` |
| 51 | + Keys []string `json:"keys,omitempty"` |
| 52 | +} |
| 53 | + |
| 54 | +type DatabaseInfoResponse struct { |
| 55 | + Configurations []SingleComponentConfiguration `json:"configurations,omitempty"` |
| 56 | + AvailableSecrets []string `json:"availableSecrets,omitempty"` |
| 57 | +} |
| 58 | + |
| 59 | +type SingleComponentConfiguration struct { |
| 60 | + // +optional |
| 61 | + ComponentName string `json:"componentName,omitempty"` |
| 62 | + Data map[string][]byte `json:"data,omitempty"` |
| 63 | + // +optional |
| 64 | + SecretName string `json:"secretName,omitempty"` |
| 65 | + // +optional |
| 66 | + ApplyConfig map[string]string `json:"applyConfig,omitempty"` |
| 67 | +} |
0 commit comments