apis

package
v0.0.0-...-1d6e297 Latest Latest
Warning

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

Go to latest
Published: Mar 2, 2025 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var DubboOperatorGVK = schema.GroupVersionKind{
	Version: "v1alpha1",
	Group:   "install.dubbo.io",
	Kind:    "DubboOperator",
}

+k8s:deepcopy-gen=package,register +groupName=install.dubbo.io

View Source
var File_values_types_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type BaseComponentSpec

type BaseComponentSpec struct {
	Enabled *BoolValue `json:"enabled,omitempty"`
}

type BaseConfig

type BaseConfig struct {

	// For dubboctl usage to disable dubbo config crds in base
	EnableDubboConfigCRDs *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enableDubboConfigCRDs,proto3" json:"enableDubboConfigCRDs,omitempty"`
	// contains filtered or unexported fields
}

func (*BaseConfig) Descriptor deprecated

func (*BaseConfig) Descriptor() ([]byte, []int)

Deprecated: Use BaseConfig.ProtoReflect.Descriptor instead.

func (*BaseConfig) GetEnableDubboConfigCRDs

func (x *BaseConfig) GetEnableDubboConfigCRDs() *wrapperspb.BoolValue

func (*BaseConfig) ProtoMessage

func (*BaseConfig) ProtoMessage()

func (*BaseConfig) ProtoReflect

func (x *BaseConfig) ProtoReflect() protoreflect.Message

func (*BaseConfig) Reset

func (x *BaseConfig) Reset()

func (*BaseConfig) String

func (x *BaseConfig) String() string

type BoolValue

type BoolValue struct {
	// contains filtered or unexported fields
}

func (*BoolValue) GetValueOrFalse

func (b *BoolValue) GetValueOrFalse() bool

func (*BoolValue) GetValueOrTrue

func (b *BoolValue) GetValueOrTrue() bool

func (*BoolValue) MarshalJSON

func (b *BoolValue) MarshalJSON() ([]byte, error)

func (*BoolValue) UnmarshalJSON

func (b *BoolValue) UnmarshalJSON(bytes []byte) error

type DashboardComponentSpec

type DashboardComponentSpec struct {
	Enabled *BoolValue `json:"enabled,omitempty"`
}

type DubboComponentSpec

type DubboComponentSpec struct {
	Base     *BaseComponentSpec `json:"base,omitempty"`
	Register *RegisterSpec      `json:"register,omitempty"`
}

type DubboDashboardSpec

type DubboDashboardSpec struct {
	Admin *DashboardComponentSpec `json:"admin,omitempty"`
}

type DubboOperator

type DubboOperator struct {
	metav1.TypeMeta `json:",inline"`
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +optional
	Spec DubboOperatorSpec `json:"spec,omitempty"`
}

+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object +kubetype-gen +kubetype-gen:groupVersion=install.dubbo.io/v1alpha1 +k8s:deepcopy-gen=true

type DubboOperatorSpec

type DubboOperatorSpec struct {
	Profile    string              `json:"profile,omitempty"`
	Dashboard  *DubboDashboardSpec `json:"dashboard,omitempty"`
	Components *DubboComponentSpec `json:"components,omitempty"`
	Values     json.RawMessage     `json:"values,omitempty"`
}

type GlobalConfig

type GlobalConfig struct {

	// Specifies the default namespace.
	DubboNamespace string `protobuf:"bytes,1,opt,name=dubboNamespace,proto3" json:"dubboNamespace,omitempty"`
	// contains filtered or unexported fields
}

Global Configuration for Dubbo components.

func (*GlobalConfig) Descriptor deprecated

func (*GlobalConfig) Descriptor() ([]byte, []int)

Deprecated: Use GlobalConfig.ProtoReflect.Descriptor instead.

func (*GlobalConfig) GetDubboNamespace

func (x *GlobalConfig) GetDubboNamespace() string

func (*GlobalConfig) ProtoMessage

func (*GlobalConfig) ProtoMessage()

func (*GlobalConfig) ProtoReflect

func (x *GlobalConfig) ProtoReflect() protoreflect.Message

func (*GlobalConfig) Reset

func (x *GlobalConfig) Reset()

func (*GlobalConfig) String

func (x *GlobalConfig) String() string

type IntOrString

type IntOrString struct {
	Type   int64                   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	IntVal *wrapperspb.Int32Value  `protobuf:"bytes,2,opt,name=intVal,proto3" json:"intVal,omitempty"`
	StrVal *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=strVal,proto3" json:"strVal,omitempty"`
	// contains filtered or unexported fields
}

IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number. TODO: Rename to Int32OrString

+protobuf=true +protobuf.options.(gogoproto.goproto_stringer)=false +k8s:openapi-gen=true

func (*IntOrString) Descriptor deprecated

func (*IntOrString) Descriptor() ([]byte, []int)

Deprecated: Use IntOrString.ProtoReflect.Descriptor instead.

func (*IntOrString) GetIntVal

func (x *IntOrString) GetIntVal() *wrapperspb.Int32Value

func (*IntOrString) GetStrVal

func (x *IntOrString) GetStrVal() *wrapperspb.StringValue

func (*IntOrString) GetType

func (x *IntOrString) GetType() int64

func (*IntOrString) MarshalJSON

func (i *IntOrString) MarshalJSON() ([]byte, error)

func (*IntOrString) MarshalJSONPB

func (*IntOrString) ProtoMessage

func (*IntOrString) ProtoMessage()

func (*IntOrString) ProtoReflect

func (x *IntOrString) ProtoReflect() protoreflect.Message

func (*IntOrString) Reset

func (x *IntOrString) Reset()

func (*IntOrString) String

func (x *IntOrString) String() string

func (*IntOrString) ToKubernetes

func (i *IntOrString) ToKubernetes() intstr.IntOrString

func (*IntOrString) UnmarshalJSON

func (i *IntOrString) UnmarshalJSON(value []byte) error

UnmarshalJSON implements the json.Unmarshaller interface.

func (*IntOrString) UnmarshalJSONPB

func (i *IntOrString) UnmarshalJSONPB(_ *github_com_golang_protobuf_jsonpb.Unmarshaler, value []byte) error

type MetadataCompSpec

type MetadataCompSpec struct {
	RegisterComponentSpec
}

type NacosConfig

type NacosConfig struct {
	Enabled        *wrapperspb.BoolValue   `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Mode           *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=mode,proto3" json:"mode,omitempty"`
	Storage        *NacosStorage           `protobuf:"bytes,3,opt,name=storage,proto3" json:"storage,omitempty"`
	Plugin         *NacosPlugin            `protobuf:"bytes,4,opt,name=plugin,proto3" json:"plugin,omitempty"`
	Preferhostmode string                  `protobuf:"bytes,5,opt,name=preferhostmode,proto3" json:"preferhostmode,omitempty"`
	// contains filtered or unexported fields
}

func (*NacosConfig) Descriptor deprecated

func (*NacosConfig) Descriptor() ([]byte, []int)

Deprecated: Use NacosConfig.ProtoReflect.Descriptor instead.

func (*NacosConfig) GetEnabled

func (x *NacosConfig) GetEnabled() *wrapperspb.BoolValue

func (*NacosConfig) GetMode

func (x *NacosConfig) GetMode() *wrapperspb.StringValue

func (*NacosConfig) GetPlugin

func (x *NacosConfig) GetPlugin() *NacosPlugin

func (*NacosConfig) GetPreferhostmode

func (x *NacosConfig) GetPreferhostmode() string

func (*NacosConfig) GetStorage

func (x *NacosConfig) GetStorage() *NacosStorage

func (*NacosConfig) ProtoMessage

func (*NacosConfig) ProtoMessage()

func (*NacosConfig) ProtoReflect

func (x *NacosConfig) ProtoReflect() protoreflect.Message

func (*NacosConfig) Reset

func (x *NacosConfig) Reset()

func (*NacosConfig) String

func (x *NacosConfig) String() string

type NacosDB

type NacosDB struct {
	Host     string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
	Name     string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Port     int64  `protobuf:"varint,3,opt,name=port,proto3" json:"port,omitempty"`
	Username string `protobuf:"bytes,4,opt,name=username,proto3" json:"username,omitempty"`
	Password string `protobuf:"bytes,5,opt,name=password,proto3" json:"password,omitempty"`
	Param    string `protobuf:"bytes,6,opt,name=param,proto3" json:"param,omitempty"`
	// contains filtered or unexported fields
}

func (*NacosDB) Descriptor deprecated

func (*NacosDB) Descriptor() ([]byte, []int)

Deprecated: Use NacosDB.ProtoReflect.Descriptor instead.

func (*NacosDB) GetHost

func (x *NacosDB) GetHost() string

