v1

package
v0.0.46 Latest Latest
Warning

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

Go to latest
Published: Oct 3, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Config_Env_name = map[int32]string{
		0: "unknown",
		1: "dev",
		2: "staging",
		3: "production",
	}
	Config_Env_value = map[string]int32{
		"unknown":    0,
		"dev":        1,
		"staging":    2,
		"production": 3,
	}
)

Enum value maps for Config_Env.

View Source
var (
	BlockStore_S3_BucketLookupType_name = map[int32]string{
		0: "AUTO",
		1: "VIRTUAL_HOSTED",
		2: "PATH",
	}
	BlockStore_S3_BucketLookupType_value = map[string]int32{
		"AUTO":           0,
		"VIRTUAL_HOSTED": 1,
		"PATH":           2,
	}
)

Enum value maps for BlockStore_S3_BucketLookupType.

View Source
var (
	ErrInvalidLength        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflow          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroup = fmt.Errorf("proto: unexpected end of group")
)
View Source
var File_vince_config_v1_config_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type BlockStore added in v0.0.32

type BlockStore struct {

	// Types that are assignable to Provider:
	//
	//	*BlockStore_Fs
	//	*BlockStore_S3_
	//	*BlockStore_Azure_
	//	*BlockStore_Bos
	//	*BlockStore_Cos
	//	*BlockStore_Gcs
	//	*BlockStore_Obs
	//	*BlockStore_Oss
	Provider isBlockStore_Provider `protobuf_oneof:"provider"`
	CacheDir string                `protobuf:"bytes,9,opt,name=cache_dir,json=cacheDir,proto3" json:"cache_dir,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore.ProtoReflect.Descriptor instead.

func (*BlockStore) GetAzure added in v0.0.32

func (x *BlockStore) GetAzure() *BlockStore_Azure

func (*BlockStore) GetBos added in v0.0.32

func (x *BlockStore) GetBos() *BlockStore_BOS

func (*BlockStore) GetCacheDir added in v0.0.32

func (x *BlockStore) GetCacheDir() string

func (*BlockStore) GetCos added in v0.0.32

func (x *BlockStore) GetCos() *BlockStore_COS

func (*BlockStore) GetFs added in v0.0.32

func (x *BlockStore) GetFs() *BlockStore_Filesystem

func (*BlockStore) GetGcs added in v0.0.32

func (x *BlockStore) GetGcs() *BlockStore_GCS

func (*BlockStore) GetObs added in v0.0.32

func (x *BlockStore) GetObs() *BlockStore_OBS

func (*BlockStore) GetOss added in v0.0.32

func (x *BlockStore) GetOss() *BlockStore_OSS

func (*BlockStore) GetProvider added in v0.0.32

func (m *BlockStore) GetProvider() isBlockStore_Provider

func (*BlockStore) GetS3 added in v0.0.32

func (x *BlockStore) GetS3() *BlockStore_S3

func (*BlockStore) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore) MarshalToVT added in v0.0.32

func (m *BlockStore) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore) MarshalVT added in v0.0.32

func (m *BlockStore) MarshalVT() (dAtA []byte, err error)

func (*BlockStore) ProtoMessage added in v0.0.32

func (*BlockStore) ProtoMessage()

func (*BlockStore) ProtoReflect added in v0.0.32

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

func (*BlockStore) Reset added in v0.0.32

func (x *BlockStore) Reset()

func (*BlockStore) SizeVT added in v0.0.32

func (m *BlockStore) SizeVT() (n int)

func (*BlockStore) String added in v0.0.32

func (x *BlockStore) String() string

func (*BlockStore) UnmarshalVT added in v0.0.32

func (m *BlockStore) UnmarshalVT(dAtA []byte) error

type BlockStore_Azure added in v0.0.32

type BlockStore_Azure struct {
	StorageAccount          string                     `protobuf:"bytes,1,opt,name=storage_account,json=storageAccount,proto3" json:"storage_account,omitempty"`
	StorageAccountKey       string                     `protobuf:"bytes,2,opt,name=storage_account_key,json=storageAccountKey,proto3" json:"storage_account_key,omitempty"`
	StorageConnectionString string                     `` /* 132-byte string literal not displayed */
	Container               string                     `protobuf:"bytes,4,opt,name=container,proto3" json:"container,omitempty"`
	Endpoint                string                     `protobuf:"bytes,5,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	UserAssignedId          string                     `protobuf:"bytes,6,opt,name=user_assigned_id,json=userAssignedId,proto3" json:"user_assigned_id,omitempty"`
	MaxRetries              int32                      `protobuf:"varint,7,opt,name=max_retries,json=maxRetries,proto3" json:"max_retries,omitempty"`
	ReaderConfig            *BlockStore_Azure_Reader   `protobuf:"bytes,8,opt,name=reader_config,json=readerConfig,proto3" json:"reader_config,omitempty"`
	PipelineConfig          *BlockStore_Azure_Pipeline `protobuf:"bytes,9,opt,name=pipeline_config,json=pipelineConfig,proto3" json:"pipeline_config,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_Azure) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_Azure.ProtoReflect.Descriptor instead.

func (*BlockStore_Azure) GetContainer added in v0.0.32

func (x *BlockStore_Azure) GetContainer() string

func (*BlockStore_Azure) GetEndpoint added in v0.0.32

func (x *BlockStore_Azure) GetEndpoint() string

func (*BlockStore_Azure) GetMaxRetries added in v0.0.32

func (x *BlockStore_Azure) GetMaxRetries() int32

func (*BlockStore_Azure) GetPipelineConfig added in v0.0.32

func (x *BlockStore_Azure) GetPipelineConfig() *BlockStore_Azure_Pipeline

func (*BlockStore_Azure) GetReaderConfig added in v0.0.32

func (x *BlockStore_Azure) GetReaderConfig() *BlockStore_Azure_Reader

func (*BlockStore_Azure) GetStorageAccount added in v0.0.32

func (x *BlockStore_Azure) GetStorageAccount() string

func (*BlockStore_Azure) GetStorageAccountKey added in v0.0.32

func (x *BlockStore_Azure) GetStorageAccountKey() string

func (*BlockStore_Azure) GetStorageConnectionString added in v0.0.32

func (x *BlockStore_Azure) GetStorageConnectionString() string

func (*BlockStore_Azure) GetUserAssignedId added in v0.0.32

func (x *BlockStore_Azure) GetUserAssignedId() string

func (*BlockStore_Azure) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Azure) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Azure) MarshalToVT added in v0.0.32

func (m *BlockStore_Azure) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Azure) MarshalVT added in v0.0.32

func (m *BlockStore_Azure) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_Azure) ProtoMessage added in v0.0.32

func (*BlockStore_Azure) ProtoMessage()

func (*BlockStore_Azure) ProtoReflect added in v0.0.32

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

func (*BlockStore_Azure) Reset added in v0.0.32

func (x *BlockStore_Azure) Reset()

func (*BlockStore_Azure) SizeVT added in v0.0.32

func (m *BlockStore_Azure) SizeVT() (n int)

func (*BlockStore_Azure) String added in v0.0.32

func (x *BlockStore_Azure) String() string

func (*BlockStore_Azure) UnmarshalVT added in v0.0.32

func (m *BlockStore_Azure) UnmarshalVT(dAtA []byte) error

type BlockStore_Azure_ added in v0.0.32

type BlockStore_Azure_ struct {
	Azure *BlockStore_Azure `protobuf:"bytes,3,opt,name=azure,proto3,oneof"`
}

func (*BlockStore_Azure_) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Azure_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Azure_) MarshalToVT added in v0.0.32

func (m *BlockStore_Azure_) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Azure_) SizeVT added in v0.0.32

func (m *BlockStore_Azure_) SizeVT() (n int)

type BlockStore_Azure_Pipeline added in v0.0.32

type BlockStore_Azure_Pipeline struct {
	MaxTries      int32                `protobuf:"varint,1,opt,name=max_tries,json=maxTries,proto3" json:"max_tries,omitempty"`
	TryTimeout    *durationpb.Duration `protobuf:"bytes,2,opt,name=try_timeout,json=tryTimeout,proto3" json:"try_timeout,omitempty"`
	RetryDelay    *durationpb.Duration `protobuf:"bytes,3,opt,name=retry_delay,json=retryDelay,proto3" json:"retry_delay,omitempty"`
	MaxRetryDelay *durationpb.Duration `protobuf:"bytes,4,opt,name=max_retry_delay,json=maxRetryDelay,proto3" json:"max_retry_delay,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_Azure_Pipeline) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_Azure_Pipeline.ProtoReflect.Descriptor instead.

func (*BlockStore_Azure_Pipeline) GetMaxRetryDelay added in v0.0.32

func (x *BlockStore_Azure_Pipeline) GetMaxRetryDelay() *durationpb.Duration

func (*BlockStore_Azure_Pipeline) GetMaxTries added in v0.0.32

func (x *BlockStore_Azure_Pipeline) GetMaxTries() int32

func (*BlockStore_Azure_Pipeline) GetRetryDelay added in v0.0.32

func (x *BlockStore_Azure_Pipeline) GetRetryDelay() *durationpb.Duration

func (*BlockStore_Azure_Pipeline) GetTryTimeout added in v0.0.32

func (x *BlockStore_Azure_Pipeline) GetTryTimeout() *durationpb.Duration

func (*BlockStore_Azure_Pipeline) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Azure_Pipeline) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Azure_Pipeline) MarshalToVT added in v0.0.32

