v1

package
v0.50.4 Latest Latest
Warning

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

Go to latest
Published: Oct 13, 2020 License: Apache-2.0 Imports: 22 Imported by: 11

Documentation

Overview

Package v1 is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package data/v1 contains the API of DataManager services.

Index

Constants

View Source
const (

	// CreateTestDatabaseUsernameField name of the field containing the username.
	CreateTestDatabaseUsernameField = "username"
	// CreateTestDatabaseDatabaseNameField name of the field containing the name of the database.
	CreateTestDatabaseDatabaseNameField = "database"
)
View Source
const (

	// CPUSizeStandard is the CPU size that is used by default.
	CPUSizeStandard = "standard"
	// CPUSizeHigh is the CPU size that yields (on average) twice the CPU (per memory)
	// compared to standard.
	CPUSizeHigh = "high"
)
View Source
const (

	// EventTypeDeploymentCreated is the type of event fired after a deployment has been created
	// SubjectID contains the ID of the deployment.
	EventTypeDeploymentCreated = "data.deployment.created"
	// EventTypeDeploymentUpdated is the type of event fired after a deployment has been updated
	// SubjectID contains the ID of the deployment.
	// Note that this type of event is also fired when the status of the deployment has changed.
	EventTypeDeploymentUpdated = "data.deployment.updated"
	// EventTypeDeploymentDeleted is the type of event fired after a deployment has been (marked for) deleted
	// SubjectID contains the ID of the deployment.
	EventTypeDeploymentDeleted = "data.deployment.deleted"
)
View Source
const (

	// ModelOneShard is the model that yields a deployment with:
	// - a fixed number of nodes (3).
	// - a variable node size.
	// - a limitation of 1 shard per collection.
	// - a fixed replication factor of 3 (per collection)
	// - optimized for graph use cases
	ModelOneShard = "oneshard"

	// ModelSharded is the model that yields a deployment with:
	// - a variable number of nodes (>= 3).
	// - a variable node size.
	// - a minimum replication factor of 2 (per shard)
	// - a default replication factor of 3 (per shard)
	// - no limitation of shards per collection
	ModelSharded = "sharded"

	// ModelFlexible is the model that yields a deployment with:
	// - completely flexible in number of coordinators (>= 2), dbservers (>= 3)
	// - completely flexible in resources used by coordinators, dbservers
	// - no limitation of shards per collection
	// - a minimum replication factor of 1 (per collection)
	ModelFlexible = "flexible"
)
View Source
const (

	// PermissionDeploymentList is needed for listing deployments in a project
	PermissionDeploymentList = "data.deployment.list"
	// PermissionDeploymentGet is needed for fetching an individual deployments in a project
	PermissionDeploymentGet = "data.deployment.get"
	// PermissionDeploymentCreate is needed for create a deployment
	PermissionDeploymentCreate = "data.deployment.create"
	// PermissionDeploymentUpdate is needed for updating a deployment
	PermissionDeploymentUpdate = "data.deployment.update"
	// PermissionDeploymentDelete is needed for deleting a deployment
	PermissionDeploymentDelete = "data.deployment.delete"
	// PermissionDeploymentRestoreBackup is needed for restoring a backup of a deployment
	PermissionDeploymentRestoreBackup = "data.deployment.restore-backup"
	// PermissionDeploymentResume is needed for resuming a paused deployment
	PermissionDeploymentResume = "data.deployment.resume"
	// PermissionDeploymentCreateTestDatabase is needed for creating a test database
	PermissionDeploymentCreateTestDatabase = "data.deployment.create-test-database"
)
View Source
const (

	// QuotaKindDeploymentsPerProject limits the number of deployments in a single project.
	// This kinds of quota must be requested on project level.
	QuotaKindDeploymentsPerProject = "data.deployments-per-project"
	// QuotaKindDeploymentCoordinatorMemory limits the amount of memory (in GB) used
	// by a single coordinator in a deployment.
	// This kinds of quota must be requested on project level.
	QuotaKindDeploymentCoordinatorMemory = "data.deployment-coordinator-memory"
	// QuotaKindDeploymentCoordinators limits the number of coordinators per deployment.
	// This kinds of quota must be requested on project level.
	QuotaKindDeploymentCoordinators = "data.deployment-coordinators"
	// QuotaKindDeploymentDBServerMemory limits the amount of memory (in GB) used
	// by a single dbserver in a deployment.
	// This kinds of quota must be requested on project level.
	QuotaKindDeploymentDBServerMemory = "data.deployment-dbserver-memory"
	// QuotaKindDeploymentDBServerDisk limits the amount of disk (in GB) used
	// by a single dbserver in a deployment.
	// This kinds of quota must be requested on project level.
	QuotaKindDeploymentDBServerDisk = "data.deployment-dbserver-disk"
	// QuotaKindDeploymentDBServers limits the number of dbservers per deployment.
	// This kinds of quota must be requested on project level.
	QuotaKindDeploymentDBServers = "data.deployment-dbservers"
	// QuotaKindTotalDeploymentsMemoryPerProject limits the total amount of memory used
	// by all deployments in a project in GB.
	// This kinds of quota must be requested on project level.
	QuotaKindTotalDeploymentsMemoryPerProject = "data.total-deployments-memory-per-project"
	// QuotaKindTotalDeploymentsDiskPerProject limits the total amount of disk used
	// by all deployments in a project in GB.
	// This kinds of quota must be requested on project level.
	QuotaKindTotalDeploymentsDiskPerProject = "data.total-deployments-disk-per-project"
)
View Source
const (
	// APIID contains identifier of this API
	APIID = "data/v1"
	// APIMajorVersion contains major version of this API
	APIMajorVersion = 1
	// APIMinorVersion contains minor version of this API
	APIMinorVersion = 7
	// APIPatchVersion contains patch version of this API
	APIPatchVersion = 0
)
View Source
const (

	// EventTypeDeploymentCreatedTestDatabase is the type of event fired after a test database has been created
	// SubjectID contains the ID of the deployment.
	// Contains the following custom fields:
	// username - the username of the created user
	// database - the name of the created database
	EventTypeDeploymentCreatedTestDatabase = "data.deployment.created-test-database"
)
View Source
const (

	// EventTypeDeploymentCredentialsRead is the type of event fired after the credentials
	// of a deployment have been read.
	// SubjectID contains the ID of the deployment.
	EventTypeDeploymentCredentialsRead = "data.deploymentcredentials.read"
)
View Source
const (
	// KindDeployment is a constants for the kind of Deployment resources.
	KindDeployment = "Deployment"
)
View Source
const (

	// PermissionCPUSizeList is needed for listing CPU sizes in a project.
	PermissionCPUSizeList = "data.cpusize.list"
)
View Source
const (

	// PermissionDeploymentCredentialsGet is needed for fetching credentials of an individual deployments in a project
	PermissionDeploymentCredentialsGet = "data.deploymentcredentials.get"
)
View Source
const (

	// PermissionDeploymentFeaturesGet is needed for fetching features that are available to deployments in a project
	PermissionDeploymentFeaturesGet = "data.deploymentfeatures.get"
)
View Source
const (

	// PermissionDeploymentModelList is needed for listing deployment models in a project.
	PermissionDeploymentModelList = "data.deploymentmodel.list"
)
View Source
const (

	// PermissionDeploymentPriceCalculate is needed for calculating deployment prices
	PermissionDeploymentPriceCalculate = "data.deploymentprice.calculate"
)
View Source
const (

	// PermissionLimitsGet is needed for fetching server spec limits in a project
	PermissionLimitsGet = "data.limits.get"
)
View Source
const (

	// PermissionNodeSizeList is needed for listing server spec presets in a project
	PermissionNodeSizeList = "data.nodesize.list"
)
View Source
const (

	// PermissionPresetsList is needed for listing server spec presets in a project
	PermissionPresetsList = "data.presets.list"
)

Variables

View Source
var (
	ErrInvalidLengthData = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowData   = fmt.Errorf("proto: integer overflow")
)

Functions

func DataVolumeInfoEqual

func DataVolumeInfoEqual(a, b *DataVolumeInfo, ignoreTimestamps bool) bool

DataVolumeInfoEqual returns true when the fields of a & b are equal.

func DeploymentServerStatusEqual

func DeploymentServerStatusEqual(a, b *Deployment_ServerStatus, ignoreTimestamps bool) bool

DeploymentServerStatusEqual returns true when the fields of a & b are equal.

func DeploymentServerStatusListEqual

func DeploymentServerStatusListEqual(a, b []*Deployment_ServerStatus, ignoreTimestamps bool) bool

DeploymentServerStatusListEqual returns true when the elements of a & b are equal.

func DeploymentStatusEqual

func DeploymentStatusEqual(a, b *Deployment_Status, ignoreTimestamps bool) bool

DeploymentStatusEqual returns true when the fields of a & b are equal.

func DeploymentURL

func DeploymentURL(organizationID, projectID, deploymentID string) string

DeploymentURL creates a resource URL for the Deployment with given ID in given context.

func ForEachDeployment

func ForEachDeployment(ctx context.Context, listFunc func(ctx context.Context, req *common.ListOptions) (*DeploymentList, error),
	opts *common.ListOptions, cb DeploymentCallback) error

ForEachDeployment iterates over all deployments in a project identified by given context ID, invoking the given callback for each deployment.

func ForEachVersion

func ForEachVersion(ctx context.Context, listFunc func(ctx context.Context, req *ListVersionsRequest) (*VersionList, error),
	req ListVersionsRequest, cb VersionCallback) error

ForEachVersion iterates over all (ArangoDB) versions that match the given filter invoking the given callback for each version.

func RegisterDataServiceHandler

func RegisterDataServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterDataServiceHandler registers the http handlers for service DataService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterDataServiceHandlerClient

func RegisterDataServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client DataServiceClient) error

RegisterDataServiceHandlerClient registers the http handlers for service DataService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "DataServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "DataServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "DataServiceClient" to call the correct interceptors.

func RegisterDataServiceHandlerFromEndpoint

func RegisterDataServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterDataServiceHandlerFromEndpoint is same as RegisterDataServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterDataServiceHandlerServer

func RegisterDataServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server DataServiceServer) error

RegisterDataServiceHandlerServer registers the http handlers for service DataService to "mux". UnaryRPC :call DataServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterDataServiceServer

func RegisterDataServiceServer(s *grpc.Server, srv DataServiceServer)

Types

type CPUSize

type CPUSize struct {
	// System identifier of the size (e.g. standard)
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Human readable name of the size (e.g. Standard)
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CPUSize specifies the a specific level of CPU for a node.

func (*CPUSize) Descriptor

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

func (*CPUSize) GetId

func (m *CPUSize) GetId() string

func (*CPUSize) GetName

func (m *CPUSize) GetName() string

func (*CPUSize) Marshal

func (m *CPUSize) Marshal() (dAtA []byte, err error)

func (*CPUSize) MarshalTo

func (m *CPUSize) MarshalTo(dAtA []byte) (int, error)

func (*CPUSize) MarshalToSizedBuffer

func (m *CPUSize) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CPUSize) ProtoMessage

func (*CPUSize) ProtoMessage()

func (*CPUSize) Reset

func (m *CPUSize) Reset()

func (*CPUSize) Size

func (m *CPUSize) Size() (n int)

func (*CPUSize) String

func (m *CPUSize) String() string

func (*CPUSize) Unmarshal

func (m *CPUSize) Unmarshal(dAtA []byte) error

func (*CPUSize) XXX_DiscardUnknown

func (m *CPUSize) XXX_DiscardUnknown()

func (*CPUSize) XXX_Marshal

func (m *CPUSize) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CPUSize) XXX_Merge

func (m *CPUSize) XXX_Merge(src proto.Message)

func (*CPUSize) XXX_Size

func (m *CPUSize) XXX_Size() int

func (*CPUSize) XXX_Unmarshal

func (m *CPUSize) XXX_Unmarshal(b []byte) error

type CPUSizeList