func (*NacosDB) GetName

func (x *NacosDB) GetName() string

func (*NacosDB) GetParam

func (x *NacosDB) GetParam() string

func (*NacosDB) GetPassword

func (x *NacosDB) GetPassword() string

func (*NacosDB) GetPort

func (x *NacosDB) GetPort() int64

func (*NacosDB) GetUsername

func (x *NacosDB) GetUsername() string

func (*NacosDB) ProtoMessage

func (*NacosDB) ProtoMessage()

func (*NacosDB) ProtoReflect

func (x *NacosDB) ProtoReflect() protoreflect.Message

func (*NacosDB) Reset

func (x *NacosDB) Reset()

func (*NacosDB) String

func (x *NacosDB) String() string

type NacosPlugin

type NacosPlugin struct {
	Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*NacosPlugin) Descriptor deprecated

func (*NacosPlugin) Descriptor() ([]byte, []int)

Deprecated: Use NacosPlugin.ProtoReflect.Descriptor instead.

func (*NacosPlugin) GetEnabled

func (x *NacosPlugin) GetEnabled() *wrapperspb.BoolValue

func (*NacosPlugin) ProtoMessage

func (*NacosPlugin) ProtoMessage()

func (*NacosPlugin) ProtoReflect

func (x *NacosPlugin) ProtoReflect() protoreflect.Message

func (*NacosPlugin) Reset

func (x *NacosPlugin) Reset()

func (*NacosPlugin) String

func (x *NacosPlugin) String() string

type NacosStorage

type NacosStorage struct {
	Type string   `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Db   *NacosDB `protobuf:"bytes,2,opt,name=db,proto3" json:"db,omitempty"`
	// contains filtered or unexported fields
}

func (*NacosStorage) Descriptor deprecated

func (*NacosStorage) Descriptor() ([]byte, []int)

Deprecated: Use NacosStorage.ProtoReflect.Descriptor instead.

func (*NacosStorage) GetDb

func (x *NacosStorage) GetDb() *NacosDB

func (*NacosStorage) GetType

func (x *NacosStorage) GetType() string

func (*NacosStorage) ProtoMessage

func (*NacosStorage) ProtoMessage()

func (*NacosStorage) ProtoReflect

func (x *NacosStorage) ProtoReflect() protoreflect.Message

func (*NacosStorage) Reset

func (x *NacosStorage) Reset()

func (*NacosStorage) String

func (x *NacosStorage) String() string

type RegisterComponentSpec

type RegisterComponentSpec struct {
	Enabled   *BoolValue     `json:"enabled,omitempty"`
	Namespace string         `json:"namespace,omitempty"`
	Raw       map[string]any `json:"-"`
}

type RegisterSpec

type RegisterSpec struct {
	Nacos     *RegisterComponentSpec `json:"nacos,omitempty"`
	Zookeeper *RegisterComponentSpec `json:"zookeeper,omitempty"`
}

type Values

type Values struct {

	// Global configuration for dubbo components.
	Global *GlobalConfig `protobuf:"bytes,1,opt,name=global,proto3" json:"global,omitempty"`
	// Configuration for the base component.
	Base *BaseConfig `protobuf:"bytes,2,opt,name=base,proto3" json:"base,omitempty"`
	// Specifies which installation configuration profile to apply.
	Profile string `protobuf:"bytes,3,opt,name=profile,proto3" json:"profile,omitempty"`
	// Configuration for the zookeeper component.
	Zookeeper *ZookeeperConfig `protobuf:"bytes,4,opt,name=zookeeper,proto3" json:"zookeeper,omitempty"`
	// Configuration for the nacos component.
	Nacos *NacosConfig `protobuf:"bytes,5,opt,name=nacos,proto3" json:"nacos,omitempty"`
	// contains filtered or unexported fields
}

func (*Values) Descriptor deprecated

func (*Values) Descriptor() ([]byte, []int)

Deprecated: Use Values.ProtoReflect.Descriptor instead.

func (*Values) GetBase

func (x *Values) GetBase() *BaseConfig

func (*Values) GetGlobal

func (x *Values) GetGlobal() *GlobalConfig

func (*Values) GetNacos

func (x *Values) GetNacos() *NacosConfig

func (*Values) GetProfile

func (x *Values) GetProfile() string

func (*Values) GetZookeeper

func (x *Values) GetZookeeper() *ZookeeperConfig

func (*Values) MarshalJSON

func (in *Values) MarshalJSON() ([]byte, error)

MarshalJSON is a custom marshaler for Values

func (*Values) ProtoMessage

func (*Values) ProtoMessage()

func (*Values) ProtoReflect

func (x *Values) ProtoReflect() protoreflect.Message

func (*Values) Reset

func (x *Values) Reset()

func (*Values) String

func (x *Values) String() string

func (*Values) UnmarshalJSON

func (in *Values) UnmarshalJSON(b []byte) error

UnmarshalJSON is a custom unmarshaler for Values

type ZookeeperAuth

type ZookeeperAuth struct {
	Client *ZookeeperAuthClientConfig `protobuf:"bytes,1,opt,name=client,proto3" json:"client,omitempty"`
	Quorum *ZookeeperAuthQuorumConfig `protobuf:"bytes,2,opt,name=quorum,proto3" json:"quorum,omitempty"`
	// contains filtered or unexported fields
}

func (*ZookeeperAuth) Descriptor deprecated

func (*ZookeeperAuth) Descriptor() ([]byte, []int)

Deprecated: Use ZookeeperAuth.ProtoReflect.Descriptor instead.

func (*ZookeeperAuth) GetClient

func (x *ZookeeperAuth) GetClient() *ZookeeperAuthClientConfig

func (*ZookeeperAuth) GetQuorum

func (x *ZookeeperAuth) GetQuorum() *ZookeeperAuthQuorumConfig

func (*ZookeeperAuth) ProtoMessage

func (*ZookeeperAuth) ProtoMessage()

func (*ZookeeperAuth) ProtoReflect

func (x *ZookeeperAuth) ProtoReflect() protoreflect.Message

func (*ZookeeperAuth) Reset

func (x *ZookeeperAuth) Reset()

func (*ZookeeperAuth) String

func (x *ZookeeperAuth) String() string

type ZookeeperAuthClientConfig

type ZookeeperAuthClientConfig struct {
	Enabled         *wrapperspb.BoolValue   `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	ClientUser      *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=clientUser,proto3" json:"clientUser,omitempty"`
	ClientPassword  *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=clientPassword,proto3" json:"clientPassword,omitempty"`
	ServerUsers     *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=serverUsers,proto3" json:"serverUsers,omitempty"`
	ServerPasswords *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=serverPasswords,proto3" json:"serverPasswords,omitempty"`
	ExistingSecret  *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=existingSecret,proto3" json:"existingSecret,omitempty"`
	// contains filtered or unexported fields
}

