ftlv1

package
v0.409.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ConfigProvider_name = map[int32]string{
		0: "CONFIG_PROVIDER_UNSPECIFIED",
		1: "CONFIG_PROVIDER_INLINE",
		2: "CONFIG_PROVIDER_ENVAR",
		3: "CONFIG_PROVIDER_DB",
	}
	ConfigProvider_value = map[string]int32{
		"CONFIG_PROVIDER_UNSPECIFIED": 0,
		"CONFIG_PROVIDER_INLINE":      1,
		"CONFIG_PROVIDER_ENVAR":       2,
		"CONFIG_PROVIDER_DB":          3,
	}
)

Enum value maps for ConfigProvider.

View Source
var (
	SecretProvider_name = map[int32]string{
		0: "SECRET_PROVIDER_UNSPECIFIED",
		1: "SECRET_PROVIDER_INLINE",
		2: "SECRET_PROVIDER_ENVAR",
		3: "SECRET_PROVIDER_KEYCHAIN",
		4: "SECRET_PROVIDER_OP",
		5: "SECRET_PROVIDER_ASM",
	}
	SecretProvider_value = map[string]int32{
		"SECRET_PROVIDER_UNSPECIFIED": 0,
		"SECRET_PROVIDER_INLINE":      1,
		"SECRET_PROVIDER_ENVAR":       2,
		"SECRET_PROVIDER_KEYCHAIN":    3,
		"SECRET_PROVIDER_OP":          4,
		"SECRET_PROVIDER_ASM":         5,
	}
)

Enum value maps for SecretProvider.

View Source
var (
	DeploymentChangeType_name = map[int32]string{
		0: "DEPLOYMENT_CHANGE_TYPE_UNSPECIFIED",
		1: "DEPLOYMENT_CHANGE_TYPE_ADDED",
		2: "DEPLOYMENT_CHANGE_TYPE_REMOVED",
		3: "DEPLOYMENT_CHANGE_TYPE_CHANGED",
	}
	DeploymentChangeType_value = map[string]int32{
		"DEPLOYMENT_CHANGE_TYPE_UNSPECIFIED": 0,
		"DEPLOYMENT_CHANGE_TYPE_ADDED":       1,
		"DEPLOYMENT_CHANGE_TYPE_REMOVED":     2,
		"DEPLOYMENT_CHANGE_TYPE_CHANGED":     3,
	}
)

Enum value maps for DeploymentChangeType.

View Source
var File_xyz_block_ftl_v1_admin_proto protoreflect.FileDescriptor
View Source
var File_xyz_block_ftl_v1_controller_proto protoreflect.FileDescriptor
View Source
var File_xyz_block_ftl_v1_ftl_proto protoreflect.FileDescriptor
View Source
var File_xyz_block_ftl_v1_schemaservice_proto protoreflect.FileDescriptor
View Source
var File_xyz_block_ftl_v1_verb_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type CallRequest

type CallRequest struct {
	Metadata *Metadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Verb     *v1.Ref   `protobuf:"bytes,2,opt,name=verb,proto3" json:"verb,omitempty"`
	Body     []byte    `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	// contains filtered or unexported fields
}

func (*CallRequest) Descriptor deprecated

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

Deprecated: Use CallRequest.ProtoReflect.Descriptor instead.

func (*CallRequest) GetBody

func (x *CallRequest) GetBody() []byte

func (*CallRequest) GetMetadata

func (x *CallRequest) GetMetadata() *Metadata

func (*CallRequest) GetVerb

func (x *CallRequest) GetVerb() *v1.Ref

func (*CallRequest) ProtoMessage

func (*CallRequest) ProtoMessage()

func (*CallRequest) ProtoReflect

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

func (*CallRequest) Reset

func (x *CallRequest) Reset()

func (*CallRequest) String

func (x *CallRequest) String() string

type CallResponse

type CallResponse struct {

	// Types that are assignable to Response:
	//
	//	*CallResponse_Body
	//	*CallResponse_Error_
	Response isCallResponse_Response `protobuf_oneof:"response"`
	// contains filtered or unexported fields
}

func (*CallResponse) Descriptor deprecated

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

Deprecated: Use CallResponse.ProtoReflect.Descriptor instead.

func (*CallResponse) GetBody

func (x *CallResponse) GetBody() []byte

func (*CallResponse) GetError

func (x *CallResponse) GetError() *CallResponse_Error

func (*CallResponse) GetResponse

func (m *CallResponse) GetResponse() isCallResponse_Response

func (*CallResponse) ProtoMessage

func (*CallResponse) ProtoMessage()

func (*CallResponse) ProtoReflect

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

func (*CallResponse) Reset

func (x *CallResponse) Reset()

func (*CallResponse) String

func (x *CallResponse) String() string

type CallResponse_Body

type CallResponse_Body struct {
	Body []byte `protobuf:"bytes,1,opt,name=body,proto3,oneof"`
}

type CallResponse_Error

type CallResponse_Error struct {
	Message string  `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	Stack   *string `protobuf:"bytes,2,opt,name=stack,proto3,oneof" json:"stack,omitempty"` // TODO: Richer error type.
	// contains filtered or unexported fields
}

func (*CallResponse_Error) Descriptor deprecated

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

Deprecated: Use CallResponse_Error.ProtoReflect.Descriptor instead.

func (*CallResponse_Error) GetMessage

func (x *CallResponse_Error) GetMessage() string

func (*CallResponse_Error) GetStack

func (x *CallResponse_Error) GetStack() string

func (*CallResponse_Error) ProtoMessage

func (*CallResponse_Error) ProtoMessage()

func (*CallResponse_Error) ProtoReflect

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

func (*CallResponse_Error) Reset

func (x *CallResponse_Error) Reset()

func (*CallResponse_Error) String

func (x *CallResponse_Error) String() string

type CallResponse_Error_