type CPUSizeList struct {
	Items                []*CPUSize `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

List of CPU sizes.

func (*CPUSizeList) Descriptor

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

func (*CPUSizeList) GetItems

func (m *CPUSizeList) GetItems() []*CPUSize

func (*CPUSizeList) Marshal

func (m *CPUSizeList) Marshal() (dAtA []byte, err error)

func (*CPUSizeList) MarshalTo

func (m *CPUSizeList) MarshalTo(dAtA []byte) (int, error)

func (*CPUSizeList) MarshalToSizedBuffer

func (m *CPUSizeList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CPUSizeList) ProtoMessage

func (*CPUSizeList) ProtoMessage()

func (*CPUSizeList) Reset

func (m *CPUSizeList) Reset()

func (*CPUSizeList) Size

func (m *CPUSizeList) Size() (n int)

func (*CPUSizeList) String

func (m *CPUSizeList) String() string

func (*CPUSizeList) Unmarshal

func (m *CPUSizeList) Unmarshal(dAtA []byte) error

func (*CPUSizeList) XXX_DiscardUnknown

func (m *CPUSizeList) XXX_DiscardUnknown()

func (*CPUSizeList) XXX_Marshal

func (m *CPUSizeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CPUSizeList) XXX_Merge

func (m *CPUSizeList) XXX_Merge(src proto.Message)

func (*CPUSizeList) XXX_Size

func (m *CPUSizeList) XXX_Size() int

func (*CPUSizeList) XXX_Unmarshal

func (m *CPUSizeList) XXX_Unmarshal(b []byte) error

type CalculateDeploymentSizeRequest

type CalculateDeploymentSizeRequest struct {
	// Number of coordinators of the deployment
	// This field is ignored unless model is "flexible".
	Coordinators int32 `protobuf:"varint,1,opt,name=coordinators,proto3" json:"coordinators,omitempty"`
	// Amount of memory (in GB) to allocate for each coordinator.
	// This field is ignored unless model is "flexible".
	CoordinatorMemorySize int32 `` /* 127-byte string literal not displayed */
	// Number of dbservers of the deployment
	// This field is ignored unless model is "flexible".
	Dbservers int32 `protobuf:"varint,11,opt,name=dbservers,proto3" json:"dbservers,omitempty"`
	// Amount of memory (in GB) to allocate for each dbserver.
	// This field is ignored unless model is "flexible".
	DbserverMemorySize int32 `protobuf:"varint,12,opt,name=dbserver_memory_size,json=dbserverMemorySize,proto3" json:"dbserver_memory_size,omitempty"`
	// Amount of disk space (in GB) to allocate for each dbserver.
	// This field is ignored unless model is "flexible".
	DbserverDiskSize int32 `protobuf:"varint,13,opt,name=dbserver_disk_size,json=dbserverDiskSize,proto3" json:"dbserver_disk_size,omitempty"`
	// Type of model being used
	Model string `protobuf:"bytes,21,opt,name=model,proto3" json:"model,omitempty"`
	// Size of nodes being used
	NodeSizeId string `protobuf:"bytes,22,opt,name=node_size_id,json=nodeSizeId,proto3" json:"node_size_id,omitempty"`
	// Number of nodes being used
	NodeCount int32 `protobuf:"varint,23,opt,name=node_count,json=nodeCount,proto3" json:"node_count,omitempty"`
	// Amount of disk space per node (in GB)
	NodeDiskSize int32 `protobuf:"varint,34,opt,name=node_disk_size,json=nodeDiskSize,proto3" json:"node_disk_size,omitempty"`
	// ID of region in which the deployment will be created.
	RegionId             string   `protobuf:"bytes,50,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for CalculateDeploymentSize

func (*CalculateDeploymentSizeRequest) Descriptor

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

func (*CalculateDeploymentSizeRequest) GetCoordinatorMemorySize

func (m *CalculateDeploymentSizeRequest) GetCoordinatorMemorySize() int32

func (*CalculateDeploymentSizeRequest) GetCoordinators

func (m *CalculateDeploymentSizeRequest) GetCoordinators() int32

func (*CalculateDeploymentSizeRequest) GetDbserverDiskSize

func (m *CalculateDeploymentSizeRequest) GetDbserverDiskSize() int32

func (*CalculateDeploymentSizeRequest) GetDbserverMemorySize

func (m *CalculateDeploymentSizeRequest) GetDbserverMemorySize() int32

func (*CalculateDeploymentSizeRequest) GetDbservers

func (m *CalculateDeploymentSizeRequest) GetDbservers() int32

func (*CalculateDeploymentSizeRequest) GetModel

func (m *CalculateDeploymentSizeRequest) GetModel() string

func (*CalculateDeploymentSizeRequest) GetNodeCount

func (m *CalculateDeploymentSizeRequest) GetNodeCount() int32

func (*CalculateDeploymentSizeRequest) GetNodeDiskSize

func (m *CalculateDeploymentSizeRequest) GetNodeDiskSize() int32

func (*CalculateDeploymentSizeRequest) GetNodeSizeId

func (m *CalculateDeploymentSizeRequest) GetNodeSizeId() string

func (*CalculateDeploymentSizeRequest) GetRegionId

func (m *CalculateDeploymentSizeRequest) GetRegionId() string

func (*CalculateDeploymentSizeRequest) Marshal

func (m *CalculateDeploymentSizeRequest) Marshal() (dAtA []byte, err error)

func (*CalculateDeploymentSizeRequest) MarshalTo

func (m *CalculateDeploymentSizeRequest) MarshalTo(dAtA []byte) (int, error)

func (*CalculateDeploymentSizeRequest) MarshalToSizedBuffer

func (m *CalculateDeploymentSizeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CalculateDeploymentSizeRequest) ProtoMessage

func (*CalculateDeploymentSizeRequest) ProtoMessage()

func (*CalculateDeploymentSizeRequest) Reset

func (m *CalculateDeploymentSizeRequest) Reset()

func (*CalculateDeploymentSizeRequest) Size

func (m *CalculateDeploymentSizeRequest) Size() (n int)

func (*CalculateDeploymentSizeRequest) String

func (*CalculateDeploymentSizeRequest) Unmarshal

func (m *CalculateDeploymentSizeRequest) Unmarshal(dAtA []byte) error

func (*CalculateDeploymentSizeRequest) XXX_DiscardUnknown

func (m *CalculateDeploymentSizeRequest) XXX_DiscardUnknown()

func (*CalculateDeploymentSizeRequest) XXX_Marshal

func (m *CalculateDeploymentSizeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CalculateDeploymentSizeRequest) XXX_Merge

func (m *CalculateDeploymentSizeRequest) XXX_Merge(src proto.Message)

func (*CalculateDeploymentSizeRequest) XXX_Size

func (m *CalculateDeploymentSizeRequest) XXX_Size() int

func (*CalculateDeploymentSizeRequest) XXX_Unmarshal

func (m *CalculateDeploymentSizeRequest) XXX_Unmarshal(b []byte) error

type ConnectDriverInstructions

type ConnectDriverInstructions struct {
	// Per driver instructions for connecting to a deployment
	Drivers              []*ConnectDriverInstructions_DriverInstructions `protobuf:"bytes,1,rep,name=drivers,proto3" json:"drivers,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                        `json:"-"`
	XXX_unrecognized     []byte                                          `json:"-"`
	XXX_sizecache        int32                                           `json:"-"`
}

Instructions for connecting a driver to a deployment

func (*ConnectDriverInstructions) Descriptor

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

func (*ConnectDriverInstructions) GetDrivers

func (*ConnectDriverInstructions) Marshal

func (m *ConnectDriverInstructions) Marshal() (dAtA []byte, err error)

func (*ConnectDriverInstructions) MarshalTo

func (m *ConnectDriverInstructions) MarshalTo(dAtA []byte) (int, error)

func (*ConnectDriverInstructions) MarshalToSizedBuffer

func (m *ConnectDriverInstructions) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConnectDriverInstructions) ProtoMessage

func (*ConnectDriverInstructions) ProtoMessage()

func (*ConnectDriverInstructions) Reset

func (m *ConnectDriverInstructions) Reset()

func (*ConnectDriverInstructions) Size

func (m *ConnectDriverInstructions) Size() (n int)

func (*ConnectDriverInstructions) String

func (m *ConnectDriverInstructions) String() string

func (*ConnectDriverInstructions) Unmarshal

func (m *ConnectDriverInstructions) Unmarshal(dAtA []byte) error

func (*ConnectDriverInstructions) XXX_DiscardUnknown

func (m *ConnectDriverInstructions) XXX_DiscardUnknown()

func (*ConnectDriverInstructions) XXX_Marshal

func (m *ConnectDriverInstructions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConnectDriverInstructions) XXX_Merge

func (m *ConnectDriverInstructions) XXX_Merge(src proto.Message)

func (*ConnectDriverInstructions) XXX_Size

func (m *ConnectDriverInstructions) XXX_Size() int

func (*ConnectDriverInstructions) XXX_Unmarshal

func (m *ConnectDriverInstructions) XXX_Unmarshal(b []byte) error

type ConnectDriverInstructions_DriverInstructions

type ConnectDriverInstructions_DriverInstructions struct {
	// Human readable name of the driver.
	// E.g. "ArangoDB Go driver"
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Lines of code
	Code []string `protobuf:"bytes,2,rep,name=code,proto3" json:"code,omitempty"`
	// Human readable remarks
	Remarks []string `protobuf:"bytes,3,rep,name=remarks,proto3" json:"remarks,omitempty"`
	// URL for getting more information on the driver.
	DriverUrl            string   `protobuf:"bytes,4,opt,name=driver_url,json=driverUrl,proto3" json:"driver_url,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Instructions for a specific driver

func (*ConnectDriverInstructions_DriverInstructions) Descriptor

func (*ConnectDriverInstructions_DriverInstructions) GetCode

func (*ConnectDriverInstructions_DriverInstructions) GetDriverUrl

func (*ConnectDriverInstructions_DriverInstructions) GetName

func (*ConnectDriverInstructions_DriverInstructions) GetRemarks

func (*ConnectDriverInstructions_DriverInstructions) Marshal

func (m *ConnectDriverInstructions_DriverInstructions) Marshal() (dAtA []byte, err error)

func (*ConnectDriverInstructions_DriverInstructions) MarshalTo

func (*ConnectDriverInstructions_DriverInstructions) MarshalToSizedBuffer

func (m *ConnectDriverInstructions_DriverInstructions) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConnectDriverInstructions_DriverInstructions) ProtoMessage

func (*ConnectDriverInstructions_DriverInstructions) Reset

func (*ConnectDriverInstructions_DriverInstructions) Size

func (*ConnectDriverInstructions_DriverInstructions) String

func (*ConnectDriverInstructions_DriverInstructions) Unmarshal

func (*ConnectDriverInstructions_DriverInstructions) XXX_DiscardUnknown

func (m *ConnectDriverInstructions_DriverInstructions) XXX_DiscardUnknown()

func (*ConnectDriverInstructions_DriverInstructions) XXX_Marshal

func (m *ConnectDriverInstructions_DriverInstructions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConnectDriverInstructions_DriverInstructions) XXX_Merge

func (*ConnectDriverInstructions_DriverInstructions) XXX_Size

func (*ConnectDriverInstructions_DriverInstructions) XXX_Unmarshal

type CreateTestDatabaseRequest added in v0.43.7

type CreateTestDatabaseRequest struct {
	// The id of the deployment
	DeploymentId         string   `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for CreateTestDatabase

func (*CreateTestDatabaseRequest) Descriptor added in v0.43.7

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

func (*CreateTestDatabaseRequest) GetDeploymentId added in v0.43.7

func (m *CreateTestDatabaseRequest) GetDeploymentId() string

func (*CreateTestDatabaseRequest) Marshal added in v0.43.7

func (m *CreateTestDatabaseRequest) Marshal() (dAtA []byte, err error)

func (*CreateTestDatabaseRequest) MarshalTo added in v0.43.7

func (m *CreateTestDatabaseRequest) MarshalTo(dAtA []byte) (int, error)

func (*CreateTestDatabaseRequest) MarshalToSizedBuffer added in v0.43.7

func (m *CreateTestDatabaseRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateTestDatabaseRequest) ProtoMessage added in v0.43.7

func (*CreateTestDatabaseRequest) ProtoMessage()

func (*CreateTestDatabaseRequest) Reset added in v0.43.7

func (m *CreateTestDatabaseRequest) Reset()

func (*CreateTestDatabaseRequest) Size added in v0.43.7

func (m *CreateTestDatabaseRequest) Size() (n int)

func (*CreateTestDatabaseRequest) String added in v0.43.7

func (m *CreateTestDatabaseRequest) String() string

func (*CreateTestDatabaseRequest) Unmarshal added in v0.43.7

func (m *CreateTestDatabaseRequest) Unmarshal(dAtA []byte) error

func (*CreateTestDatabaseRequest) XXX_DiscardUnknown added in v0.43.7

func (m *CreateTestDatabaseRequest) XXX_DiscardUnknown()

func (*CreateTestDatabaseRequest) XXX_Marshal added in v0.43.7

func (m *CreateTestDatabaseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateTestDatabaseRequest) XXX_Merge added in v0.43.7

func (m *CreateTestDatabaseRequest) XXX_Merge(src proto.Message)

func (*CreateTestDatabaseRequest) XXX_Size added in v0.43.7

func (m *CreateTestDatabaseRequest) XXX_Size() int

func (*CreateTestDatabaseRequest) XXX_Unmarshal added in v0.43.7

func (m *CreateTestDatabaseRequest) XXX_Unmarshal(b []byte) error

type CreateTestDatabaseResponse added in v0.43.7

type CreateTestDatabaseResponse struct {
	// Name of the created database
	DbName string `protobuf:"bytes,1,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
	// Username of the created user
	Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
	// Password of the created user
	Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// Hostname of the database
	Hostname string `protobuf:"bytes,4,opt,name=hostname,proto3" json:"hostname,omitempty"`
	// Port of the database
	Port                 string   `protobuf:"bytes,5,opt,name=port,proto3" json:"port,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CreateTestDatabaseResponse will contain the json formatted output of the create operation

func (*CreateTestDatabaseResponse) Descriptor added in v0.43.7

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

func (*CreateTestDatabaseResponse) GetDbName added in v0.43.7

func (m *CreateTestDatabaseResponse) GetDbName() string

func (*CreateTestDatabaseResponse) GetHostname added in v0.43.7

func (m *CreateTestDatabaseResponse) GetHostname() string

func (*CreateTestDatabaseResponse) GetPassword added in v0.43.7

func (m *CreateTestDatabaseResponse) GetPassword() string

func (*CreateTestDatabaseResponse) GetPort added in v0.43.7

func (m *CreateTestDatabaseResponse) GetPort() string

func (*CreateTestDatabaseResponse) GetUsername added in v0.43.7

func (m *CreateTestDatabaseResponse) GetUsername() string

func (*CreateTestDatabaseResponse) Marshal added in v0.43.7

func (m *CreateTestDatabaseResponse) Marshal() (dAtA []byte, err error)

func (*CreateTestDatabaseResponse) MarshalTo added in v0.43.7

func (m *CreateTestDatabaseResponse) MarshalTo(dAtA []byte) (int, error)

func (*CreateTestDatabaseResponse) MarshalToSizedBuffer added in v0.43.7

func (m *CreateTestDatabaseResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateTestDatabaseResponse) ProtoMessage added in v0.43.7

func (*CreateTestDatabaseResponse) ProtoMessage()

func (*CreateTestDatabaseResponse) Reset added in v0.43.7

func (m *CreateTestDatabaseResponse) Reset()

func (*CreateTestDatabaseResponse) Size added in v0.43.7

func (m *CreateTestDatabaseResponse) Size() (n int)

func (*CreateTestDatabaseResponse) String added in v0.43.7

func (m *CreateTestDatabaseResponse) String() string

func (*CreateTestDatabaseResponse) Unmarshal added in v0.43.7

func (m *CreateTestDatabaseResponse) Unmarshal(dAtA []byte) error

func (*CreateTestDatabaseResponse) XXX_DiscardUnknown added in v0.43.7

func (m *CreateTestDatabaseResponse) XXX_DiscardUnknown()

func (*CreateTestDatabaseResponse) XXX_Marshal added in v0.43.7

func (m *CreateTestDatabaseResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateTestDatabaseResponse) XXX_Merge added in v0.43.7

func (m *CreateTestDatabaseResponse) XXX_Merge(src proto.Message)

func (*CreateTestDatabaseResponse) XXX_Size added in v0.43.7

func (m *CreateTestDatabaseResponse) XXX_Size() int

func (*CreateTestDatabaseResponse) XXX_Unmarshal added in v0.43.7

func (m *CreateTestDatabaseResponse) XXX_Unmarshal(b []byte) error

type DataServiceClient

type DataServiceClient interface {
	// Get the current API version of this service.
	// Required permissions:
	// - None
	GetAPIVersion(ctx context.Context, in *v1.Empty, opts ...grpc.CallOption) (*v1.Version, error)
	// Fetch all deployments in the project identified by the given context ID.
	// Required permissions:
	// - data.deployment.list on the project identified by the given context ID
	ListDeployments(ctx context.Context, in *v1.ListOptions, opts ...grpc.CallOption) (*DeploymentList, error)
	// Fetch a deployment by its id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetDeployment(ctx context.Context, in *v1.IDOptions, opts ...grpc.CallOption) (*Deployment, error)
	// Fetch all updates (spec and/or status) of the deployment that matches the given request.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetDeploymentUpdates(ctx context.Context, in *v1.IDOptions, opts ...grpc.CallOption) (DataService_GetDeploymentUpdatesClient, error)
	// Create a new deployment
	// Required permissions:
	// - data.deployment.create on the project that owns the deployment
	// Note that deployment.status & deployment.expiration are ignored
	// in this request.
	CreateDeployment(ctx context.Context, in *Deployment, opts ...grpc.CallOption) (*Deployment, error)
	// Update a deployment
	// Required permissions:
	// - data.deployment.update on the deployment
	// Note that deployment.status & deployment.expiration are ignored
	// in this request.
	UpdateDeployment(ctx context.Context, in *Deployment, opts ...grpc.CallOption) (*Deployment, error)
	// Delete a deployment
	// Note that deployments are initially only marked for deletion.
	// Once all their resources are removed the deployment itself is removed.
	// Required permissions:
	// - data.deployment.delete on the deployment
	DeleteDeployment(ctx context.Context, in *v1.IDOptions, opts ...grpc.CallOption) (*v1.Empty, error)
	// Fetch credentials for accessing deployment by its id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	// - data.deploymentcredentials.get on the deployment identified by the given ID
	GetDeploymentCredentials(ctx context.Context, in *DeploymentCredentialsRequest, opts ...grpc.CallOption) (*DeploymentCredentials, error)
	// Fetch all ArangoDB versions that are available for deployments.
	// Required permissions:
	// - None
	ListVersions(ctx context.Context, in *ListVersionsRequest, opts ...grpc.CallOption) (*VersionList, error)
	// Fetch the default ArangoDB version for new deployment.
	// Required permissions:
	// - None
	GetDefaultVersion(ctx context.Context, in *v1.Empty, opts ...grpc.CallOption) (*Version, error)
	// Fetch the limits for server specifications for deployments
	// owned by the given projected, created in the given region.
	// Required permissions:
	// - data.limits.get on the requested project
	// - data.deployment.get on the specified deployment (if deployment_id is set)
	// This method is deprecated and will be remove in the very near future, do not use this method anymore
	GetServersSpecLimits(ctx context.Context, in *ServersSpecLimitsRequest, opts ...grpc.CallOption) (*ServersSpecLimits, error)
	// Fetch the node sizes available for deployments
	// owned by the project with given ID, created in the given region with given ID.
	// If project ID "all" is used, then all node sizes for the region with given
	// ID are returned.
	// Required permissions:
	// - data.nodesize.list on the requested project (if project ID does not equal "all")
	// - None if project ID does equals "all"
	ListNodeSizes(ctx context.Context, in *NodeSizesRequest, opts ...grpc.CallOption) (*NodeSizeList, error)
	// Fetch the models available for deployments owned by the project with given ID.
	// Required permissions:
	// - data.deploymentmodel.list on the requested project
	ListDeploymentModels(ctx context.Context, in *ListDeploymentModelsRequest, opts ...grpc.CallOption) (*DeploymentModelList, error)
	// Fetch the CPU sizes available for deployments owned by the project with given ID.
	// Required permissions:
	// - data.cpusize.list on the requested project
	ListCPUSizes(ctx context.Context, in *ListCPUSizesRequest, opts ...grpc.CallOption) (*CPUSizeList, error)
	// Calculate the total size of a deployment with given arguments.
	// Required permissions:
	// - none
	CalculateDeploymentSize(ctx context.Context, in *CalculateDeploymentSizeRequest, opts ...grpc.CallOption) (*DeploymentSize, error)
	// Recommend a deployment size, for a oneshard or sharded deployments, using the
	// given input values.
	// Required permissions:
	// - none
	RecommendDeploymentSize(ctx context.Context, in *DeploymentSizeRequest, opts ...grpc.CallOption) (*DeploymentSizeRecommendation, error)
	// Fetch instructions for connecting drivers to the deployment identified by the given id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetConnectDriverInstructions(ctx context.Context, in *v1.IDOptions, opts ...grpc.CallOption) (*ConnectDriverInstructions, error)
	// Fetch instructions for importing data into the deployment identified by the given id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetImportDataInstructions(ctx context.Context, in *v1.IDOptions, opts ...grpc.CallOption) (*ImportDataInstructions, error)
	// Calculate the price of a deployment of given settings.
	// Required permissions:
	// - data.deploymentprice.calculate
	CalculateDeploymentPrice(ctx context.Context, in *DeploymentPriceRequest, opts ...grpc.CallOption) (*DeploymentPrice, error)
	// Get the features that will be available to a deployment in the given context.
	// Required permissions:
	// - data.deploymentfeatures.get on the project that is given in the request.
	GetDeploymentFeatures(ctx context.Context, in *DeploymentFeaturesRequest, opts ...grpc.CallOption) (*DeploymentFeatures, error)
	// Resumes a paused deployment identified by the given id.
	// When ResumeDeployment is invoked on a deployment that has is_paused not set, an PreconditionFailed error is returned.
	// Required permissions:
	// - data.deployment.resume on the deployment
	ResumeDeployment(ctx context.Context, in *v1.IDOptions, opts ...grpc.CallOption) (*v1.Empty, error)
	// Create a test database and user for a deployment. Returns the output containing the created
	// database name, password, username, host and port.
	// Required permissions:
	// - data.deployment.create-test-database on the deployment
	CreateTestDatabase(ctx context.Context, in *CreateTestDatabaseRequest, opts ...grpc.CallOption) (*CreateTestDatabaseResponse, error)
}

DataServiceClient is the client API for DataService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewDataServiceClient

func NewDataServiceClient(cc *grpc.ClientConn) DataServiceClient

type DataServiceServer

type DataServiceServer interface {
	// Get the current API version of this service.
	// Required permissions:
	// - None
	GetAPIVersion(context.Context, *v1.Empty) (*v1.Version, error)
	// Fetch all deployments in the project identified by the given context ID.
	// Required permissions:
	// - data.deployment.list on the project identified by the given context ID
	ListDeployments(context.Context, *v1.ListOptions) (*DeploymentList, error)
	// Fetch a deployment by its id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetDeployment(context.Context, *v1.IDOptions) (*Deployment, error)
	// Fetch all updates (spec and/or status) of the deployment that matches the given request.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetDeploymentUpdates(*v1.IDOptions, DataService_GetDeploymentUpdatesServer) error
	// Create a new deployment
	// Required permissions:
	// - data.deployment.create on the project that owns the deployment
	// Note that deployment.status & deployment.expiration are ignored
	// in this request.
	CreateDeployment(context.Context, *Deployment) (*Deployment, error)
	// Update a deployment
	// Required permissions:
	// - data.deployment.update on the deployment
	// Note that deployment.status & deployment.expiration are ignored
	// in this request.
	UpdateDeployment(context.Context, *Deployment) (*Deployment, error)
	// Delete a deployment
	// Note that deployments are initially only marked for deletion.
	// Once all their resources are removed the deployment itself is removed.
	// Required permissions:
	// - data.deployment.delete on the deployment
	DeleteDeployment(context.Context, *v1.IDOptions) (*v1.Empty, error)
	// Fetch credentials for accessing deployment by its id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	// - data.deploymentcredentials.get on the deployment identified by the given ID
	GetDeploymentCredentials(context.Context, *DeploymentCredentialsRequest) (*DeploymentCredentials, error)
	// Fetch all ArangoDB versions that are available for deployments.
	// Required permissions:
	// - None
	ListVersions(context.Context, *ListVersionsRequest) (*VersionList, error)
	// Fetch the default ArangoDB version for new deployment.
	// Required permissions:
	// - None
	GetDefaultVersion(context.Context, *v1.Empty) (*Version, error)
	// Fetch the limits for server specifications for deployments
	// owned by the given projected, created in the given region.
	// Required permissions:
	// - data.limits.get on the requested project
	// - data.deployment.get on the specified deployment (if deployment_id is set)
	// This method is deprecated and will be remove in the very near future, do not use this method anymore
	GetServersSpecLimits(context.Context, *ServersSpecLimitsRequest) (*ServersSpecLimits, error)
	// Fetch the node sizes available for deployments
	// owned by the project with given ID, created in the given region with given ID.
	// If project ID "all" is used, then all node sizes for the region with given
	// ID are returned.
	// Required permissions:
	// - data.nodesize.list on the requested project (if project ID does not equal "all")
	// - None if project ID does equals "all"
	ListNodeSizes(context.Context, *NodeSizesRequest) (*NodeSizeList, error)
	// Fetch the models available for deployments owned by the project with given ID.
	// Required permissions:
	// - data.deploymentmodel.list on the requested project
	ListDeploymentModels(context.Context, *ListDeploymentModelsRequest) (*DeploymentModelList, error)
	// Fetch the CPU sizes available for deployments owned by the project with given ID.
	// Required permissions:
	// - data.cpusize.list on the requested project
	ListCPUSizes(context.Context, *ListCPUSizesRequest) (*CPUSizeList, error)
	// Calculate the total size of a deployment with given arguments.
	// Required permissions:
	// - none
	CalculateDeploymentSize(context.Context, *CalculateDeploymentSizeRequest) (*DeploymentSize, error)
	// Recommend a deployment size, for a oneshard or sharded deployments, using the
	// given input values.
	// Required permissions:
	// - none
	RecommendDeploymentSize(context.Context, *DeploymentSizeRequest) (*DeploymentSizeRecommendation, error)
	// Fetch instructions for connecting drivers to the deployment identified by the given id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetConnectDriverInstructions(context.Context, *v1.IDOptions) (*ConnectDriverInstructions, error)
	// Fetch instructions for importing data into the deployment identified by the given id.
	// Required permissions:
	// - data.deployment.get on the deployment identified by the given ID
	GetImportDataInstructions(context.Context, *v1.IDOptions) (*ImportDataInstructions, error)
	// Calculate the price of a deployment of given settings.
	// Required permissions:
	// - data.deploymentprice.calculate
	CalculateDeploymentPrice(context.Context, *DeploymentPriceRequest) (*DeploymentPrice, error)
	// Get the features that will be available to a deployment in the given context.
	// Required permissions:
	// - data.deploymentfeatures.get on the project that is given in the request.
	GetDeploymentFeatures(context.Context, *DeploymentFeaturesRequest) (*DeploymentFeatures, error)
	// Resumes a paused deployment identified by the given id.
	// When ResumeDeployment is invoked on a deployment that has is_paused not set, an PreconditionFailed error is returned.
	// Required permissions:
	// - data.deployment.resume on the deployment
	ResumeDeployment(context.Context, *v1.IDOptions) (*v1.Empty, error)
	// Create a test database and user for a deployment. Returns the output containing the created
	// database name, password, username, host and port.
	// Required permissions:
	// - data.deployment.create-test-database on the deployment
	CreateTestDatabase(context.Context, *CreateTestDatabaseRequest) (*CreateTestDatabaseResponse, error)
}

DataServiceServer is the server API for DataService service.

type DataService_GetDeploymentUpdatesClient added in v0.48.0

type DataService_GetDeploymentUpdatesClient interface {
	Recv() (*Deployment, error)
	grpc.ClientStream
}

type DataService_GetDeploymentUpdatesServer added in v0.48.0

type DataService_GetDeploymentUpdatesServer interface {
	Send(*Deployment) error
	grpc.ServerStream
}

type DataVolumeInfo

type DataVolumeInfo struct {
	// The total number of bytes of the data volume.
	TotalBytes int64 `protobuf:"varint,1,opt,name=total_bytes,json=totalBytes,proto3" json:"total_bytes,omitempty"`
	// The number of bytes used on the data volume.
	UsedBytes int64 `protobuf:"varint,2,opt,name=used_bytes,json=usedBytes,proto3" json:"used_bytes,omitempty"`
	// The number of bytes available on the data volume.
	AvailableBytes int64 `protobuf:"varint,3,opt,name=available_bytes,json=availableBytes,proto3" json:"available_bytes,omitempty"`
	// The total number of inodes of the data volume.
	TotalInodes int64 `protobuf:"varint,4,opt,name=total_inodes,json=totalInodes,proto3" json:"total_inodes,omitempty"`
	// The number of inodes used on the data volume.
	UsedInodes int64 `protobuf:"varint,5,opt,name=used_inodes,json=usedInodes,proto3" json:"used_inodes,omitempty"`
	// The number of inodes available on the data volume.
	AvailableInodes int64 `protobuf:"varint,6,opt,name=available_inodes,json=availableInodes,proto3" json:"available_inodes,omitempty"`
	// When this info has been measused
	MeasuredAt           *types.Timestamp `protobuf:"bytes,10,opt,name=measured_at,json=measuredAt,proto3" json:"measured_at,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

DataVolumeInfo provides information about a data volume

func (*DataVolumeInfo) Clone

func (s *DataVolumeInfo) Clone() *DataVolumeInfo

Clone creates a deep clone of the given source

func (*DataVolumeInfo) Descriptor

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

func (*DataVolumeInfo) GetAvailableBytes

func (m *DataVolumeInfo) GetAvailableBytes() int64

func (*DataVolumeInfo) GetAvailableInodes added in v0.43.10

func (m *DataVolumeInfo) GetAvailableInodes() int64

func (*DataVolumeInfo) GetMeasuredAt

func (m *DataVolumeInfo) GetMeasuredAt() *types.Timestamp

func (*DataVolumeInfo) GetTotalBytes

func (m *DataVolumeInfo) GetTotalBytes() int64

func (*DataVolumeInfo) GetTotalInodes added in v0.43.10

func (m *DataVolumeInfo) GetTotalInodes() int64

func (*DataVolumeInfo) GetUsedBytes

func (m *DataVolumeInfo) GetUsedBytes() int64

func (*DataVolumeInfo) GetUsedInodes added in v0.43.10

func (m *DataVolumeInfo) GetUsedInodes() int64

func (*DataVolumeInfo) Marshal

func (m *DataVolumeInfo) Marshal() (dAtA []byte, err error)

func (*DataVolumeInfo) MarshalTo

func (m *DataVolumeInfo) MarshalTo(dAtA []byte) (int, error)

func (*DataVolumeInfo) MarshalToSizedBuffer

func (m *DataVolumeInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DataVolumeInfo) ProtoMessage

func (*DataVolumeInfo) ProtoMessage()

func (*DataVolumeInfo) Reset

func (m *DataVolumeInfo) Reset()

func (*DataVolumeInfo) Size

func (m *DataVolumeInfo) Size() (n int)

func (*DataVolumeInfo) String

func (m *DataVolumeInfo) String() string

func (*DataVolumeInfo) Unmarshal

func (m *DataVolumeInfo) Unmarshal(dAtA []byte) error

func (*DataVolumeInfo) XXX_DiscardUnknown

func (m *DataVolumeInfo) XXX_DiscardUnknown()

func (*DataVolumeInfo) XXX_Marshal

func (m *DataVolumeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DataVolumeInfo) XXX_Merge

func (m *DataVolumeInfo) XXX_Merge(src proto.Message)

func (*DataVolumeInfo) XXX_Size

func (m *DataVolumeInfo) XXX_Size() int

func (*DataVolumeInfo) XXX_Unmarshal

func (m *DataVolumeInfo) XXX_Unmarshal(b []byte) error

type Deployment

type Deployment struct {
	// System identifier of the deployment.
	// This is a read-only value.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// URL of this resource
	// This is a read-only value.
	Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	// Name of the deployment
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// Description of the deployment
	Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	// Identifier of the project that owns this deployment.
	// After creation, this value cannot be changed.
	ProjectId string `protobuf:"bytes,5,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// Identifier of the region in which the deployment is created.
	// After creation, this value cannot be changed.
	RegionId string `protobuf:"bytes,6,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"`
	// The creation timestamp of the deployment
	// This is a read-only value.
	CreatedAt *types.Timestamp `protobuf:"bytes,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// The deletion timestamp of the deployment
	// This is a read-only value.
	DeletedAt *types.Timestamp `protobuf:"bytes,8,opt,name=deleted_at,json=deletedAt,proto3" json:"deleted_at,omitempty"`
	// Set when this deployment is deleted.
	// This is a read-only value.
	IsDeleted bool `protobuf:"varint,9,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
	// Optional identifier of the support plan selected for this deployment.
	// After creation, this value cannot be changed.
	// If no support plan identifier is set, the default support plan is used.
	SupportPlanId string `protobuf:"bytes,10,opt,name=support_plan_id,json=supportPlanId,proto3" json:"support_plan_id,omitempty"`
	// Identifier of the user who created this deployment.
	// This is a read-only value.
	CreatedById string `protobuf:"bytes,11,opt,name=created_by_id,json=createdById,proto3" json:"created_by_id,omitempty"`
	// This field must be set to the identifier of the current Terms&Conditions
	// when creating a deployment.
	// If the tier of the organization does not require a non-empty Terms&Condition
	// identifier, this field may be left empty.
	// This is a read-only value after creation.
	AcceptedTermsAndConditionsId string `` /* 152-byte string literal not displayed */
	// If set, this deployment cannot be deleted.
	// To delete, first update the with locked set to false.
	Locked bool `protobuf:"varint,13,opt,name=locked,proto3" json:"locked,omitempty"`
	// Indicates that this deployment is paused.
	// Use the data.ResumeDeployment method to resume (aka unpause) the deployment.
	// This is a read-only value.
	IsPaused bool `protobuf:"varint,20,opt,name=is_paused,json=isPaused,proto3" json:"is_paused,omitempty"`
	// The last paused timestamp of the deployment.
	// This is the timestamp that is_paused is transitioned from unset to set.
	// This is a read-only value.
	LastPausedAt *types.Timestamp `protobuf:"bytes,21,opt,name=last_paused_at,json=lastPausedAt,proto3" json:"last_paused_at,omitempty"`
	// The last resumed  timestamp of the deployment.
	// This is the timestamp that is_paused is transitioned from set to unset.
	// This is a read-only value.
	LastResumedAt *types.Timestamp `protobuf:"bytes,22,opt,name=last_resumed_at,json=lastResumedAt,proto3" json:"last_resumed_at,omitempty"`
	// ArangoDB version to use for this deployment.
	// See Version.version.
	// If you change this value to a higher version,
	// the deployment will be upgraded.
	// If you change this value to a lower patch value,
	// the deployment will be downgraded.
	// Any attempt to change to a lower minor or major version
	// is considered an invalid request.
	// Any attempt to change to a version that is not in the
	// list of available versions is considered an invalid request.
	Version string `protobuf:"bytes,101,opt,name=version,proto3" json:"version,omitempty"`
	// If set, it is highly recommended to update to the ArangoDB release with the
	// version as listed in this field.
	ReplaceVersionBy *ReplaceVersionBy           `protobuf:"bytes,104,opt,name=replace_version_by,json=replaceVersionBy,proto3" json:"replace_version_by,omitempty"`
	Certificates     *Deployment_CertificateSpec `protobuf:"bytes,102,opt,name=certificates,proto3" json:"certificates,omitempty"`
	Servers          *Deployment_ServersSpec     `protobuf:"bytes,103,opt,name=servers,proto3" json:"servers,omitempty"`
	// Optional identifier of IP allowlist to use for this deployment.
	IpallowlistId string `protobuf:"bytes,109,opt,name=ipallowlist_id,json=ipallowlistId,proto3" json:"ipallowlist_id,omitempty"`
	// Optional identifier of IP whitelist to use for this deployment.
	// Note: The use of this field has been deprecated in favor of ipallowlist_id.
	// In a future version, they will be removed.
	IpwhitelistId string                `protobuf:"bytes,105,opt,name=ipwhitelist_id,json=ipwhitelistId,proto3" json:"ipwhitelist_id,omitempty"`
	Model         *Deployment_ModelSpec `protobuf:"bytes,106,opt,name=model,proto3" json:"model,omitempty"`
	// If provided, dataclusterd will use this custom image tag instead of the configured one for a given version.
	// Further, ImagePullPolicy will be set to Always.
	// This field can only be set by selected organizations.
	CustomImage string `protobuf:"bytes,107,opt,name=custom_image,json=customImage,proto3" json:"custom_image,omitempty"`
	// Optional identifier of IAM provider to use for this deployment.
	IamproviderId string             `protobuf:"bytes,108,opt,name=iamprovider_id,json=iamproviderId,proto3" json:"iamprovider_id,omitempty"`
	Status        *Deployment_Status `protobuf:"bytes,201,opt,name=status,proto3" json:"status,omitempty"`
	// Detailed size of the deployment
	// This is a read-only field.
	Size_      *DeploymentSize        `protobuf:"bytes,202,opt,name=size,proto3" json:"size,omitempty"`
	Expiration *Deployment_Expiration `protobuf:"bytes,301,opt,name=expiration,proto3" json:"expiration,omitempty"`
	// Information about a backup restore.
	// If this field is set the deployment will be restored to that backup.
	// This is a read-only field. To set this field please use the backup service RestoreBackup method.
	BackupRestore *Deployment_BackupRestoreSpec `protobuf:"bytes,401,opt,name=backup_restore,json=backupRestore,proto3" json:"backup_restore,omitempty"`
	// Recommendations made for deployments using the "oneshard" or "sharded" model.
	DeploymentRecommendations []*DeploymentSizeRecommendation `` /* 138-byte string literal not displayed */
	// Set if this deployment is a clone and should be handled differently. After bootstrapping a clone
	// needs a restore operation.
	// This is a read-only property
	IsClone bool `protobuf:"varint,600,opt,name=is_clone,json=isClone,proto3" json:"is_clone,omitempty"`
	// The ID of the backup to restore this clone deployment from.
	// This is a read-only property
	CloneBackupId        string   `protobuf:"bytes,601,opt,name=clone_backup_id,json=cloneBackupId,proto3" json:"clone_backup_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

A Deployment is represents one deployment of an ArangoDB cluster.

func (*Deployment) Descriptor

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

func (*Deployment) GetAcceptedTermsAndConditionsId

func (m *Deployment) GetAcceptedTermsAndConditionsId() string

func (*Deployment) GetBackupRestore

func (m *Deployment) GetBackupRestore() *Deployment_BackupRestoreSpec

func (*Deployment) GetCertificates

func (m *Deployment) GetCertificates() *Deployment_CertificateSpec

func (*Deployment) GetCloneBackupId added in v0.43.5

func (m *Deployment) GetCloneBackupId() string

func (*Deployment) GetCreatedAt

func (m *Deployment) GetCreatedAt() *types.Timestamp

func (*Deployment) GetCreatedById

func (m *Deployment) GetCreatedById() string

func (*Deployment) GetCustomImage

func (m *Deployment) GetCustomImage() string

func (*Deployment) GetDeletedAt

func (m *Deployment) GetDeletedAt() *types.Timestamp

func (*Deployment) GetDeploymentRecommendations

func (m *Deployment) GetDeploymentRecommendations() []*DeploymentSizeRecommendation

func (*Deployment) GetDescription

func (m *Deployment) GetDescription() string

func (*Deployment) GetExpiration

func (m *Deployment) GetExpiration() *Deployment_Expiration

func (*Deployment) GetIamproviderId

func (m *Deployment) GetIamproviderId() string

func (*Deployment) GetId

func (m *Deployment) GetId() string

func (*Deployment) GetIpallowlistId added in v0.45.0

func (m *Deployment) GetIpallowlistId() string

func (*Deployment) GetIpwhitelistId

func (m *Deployment) GetIpwhitelistId() string

func (*Deployment) GetIsClone added in v0.43.5

func (m *Deployment) GetIsClone() bool

func (*Deployment) GetIsDeleted

func (m *Deployment) GetIsDeleted() bool

func (*Deployment) GetIsPaused added in v0.43.4

func (m *Deployment) GetIsPaused() bool

func (*Deployment) GetLastPausedAt added in v0.43.4

func (m *Deployment) GetLastPausedAt() *types.Timestamp

func (*Deployment) GetLastResumedAt added in v0.43.4

func (m *Deployment) GetLastResumedAt() *types.Timestamp

func (*Deployment) GetLocked added in v0.47.0

func (m *Deployment) GetLocked() bool

func (*Deployment) GetModel

func (m *Deployment) GetModel() *Deployment_ModelSpec

func (*Deployment) GetName

func (m *Deployment) GetName() string

func (*Deployment) GetOrCreateCertificates

func (d *Deployment) GetOrCreateCertificates() *Deployment_CertificateSpec

GetOrCreateCertificates returns the Certificates field, creating it if needed.

func (*Deployment) GetOrCreateExpiration

func (d *Deployment) GetOrCreateExpiration() *Deployment_Expiration

GetOrCreateExpiration returns the Expiration field, creating it if needed.

func (*Deployment) GetOrCreateServers

func (d *Deployment) GetOrCreateServers() *Deployment_ServersSpec

GetOrCreateServers returns the Servers field, creating it if needed.

func (*Deployment) GetOrCreateStatus

func (d *Deployment) GetOrCreateStatus() *Deployment_Status

GetOrCreateStatus returns the Status field, creating it if needed.

func (*Deployment) GetProjectId

func (m *Deployment) GetProjectId() string

func (*Deployment) GetRegionId

func (m *Deployment) GetRegionId() string

func (*Deployment) GetReplaceVersionBy added in v0.40.10

func (m *Deployment) GetReplaceVersionBy() *ReplaceVersionBy

func (*Deployment) GetServers

func (m *Deployment) GetServers() *Deployment_ServersSpec

func (*Deployment) GetSize_

func (m *Deployment) GetSize_() *DeploymentSize

func (*Deployment) GetStatus

func (m *Deployment) GetStatus() *Deployment_Status

func (*Deployment) GetSupportPlanId

func (m *Deployment) GetSupportPlanId() string

func (*Deployment) GetUrl

func (m *Deployment) GetUrl() string

func (*Deployment) GetVersion

func (m *Deployment) GetVersion() string

func (*Deployment) Marshal

func (m *Deployment) Marshal() (dAtA []byte, err error)

func (*Deployment) MarshalTo

func (m *Deployment) MarshalTo(dAtA []byte) (int, error)

func (*Deployment) MarshalToSizedBuffer

func (m *Deployment) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment) ProtoMessage

func (*Deployment) ProtoMessage()

func (*Deployment) Reset

func (m *Deployment) Reset()

func (*Deployment) Size

func (m *Deployment) Size() (n int)

func (*Deployment) SpecEquals

func (source *Deployment) SpecEquals(other *Deployment) bool

SpecEquals returns true when source & other have the same specification values

func (*Deployment) String

func (m *Deployment) String() string

func (*Deployment) Unmarshal

func (m *Deployment) Unmarshal(dAtA []byte) error

func (*Deployment) XXX_DiscardUnknown

func (m *Deployment) XXX_DiscardUnknown()

func (*Deployment) XXX_Marshal

func (m *Deployment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment) XXX_Merge

func (m *Deployment) XXX_Merge(src proto.Message)

func (*Deployment) XXX_Size

func (m *Deployment) XXX_Size() int

func (*Deployment) XXX_Unmarshal

func (m *Deployment) XXX_Unmarshal(b []byte) error

type DeploymentCallback

type DeploymentCallback func(context.Context, *Deployment) error

DeploymentCallback is a callback for individual deployments.

type DeploymentCredentials

type DeploymentCredentials struct {
	// Name of the user for which credentials were asked.
	// Default to username of root user.
	Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	// Password of the user for which credentials were asked.
	Password             string   `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Result for GetDeploymentCredentials

func (*DeploymentCredentials) Descriptor

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

func (*DeploymentCredentials) GetPassword

func (m *DeploymentCredentials) GetPassword() string

func (*DeploymentCredentials) GetUsername

func (m *DeploymentCredentials) GetUsername() string

func (*DeploymentCredentials) Marshal

func (m *DeploymentCredentials) Marshal() (dAtA []byte, err error)

func (*DeploymentCredentials) MarshalTo

func (m *DeploymentCredentials) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentCredentials) MarshalToSizedBuffer

func (m *DeploymentCredentials) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentCredentials) ProtoMessage

func (*DeploymentCredentials) ProtoMessage()

func (*DeploymentCredentials) Reset

func (m *DeploymentCredentials) Reset()

func (*DeploymentCredentials) Size

func (m *DeploymentCredentials) Size() (n int)

func (*DeploymentCredentials) String

func (m *DeploymentCredentials) String() string

func (*DeploymentCredentials) Unmarshal

func (m *DeploymentCredentials) Unmarshal(dAtA []byte) error

func (*DeploymentCredentials) XXX_DiscardUnknown

func (m *DeploymentCredentials) XXX_DiscardUnknown()

func (*DeploymentCredentials) XXX_Marshal

func (m *DeploymentCredentials) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentCredentials) XXX_Merge

func (m *DeploymentCredentials) XXX_Merge(src proto.Message)

func (*DeploymentCredentials) XXX_Size

func (m *DeploymentCredentials) XXX_Size() int

func (*DeploymentCredentials) XXX_Unmarshal

func (m *DeploymentCredentials) XXX_Unmarshal(b []byte) error

type DeploymentCredentialsRequest

type DeploymentCredentialsRequest struct {
	// Identifier of deployment to request credentials for.
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// Reason for requesting the credentials
	Reason               string   `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for GetDeploymentCredentials

func (*DeploymentCredentialsRequest) Descriptor

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

func (*DeploymentCredentialsRequest) GetDeploymentId

func (m *DeploymentCredentialsRequest) GetDeploymentId() string

func (*DeploymentCredentialsRequest) GetReason

func (m *DeploymentCredentialsRequest) GetReason() string

func (*DeploymentCredentialsRequest) Marshal

func (m *DeploymentCredentialsRequest) Marshal() (dAtA []byte, err error)

func (*DeploymentCredentialsRequest) MarshalTo

func (m *DeploymentCredentialsRequest) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentCredentialsRequest) MarshalToSizedBuffer

func (m *DeploymentCredentialsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentCredentialsRequest) ProtoMessage

func (*DeploymentCredentialsRequest) ProtoMessage()

func (*DeploymentCredentialsRequest) Reset

func (m *DeploymentCredentialsRequest) Reset()

func (*DeploymentCredentialsRequest) Size

func (m *DeploymentCredentialsRequest) Size() (n int)

func (*DeploymentCredentialsRequest) String

func (*DeploymentCredentialsRequest) Unmarshal

func (m *DeploymentCredentialsRequest) Unmarshal(dAtA []byte) error

func (*DeploymentCredentialsRequest) XXX_DiscardUnknown

func (m *DeploymentCredentialsRequest) XXX_DiscardUnknown()

func (*DeploymentCredentialsRequest) XXX_Marshal

func (m *DeploymentCredentialsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentCredentialsRequest) XXX_Merge

func (m *DeploymentCredentialsRequest) XXX_Merge(src proto.Message)

func (*DeploymentCredentialsRequest) XXX_Size

func (m *DeploymentCredentialsRequest) XXX_Size() int

func (*DeploymentCredentialsRequest) XXX_Unmarshal

func (m *DeploymentCredentialsRequest) XXX_Unmarshal(b []byte) error

type DeploymentFeatures

type DeploymentFeatures struct {
	// Is the use of an IAM provider available?
	Iamprovider          bool     `protobuf:"varint,1,opt,name=iamprovider,proto3" json:"iamprovider,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Features that are available to new deployments in a given context.

func (*DeploymentFeatures) Descriptor

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

func (*DeploymentFeatures) GetIamprovider

func (m *DeploymentFeatures) GetIamprovider() bool

func (*DeploymentFeatures) Marshal

func (m *DeploymentFeatures) Marshal() (dAtA []byte, err error)

func (*DeploymentFeatures) MarshalTo

func (m *DeploymentFeatures) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentFeatures) MarshalToSizedBuffer

func (m *DeploymentFeatures) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentFeatures) ProtoMessage

func (*DeploymentFeatures) ProtoMessage()

func (*DeploymentFeatures) Reset

func (m *DeploymentFeatures) Reset()

func (*DeploymentFeatures) Size

func (m *DeploymentFeatures) Size() (n int)

func (*DeploymentFeatures) String

func (m *DeploymentFeatures) String() string

func (*DeploymentFeatures) Unmarshal

func (m *DeploymentFeatures) Unmarshal(dAtA []byte) error

func (*DeploymentFeatures) XXX_DiscardUnknown

func (m *DeploymentFeatures) XXX_DiscardUnknown()

func (*DeploymentFeatures) XXX_Marshal

func (m *DeploymentFeatures) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentFeatures) XXX_Merge

func (m *DeploymentFeatures) XXX_Merge(src proto.Message)

func (*DeploymentFeatures) XXX_Size

func (m *DeploymentFeatures) XXX_Size() int

func (*DeploymentFeatures) XXX_Unmarshal

func (m *DeploymentFeatures) XXX_Unmarshal(b []byte) error

type DeploymentFeaturesRequest

type DeploymentFeaturesRequest struct {
	// Identifier of project that will own a deployment.
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// Identifier of a region in which a deployment will be created.
	RegionId string `protobuf:"bytes,2,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"`
	// Model of the intended deployment.
	Model string `protobuf:"bytes,3,opt,name=model,proto3" json:"model,omitempty"`
	// Node size use for the intended deployments
	NodeSizeId           string   `protobuf:"bytes,4,opt,name=node_size_id,json=nodeSizeId,proto3" json:"node_size_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for GetDeploymentFeatures

func (*DeploymentFeaturesRequest) Descriptor

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

func (*DeploymentFeaturesRequest) GetModel

func (m *DeploymentFeaturesRequest) GetModel() string

func (*DeploymentFeaturesRequest) GetNodeSizeId

func (m *DeploymentFeaturesRequest) GetNodeSizeId() string

func (*DeploymentFeaturesRequest) GetProjectId

func (m *DeploymentFeaturesRequest) GetProjectId() string

func (*DeploymentFeaturesRequest) GetRegionId

func (m *DeploymentFeaturesRequest) GetRegionId() string

func (*DeploymentFeaturesRequest) Marshal

func (m *DeploymentFeaturesRequest) Marshal() (dAtA []byte, err error)

func (*DeploymentFeaturesRequest) MarshalTo

func (m *DeploymentFeaturesRequest) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentFeaturesRequest) MarshalToSizedBuffer

func (m *DeploymentFeaturesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentFeaturesRequest) ProtoMessage

func (*DeploymentFeaturesRequest) ProtoMessage()

func (*DeploymentFeaturesRequest) Reset

func (m *DeploymentFeaturesRequest) Reset()

func (*DeploymentFeaturesRequest) Size

func (m *DeploymentFeaturesRequest) Size() (n int)

func (*DeploymentFeaturesRequest) String

func (m *DeploymentFeaturesRequest) String() string

func (*DeploymentFeaturesRequest) Unmarshal

func (m *DeploymentFeaturesRequest) Unmarshal(dAtA []byte) error

func (*DeploymentFeaturesRequest) XXX_DiscardUnknown

func (m *DeploymentFeaturesRequest) XXX_DiscardUnknown()

func (*DeploymentFeaturesRequest) XXX_Marshal

func (m *DeploymentFeaturesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentFeaturesRequest) XXX_Merge

func (m *DeploymentFeaturesRequest) XXX_Merge(src proto.Message)

func (*DeploymentFeaturesRequest) XXX_Size

func (m *DeploymentFeaturesRequest) XXX_Size() int

func (*DeploymentFeaturesRequest) XXX_Unmarshal

func (m *DeploymentFeaturesRequest) XXX_Unmarshal(b []byte) error

type DeploymentList

type DeploymentList struct {
	// Actual deployments
	Items []*Deployment `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// Budget for deployments
	Budget               *v1.Budget `protobuf:"bytes,2,opt,name=budget,proto3" json:"budget,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

List of Deployments.

func (*DeploymentList) Descriptor

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

func (*DeploymentList) GetBudget

func (m *DeploymentList) GetBudget() *v1.Budget

func (*DeploymentList) GetItems

func (m *DeploymentList) GetItems() []*Deployment

func (*DeploymentList) Marshal

func (m *DeploymentList) Marshal() (dAtA []byte, err error)

func (*DeploymentList) MarshalTo

func (m *DeploymentList) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentList) MarshalToSizedBuffer

func (m *DeploymentList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentList) ProtoMessage

func (*DeploymentList) ProtoMessage()

func (*DeploymentList) Reset

func (m *DeploymentList) Reset()

func (*DeploymentList) Size

func (m *DeploymentList) Size() (n int)

func (*DeploymentList) String

func (m *DeploymentList) String() string

func (*DeploymentList) Unmarshal

func (m *DeploymentList) Unmarshal(dAtA []byte) error

func (*DeploymentList) XXX_DiscardUnknown

func (m *DeploymentList) XXX_DiscardUnknown()

func (*DeploymentList) XXX_Marshal

func (m *DeploymentList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentList) XXX_Merge

func (m *DeploymentList) XXX_Merge(src proto.Message)

func (*DeploymentList) XXX_Size

func (m *DeploymentList) XXX_Size() int

func (*DeploymentList) XXX_Unmarshal

func (m *DeploymentList) XXX_Unmarshal(b []byte) error

type DeploymentModel

type DeploymentModel struct {
	// System identifier of the model (e.g. oneshard)
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Human readable name of the model (e.g. One shard)
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

DeploymentModel specifies the a specific model of deploying arangodb clusters.

func (*DeploymentModel) Descriptor

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

func (*DeploymentModel) GetId

func (m *DeploymentModel) GetId() string

func (*DeploymentModel) GetName

func (m *DeploymentModel) GetName() string

func (*DeploymentModel) Marshal

func (m *DeploymentModel) Marshal() (dAtA []byte, err error)

func (*DeploymentModel) MarshalTo

func (m *DeploymentModel) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentModel) MarshalToSizedBuffer

func (m *DeploymentModel) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentModel) ProtoMessage

func (*DeploymentModel) ProtoMessage()

func (*DeploymentModel) Reset

func (m *DeploymentModel) Reset()

func (*DeploymentModel) Size

func (m *DeploymentModel) Size() (n int)

func (*DeploymentModel) String

func (m *DeploymentModel) String() string

func (*DeploymentModel) Unmarshal

func (m *DeploymentModel) Unmarshal(dAtA []byte) error

func (*DeploymentModel) XXX_DiscardUnknown

func (m *DeploymentModel) XXX_DiscardUnknown()

func (*DeploymentModel) XXX_Marshal

func (m *DeploymentModel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentModel) XXX_Merge

func (m *DeploymentModel) XXX_Merge(src proto.Message)

func (*DeploymentModel) XXX_Size

func (m *DeploymentModel) XXX_Size() int

func (*DeploymentModel) XXX_Unmarshal

func (m *DeploymentModel) XXX_Unmarshal(b []byte) error

type DeploymentModelList

type DeploymentModelList struct {
	Items                []*DeploymentModel `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

List of deployment models.

func (*DeploymentModelList) Descriptor

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

func (*DeploymentModelList) GetItems

func (m *DeploymentModelList) GetItems() []*DeploymentModel

func (*DeploymentModelList) Marshal

func (m *DeploymentModelList) Marshal() (dAtA []byte, err error)

func (*DeploymentModelList) MarshalTo

func (m *DeploymentModelList) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentModelList) MarshalToSizedBuffer

func (m *DeploymentModelList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentModelList) ProtoMessage

func (*DeploymentModelList) ProtoMessage()

func (*DeploymentModelList) Reset

func (m *DeploymentModelList) Reset()

func (*DeploymentModelList) Size

func (m *DeploymentModelList) Size() (n int)

func (*DeploymentModelList) String

func (m *DeploymentModelList) String() string

func (*DeploymentModelList) Unmarshal

func (m *DeploymentModelList) Unmarshal(dAtA []byte) error

func (*DeploymentModelList) XXX_DiscardUnknown

func (m *DeploymentModelList) XXX_DiscardUnknown()

func (*DeploymentModelList) XXX_Marshal

func (m *DeploymentModelList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentModelList) XXX_Merge

func (m *DeploymentModelList) XXX_Merge(src proto.Message)

func (*DeploymentModelList) XXX_Size

func (m *DeploymentModelList) XXX_Size() int

func (*DeploymentModelList) XXX_Unmarshal

func (m *DeploymentModelList) XXX_Unmarshal(b []byte) error

type DeploymentPrice

type DeploymentPrice struct {
	// Price per hour in given currency for the deployment.
	PricePerHour float32 `protobuf:"fixed32,1,opt,name=price_per_hour,json=pricePerHour,proto3" json:"price_per_hour,omitempty"`
	// Network transfer prices (variable depending on usage)
	NetworkTransferPrices []*DeploymentPrice_NetworkTransferPrice `` /* 126-byte string literal not displayed */
	// Network transfer prices (variable depending on usage)
	BackupPrice *DeploymentPrice_BackupPrice `protobuf:"bytes,3,opt,name=backup_price,json=backupPrice,proto3" json:"backup_price,omitempty"`
	// Identifier of the currency in which the price is specified.
	CurrencyId           string   `protobuf:"bytes,4,opt,name=currency_id,json=currencyId,proto3" json:"currency_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeploymentPrice) Descriptor

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

func (*DeploymentPrice) GetBackupPrice

func (m *DeploymentPrice) GetBackupPrice() *DeploymentPrice_BackupPrice

func (*DeploymentPrice) GetCurrencyId

func (m *DeploymentPrice) GetCurrencyId() string

func (*DeploymentPrice) GetNetworkTransferPrices

func (m *DeploymentPrice) GetNetworkTransferPrices() []*DeploymentPrice_NetworkTransferPrice

func (*DeploymentPrice) GetPricePerHour

func (m *DeploymentPrice) GetPricePerHour() float32

func (*DeploymentPrice) Marshal

func (m *DeploymentPrice) Marshal() (dAtA []byte, err error)

func (*DeploymentPrice) MarshalTo

func (m *DeploymentPrice) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentPrice) MarshalToSizedBuffer

func (m *DeploymentPrice) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentPrice) ProtoMessage