func (*ZookeeperAuthClientConfig) Descriptor deprecated

func (*ZookeeperAuthClientConfig) Descriptor() ([]byte, []int)

Deprecated: Use ZookeeperAuthClientConfig.ProtoReflect.Descriptor instead.

func (*ZookeeperAuthClientConfig) GetClientPassword

func (x *ZookeeperAuthClientConfig) GetClientPassword() *wrapperspb.StringValue

func (*ZookeeperAuthClientConfig) GetClientUser

func (x *ZookeeperAuthClientConfig) GetClientUser() *wrapperspb.StringValue

func (*ZookeeperAuthClientConfig) GetEnabled

func (*ZookeeperAuthClientConfig) GetExistingSecret

func (x *ZookeeperAuthClientConfig) GetExistingSecret() *wrapperspb.StringValue

func (*ZookeeperAuthClientConfig) GetServerPasswords

func (x *ZookeeperAuthClientConfig) GetServerPasswords() *wrapperspb.StringValue

func (*ZookeeperAuthClientConfig) GetServerUsers

func (x *ZookeeperAuthClientConfig) GetServerUsers() *wrapperspb.StringValue

func (*ZookeeperAuthClientConfig) ProtoMessage

func (*ZookeeperAuthClientConfig) ProtoMessage()

func (*ZookeeperAuthClientConfig) ProtoReflect

func (*ZookeeperAuthClientConfig) Reset

func (x *ZookeeperAuthClientConfig) Reset()

func (*ZookeeperAuthClientConfig) String

func (x *ZookeeperAuthClientConfig) String() string

type ZookeeperAuthQuorumConfig

type ZookeeperAuthQuorumConfig struct {
	Enabled         *wrapperspb.BoolValue   `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	LearnerUser     *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=learnerUser,proto3" json:"learnerUser,omitempty"`
	LearnerPassword *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=learnerPassword,proto3" json:"learnerPassword,omitempty"`
	ServerUsers     *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=serverUsers,proto3" json:"serverUsers,omitempty"`
	ServerPasswords *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=serverPasswords,proto3" json:"serverPasswords,omitempty"`
	ExistingSecret  *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=existingSecret,proto3" json:"existingSecret,omitempty"`
	// contains filtered or unexported fields
}