type CallResponse_Error_ struct {
	Error *CallResponse_Error `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

type ConfigGetRequest added in v0.408.0

type ConfigGetRequest struct {
	Ref *ConfigRef `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigGetRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigGetRequest.ProtoReflect.Descriptor instead.

func (*ConfigGetRequest) GetRef added in v0.408.0

func (x *ConfigGetRequest) GetRef() *ConfigRef

func (*ConfigGetRequest) ProtoMessage added in v0.408.0

func (*ConfigGetRequest) ProtoMessage()

func (*ConfigGetRequest) ProtoReflect added in v0.408.0

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

func (*ConfigGetRequest) Reset added in v0.408.0

func (x *ConfigGetRequest) Reset()

func (*ConfigGetRequest) String added in v0.408.0

func (x *ConfigGetRequest) String() string

type ConfigGetResponse added in v0.408.0

type ConfigGetResponse struct {
	Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigGetResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigGetResponse.ProtoReflect.Descriptor instead.

func (*ConfigGetResponse) GetValue added in v0.408.0

func (x *ConfigGetResponse) GetValue() []byte

func (*ConfigGetResponse) ProtoMessage added in v0.408.0

func (*ConfigGetResponse) ProtoMessage()

func (*ConfigGetResponse) ProtoReflect added in v0.408.0

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

func (*ConfigGetResponse) Reset added in v0.408.0

func (x *ConfigGetResponse) Reset()

func (*ConfigGetResponse) String added in v0.408.0

func (x *ConfigGetResponse) String() string

type ConfigListRequest added in v0.408.0

type ConfigListRequest struct {
	Module        *string         `protobuf:"bytes,1,opt,name=module,proto3,oneof" json:"module,omitempty"`
	IncludeValues *bool           `protobuf:"varint,2,opt,name=include_values,json=includeValues,proto3,oneof" json:"include_values,omitempty"`
	Provider      *ConfigProvider `protobuf:"varint,3,opt,name=provider,proto3,enum=xyz.block.ftl.v1.ConfigProvider,oneof" json:"provider,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigListRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigListRequest.ProtoReflect.Descriptor instead.

func (*ConfigListRequest) GetIncludeValues added in v0.408.0

func (x *ConfigListRequest) GetIncludeValues() bool

func (*ConfigListRequest) GetModule added in v0.408.0

func (x *ConfigListRequest) GetModule() string

func (*ConfigListRequest) GetProvider added in v0.408.0

func (x *ConfigListRequest) GetProvider() ConfigProvider

func (*ConfigListRequest) ProtoMessage added in v0.408.0

func (*ConfigListRequest) ProtoMessage()

func (*ConfigListRequest) ProtoReflect added in v0.408.0

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

func (*ConfigListRequest) Reset added in v0.408.0

func (x *ConfigListRequest) Reset()

func (*ConfigListRequest) String added in v0.408.0

func (x *ConfigListRequest) String() string

type ConfigListResponse added in v0.408.0

type ConfigListResponse struct {
	Configs []*ConfigListResponse_Config `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigListResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigListResponse.ProtoReflect.Descriptor instead.

func (*ConfigListResponse) GetConfigs added in v0.408.0

func (x *ConfigListResponse) GetConfigs() []*ConfigListResponse_Config

func (*ConfigListResponse) ProtoMessage added in v0.408.0

func (*ConfigListResponse) ProtoMessage()

func (*ConfigListResponse) ProtoReflect added in v0.408.0

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

func (*ConfigListResponse) Reset added in v0.408.0

func (x *ConfigListResponse) Reset()

func (*ConfigListResponse) String added in v0.408.0

func (x *ConfigListResponse) String() string

type ConfigListResponse_Config added in v0.408.0

type ConfigListResponse_Config struct {
	RefPath string `protobuf:"bytes,1,opt,name=ref_path,json=refPath,proto3" json:"ref_path,omitempty"`
	Value   []byte `protobuf:"bytes,2,opt,name=value,proto3,oneof" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigListResponse_Config) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigListResponse_Config.ProtoReflect.Descriptor instead.

func (*ConfigListResponse_Config) GetRefPath added in v0.408.0

func (x *ConfigListResponse_Config) GetRefPath() string

func (*ConfigListResponse_Config) GetValue added in v0.408.0

func (x *ConfigListResponse_Config) GetValue() []byte

func (*ConfigListResponse_Config) ProtoMessage added in v0.408.0

func (*ConfigListResponse_Config) ProtoMessage()

func (*ConfigListResponse_Config) ProtoReflect added in v0.408.0

func (*ConfigListResponse_Config) Reset added in v0.408.0

func (x *ConfigListResponse_Config) Reset()

func (*ConfigListResponse_Config) String added in v0.408.0

func (x *ConfigListResponse_Config) String() string

type ConfigProvider added in v0.240.0

type ConfigProvider int32
const (
	ConfigProvider_CONFIG_PROVIDER_UNSPECIFIED ConfigProvider = 0
	// Write values inline in the configuration file.
	ConfigProvider_CONFIG_PROVIDER_INLINE ConfigProvider = 1
	// Print configuration as environment variables.
	ConfigProvider_CONFIG_PROVIDER_ENVAR ConfigProvider = 2
	// Use the database as a configuration store.
	ConfigProvider_CONFIG_PROVIDER_DB ConfigProvider = 3
)

func (ConfigProvider) Descriptor added in v0.240.0

func (ConfigProvider) Enum added in v0.240.0

func (x ConfigProvider) Enum() *ConfigProvider

func (ConfigProvider) EnumDescriptor deprecated added in v0.240.0

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

Deprecated: Use ConfigProvider.Descriptor instead.

func (ConfigProvider) Number added in v0.240.0

func (ConfigProvider) String added in v0.240.0

func (x ConfigProvider) String() string

func (ConfigProvider) Type added in v0.240.0

type ConfigRef added in v0.240.0

type ConfigRef struct {
	Module *string `protobuf:"bytes,1,opt,name=module,proto3,oneof" json:"module,omitempty"`
	Name   string  `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigRef) Descriptor deprecated added in v0.240.0

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

Deprecated: Use ConfigRef.ProtoReflect.Descriptor instead.

func (*ConfigRef) GetModule added in v0.240.0

func (x *ConfigRef) GetModule() string

func (*ConfigRef) GetName added in v0.240.0

func (x *ConfigRef) GetName() string

func (*ConfigRef) ProtoMessage added in v0.240.0

func (*ConfigRef) ProtoMessage()

func (*ConfigRef) ProtoReflect added in v0.240.0

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

func (*ConfigRef) Reset added in v0.240.0

func (x *ConfigRef) Reset()

func (*ConfigRef) String added in v0.240.0

func (x *ConfigRef) String() string

type ConfigSetRequest added in v0.408.0

type ConfigSetRequest struct {
	Provider *ConfigProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=xyz.block.ftl.v1.ConfigProvider,oneof" json:"provider,omitempty"`
	Ref      *ConfigRef      `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"`
	Value    []byte          `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigSetRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigSetRequest.ProtoReflect.Descriptor instead.

func (*ConfigSetRequest) GetProvider added in v0.408.0

func (x *ConfigSetRequest) GetProvider() ConfigProvider

func (*ConfigSetRequest) GetRef added in v0.408.0

func (x *ConfigSetRequest) GetRef() *ConfigRef

func (*ConfigSetRequest) GetValue added in v0.408.0

func (x *ConfigSetRequest) GetValue() []byte

func (*ConfigSetRequest) ProtoMessage added in v0.408.0

func (*ConfigSetRequest) ProtoMessage()

func (*ConfigSetRequest) ProtoReflect added in v0.408.0

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

func (*ConfigSetRequest) Reset added in v0.408.0

func (x *ConfigSetRequest) Reset()

func (*ConfigSetRequest) String added in v0.408.0

func (x *ConfigSetRequest) String() string

type ConfigSetResponse added in v0.408.0

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

func (*ConfigSetResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigSetResponse.ProtoReflect.Descriptor instead.

func (*ConfigSetResponse) ProtoMessage added in v0.408.0

func (*ConfigSetResponse) ProtoMessage()

func (*ConfigSetResponse) ProtoReflect added in v0.408.0

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

func (*ConfigSetResponse) Reset added in v0.408.0

func (x *ConfigSetResponse) Reset()

func (*ConfigSetResponse) String added in v0.408.0

func (x *ConfigSetResponse) String() string

type ConfigUnsetRequest added in v0.408.0

type ConfigUnsetRequest struct {
	Provider *ConfigProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=xyz.block.ftl.v1.ConfigProvider,oneof" json:"provider,omitempty"`
	Ref      *ConfigRef      `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigUnsetRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigUnsetRequest.ProtoReflect.Descriptor instead.

func (*ConfigUnsetRequest) GetProvider added in v0.408.0

func (x *ConfigUnsetRequest) GetProvider() ConfigProvider

func (*ConfigUnsetRequest) GetRef added in v0.408.0

func (x *ConfigUnsetRequest) GetRef() *ConfigRef

func (*ConfigUnsetRequest) ProtoMessage added in v0.408.0

func (*ConfigUnsetRequest) ProtoMessage()

func (*ConfigUnsetRequest) ProtoReflect added in v0.408.0

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

func (*ConfigUnsetRequest) Reset added in v0.408.0

func (x *ConfigUnsetRequest) Reset()

func (*ConfigUnsetRequest) String added in v0.408.0

func (x *ConfigUnsetRequest) String() string

type ConfigUnsetResponse added in v0.408.0

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

func (*ConfigUnsetResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use ConfigUnsetResponse.ProtoReflect.Descriptor instead.

func (*ConfigUnsetResponse) ProtoMessage added in v0.408.0

func (*ConfigUnsetResponse) ProtoMessage()

func (*ConfigUnsetResponse) ProtoReflect added in v0.408.0

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

func (*ConfigUnsetResponse) Reset added in v0.408.0

func (x *ConfigUnsetResponse) Reset()

func (*ConfigUnsetResponse) String added in v0.408.0

func (x *ConfigUnsetResponse) String() string

type CreateDeploymentRequest

type CreateDeploymentRequest struct {
	Schema    *v1.Module            `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"`
	Artefacts []*DeploymentArtefact `protobuf:"bytes,2,rep,name=artefacts,proto3" json:"artefacts,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateDeploymentRequest) Descriptor deprecated

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

Deprecated: Use CreateDeploymentRequest.ProtoReflect.Descriptor instead.

func (*CreateDeploymentRequest) GetArtefacts

func (x *CreateDeploymentRequest) GetArtefacts() []*DeploymentArtefact

func (*CreateDeploymentRequest) GetSchema

func (x *CreateDeploymentRequest) GetSchema() *v1.Module

func (*CreateDeploymentRequest) ProtoMessage

func (*CreateDeploymentRequest) ProtoMessage()

func (*CreateDeploymentRequest) ProtoReflect

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

func (*CreateDeploymentRequest) Reset

func (x *CreateDeploymentRequest) Reset()

func (*CreateDeploymentRequest) String

func (x *CreateDeploymentRequest) String() string

type CreateDeploymentResponse

type CreateDeploymentResponse struct {
	DeploymentKey string `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3" json:"deployment_key,omitempty"`
	// Currently active deployment for this module, if any.
	ActiveDeploymentKey *string `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateDeploymentResponse) Descriptor deprecated

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

Deprecated: Use CreateDeploymentResponse.ProtoReflect.Descriptor instead.

func (*CreateDeploymentResponse) GetActiveDeploymentKey added in v0.151.0

func (x *CreateDeploymentResponse) GetActiveDeploymentKey() string

func (*CreateDeploymentResponse) GetDeploymentKey added in v0.151.0

func (x *CreateDeploymentResponse) GetDeploymentKey() string

func (*CreateDeploymentResponse) ProtoMessage

func (*CreateDeploymentResponse) ProtoMessage()

func (*CreateDeploymentResponse) ProtoReflect

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

func (*CreateDeploymentResponse) Reset

func (x *CreateDeploymentResponse) Reset()

func (*CreateDeploymentResponse) String

func (x *CreateDeploymentResponse) String() string

type DeploymentArtefact

type DeploymentArtefact struct {
	Digest     string `protobuf:"bytes,1,opt,name=digest,proto3" json:"digest,omitempty"`
	Path       string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Executable bool   `protobuf:"varint,3,opt,name=executable,proto3" json:"executable,omitempty"`
	// contains filtered or unexported fields
}

func ArtefactToProto

func ArtefactToProto(artefact *model.Artefact) *DeploymentArtefact

func (*DeploymentArtefact) Descriptor deprecated

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

Deprecated: Use DeploymentArtefact.ProtoReflect.Descriptor instead.

func (*DeploymentArtefact) GetDigest

func (x *DeploymentArtefact) GetDigest() string

func (*DeploymentArtefact) GetExecutable

func (x *DeploymentArtefact) GetExecutable() bool

func (*DeploymentArtefact) GetPath

func (x *DeploymentArtefact) GetPath() string

func (*DeploymentArtefact) ProtoMessage

func (*DeploymentArtefact) ProtoMessage()

func (*DeploymentArtefact) ProtoReflect

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

func (*DeploymentArtefact) Reset

func (x *DeploymentArtefact) Reset()

func (*DeploymentArtefact) String

func (x *DeploymentArtefact) String() string

type DeploymentChangeType

type DeploymentChangeType int32
const (
	DeploymentChangeType_DEPLOYMENT_CHANGE_TYPE_UNSPECIFIED DeploymentChangeType = 0
	DeploymentChangeType_DEPLOYMENT_CHANGE_TYPE_ADDED       DeploymentChangeType = 1
	DeploymentChangeType_DEPLOYMENT_CHANGE_TYPE_REMOVED     DeploymentChangeType = 2
	DeploymentChangeType_DEPLOYMENT_CHANGE_TYPE_CHANGED     DeploymentChangeType = 3
)

func (DeploymentChangeType) Descriptor

func (DeploymentChangeType) Enum

func (DeploymentChangeType) EnumDescriptor deprecated

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

Deprecated: Use DeploymentChangeType.Descriptor instead.

func (DeploymentChangeType) Number

func (DeploymentChangeType) String

func (x DeploymentChangeType) String() string

func (DeploymentChangeType) Type

type GetArtefactDiffsRequest

type GetArtefactDiffsRequest struct {
	ClientDigests []string `protobuf:"bytes,1,rep,name=client_digests,json=clientDigests,proto3" json:"client_digests,omitempty"`
	// contains filtered or unexported fields
}

func (*GetArtefactDiffsRequest) Descriptor deprecated

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

Deprecated: Use GetArtefactDiffsRequest.ProtoReflect.Descriptor instead.

func (*GetArtefactDiffsRequest) GetClientDigests

func (x *GetArtefactDiffsRequest) GetClientDigests() []string

func (*GetArtefactDiffsRequest) ProtoMessage

func (*GetArtefactDiffsRequest) ProtoMessage()

func (*GetArtefactDiffsRequest) ProtoReflect

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

func (*GetArtefactDiffsRequest) Reset

func (x *GetArtefactDiffsRequest) Reset()

func (*GetArtefactDiffsRequest) String

func (x *GetArtefactDiffsRequest) String() string

type GetArtefactDiffsResponse

type GetArtefactDiffsResponse struct {
	MissingDigests []string `protobuf:"bytes,1,rep,name=missing_digests,json=missingDigests,proto3" json:"missing_digests,omitempty"`
	// Artefacts that the client already has, and their path+executable status.
	ClientArtefacts []*DeploymentArtefact `protobuf:"bytes,2,rep,name=client_artefacts,json=clientArtefacts,proto3" json:"client_artefacts,omitempty"`
	// contains filtered or unexported fields
}

func (*GetArtefactDiffsResponse) Descriptor deprecated

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

Deprecated: Use GetArtefactDiffsResponse.ProtoReflect.Descriptor instead.

func (*GetArtefactDiffsResponse) GetClientArtefacts

func (x *GetArtefactDiffsResponse) GetClientArtefacts() []*DeploymentArtefact

func (*GetArtefactDiffsResponse) GetMissingDigests

func (x *GetArtefactDiffsResponse) GetMissingDigests() []string

func (*GetArtefactDiffsResponse) ProtoMessage

func (*GetArtefactDiffsResponse) ProtoMessage()

func (*GetArtefactDiffsResponse) ProtoReflect

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

func (*GetArtefactDiffsResponse) Reset

func (x *GetArtefactDiffsResponse) Reset()

func (*GetArtefactDiffsResponse) String

func (x *GetArtefactDiffsResponse) String() string

type GetDeploymentArtefactsRequest

type GetDeploymentArtefactsRequest struct {
	DeploymentKey string                `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3" json:"deployment_key,omitempty"`
	HaveArtefacts []*DeploymentArtefact `protobuf:"bytes,2,rep,name=have_artefacts,json=haveArtefacts,proto3" json:"have_artefacts,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentArtefactsRequest) Descriptor deprecated

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

Deprecated: Use GetDeploymentArtefactsRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentArtefactsRequest) GetDeploymentKey added in v0.151.0

func (x *GetDeploymentArtefactsRequest) GetDeploymentKey() string

func (*GetDeploymentArtefactsRequest) GetHaveArtefacts

func (x *GetDeploymentArtefactsRequest) GetHaveArtefacts() []*DeploymentArtefact

func (*GetDeploymentArtefactsRequest) ProtoMessage

func (*GetDeploymentArtefactsRequest) ProtoMessage()

func (*GetDeploymentArtefactsRequest) ProtoReflect

func (*GetDeploymentArtefactsRequest) Reset

func (x *GetDeploymentArtefactsRequest) Reset()

func (*GetDeploymentArtefactsRequest) String

type GetDeploymentArtefactsResponse

type GetDeploymentArtefactsResponse struct {
	Artefact *DeploymentArtefact `protobuf:"bytes,1,opt,name=artefact,proto3" json:"artefact,omitempty"`
	Chunk    []byte              `protobuf:"bytes,2,opt,name=chunk,proto3" json:"chunk,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentArtefactsResponse) Descriptor deprecated

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

Deprecated: Use GetDeploymentArtefactsResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentArtefactsResponse) GetArtefact

func (*GetDeploymentArtefactsResponse) GetChunk

func (x *GetDeploymentArtefactsResponse) GetChunk() []byte

func (*GetDeploymentArtefactsResponse) ProtoMessage

func (*GetDeploymentArtefactsResponse) ProtoMessage()

func (*GetDeploymentArtefactsResponse) ProtoReflect

func (*GetDeploymentArtefactsResponse) Reset

func (x *GetDeploymentArtefactsResponse) Reset()

func (*GetDeploymentArtefactsResponse) String

type GetDeploymentRequest

type GetDeploymentRequest struct {
	DeploymentKey string `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3" json:"deployment_key,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentRequest) Descriptor deprecated

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

Deprecated: Use GetDeploymentRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentRequest) GetDeploymentKey added in v0.151.0

func (x *GetDeploymentRequest) GetDeploymentKey() string

func (*GetDeploymentRequest) ProtoMessage

func (*GetDeploymentRequest) ProtoMessage()

func (*GetDeploymentRequest) ProtoReflect

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

func (*GetDeploymentRequest) Reset

func (x *GetDeploymentRequest) Reset()

func (*GetDeploymentRequest) String

func (x *GetDeploymentRequest) String() string

type GetDeploymentResponse

type GetDeploymentResponse struct {
	Schema    *v1.Module            `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"`
	Artefacts []*DeploymentArtefact `protobuf:"bytes,2,rep,name=artefacts,proto3" json:"artefacts,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentResponse) Descriptor deprecated

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

Deprecated: Use GetDeploymentResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentResponse) GetArtefacts

func (x *GetDeploymentResponse) GetArtefacts() []*DeploymentArtefact

func (*GetDeploymentResponse) GetSchema

func (x *GetDeploymentResponse) GetSchema() *v1.Module

func (*GetDeploymentResponse) ProtoMessage

func (*GetDeploymentResponse) ProtoMessage()

func (*GetDeploymentResponse) ProtoReflect

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

func (*GetDeploymentResponse) Reset

func (x *GetDeploymentResponse) Reset()

func (*GetDeploymentResponse) String

func (x *GetDeploymentResponse) String() string

type GetSchemaRequest

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

func (*GetSchemaRequest) Descriptor deprecated

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

Deprecated: Use GetSchemaRequest.ProtoReflect.Descriptor instead.

func (*GetSchemaRequest) ProtoMessage

func (*GetSchemaRequest) ProtoMessage()

func (*GetSchemaRequest) ProtoReflect

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

func (*GetSchemaRequest) Reset

func (x *GetSchemaRequest) Reset()

func (*GetSchemaRequest) String

func (x *GetSchemaRequest) String() string

type GetSchemaResponse

type GetSchemaResponse struct {
	Schema *v1.Schema `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSchemaResponse) Descriptor deprecated

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

Deprecated: Use GetSchemaResponse.ProtoReflect.Descriptor instead.

func (*GetSchemaResponse) GetSchema

func (x *GetSchemaResponse) GetSchema() *v1.Schema

func (*GetSchemaResponse) ProtoMessage

func (*GetSchemaResponse) ProtoMessage()

func (*GetSchemaResponse) ProtoReflect

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

func (*GetSchemaResponse) Reset

func (x *GetSchemaResponse) Reset()

func (*GetSchemaResponse) String

func (x *GetSchemaResponse) String() string

type Metadata

type Metadata struct {
	Values []*Metadata_Pair `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*Metadata) Add

func (m *Metadata) Add(key, value string)

func (*Metadata) Delete

func (m *Metadata) Delete(key string)

func (*Metadata) Descriptor deprecated

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

Deprecated: Use Metadata.ProtoReflect.Descriptor instead.

func (*Metadata) Get

func (m *Metadata) Get(key string) optional.Option[string]

func (*Metadata) GetAll

func (m *Metadata) GetAll(key string) (out []string)

func (*Metadata) GetValues

func (x *Metadata) GetValues() []*Metadata_Pair

func (*Metadata) ProtoMessage

func (*Metadata) ProtoMessage()

func (*Metadata) ProtoReflect

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

func (*Metadata) Reset

func (x *Metadata) Reset()

func (*Metadata) Set

func (m *Metadata) Set(key, value string)

func (*Metadata) String

func (x *Metadata) String() string

type Metadata_Pair

type Metadata_Pair struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Metadata_Pair) Descriptor deprecated

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

Deprecated: Use Metadata_Pair.ProtoReflect.Descriptor instead.

func (*Metadata_Pair) GetKey

func (x *Metadata_Pair) GetKey() string

func (*Metadata_Pair) GetValue

func (x *Metadata_Pair) GetValue() string

func (*Metadata_Pair) ProtoMessage

func (*Metadata_Pair) ProtoMessage()

func (*Metadata_Pair) ProtoReflect

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

func (*Metadata_Pair) Reset

func (x *Metadata_Pair) Reset()

func (*Metadata_Pair) String

func (x *Metadata_Pair) String() string

type PingRequest

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

func (*PingRequest) Descriptor deprecated

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

Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.

func (*PingRequest) ProtoMessage

func (*PingRequest) ProtoMessage()

func (*PingRequest) ProtoReflect

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

func (*PingRequest) Reset

func (x *PingRequest) Reset()

func (*PingRequest) String

func (x *PingRequest) String() string

type PingResponse

type PingResponse struct {

	// If present, the service is not ready to accept requests and this is the
	// reason.
	NotReady *string `protobuf:"bytes,1,opt,name=not_ready,json=notReady,proto3,oneof" json:"not_ready,omitempty"`
	// contains filtered or unexported fields
}

func (*PingResponse) Descriptor deprecated

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

Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.

func (*PingResponse) GetNotReady

func (x *PingResponse) GetNotReady() string

func (*PingResponse) ProtoMessage

func (*PingResponse) ProtoMessage()

func (*PingResponse) ProtoReflect

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

func (*PingResponse) Reset

func (x *PingResponse) Reset()

func (*PingResponse) String

func (x *PingResponse) String() string

type ProcessListRequest

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

func (*ProcessListRequest) Descriptor deprecated

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

Deprecated: Use ProcessListRequest.ProtoReflect.Descriptor instead.

func (*ProcessListRequest) ProtoMessage

func (*ProcessListRequest) ProtoMessage()

func (*ProcessListRequest) ProtoReflect

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

func (*ProcessListRequest) Reset

func (x *ProcessListRequest) Reset()

func (*ProcessListRequest) String

func (x *ProcessListRequest) String() string

type ProcessListResponse

type ProcessListResponse struct {
	Processes []*ProcessListResponse_Process `protobuf:"bytes,1,rep,name=processes,proto3" json:"processes,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessListResponse) Descriptor deprecated

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

Deprecated: Use ProcessListResponse.ProtoReflect.Descriptor instead.

func (*ProcessListResponse) GetProcesses

func (x *ProcessListResponse) GetProcesses() []*ProcessListResponse_Process

func (*ProcessListResponse) ProtoMessage

func (*ProcessListResponse) ProtoMessage()

func (*ProcessListResponse) ProtoReflect

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

func (*ProcessListResponse) Reset

func (x *ProcessListResponse) Reset()

func (*ProcessListResponse) String

func (x *ProcessListResponse) String() string

type ProcessListResponse_Process

type ProcessListResponse_Process struct {
	Deployment  string                             `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	MinReplicas int32                              `protobuf:"varint,2,opt,name=min_replicas,json=minReplicas,proto3" json:"min_replicas,omitempty"`
	Labels      *structpb.Struct                   `protobuf:"bytes,3,opt,name=labels,proto3" json:"labels,omitempty"`
	Runner      *ProcessListResponse_ProcessRunner `protobuf:"bytes,4,opt,name=runner,proto3,oneof" json:"runner,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessListResponse_Process) Descriptor deprecated

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

Deprecated: Use ProcessListResponse_Process.ProtoReflect.Descriptor instead.

func (*ProcessListResponse_Process) GetDeployment

func (x *ProcessListResponse_Process) GetDeployment() string

func (*ProcessListResponse_Process) GetLabels

func (*ProcessListResponse_Process) GetMinReplicas

func (x *ProcessListResponse_Process) GetMinReplicas() int32

func (*ProcessListResponse_Process) GetRunner

func (*ProcessListResponse_Process) ProtoMessage

func (*ProcessListResponse_Process) ProtoMessage()

func (*ProcessListResponse_Process) ProtoReflect

func (*ProcessListResponse_Process) Reset

func (x *ProcessListResponse_Process) Reset()

func (*ProcessListResponse_Process) String

func (x *ProcessListResponse_Process) String() string

type ProcessListResponse_ProcessRunner

type ProcessListResponse_ProcessRunner struct {
	Key      string           `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Endpoint string           `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	Labels   *structpb.Struct `protobuf:"bytes,3,opt,name=labels,proto3" json:"labels,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessListResponse_ProcessRunner) Descriptor deprecated

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

Deprecated: Use ProcessListResponse_ProcessRunner.ProtoReflect.Descriptor instead.

func (*ProcessListResponse_ProcessRunner) GetEndpoint

func (x *ProcessListResponse_ProcessRunner) GetEndpoint() string

func (*ProcessListResponse_ProcessRunner) GetKey

func (*ProcessListResponse_ProcessRunner) GetLabels

func (*ProcessListResponse_ProcessRunner) ProtoMessage

func (*ProcessListResponse_ProcessRunner) ProtoMessage()

func (*ProcessListResponse_ProcessRunner) ProtoReflect

func (*ProcessListResponse_ProcessRunner) Reset

func (*ProcessListResponse_ProcessRunner) String

type PullSchemaRequest

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

func (*PullSchemaRequest) Descriptor deprecated

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

Deprecated: Use PullSchemaRequest.ProtoReflect.Descriptor instead.

func (*PullSchemaRequest) ProtoMessage

func (*PullSchemaRequest) ProtoMessage()

func (*PullSchemaRequest) ProtoReflect

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

func (*PullSchemaRequest) Reset

func (x *PullSchemaRequest) Reset()

func (*PullSchemaRequest) String

func (x *PullSchemaRequest) String() string

type PullSchemaResponse

type PullSchemaResponse struct {

	// Will not be set for builtin modules.
	DeploymentKey *string `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3,oneof" json:"deployment_key,omitempty"`
	ModuleName    string  `protobuf:"bytes,2,opt,name=module_name,json=moduleName,proto3" json:"module_name,omitempty"`
	// For deletes this will not be present.
	Schema *v1.Module `protobuf:"bytes,4,opt,name=schema,proto3,oneof" json:"schema,omitempty"`
	// If true there are more schema changes immediately following this one as part of the initial batch.
	// If false this is the last schema change in the initial batch, but others may follow later.
	More       bool                 `protobuf:"varint,3,opt,name=more,proto3" json:"more,omitempty"`
	ChangeType DeploymentChangeType `` /* 135-byte string literal not displayed */
	// If this is true then the module was removed as well as the deployment. This is only set for DEPLOYMENT_REMOVED.
	ModuleRemoved bool `protobuf:"varint,6,opt,name=module_removed,json=moduleRemoved,proto3" json:"module_removed,omitempty"`
	// contains filtered or unexported fields
}

func (*PullSchemaResponse) Descriptor deprecated

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

Deprecated: Use PullSchemaResponse.ProtoReflect.Descriptor instead.

func (*PullSchemaResponse) GetChangeType

func (x *PullSchemaResponse) GetChangeType() DeploymentChangeType

func (*PullSchemaResponse) GetDeploymentKey added in v0.151.0

func (x *PullSchemaResponse) GetDeploymentKey() string

func (*PullSchemaResponse) GetModuleName

func (x *PullSchemaResponse) GetModuleName() string

func (*PullSchemaResponse) GetModuleRemoved added in v0.402.0

func (x *PullSchemaResponse) GetModuleRemoved() bool

func (*PullSchemaResponse) GetMore

func (x *PullSchemaResponse) GetMore() bool

func (*PullSchemaResponse) GetSchema

func (x *PullSchemaResponse) GetSchema() *v1.Module

func (*PullSchemaResponse) ProtoMessage

func (*PullSchemaResponse) ProtoMessage()

func (*PullSchemaResponse) ProtoReflect

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

func (*PullSchemaResponse) Reset

func (x *PullSchemaResponse) Reset()

func (*PullSchemaResponse) String

func (x *PullSchemaResponse) String() string

type RegisterRunnerRequest

type RegisterRunnerRequest struct {
	Key        string           `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Endpoint   string           `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	Deployment string           `protobuf:"bytes,3,opt,name=deployment,proto3" json:"deployment,omitempty"`
	Labels     *structpb.Struct `protobuf:"bytes,5,opt,name=labels,proto3" json:"labels,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterRunnerRequest) Descriptor deprecated

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

Deprecated: Use RegisterRunnerRequest.ProtoReflect.Descriptor instead.

func (*RegisterRunnerRequest) GetDeployment

func (x *RegisterRunnerRequest) GetDeployment() string

func (*RegisterRunnerRequest) GetEndpoint

func (x *RegisterRunnerRequest) GetEndpoint() string

func (*RegisterRunnerRequest) GetKey

func (x *RegisterRunnerRequest) GetKey() string

func (*RegisterRunnerRequest) GetLabels

func (x *RegisterRunnerRequest) GetLabels() *structpb.Struct

func (*RegisterRunnerRequest) ProtoMessage

func (*RegisterRunnerRequest) ProtoMessage()

func (*RegisterRunnerRequest) ProtoReflect

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

func (*RegisterRunnerRequest) Reset

func (x *RegisterRunnerRequest) Reset()

func (*RegisterRunnerRequest) String

func (x *RegisterRunnerRequest) String() string

type RegisterRunnerResponse

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

func (*RegisterRunnerResponse) Descriptor deprecated

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

Deprecated: Use RegisterRunnerResponse.ProtoReflect.Descriptor instead.

func (*RegisterRunnerResponse) ProtoMessage

func (*RegisterRunnerResponse) ProtoMessage()

func (*RegisterRunnerResponse) ProtoReflect

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

func (*RegisterRunnerResponse) Reset

func (x *RegisterRunnerResponse) Reset()

func (*RegisterRunnerResponse) String

func (x *RegisterRunnerResponse) String() string

type ReplaceDeployRequest

type ReplaceDeployRequest struct {
	DeploymentKey string `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3" json:"deployment_key,omitempty"`
	MinReplicas   int32  `protobuf:"varint,2,opt,name=min_replicas,json=minReplicas,proto3" json:"min_replicas,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplaceDeployRequest) Descriptor deprecated

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

Deprecated: Use ReplaceDeployRequest.ProtoReflect.Descriptor instead.

func (*ReplaceDeployRequest) GetDeploymentKey added in v0.151.0

func (x *ReplaceDeployRequest) GetDeploymentKey() string

func (*ReplaceDeployRequest) GetMinReplicas

func (x *ReplaceDeployRequest) GetMinReplicas() int32

func (*ReplaceDeployRequest) ProtoMessage

func (*ReplaceDeployRequest) ProtoMessage()

func (*ReplaceDeployRequest) ProtoReflect

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

func (*ReplaceDeployRequest) Reset

func (x *ReplaceDeployRequest) Reset()

func (*ReplaceDeployRequest) String

func (x *ReplaceDeployRequest) String() string

type ReplaceDeployResponse

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

func (*ReplaceDeployResponse) Descriptor deprecated

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

Deprecated: Use ReplaceDeployResponse.ProtoReflect.Descriptor instead.

func (*ReplaceDeployResponse) ProtoMessage

func (*ReplaceDeployResponse) ProtoMessage()

func (*ReplaceDeployResponse) ProtoReflect

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

func (*ReplaceDeployResponse) Reset

func (x *ReplaceDeployResponse) Reset()

func (*ReplaceDeployResponse) String

func (x *ReplaceDeployResponse) String() string

type ResetSubscriptionRequest added in v0.312.0

type ResetSubscriptionRequest struct {
	Subscription *v1.Ref `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetSubscriptionRequest) Descriptor deprecated added in v0.312.0

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

Deprecated: Use ResetSubscriptionRequest.ProtoReflect.Descriptor instead.

func (*ResetSubscriptionRequest) GetSubscription added in v0.312.0

func (x *ResetSubscriptionRequest) GetSubscription() *v1.Ref

func (*ResetSubscriptionRequest) ProtoMessage added in v0.312.0

func (*ResetSubscriptionRequest) ProtoMessage()

func (*ResetSubscriptionRequest) ProtoReflect added in v0.312.0

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

func (*ResetSubscriptionRequest) Reset added in v0.312.0

func (x *ResetSubscriptionRequest) Reset()

func (*ResetSubscriptionRequest) String added in v0.312.0

func (x *ResetSubscriptionRequest) String() string

type ResetSubscriptionResponse added in v0.312.0

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

func (*ResetSubscriptionResponse) Descriptor deprecated added in v0.312.0

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

Deprecated: Use ResetSubscriptionResponse.ProtoReflect.Descriptor instead.

func (*ResetSubscriptionResponse) ProtoMessage added in v0.312.0

func (*ResetSubscriptionResponse) ProtoMessage()

func (*ResetSubscriptionResponse) ProtoReflect added in v0.312.0

func (*ResetSubscriptionResponse) Reset added in v0.312.0

func (x *ResetSubscriptionResponse) Reset()

func (*ResetSubscriptionResponse) String added in v0.312.0

func (x *ResetSubscriptionResponse) String() string

type SecretGetRequest added in v0.408.0

type SecretGetRequest struct {
	Ref *ConfigRef `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretGetRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretGetRequest.ProtoReflect.Descriptor instead.

func (*SecretGetRequest) GetRef added in v0.408.0

func (x *SecretGetRequest) GetRef() *ConfigRef

func (*SecretGetRequest) ProtoMessage added in v0.408.0

func (*SecretGetRequest) ProtoMessage()

func (*SecretGetRequest) ProtoReflect added in v0.408.0

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

func (*SecretGetRequest) Reset added in v0.408.0

func (x *SecretGetRequest) Reset()

func (*SecretGetRequest) String added in v0.408.0

func (x *SecretGetRequest) String() string

type SecretGetResponse added in v0.408.0

type SecretGetResponse struct {
	Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretGetResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretGetResponse.ProtoReflect.Descriptor instead.

func (*SecretGetResponse) GetValue added in v0.408.0

func (x *SecretGetResponse) GetValue() []byte

func (*SecretGetResponse) ProtoMessage added in v0.408.0

func (*SecretGetResponse) ProtoMessage()

func (*SecretGetResponse) ProtoReflect added in v0.408.0

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

func (*SecretGetResponse) Reset added in v0.408.0

func (x *SecretGetResponse) Reset()

func (*SecretGetResponse) String added in v0.408.0

func (x *SecretGetResponse) String() string

type SecretProvider added in v0.240.0

type SecretProvider int32
const (
	SecretProvider_SECRET_PROVIDER_UNSPECIFIED SecretProvider = 0
	// Write values inline in the configuration file.
	SecretProvider_SECRET_PROVIDER_INLINE SecretProvider = 1
	// Print configuration as environment variables.
	SecretProvider_SECRET_PROVIDER_ENVAR SecretProvider = 2
	// Write to the system keychain.
	SecretProvider_SECRET_PROVIDER_KEYCHAIN SecretProvider = 3
	// Store a secret in the 1Password vault.
	SecretProvider_SECRET_PROVIDER_OP SecretProvider = 4
	// Store a secret in the AWS Secrets Manager.
	SecretProvider_SECRET_PROVIDER_ASM SecretProvider = 5
)

func (SecretProvider) Descriptor added in v0.240.0

func (SecretProvider) Enum added in v0.240.0

func (x SecretProvider) Enum() *SecretProvider

func (SecretProvider) EnumDescriptor deprecated added in v0.240.0

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

Deprecated: Use SecretProvider.Descriptor instead.

func (SecretProvider) Number added in v0.240.0

func (SecretProvider) String added in v0.240.0

func (x SecretProvider) String() string

func (SecretProvider) Type added in v0.240.0

type SecretSetRequest added in v0.408.0

type SecretSetRequest struct {
	Provider *SecretProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=xyz.block.ftl.v1.SecretProvider,oneof" json:"provider,omitempty"`
	Ref      *ConfigRef      `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"`
	Value    []byte          `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretSetRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretSetRequest.ProtoReflect.Descriptor instead.

func (*SecretSetRequest) GetProvider added in v0.408.0

func (x *SecretSetRequest) GetProvider() SecretProvider

func (*SecretSetRequest) GetRef added in v0.408.0

func (x *SecretSetRequest) GetRef() *ConfigRef

func (*SecretSetRequest) GetValue added in v0.408.0

func (x *SecretSetRequest) GetValue() []byte

func (*SecretSetRequest) ProtoMessage added in v0.408.0

func (*SecretSetRequest) ProtoMessage()

func (*SecretSetRequest) ProtoReflect added in v0.408.0

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

func (*SecretSetRequest) Reset added in v0.408.0

func (x *SecretSetRequest) Reset()

func (*SecretSetRequest) String added in v0.408.0

func (x *SecretSetRequest) String() string

type SecretSetResponse added in v0.408.0

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

func (*SecretSetResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretSetResponse.ProtoReflect.Descriptor instead.

func (*SecretSetResponse) ProtoMessage added in v0.408.0

func (*SecretSetResponse) ProtoMessage()

func (*SecretSetResponse) ProtoReflect added in v0.408.0

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

func (*SecretSetResponse) Reset added in v0.408.0

func (x *SecretSetResponse) Reset()

func (*SecretSetResponse) String added in v0.408.0

func (x *SecretSetResponse) String() string

type SecretUnsetRequest added in v0.408.0

type SecretUnsetRequest struct {
	Provider *SecretProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=xyz.block.ftl.v1.SecretProvider,oneof" json:"provider,omitempty"`
	Ref      *ConfigRef      `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretUnsetRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretUnsetRequest.ProtoReflect.Descriptor instead.

func (*SecretUnsetRequest) GetProvider added in v0.408.0

func (x *SecretUnsetRequest) GetProvider() SecretProvider

func (*SecretUnsetRequest) GetRef added in v0.408.0

func (x *SecretUnsetRequest) GetRef() *ConfigRef

func (*SecretUnsetRequest) ProtoMessage added in v0.408.0

func (*SecretUnsetRequest) ProtoMessage()

func (*SecretUnsetRequest) ProtoReflect added in v0.408.0

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

func (*SecretUnsetRequest) Reset added in v0.408.0

func (x *SecretUnsetRequest) Reset()

func (*SecretUnsetRequest) String added in v0.408.0

func (x *SecretUnsetRequest) String() string

type SecretUnsetResponse added in v0.408.0

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

func (*SecretUnsetResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretUnsetResponse.ProtoReflect.Descriptor instead.

func (*SecretUnsetResponse) ProtoMessage added in v0.408.0

func (*SecretUnsetResponse) ProtoMessage()

func (*SecretUnsetResponse) ProtoReflect added in v0.408.0

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

func (*SecretUnsetResponse) Reset added in v0.408.0

func (x *SecretUnsetResponse) Reset()

func (*SecretUnsetResponse) String added in v0.408.0

func (x *SecretUnsetResponse) String() string

type SecretsListRequest added in v0.408.0

type SecretsListRequest struct {
	Module        *string         `protobuf:"bytes,1,opt,name=module,proto3,oneof" json:"module,omitempty"`
	IncludeValues *bool           `protobuf:"varint,2,opt,name=include_values,json=includeValues,proto3,oneof" json:"include_values,omitempty"`
	Provider      *SecretProvider `protobuf:"varint,3,opt,name=provider,proto3,enum=xyz.block.ftl.v1.SecretProvider,oneof" json:"provider,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretsListRequest) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretsListRequest.ProtoReflect.Descriptor instead.

func (*SecretsListRequest) GetIncludeValues added in v0.408.0

func (x *SecretsListRequest) GetIncludeValues() bool

func (*SecretsListRequest) GetModule added in v0.408.0

func (x *SecretsListRequest) GetModule() string

func (*SecretsListRequest) GetProvider added in v0.408.0

func (x *SecretsListRequest) GetProvider() SecretProvider

func (*SecretsListRequest) ProtoMessage added in v0.408.0

func (*SecretsListRequest) ProtoMessage()

func (*SecretsListRequest) ProtoReflect added in v0.408.0

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

func (*SecretsListRequest) Reset added in v0.408.0

func (x *SecretsListRequest) Reset()

func (*SecretsListRequest) String added in v0.408.0

func (x *SecretsListRequest) String() string

type SecretsListResponse added in v0.408.0

type SecretsListResponse struct {
	Secrets []*SecretsListResponse_Secret `protobuf:"bytes,1,rep,name=secrets,proto3" json:"secrets,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretsListResponse) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretsListResponse.ProtoReflect.Descriptor instead.

func (*SecretsListResponse) GetSecrets added in v0.408.0

func (*SecretsListResponse) ProtoMessage added in v0.408.0

func (*SecretsListResponse) ProtoMessage()

func (*SecretsListResponse) ProtoReflect added in v0.408.0

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

func (*SecretsListResponse) Reset added in v0.408.0

func (x *SecretsListResponse) Reset()

func (*SecretsListResponse) String added in v0.408.0

func (x *SecretsListResponse) String() string

type SecretsListResponse_Secret added in v0.408.0

type SecretsListResponse_Secret struct {
	RefPath string `protobuf:"bytes,1,opt,name=ref_path,json=refPath,proto3" json:"ref_path,omitempty"`
	Value   []byte `protobuf:"bytes,2,opt,name=value,proto3,oneof" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretsListResponse_Secret) Descriptor deprecated added in v0.408.0

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

Deprecated: Use SecretsListResponse_Secret.ProtoReflect.Descriptor instead.

func (*SecretsListResponse_Secret) GetRefPath added in v0.408.0

func (x *SecretsListResponse_Secret) GetRefPath() string

func (*SecretsListResponse_Secret) GetValue added in v0.408.0

func (x *SecretsListResponse_Secret) GetValue() []byte

func (*SecretsListResponse_Secret) ProtoMessage added in v0.408.0

func (*SecretsListResponse_Secret) ProtoMessage()

func (*SecretsListResponse_Secret) ProtoReflect added in v0.408.0

func (*SecretsListResponse_Secret) Reset added in v0.408.0

func (x *SecretsListResponse_Secret) Reset()

func (*SecretsListResponse_Secret) String added in v0.408.0

func (x *SecretsListResponse_Secret) String() string

type StatusRequest

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

func (*StatusRequest) Descriptor deprecated

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

Deprecated: Use StatusRequest.ProtoReflect.Descriptor instead.

func (*StatusRequest) ProtoMessage

func (*StatusRequest) ProtoMessage()

func (*StatusRequest) ProtoReflect

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

func (*StatusRequest) Reset

func (x *StatusRequest) Reset()

func (*StatusRequest) String

func (x *StatusRequest) String() string

type StatusResponse

type StatusResponse struct {
	Controllers []*StatusResponse_Controller `protobuf:"bytes,1,rep,name=controllers,proto3" json:"controllers,omitempty"`
	Runners     []*StatusResponse_Runner     `protobuf:"bytes,2,rep,name=runners,proto3" json:"runners,omitempty"`
	Deployments []*StatusResponse_Deployment `protobuf:"bytes,3,rep,name=deployments,proto3" json:"deployments,omitempty"`
	Routes      []*StatusResponse_Route      `protobuf:"bytes,5,rep,name=routes,proto3" json:"routes,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusResponse) Descriptor deprecated

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

Deprecated: Use StatusResponse.ProtoReflect.Descriptor instead.

func (*StatusResponse) GetControllers

func (x *StatusResponse) GetControllers() []*StatusResponse_Controller

func (*StatusResponse) GetDeployments

func (x *StatusResponse) GetDeployments() []*StatusResponse_Deployment

func (*StatusResponse) GetRoutes

func (x *StatusResponse) GetRoutes() []*StatusResponse_Route

func (*StatusResponse) GetRunners

func (x *StatusResponse) GetRunners() []*StatusResponse_Runner

func (*StatusResponse) ProtoMessage

func (*StatusResponse) ProtoMessage()

func (*StatusResponse) ProtoReflect

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

func (*StatusResponse) Reset

func (x *StatusResponse) Reset()

func (*StatusResponse) String

func (x *StatusResponse) String() string

type StatusResponse_Controller

type StatusResponse_Controller struct {
	Key      string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Endpoint string `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	Version  string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusResponse_Controller) Descriptor deprecated

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

Deprecated: Use StatusResponse_Controller.ProtoReflect.Descriptor instead.

func (*StatusResponse_Controller) GetEndpoint

func (x *StatusResponse_Controller) GetEndpoint() string

func (*StatusResponse_Controller) GetKey

func (x *StatusResponse_Controller) GetKey() string

func (*StatusResponse_Controller) GetVersion added in v0.237.0

func (x *StatusResponse_Controller) GetVersion() string

func (*StatusResponse_Controller) ProtoMessage

func (*StatusResponse_Controller) ProtoMessage()

func (*StatusResponse_Controller) ProtoReflect

func (*StatusResponse_Controller) Reset

func (x *StatusResponse_Controller) Reset()

func (*StatusResponse_Controller) String

func (x *StatusResponse_Controller) String() string

type StatusResponse_Deployment

type StatusResponse_Deployment struct {
	Key         string           `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Language    string           `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
	Name        string           `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	MinReplicas int32            `protobuf:"varint,4,opt,name=min_replicas,json=minReplicas,proto3" json:"min_replicas,omitempty"`
	Replicas    int32            `protobuf:"varint,7,opt,name=replicas,proto3" json:"replicas,omitempty"`
	Labels      *structpb.Struct `protobuf:"bytes,5,opt,name=labels,proto3" json:"labels,omitempty"`
	Schema      *v1.Module       `protobuf:"bytes,6,opt,name=schema,proto3" json:"schema,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusResponse_Deployment) Descriptor deprecated

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

Deprecated: Use StatusResponse_Deployment.ProtoReflect.Descriptor instead.

func (*StatusResponse_Deployment) GetKey

func (x *StatusResponse_Deployment) GetKey() string

func (*StatusResponse_Deployment) GetLabels

func (x *StatusResponse_Deployment) GetLabels() *structpb.Struct

func (*StatusResponse_Deployment) GetLanguage

func (x *StatusResponse_Deployment) GetLanguage() string

func (*StatusResponse_Deployment) GetMinReplicas

func (x *StatusResponse_Deployment) GetMinReplicas() int32

func (*StatusResponse_Deployment) GetName

func (x *StatusResponse_Deployment) GetName() string

func (*StatusResponse_Deployment) GetReplicas

func (x *StatusResponse_Deployment) GetReplicas() int32

func (*StatusResponse_Deployment) GetSchema

func (x *StatusResponse_Deployment) GetSchema() *v1.Module

func (*StatusResponse_Deployment) ProtoMessage

func (*StatusResponse_Deployment) ProtoMessage()

func (*StatusResponse_Deployment) ProtoReflect

func (*StatusResponse_Deployment) Reset

func (x *StatusResponse_Deployment) Reset()

func (*StatusResponse_Deployment) String

func (x *StatusResponse_Deployment) String() string

type StatusResponse_Route

type StatusResponse_Route struct {
	Module     string `protobuf:"bytes,1,opt,name=module,proto3" json:"module,omitempty"`
	Deployment string `protobuf:"bytes,2,opt,name=deployment,proto3" json:"deployment,omitempty"`
	Endpoint   string `protobuf:"bytes,3,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusResponse_Route) Descriptor deprecated

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

Deprecated: Use StatusResponse_Route.ProtoReflect.Descriptor instead.

func (*StatusResponse_Route) GetDeployment

func (x *StatusResponse_Route) GetDeployment() string

func (*StatusResponse_Route) GetEndpoint

func (x *StatusResponse_Route) GetEndpoint() string

func (*StatusResponse_Route) GetModule

func (x *StatusResponse_Route) GetModule() string

func (*StatusResponse_Route) ProtoMessage

func (*StatusResponse_Route) ProtoMessage()

func (*StatusResponse_Route) ProtoReflect

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

func (*StatusResponse_Route) Reset

func (x *StatusResponse_Route) Reset()

func (*StatusResponse_Route) String

func (x *StatusResponse_Route) String() string

type StatusResponse_Runner

type StatusResponse_Runner struct {
	Key        string           `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Endpoint   string           `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	Deployment *string          `protobuf:"bytes,3,opt,name=deployment,proto3,oneof" json:"deployment,omitempty"`
	Labels     *structpb.Struct `protobuf:"bytes,4,opt,name=labels,proto3" json:"labels,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusResponse_Runner) Descriptor deprecated

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

Deprecated: Use StatusResponse_Runner.ProtoReflect.Descriptor instead.

func (*StatusResponse_Runner) GetDeployment

func (x *StatusResponse_Runner) GetDeployment() string

func (*StatusResponse_Runner) GetEndpoint

func (x *StatusResponse_Runner) GetEndpoint() string

func (*StatusResponse_Runner) GetKey

func (x *StatusResponse_Runner) GetKey() string

func (*StatusResponse_Runner) GetLabels

func (x *StatusResponse_Runner) GetLabels() *structpb.Struct

func (*StatusResponse_Runner) ProtoMessage

func (*StatusResponse_Runner) ProtoMessage()

func (*StatusResponse_Runner) ProtoReflect

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

func (*StatusResponse_Runner) Reset

func (x *StatusResponse_Runner) Reset()

func (*StatusResponse_Runner) String

func (x *StatusResponse_Runner) String() string

type StreamDeploymentLogsRequest

type StreamDeploymentLogsRequest struct {
	DeploymentKey string                 `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3" json:"deployment_key,omitempty"`
	RequestKey    *string                `protobuf:"bytes,2,opt,name=request_key,json=requestKey,proto3,oneof" json:"request_key,omitempty"`
	TimeStamp     *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
	LogLevel      int32                  `protobuf:"varint,4,opt,name=log_level,json=logLevel,proto3" json:"log_level,omitempty"`
	Attributes    map[string]string      `` /* 161-byte string literal not displayed */
	Message       string                 `protobuf:"bytes,6,opt,name=message,proto3" json:"message,omitempty"`
	Error         *string                `protobuf:"bytes,7,opt,name=error,proto3,oneof" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*StreamDeploymentLogsRequest) Descriptor deprecated

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

Deprecated: Use StreamDeploymentLogsRequest.ProtoReflect.Descriptor instead.

func (*StreamDeploymentLogsRequest) GetAttributes

func (x *StreamDeploymentLogsRequest) GetAttributes() map[string]string

func (*StreamDeploymentLogsRequest) GetDeploymentKey added in v0.151.0

func (x *StreamDeploymentLogsRequest) GetDeploymentKey() string

func (*StreamDeploymentLogsRequest) GetError

func (x *StreamDeploymentLogsRequest) GetError() string

func (*StreamDeploymentLogsRequest) GetLogLevel

func (x *StreamDeploymentLogsRequest) GetLogLevel() int32

func (*StreamDeploymentLogsRequest) GetMessage

func (x *StreamDeploymentLogsRequest) GetMessage() string

func (*StreamDeploymentLogsRequest) GetRequestKey added in v0.165.1

func (x *StreamDeploymentLogsRequest) GetRequestKey() string

func (*StreamDeploymentLogsRequest) GetTimeStamp

func (*StreamDeploymentLogsRequest) ProtoMessage

func (*StreamDeploymentLogsRequest) ProtoMessage()

func (*StreamDeploymentLogsRequest) ProtoReflect

func (*StreamDeploymentLogsRequest) Reset

func (x *StreamDeploymentLogsRequest) Reset()

func (*StreamDeploymentLogsRequest) String

func (x *StreamDeploymentLogsRequest) String() string

type StreamDeploymentLogsResponse

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

func (*StreamDeploymentLogsResponse) Descriptor deprecated

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

Deprecated: Use StreamDeploymentLogsResponse.ProtoReflect.Descriptor instead.

func (*StreamDeploymentLogsResponse) ProtoMessage

func (*StreamDeploymentLogsResponse) ProtoMessage()

func (*StreamDeploymentLogsResponse) ProtoReflect

func (*StreamDeploymentLogsResponse) Reset

func (x *StreamDeploymentLogsResponse) Reset()

func (*StreamDeploymentLogsResponse) String

type UpdateDeployRequest

type UpdateDeployRequest struct {
	DeploymentKey string `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3" json:"deployment_key,omitempty"`
	MinReplicas   *int32 `protobuf:"varint,2,opt,name=min_replicas,json=minReplicas,proto3,oneof" json:"min_replicas,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateDeployRequest) Descriptor deprecated

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

Deprecated: Use UpdateDeployRequest.ProtoReflect.Descriptor instead.

func (*UpdateDeployRequest) GetDeploymentKey added in v0.151.0

func (x *UpdateDeployRequest) GetDeploymentKey() string

func (*UpdateDeployRequest) GetMinReplicas

func (x *UpdateDeployRequest) GetMinReplicas() int32

func (*UpdateDeployRequest) ProtoMessage

func (*UpdateDeployRequest) ProtoMessage()

func (*UpdateDeployRequest) ProtoReflect

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

func (*UpdateDeployRequest) Reset

func (x *UpdateDeployRequest) Reset()

func (*UpdateDeployRequest) String

func (x *UpdateDeployRequest) String() string

type UpdateDeployResponse

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

func (*UpdateDeployResponse) Descriptor deprecated

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

Deprecated: Use UpdateDeployResponse.ProtoReflect.Descriptor instead.

func (*UpdateDeployResponse) ProtoMessage

func (*UpdateDeployResponse) ProtoMessage()

func (*UpdateDeployResponse) ProtoReflect

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

func (*UpdateDeployResponse) Reset

func (x *UpdateDeployResponse) Reset()

func (*UpdateDeployResponse) String

func (x *UpdateDeployResponse) String() string

type UpdateDeploymentRuntimeRequest added in v0.409.0

type UpdateDeploymentRuntimeRequest struct {
	Deployment string                 `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	Event      *v1.ModuleRuntimeEvent `protobuf:"bytes,2,opt,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateDeploymentRuntimeRequest) Descriptor deprecated added in v0.409.0

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

Deprecated: Use UpdateDeploymentRuntimeRequest.ProtoReflect.Descriptor instead.

func (*UpdateDeploymentRuntimeRequest) GetDeployment added in v0.409.0

func (x *UpdateDeploymentRuntimeRequest) GetDeployment() string

func (*UpdateDeploymentRuntimeRequest) GetEvent added in v0.409.0

func (*UpdateDeploymentRuntimeRequest) ProtoMessage added in v0.409.0

func (*UpdateDeploymentRuntimeRequest) ProtoMessage()

func (*UpdateDeploymentRuntimeRequest) ProtoReflect added in v0.409.0

func (*UpdateDeploymentRuntimeRequest) Reset added in v0.409.0

func (x *UpdateDeploymentRuntimeRequest) Reset()

func (*UpdateDeploymentRuntimeRequest) String added in v0.409.0

type UpdateDeploymentRuntimeResponse added in v0.409.0

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

func (*UpdateDeploymentRuntimeResponse) Descriptor deprecated added in v0.409.0

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

Deprecated: Use UpdateDeploymentRuntimeResponse.ProtoReflect.Descriptor instead.

func (*UpdateDeploymentRuntimeResponse) ProtoMessage added in v0.409.0

func (*UpdateDeploymentRuntimeResponse) ProtoMessage()

func (*UpdateDeploymentRuntimeResponse) ProtoReflect added in v0.409.0

func (*UpdateDeploymentRuntimeResponse) Reset added in v0.409.0

func (*UpdateDeploymentRuntimeResponse) String added in v0.409.0

type UploadArtefactRequest

type UploadArtefactRequest struct {
	Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadArtefactRequest) Descriptor deprecated

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

Deprecated: Use UploadArtefactRequest.ProtoReflect.Descriptor instead.

func (*UploadArtefactRequest) GetContent

func (x *UploadArtefactRequest) GetContent() []byte

func (*UploadArtefactRequest) ProtoMessage

func (*UploadArtefactRequest) ProtoMessage()

func (*UploadArtefactRequest) ProtoReflect

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

func (*UploadArtefactRequest) Reset

func (x *UploadArtefactRequest) Reset()

func (*UploadArtefactRequest) String

func (x *UploadArtefactRequest) String() string

type UploadArtefactResponse

type UploadArtefactResponse struct {
	Digest []byte `protobuf:"bytes,2,opt,name=digest,proto3" json:"digest,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadArtefactResponse) Descriptor deprecated

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

Deprecated: Use UploadArtefactResponse.ProtoReflect.Descriptor instead.

func (*UploadArtefactResponse) GetDigest

func (x *UploadArtefactResponse) GetDigest() []byte

func (*UploadArtefactResponse) ProtoMessage

func (*UploadArtefactResponse) ProtoMessage()

func (*UploadArtefactResponse) ProtoReflect

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

func (*UploadArtefactResponse) Reset

func (x *UploadArtefactResponse) Reset()

func (*UploadArtefactResponse) String

func (x *UploadArtefactResponse) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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