func (*DeploymentPrice) ProtoMessage()

func (*DeploymentPrice) Reset

func (m *DeploymentPrice) Reset()

func (*DeploymentPrice) Size

func (m *DeploymentPrice) Size() (n int)

func (*DeploymentPrice) String

func (m *DeploymentPrice) String() string

func (*DeploymentPrice) Unmarshal

func (m *DeploymentPrice) Unmarshal(dAtA []byte) error

func (*DeploymentPrice) XXX_DiscardUnknown

func (m *DeploymentPrice) XXX_DiscardUnknown()

func (*DeploymentPrice) XXX_Marshal

func (m *DeploymentPrice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentPrice) XXX_Merge

func (m *DeploymentPrice) XXX_Merge(src proto.Message)

func (*DeploymentPrice) XXX_Size

func (m *DeploymentPrice) XXX_Size() int

func (*DeploymentPrice) XXX_Unmarshal

func (m *DeploymentPrice) XXX_Unmarshal(b []byte) error

type DeploymentPriceRequest

type DeploymentPriceRequest struct {
	// Identifier of organization containing the deployment.
	OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// Identifier of project containing the deployment.
	ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// Identifier of the support plan of the deployment.
	SupportPlanId string `protobuf:"bytes,3,opt,name=support_plan_id,json=supportPlanId,proto3" json:"support_plan_id,omitempty"`
	// Identifier of the cloud provider of the deployment.
	CloudProviderId string `protobuf:"bytes,4,opt,name=cloud_provider_id,json=cloudProviderId,proto3" json:"cloud_provider_id,omitempty"`
	// Identifier of the cloud region of the deployment.
	CloudRegionId string `protobuf:"bytes,5,opt,name=cloud_region_id,json=cloudRegionId,proto3" json:"cloud_region_id,omitempty"`
	// Model of the deployment.
	Model string `protobuf:"bytes,6,opt,name=model,proto3" json:"model,omitempty"`
	// Node size use for deployments
	NodeSizeId string `protobuf:"bytes,7,opt,name=node_size_id,json=nodeSizeId,proto3" json:"node_size_id,omitempty"`
	// Number of nodes being used
	// This field is ignored if model is "flexible".
	NodeCount int32 `protobuf:"varint,8,opt,name=node_count,json=nodeCount,proto3" json:"node_count,omitempty"`
	// Amount of disk space per node (in GB)
	// This field is ignored if model is "flexible".
	NodeDiskSize int32 `protobuf:"varint,9,opt,name=node_disk_size,json=nodeDiskSize,proto3" json:"node_disk_size,omitempty"`
	// Number of coordinators of the deployment
	// This field is ignored unless model is "flexible".
	Coordinators int32 `protobuf:"varint,10,opt,name=coordinators,proto3" json:"coordinators,omitempty"`
	// Amount of memory (in GB) to allocate for each coordinator.
	// This field is ignored unless model is "flexible".
	CoordinatorMemorySize int32 `` /* 128-byte string literal not displayed */
	// Number of dbservers of the deployment
	// This field is ignored unless model is "flexible".
	Dbservers int32 `protobuf:"varint,12,opt,name=dbservers,proto3" json:"dbservers,omitempty"`
	// Amount of memory (in GB) to allocate for each dbserver.
	// This field is ignored unless model is "flexible".
	DbserverMemorySize int32 `protobuf:"varint,13,opt,name=dbserver_memory_size,json=dbserverMemorySize,proto3" json:"dbserver_memory_size,omitempty"`
	// Amount of disk space (in GB) to allocate for each dbserver.
	// This field is ignored unless model is "flexible".
	DbserverDiskSize     int32    `protobuf:"varint,14,opt,name=dbserver_disk_size,json=dbserverDiskSize,proto3" json:"dbserver_disk_size,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Arguments for requesting a price a deployment of given properties.

func (*DeploymentPriceRequest) Descriptor

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

func (*DeploymentPriceRequest) GetCloudProviderId

func (m *DeploymentPriceRequest) GetCloudProviderId() string

func (*DeploymentPriceRequest) GetCloudRegionId

func (m *DeploymentPriceRequest) GetCloudRegionId() string

func (*DeploymentPriceRequest) GetCoordinatorMemorySize

func (m *DeploymentPriceRequest) GetCoordinatorMemorySize() int32

func (*DeploymentPriceRequest) GetCoordinators

func (m *DeploymentPriceRequest) GetCoordinators() int32

func (*DeploymentPriceRequest) GetDbserverDiskSize

func (m *DeploymentPriceRequest) GetDbserverDiskSize() int32

func (*DeploymentPriceRequest) GetDbserverMemorySize

func (m *DeploymentPriceRequest) GetDbserverMemorySize() int32

func (*DeploymentPriceRequest) GetDbservers

func (m *DeploymentPriceRequest) GetDbservers() int32

func (*DeploymentPriceRequest) GetModel

func (m *DeploymentPriceRequest) GetModel() string

func (*DeploymentPriceRequest) GetNodeCount

func (m *DeploymentPriceRequest) GetNodeCount() int32

func (*DeploymentPriceRequest) GetNodeDiskSize

func (m *DeploymentPriceRequest) GetNodeDiskSize() int32

func (*DeploymentPriceRequest) GetNodeSizeId

func (m *DeploymentPriceRequest) GetNodeSizeId() string

func (*DeploymentPriceRequest) GetOrganizationId

func (m *DeploymentPriceRequest) GetOrganizationId() string

func (*DeploymentPriceRequest) GetProjectId

func (m *DeploymentPriceRequest) GetProjectId() string

func (*DeploymentPriceRequest) GetSupportPlanId

func (m *DeploymentPriceRequest) GetSupportPlanId() string

func (*DeploymentPriceRequest) Marshal

func (m *DeploymentPriceRequest) Marshal() (dAtA []byte, err error)

func (*DeploymentPriceRequest) MarshalTo

func (m *DeploymentPriceRequest) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentPriceRequest) MarshalToSizedBuffer

func (m *DeploymentPriceRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentPriceRequest) ProtoMessage

func (*DeploymentPriceRequest) ProtoMessage()

func (*DeploymentPriceRequest) Reset

func (m *DeploymentPriceRequest) Reset()

func (*DeploymentPriceRequest) Size

func (m *DeploymentPriceRequest) Size() (n int)

func (*DeploymentPriceRequest) String

func (m *DeploymentPriceRequest) String() string

func (*DeploymentPriceRequest) Unmarshal

func (m *DeploymentPriceRequest) Unmarshal(dAtA []byte) error

func (*DeploymentPriceRequest) XXX_DiscardUnknown

func (m *DeploymentPriceRequest) XXX_DiscardUnknown()

func (*DeploymentPriceRequest) XXX_Marshal

func (m *DeploymentPriceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentPriceRequest) XXX_Merge

func (m *DeploymentPriceRequest) XXX_Merge(src proto.Message)

func (*DeploymentPriceRequest) XXX_Size

func (m *DeploymentPriceRequest) XXX_Size() int

func (*DeploymentPriceRequest) XXX_Unmarshal

func (m *DeploymentPriceRequest) XXX_Unmarshal(b []byte) error

type DeploymentPrice_BackupPrice

type DeploymentPrice_BackupPrice struct {
	// Price per GB/hour of uploaded backup storage
	PricePerGbPerHour    float32  `protobuf:"fixed32,1,opt,name=price_per_gb_per_hour,json=pricePerGbPerHour,proto3" json:"price_per_gb_per_hour,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeploymentPrice_BackupPrice) Descriptor

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

func (*DeploymentPrice_BackupPrice) GetPricePerGbPerHour

func (m *DeploymentPrice_BackupPrice) GetPricePerGbPerHour() float32

func (*DeploymentPrice_BackupPrice) Marshal

func (m *DeploymentPrice_BackupPrice) Marshal() (dAtA []byte, err error)

func (*DeploymentPrice_BackupPrice) MarshalTo

func (m *DeploymentPrice_BackupPrice) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentPrice_BackupPrice) MarshalToSizedBuffer

