dbmanagement

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Apr 11, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_dbmanagement_create_store_proto protoreflect.FileDescriptor
View Source
var File_dbmanagement_delete_store_proto protoreflect.FileDescriptor
View Source
var File_dbmanagement_service_proto protoreflect.FileDescriptor
View Source
var File_dbmanagement_store_info_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type CreateStoreRequest

type CreateStoreRequest struct {

	// project_id is the project within which the store will be created. Project
	// ID is a globally unique ID tied to a project. We do not need User ID
	// because projects exist in only a single organization.
	ProjectId uint64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// name is a user-facing, memorable name for the store. While most APIs deal
	// strictly in store IDs, the name will be shown in the console and usable
	// within the API.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// description is a longer-form, user-facing explanation of what the store is
	// used for - it is used in the console and in generated documentation. We
	// should encourage users to provide a meaningful description.
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateStoreRequest) CloneMessageVT

func (m *CreateStoreRequest) CloneMessageVT() proto.Message

func (*CreateStoreRequest) CloneVT

func (m *CreateStoreRequest) CloneVT() *CreateStoreRequest

func (*CreateStoreRequest) Descriptor deprecated

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

Deprecated: Use CreateStoreRequest.ProtoReflect.Descriptor instead.

func (*CreateStoreRequest) EqualMessageVT

func (this *CreateStoreRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateStoreRequest) EqualVT

func (this *CreateStoreRequest) EqualVT(that *CreateStoreRequest) bool

func (*CreateStoreRequest) GetDescription

func (x *CreateStoreRequest) GetDescription() string

func (*CreateStoreRequest) GetName

func (x *CreateStoreRequest) GetName() string

func (*CreateStoreRequest) GetProjectId

func (x *CreateStoreRequest) GetProjectId() uint64

func (*CreateStoreRequest) MarshalToSizedBufferVT

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

func (*CreateStoreRequest) MarshalToVT

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

func (*CreateStoreRequest) MarshalVT

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

func (*CreateStoreRequest) ProtoMessage

func (*CreateStoreRequest) ProtoMessage()

func (*CreateStoreRequest) ProtoReflect

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

func (*CreateStoreRequest) Reset

func (x *CreateStoreRequest) Reset()

func (*CreateStoreRequest) SizeVT

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

func (*CreateStoreRequest) String

func (x *CreateStoreRequest) String() string

func (*CreateStoreRequest) UnmarshalVT

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

type CreateStoreResponse

type CreateStoreResponse struct {

	// store_id is a globally unique identifier for a store. Store IDs are
	// assigned by the system when a store is created.
	StoreId uint64 `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateStoreResponse) CloneMessageVT

func (m *CreateStoreResponse) CloneMessageVT() proto.Message

func (*CreateStoreResponse) CloneVT

func (*CreateStoreResponse) Descriptor deprecated

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

Deprecated: Use CreateStoreResponse.ProtoReflect.Descriptor instead.

func (*CreateStoreResponse) EqualMessageVT

func (this *CreateStoreResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateStoreResponse) EqualVT

func (this *CreateStoreResponse) EqualVT(that *CreateStoreResponse) bool

func (*CreateStoreResponse) GetStoreId

func (x *CreateStoreResponse) GetStoreId() uint64

func (*CreateStoreResponse) MarshalToSizedBufferVT

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

func (*CreateStoreResponse) MarshalToVT

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

func (*CreateStoreResponse) MarshalVT

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

func (*CreateStoreResponse) ProtoMessage

func (*CreateStoreResponse) ProtoMessage()

func (*CreateStoreResponse) ProtoReflect

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

func (*CreateStoreResponse) Reset

func (x *CreateStoreResponse) Reset()

func (*CreateStoreResponse) SizeVT

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

func (*CreateStoreResponse) String

func (x *CreateStoreResponse) String() string

func (*CreateStoreResponse) UnmarshalVT

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

type DeleteStoreRequest

type DeleteStoreRequest struct {

	// store_id is the globally unique ID of the store to delete.
	StoreId uint64 `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteStoreRequest) CloneMessageVT

func (m *DeleteStoreRequest) CloneMessageVT() proto.Message

func (*DeleteStoreRequest) CloneVT

func (m *DeleteStoreRequest) CloneVT() *DeleteStoreRequest

func (*DeleteStoreRequest) Descriptor deprecated

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

Deprecated: Use DeleteStoreRequest.ProtoReflect.Descriptor instead.

