mysqlctlv18

package
v1.33.0-20231211191728... Latest Latest
Warning

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

Go to latest
Published: unknown License: Apache-2.0 Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	BackupInfo_Status_name = map[int32]string{
		0: "UNKNOWN",
		1: "INCOMPLETE",
		2: "COMPLETE",
		3: "INVALID",
		4: "VALID",
	}
	BackupInfo_Status_value = map[string]int32{
		"UNKNOWN":    0,
		"INCOMPLETE": 1,
		"COMPLETE":   2,
		"INVALID":    3,
		"VALID":      4,
	}
)

Enum value maps for BackupInfo_Status.

View Source
var File_vitess_mysqlctl_v18_mysqlctl_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ApplyBinlogFileRequest

type ApplyBinlogFileRequest struct {
	BinlogFileName        string    `protobuf:"bytes,1,opt,name=binlog_file_name,json=binlogFileName,proto3" json:"binlog_file_name,omitempty"`
	BinlogRestorePosition string    `` /* 126-byte string literal not displayed */
	BinlogRestoreDatetime *v18.Time `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ApplyBinlogFileRequest) Descriptor deprecated

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

Deprecated: Use ApplyBinlogFileRequest.ProtoReflect.Descriptor instead.

func (*ApplyBinlogFileRequest) GetBinlogFileName

func (x *ApplyBinlogFileRequest) GetBinlogFileName() string

func (*ApplyBinlogFileRequest) GetBinlogRestoreDatetime

func (x *ApplyBinlogFileRequest) GetBinlogRestoreDatetime() *v18.Time

func (*ApplyBinlogFileRequest) GetBinlogRestorePosition

func (x *ApplyBinlogFileRequest) GetBinlogRestorePosition() string

func (*ApplyBinlogFileRequest) ProtoMessage

func (*ApplyBinlogFileRequest) ProtoMessage()

func (*ApplyBinlogFileRequest) ProtoReflect

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

func (*ApplyBinlogFileRequest) Reset

func (x *ApplyBinlogFileRequest) Reset()

func (*ApplyBinlogFileRequest) String

func (x *ApplyBinlogFileRequest) String() string

type ApplyBinlogFileResponse

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

func (*ApplyBinlogFileResponse) Descriptor deprecated

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

Deprecated: Use ApplyBinlogFileResponse.ProtoReflect.Descriptor instead.

func (*ApplyBinlogFileResponse) ProtoMessage

func (*ApplyBinlogFileResponse) ProtoMessage()

func (*ApplyBinlogFileResponse) ProtoReflect

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

func (*ApplyBinlogFileResponse) Reset

func (x *ApplyBinlogFileResponse) Reset()

func (*ApplyBinlogFileResponse) String

func (x *ApplyBinlogFileResponse) String() string

type BackupInfo

type BackupInfo struct {
	Name        string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Directory   string            `protobuf:"bytes,2,opt,name=directory,proto3" json:"directory,omitempty"`
	Keyspace    string            `protobuf:"bytes,3,opt,name=keyspace,proto3" json:"keyspace,omitempty"`
	Shard       string            `protobuf:"bytes,4,opt,name=shard,proto3" json:"shard,omitempty"`
	TabletAlias *v181.TabletAlias `protobuf:"bytes,5,opt,name=tablet_alias,json=tabletAlias,proto3" json:"tablet_alias,omitempty"`
	Time        *v18.Time         `protobuf:"bytes,6,opt,name=time,proto3" json:"time,omitempty"`
	// Engine is the name of the backupengine implementation used to create
	// this backup.
	Engine string            `protobuf:"bytes,7,opt,name=engine,proto3" json:"engine,omitempty"`
	Status BackupInfo_Status `protobuf:"varint,8,opt,name=status,proto3,enum=vitess.mysqlctl.v18.BackupInfo_Status" json:"status,omitempty"`
	// contains filtered or unexported fields
}

BackupInfo is the read-only attributes of a mysqlctl/backupstorage.BackupHandle.

func (*BackupInfo) Descriptor deprecated

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

Deprecated: Use BackupInfo.ProtoReflect.Descriptor instead.

func (*BackupInfo) GetDirectory

func (x *BackupInfo) GetDirectory() string

func (*BackupInfo) GetEngine

func (x *BackupInfo) GetEngine() string

func (*BackupInfo) GetKeyspace

func (x *BackupInfo) GetKeyspace() string

func (*BackupInfo) GetName

func (x *BackupInfo) GetName() string

func (*BackupInfo) GetShard

func (x *BackupInfo) GetShard() string

func (*BackupInfo) GetStatus

func (x *BackupInfo) GetStatus() BackupInfo_Status

func (*BackupInfo) GetTabletAlias

func (x *BackupInfo) GetTabletAlias() *v181.TabletAlias

func (*BackupInfo) GetTime

func (x *BackupInfo) GetTime() *v18.Time

func (*BackupInfo) ProtoMessage

func (*BackupInfo) ProtoMessage()

func (*BackupInfo) ProtoReflect

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

func (*BackupInfo) Reset

func (x *BackupInfo) Reset()

func (*BackupInfo) String

func (x *BackupInfo) String() string

type BackupInfo_Status

type BackupInfo_Status int32

Status is an enum representing the possible status of a backup.

const (
	BackupInfo_UNKNOWN    BackupInfo_Status = 0
	BackupInfo_INCOMPLETE BackupInfo_Status = 1
	BackupInfo_COMPLETE   BackupInfo_Status = 2
	// A backup status of INVALID should be set if the backup is complete
	// but unusable in some way (partial upload, corrupt file, etc).
	BackupInfo_INVALID BackupInfo_Status = 3
	// A backup status of VALID should be set if the backup is both
	// complete and usuable.
	BackupInfo_VALID BackupInfo_Status = 4
)

func (BackupInfo_Status) Descriptor

func (BackupInfo_Status) Enum

func (BackupInfo_Status) EnumDescriptor deprecated

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

Deprecated: Use BackupInfo_Status.Descriptor instead.

func (BackupInfo_Status) Number

func (BackupInfo_Status) String

func (x BackupInfo_Status) String() string

func (BackupInfo_Status) Type

type ReadBinlogFilesTimestampsRequest

type ReadBinlogFilesTimestampsRequest struct {
	BinlogFileNames []string `protobuf:"bytes,1,rep,name=binlog_file_names,json=binlogFileNames,proto3" json:"binlog_file_names,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadBinlogFilesTimestampsRequest) Descriptor deprecated

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

Deprecated: Use ReadBinlogFilesTimestampsRequest.ProtoReflect.Descriptor instead.

func (*ReadBinlogFilesTimestampsRequest) GetBinlogFileNames

func (x *ReadBinlogFilesTimestampsRequest) GetBinlogFileNames() []string

func (*ReadBinlogFilesTimestampsRequest) ProtoMessage

func (*ReadBinlogFilesTimestampsRequest) ProtoMessage()

func (*ReadBinlogFilesTimestampsRequest) ProtoReflect

func (*ReadBinlogFilesTimestampsRequest) Reset

func (*ReadBinlogFilesTimestampsRequest) String

type ReadBinlogFilesTimestampsResponse

type ReadBinlogFilesTimestampsResponse struct {

	// FirstTimestamp is the timestamp of the first found transaction searching in order of given binlog files
	FirstTimestamp *v18.Time `protobuf:"bytes,1,opt,name=first_timestamp,json=firstTimestamp,proto3" json:"first_timestamp,omitempty"`
	// FirstTimestampBinlog is the name of the binary log in which the first timestamp is found
	FirstTimestampBinlog string `protobuf:"bytes,2,opt,name=first_timestamp_binlog,json=firstTimestampBinlog,proto3" json:"first_timestamp_binlog,omitempty"`
	// LastTimestamp is the timestamp of the last found transaction in given binlog files
	LastTimestamp *v18.Time `protobuf:"bytes,3,opt,name=last_timestamp,json=lastTimestamp,proto3" json:"last_timestamp,omitempty"`
	// LastTimestampBinlog is the name of the binary log in which the last timestamp is found
	LastTimestampBinlog string `protobuf:"bytes,4,opt,name=last_timestamp_binlog,json=lastTimestampBinlog,proto3" json:"last_timestamp_binlog,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadBinlogFilesTimestampsResponse) Descriptor deprecated

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

Deprecated: Use ReadBinlogFilesTimestampsResponse.ProtoReflect.Descriptor instead.

func (*ReadBinlogFilesTimestampsResponse) GetFirstTimestamp

func (x *ReadBinlogFilesTimestampsResponse) GetFirstTimestamp() *v18.Time

func (*ReadBinlogFilesTimestampsResponse) GetFirstTimestampBinlog

func (x *ReadBinlogFilesTimestampsResponse) GetFirstTimestampBinlog() string

func (*ReadBinlogFilesTimestampsResponse) GetLastTimestamp

func (x *ReadBinlogFilesTimestampsResponse) GetLastTimestamp() *v18.Time

func (*ReadBinlogFilesTimestampsResponse) GetLastTimestampBinlog

func (x *ReadBinlogFilesTimestampsResponse) GetLastTimestampBinlog() string

func (*ReadBinlogFilesTimestampsResponse) ProtoMessage

func (*ReadBinlogFilesTimestampsResponse) ProtoMessage()

func (*ReadBinlogFilesTimestampsResponse) ProtoReflect

func (*ReadBinlogFilesTimestampsResponse) Reset

func (*ReadBinlogFilesTimestampsResponse) String

type RefreshConfigRequest

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

func (*RefreshConfigRequest) Descriptor deprecated

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

Deprecated: Use RefreshConfigRequest.ProtoReflect.Descriptor instead.

func (*RefreshConfigRequest) ProtoMessage

func (*RefreshConfigRequest) ProtoMessage()

func (*RefreshConfigRequest) ProtoReflect

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

func (*RefreshConfigRequest) Reset

func (x *RefreshConfigRequest) Reset()

func (*RefreshConfigRequest) String

func (x *RefreshConfigRequest) String() string

type RefreshConfigResponse

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

func (*RefreshConfigResponse) Descriptor deprecated

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

Deprecated: Use RefreshConfigResponse.ProtoReflect.Descriptor instead.

func (*RefreshConfigResponse) ProtoMessage

func (*RefreshConfigResponse) ProtoMessage()

func (*RefreshConfigResponse) ProtoReflect

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

func (*RefreshConfigResponse) Reset

func (x *RefreshConfigResponse) Reset()

func (*RefreshConfigResponse) String

func (x *RefreshConfigResponse) String() string

type ReinitConfigRequest

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

func (*ReinitConfigRequest) Descriptor deprecated

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

Deprecated: Use ReinitConfigRequest.ProtoReflect.Descriptor instead.

func (*ReinitConfigRequest) ProtoMessage

func (*ReinitConfigRequest) ProtoMessage()

func (*ReinitConfigRequest) ProtoReflect

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

func (*ReinitConfigRequest) Reset

func (x *ReinitConfigRequest) Reset()

func (*ReinitConfigRequest) String

func (x *ReinitConfigRequest) String() string

type ReinitConfigResponse

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

func (*ReinitConfigResponse) Descriptor deprecated

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

Deprecated: Use ReinitConfigResponse.ProtoReflect.Descriptor instead.

func (*ReinitConfigResponse) ProtoMessage

func (*ReinitConfigResponse) ProtoMessage()

func (*ReinitConfigResponse) ProtoReflect

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

func (*ReinitConfigResponse) Reset

func (x *ReinitConfigResponse) Reset()

func (*ReinitConfigResponse) String

func (x *ReinitConfigResponse) String() string

type RunMysqlUpgradeRequest

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

func (*RunMysqlUpgradeRequest) Descriptor deprecated

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

Deprecated: Use RunMysqlUpgradeRequest.ProtoReflect.Descriptor instead.

func (*RunMysqlUpgradeRequest) ProtoMessage

func (*RunMysqlUpgradeRequest) ProtoMessage()

func (*RunMysqlUpgradeRequest) ProtoReflect

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

func (*RunMysqlUpgradeRequest) Reset

func (x *RunMysqlUpgradeRequest) Reset()

func (*RunMysqlUpgradeRequest) String

func (x *RunMysqlUpgradeRequest) String() string

type RunMysqlUpgradeResponse

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

func (*RunMysqlUpgradeResponse) Descriptor deprecated

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

Deprecated: Use RunMysqlUpgradeResponse.ProtoReflect.Descriptor instead.

func (*RunMysqlUpgradeResponse) ProtoMessage

func (*RunMysqlUpgradeResponse) ProtoMessage()

func (*RunMysqlUpgradeResponse) ProtoReflect

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

func (*RunMysqlUpgradeResponse) Reset

func (x *RunMysqlUpgradeResponse) Reset()

func (*RunMysqlUpgradeResponse) String

func (x *RunMysqlUpgradeResponse) String() string

type ShutdownRequest

type ShutdownRequest struct {
	WaitForMysqld bool `protobuf:"varint,1,opt,name=wait_for_mysqld,json=waitForMysqld,proto3" json:"wait_for_mysqld,omitempty"`
	// contains filtered or unexported fields
}

func (*ShutdownRequest) Descriptor deprecated

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

Deprecated: Use ShutdownRequest.ProtoReflect.Descriptor instead.

func (*ShutdownRequest) GetWaitForMysqld

func (x *ShutdownRequest) GetWaitForMysqld() bool

func (*ShutdownRequest) ProtoMessage

func (*ShutdownRequest) ProtoMessage()

func (*ShutdownRequest) ProtoReflect

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

func (*ShutdownRequest) Reset

func (x *ShutdownRequest) Reset()

func (*ShutdownRequest) String

func (x *ShutdownRequest) String() string

type ShutdownResponse

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

func (*ShutdownResponse) Descriptor deprecated

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

Deprecated: Use ShutdownResponse.ProtoReflect.Descriptor instead.

func (*ShutdownResponse) ProtoMessage

func (*ShutdownResponse) ProtoMessage()

func (*ShutdownResponse) ProtoReflect

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

func (*ShutdownResponse) Reset

func (x *ShutdownResponse) Reset()

func (*ShutdownResponse) String

func (x *ShutdownResponse) String() string

type StartRequest

type StartRequest struct {
	MysqldArgs []string `protobuf:"bytes,1,rep,name=mysqld_args,json=mysqldArgs,proto3" json:"mysqld_args,omitempty"`
	// contains filtered or unexported fields
}

func (*StartRequest) Descriptor deprecated

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

Deprecated: Use StartRequest.ProtoReflect.Descriptor instead.

func (*StartRequest) GetMysqldArgs

func (x *StartRequest) GetMysqldArgs() []string

func (*StartRequest) ProtoMessage

func (*StartRequest) ProtoMessage()

func (*StartRequest) ProtoReflect

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

func (*StartRequest) Reset

func (x *StartRequest) Reset()

func (*StartRequest) String

func (x *StartRequest) String() string

type StartResponse

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

func (*StartResponse) Descriptor deprecated

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

Deprecated: Use StartResponse.ProtoReflect.Descriptor instead.

func (*StartResponse) ProtoMessage

func (*StartResponse) ProtoMessage()

func (*StartResponse) ProtoReflect

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

func (*StartResponse) Reset

func (x *StartResponse) Reset()

func (*StartResponse) String

func (x *StartResponse) String() string

type VersionStringRequest

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

func (*VersionStringRequest) Descriptor deprecated

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

Deprecated: Use VersionStringRequest.ProtoReflect.Descriptor instead.

func (*VersionStringRequest) ProtoMessage

func (*VersionStringRequest) ProtoMessage()

func (*VersionStringRequest) ProtoReflect

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

func (*VersionStringRequest) Reset

func (x *VersionStringRequest) Reset()

func (*VersionStringRequest) String

func (x *VersionStringRequest) String() string

type VersionStringResponse

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

func (*VersionStringResponse) Descriptor deprecated

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

Deprecated: Use VersionStringResponse.ProtoReflect.Descriptor instead.

func (*VersionStringResponse) GetVersion

func (x *VersionStringResponse) GetVersion() string

func (*VersionStringResponse) ProtoMessage

func (*VersionStringResponse) ProtoMessage()

func (*VersionStringResponse) ProtoReflect

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

func (*VersionStringResponse) Reset

func (x *VersionStringResponse) Reset()

func (*VersionStringResponse) String

func (x *VersionStringResponse) String() string

Jump to

Keyboard shortcuts

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