func (m *DeploymentPrice_BackupPrice) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentPrice_BackupPrice) ProtoMessage

func (*DeploymentPrice_BackupPrice) ProtoMessage()

func (*DeploymentPrice_BackupPrice) Reset

func (m *DeploymentPrice_BackupPrice) Reset()

func (*DeploymentPrice_BackupPrice) Size

func (m *DeploymentPrice_BackupPrice) Size() (n int)

func (*DeploymentPrice_BackupPrice) String

func (m *DeploymentPrice_BackupPrice) String() string

func (*DeploymentPrice_BackupPrice) Unmarshal

func (m *DeploymentPrice_BackupPrice) Unmarshal(dAtA []byte) error

func (*DeploymentPrice_BackupPrice) XXX_DiscardUnknown

func (m *DeploymentPrice_BackupPrice) XXX_DiscardUnknown()

func (*DeploymentPrice_BackupPrice) XXX_Marshal

func (m *DeploymentPrice_BackupPrice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentPrice_BackupPrice) XXX_Merge

func (m *DeploymentPrice_BackupPrice) XXX_Merge(src proto.Message)

func (*DeploymentPrice_BackupPrice) XXX_Size

func (m *DeploymentPrice_BackupPrice) XXX_Size() int

func (*DeploymentPrice_BackupPrice) XXX_Unmarshal

func (m *DeploymentPrice_BackupPrice) XXX_Unmarshal(b []byte) error

type DeploymentPrice_NetworkTransferPrice