func (m *BlockStore_Azure_Pipeline) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Azure_Pipeline) MarshalVT added in v0.0.32

func (m *BlockStore_Azure_Pipeline) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_Azure_Pipeline) ProtoMessage added in v0.0.32

func (*BlockStore_Azure_Pipeline) ProtoMessage()

func (*BlockStore_Azure_Pipeline) ProtoReflect added in v0.0.32

func (*BlockStore_Azure_Pipeline) Reset added in v0.0.32

func (x *BlockStore_Azure_Pipeline) Reset()

func (*BlockStore_Azure_Pipeline) SizeVT added in v0.0.32

func (m *BlockStore_Azure_Pipeline) SizeVT() (n int)

func (*BlockStore_Azure_Pipeline) String added in v0.0.32

func (x *BlockStore_Azure_Pipeline) String() string

func (*BlockStore_Azure_Pipeline) UnmarshalVT added in v0.0.32

func (m *BlockStore_Azure_Pipeline) UnmarshalVT(dAtA []byte) error

type BlockStore_Azure_Reader added in v0.0.32

type BlockStore_Azure_Reader struct {
	MaxRetryRequests int32 `protobuf:"varint,1,opt,name=max_retry_requests,json=maxRetryRequests,proto3" json:"max_retry_requests,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_Azure_Reader) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_Azure_Reader.ProtoReflect.Descriptor instead.

func (*BlockStore_Azure_Reader) GetMaxRetryRequests added in v0.0.32

func (x *BlockStore_Azure_Reader) GetMaxRetryRequests() int32

func (*BlockStore_Azure_Reader) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Azure_Reader) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Azure_Reader) MarshalToVT added in v0.0.32

func (m *BlockStore_Azure_Reader) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Azure_Reader) MarshalVT added in v0.0.32

func (m *BlockStore_Azure_Reader) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_Azure_Reader) ProtoMessage added in v0.0.32

func (*BlockStore_Azure_Reader) ProtoMessage()

func (*BlockStore_Azure_Reader) ProtoReflect added in v0.0.32

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

func (*BlockStore_Azure_Reader) Reset added in v0.0.32

func (x *BlockStore_Azure_Reader) Reset()

func (*BlockStore_Azure_Reader) SizeVT added in v0.0.32

func (m *BlockStore_Azure_Reader) SizeVT() (n int)

func (*BlockStore_Azure_Reader) String added in v0.0.32

func (x *BlockStore_Azure_Reader) String() string

func (*BlockStore_Azure_Reader) UnmarshalVT added in v0.0.32

func (m *BlockStore_Azure_Reader) UnmarshalVT(dAtA []byte) error

type BlockStore_BOS added in v0.0.32

type BlockStore_BOS struct {
	Bucket    string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Endpoint  string `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	AccessKey string `protobuf:"bytes,3,opt,name=access_key,json=accessKey,proto3" json:"access_key,omitempty"`
	SecretKey string `protobuf:"bytes,4,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_BOS) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_BOS.ProtoReflect.Descriptor instead.

func (*BlockStore_BOS) GetAccessKey added in v0.0.32

func (x *BlockStore_BOS) GetAccessKey() string

func (*BlockStore_BOS) GetBucket added in v0.0.32

func (x *BlockStore_BOS) GetBucket() string

func (*BlockStore_BOS) GetEndpoint added in v0.0.32

func (x *BlockStore_BOS) GetEndpoint() string

func (*BlockStore_BOS) GetSecretKey added in v0.0.32

func (x *BlockStore_BOS) GetSecretKey() string

func (*BlockStore_BOS) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_BOS) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_BOS) MarshalToVT added in v0.0.32

func (m *BlockStore_BOS) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_BOS) MarshalVT added in v0.0.32

func (m *BlockStore_BOS) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_BOS) ProtoMessage added in v0.0.32

func (*BlockStore_BOS) ProtoMessage()

func (*BlockStore_BOS) ProtoReflect added in v0.0.32

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

func (*BlockStore_BOS) Reset added in v0.0.32

func (x *BlockStore_BOS) Reset()

func (*BlockStore_BOS) SizeVT added in v0.0.32

func (m *BlockStore_BOS) SizeVT() (n int)

func (*BlockStore_BOS) String added in v0.0.32

func (x *BlockStore_BOS) String() string

func (*BlockStore_BOS) UnmarshalVT added in v0.0.32

func (m *BlockStore_BOS) UnmarshalVT(dAtA []byte) error

type BlockStore_Bos added in v0.0.32

type BlockStore_Bos struct {
	Bos *BlockStore_BOS `protobuf:"bytes,4,opt,name=bos,proto3,oneof"`
}

func (*BlockStore_Bos) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Bos) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Bos) MarshalToVT added in v0.0.32

func (m *BlockStore_Bos) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Bos) SizeVT added in v0.0.32

func (m *BlockStore_Bos) SizeVT() (n int)

type BlockStore_COS added in v0.0.32

type BlockStore_COS struct {
	Bucket    string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Region    string `protobuf:"bytes,2,opt,name=region,proto3" json:"region,omitempty"`
	AppId     string `protobuf:"bytes,3,opt,name=app_id,json=appId,proto3" json:"app_id,omitempty"`
	Endpoint  string `protobuf:"bytes,4,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	SecretKey string `protobuf:"bytes,5,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
	SecretId  string `protobuf:"bytes,6,opt,name=secret_id,json=secretId,proto3" json:"secret_id,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_COS) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_COS.ProtoReflect.Descriptor instead.

func (*BlockStore_COS) GetAppId added in v0.0.32

func (x *BlockStore_COS) GetAppId() string

func (*BlockStore_COS) GetBucket added in v0.0.32

func (x *BlockStore_COS) GetBucket() string

func (*BlockStore_COS) GetEndpoint added in v0.0.32

func (x *BlockStore_COS) GetEndpoint() string

func (*BlockStore_COS) GetRegion added in v0.0.32

func (x *BlockStore_COS) GetRegion() string

func (*BlockStore_COS) GetSecretId added in v0.0.32

func (x *BlockStore_COS) GetSecretId() string

func (*BlockStore_COS) GetSecretKey added in v0.0.32

func (x *BlockStore_COS) GetSecretKey() string

func (*BlockStore_COS) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_COS) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_COS) MarshalToVT added in v0.0.32

func (m *BlockStore_COS) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_COS) MarshalVT added in v0.0.32

func (m *BlockStore_COS) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_COS) ProtoMessage added in v0.0.32

func (*BlockStore_COS) ProtoMessage()

func (*BlockStore_COS) ProtoReflect added in v0.0.32

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

func (*BlockStore_COS) Reset added in v0.0.32

func (x *BlockStore_COS) Reset()

func (*BlockStore_COS) SizeVT added in v0.0.32

func (m *BlockStore_COS) SizeVT() (n int)

func (*BlockStore_COS) String added in v0.0.32

func (x *BlockStore_COS) String() string

func (*BlockStore_COS) UnmarshalVT added in v0.0.32

func (m *BlockStore_COS) UnmarshalVT(dAtA []byte) error

type BlockStore_Cos added in v0.0.32

type BlockStore_Cos struct {
	Cos *BlockStore_COS `protobuf:"bytes,5,opt,name=cos,proto3,oneof"`
}

func (*BlockStore_Cos) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Cos) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Cos) MarshalToVT added in v0.0.32

func (m *BlockStore_Cos) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Cos) SizeVT added in v0.0.32

func (m *BlockStore_Cos) SizeVT() (n int)

type BlockStore_Filesystem added in v0.0.32

type BlockStore_Filesystem struct {
	Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_Filesystem) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_Filesystem.ProtoReflect.Descriptor instead.

func (*BlockStore_Filesystem) GetDirectory added in v0.0.32

func (x *BlockStore_Filesystem) GetDirectory() string

func (*BlockStore_Filesystem) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Filesystem) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Filesystem) MarshalToVT added in v0.0.32

func (m *BlockStore_Filesystem) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Filesystem) MarshalVT added in v0.0.32

func (m *BlockStore_Filesystem) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_Filesystem) ProtoMessage added in v0.0.32

func (*BlockStore_Filesystem) ProtoMessage()

func (*BlockStore_Filesystem) ProtoReflect added in v0.0.32

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

func (*BlockStore_Filesystem) Reset added in v0.0.32

func (x *BlockStore_Filesystem) Reset()

func (*BlockStore_Filesystem) SizeVT added in v0.0.32

func (m *BlockStore_Filesystem) SizeVT() (n int)

func (*BlockStore_Filesystem) String added in v0.0.32

func (x *BlockStore_Filesystem) String() string

func (*BlockStore_Filesystem) UnmarshalVT added in v0.0.32

func (m *BlockStore_Filesystem) UnmarshalVT(dAtA []byte) error

type BlockStore_Fs added in v0.0.32

type BlockStore_Fs struct {
	Fs *BlockStore_Filesystem `protobuf:"bytes,1,opt,name=fs,proto3,oneof"`
}

func (*BlockStore_Fs) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Fs) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Fs) MarshalToVT added in v0.0.32

func (m *BlockStore_Fs) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Fs) SizeVT added in v0.0.32

func (m *BlockStore_Fs) SizeVT() (n int)

type BlockStore_GCS added in v0.0.32

type BlockStore_GCS struct {
	Bucket         string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	ServiceAccount string `protobuf:"bytes,2,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_GCS) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_GCS.ProtoReflect.Descriptor instead.

func (*BlockStore_GCS) GetBucket added in v0.0.32

func (x *BlockStore_GCS) GetBucket() string

func (*BlockStore_GCS) GetServiceAccount added in v0.0.32

func (x *BlockStore_GCS) GetServiceAccount() string

func (*BlockStore_GCS) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_GCS) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_GCS) MarshalToVT added in v0.0.32

