blob: 6fa4876cf8192d65623bcfe3f0ec7b718ab5d76a [file] [log] [blame]
// Generated by tools/resource-gen.
// Run "make generate" to update this file.
// nolint:whitespace
package system
import (
"fmt"
)
import (
system_proto "github.com/apache/dubbo-kubernetes/api/system/v1alpha1"
"github.com/apache/dubbo-kubernetes/pkg/core/resources/model"
"github.com/apache/dubbo-kubernetes/pkg/core/resources/registry"
)
const (
ConfigType model.ResourceType = "Config"
)
var _ model.Resource = &ConfigResource{}
type ConfigResource struct {
Meta model.ResourceMeta
Spec *system_proto.Config
}
func NewConfigResource() *ConfigResource {
return &ConfigResource{
Spec: &system_proto.Config{},
}
}
func (t *ConfigResource) GetMeta() model.ResourceMeta {
return t.Meta
}
func (t *ConfigResource) SetMeta(m model.ResourceMeta) {
t.Meta = m
}
func (t *ConfigResource) GetSpec() model.ResourceSpec {
return t.Spec
}
func (t *ConfigResource) SetSpec(spec model.ResourceSpec) error {
protoType, ok := spec.(*system_proto.Config)
if !ok {
return fmt.Errorf("invalid type %T for Spec", spec)
} else {
if protoType == nil {
t.Spec = &system_proto.Config{}
} else {
t.Spec = protoType
}
return nil
}
}
func (t *ConfigResource) Descriptor() model.ResourceTypeDescriptor {
return ConfigResourceTypeDescriptor
}
var _ model.ResourceList = &ConfigResourceList{}
type ConfigResourceList struct {
Items []*ConfigResource
Pagination model.Pagination
}
func (l *ConfigResourceList) GetItems() []model.Resource {
res := make([]model.Resource, len(l.Items))
for i, elem := range l.Items {
res[i] = elem
}
return res
}
func (l *ConfigResourceList) GetItemType() model.ResourceType {
return ConfigType
}
func (l *ConfigResourceList) NewItem() model.Resource {
return NewConfigResource()
}
func (l *ConfigResourceList) AddItem(r model.Resource) error {
if trr, ok := r.(*ConfigResource); ok {
l.Items = append(l.Items, trr)
return nil
} else {
return model.ErrorInvalidItemType((*ConfigResource)(nil), r)
}
}
func (l *ConfigResourceList) GetPagination() *model.Pagination {
return &l.Pagination
}
func (l *ConfigResourceList) SetPagination(p model.Pagination) {
l.Pagination = p
}
var ConfigResourceTypeDescriptor = model.ResourceTypeDescriptor{
Name: ConfigType,
Resource: NewConfigResource(),
ResourceList: &ConfigResourceList{},
ReadOnly: false,
AdminOnly: false,
Scope: model.ScopeGlobal,
DDSFlags: model.GlobalToAllZonesFlag,
WsPath: "",
DubboctlArg: "",
DubboctlListArg: "",
AllowToInspect: false,
IsPolicy: false,
SingularDisplayName: "Config",
PluralDisplayName: "Configs",
IsExperimental: false,
}
func init() {
registry.RegisterType(ConfigResourceTypeDescriptor)
}
const (
DataSourceType model.ResourceType = "DataSource"
)
var _ model.Resource = &DataSourceResource{}
type DataSourceResource struct {
Meta model.ResourceMeta
Spec *system_proto.DataSource
}
func NewDataSourceResource() *DataSourceResource {
return &DataSourceResource{
Spec: &system_proto.DataSource{},
}
}
func (t *DataSourceResource) GetMeta() model.ResourceMeta {
return t.Meta
}
func (t *DataSourceResource) SetMeta(m model.ResourceMeta) {
t.Meta = m
}
func (t *DataSourceResource) GetSpec() model.ResourceSpec {
return t.Spec
}
func (t *DataSourceResource) SetSpec(spec model.ResourceSpec) error {
protoType, ok := spec.(*system_proto.DataSource)
if !ok {
return fmt.Errorf("invalid type %T for Spec", spec)
} else {
if protoType == nil {
t.Spec = &system_proto.DataSource{}
} else {
t.Spec = protoType
}
return nil
}
}
func (t *DataSourceResource) Descriptor() model.ResourceTypeDescriptor {
return DataSourceResourceTypeDescriptor
}
var _ model.ResourceList = &DataSourceResourceList{}
type DataSourceResourceList struct {
Items []*DataSourceResource
Pagination model.Pagination
}
func (l *DataSourceResourceList) GetItems() []model.Resource {
res := make([]model.Resource, len(l.Items))
for i, elem := range l.Items {
res[i] = elem
}
return res
}
func (l *DataSourceResourceList) GetItemType() model.ResourceType {
return DataSourceType
}
func (l *DataSourceResourceList) NewItem() model.Resource {
return NewDataSourceResource()
}
func (l *DataSourceResourceList) AddItem(r model.Resource) error {
if trr, ok := r.(*DataSourceResource); ok {
l.Items = append(l.Items, trr)
return nil
} else {
return model.ErrorInvalidItemType((*DataSourceResource)(nil), r)
}
}
func (l *DataSourceResourceList) GetPagination() *model.Pagination {
return &l.Pagination
}
func (l *DataSourceResourceList) SetPagination(p model.Pagination) {
l.Pagination = p
}
var DataSourceResourceTypeDescriptor = model.ResourceTypeDescriptor{
Name: DataSourceType,
Resource: NewDataSourceResource(),
ResourceList: &DataSourceResourceList{},
ReadOnly: false,
AdminOnly: false,
Scope: model.ScopeGlobal,
WsPath: "datasources",
DubboctlArg: "datasource",
DubboctlListArg: "datasources",
AllowToInspect: false,
IsPolicy: false,
SingularDisplayName: "Data Source",
PluralDisplayName: "Data Sources",
IsExperimental: false,
}
func init() {
registry.RegisterType(DataSourceResourceTypeDescriptor)
}
const (
SecretType model.ResourceType = "Secret"
)
var _ model.Resource = &SecretResource{}
type SecretResource struct {
Meta model.ResourceMeta
Spec *system_proto.Secret
}
func NewSecretResource() *SecretResource {
return &SecretResource{
Spec: &system_proto.Secret{},
}
}
func (t *SecretResource) GetMeta() model.ResourceMeta {
return t.Meta
}
func (t *SecretResource) SetMeta(m model.ResourceMeta) {
t.Meta = m
}
func (t *SecretResource) GetSpec() model.ResourceSpec {
return t.Spec
}
func (t *SecretResource) SetSpec(spec model.ResourceSpec) error {
protoType, ok := spec.(*system_proto.Secret)
if !ok {
return fmt.Errorf("invalid type %T for Spec", spec)
} else {
if protoType == nil {
t.Spec = &system_proto.Secret{}
} else {
t.Spec = protoType
}
return nil
}
}
func (t *SecretResource) Descriptor() model.ResourceTypeDescriptor {
return SecretResourceTypeDescriptor
}
var _ model.ResourceList = &SecretResourceList{}
type SecretResourceList struct {
Items []*SecretResource
Pagination model.Pagination
}
func (l *SecretResourceList) GetItems() []model.Resource {
res := make([]model.Resource, len(l.Items))
for i, elem := range l.Items {
res[i] = elem
}
return res
}
func (l *SecretResourceList) GetItemType() model.ResourceType {
return SecretType
}
func (l *SecretResourceList) NewItem() model.Resource {
return NewSecretResource()
}
func (l *SecretResourceList) AddItem(r model.Resource) error {
if trr, ok := r.(*SecretResource); ok {
l.Items = append(l.Items, trr)
return nil
} else {
return model.ErrorInvalidItemType((*SecretResource)(nil), r)
}
}
func (l *SecretResourceList) GetPagination() *model.Pagination {
return &l.Pagination
}
func (l *SecretResourceList) SetPagination(p model.Pagination) {
l.Pagination = p
}
var SecretResourceTypeDescriptor = model.ResourceTypeDescriptor{
Name: SecretType,
Resource: NewSecretResource(),
ResourceList: &SecretResourceList{},
ReadOnly: false,
AdminOnly: false,
Scope: model.ScopeGlobal,
WsPath: "secrets",
DubboctlArg: "secret",
DubboctlListArg: "secrets",
AllowToInspect: false,
IsPolicy: false,
SingularDisplayName: "Secret",
PluralDisplayName: "Secrets",
IsExperimental: false,
}
func init() {
registry.RegisterType(SecretResourceTypeDescriptor)
}
const (
ZoneType model.ResourceType = "Zone"
)
var _ model.Resource = &ZoneResource{}
type ZoneResource struct {
Meta model.ResourceMeta
Spec *system_proto.Zone
}
func NewZoneResource() *ZoneResource {
return &ZoneResource{
Spec: &system_proto.Zone{},
}
}
func (t *ZoneResource) GetMeta() model.ResourceMeta {
return t.Meta
}
func (t *ZoneResource) SetMeta(m model.ResourceMeta) {
t.Meta = m
}
func (t *ZoneResource) GetSpec() model.ResourceSpec {
return t.Spec
}
func (t *ZoneResource) SetSpec(spec model.ResourceSpec) error {
protoType, ok := spec.(*system_proto.Zone)
if !ok {
return fmt.Errorf("invalid type %T for Spec", spec)
} else {
if protoType == nil {
t.Spec = &system_proto.Zone{}
} else {
t.Spec = protoType
}
return nil
}
}
func (t *ZoneResource) Descriptor() model.ResourceTypeDescriptor {
return ZoneResourceTypeDescriptor
}
var _ model.ResourceList = &ZoneResourceList{}
type ZoneResourceList struct {
Items []*ZoneResource
Pagination model.Pagination
}
func (l *ZoneResourceList) GetItems() []model.Resource {
res := make([]model.Resource, len(l.Items))
for i, elem := range l.Items {
res[i] = elem
}
return res
}
func (l *ZoneResourceList) GetItemType() model.ResourceType {
return ZoneType
}
func (l *ZoneResourceList) NewItem() model.Resource {
return NewZoneResource()
}
func (l *ZoneResourceList) AddItem(r model.Resource) error {
if trr, ok := r.(*ZoneResource); ok {
l.Items = append(l.Items, trr)
return nil
} else {
return model.ErrorInvalidItemType((*ZoneResource)(nil), r)
}
}
func (l *ZoneResourceList) GetPagination() *model.Pagination {
return &l.Pagination
}
func (l *ZoneResourceList) SetPagination(p model.Pagination) {
l.Pagination = p
}
var ZoneResourceTypeDescriptor = model.ResourceTypeDescriptor{
Name: ZoneType,
Resource: NewZoneResource(),
ResourceList: &ZoneResourceList{},
ReadOnly: false,
AdminOnly: false,
Scope: model.ScopeGlobal,
WsPath: "zones",
DubboctlArg: "zone",
DubboctlListArg: "zones",
AllowToInspect: false,
IsPolicy: false,
SingularDisplayName: "Zone",
PluralDisplayName: "Zones",
IsExperimental: false,
}
func init() {
registry.RegisterType(ZoneResourceTypeDescriptor)
}
const (
ZoneInsightType model.ResourceType = "ZoneInsight"
)
var _ model.Resource = &ZoneInsightResource{}
type ZoneInsightResource struct {
Meta model.ResourceMeta
Spec *system_proto.ZoneInsight
}
func NewZoneInsightResource() *ZoneInsightResource {
return &ZoneInsightResource{
Spec: &system_proto.ZoneInsight{},
}
}
func (t *ZoneInsightResource) GetMeta() model.ResourceMeta {
return t.Meta
}
func (t *ZoneInsightResource) SetMeta(m model.ResourceMeta) {
t.Meta = m
}
func (t *ZoneInsightResource) GetSpec() model.ResourceSpec {
return t.Spec
}
func (t *ZoneInsightResource) SetSpec(spec model.ResourceSpec) error {
protoType, ok := spec.(*system_proto.ZoneInsight)
if !ok {
return fmt.Errorf("invalid type %T for Spec", spec)
} else {
if protoType == nil {
t.Spec = &system_proto.ZoneInsight{}
} else {
t.Spec = protoType
}
return nil
}
}
func (t *ZoneInsightResource) Descriptor() model.ResourceTypeDescriptor {
return ZoneInsightResourceTypeDescriptor
}
var _ model.ResourceList = &ZoneInsightResourceList{}
type ZoneInsightResourceList struct {
Items []*ZoneInsightResource
Pagination model.Pagination
}
func (l *ZoneInsightResourceList) GetItems() []model.Resource {
res := make([]model.Resource, len(l.Items))
for i, elem := range l.Items {
res[i] = elem
}
return res
}
func (l *ZoneInsightResourceList) GetItemType() model.ResourceType {
return ZoneInsightType
}
func (l *ZoneInsightResourceList) NewItem() model.Resource {
return NewZoneInsightResource()
}
func (l *ZoneInsightResourceList) AddItem(r model.Resource) error {
if trr, ok := r.(*ZoneInsightResource); ok {
l.Items = append(l.Items, trr)
return nil
} else {
return model.ErrorInvalidItemType((*ZoneInsightResource)(nil), r)
}
}
func (l *ZoneInsightResourceList) GetPagination() *model.Pagination {
return &l.Pagination
}
func (l *ZoneInsightResourceList) SetPagination(p model.Pagination) {
l.Pagination = p
}
var ZoneInsightResourceTypeDescriptor = model.ResourceTypeDescriptor{
Name: ZoneInsightType,
Resource: NewZoneInsightResource(),
ResourceList: &ZoneInsightResourceList{},
ReadOnly: true,
AdminOnly: false,
Scope: model.ScopeGlobal,
WsPath: "zone-insights",
DubboctlArg: "",
DubboctlListArg: "",
AllowToInspect: false,
IsPolicy: false,
SingularDisplayName: "Zone Insight",
PluralDisplayName: "Zone Insights",
IsExperimental: false,
}
func init() {
registry.RegisterType(ZoneInsightResourceTypeDescriptor)
}