type DeploymentPrice_NetworkTransferPrice struct {
	// Price per GB of network transfer into the database
	IngressPricePerGb float32 `protobuf:"fixed32,1,opt,name=ingress_price_per_gb,json=ingressPricePerGb,proto3" json:"ingress_price_per_gb,omitempty"`
	// Price per GB of network transfer out of the database
	EgressPricePerGb float32 `protobuf:"fixed32,2,opt,name=egress_price_per_gb,json=egressPricePerGb,proto3" json:"egress_price_per_gb,omitempty"`
	// Description of this price
	Description          string   `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeploymentPrice_NetworkTransferPrice) Descriptor

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

func (*DeploymentPrice_NetworkTransferPrice) GetDescription

func (m *DeploymentPrice_NetworkTransferPrice) GetDescription() string

func (*DeploymentPrice_NetworkTransferPrice) GetEgressPricePerGb

func (m *DeploymentPrice_NetworkTransferPrice) GetEgressPricePerGb() float32

func (*DeploymentPrice_NetworkTransferPrice) GetIngressPricePerGb

func (m *DeploymentPrice_NetworkTransferPrice) GetIngressPricePerGb() float32

func (*DeploymentPrice_NetworkTransferPrice) Marshal

func (m *DeploymentPrice_NetworkTransferPrice) Marshal() (dAtA []byte, err error)

func (*DeploymentPrice_NetworkTransferPrice) MarshalTo

func (m *DeploymentPrice_NetworkTransferPrice) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentPrice_NetworkTransferPrice) MarshalToSizedBuffer

func (m *DeploymentPrice_NetworkTransferPrice) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentPrice_NetworkTransferPrice) ProtoMessage

func (*DeploymentPrice_NetworkTransferPrice) ProtoMessage()

func (*DeploymentPrice_NetworkTransferPrice) Reset

func (*DeploymentPrice_NetworkTransferPrice) Size

func (*DeploymentPrice_NetworkTransferPrice) String

func (*DeploymentPrice_NetworkTransferPrice) Unmarshal

func (m *DeploymentPrice_NetworkTransferPrice) Unmarshal(dAtA []byte) error

func (*DeploymentPrice_NetworkTransferPrice) XXX_DiscardUnknown

func (m *DeploymentPrice_NetworkTransferPrice) XXX_DiscardUnknown()

func (*DeploymentPrice_NetworkTransferPrice) XXX_Marshal

func (m *DeploymentPrice_NetworkTransferPrice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentPrice_NetworkTransferPrice) XXX_Merge

func (*DeploymentPrice_NetworkTransferPrice) XXX_Size

func (*DeploymentPrice_NetworkTransferPrice) XXX_Unmarshal

func (m *DeploymentPrice_NetworkTransferPrice) XXX_Unmarshal(b []byte) error

type DeploymentSize

type DeploymentSize struct {
	// Number of agents
	Agents int32 `protobuf:"varint,1,opt,name=agents,proto3" json:"agents,omitempty"`
	// Amount of memory (in GB) to allocate for each agent.
	AgentMemorySize int32 `protobuf:"varint,2,opt,name=agent_memory_size,json=agentMemorySize,proto3" json:"agent_memory_size,omitempty"`
	// Amount of disk space (in GB) to allocate for each agent.
	AgentDiskSize int32 `protobuf:"varint,3,opt,name=agent_disk_size,json=agentDiskSize,proto3" json:"agent_disk_size,omitempty"`
	// Total (combined) amount of memory (in GB) used by all servers (agents, coordinators & dbservers)
	TotalMemorySize int32 `protobuf:"varint,11,opt,name=total_memory_size,json=totalMemorySize,proto3" json:"total_memory_size,omitempty"`
	// Total (combined) amount of disk space (in GB) used by all servers (agents & dbservers)
	TotalDiskSize int32 `protobuf:"varint,12,opt,name=total_disk_size,json=totalDiskSize,proto3" json:"total_disk_size,omitempty"`
	// Number of coordinators
	Coordinators int32 `protobuf:"varint,21,opt,name=coordinators,proto3" json:"coordinators,omitempty"`
	// Amount of memory (in GB) to allocate for each coordinator.
	CoordinatorMemorySize int32 `` /* 128-byte string literal not displayed */
	// Number of dbservers
	Dbservers int32 `protobuf:"varint,31,opt,name=dbservers,proto3" json:"dbservers,omitempty"`
	// Amount of memory (in GB) to allocate for each dbserver.
	DbserverMemorySize int32 `protobuf:"varint,32,opt,name=dbserver_memory_size,json=dbserverMemorySize,proto3" json:"dbserver_memory_size,omitempty"`
	// Amount of disk space (in GB) to allocate for each dbserver.
	DbserverDiskSize     int32    `protobuf:"varint,33,opt,name=dbserver_disk_size,json=dbserverDiskSize,proto3" json:"dbserver_disk_size,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Result of CalculateDeploymentSize

func (*DeploymentSize) Descriptor

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

func (*DeploymentSize) GetAgentDiskSize

func (m *DeploymentSize) GetAgentDiskSize() int32

func (*DeploymentSize) GetAgentMemorySize

func (m *DeploymentSize) GetAgentMemorySize() int32

func (*DeploymentSize) GetAgents

func (m *DeploymentSize) GetAgents() int32

func (*DeploymentSize) GetCoordinatorMemorySize added in v0.44.0

func (m *DeploymentSize) GetCoordinatorMemorySize() int32

func (*DeploymentSize) GetCoordinators added in v0.44.0

func (m *DeploymentSize) GetCoordinators() int32

func (*DeploymentSize) GetDbserverDiskSize added in v0.44.0

func (m *DeploymentSize) GetDbserverDiskSize() int32

func (*DeploymentSize) GetDbserverMemorySize added in v0.44.0

func (m *DeploymentSize) GetDbserverMemorySize() int32

func (*DeploymentSize) GetDbservers added in v0.44.0

func (m *DeploymentSize) GetDbservers() int32

func (*DeploymentSize) GetTotalDiskSize

func (m *DeploymentSize) GetTotalDiskSize() int32

func (*DeploymentSize) GetTotalMemorySize

func (m *DeploymentSize) GetTotalMemorySize() int32

func (*DeploymentSize) Marshal

func (m *DeploymentSize) Marshal() (dAtA []byte, err error)

func (*DeploymentSize) MarshalTo

func (m *DeploymentSize) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentSize) MarshalToSizedBuffer

func (m *DeploymentSize) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentSize) ProtoMessage

func (*DeploymentSize) ProtoMessage()

func (*DeploymentSize) Reset

func (m *DeploymentSize) Reset()

func (*DeploymentSize) Size

func (m *DeploymentSize) Size() (n int)

func (*DeploymentSize) String

func (m *DeploymentSize) String() string

func (*DeploymentSize) Unmarshal

func (m *DeploymentSize) Unmarshal(dAtA []byte) error

func (*DeploymentSize) XXX_DiscardUnknown

func (m *DeploymentSize) XXX_DiscardUnknown()

func (*DeploymentSize) XXX_Marshal

func (m *DeploymentSize) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentSize) XXX_Merge

func (m *DeploymentSize) XXX_Merge(src proto.Message)

func (*DeploymentSize) XXX_Size

func (m *DeploymentSize) XXX_Size() int

func (*DeploymentSize) XXX_Unmarshal

func (m *DeploymentSize) XXX_Unmarshal(b []byte) error

type DeploymentSizeRecommendation

type DeploymentSizeRecommendation struct {
	// Request that resulted in this recommendation.
	Request *DeploymentSizeRequest `protobuf:"bytes,1,opt,name=request,proto3" json:"request,omitempty"`
	// Time when the recommendation was made.
	CreatedAt *types.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Amount of memory space per node (in GB) being recommended
	NodeMemorySize int32 `protobuf:"varint,11,opt,name=node_memory_size,json=nodeMemorySize,proto3" json:"node_memory_size,omitempty"`
	// Amount of disk space per node (in GB) being recommended
	NodeDiskSize int32 `protobuf:"varint,12,opt,name=node_disk_size,json=nodeDiskSize,proto3" json:"node_disk_size,omitempty"`
	// Number of nodes being recommended
	NodeCount int32 `protobuf:"varint,13,opt,name=node_count,json=nodeCount,proto3" json:"node_count,omitempty"`
	// If set, this recommendation does not fit in
	// the callers quota.
	ExceedsQuota bool `protobuf:"varint,21,opt,name=exceeds_quota,json=exceedsQuota,proto3" json:"exceeds_quota,omitempty"`
	// If set, this recommendation does not fit in
	// the Oasis platform.
	ExceedsPlatform      bool     `protobuf:"varint,22,opt,name=exceeds_platform,json=exceedsPlatform,proto3" json:"exceeds_platform,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Response of RecommendDeploymentSize.

func (*DeploymentSizeRecommendation) Descriptor

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

func (*DeploymentSizeRecommendation) GetCreatedAt

func (m *DeploymentSizeRecommendation) GetCreatedAt() *types.Timestamp

func (*DeploymentSizeRecommendation) GetExceedsPlatform

func (m *DeploymentSizeRecommendation) GetExceedsPlatform() bool

func (*DeploymentSizeRecommendation) GetExceedsQuota

func (m *DeploymentSizeRecommendation) GetExceedsQuota() bool

func (*DeploymentSizeRecommendation) GetNodeCount

func (m *DeploymentSizeRecommendation) GetNodeCount() int32

func (*DeploymentSizeRecommendation) GetNodeDiskSize

func (m *DeploymentSizeRecommendation) GetNodeDiskSize() int32

func (*DeploymentSizeRecommendation) GetNodeMemorySize

func (m *DeploymentSizeRecommendation) GetNodeMemorySize() int32

func (*DeploymentSizeRecommendation) GetRequest

func (*DeploymentSizeRecommendation) Marshal

func (m *DeploymentSizeRecommendation) Marshal() (dAtA []byte, err error)

func (*DeploymentSizeRecommendation) MarshalTo

func (m *DeploymentSizeRecommendation) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentSizeRecommendation) MarshalToSizedBuffer

func (m *DeploymentSizeRecommendation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentSizeRecommendation) ProtoMessage

func (*DeploymentSizeRecommendation) ProtoMessage()

func (*DeploymentSizeRecommendation) Reset

func (m *DeploymentSizeRecommendation) Reset()

func (*DeploymentSizeRecommendation) Size

func (m *DeploymentSizeRecommendation) Size() (n int)

func (*DeploymentSizeRecommendation) String

func (*DeploymentSizeRecommendation) Unmarshal

func (m *DeploymentSizeRecommendation) Unmarshal(dAtA []byte) error

func (*DeploymentSizeRecommendation) XXX_DiscardUnknown

func (m *DeploymentSizeRecommendation) XXX_DiscardUnknown()

func (*DeploymentSizeRecommendation) XXX_Marshal

func (m *DeploymentSizeRecommendation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentSizeRecommendation) XXX_Merge

func (m *DeploymentSizeRecommendation) XXX_Merge(src proto.Message)

func (*DeploymentSizeRecommendation) XXX_Size

func (m *DeploymentSizeRecommendation) XXX_Size() int

func (*DeploymentSizeRecommendation) XXX_Unmarshal

func (m *DeploymentSizeRecommendation) XXX_Unmarshal(b []byte) error

type DeploymentSizeRequest

type DeploymentSizeRequest struct {
	// Size of entire dataset (on disk) in GB.
	// Required field.
	// Must be >= 1.
	DatasetSize int32 `protobuf:"varint,1,opt,name=dataset_size,json=datasetSize,proto3" json:"dataset_size,omitempty"`
	// Primary use case for the database
	// Possible values:
	// - GRAPH
	// - DOCUMENT
	// - MULTIMODEL
	// - KEYVALUE
	Usecase string `protobuf:"bytes,2,opt,name=usecase,proto3" json:"usecase,omitempty"`
	// Customer preferred model
	Model string `protobuf:"bytes,3,opt,name=model,proto3" json:"model,omitempty"`
	// File format on dataset
	// Possible values:
	// - JSON
	// - CSV
	FileFormat string `protobuf:"bytes,4,opt,name=file_format,json=fileFormat,proto3" json:"file_format,omitempty"`
	// Number of documents in the entire dataset (in case of JSON).
	// Number of rows in the entire dataset (in case of CSV).
	NumberOfDocuments int64 `protobuf:"varint,5,opt,name=number_of_documents,json=numberOfDocuments,proto3" json:"number_of_documents,omitempty"`
	// Largest number of columns of the dataset (in case of CSV).
	NumberOfColumns int32 `protobuf:"varint,6,opt,name=number_of_columns,json=numberOfColumns,proto3" json:"number_of_columns,omitempty"`
	// Percentage of dataset_size that is considered "hot"
	// Must be >= 0.0 and <= 1.0
	WorkingSetPercentage float32 `protobuf:"fixed32,7,opt,name=working_set_percentage,json=workingSetPercentage,proto3" json:"working_set_percentage,omitempty"`
	// Percentage of operations that are READ
	// Must be >= 0.0 and <= 1.0
	AccessReadPercentage float32 `protobuf:"fixed32,8,opt,name=access_read_percentage,json=accessReadPercentage,proto3" json:"access_read_percentage,omitempty"`
	// Percentage of operations that are CREATE
	// Must be >= 0.0 and <= 1.0
	AccessCreatePercentage float32 `` /* 131-byte string literal not displayed */
	// Percentage of operations that are UPDATE
	// Must be >= 0.0 and <= 1.0
	AccessUpdatePercentage float32 `` /* 132-byte string literal not displayed */
	// Increase factor of the dataset_size in 1 year.
	GrowthRate float32 `protobuf:"fixed32,11,opt,name=growth_rate,json=growthRate,proto3" json:"growth_rate,omitempty"`
	// Desired number of replicas.
	// Must be >= 3 and <= 5
	ReplicationFactor int32 `protobuf:"varint,12,opt,name=replication_factor,json=replicationFactor,proto3" json:"replication_factor,omitempty"`
	// Identifier of project to request a recommendation in
	ProjectId string `protobuf:"bytes,21,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// Identifier of region to request a recommendation in
	RegionId             string   `protobuf:"bytes,22,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for RecommendDeploymentSize.

func (*DeploymentSizeRequest) Descriptor

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

func (*DeploymentSizeRequest) GetAccessCreatePercentage

func (m *DeploymentSizeRequest) GetAccessCreatePercentage() float32

func (*DeploymentSizeRequest) GetAccessReadPercentage

func (m *DeploymentSizeRequest) GetAccessReadPercentage() float32

func (*DeploymentSizeRequest) GetAccessUpdatePercentage

func (m *DeploymentSizeRequest) GetAccessUpdatePercentage() float32

func (*DeploymentSizeRequest) GetDatasetSize

func (m *DeploymentSizeRequest) GetDatasetSize() int32

func (*DeploymentSizeRequest) GetFileFormat

func (m *DeploymentSizeRequest) GetFileFormat() string

func (*DeploymentSizeRequest) GetGrowthRate

func (m *DeploymentSizeRequest) GetGrowthRate() float32

func (*DeploymentSizeRequest) GetModel

func (m *DeploymentSizeRequest) GetModel() string

func (*DeploymentSizeRequest) GetNumberOfColumns

func (m *DeploymentSizeRequest) GetNumberOfColumns() int32

func (*DeploymentSizeRequest) GetNumberOfDocuments

func (m *DeploymentSizeRequest) GetNumberOfDocuments() int64

func (*DeploymentSizeRequest) GetProjectId

func (m *DeploymentSizeRequest) GetProjectId() string

func (*DeploymentSizeRequest) GetRegionId

func (m *DeploymentSizeRequest) GetRegionId() string

func (*DeploymentSizeRequest) GetReplicationFactor

func (m *DeploymentSizeRequest) GetReplicationFactor() int32

func (*DeploymentSizeRequest) GetUsecase

func (m *DeploymentSizeRequest) GetUsecase() string

func (*DeploymentSizeRequest) GetWorkingSetPercentage

func (m *DeploymentSizeRequest) GetWorkingSetPercentage() float32

func (*DeploymentSizeRequest) Marshal

func (m *DeploymentSizeRequest) Marshal() (dAtA []byte, err error)

func (*DeploymentSizeRequest) MarshalTo

func (m *DeploymentSizeRequest) MarshalTo(dAtA []byte) (int, error)

func (*DeploymentSizeRequest) MarshalToSizedBuffer

func (m *DeploymentSizeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentSizeRequest) ProtoMessage

func (*DeploymentSizeRequest) ProtoMessage()

func (*DeploymentSizeRequest) Reset

func (m *DeploymentSizeRequest) Reset()

func (*DeploymentSizeRequest) Size

func (m *DeploymentSizeRequest) Size() (n int)

func (*DeploymentSizeRequest) String

func (m *DeploymentSizeRequest) String() string

func (*DeploymentSizeRequest) Unmarshal

func (m *DeploymentSizeRequest) Unmarshal(dAtA []byte) error

func (*DeploymentSizeRequest) XXX_DiscardUnknown

func (m *DeploymentSizeRequest) XXX_DiscardUnknown()

func (*DeploymentSizeRequest) XXX_Marshal

func (m *DeploymentSizeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentSizeRequest) XXX_Merge

func (m *DeploymentSizeRequest) XXX_Merge(src proto.Message)

func (*DeploymentSizeRequest) XXX_Size

func (m *DeploymentSizeRequest) XXX_Size() int

func (*DeploymentSizeRequest) XXX_Unmarshal

func (m *DeploymentSizeRequest) XXX_Unmarshal(b []byte) error

type Deployment_BackupRestoreSpec

type Deployment_BackupRestoreSpec struct {
	// The revision of this BackupRestoreSpec
	Revision int32 `protobuf:"varint,1,opt,name=revision,proto3" json:"revision,omitempty"`
	// The timestamp of when the last revision has been updated.
	LastUpdatedAt *types.Timestamp `protobuf:"bytes,2,opt,name=last_updated_at,json=lastUpdatedAt,proto3" json:"last_updated_at,omitempty"`
	// Identifier of a backup to restore to.
	BackupId             string   `protobuf:"bytes,10,opt,name=backup_id,json=backupId,proto3" json:"backup_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Information about a backup restore. All members of this message are read-only.

func (*Deployment_BackupRestoreSpec) Descriptor

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

func (*Deployment_BackupRestoreSpec) Equals

Equals returns true when source & other have the same values

func (*Deployment_BackupRestoreSpec) GetBackupId

func (m *Deployment_BackupRestoreSpec) GetBackupId() string

func (*Deployment_BackupRestoreSpec) GetLastUpdatedAt

func (m *Deployment_BackupRestoreSpec) GetLastUpdatedAt() *types.Timestamp

func (*Deployment_BackupRestoreSpec) GetRevision

func (m *Deployment_BackupRestoreSpec) GetRevision() int32

func (*Deployment_BackupRestoreSpec) Marshal

func (m *Deployment_BackupRestoreSpec) Marshal() (dAtA []byte, err error)

func (*Deployment_BackupRestoreSpec) MarshalTo

func (m *Deployment_BackupRestoreSpec) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_BackupRestoreSpec) MarshalToSizedBuffer

func (m *Deployment_BackupRestoreSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_BackupRestoreSpec) ProtoMessage

func (*Deployment_BackupRestoreSpec) ProtoMessage()

func (*Deployment_BackupRestoreSpec) Reset

func (m *Deployment_BackupRestoreSpec) Reset()

func (*Deployment_BackupRestoreSpec) Size

func (m *Deployment_BackupRestoreSpec) Size() (n int)

func (*Deployment_BackupRestoreSpec) String

func (*Deployment_BackupRestoreSpec) Unmarshal

func (m *Deployment_BackupRestoreSpec) Unmarshal(dAtA []byte) error

func (*Deployment_BackupRestoreSpec) XXX_DiscardUnknown

func (m *Deployment_BackupRestoreSpec) XXX_DiscardUnknown()

func (*Deployment_BackupRestoreSpec) XXX_Marshal

func (m *Deployment_BackupRestoreSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_BackupRestoreSpec) XXX_Merge

func (m *Deployment_BackupRestoreSpec) XXX_Merge(src proto.Message)

func (*Deployment_BackupRestoreSpec) XXX_Size

func (m *Deployment_BackupRestoreSpec) XXX_Size() int

func (*Deployment_BackupRestoreSpec) XXX_Unmarshal

func (m *Deployment_BackupRestoreSpec) XXX_Unmarshal(b []byte) error

type Deployment_BackupRestoreStatus