func (m *BlockStore_GCS) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_GCS) MarshalVT added in v0.0.32

func (m *BlockStore_GCS) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_GCS) ProtoMessage added in v0.0.32

func (*BlockStore_GCS) ProtoMessage()

func (*BlockStore_GCS) ProtoReflect added in v0.0.32

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

func (*BlockStore_GCS) Reset added in v0.0.32

func (x *BlockStore_GCS) Reset()

func (*BlockStore_GCS) SizeVT added in v0.0.32

func (m *BlockStore_GCS) SizeVT() (n int)

func (*BlockStore_GCS) String added in v0.0.32

func (x *BlockStore_GCS) String() string

func (*BlockStore_GCS) UnmarshalVT added in v0.0.32

func (m *BlockStore_GCS) UnmarshalVT(dAtA []byte) error

type BlockStore_Gcs added in v0.0.32

type BlockStore_Gcs struct {
	Gcs *BlockStore_GCS `protobuf:"bytes,6,opt,name=gcs,proto3,oneof"`
}

func (*BlockStore_Gcs) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Gcs) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Gcs) MarshalToVT added in v0.0.32

func (m *BlockStore_Gcs) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Gcs) SizeVT added in v0.0.32

func (m *BlockStore_Gcs) SizeVT() (n int)

type BlockStore_OBS added in v0.0.32

type BlockStore_OBS struct {
	Bucket    string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Endpoint  string `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	AccessKey string `protobuf:"bytes,3,opt,name=access_key,json=accessKey,proto3" json:"access_key,omitempty"`
	SecretKey string `protobuf:"bytes,4,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_OBS) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_OBS.ProtoReflect.Descriptor instead.

func (*BlockStore_OBS) GetAccessKey added in v0.0.32

func (x *BlockStore_OBS) GetAccessKey() string

func (*BlockStore_OBS) GetBucket added in v0.0.32

func (x *BlockStore_OBS) GetBucket() string

func (*BlockStore_OBS) GetEndpoint added in v0.0.32

func (x *BlockStore_OBS) GetEndpoint() string

func (*BlockStore_OBS) GetSecretKey added in v0.0.32

func (x *BlockStore_OBS) GetSecretKey() string

func (*BlockStore_OBS) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_OBS) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_OBS) MarshalToVT added in v0.0.32

func (m *BlockStore_OBS) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_OBS) MarshalVT added in v0.0.32

func (m *BlockStore_OBS) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_OBS) ProtoMessage added in v0.0.32

func (*BlockStore_OBS) ProtoMessage()

func (*BlockStore_OBS) ProtoReflect added in v0.0.32

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

func (*BlockStore_OBS) Reset added in v0.0.32

func (x *BlockStore_OBS) Reset()

func (*BlockStore_OBS) SizeVT added in v0.0.32

func (m *BlockStore_OBS) SizeVT() (n int)

func (*BlockStore_OBS) String added in v0.0.32

func (x *BlockStore_OBS) String() string

func (*BlockStore_OBS) UnmarshalVT added in v0.0.32

func (m *BlockStore_OBS) UnmarshalVT(dAtA []byte) error

type BlockStore_OSS added in v0.0.32

