Documentation
¶
Overview ¶
Package config is a generated protocol buffer package.
config for auth adapter
It is generated from these files:
mixer/adapter/auth/config/config.proto
It has these top-level messages:
Params
Index ¶
- Variables
- type Params
- func (*Params) Descriptor() ([]byte, []int)
- func (this *Params) Equal(that interface{}) bool
- func (m *Params) GetConfigStoreUrl() string
- func (m *Params) GetConnectionPoolSize() int64
- func (m *Params) GetRedisServerUrl() string
- func (m *Params) GetToken() string
- func (this *Params) GoString() string
- func (m *Params) Marshal() (dAtA []byte, err error)
- func (m *Params) MarshalTo(dAtA []byte) (int, error)
- func (*Params) ProtoMessage()
- func (m *Params) Reset()
- func (m *Params) Size() (n int)
- func (this *Params) String() string
- func (m *Params) Unmarshal(dAtA []byte) error
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidLengthConfig = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowConfig = fmt.Errorf("proto: integer overflow") )
Functions ¶
This section is empty.
Types ¶
type Params ¶
type Params struct { // test token Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"` // URL for the config store. It is used to initiate a new Store instance. // Following are some examples of the config store URL: // * "k8s://" // * "fs:///tmp/testdata/configroot" ConfigStoreUrl string `protobuf:"bytes,2,opt,name=config_store_url,json=configStoreUrl,proto3" json:"config_store_url,omitempty"` // Redis connection string <hostname>:<port number> // ex) localhost:6379 RedisServerUrl string `protobuf:"bytes,3,opt,name=redis_server_url,json=redisServerUrl,proto3" json:"redis_server_url,omitempty"` // Maximum number of idle connections to redis // Default is 10 connections per every CPU as reported by runtime.NumCPU. ConnectionPoolSize int64 `protobuf:"varint,4,opt,name=connection_pool_size,json=connectionPoolSize,proto3" json:"connection_pool_size,omitempty"` }
config for auth adapter
func (*Params) Descriptor ¶
func (*Params) GetConfigStoreUrl ¶
func (*Params) GetConnectionPoolSize ¶
func (*Params) GetRedisServerUrl ¶
func (*Params) ProtoMessage ¶
func (*Params) ProtoMessage()
Click to show internal directories.
Click to hide internal directories.