func (*ZookeeperAuthQuorumConfig) Descriptor deprecated

func (*ZookeeperAuthQuorumConfig) Descriptor() ([]byte, []int)

Deprecated: Use ZookeeperAuthQuorumConfig.ProtoReflect.Descriptor instead.

func (*ZookeeperAuthQuorumConfig) GetEnabled

func (*ZookeeperAuthQuorumConfig) GetExistingSecret

func (x *ZookeeperAuthQuorumConfig) GetExistingSecret() *wrapperspb.StringValue

func (*ZookeeperAuthQuorumConfig) GetLearnerPassword

func (x *ZookeeperAuthQuorumConfig) GetLearnerPassword() *wrapperspb.StringValue

func (*ZookeeperAuthQuorumConfig) GetLearnerUser

func (x *ZookeeperAuthQuorumConfig) GetLearnerUser() *wrapperspb.StringValue

func (*ZookeeperAuthQuorumConfig) GetServerPasswords

func (x *ZookeeperAuthQuorumConfig) GetServerPasswords() *wrapperspb.StringValue

func (*ZookeeperAuthQuorumConfig) GetServerUsers

func (x *ZookeeperAuthQuorumConfig) GetServerUsers() *wrapperspb.StringValue

func (*ZookeeperAuthQuorumConfig) ProtoMessage

func (*ZookeeperAuthQuorumConfig) ProtoMessage()

func (*ZookeeperAuthQuorumConfig) ProtoReflect

func (*ZookeeperAuthQuorumConfig) Reset

func (x *ZookeeperAuthQuorumConfig) Reset()

func (*ZookeeperAuthQuorumConfig) String

func (x *ZookeeperAuthQuorumConfig) String() string

type ZookeeperAutopurge

type ZookeeperAutopurge struct {
	SnapRetainCount *wrapperspb.Int64Value `protobuf:"bytes,1,opt,name=snapRetainCount,proto3" json:"snapRetainCount,omitempty"`
	PurgeInterval   *wrapperspb.Int64Value `protobuf:"bytes,2,opt,name=purgeInterval,proto3" json:"purgeInterval,omitempty"`
	// contains filtered or unexported fields
}

func (*ZookeeperAutopurge) Descriptor deprecated

func (*ZookeeperAutopurge) Descriptor() ([]byte, []int)

Deprecated: Use ZookeeperAutopurge.ProtoReflect.Descriptor instead.

func (*ZookeeperAutopurge) GetPurgeInterval

func (x *ZookeeperAutopurge) GetPurgeInterval() *wrapperspb.Int64Value

func (*ZookeeperAutopurge) GetSnapRetainCount

func (x *ZookeeperAutopurge) GetSnapRetainCount() *wrapperspb.Int64Value

func (*ZookeeperAutopurge) ProtoMessage

func (*ZookeeperAutopurge) ProtoMessage()

func (*ZookeeperAutopurge) ProtoReflect

func (x *ZookeeperAutopurge) ProtoReflect() protoreflect.Message

func (*ZookeeperAutopurge) Reset

func (x *ZookeeperAutopurge) Reset()

func (*ZookeeperAutopurge) String

func (x *ZookeeperAutopurge) String() string

type ZookeeperConfig