func (*DeleteStoreRequest) EqualMessageVT

func (this *DeleteStoreRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteStoreRequest) EqualVT

func (this *DeleteStoreRequest) EqualVT(that *DeleteStoreRequest) bool

func (*DeleteStoreRequest) GetStoreId

func (x *DeleteStoreRequest) GetStoreId() uint64

func (*DeleteStoreRequest) MarshalToSizedBufferVT

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

func (*DeleteStoreRequest) MarshalToVT

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

func (*DeleteStoreRequest) MarshalVT

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

func (*DeleteStoreRequest) ProtoMessage

func (*DeleteStoreRequest) ProtoMessage()

func (*DeleteStoreRequest) ProtoReflect

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

func (*DeleteStoreRequest) Reset

func (x *DeleteStoreRequest) Reset()

func (*DeleteStoreRequest) SizeVT

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

func (*DeleteStoreRequest) String

func (x *DeleteStoreRequest) String() string

func (*DeleteStoreRequest) UnmarshalVT

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

type DeleteStoreResponse

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

func (*DeleteStoreResponse) CloneMessageVT

func (m *DeleteStoreResponse) CloneMessageVT() proto.Message

func (*DeleteStoreResponse) CloneVT

func (*DeleteStoreResponse) Descriptor deprecated

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

Deprecated: Use DeleteStoreResponse.ProtoReflect.Descriptor instead.

func (*DeleteStoreResponse) EqualMessageVT

func (this *DeleteStoreResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteStoreResponse) EqualVT

func (this *DeleteStoreResponse) EqualVT(that *DeleteStoreResponse) bool

func (*DeleteStoreResponse) MarshalToSizedBufferVT

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

func (*DeleteStoreResponse) MarshalToVT

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

func (*DeleteStoreResponse) MarshalVT

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

func (*DeleteStoreResponse) ProtoMessage

func (*DeleteStoreResponse) ProtoMessage()

func (*DeleteStoreResponse) ProtoReflect

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

func (*DeleteStoreResponse) Reset

func (x *DeleteStoreResponse) Reset()

func (*DeleteStoreResponse) SizeVT

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

func (*DeleteStoreResponse) String

func (x *DeleteStoreResponse) String() string

func (*DeleteStoreResponse) UnmarshalVT

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

type StoreInfo

type StoreInfo struct {

	// store_id is a globally unique identifier for a store. Users will of course
	// be able to name their stores with friendly names, but for efficiency's sake
	// the API talks in terms of IDs, which the user can find in the console or
	// via a DescribeStore command. Store IDs are assigned by the system when a
	// store is created.
	StoreId uint64 `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	// name is a user-facing, memorable name for the store. While most APIs deal
	// strictly in store IDs, the name will be shown in the console and usable
	// within the API.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// description is a longer-form, user-facing explanation of what the store is
	// used for - it is used in the console and in generated documentation. We
	// should encourage users to provide a meaningful description.
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

StoreInfo is a shared representation of the properties of a store that is used by both DescribeStore and UpdateStore.

func (*StoreInfo) CloneMessageVT

func (m *StoreInfo) CloneMessageVT() proto.Message

func (*StoreInfo) CloneVT

func (m *StoreInfo) CloneVT() *StoreInfo

func (*StoreInfo) Descriptor deprecated

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

Deprecated: Use StoreInfo.ProtoReflect.Descriptor instead.

func (*StoreInfo) EqualMessageVT

func (this *StoreInfo) EqualMessageVT(thatMsg proto.Message) bool

func (*StoreInfo) EqualVT

func (this *StoreInfo) EqualVT(that *StoreInfo) bool

func (*StoreInfo) GetDescription

func (x *StoreInfo) GetDescription() string

func (*StoreInfo) GetName

func (x *StoreInfo) GetName() string

func (*StoreInfo) GetStoreId

func (x *StoreInfo) GetStoreId() uint64

func (*StoreInfo) MarshalToSizedBufferVT

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

func (*StoreInfo) MarshalToVT

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

func (*StoreInfo) MarshalVT

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

func (*StoreInfo) ProtoMessage

func (*StoreInfo) ProtoMessage()

func (*StoreInfo) ProtoReflect

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

func (*StoreInfo) Reset

func (x *StoreInfo) Reset()

func (*StoreInfo) SizeVT

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

func (*StoreInfo) String

func (x *StoreInfo) String() string

func (*StoreInfo) UnmarshalVT

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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