type Deployment_BackupRestoreStatus struct {
	// The revision of the used BackupRestoreSpec
	Revision int32 `protobuf:"varint,1,opt,name=revision,proto3" json:"revision,omitempty"`
	// Set if the deployment is preparing or restoring a backup
	Restoring bool `protobuf:"varint,10,opt,name=restoring,proto3" json:"restoring,omitempty"`
	// Status of the restore backup operation.
	// Enum of the following values: "<empty>|Preparing|Restoring|Restored|Failed"
	Status string `protobuf:"bytes,11,opt,name=status,proto3" json:"status,omitempty"`
	// Failure reason of the backup restore (if applicable)
	FailureReason        string   `protobuf:"bytes,12,opt,name=failure_reason,json=failureReason,proto3" json:"failure_reason,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

The status of backup restore All members of this message are read-only.

func (*Deployment_BackupRestoreStatus) Descriptor

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

func (*Deployment_BackupRestoreStatus) Equals

Equals returns true when source & other have the same values

func (*Deployment_BackupRestoreStatus) GetFailureReason

func (m *Deployment_BackupRestoreStatus) GetFailureReason() string

func (*Deployment_BackupRestoreStatus) GetRestoring

func (m *Deployment_BackupRestoreStatus) GetRestoring() bool

func (*Deployment_BackupRestoreStatus) GetRevision

func (m *Deployment_BackupRestoreStatus) GetRevision() int32

func (*Deployment_BackupRestoreStatus) GetStatus

func (m *Deployment_BackupRestoreStatus) GetStatus() string

func (*Deployment_BackupRestoreStatus) Marshal

func (m *Deployment_BackupRestoreStatus) Marshal() (dAtA []byte, err error)

func (*Deployment_BackupRestoreStatus) MarshalTo

func (m *Deployment_BackupRestoreStatus) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_BackupRestoreStatus) MarshalToSizedBuffer

func (m *Deployment_BackupRestoreStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_BackupRestoreStatus) ProtoMessage

func (*Deployment_BackupRestoreStatus) ProtoMessage()

func (*Deployment_BackupRestoreStatus) Reset

func (m *Deployment_BackupRestoreStatus) Reset()

func (*Deployment_BackupRestoreStatus) Size

func (m *Deployment_BackupRestoreStatus) Size() (n int)

func (*Deployment_BackupRestoreStatus) String

func (*Deployment_BackupRestoreStatus) Unmarshal

func (m *Deployment_BackupRestoreStatus) Unmarshal(dAtA []byte) error

func (*Deployment_BackupRestoreStatus) XXX_DiscardUnknown

func (m *Deployment_BackupRestoreStatus) XXX_DiscardUnknown()

func (*Deployment_BackupRestoreStatus) XXX_Marshal

func (m *Deployment_BackupRestoreStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_BackupRestoreStatus) XXX_Merge

func (m *Deployment_BackupRestoreStatus) XXX_Merge(src proto.Message)

func (*Deployment_BackupRestoreStatus) XXX_Size

func (m *Deployment_BackupRestoreStatus) XXX_Size() int

func (*Deployment_BackupRestoreStatus) XXX_Unmarshal

func (m *Deployment_BackupRestoreStatus) XXX_Unmarshal(b []byte) error

type Deployment_CertificateSpec

type Deployment_CertificateSpec struct {
	// Identifier of the CACertificate used to sign TLS certificates for the deployment.
	// If you change this value after the creation of the deployment a complete
	// rotation of the deployment is required, which will result in some downtime.
	CaCertificateId string `protobuf:"bytes,1,opt,name=ca_certificate_id,json=caCertificateId,proto3" json:"ca_certificate_id,omitempty"`
	// Zero or more DNS names to include in the TLS certificate of the deployment.
	AlternateDnsNames    []string `protobuf:"bytes,2,rep,name=alternate_dns_names,json=alternateDnsNames,proto3" json:"alternate_dns_names,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Deployment_CertificateSpec) Descriptor

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

func (*Deployment_CertificateSpec) Equals

Equals returns true when source & other have the same values

func (*Deployment_CertificateSpec) GetAlternateDnsNames

func (m *Deployment_CertificateSpec) GetAlternateDnsNames() []string

func (*Deployment_CertificateSpec) GetCaCertificateId

func (m *Deployment_CertificateSpec) GetCaCertificateId() string

func (*Deployment_CertificateSpec) Marshal

func (m *Deployment_CertificateSpec) Marshal() (dAtA []byte, err error)

func (*Deployment_CertificateSpec) MarshalTo

func (m *Deployment_CertificateSpec) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_CertificateSpec) MarshalToSizedBuffer

func (m *Deployment_CertificateSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_CertificateSpec) ProtoMessage

func (*Deployment_CertificateSpec) ProtoMessage()

func (*Deployment_CertificateSpec) Reset

func (m *Deployment_CertificateSpec) Reset()

func (*Deployment_CertificateSpec) Size

func (m *Deployment_CertificateSpec) Size() (n int)

func (*Deployment_CertificateSpec) String

func (m *Deployment_CertificateSpec) String() string

func (*Deployment_CertificateSpec) Unmarshal

func (m *Deployment_CertificateSpec) Unmarshal(dAtA []byte) error

func (*Deployment_CertificateSpec) XXX_DiscardUnknown

func (m *Deployment_CertificateSpec) XXX_DiscardUnknown()

func (*Deployment_CertificateSpec) XXX_Marshal

func (m *Deployment_CertificateSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_CertificateSpec) XXX_Merge

func (m *Deployment_CertificateSpec) XXX_Merge(src proto.Message)

func (*Deployment_CertificateSpec) XXX_Size

func (m *Deployment_CertificateSpec) XXX_Size() int

func (*Deployment_CertificateSpec) XXX_Unmarshal

func (m *Deployment_CertificateSpec) XXX_Unmarshal(b []byte) error

type Deployment_Expiration

type Deployment_Expiration struct {
	// The expiration timestamp of the deployment
	// If not set, the deployment will not expire.
	ExpiresAt *types.Timestamp `protobuf:"bytes,1,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	// Human readable reason for why the deployment expires (or does not expire).
	Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	// The timestamp of when the last "this deployment will expire at" email was
	// send.
	// If not set, no such email has been send.
	LastWarningEmailSendAt *types.Timestamp `` /* 133-byte string literal not displayed */
	// List of email addresses to which the last warning email has been send.
	// Not set when no such email has been send.
	LastWarningEmailSendTo []string `` /* 133-byte string literal not displayed */
	XXX_NoUnkeyedLiteral   struct{} `json:"-"`
	XXX_unrecognized       []byte   `json:"-"`
	XXX_sizecache          int32    `json:"-"`
}

Expiration of the deployment. All members of this message are read-only.

func (*Deployment_Expiration) Descriptor

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

func (*Deployment_Expiration) GetExpiresAt

func (m *Deployment_Expiration) GetExpiresAt() *types.Timestamp

func (*Deployment_Expiration) GetLastWarningEmailSendAt

func (m *Deployment_Expiration) GetLastWarningEmailSendAt() *types.Timestamp

func (*Deployment_Expiration) GetLastWarningEmailSendTo

func (m *Deployment_Expiration) GetLastWarningEmailSendTo() []string

func (*Deployment_Expiration) GetReason

func (m *Deployment_Expiration) GetReason() string

func (*Deployment_Expiration) Marshal

func (m *Deployment_Expiration) Marshal() (dAtA []byte, err error)

func (*Deployment_Expiration) MarshalTo

func (m *Deployment_Expiration) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_Expiration) MarshalToSizedBuffer

func (m *Deployment_Expiration) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_Expiration) ProtoMessage

func (*Deployment_Expiration) ProtoMessage()

func (*Deployment_Expiration) Reset

func (m *Deployment_Expiration) Reset()

func (*Deployment_Expiration) Size

func (m *Deployment_Expiration) Size() (n int)

func (*Deployment_Expiration) String

func (m *Deployment_Expiration) String() string

func (*Deployment_Expiration) Unmarshal

func (m *Deployment_Expiration) Unmarshal(dAtA []byte) error

func (*Deployment_Expiration) XXX_DiscardUnknown

func (m *Deployment_Expiration) XXX_DiscardUnknown()

func (*Deployment_Expiration) XXX_Marshal

func (m *Deployment_Expiration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_Expiration) XXX_Merge

func (m *Deployment_Expiration) XXX_Merge(src proto.Message)

func (*Deployment_Expiration) XXX_Size

func (m *Deployment_Expiration) XXX_Size() int

func (*Deployment_Expiration) XXX_Unmarshal

func (m *Deployment_Expiration) XXX_Unmarshal(b []byte) error

type Deployment_ModelSpec

type Deployment_ModelSpec struct {
	// Type of model being used
	Model string `protobuf:"bytes,1,opt,name=model,proto3" json:"model,omitempty"`
	// Size of nodes being used
	// This field is ignored set in case the flexible model is used.
	NodeSizeId string `protobuf:"bytes,2,opt,name=node_size_id,json=nodeSizeId,proto3" json:"node_size_id,omitempty"`
	// Number of nodes being used
	// This field is ignored set in case the flexible model is used.
	NodeCount int32 `protobuf:"varint,3,opt,name=node_count,json=nodeCount,proto3" json:"node_count,omitempty"`
	// Amount of disk space per node (in GB)
	// This field is ignored set in case the flexible model is used.
	NodeDiskSize         int32    `protobuf:"varint,4,opt,name=node_disk_size,json=nodeDiskSize,proto3" json:"node_disk_size,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Deployment_ModelSpec) Descriptor

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

func (*Deployment_ModelSpec) GetModel

func (m *Deployment_ModelSpec) GetModel() string

func (*Deployment_ModelSpec) GetNodeCount

func (m *Deployment_ModelSpec) GetNodeCount() int32

func (*Deployment_ModelSpec) GetNodeDiskSize

func (m *Deployment_ModelSpec) GetNodeDiskSize() int32

func (*Deployment_ModelSpec) GetNodeSizeId

func (m *Deployment_ModelSpec) GetNodeSizeId() string

func (*Deployment_ModelSpec) Marshal

func (m *Deployment_ModelSpec) Marshal() (dAtA []byte, err error)

func (*Deployment_ModelSpec) MarshalTo

func (m *Deployment_ModelSpec) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_ModelSpec) MarshalToSizedBuffer

func (m *Deployment_ModelSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_ModelSpec) ProtoMessage

func (*Deployment_ModelSpec) ProtoMessage()

func (*Deployment_ModelSpec) Reset

func (m *Deployment_ModelSpec) Reset()

func (*Deployment_ModelSpec) Size

func (m *Deployment_ModelSpec) Size() (n int)

func (*Deployment_ModelSpec) String

func (m *Deployment_ModelSpec) String() string

func (*Deployment_ModelSpec) Unmarshal

func (m *Deployment_ModelSpec) Unmarshal(dAtA []byte) error

func (*Deployment_ModelSpec) XXX_DiscardUnknown

func (m *Deployment_ModelSpec) XXX_DiscardUnknown()

func (*Deployment_ModelSpec) XXX_Marshal

func (m *Deployment_ModelSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_ModelSpec) XXX_Merge

func (m *Deployment_ModelSpec) XXX_Merge(src proto.Message)

func (*Deployment_ModelSpec) XXX_Size

func (m *Deployment_ModelSpec) XXX_Size() int

func (*Deployment_ModelSpec) XXX_Unmarshal

func (m *Deployment_ModelSpec) XXX_Unmarshal(b []byte) error

type Deployment_ServerStatus

type Deployment_ServerStatus struct {
	// ID of the server
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Type of server (agent|coordinator|dbserver)
	Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	// Human readable description of the status of the deployment.
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// The creation timestamp of the server
	CreatedAt *types.Timestamp `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Set once the server is ready
	Ready bool `protobuf:"varint,5,opt,name=ready,proto3" json:"ready,omitempty"`
	// Set once the server has been known to be a member of the cluster
	MemberOfCluster bool `protobuf:"varint,6,opt,name=member_of_cluster,json=memberOfCluster,proto3" json:"member_of_cluster,omitempty"`
	// Set if the server is in a failed state
	// Every server is always in 1 (and only 1) of these states: failed/creating/ok/bad/upgrading.
	Failed bool `protobuf:"varint,7,opt,name=failed,proto3" json:"failed,omitempty"`
	// Set if the server is still being created
	// Every server is always in 1 (and only 1) of these states: failed/creating/ok/bad/upgrading.
	Creating bool `protobuf:"varint,8,opt,name=creating,proto3" json:"creating,omitempty"`
	// Set if the server is in the ok state.
	// Every server is always in 1 (and only 1) of these states: failed/creating/ok/bad/upgrading.
	Ok bool `protobuf:"varint,9,opt,name=ok,proto3" json:"ok,omitempty"`
	// Set if the server is in the bad state.
	// Every server is always in 1 (and only 1) of these states: failed/creating/ok/bad/upgrading.
	Bad bool `protobuf:"varint,14,opt,name=bad,proto3" json:"bad,omitempty"`
	// Set if the server is still being upgraded
	// Every server is always in 1 (and only 1) of these states: failed/creating/ok/bad/upgrading.
	Upgrading bool `protobuf:"varint,10,opt,name=upgrading,proto3" json:"upgrading,omitempty"`
	// Latest known ArangoDB version used by this server.
	// Initially this field is empty.
	Version string `protobuf:"bytes,11,opt,name=version,proto3" json:"version,omitempty"`
	// The last started timestamp of the server
	LastStartedAt *types.Timestamp `protobuf:"bytes,12,opt,name=last_started_at,json=lastStartedAt,proto3" json:"last_started_at,omitempty"`
	// If set, a rotation of this server has been requested.
	RotationPending bool `protobuf:"varint,13,opt,name=rotation_pending,json=rotationPending,proto3" json:"rotation_pending,omitempty"`
	// If set, this server reports that it can be deleted.
	CanBeDeleted bool `protobuf:"varint,15,opt,name=can_be_deleted,json=canBeDeleted,proto3" json:"can_be_deleted,omitempty"`
	// If set, this server is leader in its type (currently applies only to agents).
	IsLeader bool `protobuf:"varint,16,opt,name=is_leader,json=isLeader,proto3" json:"is_leader,omitempty"`
	// Information about the data volume used to store the data
	DataVolumeInfo *DataVolumeInfo `protobuf:"bytes,20,opt,name=data_volume_info,json=dataVolumeInfo,proto3" json:"data_volume_info,omitempty"`
	// Recent number of restarts
	RecentRestarts int32 `protobuf:"varint,30,opt,name=recent_restarts,json=recentRestarts,proto3" json:"recent_restarts,omitempty"`
	// Last known memory usage in bytes
	LastMemoryUsage int64 `protobuf:"varint,31,opt,name=last_memory_usage,json=lastMemoryUsage,proto3" json:"last_memory_usage,omitempty"`
	// Last known CPU usage in vCPU units
	LastCpuUsage         float32  `protobuf:"fixed32,32,opt,name=last_cpu_usage,json=lastCpuUsage,proto3" json:"last_cpu_usage,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Status of a single server (of the ArangoDB cluster)

func (*Deployment_ServerStatus) Clone

Clone creates a deep clone of the given source

func (*Deployment_ServerStatus) Descriptor

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

func (*Deployment_ServerStatus) GetBad added in v0.45.1

func (m *Deployment_ServerStatus) GetBad() bool

func (*Deployment_ServerStatus) GetCanBeDeleted added in v0.45.1

func (m *Deployment_ServerStatus) GetCanBeDeleted() bool

func (*Deployment_ServerStatus) GetCreatedAt

func (m *Deployment_ServerStatus) GetCreatedAt() *types.Timestamp

func (*Deployment_ServerStatus) GetCreating

func (m *Deployment_ServerStatus) GetCreating() bool

func (*Deployment_ServerStatus) GetDataVolumeInfo

func (m *Deployment_ServerStatus) GetDataVolumeInfo() *DataVolumeInfo

func (*Deployment_ServerStatus) GetDescription

func (m *Deployment_ServerStatus) GetDescription() string

func (*Deployment_ServerStatus) GetFailed

func (m *Deployment_ServerStatus) GetFailed() bool

func (*Deployment_ServerStatus) GetId

func (m *Deployment_ServerStatus) GetId() string

func (*Deployment_ServerStatus) GetIsLeader added in v0.48.2

func (m *Deployment_ServerStatus) GetIsLeader() bool

func (*Deployment_ServerStatus) GetLastCpuUsage added in v0.46.0

func (m *Deployment_ServerStatus) GetLastCpuUsage() float32

func (*Deployment_ServerStatus) GetLastMemoryUsage added in v0.46.0

func (m *Deployment_ServerStatus) GetLastMemoryUsage() int64

func (*Deployment_ServerStatus) GetLastStartedAt added in v0.40.2

func (m *Deployment_ServerStatus) GetLastStartedAt() *types.Timestamp

func (*Deployment_ServerStatus) GetMemberOfCluster

func (m *Deployment_ServerStatus) GetMemberOfCluster() bool

func (*Deployment_ServerStatus) GetOk

func (m *Deployment_ServerStatus) GetOk() bool

func (*Deployment_ServerStatus) GetReady

func (m *Deployment_ServerStatus) GetReady() bool

func (*Deployment_ServerStatus) GetRecentRestarts added in v0.46.0

func (m *Deployment_ServerStatus) GetRecentRestarts() int32

func (*Deployment_ServerStatus) GetRotationPending added in v0.43.12

func (m *Deployment_ServerStatus) GetRotationPending() bool

func (*Deployment_ServerStatus) GetType

func (m *Deployment_ServerStatus) GetType() string

func (*Deployment_ServerStatus) GetUpgrading

func (m *Deployment_ServerStatus) GetUpgrading() bool

func (*Deployment_ServerStatus) GetVersion

func (m *Deployment_ServerStatus) GetVersion() string

func (*Deployment_ServerStatus) Marshal

func (m *Deployment_ServerStatus) Marshal() (dAtA []byte, err error)

func (*Deployment_ServerStatus) MarshalTo

func (m *Deployment_ServerStatus) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_ServerStatus) MarshalToSizedBuffer

func (m *Deployment_ServerStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_ServerStatus) ProtoMessage

func (*Deployment_ServerStatus) ProtoMessage()

func (*Deployment_ServerStatus) Reset

func (m *Deployment_ServerStatus) Reset()

func (*Deployment_ServerStatus) Size

func (m *Deployment_ServerStatus) Size() (n int)

func (*Deployment_ServerStatus) String

func (m *Deployment_ServerStatus) String() string

func (*Deployment_ServerStatus) Unmarshal

func (m *Deployment_ServerStatus) Unmarshal(dAtA []byte) error

func (*Deployment_ServerStatus) XXX_DiscardUnknown

func (m *Deployment_ServerStatus) XXX_DiscardUnknown()

func (*Deployment_ServerStatus) XXX_Marshal

func (m *Deployment_ServerStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_ServerStatus) XXX_Merge

func (m *Deployment_ServerStatus) XXX_Merge(src proto.Message)

func (*Deployment_ServerStatus) XXX_Size

func (m *Deployment_ServerStatus) XXX_Size() int

func (*Deployment_ServerStatus) XXX_Unmarshal

func (m *Deployment_ServerStatus) XXX_Unmarshal(b []byte) error

type Deployment_ServersSpec