type BlockStore_OSS struct {
	Endpoint        string `protobuf:"bytes,1,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	Bucket          string `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
	AccessKeyId     string `protobuf:"bytes,3,opt,name=access_key_id,json=accessKeyId,proto3" json:"access_key_id,omitempty"`
	AccessKeySecret string `protobuf:"bytes,4,opt,name=access_key_secret,json=accessKeySecret,proto3" json:"access_key_secret,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_OSS) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_OSS.ProtoReflect.Descriptor instead.

func (*BlockStore_OSS) GetAccessKeyId added in v0.0.32

func (x *BlockStore_OSS) GetAccessKeyId() string

func (*BlockStore_OSS) GetAccessKeySecret added in v0.0.32

func (x *BlockStore_OSS) GetAccessKeySecret() string

func (*BlockStore_OSS) GetBucket added in v0.0.32

func (x *BlockStore_OSS) GetBucket() string

func (*BlockStore_OSS) GetEndpoint added in v0.0.32

func (x *BlockStore_OSS) GetEndpoint() string

func (*BlockStore_OSS) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_OSS) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_OSS) MarshalToVT added in v0.0.32

func (m *BlockStore_OSS) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_OSS) MarshalVT added in v0.0.32

func (m *BlockStore_OSS) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_OSS) ProtoMessage added in v0.0.32

func (*BlockStore_OSS) ProtoMessage()

func (*BlockStore_OSS) ProtoReflect added in v0.0.32

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

func (*BlockStore_OSS) Reset added in v0.0.32

func (x *BlockStore_OSS) Reset()

func (*BlockStore_OSS) SizeVT added in v0.0.32

func (m *BlockStore_OSS) SizeVT() (n int)

func (*BlockStore_OSS) String added in v0.0.32

func (x *BlockStore_OSS) String() string

func (*BlockStore_OSS) UnmarshalVT added in v0.0.32

func (m *BlockStore_OSS) UnmarshalVT(dAtA []byte) error

type BlockStore_Obs added in v0.0.32

type BlockStore_Obs struct {
	Obs *BlockStore_OBS `protobuf:"bytes,7,opt,name=obs,proto3,oneof"`
}

func (*BlockStore_Obs) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Obs) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Obs) MarshalToVT added in v0.0.32

func (m *BlockStore_Obs) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Obs) SizeVT added in v0.0.32

func (m *BlockStore_Obs) SizeVT() (n int)

type BlockStore_Oss added in v0.0.32

type BlockStore_Oss struct {
	Oss *BlockStore_OSS `protobuf:"bytes,8,opt,name=oss,proto3,oneof"`
}

func (*BlockStore_Oss) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_Oss) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_Oss) MarshalToVT added in v0.0.32

func (m *BlockStore_Oss) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_Oss) SizeVT added in v0.0.32

func (m *BlockStore_Oss) SizeVT() (n int)

type BlockStore_S3 added in v0.0.32

type BlockStore_S3 struct {
	Bucket             string                         `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
	Endpoint           string                         `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	Region             string                         `protobuf:"bytes,3,opt,name=region,proto3" json:"region,omitempty"`
	AwsSdkAuth         bool                           `protobuf:"varint,4,opt,name=aws_sdk_auth,json=awsSdkAuth,proto3" json:"aws_sdk_auth,omitempty"`
	AccessKey          string                         `protobuf:"bytes,5,opt,name=access_key,json=accessKey,proto3" json:"access_key,omitempty"`
	Insecure           bool                           `protobuf:"varint,6,opt,name=insecure,proto3" json:"insecure,omitempty"`
	SignatureVersion2  bool                           `protobuf:"varint,7,opt,name=signature_version2,json=signatureVersion2,proto3" json:"signature_version2,omitempty"`
	SecretKey          string                         `protobuf:"bytes,8,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
	SessionToken       string                         `protobuf:"bytes,9,opt,name=session_token,json=sessionToken,proto3" json:"session_token,omitempty"`
	PutUserMetadata    map[string]string              `` /* 197-byte string literal not displayed */
	ListObjectsVersion string                         `protobuf:"bytes,11,opt,name=list_objects_version,json=listObjectsVersion,proto3" json:"list_objects_version,omitempty"`
	BucketLookupType   BlockStore_S3_BucketLookupType `` /* 152-byte string literal not displayed */
	PartSize           uint64                         `protobuf:"varint,13,opt,name=part_size,json=partSize,proto3" json:"part_size,omitempty"`
	SseConfig          *BlockStore_S3_SSE             `protobuf:"bytes,14,opt,name=sse_config,json=sseConfig,proto3" json:"sse_config,omitempty"`
	StsEndpoint        string                         `protobuf:"bytes,15,opt,name=sts_endpoint,json=stsEndpoint,proto3" json:"sts_endpoint,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_S3) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_S3.ProtoReflect.Descriptor instead.

func (*BlockStore_S3) GetAccessKey added in v0.0.32

func (x *BlockStore_S3) GetAccessKey() string

func (*BlockStore_S3) GetAwsSdkAuth added in v0.0.32

func (x *BlockStore_S3) GetAwsSdkAuth() bool

func (*BlockStore_S3) GetBucket added in v0.0.32

func (x *BlockStore_S3) GetBucket() string

func (*BlockStore_S3) GetBucketLookupType added in v0.0.32

func (x *BlockStore_S3) GetBucketLookupType() BlockStore_S3_BucketLookupType

func (*BlockStore_S3) GetEndpoint added in v0.0.32

func (x *BlockStore_S3) GetEndpoint() string

func (*BlockStore_S3) GetInsecure added in v0.0.32

func (x *BlockStore_S3) GetInsecure() bool

func (*BlockStore_S3) GetListObjectsVersion added in v0.0.32

func (x *BlockStore_S3) GetListObjectsVersion() string

func (*BlockStore_S3) GetPartSize added in v0.0.32

func (x *BlockStore_S3) GetPartSize() uint64

func (*BlockStore_S3) GetPutUserMetadata added in v0.0.32

func (x *BlockStore_S3) GetPutUserMetadata() map[string]string

func (*BlockStore_S3) GetRegion added in v0.0.32

func (x *BlockStore_S3) GetRegion() string

func (*BlockStore_S3) GetSecretKey added in v0.0.32

func (x *BlockStore_S3) GetSecretKey() string

func (*BlockStore_S3) GetSessionToken added in v0.0.32

func (x *BlockStore_S3) GetSessionToken() string

func (*BlockStore_S3) GetSignatureVersion2 added in v0.0.32

func (x *BlockStore_S3) GetSignatureVersion2() bool

func (*BlockStore_S3) GetSseConfig added in v0.0.32

func (x *BlockStore_S3) GetSseConfig() *BlockStore_S3_SSE

func (*BlockStore_S3) GetStsEndpoint added in v0.0.32

func (x *BlockStore_S3) GetStsEndpoint() string

func (*BlockStore_S3) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_S3) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_S3) MarshalToVT added in v0.0.32

func (m *BlockStore_S3) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_S3) MarshalVT added in v0.0.32

func (m *BlockStore_S3) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_S3) ProtoMessage added in v0.0.32

func (*BlockStore_S3) ProtoMessage()

func (*BlockStore_S3) ProtoReflect added in v0.0.32

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

func (*BlockStore_S3) Reset added in v0.0.32

func (x *BlockStore_S3) Reset()

func (*BlockStore_S3) SizeVT added in v0.0.32

func (m *BlockStore_S3) SizeVT() (n int)

func (*BlockStore_S3) String added in v0.0.32

func (x *BlockStore_S3) String() string

func (*BlockStore_S3) UnmarshalVT added in v0.0.32

func (m *BlockStore_S3) UnmarshalVT(dAtA []byte) error

type BlockStore_S3_ added in v0.0.32

type BlockStore_S3_ struct {
	S3 *BlockStore_S3 `protobuf:"bytes,2,opt,name=s3,proto3,oneof"`
}

func (*BlockStore_S3_) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_S3_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_S3_) MarshalToVT added in v0.0.32

func (m *BlockStore_S3_) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_S3_) SizeVT added in v0.0.32

func (m *BlockStore_S3_) SizeVT() (n int)

type BlockStore_S3_BucketLookupType added in v0.0.32

type BlockStore_S3_BucketLookupType int32
const (
	BlockStore_S3_AUTO           BlockStore_S3_BucketLookupType = 0
	BlockStore_S3_VIRTUAL_HOSTED BlockStore_S3_BucketLookupType = 1
	BlockStore_S3_PATH           BlockStore_S3_BucketLookupType = 2
)

func (BlockStore_S3_BucketLookupType) Descriptor added in v0.0.32

func (BlockStore_S3_BucketLookupType) Enum added in v0.0.32

func (BlockStore_S3_BucketLookupType) EnumDescriptor deprecated added in v0.0.32

func (BlockStore_S3_BucketLookupType) EnumDescriptor() ([]byte, []int)

Deprecated: Use BlockStore_S3_BucketLookupType.Descriptor instead.

func (BlockStore_S3_BucketLookupType) Number added in v0.0.32

func (BlockStore_S3_BucketLookupType) String added in v0.0.32

func (BlockStore_S3_BucketLookupType) Type added in v0.0.32

type BlockStore_S3_SSE added in v0.0.32

type BlockStore_S3_SSE struct {
	Type                 string            `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	KmsKeyId             string            `protobuf:"bytes,2,opt,name=kms_key_id,json=kmsKeyId,proto3" json:"kms_key_id,omitempty"`
	KmsEncryptionContext map[string]string `` /* 211-byte string literal not displayed */
	EncryptionKey        string            `protobuf:"bytes,4,opt,name=encryption_key,json=encryptionKey,proto3" json:"encryption_key,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockStore_S3_SSE) Descriptor deprecated added in v0.0.32

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

Deprecated: Use BlockStore_S3_SSE.ProtoReflect.Descriptor instead.

func (*BlockStore_S3_SSE) GetEncryptionKey added in v0.0.32

func (x *BlockStore_S3_SSE) GetEncryptionKey() string

func (*BlockStore_S3_SSE) GetKmsEncryptionContext added in v0.0.32

func (x *BlockStore_S3_SSE) GetKmsEncryptionContext() map[string]string

func (*BlockStore_S3_SSE) GetKmsKeyId added in v0.0.32

func (x *BlockStore_S3_SSE) GetKmsKeyId() string

func (*BlockStore_S3_SSE) GetType added in v0.0.32

func (x *BlockStore_S3_SSE) GetType() string

func (*BlockStore_S3_SSE) MarshalToSizedBufferVT added in v0.0.32

func (m *BlockStore_S3_SSE) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BlockStore_S3_SSE) MarshalToVT added in v0.0.32

func (m *BlockStore_S3_SSE) MarshalToVT(dAtA []byte) (int, error)

func (*BlockStore_S3_SSE) MarshalVT added in v0.0.32

func (m *BlockStore_S3_SSE) MarshalVT() (dAtA []byte, err error)

func (*BlockStore_S3_SSE) ProtoMessage added in v0.0.32

func (*BlockStore_S3_SSE) ProtoMessage()

func (*BlockStore_S3_SSE) ProtoReflect added in v0.0.32

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

func (*BlockStore_S3_SSE) Reset added in v0.0.32

func (x *BlockStore_S3_SSE) Reset()

func (*BlockStore_S3_SSE) SizeVT added in v0.0.32

func (m *BlockStore_S3_SSE) SizeVT() (n int)

func (*BlockStore_S3_SSE) String added in v0.0.32

func (x *BlockStore_S3_SSE) String() string

func (*BlockStore_S3_SSE) UnmarshalVT added in v0.0.32

func (m *BlockStore_S3_SSE) UnmarshalVT(dAtA []byte) error

type Build

type Build struct {
	Version  string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	ServerId string `protobuf:"bytes,2,opt,name=server_id,json=serverId,proto3" json:"server_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Build) Descriptor deprecated

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

Deprecated: Use Build.ProtoReflect.Descriptor instead.

func (*Build) GetServerId added in v0.0.37

func (x *Build) GetServerId() string

func (*Build) GetVersion

func (x *Build) GetVersion() string

func (*Build) MarshalToSizedBufferVT

func (m *Build) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Build) MarshalToVT

func (m *Build) MarshalToVT(dAtA []byte) (int, error)

func (*Build) MarshalVT

func (m *Build) MarshalVT() (dAtA []byte, err error)

func (*Build) ProtoMessage

func (*Build) ProtoMessage()

func (*Build) ProtoReflect

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

func (*Build) Reset

func (x *Build) Reset()

func (*Build) SizeVT

func (m *Build) SizeVT() (n int)

func (*Build) String

func (x *Build) String() string

func (*Build) UnmarshalVT

func (m *Build) UnmarshalVT(dAtA []byte) error

type Client