type ZookeeperConfig struct {
	Enabled                 *wrapperspb.BoolValue   `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	DataLogDir              *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=dataLogDir,proto3" json:"dataLogDir,omitempty"`
	TickTime                *wrapperspb.Int64Value  `protobuf:"bytes,3,opt,name=tickTime,proto3" json:"tickTime,omitempty"`
	InitLimit               *wrapperspb.Int64Value  `protobuf:"bytes,4,opt,name=initLimit,proto3" json:"initLimit,omitempty"`
	SyncLimit               *wrapperspb.Int64Value  `protobuf:"bytes,5,opt,name=syncLimit,proto3" json:"syncLimit,omitempty"`
	PreAllocSize            *wrapperspb.Int64Value  `protobuf:"bytes,6,opt,name=preAllocSize,proto3" json:"preAllocSize,omitempty"`
	SnapCount               *wrapperspb.Int64Value  `protobuf:"bytes,7,opt,name=snapCount,proto3" json:"snapCount,omitempty"`
	FourlwCommandsWhitelist *wrapperspb.StringValue `protobuf:"bytes,8,opt,name=fourlwCommandsWhitelist,proto3" json:"fourlwCommandsWhitelist,omitempty"`
	ListenOnAllIPs          *wrapperspb.BoolValue   `protobuf:"bytes,9,opt,name=listenOnAllIPs,proto3" json:"listenOnAllIPs,omitempty"`
	Autopurge               *ZookeeperAutopurge     `protobuf:"bytes,10,opt,name=autopurge,proto3" json:"autopurge,omitempty"`
	MaxClientCnxns          *wrapperspb.Int64Value  `protobuf:"bytes,11,opt,name=maxClientCnxns,proto3" json:"maxClientCnxns,omitempty"`
	MaxSessionTimeout       *wrapperspb.Int64Value  `protobuf:"bytes,12,opt,name=maxSessionTimeout,proto3" json:"maxSessionTimeout,omitempty"`
	HeapSize                *wrapperspb.Int64Value  `protobuf:"bytes,13,opt,name=heapSize,proto3" json:"heapSize,omitempty"`
	LogLevel                *wrapperspb.StringValue `protobuf:"bytes,14,opt,name=logLevel,proto3" json:"logLevel,omitempty"`
	Auth                    *ZookeeperAuth          `protobuf:"bytes,15,opt,name=auth,proto3" json:"auth,omitempty"`
	// contains filtered or unexported fields
}

func (*ZookeeperConfig) Descriptor deprecated

func (*ZookeeperConfig) Descriptor() ([]byte, []int)

Deprecated: Use ZookeeperConfig.ProtoReflect.Descriptor instead.

func (*ZookeeperConfig) GetAuth

func (x *ZookeeperConfig) GetAuth() *ZookeeperAuth

func (*ZookeeperConfig) GetAutopurge

func (x *ZookeeperConfig) GetAutopurge() *ZookeeperAutopurge

func (*ZookeeperConfig) GetDataLogDir

func (x *ZookeeperConfig) GetDataLogDir() *wrapperspb.StringValue

func (*ZookeeperConfig) GetEnabled

func (x *ZookeeperConfig) GetEnabled() *wrapperspb.BoolValue

func (*ZookeeperConfig) GetFourlwCommandsWhitelist

func (x *ZookeeperConfig) GetFourlwCommandsWhitelist() *wrapperspb.StringValue

func (*ZookeeperConfig) GetHeapSize

func (x *ZookeeperConfig) GetHeapSize() *wrapperspb.Int64Value

func (*ZookeeperConfig) GetInitLimit

func (x *ZookeeperConfig) GetInitLimit() *wrapperspb.Int64Value

func (*ZookeeperConfig) GetListenOnAllIPs

func (x *ZookeeperConfig) GetListenOnAllIPs() *wrapperspb.BoolValue

func (*ZookeeperConfig) GetLogLevel

func (x *ZookeeperConfig) GetLogLevel() *wrapperspb.StringValue

func (*ZookeeperConfig) GetMaxClientCnxns

func (x *ZookeeperConfig) GetMaxClientCnxns() *wrapperspb.Int64Value

func (*ZookeeperConfig) GetMaxSessionTimeout

func (x *ZookeeperConfig) GetMaxSessionTimeout() *wrapperspb.Int64Value

func (*ZookeeperConfig) GetPreAllocSize

func (x *ZookeeperConfig) GetPreAllocSize() *wrapperspb.Int64Value

func (*ZookeeperConfig) GetSnapCount

func (x *ZookeeperConfig) GetSnapCount() *wrapperspb.Int64Value

func (*ZookeeperConfig) GetSyncLimit

func (x *ZookeeperConfig) GetSyncLimit() *wrapperspb.Int64Value

func (*ZookeeperConfig) GetTickTime

func (x *ZookeeperConfig) GetTickTime() *wrapperspb.Int64Value

func (*ZookeeperConfig) ProtoMessage

func (*ZookeeperConfig) ProtoMessage()

func (*ZookeeperConfig) ProtoReflect

func (x *ZookeeperConfig) ProtoReflect() protoreflect.Message

func (*ZookeeperConfig) Reset

func (x *ZookeeperConfig) Reset()

func (*ZookeeperConfig) String

func (x *ZookeeperConfig) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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