type Deployment_ServersSpec struct {
	// Number of coordinators of the deployment
	// This field is automatically set unless the flexible model is used.
	Coordinators int32 `protobuf:"varint,1,opt,name=coordinators,proto3" json:"coordinators,omitempty"`
	// Amount of memory (in GB) to allocate for coordinators.
	// This field is automatically set unless the flexible model is used.
	CoordinatorMemorySize int32 `` /* 127-byte string literal not displayed */
	// Custom command line arguments passed to all coordinators.
	// This field is ignored set unless the flexible model is used.
	CoordinatorArgs []string `protobuf:"bytes,3,rep,name=coordinator_args,json=coordinatorArgs,proto3" json:"coordinator_args,omitempty"`
	// Number of dbservers of the deployment
	// This field is automatically set unless the flexible model is used.
	Dbservers int32 `protobuf:"varint,11,opt,name=dbservers,proto3" json:"dbservers,omitempty"`
	// Amount of memory (in GB) to allocate for dbservers.
	// This field is automatically set unless the flexible model is used.
	DbserverMemorySize int32 `protobuf:"varint,12,opt,name=dbserver_memory_size,json=dbserverMemorySize,proto3" json:"dbserver_memory_size,omitempty"`
	// Amount of disk space (in GB) to allocate for dbservers.
	// This field is automatically set unless the flexible model is used.
	DbserverDiskSize int32 `protobuf:"varint,13,opt,name=dbserver_disk_size,json=dbserverDiskSize,proto3" json:"dbserver_disk_size,omitempty"`
	// Custom command line arguments passed to all dbservers.
	// This field is ignored set unless the flexible model is used.
	DbserverArgs []string `protobuf:"bytes,14,rep,name=dbserver_args,json=dbserverArgs,proto3" json:"dbserver_args,omitempty"`
	// The minimum number of dbservers based on the highest replication factor
	// defined by all databases and all collections.
	MinimumDbserversCount int32    `` /* 128-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*Deployment_ServersSpec) Descriptor

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

func (*Deployment_ServersSpec) Equals

func (source *Deployment_ServersSpec) Equals(other *Deployment_ServersSpec) bool

Equals returns true when source & other have the same values

func (*Deployment_ServersSpec) GetCoordinatorArgs

func (m *Deployment_ServersSpec) GetCoordinatorArgs() []string

func (*Deployment_ServersSpec) GetCoordinatorMemorySize

func (m *Deployment_ServersSpec) GetCoordinatorMemorySize() int32

func (*Deployment_ServersSpec) GetCoordinators

func (m *Deployment_ServersSpec) GetCoordinators() int32

func (*Deployment_ServersSpec) GetDbserverArgs

func (m *Deployment_ServersSpec) GetDbserverArgs() []string

func (*Deployment_ServersSpec) GetDbserverDiskSize

func (m *Deployment_ServersSpec) GetDbserverDiskSize() int32

func (*Deployment_ServersSpec) GetDbserverMemorySize

func (m *Deployment_ServersSpec) GetDbserverMemorySize() int32

func (*Deployment_ServersSpec) GetDbservers

func (m *Deployment_ServersSpec) GetDbservers() int32

func (*Deployment_ServersSpec) GetMinimumDbserversCount added in v0.43.2

func (m *Deployment_ServersSpec) GetMinimumDbserversCount() int32

func (*Deployment_ServersSpec) Marshal

func (m *Deployment_ServersSpec) Marshal() (dAtA []byte, err error)

func (*Deployment_ServersSpec) MarshalTo

func (m *Deployment_ServersSpec) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_ServersSpec) MarshalToSizedBuffer

func (m *Deployment_ServersSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_ServersSpec) ProtoMessage

func (*Deployment_ServersSpec) ProtoMessage()

func (*Deployment_ServersSpec) Reset

func (m *Deployment_ServersSpec) Reset()

func (*Deployment_ServersSpec) Size

func (m *Deployment_ServersSpec) Size() (n int)

func (*Deployment_ServersSpec) String

func (m *Deployment_ServersSpec) String() string

func (*Deployment_ServersSpec) Unmarshal

func (m *Deployment_ServersSpec) Unmarshal(dAtA []byte) error

func (*Deployment_ServersSpec) XXX_DiscardUnknown

func (m *Deployment_ServersSpec) XXX_DiscardUnknown()

func (*Deployment_ServersSpec) XXX_Marshal

func (m *Deployment_ServersSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_ServersSpec) XXX_Merge

func (m *Deployment_ServersSpec) XXX_Merge(src proto.Message)

func (*Deployment_ServersSpec) XXX_Size

func (m *Deployment_ServersSpec) XXX_Size() int

func (*Deployment_ServersSpec) XXX_Unmarshal

func (m *Deployment_ServersSpec) XXX_Unmarshal(b []byte) error

type Deployment_Status

type Deployment_Status struct {
	// Endpoint URL used to reach the deployment
	// This value will be empty during the creation of the deployment.
	// This field always contains the URL of the low port (8529) of the
	// deployment.
	// If a certificate with well known certificate is used, this
	// port is using the well known certificate.
	// Otherwise this port is using the self-signed certificate.
	// This endpoint is recommended for human-to-database connections.
	Endpoint string `protobuf:"bytes,1,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	// Human readable description of the status of the deployment.
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// Set once the deployment has been created.
	Created bool `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	// Set if the deployment is ready to be used.
	// If the deployment has downtime (e.g. because of changing a CA certificate)
	// this will go to false until the downtime is over.
	Ready bool `protobuf:"varint,4,opt,name=ready,proto3" json:"ready,omitempty"`
	// Set if the deployment is being upgraded.
	Upgrading bool `protobuf:"varint,5,opt,name=upgrading,proto3" json:"upgrading,omitempty"`
	// Versions of running servers
	ServerVersions []string `protobuf:"bytes,6,rep,name=server_versions,json=serverVersions,proto3" json:"server_versions,omitempty"`
	// Status of individual servers of the deployment
	Servers []*Deployment_ServerStatus `protobuf:"bytes,7,rep,name=servers,proto3" json:"servers,omitempty"`
	// Set if the ready boolean is transitioned to true for the very first time.
	BootstrappedAt *types.Timestamp `protobuf:"bytes,8,opt,name=bootstrapped_at,json=bootstrappedAt,proto3" json:"bootstrapped_at,omitempty"`
	// Set if bootstrapped_at has a value, otherwise false.
	Bootstrapped bool `protobuf:"varint,9,opt,name=bootstrapped,proto3" json:"bootstrapped,omitempty"`
	// Endpoint URL used to reach the deployment on the port that uses
	// the self-signed certificate.
	// This endpoint is recommended for machine-to-database connections.
	EndpointSelfSigned string `protobuf:"bytes,10,opt,name=endpoint_self_signed,json=endpointSelfSigned,proto3" json:"endpoint_self_signed,omitempty"`
	// The status of backup restore (if applicable).
	// This field will be set to empty if a new revision of the spec is available
	BackupRestoreStatus *Deployment_BackupRestoreStatus `protobuf:"bytes,100,opt,name=backup_restore_status,json=backupRestoreStatus,proto3" json:"backup_restore_status,omitempty"`
	// The total size of all backups in the external source (in bytes)
	TotalBackupSizeBytes int64 `` /* 128-byte string literal not displayed */
	// Set if there is any backup currently uploading data to the external source
	BackupUploadInProgress bool     `` /* 134-byte string literal not displayed */
	XXX_NoUnkeyedLiteral   struct{} `json:"-"`
	XXX_unrecognized       []byte   `json:"-"`
	XXX_sizecache          int32    `json:"-"`
}

Status of the deployment All members of this field are read-only.

func (*Deployment_Status) Clone

Clone creates a deep clone of the given source

func (*Deployment_Status) Descriptor

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

func (*Deployment_Status) GetBackupRestoreStatus

func (m *Deployment_Status) GetBackupRestoreStatus() *Deployment_BackupRestoreStatus

func (*Deployment_Status) GetBackupUploadInProgress

func (m *Deployment_Status) GetBackupUploadInProgress() bool

func (*Deployment_Status) GetBootstrapped

func (m *Deployment_Status) GetBootstrapped() bool

func (*Deployment_Status) GetBootstrappedAt

func (m *Deployment_Status) GetBootstrappedAt() *types.Timestamp

func (*Deployment_Status) GetCreated

func (m *Deployment_Status) GetCreated() bool

func (*Deployment_Status) GetDescription

func (m *Deployment_Status) GetDescription() string

func (*Deployment_Status) GetEndpoint

func (m *Deployment_Status) GetEndpoint() string

func (*Deployment_Status) GetEndpointSelfSigned

func (m *Deployment_Status) GetEndpointSelfSigned() string

func (*Deployment_Status) GetReady

func (m *Deployment_Status) GetReady() bool

func (*Deployment_Status) GetServerVersions

func (m *Deployment_Status) GetServerVersions() []string

func (*Deployment_Status) GetServers

func (m *Deployment_Status) GetServers() []*Deployment_ServerStatus

func (*Deployment_Status) GetTotalBackupSizeBytes

func (m *Deployment_Status) GetTotalBackupSizeBytes() int64

func (*Deployment_Status) GetUpgrading

func (m *Deployment_Status) GetUpgrading() bool

func (*Deployment_Status) Marshal

func (m *Deployment_Status) Marshal() (dAtA []byte, err error)

func (*Deployment_Status) MarshalTo

func (m *Deployment_Status) MarshalTo(dAtA []byte) (int, error)

func (*Deployment_Status) MarshalToSizedBuffer

func (m *Deployment_Status) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment_Status) ProtoMessage

func (*Deployment_Status) ProtoMessage()

func (*Deployment_Status) Reset

func (m *Deployment_Status) Reset()

func (*Deployment_Status) Size

func (m *Deployment_Status) Size() (n int)

func (*Deployment_Status) String

func (m *Deployment_Status) String() string

func (*Deployment_Status) Unmarshal

func (m *Deployment_Status) Unmarshal(dAtA []byte) error

func (*Deployment_Status) XXX_DiscardUnknown

func (m *Deployment_Status) XXX_DiscardUnknown()

func (*Deployment_Status) XXX_Marshal

func (m *Deployment_Status) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment_Status) XXX_Merge

func (m *Deployment_Status) XXX_Merge(src proto.Message)

func (*Deployment_Status) XXX_Size

func (m *Deployment_Status) XXX_Size() int

func (*Deployment_Status) XXX_Unmarshal

func (m *Deployment_Status) XXX_Unmarshal(b []byte) error

type ImportDataInstructions

type ImportDataInstructions struct {
	// Lines of code to run arangorestore
	ImportDump []string `protobuf:"bytes,2,rep,name=import_dump,json=importDump,proto3" json:"import_dump,omitempty"`
	// Lines of code to run arangoimport with json file format
	ArangoImportJson []string `protobuf:"bytes,3,rep,name=arango_import_json,json=arangoImportJson,proto3" json:"arango_import_json,omitempty"`
	// Lines of code to run arangoimport with csv file format
	ArangoImportCsv []string `protobuf:"bytes,4,rep,name=arango_import_csv,json=arangoImportCsv,proto3" json:"arango_import_csv,omitempty"`
	// Lines of code to run arangoimport with tsv file format
	ArangoImportTsv      []string `protobuf:"bytes,5,rep,name=arango_import_tsv,json=arangoImportTsv,proto3" json:"arango_import_tsv,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Instructions for importing data into a deployment

func (*ImportDataInstructions) Descriptor

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

func (*ImportDataInstructions) GetArangoImportCsv added in v0.41.4

func (m *ImportDataInstructions) GetArangoImportCsv() []string

func (*ImportDataInstructions) GetArangoImportJson added in v0.41.4

func (m *ImportDataInstructions) GetArangoImportJson() []string

func (*ImportDataInstructions) GetArangoImportTsv added in v0.41.4

func (m *ImportDataInstructions) GetArangoImportTsv() []string

func (*ImportDataInstructions) GetImportDump

func (m *ImportDataInstructions) GetImportDump() []string

func (*ImportDataInstructions) Marshal

func (m *ImportDataInstructions) Marshal() (dAtA []byte, err error)

func (*ImportDataInstructions) MarshalTo

func (m *ImportDataInstructions) MarshalTo(dAtA []byte) (int, error)

func (*ImportDataInstructions) MarshalToSizedBuffer

func (m *ImportDataInstructions) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImportDataInstructions) ProtoMessage

func (*ImportDataInstructions) ProtoMessage()

func (*ImportDataInstructions) Reset

func (m *ImportDataInstructions) Reset()

func (*ImportDataInstructions) Size

func (m *ImportDataInstructions) Size() (n int)

func (*ImportDataInstructions) String

func (m *ImportDataInstructions) String() string

func (*ImportDataInstructions) Unmarshal

func (m *ImportDataInstructions) Unmarshal(dAtA []byte) error

func (*ImportDataInstructions) XXX_DiscardUnknown

func (m *ImportDataInstructions) XXX_DiscardUnknown()

func (*ImportDataInstructions) XXX_Marshal

func (m *ImportDataInstructions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImportDataInstructions) XXX_Merge

func (m *ImportDataInstructions) XXX_Merge(src proto.Message)

func (*ImportDataInstructions) XXX_Size

func (m *ImportDataInstructions) XXX_Size() int

func (*ImportDataInstructions) XXX_Unmarshal

func (m *ImportDataInstructions) XXX_Unmarshal(b []byte) error

type ListCPUSizesRequest

type ListCPUSizesRequest struct {
	// Identifier of project that will own a deployment.
	ProjectId            string   `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for ListCPUSizes

func (*ListCPUSizesRequest) Descriptor

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

func (*ListCPUSizesRequest) GetProjectId

func (m *ListCPUSizesRequest) GetProjectId() string

func (*ListCPUSizesRequest) Marshal

func (m *ListCPUSizesRequest) Marshal() (dAtA []byte, err error)

func (*ListCPUSizesRequest) MarshalTo

func (m *ListCPUSizesRequest) MarshalTo(dAtA []byte) (int, error)

func (*ListCPUSizesRequest) MarshalToSizedBuffer

func (m *ListCPUSizesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListCPUSizesRequest) ProtoMessage

func (*ListCPUSizesRequest) ProtoMessage()

func (*ListCPUSizesRequest) Reset

func (m *ListCPUSizesRequest) Reset()

func (*ListCPUSizesRequest) Size

func (m *ListCPUSizesRequest) Size() (n int)

func (*ListCPUSizesRequest) String

func (m *ListCPUSizesRequest) String() string

func (*ListCPUSizesRequest) Unmarshal

func (m *ListCPUSizesRequest) Unmarshal(dAtA []byte) error

func (*ListCPUSizesRequest) XXX_DiscardUnknown

func (m *ListCPUSizesRequest) XXX_DiscardUnknown()

func (*ListCPUSizesRequest) XXX_Marshal

func (m *ListCPUSizesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListCPUSizesRequest) XXX_Merge

func (m *ListCPUSizesRequest) XXX_Merge(src proto.Message)

func (*ListCPUSizesRequest) XXX_Size

func (m *ListCPUSizesRequest) XXX_Size() int

func (*ListCPUSizesRequest) XXX_Unmarshal

func (m *ListCPUSizesRequest) XXX_Unmarshal(b []byte) error

type ListDeploymentModelsRequest

type ListDeploymentModelsRequest struct {
	// Identifier of project that will own a deployment.
	ProjectId            string   `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for ListDeploymentModels

func (*ListDeploymentModelsRequest) Descriptor

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

func (*ListDeploymentModelsRequest) GetProjectId

func (m *ListDeploymentModelsRequest) GetProjectId() string

func (*ListDeploymentModelsRequest) Marshal

func (m *ListDeploymentModelsRequest) Marshal() (dAtA []byte, err error)

func (*ListDeploymentModelsRequest) MarshalTo

func (m *ListDeploymentModelsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ListDeploymentModelsRequest) MarshalToSizedBuffer

func (m *ListDeploymentModelsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListDeploymentModelsRequest) ProtoMessage

func (*ListDeploymentModelsRequest) ProtoMessage()

func (*ListDeploymentModelsRequest) Reset

func (m *ListDeploymentModelsRequest) Reset()

func (*ListDeploymentModelsRequest) Size

func (m *ListDeploymentModelsRequest) Size() (n int)

func (*ListDeploymentModelsRequest) String

func (m *ListDeploymentModelsRequest) String() string

func (*ListDeploymentModelsRequest) Unmarshal

func (m *ListDeploymentModelsRequest) Unmarshal(dAtA []byte) error

func (*ListDeploymentModelsRequest) XXX_DiscardUnknown

func (m *ListDeploymentModelsRequest) XXX_DiscardUnknown()

func (*ListDeploymentModelsRequest) XXX_Marshal

func (m *ListDeploymentModelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListDeploymentModelsRequest) XXX_Merge

func (m *ListDeploymentModelsRequest) XXX_Merge(src proto.Message)

func (*ListDeploymentModelsRequest) XXX_Size

func (m *ListDeploymentModelsRequest) XXX_Size() int

func (*ListDeploymentModelsRequest) XXX_Unmarshal

func (m *ListDeploymentModelsRequest) XXX_Unmarshal(b []byte) error

type ListVersionsRequest

type ListVersionsRequest struct {
	// Common list options
	Options *v1.ListOptions `protobuf:"bytes,1,opt,name=options,proto3" json:"options,omitempty"`
	// If set, the result includes all versions for that are available for the
	// organization identified by this ID.
	// If not set, only versions are returned that are available to all organizations.
	OrganizationId string `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// If set, only versions will be returned that are safe to upgrade to from this version.
	CurrentVersion       string   `protobuf:"bytes,3,opt,name=current_version,json=currentVersion,proto3" json:"current_version,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for ListVersions.

func (*ListVersionsRequest) Descriptor

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

func (*ListVersionsRequest) GetCurrentVersion

func (m *ListVersionsRequest) GetCurrentVersion() string

func (*ListVersionsRequest) GetOptions

func (m *ListVersionsRequest) GetOptions() *v1.ListOptions

func (*ListVersionsRequest) GetOrganizationId

func (m *ListVersionsRequest) GetOrganizationId() string

func (*ListVersionsRequest) Marshal

func (m *ListVersionsRequest) Marshal() (dAtA []byte, err error)

func (*ListVersionsRequest) MarshalTo

func (m *ListVersionsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ListVersionsRequest) MarshalToSizedBuffer

func (m *ListVersionsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListVersionsRequest) ProtoMessage

func (*ListVersionsRequest) ProtoMessage()

func (*ListVersionsRequest) Reset

func (m *ListVersionsRequest) Reset()

func (*ListVersionsRequest) Size

func (m *ListVersionsRequest) Size() (n int)

func (*ListVersionsRequest) String

func (m *ListVersionsRequest) String() string

func (*ListVersionsRequest) Unmarshal

func (m *ListVersionsRequest) Unmarshal(dAtA []byte) error

func (*ListVersionsRequest) XXX_DiscardUnknown

func (m *ListVersionsRequest) XXX_DiscardUnknown()

func (*ListVersionsRequest) XXX_Marshal

func (m *ListVersionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListVersionsRequest) XXX_Merge

func (m *ListVersionsRequest) XXX_Merge(src proto.Message)

func (*ListVersionsRequest) XXX_Size

func (m *ListVersionsRequest) XXX_Size() int

func (*ListVersionsRequest) XXX_Unmarshal

func (m *ListVersionsRequest) XXX_Unmarshal(b []byte) error

type NodeSize

type NodeSize struct {
	// System identifier of the node size
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Human readable name of the node size
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// Amount of memory (in GB) that is available on this size of node.
	MemorySize int32 `protobuf:"varint,3,opt,name=memory_size,json=memorySize,proto3" json:"memory_size,omitempty"`
	// Minimum amount of disk (in GB) that is available on this size of node.
	MinDiskSize int32 `protobuf:"varint,4,opt,name=min_disk_size,json=minDiskSize,proto3" json:"min_disk_size,omitempty"`
	// Maximum amount of disk (in GB) that is available on this size of node.
	MaxDiskSize int32 `protobuf:"varint,5,opt,name=max_disk_size,json=maxDiskSize,proto3" json:"max_disk_size,omitempty"`
	// CPU size that is available on this size of node (e.g. standard or high).
	CpuSize string `protobuf:"bytes,6,opt,name=cpu_size,json=cpuSize,proto3" json:"cpu_size,omitempty"`
	// If set, contains list of possible disk sizes (in GB) for the node.
	// In that case, this field overrides the min_disk_size & max_disk_size fields.
	DiskSizes            []int32  `protobuf:"varint,7,rep,packed,name=disk_sizes,json=diskSizes,proto3" json:"disk_sizes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

NodeSize specifies the size constraints of different data nodes.

func (*NodeSize) Descriptor

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

func (*NodeSize) GetCpuSize

func (m *NodeSize) GetCpuSize() string

func (*NodeSize) GetDiskSizes

func (m *NodeSize) GetDiskSizes() []int32

func (*NodeSize) GetId

func (m *NodeSize) GetId() string

func (*NodeSize) GetMaxDiskSize

func (m *NodeSize) GetMaxDiskSize() int32

func (*NodeSize) GetMemorySize

func (m *NodeSize) GetMemorySize() int32

func (*NodeSize) GetMinDiskSize

func (m *NodeSize) GetMinDiskSize() int32

func (*NodeSize) GetName

func (m *NodeSize) GetName() string

func (*NodeSize) Marshal

func (m *NodeSize) Marshal() (dAtA []byte, err error)

func (*NodeSize) MarshalTo

func (m *NodeSize) MarshalTo(dAtA []byte) (int, error)

func (*NodeSize) MarshalToSizedBuffer

func (m *NodeSize) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NodeSize) ProtoMessage

func (*NodeSize) ProtoMessage()

func (*NodeSize) Reset

func (m *NodeSize) Reset()

func (*NodeSize) Size

func (m *NodeSize) Size() (n int)

func (*NodeSize) String

func (m *NodeSize) String() string

func (*NodeSize) Unmarshal

func (m *NodeSize) Unmarshal(dAtA []byte) error

func (*NodeSize) XXX_DiscardUnknown

func (m *NodeSize) XXX_DiscardUnknown()

func (*NodeSize) XXX_Marshal

func (m *NodeSize) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NodeSize) XXX_Merge

func (m *NodeSize) XXX_Merge(src proto.Message)

func (*NodeSize) XXX_Size

func (m *NodeSize) XXX_Size() int

func (*NodeSize) XXX_Unmarshal

func (m *NodeSize) XXX_Unmarshal(b []byte) error

type NodeSizeList