type Client struct {
	PrivateKey []byte `protobuf:"bytes,1,opt,name=private_key,json=privateKey,proto3" json:"private_key,omitempty"`
	// Authentication details of vince instances
	Instance map[string]*Client_Instance `` /* 157-byte string literal not displayed */
	// Map of server_id to instance
	ServerId map[string]string `` /* 173-byte string literal not displayed */
	// The default auth name to use.
	Active   *Client_Active            `protobuf:"bytes,4,opt,name=active,proto3" json:"active,omitempty"`
	Clusters map[string]*ClusterConfig `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Client) Descriptor deprecated

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

Deprecated: Use Client.ProtoReflect.Descriptor instead.

func (*Client) GetActive

func (x *Client) GetActive() *Client_Active

func (*Client) GetClusters

func (x *Client) GetClusters() map[string]*ClusterConfig

func (*Client) GetInstance

func (x *Client) GetInstance() map[string]*Client_Instance

func (*Client) GetPrivateKey

func (x *Client) GetPrivateKey() []byte

func (*Client) GetServerId

func (x *Client) GetServerId() map[string]string

func (*Client) MarshalToSizedBufferVT

func (m *Client) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Client) MarshalToVT

func (m *Client) MarshalToVT(dAtA []byte) (int, error)

func (*Client) MarshalVT

func (m *Client) MarshalVT() (dAtA []byte, err error)

func (*Client) ProtoMessage

func (*Client) ProtoMessage()

func (*Client) ProtoReflect

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

func (*Client) Reset

func (x *Client) Reset()

func (*Client) SizeVT

func (m *Client) SizeVT() (n int)

func (*Client) String

func (x *Client) String() string

func (*Client) UnmarshalVT

func (m *Client) UnmarshalVT(dAtA []byte) error

type Client_Active

type Client_Active struct {
	Instance string `protobuf:"bytes,1,opt,name=instance,proto3" json:"instance,omitempty"`
	Account  string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	// contains filtered or unexported fields
}

func (*Client_Active) Descriptor deprecated

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

Deprecated: Use Client_Active.ProtoReflect.Descriptor instead.

func (*Client_Active) GetAccount

func (x *Client_Active) GetAccount() string

func (*Client_Active) GetInstance

func (x *Client_Active) GetInstance() string

func (*Client_Active) MarshalToSizedBufferVT

func (m *Client_Active) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Client_Active) MarshalToVT

func (m *Client_Active) MarshalToVT(dAtA []byte) (int, error)

func (*Client_Active) MarshalVT

func (m *Client_Active) MarshalVT() (dAtA []byte, err error)

func (*Client_Active) ProtoMessage

func (*Client_Active) ProtoMessage()

func (*Client_Active) ProtoReflect

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

func (*Client_Active) Reset

func (x *Client_Active) Reset()

func (*Client_Active) SizeVT

func (m *Client_Active) SizeVT() (n int)

func (*Client_Active) String

func (x *Client_Active) String() string

func (*Client_Active) UnmarshalVT

func (m *Client_Active) UnmarshalVT(dAtA []byte) error

type Client_Auth

type Client_Auth struct {
	Name          string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	AccessToken   string `protobuf:"bytes,2,opt,name=access_token,json=accessToken,proto3" json:"access_token,omitempty"`
	RerfreshToken string `protobuf:"bytes,3,opt,name=rerfresh_token,json=rerfreshToken,proto3" json:"rerfresh_token,omitempty"`
	ServerId      string `protobuf:"bytes,4,opt,name=server_id,json=serverId,proto3" json:"server_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Client_Auth) Descriptor deprecated

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

Deprecated: Use Client_Auth.ProtoReflect.Descriptor instead.

func (*Client_Auth) GetAccessToken added in v0.0.37

func (x *Client_Auth) GetAccessToken() string

func (*Client_Auth) GetName

func (x *Client_Auth) GetName() string

func (*Client_Auth) GetRerfreshToken added in v0.0.37

func (x *Client_Auth) GetRerfreshToken() string

func (*Client_Auth) GetServerId

func (x *Client_Auth) GetServerId() string

func (*Client_Auth) MarshalToSizedBufferVT

func (m *Client_Auth) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Client_Auth) MarshalToVT

func (m *Client_Auth) MarshalToVT(dAtA []byte) (int, error)

func (*Client_Auth) MarshalVT

func (m *Client_Auth) MarshalVT() (dAtA []byte, err error)

func (*Client_Auth) ProtoMessage

func (*Client_Auth) ProtoMessage()

func (*Client_Auth) ProtoReflect

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

func (*Client_Auth) Reset

func (x *Client_Auth) Reset()

func (*Client_Auth) SizeVT

func (m *Client_Auth) SizeVT() (n int)

func (*Client_Auth) String

func (x *Client_Auth) String() string

func (*Client_Auth) UnmarshalVT

func (m *Client_Auth) UnmarshalVT(dAtA []byte) error

type Client_Instance

type Client_Instance struct {
	Accounts map[string]*Client_Auth `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Client_Instance) Descriptor deprecated

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

Deprecated: Use Client_Instance.ProtoReflect.Descriptor instead.

func (*Client_Instance) GetAccounts

func (x *Client_Instance) GetAccounts() map[string]*Client_Auth

func (*Client_Instance) MarshalToSizedBufferVT

func (m *Client_Instance) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Client_Instance) MarshalToVT

func (m *Client_Instance) MarshalToVT(dAtA []byte) (int, error)

func (*Client_Instance) MarshalVT

func (m *Client_Instance) MarshalVT() (dAtA []byte, err error)

func (*Client_Instance) ProtoMessage

func (*Client_Instance) ProtoMessage()

func (*Client_Instance) ProtoReflect

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

func (*Client_Instance) Reset

func (x *Client_Instance) Reset()

func (*Client_Instance) SizeVT

func (m *Client_Instance) SizeVT() (n int)

func (*Client_Instance) String

func (x *Client_Instance) String() string

func (*Client_Instance) UnmarshalVT

func (m *Client_Instance) UnmarshalVT(dAtA []byte) error

type ClusterConfig added in v0.0.39

type ClusterConfig struct {
	Name  string                         `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Nodes map[string]*ClusterConfig_Node `` /* 151-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ClusterConfig) Descriptor deprecated added in v0.0.39

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

Deprecated: Use ClusterConfig.ProtoReflect.Descriptor instead.

func (*ClusterConfig) GetName added in v0.0.39

func (x *ClusterConfig) GetName() string

func (*ClusterConfig) GetNodes added in v0.0.39

func (x *ClusterConfig) GetNodes() map[string]*ClusterConfig_Node

func (*ClusterConfig) MarshalToSizedBufferVT added in v0.0.39

func (m *ClusterConfig) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ClusterConfig) MarshalToVT added in v0.0.39

func (m *ClusterConfig) MarshalToVT(dAtA []byte) (int, error)

func (*ClusterConfig) MarshalVT added in v0.0.39

func (m *ClusterConfig) MarshalVT() (dAtA []byte, err error)

func (*ClusterConfig) ProtoMessage added in v0.0.39

func (*ClusterConfig) ProtoMessage()

func (*ClusterConfig) ProtoReflect added in v0.0.39

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

func (*ClusterConfig) Reset added in v0.0.39

func (x *ClusterConfig) Reset()

func (*ClusterConfig) SizeVT added in v0.0.39

func (m *ClusterConfig) SizeVT() (n int)

func (*ClusterConfig) String added in v0.0.39

func (x *ClusterConfig) String() string

func (*ClusterConfig) UnmarshalVT added in v0.0.39

func (m *ClusterConfig) UnmarshalVT(dAtA []byte) error

type ClusterConfig_Node added in v0.0.39

type ClusterConfig_Node struct {
	Account *Client_Auth `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	// True if this node is used to bootstrap the cluster.
	Bootstrap bool   `protobuf:"varint,2,opt,name=bootstrap,proto3" json:"bootstrap,omitempty"`
	Address   string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterConfig_Node) Descriptor deprecated added in v0.0.39

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

Deprecated: Use ClusterConfig_Node.ProtoReflect.Descriptor instead.

func (*ClusterConfig_Node) GetAccount added in v0.0.39

func (x *ClusterConfig_Node) GetAccount() *Client_Auth

func (*ClusterConfig_Node) GetAddress added in v0.0.39

func (x *ClusterConfig_Node) GetAddress() string

func (*ClusterConfig_Node) GetBootstrap added in v0.0.39

func (x *ClusterConfig_Node) GetBootstrap() bool

func (*ClusterConfig_Node) MarshalToSizedBufferVT added in v0.0.39

func (m *ClusterConfig_Node) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ClusterConfig_Node) MarshalToVT added in v0.0.39

func (m *ClusterConfig_Node) MarshalToVT(dAtA []byte) (int, error)

func (*ClusterConfig_Node) MarshalVT added in v0.0.39

func (m *ClusterConfig_Node) MarshalVT() (dAtA []byte, err error)

func (*ClusterConfig_Node) ProtoMessage added in v0.0.39

func (*ClusterConfig_Node) ProtoMessage()

func (*ClusterConfig_Node) ProtoReflect added in v0.0.39

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

func (*ClusterConfig_Node) Reset added in v0.0.39

func (x *ClusterConfig_Node) Reset()

func (*ClusterConfig_Node) SizeVT added in v0.0.39

func (m *ClusterConfig_Node) SizeVT() (n int)

func (*ClusterConfig_Node) String added in v0.0.39

func (x *ClusterConfig_Node) String() string

func (*ClusterConfig_Node) UnmarshalVT added in v0.0.39

func (m *ClusterConfig_Node) UnmarshalVT(dAtA []byte) error

type Config

type Config struct {

	// Path to the main badger database.
	DbPath string `protobuf:"bytes,1,opt,name=db_path,json=dbPath,proto3" json:"db_path,omitempty"`
	// Path to where block files are stored. Blocks are stored as files with ULID
	// as filenames
	BlocksStore *BlockStore `protobuf:"bytes,2,opt,name=blocks_store,json=blocksStore,proto3" json:"blocks_store,omitempty"`
	// host:port to bind for http api. This is used by serve command. The server
	// serves ui console
	ListenAddress string `protobuf:"bytes,3,opt,name=listen_address,json=listenAddress,proto3" json:"listen_address,omitempty"`
	// Control how much is logged options are
	LogLevel string `protobuf:"bytes,4,opt,name=log_level,json=logLevel,proto3" json:"log_level,omitempty"`
	// Expose /debug/pprof endpoint when serving
	EnableProfile bool `protobuf:"varint,6,opt,name=enable_profile,json=enableProfile,proto3" json:"enable_profile,omitempty"`
	// host:port to bind myslq server. Serves web analytics via MySQL compliant
	// wire protocol.
	MysqlListenAddress string             `protobuf:"bytes,7,opt,name=mysql_listen_address,json=mysqlListenAddress,proto3" json:"mysql_listen_address,omitempty"`
	TlsCertFile        string             `protobuf:"bytes,8,opt,name=tls_cert_file,json=tlsCertFile,proto3" json:"tls_cert_file,omitempty"`
	TlsKeyFile         string             `protobuf:"bytes,9,opt,name=tls_key_file,json=tlsKeyFile,proto3" json:"tls_key_file,omitempty"`
	EventsBufferSize   int64              `protobuf:"varint,10,opt,name=events_buffer_size,json=eventsBufferSize,proto3" json:"events_buffer_size,omitempty"`
	Notifiers          []*Config_Notifier `protobuf:"bytes,11,rep,name=notifiers,proto3" json:"notifiers,omitempty"`
	ServerId           string             `protobuf:"bytes,12,opt,name=server_id,json=serverId,proto3" json:"server_id,omitempty"`
	RaftPath           string             `protobuf:"bytes,13,opt,name=raft_path,json=raftPath,proto3" json:"raft_path,omitempty"`
	AllowedOrigins     []string           `protobuf:"bytes,14,rep,name=allowed_origins,json=allowedOrigins,proto3" json:"allowed_origins,omitempty"`
	// Ed5519 private key used for generating and verifying jwt tokens.
	SecretKey *Config_SecretKey `protobuf:"bytes,15,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
	Env       Config_Env        `protobuf:"varint,16,opt,name=env,proto3,enum=v1.Config_Env" json:"env,omitempty"`
	// contains filtered or unexported fields
}

Configuration object for vince instance

func (*Config) Descriptor deprecated

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

Deprecated: Use Config.ProtoReflect.Descriptor instead.

func (*Config) GetAllowedOrigins added in v0.0.31

func (x *Config) GetAllowedOrigins() []string

func (*Config) GetBlocksStore added in v0.0.32

func (x *Config) GetBlocksStore() *BlockStore

func (*Config) GetDbPath

func (x *Config) GetDbPath() string

func (*Config) GetEnableProfile

func (x *Config) GetEnableProfile() bool

func (*Config) GetEnv added in v0.0.39

func (x *Config) GetEnv() Config_Env

func (*Config) GetEventsBufferSize

func (x *Config) GetEventsBufferSize() int64

func (*Config) GetListenAddress

func (x *Config) GetListenAddress() string

func (*Config) GetLogLevel

func (x *Config) GetLogLevel() string

func (*Config) GetMysqlListenAddress

func (x *Config) GetMysqlListenAddress() string

func (*Config) GetNotifiers

func (x *Config) GetNotifiers() []*Config_Notifier

func (*Config) GetRaftPath

func (x *Config) GetRaftPath() string

func (*Config) GetSecretKey added in v0.0.37

func (x *Config) GetSecretKey() *Config_SecretKey

func (*Config) GetServerId

func (x *Config) GetServerId() string

func (*Config) GetTlsCertFile

func (x *Config) GetTlsCertFile() string

func (*Config) GetTlsKeyFile

func (x *Config) GetTlsKeyFile() string

func (*Config) MarshalToSizedBufferVT

func (m *Config) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config) MarshalToVT

func (m *Config) MarshalToVT(dAtA []byte) (int, error)

func (*Config) MarshalVT

func (m *Config) MarshalVT() (dAtA []byte, err error)

func (*Config) ProtoMessage

func (*Config) ProtoMessage()

func (*Config) ProtoReflect

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

func (*Config) Reset

func (x *Config) Reset()

func (*Config) SizeVT

func (m *Config) SizeVT() (n int)

func (*Config) String

func (x *Config) String() string

func (*Config) UnmarshalVT

func (m *Config) UnmarshalVT(dAtA []byte) error

type Config_Email

type Config_Email struct {
	To           string                 `protobuf:"bytes,1,opt,name=to,proto3" json:"to,omitempty"`
	From         string                 `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`
	Hello        string                 `protobuf:"bytes,3,opt,name=hello,proto3" json:"hello,omitempty"`
	HostPort     string                 `protobuf:"bytes,4,opt,name=host_port,json=hostPort,proto3" json:"host_port,omitempty"`
	AuthUsername string                 `protobuf:"bytes,5,opt,name=auth_username,json=authUsername,proto3" json:"auth_username,omitempty"`
	AuthPassword string                 `protobuf:"bytes,6,opt,name=auth_password,json=authPassword,proto3" json:"auth_password,omitempty"`
	AuthSecret   string                 `protobuf:"bytes,7,opt,name=auth_secret,json=authSecret,proto3" json:"auth_secret,omitempty"`
	AuthIdentity string                 `protobuf:"bytes,8,opt,name=auth_identity,json=authIdentity,proto3" json:"auth_identity,omitempty"`
	Headers      map[string]string      `` /* 155-byte string literal not displayed */
	Html         string                 `protobuf:"bytes,10,opt,name=html,proto3" json:"html,omitempty"`
	Text         string                 `protobuf:"bytes,11,opt,name=text,proto3" json:"text,omitempty"`
	RequireTls   bool                   `protobuf:"varint,12,opt,name=require_tls,json=requireTls,proto3" json:"require_tls,omitempty"`
	TlsConfig    *Config_HTTP_TLSConfig `protobuf:"bytes,13,opt,name=tls_config,json=tlsConfig,proto3" json:"tls_config,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_Email) Descriptor deprecated

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

Deprecated: Use Config_Email.ProtoReflect.Descriptor instead.

func (*Config_Email) GetAuthIdentity

func (x *Config_Email) GetAuthIdentity() string

func (*Config_Email) GetAuthPassword

func (x *Config_Email) GetAuthPassword() string

func (*Config_Email) GetAuthSecret

func (x *Config_Email) GetAuthSecret() string

func (*Config_Email) GetAuthUsername

func (x *Config_Email) GetAuthUsername() string

func (*Config_Email) GetFrom

func (x *Config_Email) GetFrom() string

func (*Config_Email) GetHeaders

func (x *Config_Email) GetHeaders() map[string]string

func (*Config_Email) GetHello

func (x *Config_Email) GetHello() string

func (*Config_Email) GetHostPort

func (x *Config_Email) GetHostPort() string

func (*Config_Email) GetHtml

func (x *Config_Email) GetHtml() string

func (*Config_Email) GetRequireTls

func (x *Config_Email) GetRequireTls() bool

func (*Config_Email) GetText

func (x *Config_Email) GetText() string

func (*Config_Email) GetTlsConfig

func (x *Config_Email) GetTlsConfig() *Config_HTTP_TLSConfig

func (*Config_Email) GetTo

func (x *Config_Email) GetTo() string

func (*Config_Email) MarshalToSizedBufferVT

func (m *Config_Email) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_Email) MarshalToVT

func (m *Config_Email) MarshalToVT(dAtA []byte) (int, error)

func (*Config_Email) MarshalVT

func (m *Config_Email) MarshalVT() (dAtA []byte, err error)

func (*Config_Email) ProtoMessage

func (*Config_Email) ProtoMessage()

func (*Config_Email) ProtoReflect

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

func (*Config_Email) Reset

func (x *Config_Email) Reset()

func (*Config_Email) SizeVT

func (m *Config_Email) SizeVT() (n int)

func (*Config_Email) String

func (x *Config_Email) String() string

func (*Config_Email) UnmarshalVT

func (m *Config_Email) UnmarshalVT(dAtA []byte) error

type Config_Env added in v0.0.39

type Config_Env int32
const (
	Config_unknown    Config_Env = 0
	Config_dev        Config_Env = 1
	Config_staging    Config_Env = 2
	Config_production Config_Env = 3
)

func (Config_Env) Descriptor added in v0.0.39

func (Config_Env) Descriptor() protoreflect.EnumDescriptor

func (Config_Env) Enum added in v0.0.39

func (x Config_Env) Enum() *Config_Env

func (Config_Env) EnumDescriptor deprecated added in v0.0.39

func (Config_Env) EnumDescriptor() ([]byte, []int)

Deprecated: Use Config_Env.Descriptor instead.

func (Config_Env) Number added in v0.0.39

func (x Config_Env) Number() protoreflect.EnumNumber

func (Config_Env) String added in v0.0.39

func (x Config_Env) String() string

func (Config_Env) Type added in v0.0.39

type Config_HTTP

type Config_HTTP struct {
	BasicAuth     *Config_HTTP_BasicAuth     `protobuf:"bytes,1,opt,name=basic_auth,json=basicAuth,proto3" json:"basic_auth,omitempty"`
	Authorization *Config_HTTP_Authorization `protobuf:"bytes,2,opt,name=authorization,proto3" json:"authorization,omitempty"`
	Pauth2        *Config_HTTP_OAuth2        `protobuf:"bytes,3,opt,name=pauth2,proto3" json:"pauth2,omitempty"`
	TlsConfig     *Config_HTTP_TLSConfig     `protobuf:"bytes,4,opt,name=tls_config,json=tlsConfig,proto3" json:"tls_config,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_HTTP) Descriptor deprecated

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

Deprecated: Use Config_HTTP.ProtoReflect.Descriptor instead.

func (*Config_HTTP) GetAuthorization

func (x *Config_HTTP) GetAuthorization() *Config_HTTP_Authorization

func (*Config_HTTP) GetBasicAuth

func (x *Config_HTTP) GetBasicAuth() *Config_HTTP_BasicAuth

func (*Config_HTTP) GetPauth2

func (x *Config_HTTP) GetPauth2() *Config_HTTP_OAuth2

func (*Config_HTTP) GetTlsConfig

func (x *Config_HTTP) GetTlsConfig() *Config_HTTP_TLSConfig

func (*Config_HTTP) MarshalToSizedBufferVT

func (m *Config_HTTP) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_HTTP) MarshalToVT