type NodeSizeList struct {
	Items                []*NodeSize `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

List of node sizes.

func (*NodeSizeList) Descriptor

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

func (*NodeSizeList) GetItems

func (m *NodeSizeList) GetItems() []*NodeSize

func (*NodeSizeList) Marshal

func (m *NodeSizeList) Marshal() (dAtA []byte, err error)

func (*NodeSizeList) MarshalTo

func (m *NodeSizeList) MarshalTo(dAtA []byte) (int, error)

func (*NodeSizeList) MarshalToSizedBuffer

func (m *NodeSizeList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NodeSizeList) ProtoMessage

func (*NodeSizeList) ProtoMessage()

func (*NodeSizeList) Reset

func (m *NodeSizeList) Reset()

func (*NodeSizeList) Size

func (m *NodeSizeList) Size() (n int)

func (*NodeSizeList) String

func (m *NodeSizeList) String() string

func (*NodeSizeList) Unmarshal

func (m *NodeSizeList) Unmarshal(dAtA []byte) error

func (*NodeSizeList) XXX_DiscardUnknown

func (m *NodeSizeList) XXX_DiscardUnknown()

func (*NodeSizeList) XXX_Marshal

func (m *NodeSizeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NodeSizeList) XXX_Merge

func (m *NodeSizeList) XXX_Merge(src proto.Message)

func (*NodeSizeList) XXX_Size

func (m *NodeSizeList) XXX_Size() int

func (*NodeSizeList) XXX_Unmarshal

func (m *NodeSizeList) XXX_Unmarshal(b []byte) error

type NodeSizesRequest

type NodeSizesRequest struct {
	// Identifier of project that will own a deployment.
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// Identifier of a region in which a deployment will be created.
	RegionId string `protobuf:"bytes,2,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"`
	// If set, project_id & region_id will be taken from this deployment.
	// This also causes the node_size used by this deployment to be included
	// in the result, if it it would not match for new deployments.
	DeploymentId         string   `protobuf:"bytes,3,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for ListNodeSizes

func (*NodeSizesRequest) Descriptor

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

func (*NodeSizesRequest) GetDeploymentId

func (m *NodeSizesRequest) GetDeploymentId() string

func (*NodeSizesRequest) GetProjectId

func (m *NodeSizesRequest) GetProjectId() string

func (*NodeSizesRequest) GetRegionId

func (m *NodeSizesRequest) GetRegionId() string

func (*NodeSizesRequest) Marshal

func (m *NodeSizesRequest) Marshal() (dAtA []byte, err error)

func (*NodeSizesRequest) MarshalTo

func (m *NodeSizesRequest) MarshalTo(dAtA []byte) (int, error)

func (*NodeSizesRequest) MarshalToSizedBuffer

func (m *NodeSizesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NodeSizesRequest) ProtoMessage

func (*NodeSizesRequest) ProtoMessage()

func (*NodeSizesRequest) Reset

func (m *NodeSizesRequest) Reset()

func (*NodeSizesRequest) Size

func (m *NodeSizesRequest) Size() (n int)

func (*NodeSizesRequest) String

func (m *NodeSizesRequest) String() string

func (*NodeSizesRequest) Unmarshal

func (m *NodeSizesRequest) Unmarshal(dAtA []byte) error

func (*NodeSizesRequest) XXX_DiscardUnknown

func (m *NodeSizesRequest) XXX_DiscardUnknown()

func (*NodeSizesRequest) XXX_Marshal

func (m *NodeSizesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NodeSizesRequest) XXX_Merge

func (m *NodeSizesRequest) XXX_Merge(src proto.Message)

func (*NodeSizesRequest) XXX_Size

func (m *NodeSizesRequest) XXX_Size() int

func (*NodeSizesRequest) XXX_Unmarshal

func (m *NodeSizesRequest) XXX_Unmarshal(b []byte) error

type ReplaceVersionBy added in v0.40.10

type ReplaceVersionBy struct {
	// The version of the ArangoDB release that it should be upgraded to.
	// Version in the format of major.minor.patch
	// Format details can be found at: https://semver.org/
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// Human readable reason why this version should be replaced.
	Reason               string   `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ReplaceVersionBy holds replacement instructions.

func (*ReplaceVersionBy) Descriptor added in v0.40.10

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

func (*ReplaceVersionBy) GetReason added in v0.40.10

func (m *ReplaceVersionBy) GetReason() string

func (*ReplaceVersionBy) GetVersion added in v0.40.10

func (m *ReplaceVersionBy) GetVersion() string

func (*ReplaceVersionBy) Marshal added in v0.40.10

func (m *ReplaceVersionBy) Marshal() (dAtA []byte, err error)

func (*ReplaceVersionBy) MarshalTo added in v0.40.10

func (m *ReplaceVersionBy) MarshalTo(dAtA []byte) (int, error)

func (*ReplaceVersionBy) MarshalToSizedBuffer added in v0.40.10

func (m *ReplaceVersionBy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReplaceVersionBy) ProtoMessage added in v0.40.10

func (*ReplaceVersionBy) ProtoMessage()

func (*ReplaceVersionBy) Reset added in v0.40.10

func (m *ReplaceVersionBy) Reset()

func (*ReplaceVersionBy) Size added in v0.40.10

func (m *ReplaceVersionBy) Size() (n int)

func (*ReplaceVersionBy) String added in v0.40.10

func (m *ReplaceVersionBy) String() string

func (*ReplaceVersionBy) Unmarshal added in v0.40.10

func (m *ReplaceVersionBy) Unmarshal(dAtA []byte) error

func (*ReplaceVersionBy) XXX_DiscardUnknown added in v0.40.10

func (m *ReplaceVersionBy) XXX_DiscardUnknown()

func (*ReplaceVersionBy) XXX_Marshal added in v0.40.10

func (m *ReplaceVersionBy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplaceVersionBy) XXX_Merge added in v0.40.10

func (m *ReplaceVersionBy) XXX_Merge(src proto.Message)

func (*ReplaceVersionBy) XXX_Size added in v0.40.10

func (m *ReplaceVersionBy) XXX_Size() int

func (*ReplaceVersionBy) XXX_Unmarshal added in v0.40.10

func (m *ReplaceVersionBy) XXX_Unmarshal(b []byte) error

type ServersSpecLimits

type ServersSpecLimits struct {
	// Limits for the number of coordinators of the deployment
	Coordinators *ServersSpecLimits_Limits `protobuf:"bytes,1,opt,name=coordinators,proto3" json:"coordinators,omitempty"`
	// Possible values for the amount of memory (in GB) to allocate
	// for coordinators.
	CoordinatorMemorySize *ServersSpecLimits_Limits `` /* 126-byte string literal not displayed */
	// Limits for the number of dbservers of the deployment
	Dbservers *ServersSpecLimits_Limits `protobuf:"bytes,11,opt,name=dbservers,proto3" json:"dbservers,omitempty"`
	// Possible values for the amount of memory (in GB) to allocate
	// for dbservers.
	DbserverMemorySize *ServersSpecLimits_Limits `protobuf:"bytes,12,opt,name=dbserver_memory_size,json=dbserverMemorySize,proto3" json:"dbserver_memory_size,omitempty"`
	// Amount of disk space (in GB) to allocate for dbservers.
	DbserverDiskSize *ServersSpecLimits_Limits `protobuf:"bytes,13,opt,name=dbserver_disk_size,json=dbserverDiskSize,proto3" json:"dbserver_disk_size,omitempty"`
	// Possible values for the amount of memory (in GB) to allocate
	// for pairs of coordinator, dbserver.
	NodeMemorySize *ServersSpecLimits_Limits `protobuf:"bytes,21,opt,name=node_memory_size,json=nodeMemorySize,proto3" json:"node_memory_size,omitempty"`
	// Possible values for the number of nodes.
	// Value must be min/max (not using allowed_values)
	NodeCount            *ServersSpecLimits_Limits `protobuf:"bytes,22,opt,name=node_count,json=nodeCount,proto3" json:"node_count,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

Limits of allowed values for fields of Deployment.ServersSpec.

func (*ServersSpecLimits) Descriptor

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

func (*ServersSpecLimits) GetCoordinatorMemorySize

func (m *ServersSpecLimits) GetCoordinatorMemorySize() *ServersSpecLimits_Limits

func (*ServersSpecLimits) GetCoordinators

func (m *ServersSpecLimits) GetCoordinators() *ServersSpecLimits_Limits

func (*ServersSpecLimits) GetDbserverDiskSize

func (m *ServersSpecLimits) GetDbserverDiskSize() *ServersSpecLimits_Limits

func (*ServersSpecLimits) GetDbserverMemorySize

func (m *ServersSpecLimits) GetDbserverMemorySize() *ServersSpecLimits_Limits

func (*ServersSpecLimits) GetDbservers

func (m *ServersSpecLimits) GetDbservers() *ServersSpecLimits_Limits

func (*ServersSpecLimits) GetNodeCount

func (m *ServersSpecLimits) GetNodeCount() *ServersSpecLimits_Limits

func (*ServersSpecLimits) GetNodeMemorySize

func (m *ServersSpecLimits) GetNodeMemorySize() *ServersSpecLimits_Limits

func (*ServersSpecLimits) Marshal

func (m *ServersSpecLimits) Marshal() (dAtA []byte, err error)

func (*ServersSpecLimits) MarshalTo

func (m *ServersSpecLimits) MarshalTo(dAtA []byte) (int, error)

func (*ServersSpecLimits) MarshalToSizedBuffer

func (m *ServersSpecLimits) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ServersSpecLimits) ProtoMessage

func (*ServersSpecLimits) ProtoMessage()

func (*ServersSpecLimits) Reset

func (m *ServersSpecLimits) Reset()

func (*ServersSpecLimits) Size

func (m *ServersSpecLimits) Size() (n int)

func (*ServersSpecLimits) String

func (m *ServersSpecLimits) String() string

func (*ServersSpecLimits) Unmarshal

func (m *ServersSpecLimits) Unmarshal(dAtA []byte) error

func (*ServersSpecLimits) XXX_DiscardUnknown

func (m *ServersSpecLimits) XXX_DiscardUnknown()

func (*ServersSpecLimits) XXX_Marshal

func (m *ServersSpecLimits) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ServersSpecLimits) XXX_Merge

func (m *ServersSpecLimits) XXX_Merge(src proto.Message)

func (*ServersSpecLimits) XXX_Size

func (m *ServersSpecLimits) XXX_Size() int

func (*ServersSpecLimits) XXX_Unmarshal

func (m *ServersSpecLimits) XXX_Unmarshal(b []byte) error

type ServersSpecLimitsRequest

type ServersSpecLimitsRequest struct {
	// Identifier of project that will own a deployment.
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// Identifier of a region in which a deployment will be created.
	RegionId string `protobuf:"bytes,2,opt,name=region_id,json=regionId,proto3" json:"region_id,omitempty"`
	// Optional identifier of a deployment for which compatible server specifications are request.
	DeploymentId         string   `protobuf:"bytes,3,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Request arguments for ListServersSpecLimits

func (*ServersSpecLimitsRequest) Descriptor

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

func (*ServersSpecLimitsRequest) GetDeploymentId

func (m *ServersSpecLimitsRequest) GetDeploymentId() string

func (*ServersSpecLimitsRequest) GetProjectId

func (m *ServersSpecLimitsRequest) GetProjectId() string

func (*ServersSpecLimitsRequest) GetRegionId

func (m *ServersSpecLimitsRequest) GetRegionId() string

func (*ServersSpecLimitsRequest) Marshal

func (m *ServersSpecLimitsRequest) Marshal() (dAtA []byte, err error)

func (*ServersSpecLimitsRequest) MarshalTo

func (m *ServersSpecLimitsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ServersSpecLimitsRequest) MarshalToSizedBuffer

func (m *ServersSpecLimitsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ServersSpecLimitsRequest) ProtoMessage

func (*ServersSpecLimitsRequest) ProtoMessage()

func (*ServersSpecLimitsRequest) Reset

func (m *ServersSpecLimitsRequest) Reset()

func (*ServersSpecLimitsRequest) Size

func (m *ServersSpecLimitsRequest) Size() (n int)

func (*ServersSpecLimitsRequest) String

func (m *ServersSpecLimitsRequest) String() string

func (*ServersSpecLimitsRequest) Unmarshal

func (m *ServersSpecLimitsRequest) Unmarshal(dAtA []byte) error

func (*ServersSpecLimitsRequest) XXX_DiscardUnknown

func (m *ServersSpecLimitsRequest) XXX_DiscardUnknown()

func (*ServersSpecLimitsRequest) XXX_Marshal

func (m *ServersSpecLimitsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ServersSpecLimitsRequest) XXX_Merge

func (m *ServersSpecLimitsRequest) XXX_Merge(src proto.Message)

func (*ServersSpecLimitsRequest) XXX_Size

func (m *ServersSpecLimitsRequest) XXX_Size() int

func (*ServersSpecLimitsRequest) XXX_Unmarshal

func (m *ServersSpecLimitsRequest) XXX_Unmarshal(b []byte) error

type ServersSpecLimits_Limits

type ServersSpecLimits_Limits struct {
	// Minimum value
	Min int32 `protobuf:"varint,1,opt,name=min,proto3" json:"min,omitempty"`
	// Maximum value
	Max int32 `protobuf:"varint,2,opt,name=max,proto3" json:"max,omitempty"`
	// Set of allowed values.
	// If this field is non-empty, only one of these values
	// is allowed.
	AllowedValues        []int32  `protobuf:"varint,3,rep,packed,name=allowed_values,json=allowedValues,proto3" json:"allowed_values,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ServersSpecLimits_Limits) Descriptor

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

func (*ServersSpecLimits_Limits) GetAllowedValues

func (m *ServersSpecLimits_Limits) GetAllowedValues() []int32

func (*ServersSpecLimits_Limits) GetMax

func (m *ServersSpecLimits_Limits) GetMax() int32

func (*ServersSpecLimits_Limits) GetMin

func (m *ServersSpecLimits_Limits) GetMin() int32

func (*ServersSpecLimits_Limits) Marshal

func (m *ServersSpecLimits_Limits) Marshal() (dAtA []byte, err error)

func (*ServersSpecLimits_Limits) MarshalTo

func (m *ServersSpecLimits_Limits) MarshalTo(dAtA []byte) (int, error)

func (*ServersSpecLimits_Limits) MarshalToSizedBuffer

func (m *ServersSpecLimits_Limits) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ServersSpecLimits_Limits) ProtoMessage

func (*ServersSpecLimits_Limits) ProtoMessage()

func (*ServersSpecLimits_Limits) Reset

func (m *ServersSpecLimits_Limits) Reset()

func (*ServersSpecLimits_Limits) Size

func (m *ServersSpecLimits_Limits) Size() (n int)

func (*ServersSpecLimits_Limits) String

func (m *ServersSpecLimits_Limits) String() string

func (*ServersSpecLimits_Limits) Unmarshal

func (m *ServersSpecLimits_Limits) Unmarshal(dAtA []byte) error

func (*ServersSpecLimits_Limits) XXX_DiscardUnknown

func (m *ServersSpecLimits_Limits) XXX_DiscardUnknown()

func (*ServersSpecLimits_Limits) XXX_Marshal

func (m *ServersSpecLimits_Limits) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ServersSpecLimits_Limits) XXX_Merge

func (m *ServersSpecLimits_Limits) XXX_Merge(src proto.Message)

func (*ServersSpecLimits_Limits) XXX_Size

func (m *ServersSpecLimits_Limits) XXX_Size() int

func (*ServersSpecLimits_Limits) XXX_Unmarshal

func (m *ServersSpecLimits_Limits) XXX_Unmarshal(b []byte) error

type UnimplementedDataServiceServer

type UnimplementedDataServiceServer struct {
}

UnimplementedDataServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedDataServiceServer) CalculateDeploymentPrice

func (*UnimplementedDataServiceServer) CalculateDeploymentSize

func (*UnimplementedDataServiceServer) CreateDeployment

func (*UnimplementedDataServiceServer) CreateDeployment(ctx context.Context, req *Deployment) (*Deployment, error)

func (*UnimplementedDataServiceServer) CreateTestDatabase added in v0.43.7

func (*UnimplementedDataServiceServer) DeleteDeployment

func (*UnimplementedDataServiceServer) DeleteDeployment(ctx context.Context, req *v1.IDOptions) (*v1.Empty, error)

func (*UnimplementedDataServiceServer) GetAPIVersion

func (*UnimplementedDataServiceServer) GetAPIVersion(ctx context.Context, req *v1.Empty) (*v1.Version, error)

func (*UnimplementedDataServiceServer) GetConnectDriverInstructions

func (*UnimplementedDataServiceServer) GetConnectDriverInstructions(ctx context.Context, req *v1.IDOptions) (*ConnectDriverInstructions, error)

func (*UnimplementedDataServiceServer) GetDefaultVersion

func (*UnimplementedDataServiceServer) GetDefaultVersion(ctx context.Context, req *v1.Empty) (*Version, error)

func (*UnimplementedDataServiceServer) GetDeployment

func (*UnimplementedDataServiceServer) GetDeploymentCredentials

func (*UnimplementedDataServiceServer) GetDeploymentFeatures

func (*UnimplementedDataServiceServer) GetDeploymentUpdates added in v0.48.0

func (*UnimplementedDataServiceServer) GetImportDataInstructions

func (*UnimplementedDataServiceServer) GetImportDataInstructions(ctx context.Context, req *v1.IDOptions) (*ImportDataInstructions, error)

func (*UnimplementedDataServiceServer) GetServersSpecLimits

func (*UnimplementedDataServiceServer) ListCPUSizes

func (*UnimplementedDataServiceServer) ListDeploymentModels

func (*UnimplementedDataServiceServer) ListDeployments

func (*UnimplementedDataServiceServer) ListNodeSizes

func (*UnimplementedDataServiceServer) ListVersions

func (*UnimplementedDataServiceServer) RecommendDeploymentSize

func (*UnimplementedDataServiceServer) ResumeDeployment added in v0.43.4

func (*UnimplementedDataServiceServer) ResumeDeployment(ctx context.Context, req *v1.IDOptions) (*v1.Empty, error)

func (*UnimplementedDataServiceServer) UpdateDeployment

func (*UnimplementedDataServiceServer) UpdateDeployment(ctx context.Context, req *Deployment) (*Deployment, error)

type Version

type Version struct {
	// Version in the format of major.minor.patch
	// Format details can be found at: https://semver.org/
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// If set, deployments using this version should be updated to the ArangoDB release with the
	// version as listed in this message.
	ReplaceBy            *ReplaceVersionBy `protobuf:"bytes,2,opt,name=replace_by,json=replaceBy,proto3" json:"replace_by,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

Version of an ArangoDB release

func (*Version) Descriptor

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

func (*Version) GetReplaceBy added in v0.40.10

func (m *Version) GetReplaceBy() *ReplaceVersionBy

func (*Version) GetVersion

func (m *Version) GetVersion() string

func (*Version) Marshal

func (m *Version) Marshal() (dAtA []byte, err error)

func (*Version) MarshalTo

func (m *Version) MarshalTo(dAtA []byte) (int, error)

func (*Version) MarshalToSizedBuffer

func (m *Version) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Version) ProtoMessage

func (*Version) ProtoMessage()

func (*Version) Reset

func (m *Version) Reset()

func (*Version) Size

func (m *Version) Size() (n int)

func (*Version) String

func (m *Version) String() string

func (*Version) Unmarshal

func (m *Version) Unmarshal(dAtA []byte) error

func (*Version) XXX_DiscardUnknown

func (m *Version) XXX_DiscardUnknown()

func (*Version) XXX_Marshal

func (m *Version) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Version) XXX_Merge

func (m *Version) XXX_Merge(src proto.Message)

func (*Version) XXX_Size

func (m *Version) XXX_Size() int

func (*Version) XXX_Unmarshal

func (m *Version) XXX_Unmarshal(b []byte) error

type VersionCallback

type VersionCallback func(context.Context, *Version) error

VersionCallback is a callback for individual (ArangoDB) versions.

type VersionList

type VersionList struct {
	Items                []*Version `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

List of Versions.

func (*VersionList) Descriptor

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

func (*VersionList) GetItems

func (m *VersionList) GetItems() []*Version

func (*VersionList) Marshal

func (m *VersionList) Marshal() (dAtA []byte, err error)

func (*VersionList) MarshalTo

func (m *VersionList) MarshalTo(dAtA []byte) (int, error)

func (*VersionList) MarshalToSizedBuffer

func (m *VersionList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VersionList) ProtoMessage

func (*VersionList) ProtoMessage()

func (*VersionList) Reset

func (m *VersionList) Reset()

func (*VersionList) Size

func (m *VersionList) Size() (n int)

func (*VersionList) String

func (m *VersionList) String() string

func (*VersionList) Unmarshal

func (m *VersionList) Unmarshal(dAtA []byte) error

func (*VersionList) XXX_DiscardUnknown

func (m *VersionList) XXX_DiscardUnknown()

func (*VersionList) XXX_Marshal

func (m *VersionList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VersionList) XXX_Merge

func (m *VersionList) XXX_Merge(src proto.Message)

func (*VersionList) XXX_Size

func (m *VersionList) XXX_Size() int

func (*VersionList) XXX_Unmarshal

func (m *VersionList) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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