func (m *Config_HTTP) MarshalToVT(dAtA []byte) (int, error)

func (*Config_HTTP) MarshalVT

func (m *Config_HTTP) MarshalVT() (dAtA []byte, err error)

func (*Config_HTTP) ProtoMessage

func (*Config_HTTP) ProtoMessage()

func (*Config_HTTP) ProtoReflect

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

func (*Config_HTTP) Reset

func (x *Config_HTTP) Reset()

func (*Config_HTTP) SizeVT

func (m *Config_HTTP) SizeVT() (n int)

func (*Config_HTTP) String

func (x *Config_HTTP) String() string

func (*Config_HTTP) UnmarshalVT

func (m *Config_HTTP) UnmarshalVT(dAtA []byte) error

type Config_HTTP_Authorization

type Config_HTTP_Authorization struct {
	Type        string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Credentials string `protobuf:"bytes,2,opt,name=credentials,proto3" json:"credentials,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_HTTP_Authorization) Descriptor deprecated

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

Deprecated: Use Config_HTTP_Authorization.ProtoReflect.Descriptor instead.

func (*Config_HTTP_Authorization) GetCredentials

func (x *Config_HTTP_Authorization) GetCredentials() string

func (*Config_HTTP_Authorization) GetType

func (x *Config_HTTP_Authorization) GetType() string

func (*Config_HTTP_Authorization) MarshalToSizedBufferVT

func (m *Config_HTTP_Authorization) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_HTTP_Authorization) MarshalToVT

func (m *Config_HTTP_Authorization) MarshalToVT(dAtA []byte) (int, error)

func (*Config_HTTP_Authorization) MarshalVT

func (m *Config_HTTP_Authorization) MarshalVT() (dAtA []byte, err error)

func (*Config_HTTP_Authorization) ProtoMessage

func (*Config_HTTP_Authorization) ProtoMessage()

func (*Config_HTTP_Authorization) ProtoReflect

func (*Config_HTTP_Authorization) Reset

func (x *Config_HTTP_Authorization) Reset()

func (*Config_HTTP_Authorization) SizeVT

func (m *Config_HTTP_Authorization) SizeVT() (n int)

func (*Config_HTTP_Authorization) String

func (x *Config_HTTP_Authorization) String() string

func (*Config_HTTP_Authorization) UnmarshalVT

func (m *Config_HTTP_Authorization) UnmarshalVT(dAtA []byte) error

type Config_HTTP_BasicAuth

type Config_HTTP_BasicAuth struct {
	Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_HTTP_BasicAuth) Descriptor deprecated

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

Deprecated: Use Config_HTTP_BasicAuth.ProtoReflect.Descriptor instead.

func (*Config_HTTP_BasicAuth) GetPassword

func (x *Config_HTTP_BasicAuth) GetPassword() string

func (*Config_HTTP_BasicAuth) GetUsername

func (x *Config_HTTP_BasicAuth) GetUsername() string

func (*Config_HTTP_BasicAuth) MarshalToSizedBufferVT

func (m *Config_HTTP_BasicAuth) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_HTTP_BasicAuth) MarshalToVT

func (m *Config_HTTP_BasicAuth) MarshalToVT(dAtA []byte) (int, error)

func (*Config_HTTP_BasicAuth) MarshalVT

func (m *Config_HTTP_BasicAuth) MarshalVT() (dAtA []byte, err error)

func (*Config_HTTP_BasicAuth) ProtoMessage

func (*Config_HTTP_BasicAuth) ProtoMessage()

func (*Config_HTTP_BasicAuth) ProtoReflect

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

func (*Config_HTTP_BasicAuth) Reset

func (x *Config_HTTP_BasicAuth) Reset()

func (*Config_HTTP_BasicAuth) SizeVT

func (m *Config_HTTP_BasicAuth) SizeVT() (n int)

func (*Config_HTTP_BasicAuth) String

func (x *Config_HTTP_BasicAuth) String() string

func (*Config_HTTP_BasicAuth) UnmarshalVT

func (m *Config_HTTP_BasicAuth) UnmarshalVT(dAtA []byte) error

type Config_HTTP_OAuth2

type Config_HTTP_OAuth2 struct {
	ClientId       string                 `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecret   string                 `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	ClientScopes   []string               `protobuf:"bytes,3,rep,name=client_scopes,json=clientScopes,proto3" json:"client_scopes,omitempty"`
	TokenUrl       string                 `protobuf:"bytes,4,opt,name=token_url,json=tokenUrl,proto3" json:"token_url,omitempty"`
	EndpointParams map[string]string      `` /* 191-byte string literal not displayed */
	TlsConfig      *Config_HTTP_TLSConfig `protobuf:"bytes,6,opt,name=tls_config,json=tlsConfig,proto3" json:"tls_config,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_HTTP_OAuth2) Descriptor deprecated

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

Deprecated: Use Config_HTTP_OAuth2.ProtoReflect.Descriptor instead.

func (*Config_HTTP_OAuth2) GetClientId

func (x *Config_HTTP_OAuth2) GetClientId() string

func (*Config_HTTP_OAuth2) GetClientScopes

func (x *Config_HTTP_OAuth2) GetClientScopes() []string

func (*Config_HTTP_OAuth2) GetClientSecret

func (x *Config_HTTP_OAuth2) GetClientSecret() string

func (*Config_HTTP_OAuth2) GetEndpointParams

func (x *Config_HTTP_OAuth2) GetEndpointParams() map[string]string

func (*Config_HTTP_OAuth2) GetTlsConfig

func (x *Config_HTTP_OAuth2) GetTlsConfig() *Config_HTTP_TLSConfig

func (*Config_HTTP_OAuth2) GetTokenUrl

func (x *Config_HTTP_OAuth2) GetTokenUrl() string

func (*Config_HTTP_OAuth2) MarshalToSizedBufferVT

func (m *Config_HTTP_OAuth2) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_HTTP_OAuth2) MarshalToVT

func (m *Config_HTTP_OAuth2) MarshalToVT(dAtA []byte) (int, error)

func (*Config_HTTP_OAuth2) MarshalVT

func (m *Config_HTTP_OAuth2) MarshalVT() (dAtA []byte, err error)

func (*Config_HTTP_OAuth2) ProtoMessage

func (*Config_HTTP_OAuth2) ProtoMessage()

func (*Config_HTTP_OAuth2) ProtoReflect

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

func (*Config_HTTP_OAuth2) Reset

func (x *Config_HTTP_OAuth2) Reset()

func (*Config_HTTP_OAuth2) SizeVT

func (m *Config_HTTP_OAuth2) SizeVT() (n int)

func (*Config_HTTP_OAuth2) String

func (x *Config_HTTP_OAuth2) String() string

func (*Config_HTTP_OAuth2) UnmarshalVT

func (m *Config_HTTP_OAuth2) UnmarshalVT(dAtA []byte) error

type Config_HTTP_TLSConfig

type Config_HTTP_TLSConfig struct {
	KeyFile            string `protobuf:"bytes,1,opt,name=key_file,json=keyFile,proto3" json:"key_file,omitempty"`
	CertFile           string `protobuf:"bytes,2,opt,name=cert_file,json=certFile,proto3" json:"cert_file,omitempty"`
	InsecureSkipVerify bool   `protobuf:"varint,3,opt,name=insecure_skip_verify,json=insecureSkipVerify,proto3" json:"insecure_skip_verify,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_HTTP_TLSConfig) Descriptor deprecated

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

Deprecated: Use Config_HTTP_TLSConfig.ProtoReflect.Descriptor instead.

func (*Config_HTTP_TLSConfig) GetCertFile

func (x *Config_HTTP_TLSConfig) GetCertFile() string

func (*Config_HTTP_TLSConfig) GetInsecureSkipVerify

func (x *Config_HTTP_TLSConfig) GetInsecureSkipVerify() bool

func (*Config_HTTP_TLSConfig) GetKeyFile

func (x *Config_HTTP_TLSConfig) GetKeyFile() string

func (*Config_HTTP_TLSConfig) MarshalToSizedBufferVT

func (m *Config_HTTP_TLSConfig) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_HTTP_TLSConfig) MarshalToVT

func (m *Config_HTTP_TLSConfig) MarshalToVT(dAtA []byte) (int, error)

func (*Config_HTTP_TLSConfig) MarshalVT

func (m *Config_HTTP_TLSConfig) MarshalVT() (dAtA []byte, err error)

func (*Config_HTTP_TLSConfig) ProtoMessage

func (*Config_HTTP_TLSConfig) ProtoMessage()

func (*Config_HTTP_TLSConfig) ProtoReflect

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

func (*Config_HTTP_TLSConfig) Reset

func (x *Config_HTTP_TLSConfig) Reset()

func (*Config_HTTP_TLSConfig) SizeVT

func (m *Config_HTTP_TLSConfig) SizeVT() (n int)

func (*Config_HTTP_TLSConfig) String

func (x *Config_HTTP_TLSConfig) String() string

func (*Config_HTTP_TLSConfig) UnmarshalVT

func (m *Config_HTTP_TLSConfig) UnmarshalVT(dAtA []byte) error

type Config_Notifier

type Config_Notifier struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Types that are assignable to Provider:
	//
	//	*Config_Notifier_Email
	//	*Config_Notifier_Webhook
	Provider isConfig_Notifier_Provider `protobuf_oneof:"provider"`
	// contains filtered or unexported fields
}

func (*Config_Notifier) Descriptor deprecated

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

Deprecated: Use Config_Notifier.ProtoReflect.Descriptor instead.

func (*Config_Notifier) GetEmail

func (x *Config_Notifier) GetEmail() *Config_Email

func (*Config_Notifier) GetName

func (x *Config_Notifier) GetName() string

func (*Config_Notifier) GetProvider

func (m *Config_Notifier) GetProvider() isConfig_Notifier_Provider

func (*Config_Notifier) GetWebhook

func (x *Config_Notifier) GetWebhook() *Config_Webhook

func (*Config_Notifier) MarshalToSizedBufferVT

func (m *Config_Notifier) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_Notifier) MarshalToVT

func (m *Config_Notifier) MarshalToVT(dAtA []byte) (int, error)

func (*Config_Notifier) MarshalVT

func (m *Config_Notifier) MarshalVT() (dAtA []byte, err error)

func (*Config_Notifier) ProtoMessage

func (*Config_Notifier) ProtoMessage()

func (*Config_Notifier) ProtoReflect

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

func (*Config_Notifier) Reset

func (x *Config_Notifier) Reset()

func (*Config_Notifier) SizeVT

func (m *Config_Notifier) SizeVT() (n int)

func (*Config_Notifier) String

func (x *Config_Notifier) String() string

func (*Config_Notifier) UnmarshalVT

func (m *Config_Notifier) UnmarshalVT(dAtA []byte) error

type Config_Notifier_Email

type Config_Notifier_Email struct {
	Email *Config_Email `protobuf:"bytes,2,opt,name=email,proto3,oneof"`
}

func (*Config_Notifier_Email) MarshalToSizedBufferVT

func (m *Config_Notifier_Email) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_Notifier_Email) MarshalToVT

func (m *Config_Notifier_Email) MarshalToVT(dAtA []byte) (int, error)

func (*Config_Notifier_Email) SizeVT

func (m *Config_Notifier_Email) SizeVT() (n int)

type Config_Notifier_Webhook

type Config_Notifier_Webhook struct {
	Webhook *Config_Webhook `protobuf:"bytes,3,opt,name=webhook,proto3,oneof"`
}

func (*Config_Notifier_Webhook) MarshalToSizedBufferVT

func (m *Config_Notifier_Webhook) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_Notifier_Webhook) MarshalToVT

func (m *Config_Notifier_Webhook) MarshalToVT(dAtA []byte) (int, error)

func (*Config_Notifier_Webhook) SizeVT

func (m *Config_Notifier_Webhook) SizeVT() (n int)

type Config_SecretKey added in v0.0.37

type Config_SecretKey struct {

	// pem encoded PRIVATE KEY
	//
	// Types that are assignable to Value:
	//
	//	*Config_SecretKey_Env
	//	*Config_SecretKey_File
	//	*Config_SecretKey_Raw
	Value isConfig_SecretKey_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

ED25519 private key used for generating JWT tokens.

func (*Config_SecretKey) Descriptor deprecated added in v0.0.37

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

Deprecated: Use Config_SecretKey.ProtoReflect.Descriptor instead.

func (*Config_SecretKey) GetEnv added in v0.0.37

func (x *Config_SecretKey) GetEnv() string

func (*Config_SecretKey) GetFile added in v0.0.37

func (x *Config_SecretKey) GetFile() string

func (*Config_SecretKey) GetRaw added in v0.0.37

func (x *Config_SecretKey) GetRaw() string

func (*Config_SecretKey) GetValue added in v0.0.37

func (m *Config_SecretKey) GetValue() isConfig_SecretKey_Value

func (*Config_SecretKey) MarshalToSizedBufferVT added in v0.0.37

func (m *Config_SecretKey) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_SecretKey) MarshalToVT added in v0.0.37

func (m *Config_SecretKey) MarshalToVT(dAtA []byte) (int, error)

func (*Config_SecretKey) MarshalVT added in v0.0.37

func (m *Config_SecretKey) MarshalVT() (dAtA []byte, err error)

func (*Config_SecretKey) ProtoMessage added in v0.0.37

func (*Config_SecretKey) ProtoMessage()

func (*Config_SecretKey) ProtoReflect added in v0.0.37

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

func (*Config_SecretKey) Reset added in v0.0.37

func (x *Config_SecretKey) Reset()

func (*Config_SecretKey) SizeVT added in v0.0.37

func (m *Config_SecretKey) SizeVT() (n int)

func (*Config_SecretKey) String added in v0.0.37

func (x *Config_SecretKey) String() string

func (*Config_SecretKey) UnmarshalVT added in v0.0.37

func (m *Config_SecretKey) UnmarshalVT(dAtA []byte) error

type Config_SecretKey_Env added in v0.0.37

type Config_SecretKey_Env struct {
	// Environment variable that key will be read from. The value of the env
	// variable must be base64 encoded.
	Env string `protobuf:"bytes,1,opt,name=env,proto3,oneof"`
}

func (*Config_SecretKey_Env) MarshalToSizedBufferVT added in v0.0.37

func (m *Config_SecretKey_Env) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_SecretKey_Env) MarshalToVT added in v0.0.37

func (m *Config_SecretKey_Env) MarshalToVT(dAtA []byte) (int, error)

func (*Config_SecretKey_Env) SizeVT added in v0.0.37

func (m *Config_SecretKey_Env) SizeVT() (n int)

type Config_SecretKey_File added in v0.0.37

type Config_SecretKey_File struct {
	// Path to file on disk that contains the secret.
	File string `protobuf:"bytes,2,opt,name=file,proto3,oneof"`
}

func (*Config_SecretKey_File) MarshalToSizedBufferVT added in v0.0.37

func (m *Config_SecretKey_File) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_SecretKey_File) MarshalToVT added in v0.0.37

func (m *Config_SecretKey_File) MarshalToVT(dAtA []byte) (int, error)

func (*Config_SecretKey_File) SizeVT added in v0.0.37

func (m *Config_SecretKey_File) SizeVT() (n int)

type Config_SecretKey_Raw added in v0.0.37

type Config_SecretKey_Raw struct {
	// base64 encoded string of the key
	Raw string `protobuf:"bytes,3,opt,name=raw,proto3,oneof"`
}

func (*Config_SecretKey_Raw) MarshalToSizedBufferVT added in v0.0.37

func (m *Config_SecretKey_Raw) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_SecretKey_Raw) MarshalToVT added in v0.0.37

func (m *Config_SecretKey_Raw) MarshalToVT(dAtA []byte) (int, error)

func (*Config_SecretKey_Raw) SizeVT added in v0.0.37

func (m *Config_SecretKey_Raw) SizeVT() (n int)

type Config_Webhook

type Config_Webhook struct {
	HttpConfig *Config_HTTP `protobuf:"bytes,1,opt,name=http_config,json=httpConfig,proto3" json:"http_config,omitempty"`
	Url        string       `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*Config_Webhook) Descriptor deprecated

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

Deprecated: Use Config_Webhook.ProtoReflect.Descriptor instead.

func (*Config_Webhook) GetHttpConfig

func (x *Config_Webhook) GetHttpConfig() *Config_HTTP

func (*Config_Webhook) GetUrl

func (x *Config_Webhook) GetUrl() string

func (*Config_Webhook) MarshalToSizedBufferVT

func (m *Config_Webhook) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Config_Webhook) MarshalToVT

func (m *Config_Webhook) MarshalToVT(dAtA []byte) (int, error)

func (*Config_Webhook) MarshalVT

func (m *Config_Webhook) MarshalVT() (dAtA []byte, err error)

func (*Config_Webhook) ProtoMessage

func (*Config_Webhook) ProtoMessage()

func (*Config_Webhook) ProtoReflect

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

func (*Config_Webhook) Reset

func (x *Config_Webhook) Reset()

func (*Config_Webhook) SizeVT

func (m *Config_Webhook) SizeVT() (n int)

func (*Config_Webhook) String

func (x *Config_Webhook) String() string

func (*Config_Webhook) UnmarshalVT

func (m *Config_Webhook) UnmarshalVT(dAtA []byte) error

Jump to

Keyboard shortcuts

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