ftlv1

package
v0.459.0 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2025 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",
	}
	ConfigProvider_value = map[string]int32{
		"CONFIG_PROVIDER_UNSPECIFIED": 0,
		"CONFIG_PROVIDER_INLINE":      1,
		"CONFIG_PROVIDER_ENVAR":       2,
	}
)

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 (
	SubscriptionOffset_name = map[int32]string{
		0: "SUBSCRIPTION_OFFSET_UNSPECIFIED",
		1: "SUBSCRIPTION_OFFSET_EARLIEST",
		2: "SUBSCRIPTION_OFFSET_LATEST",
	}
	SubscriptionOffset_value = map[string]int32{
		"SUBSCRIPTION_OFFSET_UNSPECIFIED": 0,
		"SUBSCRIPTION_OFFSET_EARLIEST":    1,
		"SUBSCRIPTION_OFFSET_LATEST":      2,
	}
)

Enum value maps for SubscriptionOffset.

View Source
var (
	GetDeploymentContextResponse_DbType_name = map[int32]string{
		0: "DB_TYPE_UNSPECIFIED",
		1: "DB_TYPE_POSTGRES",
		2: "DB_TYPE_MYSQL",
	}
	GetDeploymentContextResponse_DbType_value = map[string]int32{
		"DB_TYPE_UNSPECIFIED": 0,
		"DB_TYPE_POSTGRES":    1,
		"DB_TYPE_MYSQL":       2,
	}
)

Enum value maps for GetDeploymentContextResponse_DbType.

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 ApplyChangesetRequest added in v0.448.0

type ApplyChangesetRequest struct {

	// The modules to add or update.
	Modules []*v1.Module `protobuf:"bytes,1,rep,name=modules,proto3" json:"modules,omitempty"`
	// The deployments to remove.
	ToRemove []string `protobuf:"bytes,2,rep,name=to_remove,json=toRemove,proto3" json:"to_remove,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyChangesetRequest) Descriptor deprecated added in v0.448.0

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

Deprecated: Use ApplyChangesetRequest.ProtoReflect.Descriptor instead.

func (*ApplyChangesetRequest) GetModules added in v0.448.0

func (x *ApplyChangesetRequest) GetModules() []*v1.Module

func (*ApplyChangesetRequest) GetToRemove added in v0.448.0

func (x *ApplyChangesetRequest) GetToRemove() []string

func (*ApplyChangesetRequest) ProtoMessage added in v0.448.0

func (*ApplyChangesetRequest) ProtoMessage()

func (*ApplyChangesetRequest) ProtoReflect added in v0.448.0

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

func (*ApplyChangesetRequest) Reset added in v0.448.0

func (x *ApplyChangesetRequest) Reset()

func (*ApplyChangesetRequest) String added in v0.448.0

func (x *ApplyChangesetRequest) String() string

type ApplyChangesetResponse added in v0.448.0

type ApplyChangesetResponse struct {

	// The changeset, the result can be determined by checking the state
	Changeset *v1.Changeset `protobuf:"bytes,2,opt,name=changeset,proto3" json:"changeset,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyChangesetResponse) Descriptor deprecated added in v0.448.0

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

Deprecated: Use ApplyChangesetResponse.ProtoReflect.Descriptor instead.

func (*ApplyChangesetResponse) GetChangeset added in v0.448.0

func (x *ApplyChangesetResponse) GetChangeset() *v1.Changeset

func (*ApplyChangesetResponse) ProtoMessage added in v0.448.0

func (*ApplyChangesetResponse) ProtoMessage()

func (*ApplyChangesetResponse) ProtoReflect added in v0.448.0

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

func (*ApplyChangesetResponse) Reset added in v0.448.0

func (x *ApplyChangesetResponse) Reset()

func (*ApplyChangesetResponse) String added in v0.448.0

func (x *ApplyChangesetResponse) String() string

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 valid to be assigned 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 (x *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 ClusterInfoRequest added in v0.446.0

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

func (*ClusterInfoRequest) Descriptor deprecated added in v0.446.0

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

Deprecated: Use ClusterInfoRequest.ProtoReflect.Descriptor instead.

func (*ClusterInfoRequest) ProtoMessage added in v0.446.0

func (*ClusterInfoRequest) ProtoMessage()

func (*ClusterInfoRequest) ProtoReflect added in v0.446.0

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

func (*ClusterInfoRequest) Reset added in v0.446.0

func (x *ClusterInfoRequest) Reset()

func (*ClusterInfoRequest) String added in v0.446.0

func (x *ClusterInfoRequest) String() string

type ClusterInfoResponse added in v0.446.0

type ClusterInfoResponse struct {
	Os   string `protobuf:"bytes,1,opt,name=os,proto3" json:"os,omitempty"`
	Arch string `protobuf:"bytes,2,opt,name=arch,proto3" json:"arch,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterInfoResponse) Descriptor deprecated added in v0.446.0

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

Deprecated: Use ClusterInfoResponse.ProtoReflect.Descriptor instead.

func (*ClusterInfoResponse) GetArch added in v0.446.0

func (x *ClusterInfoResponse) GetArch() string

func (*ClusterInfoResponse) GetOs added in v0.446.0

func (x *ClusterInfoResponse) GetOs() string

func (*ClusterInfoResponse) ProtoMessage added in v0.446.0

func (*ClusterInfoResponse) ProtoMessage()

func (*ClusterInfoResponse) ProtoReflect added in v0.446.0

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

func (*ClusterInfoResponse) Reset added in v0.446.0

func (x *ClusterInfoResponse) Reset()

func (*ClusterInfoResponse) String added in v0.446.0

func (x *ClusterInfoResponse) String() string

type CommitChangesetRequest added in v0.435.0

type CommitChangesetRequest struct {

	// The changeset key to commit.
	Changeset string `protobuf:"bytes,1,opt,name=changeset,proto3" json:"changeset,omitempty"`
	// contains filtered or unexported fields
}

func (*CommitChangesetRequest) Descriptor deprecated added in v0.435.0

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

Deprecated: Use CommitChangesetRequest.ProtoReflect.Descriptor instead.

func (*CommitChangesetRequest) GetChangeset added in v0.435.0

func (x *CommitChangesetRequest) GetChangeset() string

func (*CommitChangesetRequest) ProtoMessage added in v0.435.0

func (*CommitChangesetRequest) ProtoMessage()

func (*CommitChangesetRequest) ProtoReflect added in v0.435.0

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

func (*CommitChangesetRequest) Reset added in v0.435.0

func (x *CommitChangesetRequest) Reset()

func (*CommitChangesetRequest) String added in v0.435.0

func (x *CommitChangesetRequest) String() string

type CommitChangesetResponse added in v0.435.0

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

func (*CommitChangesetResponse) Descriptor deprecated added in v0.435.0

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

Deprecated: Use CommitChangesetResponse.ProtoReflect.Descriptor instead.

func (*CommitChangesetResponse) GetChangeset added in v0.436.0

func (x *CommitChangesetResponse) GetChangeset() *v1.Changeset

func (*CommitChangesetResponse) ProtoMessage added in v0.435.0

func (*CommitChangesetResponse) ProtoMessage()

func (*CommitChangesetResponse) ProtoReflect added in v0.435.0

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

func (*CommitChangesetResponse) Reset added in v0.435.0

func (x *CommitChangesetResponse) Reset()

func (*CommitChangesetResponse) String added in v0.435.0

func (x *CommitChangesetResponse) String() string

type ConfigGetRequest

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

func (*ConfigGetRequest) Descriptor deprecated

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

Deprecated: Use ConfigGetRequest.ProtoReflect.Descriptor instead.

func (*ConfigGetRequest) GetRef

func (x *ConfigGetRequest) GetRef() *ConfigRef

func (*ConfigGetRequest) ProtoMessage

func (*ConfigGetRequest) ProtoMessage()

func (*ConfigGetRequest) ProtoReflect

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

func (*ConfigGetRequest) Reset

func (x *ConfigGetRequest) Reset()

func (*ConfigGetRequest) String

func (x *ConfigGetRequest) String() string

type ConfigGetResponse

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

func (*ConfigGetResponse) Descriptor deprecated

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

Deprecated: Use ConfigGetResponse.ProtoReflect.Descriptor instead.

func (*ConfigGetResponse) GetValue

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

func (*ConfigGetResponse) ProtoMessage

func (*ConfigGetResponse) ProtoMessage()

func (*ConfigGetResponse) ProtoReflect

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

func (*ConfigGetResponse) Reset

func (x *ConfigGetResponse) Reset()

func (*ConfigGetResponse) String

func (x *ConfigGetResponse) String() string

type ConfigListRequest

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

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

Deprecated: Use ConfigListRequest.ProtoReflect.Descriptor instead.

func (*ConfigListRequest) GetIncludeValues

func (x *ConfigListRequest) GetIncludeValues() bool

func (*ConfigListRequest) GetModule

func (x *ConfigListRequest) GetModule() string

func (*ConfigListRequest) GetProvider

func (x *ConfigListRequest) GetProvider() ConfigProvider

func (*ConfigListRequest) ProtoMessage

func (*ConfigListRequest) ProtoMessage()

func (*ConfigListRequest) ProtoReflect

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

func (*ConfigListRequest) Reset

func (x *ConfigListRequest) Reset()

func (*ConfigListRequest) String

func (x *ConfigListRequest) String() string

type ConfigListResponse

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

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

Deprecated: Use ConfigListResponse.ProtoReflect.Descriptor instead.

func (*ConfigListResponse) GetConfigs

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

func (*ConfigListResponse) ProtoMessage

func (*ConfigListResponse) ProtoMessage()

func (*ConfigListResponse) ProtoReflect

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

func (*ConfigListResponse) Reset

func (x *ConfigListResponse) Reset()

func (*ConfigListResponse) String

func (x *ConfigListResponse) String() string

type ConfigListResponse_Config

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

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

Deprecated: Use ConfigListResponse_Config.ProtoReflect.Descriptor instead.

func (*ConfigListResponse_Config) GetRefPath

func (x *ConfigListResponse_Config) GetRefPath() string

func (*ConfigListResponse_Config) GetValue

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

func (*ConfigListResponse_Config) ProtoMessage

func (*ConfigListResponse_Config) ProtoMessage()

func (*ConfigListResponse_Config) ProtoReflect

func (*ConfigListResponse_Config) Reset

func (x *ConfigListResponse_Config) Reset()

func (*ConfigListResponse_Config) String

func (x *ConfigListResponse_Config) String() string

type ConfigProvider

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
)

func (ConfigProvider) Descriptor

func (ConfigProvider) Enum

func (x ConfigProvider) Enum() *ConfigProvider

func (ConfigProvider) EnumDescriptor deprecated

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

Deprecated: Use ConfigProvider.Descriptor instead.

func (ConfigProvider) Number

func (ConfigProvider) String

func (x ConfigProvider) String() string

func (ConfigProvider) Type

type ConfigRef

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

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

Deprecated: Use ConfigRef.ProtoReflect.Descriptor instead.

func (*ConfigRef) GetModule

func (x *ConfigRef) GetModule() string

func (*ConfigRef) GetName

func (x *ConfigRef) GetName() string

func (*ConfigRef) ProtoMessage

func (*ConfigRef) ProtoMessage()

func (*ConfigRef) ProtoReflect

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

func (*ConfigRef) Reset

func (x *ConfigRef) Reset()

func (*ConfigRef) String

func (x *ConfigRef) String() string

type ConfigSetRequest

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

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

Deprecated: Use ConfigSetRequest.ProtoReflect.Descriptor instead.

func (*ConfigSetRequest) GetProvider

func (x *ConfigSetRequest) GetProvider() ConfigProvider

func (*ConfigSetRequest) GetRef

func (x *ConfigSetRequest) GetRef() *ConfigRef

func (*ConfigSetRequest) GetValue

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

func (*ConfigSetRequest) ProtoMessage

func (*ConfigSetRequest) ProtoMessage()

func (*ConfigSetRequest) ProtoReflect

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

func (*ConfigSetRequest) Reset

func (x *ConfigSetRequest) Reset()

func (*ConfigSetRequest) String

func (x *ConfigSetRequest) String() string

type ConfigSetResponse

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

func (*ConfigSetResponse) Descriptor deprecated

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

Deprecated: Use ConfigSetResponse.ProtoReflect.Descriptor instead.

func (*ConfigSetResponse) ProtoMessage

func (*ConfigSetResponse) ProtoMessage()

func (*ConfigSetResponse) ProtoReflect

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

func (*ConfigSetResponse) Reset

func (x *ConfigSetResponse) Reset()

func (*ConfigSetResponse) String

func (x *ConfigSetResponse) String() string

type ConfigUnsetRequest

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

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

Deprecated: Use ConfigUnsetRequest.ProtoReflect.Descriptor instead.

func (*ConfigUnsetRequest) GetProvider

func (x *ConfigUnsetRequest) GetProvider() ConfigProvider

func (*ConfigUnsetRequest) GetRef

func (x *ConfigUnsetRequest) GetRef() *ConfigRef

func (*ConfigUnsetRequest) ProtoMessage

func (*ConfigUnsetRequest) ProtoMessage()

func (*ConfigUnsetRequest) ProtoReflect

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

func (*ConfigUnsetRequest) Reset

func (x *ConfigUnsetRequest) Reset()

func (*ConfigUnsetRequest) String

func (x *ConfigUnsetRequest) String() string

type ConfigUnsetResponse

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

func (*ConfigUnsetResponse) Descriptor deprecated

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

Deprecated: Use ConfigUnsetResponse.ProtoReflect.Descriptor instead.

func (*ConfigUnsetResponse) ProtoMessage

func (*ConfigUnsetResponse) ProtoMessage()

func (*ConfigUnsetResponse) ProtoReflect

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

func (*ConfigUnsetResponse) Reset

func (x *ConfigUnsetResponse) Reset()

func (*ConfigUnsetResponse) String

func (x *ConfigUnsetResponse) String() string

type CreateChangesetRequest added in v0.435.0

type CreateChangesetRequest struct {

	// The modules to add or update.
	Modules []*v1.Module `protobuf:"bytes,1,rep,name=modules,proto3" json:"modules,omitempty"`
	// The deployments to remove.
	ToRemove []string `protobuf:"bytes,2,rep,name=to_remove,json=toRemove,proto3" json:"to_remove,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateChangesetRequest) Descriptor deprecated added in v0.435.0

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

Deprecated: Use CreateChangesetRequest.ProtoReflect.Descriptor instead.

func (*CreateChangesetRequest) GetModules added in v0.435.0

func (x *CreateChangesetRequest) GetModules() []*v1.Module

func (*CreateChangesetRequest) GetToRemove added in v0.448.0

func (x *CreateChangesetRequest) GetToRemove() []string

func (*CreateChangesetRequest) ProtoMessage added in v0.435.0

func (*CreateChangesetRequest) ProtoMessage()

func (*CreateChangesetRequest) ProtoReflect added in v0.435.0

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

func (*CreateChangesetRequest) Reset added in v0.435.0

func (x *CreateChangesetRequest) Reset()

func (*CreateChangesetRequest) String added in v0.435.0

func (x *CreateChangesetRequest) String() string

type CreateChangesetResponse added in v0.435.0

type CreateChangesetResponse struct {

	// The changeset key of the newly created changeset.
	Changeset string `protobuf:"bytes,1,opt,name=changeset,proto3" json:"changeset,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateChangesetResponse) Descriptor deprecated added in v0.435.0

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

Deprecated: Use CreateChangesetResponse.ProtoReflect.Descriptor instead.

func (*CreateChangesetResponse) GetChangeset added in v0.435.0

func (x *CreateChangesetResponse) GetChangeset() string

func (*CreateChangesetResponse) ProtoMessage added in v0.435.0

func (*CreateChangesetResponse) ProtoMessage()

func (*CreateChangesetResponse) ProtoReflect added in v0.435.0

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

func (*CreateChangesetResponse) Reset added in v0.435.0

func (x *CreateChangesetResponse) Reset()

func (*CreateChangesetResponse) String added in v0.435.0

func (x *CreateChangesetResponse) String() string

type DeployedSchema added in v0.434.0

type DeployedSchema struct {
	DeploymentKey string     `protobuf:"bytes,1,opt,name=deployment_key,json=deploymentKey,proto3" json:"deployment_key,omitempty"`
	Schema        *v1.Module `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
	IsActive      bool       `protobuf:"varint,3,opt,name=is_active,json=isActive,proto3" json:"is_active,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployedSchema) Descriptor deprecated added in v0.434.0

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

Deprecated: Use DeployedSchema.ProtoReflect.Descriptor instead.

func (*DeployedSchema) GetDeploymentKey added in v0.434.0

func (x *DeployedSchema) GetDeploymentKey() string

func (*DeployedSchema) GetIsActive added in v0.434.0

func (x *DeployedSchema) GetIsActive() bool

func (*DeployedSchema) GetSchema added in v0.434.0

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

func (*DeployedSchema) ProtoMessage added in v0.434.0

func (*DeployedSchema) ProtoMessage()

func (*DeployedSchema) ProtoReflect added in v0.434.0

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

func (*DeployedSchema) Reset added in v0.434.0

func (x *DeployedSchema) Reset()

func (*DeployedSchema) String added in v0.434.0

func (x *DeployedSchema) String() string

type DeploymentArtefact

type DeploymentArtefact struct {
	Digest     []byte `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 *state.DeploymentArtefact) *DeploymentArtefact

func (*DeploymentArtefact) Descriptor deprecated

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

Deprecated: Use DeploymentArtefact.ProtoReflect.Descriptor instead.

func (*DeploymentArtefact) GetDigest

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

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 DrainChangesetRequest added in v0.436.0

type DrainChangesetRequest struct {

	// The changeset key to commit.
	Changeset string `protobuf:"bytes,1,opt,name=changeset,proto3" json:"changeset,omitempty"`
	// contains filtered or unexported fields
}

func (*DrainChangesetRequest) Descriptor deprecated added in v0.436.0

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

Deprecated: Use DrainChangesetRequest.ProtoReflect.Descriptor instead.

func (*DrainChangesetRequest) GetChangeset added in v0.436.0

func (x *DrainChangesetRequest) GetChangeset() string

func (*DrainChangesetRequest) ProtoMessage added in v0.436.0

func (*DrainChangesetRequest) ProtoMessage()

func (*DrainChangesetRequest) ProtoReflect added in v0.436.0

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

func (*DrainChangesetRequest) Reset added in v0.436.0

func (x *DrainChangesetRequest) Reset()

func (*DrainChangesetRequest) String added in v0.436.0

func (x *DrainChangesetRequest) String() string

type DrainChangesetResponse added in v0.436.0

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

func (*DrainChangesetResponse) Descriptor deprecated added in v0.436.0

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

Deprecated: Use DrainChangesetResponse.ProtoReflect.Descriptor instead.

func (*DrainChangesetResponse) ProtoMessage added in v0.436.0

func (*DrainChangesetResponse) ProtoMessage()

func (*DrainChangesetResponse) ProtoReflect added in v0.436.0

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

func (*DrainChangesetResponse) Reset added in v0.436.0

func (x *DrainChangesetResponse) Reset()

func (*DrainChangesetResponse) String added in v0.436.0

func (x *DrainChangesetResponse) String() string

type FailChangesetRequest added in v0.435.0

type FailChangesetRequest struct {

	// The changeset key to fail.
	Changeset string `protobuf:"bytes,1,opt,name=changeset,proto3" json:"changeset,omitempty"`
	// contains filtered or unexported fields
}

func (*FailChangesetRequest) Descriptor deprecated added in v0.435.0

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

Deprecated: Use FailChangesetRequest.ProtoReflect.Descriptor instead.

func (*FailChangesetRequest) GetChangeset added in v0.435.0

func (x *FailChangesetRequest) GetChangeset() string

func (*FailChangesetRequest) ProtoMessage added in v0.435.0

func (*FailChangesetRequest) ProtoMessage()

func (*FailChangesetRequest) ProtoReflect added in v0.435.0

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

func (*FailChangesetRequest) Reset added in v0.435.0

func (x *FailChangesetRequest) Reset()

func (*FailChangesetRequest) String added in v0.435.0

func (x *FailChangesetRequest) String() string

type FailChangesetResponse added in v0.435.0

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

func (*FailChangesetResponse) Descriptor deprecated added in v0.435.0

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

Deprecated: Use FailChangesetResponse.ProtoReflect.Descriptor instead.

func (*FailChangesetResponse) ProtoMessage added in v0.435.0

func (*FailChangesetResponse) ProtoMessage()

func (*FailChangesetResponse) ProtoReflect added in v0.435.0

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

func (*FailChangesetResponse) Reset added in v0.435.0

func (x *FailChangesetResponse) Reset()

func (*FailChangesetResponse) String added in v0.435.0

func (x *FailChangesetResponse) String() string

type FinalizeChangesetRequest added in v0.436.0

type FinalizeChangesetRequest struct {

	// The changeset key to commit.
	Changeset string `protobuf:"bytes,1,opt,name=changeset,proto3" json:"changeset,omitempty"`
	// contains filtered or unexported fields
}

func (*FinalizeChangesetRequest) Descriptor deprecated added in v0.436.0

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

Deprecated: Use FinalizeChangesetRequest.ProtoReflect.Descriptor instead.

func (*FinalizeChangesetRequest) GetChangeset added in v0.436.0

func (x *FinalizeChangesetRequest) GetChangeset() string

func (*FinalizeChangesetRequest) ProtoMessage added in v0.436.0

func (*FinalizeChangesetRequest) ProtoMessage()

func (*FinalizeChangesetRequest) ProtoReflect added in v0.436.0

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

func (*FinalizeChangesetRequest) Reset added in v0.436.0

func (x *FinalizeChangesetRequest) Reset()

func (*FinalizeChangesetRequest) String added in v0.436.0

func (x *FinalizeChangesetRequest) String() string

type FinalizeChangesetResponse added in v0.436.0

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

func (*FinalizeChangesetResponse) Descriptor deprecated added in v0.436.0

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

Deprecated: Use FinalizeChangesetResponse.ProtoReflect.Descriptor instead.

func (*FinalizeChangesetResponse) ProtoMessage added in v0.436.0

func (*FinalizeChangesetResponse) ProtoMessage()

func (*FinalizeChangesetResponse) ProtoReflect added in v0.436.0

func (*FinalizeChangesetResponse) Reset added in v0.436.0

func (x *FinalizeChangesetResponse) Reset()

func (*FinalizeChangesetResponse) String added in v0.436.0

func (x *FinalizeChangesetResponse) String() string

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

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 GetDeploymentContextRequest added in v0.448.0

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

func (*GetDeploymentContextRequest) Descriptor deprecated added in v0.448.0

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

Deprecated: Use GetDeploymentContextRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentContextRequest) GetDeployment added in v0.448.0

func (x *GetDeploymentContextRequest) GetDeployment() string

func (*GetDeploymentContextRequest) ProtoMessage added in v0.448.0

func (*GetDeploymentContextRequest) ProtoMessage()

func (*GetDeploymentContextRequest) ProtoReflect added in v0.448.0

func (*GetDeploymentContextRequest) Reset added in v0.448.0

func (x *GetDeploymentContextRequest) Reset()

func (*GetDeploymentContextRequest) String added in v0.448.0

func (x *GetDeploymentContextRequest) String() string

type GetDeploymentContextResponse added in v0.448.0

type GetDeploymentContextResponse 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"`
	Configs    map[string][]byte                     `` /* 141-byte string literal not displayed */
	Secrets    map[string][]byte                     `` /* 141-byte string literal not displayed */
	Databases  []*GetDeploymentContextResponse_DSN   `protobuf:"bytes,5,rep,name=databases,proto3" json:"databases,omitempty"`
	Routes     []*GetDeploymentContextResponse_Route `protobuf:"bytes,6,rep,name=routes,proto3" json:"routes,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentContextResponse) Descriptor deprecated added in v0.448.0

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

Deprecated: Use GetDeploymentContextResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentContextResponse) GetConfigs added in v0.448.0

func (x *GetDeploymentContextResponse) GetConfigs() map[string][]byte

func (*GetDeploymentContextResponse) GetDatabases added in v0.448.0

func (*GetDeploymentContextResponse) GetDeployment added in v0.448.0

func (x *GetDeploymentContextResponse) GetDeployment() string

func (*GetDeploymentContextResponse) GetModule added in v0.448.0

func (x *GetDeploymentContextResponse) GetModule() string

func (*GetDeploymentContextResponse) GetRoutes added in v0.448.0

func (*GetDeploymentContextResponse) GetSecrets added in v0.448.0

func (x *GetDeploymentContextResponse) GetSecrets() map[string][]byte

func (*GetDeploymentContextResponse) ProtoMessage added in v0.448.0

func (*GetDeploymentContextResponse) ProtoMessage()

func (*GetDeploymentContextResponse) ProtoReflect added in v0.448.0

func (*GetDeploymentContextResponse) Reset added in v0.448.0

func (x *GetDeploymentContextResponse) Reset()

func (*GetDeploymentContextResponse) String added in v0.448.0

type GetDeploymentContextResponse_DSN added in v0.448.0

type GetDeploymentContextResponse_DSN struct {
	Name string                              `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type GetDeploymentContextResponse_DbType `protobuf:"varint,2,opt,name=type,proto3,enum=xyz.block.ftl.v1.GetDeploymentContextResponse_DbType" json:"type,omitempty"`
	Dsn  string                              `protobuf:"bytes,3,opt,name=dsn,proto3" json:"dsn,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentContextResponse_DSN) Descriptor deprecated added in v0.448.0

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

Deprecated: Use GetDeploymentContextResponse_DSN.ProtoReflect.Descriptor instead.

func (*GetDeploymentContextResponse_DSN) GetDsn added in v0.448.0

func (*GetDeploymentContextResponse_DSN) GetName added in v0.448.0

func (*GetDeploymentContextResponse_DSN) GetType added in v0.448.0

func (*GetDeploymentContextResponse_DSN) ProtoMessage added in v0.448.0

func (*GetDeploymentContextResponse_DSN) ProtoMessage()

func (*GetDeploymentContextResponse_DSN) ProtoReflect added in v0.448.0

func (*GetDeploymentContextResponse_DSN) Reset added in v0.448.0

func (*GetDeploymentContextResponse_DSN) String added in v0.448.0

type GetDeploymentContextResponse_DbType added in v0.448.0

type GetDeploymentContextResponse_DbType int32
const (
	GetDeploymentContextResponse_DB_TYPE_UNSPECIFIED GetDeploymentContextResponse_DbType = 0
	GetDeploymentContextResponse_DB_TYPE_POSTGRES    GetDeploymentContextResponse_DbType = 1
	GetDeploymentContextResponse_DB_TYPE_MYSQL       GetDeploymentContextResponse_DbType = 2
)

func (GetDeploymentContextResponse_DbType) Descriptor added in v0.448.0

func (GetDeploymentContextResponse_DbType) Enum added in v0.448.0

func (GetDeploymentContextResponse_DbType) EnumDescriptor deprecated added in v0.448.0

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

Deprecated: Use GetDeploymentContextResponse_DbType.Descriptor instead.

func (GetDeploymentContextResponse_DbType) Number added in v0.448.0

func (GetDeploymentContextResponse_DbType) String added in v0.448.0

func (GetDeploymentContextResponse_DbType) Type added in v0.448.0

type GetDeploymentContextResponse_Route added in v0.448.0

type GetDeploymentContextResponse_Route struct {
	Deployment string `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	Uri        string `protobuf:"bytes,2,opt,name=uri,proto3" json:"uri,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentContextResponse_Route) Descriptor deprecated added in v0.448.0

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

Deprecated: Use GetDeploymentContextResponse_Route.ProtoReflect.Descriptor instead.

func (*GetDeploymentContextResponse_Route) GetDeployment added in v0.448.0

func (x *GetDeploymentContextResponse_Route) GetDeployment() string

func (*GetDeploymentContextResponse_Route) GetUri added in v0.448.0

func (*GetDeploymentContextResponse_Route) ProtoMessage added in v0.448.0

func (*GetDeploymentContextResponse_Route) ProtoMessage()

func (*GetDeploymentContextResponse_Route) ProtoReflect added in v0.448.0

func (*GetDeploymentContextResponse_Route) Reset added in v0.448.0

func (*GetDeploymentContextResponse_Route) String added in v0.448.0

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

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"`
	// contains filtered or unexported fields
}

func (*GetDeploymentResponse) Descriptor deprecated

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

Deprecated: Use GetDeploymentResponse.ProtoReflect.Descriptor instead.

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 GetDeploymentsRequest added in v0.434.0

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

func (*GetDeploymentsRequest) Descriptor deprecated added in v0.434.0

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

Deprecated: Use GetDeploymentsRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentsRequest) ProtoMessage added in v0.434.0

func (*GetDeploymentsRequest) ProtoMessage()

func (*GetDeploymentsRequest) ProtoReflect added in v0.434.0

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

func (*GetDeploymentsRequest) Reset added in v0.434.0

func (x *GetDeploymentsRequest) Reset()

func (*GetDeploymentsRequest) String added in v0.434.0

func (x *GetDeploymentsRequest) String() string

type GetDeploymentsResponse added in v0.434.0

type GetDeploymentsResponse struct {
	Schema []*DeployedSchema `protobuf:"bytes,1,rep,name=schema,proto3" json:"schema,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentsResponse) Descriptor deprecated added in v0.434.0

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

Deprecated: Use GetDeploymentsResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentsResponse) GetSchema added in v0.434.0

func (x *GetDeploymentsResponse) GetSchema() []*DeployedSchema

func (*GetDeploymentsResponse) ProtoMessage added in v0.434.0

func (*GetDeploymentsResponse) ProtoMessage()

func (*GetDeploymentsResponse) ProtoReflect added in v0.434.0

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

func (*GetDeploymentsResponse) Reset added in v0.434.0

func (x *GetDeploymentsResponse) Reset()

func (*GetDeploymentsResponse) String added in v0.434.0

func (x *GetDeploymentsResponse) 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"`
	Changesets []*v1.Changeset `protobuf:"bytes,2,rep,name=changesets,proto3" json:"changesets,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSchemaResponse) Descriptor deprecated

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

Deprecated: Use GetSchemaResponse.ProtoReflect.Descriptor instead.

func (*GetSchemaResponse) GetChangesets added in v0.435.0

func (x *GetSchemaResponse) GetChangesets() []*v1.Changeset

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 MapConfigsForModuleRequest

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

func (*MapConfigsForModuleRequest) Descriptor deprecated

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

Deprecated: Use MapConfigsForModuleRequest.ProtoReflect.Descriptor instead.

func (*MapConfigsForModuleRequest) GetModule

func (x *MapConfigsForModuleRequest) GetModule() string

func (*MapConfigsForModuleRequest) ProtoMessage

func (*MapConfigsForModuleRequest) ProtoMessage()

func (*MapConfigsForModuleRequest) ProtoReflect

func (*MapConfigsForModuleRequest) Reset

func (x *MapConfigsForModuleRequest) Reset()

func (*MapConfigsForModuleRequest) String

func (x *MapConfigsForModuleRequest) String() string

type MapConfigsForModuleResponse

type MapConfigsForModuleResponse struct {
	Values map[string][]byte `` /* 139-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MapConfigsForModuleResponse) Descriptor deprecated

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

Deprecated: Use MapConfigsForModuleResponse.ProtoReflect.Descriptor instead.

func (*MapConfigsForModuleResponse) GetValues

func (x *MapConfigsForModuleResponse) GetValues() map[string][]byte

func (*MapConfigsForModuleResponse) ProtoMessage

func (*MapConfigsForModuleResponse) ProtoMessage()

func (*MapConfigsForModuleResponse) ProtoReflect

func (*MapConfigsForModuleResponse) Reset

func (x *MapConfigsForModuleResponse) Reset()

func (*MapConfigsForModuleResponse) String

func (x *MapConfigsForModuleResponse) String() string

type MapSecretsForModuleRequest

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

func (*MapSecretsForModuleRequest) Descriptor deprecated

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

Deprecated: Use MapSecretsForModuleRequest.ProtoReflect.Descriptor instead.

func (*MapSecretsForModuleRequest) GetModule

func (x *MapSecretsForModuleRequest) GetModule() string

func (*MapSecretsForModuleRequest) ProtoMessage

func (*MapSecretsForModuleRequest) ProtoMessage()

func (*MapSecretsForModuleRequest) ProtoReflect

func (*MapSecretsForModuleRequest) Reset

func (x *MapSecretsForModuleRequest) Reset()

func (*MapSecretsForModuleRequest) String

func (x *MapSecretsForModuleRequest) String() string

type MapSecretsForModuleResponse

type MapSecretsForModuleResponse struct {
	Values map[string][]byte `` /* 139-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MapSecretsForModuleResponse) Descriptor deprecated

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

Deprecated: Use MapSecretsForModuleResponse.ProtoReflect.Descriptor instead.

func (*MapSecretsForModuleResponse) GetValues

func (x *MapSecretsForModuleResponse) GetValues() map[string][]byte

func (*MapSecretsForModuleResponse) ProtoMessage

func (*MapSecretsForModuleResponse) ProtoMessage()

func (*MapSecretsForModuleResponse) ProtoReflect

func (*MapSecretsForModuleResponse) Reset

func (x *MapSecretsForModuleResponse) Reset()

func (*MapSecretsForModuleResponse) String

func (x *MapSecretsForModuleResponse) 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 PrepareChangesetRequest added in v0.435.0

type PrepareChangesetRequest struct {

	// The changeset key to prepare.
	Changeset string `protobuf:"bytes,1,opt,name=changeset,proto3" json:"changeset,omitempty"`
	// contains filtered or unexported fields
}

func (*PrepareChangesetRequest) Descriptor deprecated added in v0.435.0

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

Deprecated: Use PrepareChangesetRequest.ProtoReflect.Descriptor instead.

func (*PrepareChangesetRequest) GetChangeset added in v0.435.0

func (x *PrepareChangesetRequest) GetChangeset() string

func (*PrepareChangesetRequest) ProtoMessage added in v0.435.0

func (*PrepareChangesetRequest) ProtoMessage()

func (*PrepareChangesetRequest) ProtoReflect added in v0.435.0

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

func (*PrepareChangesetRequest) Reset added in v0.435.0

func (x *PrepareChangesetRequest) Reset()

func (*PrepareChangesetRequest) String added in v0.435.0

func (x *PrepareChangesetRequest) String() string

type PrepareChangesetResponse added in v0.435.0

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

func (*PrepareChangesetResponse) Descriptor deprecated added in v0.435.0

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

Deprecated: Use PrepareChangesetResponse.ProtoReflect.Descriptor instead.

func (*PrepareChangesetResponse) ProtoMessage added in v0.435.0

func (*PrepareChangesetResponse) ProtoMessage()

func (*PrepareChangesetResponse) ProtoReflect added in v0.435.0

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

func (*PrepareChangesetResponse) Reset added in v0.435.0

func (x *PrepareChangesetResponse) Reset()

func (*PrepareChangesetResponse) String added in v0.435.0

func (x *PrepareChangesetResponse) 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 {
	SubscriptionId string `protobuf:"bytes,1,opt,name=subscription_id,json=subscriptionId,proto3" json:"subscription_id,omitempty"`
	// contains filtered or unexported fields
}

func (*PullSchemaRequest) Descriptor deprecated

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

Deprecated: Use PullSchemaRequest.ProtoReflect.Descriptor instead.

func (*PullSchemaRequest) GetSubscriptionId added in v0.438.1

func (x *PullSchemaRequest) GetSubscriptionId() string

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 {
	Event *v1.Notification `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*PullSchemaResponse) Descriptor deprecated

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

Deprecated: Use PullSchemaResponse.ProtoReflect.Descriptor instead.

func (*PullSchemaResponse) GetEvent added in v0.435.0

func (x *PullSchemaResponse) GetEvent() *v1.Notification

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 ResetSubscriptionRequest added in v0.422.0

type ResetSubscriptionRequest struct {
	Subscription *v1.Ref            `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"`
	Offset       SubscriptionOffset `protobuf:"varint,2,opt,name=offset,proto3,enum=xyz.block.ftl.v1.SubscriptionOffset" json:"offset,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use ResetSubscriptionRequest.ProtoReflect.Descriptor instead.

func (*ResetSubscriptionRequest) GetOffset added in v0.422.0

func (*ResetSubscriptionRequest) GetSubscription added in v0.422.0

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

func (*ResetSubscriptionRequest) ProtoMessage added in v0.422.0

func (*ResetSubscriptionRequest) ProtoMessage()

func (*ResetSubscriptionRequest) ProtoReflect added in v0.422.0

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

func (*ResetSubscriptionRequest) Reset added in v0.422.0

func (x *ResetSubscriptionRequest) Reset()

func (*ResetSubscriptionRequest) String added in v0.422.0

func (x *ResetSubscriptionRequest) String() string

type ResetSubscriptionResponse added in v0.422.0

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

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

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

Deprecated: Use ResetSubscriptionResponse.ProtoReflect.Descriptor instead.

func (*ResetSubscriptionResponse) ProtoMessage added in v0.422.0

func (*ResetSubscriptionResponse) ProtoMessage()

func (*ResetSubscriptionResponse) ProtoReflect added in v0.422.0

func (*ResetSubscriptionResponse) Reset added in v0.422.0

func (x *ResetSubscriptionResponse) Reset()

func (*ResetSubscriptionResponse) String added in v0.422.0

func (x *ResetSubscriptionResponse) String() string

type RollbackChangesetRequest added in v0.442.0

type RollbackChangesetRequest struct {

	// The changeset key to fail.
	Changeset string `protobuf:"bytes,1,opt,name=changeset,proto3" json:"changeset,omitempty"`
	Error     string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*RollbackChangesetRequest) Descriptor deprecated added in v0.442.0

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

Deprecated: Use RollbackChangesetRequest.ProtoReflect.Descriptor instead.

func (*RollbackChangesetRequest) GetChangeset added in v0.442.0

func (x *RollbackChangesetRequest) GetChangeset() string

func (*RollbackChangesetRequest) GetError added in v0.442.0

func (x *RollbackChangesetRequest) GetError() string

func (*RollbackChangesetRequest) ProtoMessage added in v0.442.0

func (*RollbackChangesetRequest) ProtoMessage()

func (*RollbackChangesetRequest) ProtoReflect added in v0.442.0

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

func (*RollbackChangesetRequest) Reset added in v0.442.0

func (x *RollbackChangesetRequest) Reset()

func (*RollbackChangesetRequest) String added in v0.442.0

func (x *RollbackChangesetRequest) String() string

type RollbackChangesetResponse added in v0.442.0

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

func (*RollbackChangesetResponse) Descriptor deprecated added in v0.442.0

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

Deprecated: Use RollbackChangesetResponse.ProtoReflect.Descriptor instead.

func (*RollbackChangesetResponse) GetChangeset added in v0.442.0

func (x *RollbackChangesetResponse) GetChangeset() *v1.Changeset

func (*RollbackChangesetResponse) ProtoMessage added in v0.442.0

func (*RollbackChangesetResponse) ProtoMessage()

func (*RollbackChangesetResponse) ProtoReflect added in v0.442.0

func (*RollbackChangesetResponse) Reset added in v0.442.0

func (x *RollbackChangesetResponse) Reset()

func (*RollbackChangesetResponse) String added in v0.442.0

func (x *RollbackChangesetResponse) String() string

type SecretGetRequest

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

func (*SecretGetRequest) Descriptor deprecated

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

Deprecated: Use SecretGetRequest.ProtoReflect.Descriptor instead.

func (*SecretGetRequest) GetRef

func (x *SecretGetRequest) GetRef() *ConfigRef

func (*SecretGetRequest) ProtoMessage

func (*SecretGetRequest) ProtoMessage()

func (*SecretGetRequest) ProtoReflect

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

func (*SecretGetRequest) Reset

func (x *SecretGetRequest) Reset()

func (*SecretGetRequest) String

func (x *SecretGetRequest) String() string

type SecretGetResponse

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

func (*SecretGetResponse) Descriptor deprecated

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

Deprecated: Use SecretGetResponse.ProtoReflect.Descriptor instead.

func (*SecretGetResponse) GetValue

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

func (*SecretGetResponse) ProtoMessage

func (*SecretGetResponse) ProtoMessage()

func (*SecretGetResponse) ProtoReflect

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

func (*SecretGetResponse) Reset

func (x *SecretGetResponse) Reset()

func (*SecretGetResponse) String

func (x *SecretGetResponse) String() string

type SecretProvider

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

func (SecretProvider) Enum

func (x SecretProvider) Enum() *SecretProvider

func (SecretProvider) EnumDescriptor deprecated

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

Deprecated: Use SecretProvider.Descriptor instead.

func (SecretProvider) Number

func (SecretProvider) String

func (x SecretProvider) String() string

func (SecretProvider) Type

type SecretSetRequest

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

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

Deprecated: Use SecretSetRequest.ProtoReflect.Descriptor instead.

func (*SecretSetRequest) GetProvider

func (x *SecretSetRequest) GetProvider() SecretProvider

func (*SecretSetRequest) GetRef

func (x *SecretSetRequest) GetRef() *ConfigRef

func (*SecretSetRequest) GetValue

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

func (*SecretSetRequest) ProtoMessage

func (*SecretSetRequest) ProtoMessage()

func (*SecretSetRequest) ProtoReflect

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

func (*SecretSetRequest) Reset

func (x *SecretSetRequest) Reset()

func (*SecretSetRequest) String

func (x *SecretSetRequest) String() string

type SecretSetResponse

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

func (*SecretSetResponse) Descriptor deprecated

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

Deprecated: Use SecretSetResponse.ProtoReflect.Descriptor instead.

func (*SecretSetResponse) ProtoMessage

func (*SecretSetResponse) ProtoMessage()

func (*SecretSetResponse) ProtoReflect

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

func (*SecretSetResponse) Reset

func (x *SecretSetResponse) Reset()

func (*SecretSetResponse) String

func (x *SecretSetResponse) String() string

type SecretUnsetRequest

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

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

Deprecated: Use SecretUnsetRequest.ProtoReflect.Descriptor instead.

func (*SecretUnsetRequest) GetProvider

func (x *SecretUnsetRequest) GetProvider() SecretProvider

func (*SecretUnsetRequest) GetRef

func (x *SecretUnsetRequest) GetRef() *ConfigRef

func (*SecretUnsetRequest) ProtoMessage

func (*SecretUnsetRequest) ProtoMessage()

func (*SecretUnsetRequest) ProtoReflect

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

func (*SecretUnsetRequest) Reset

func (x *SecretUnsetRequest) Reset()

func (*SecretUnsetRequest) String

func (x *SecretUnsetRequest) String() string

type SecretUnsetResponse

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

func (*SecretUnsetResponse) Descriptor deprecated

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

Deprecated: Use SecretUnsetResponse.ProtoReflect.Descriptor instead.

func (*SecretUnsetResponse) ProtoMessage

func (*SecretUnsetResponse) ProtoMessage()

func (*SecretUnsetResponse) ProtoReflect

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

func (*SecretUnsetResponse) Reset

func (x *SecretUnsetResponse) Reset()

func (*SecretUnsetResponse) String

func (x *SecretUnsetResponse) String() string

type SecretsListRequest

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

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

Deprecated: Use SecretsListRequest.ProtoReflect.Descriptor instead.

func (*SecretsListRequest) GetIncludeValues

func (x *SecretsListRequest) GetIncludeValues() bool

func (*SecretsListRequest) GetModule

func (x *SecretsListRequest) GetModule() string

func (*SecretsListRequest) GetProvider

func (x *SecretsListRequest) GetProvider() SecretProvider

func (*SecretsListRequest) ProtoMessage

func (*SecretsListRequest) ProtoMessage()

func (*SecretsListRequest) ProtoReflect

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

func (*SecretsListRequest) Reset

func (x *SecretsListRequest) Reset()

func (*SecretsListRequest) String

func (x *SecretsListRequest) String() string

type SecretsListResponse

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

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

Deprecated: Use SecretsListResponse.ProtoReflect.Descriptor instead.

func (*SecretsListResponse) GetSecrets

func (*SecretsListResponse) ProtoMessage

func (*SecretsListResponse) ProtoMessage()

func (*SecretsListResponse) ProtoReflect

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

func (*SecretsListResponse) Reset

func (x *SecretsListResponse) Reset()

func (*SecretsListResponse) String

func (x *SecretsListResponse) String() string

type SecretsListResponse_Secret

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

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

Deprecated: Use SecretsListResponse_Secret.ProtoReflect.Descriptor instead.

func (*SecretsListResponse_Secret) GetRefPath

func (x *SecretsListResponse_Secret) GetRefPath() string

func (*SecretsListResponse_Secret) GetValue

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

func (*SecretsListResponse_Secret) ProtoMessage

func (*SecretsListResponse_Secret) ProtoMessage()

func (*SecretsListResponse_Secret) ProtoReflect

func (*SecretsListResponse_Secret) Reset

func (x *SecretsListResponse_Secret) Reset()

func (*SecretsListResponse_Secret) String

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

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 SubscriptionOffset added in v0.422.0

type SubscriptionOffset int32
const (
	SubscriptionOffset_SUBSCRIPTION_OFFSET_UNSPECIFIED SubscriptionOffset = 0
	SubscriptionOffset_SUBSCRIPTION_OFFSET_EARLIEST    SubscriptionOffset = 1
	SubscriptionOffset_SUBSCRIPTION_OFFSET_LATEST      SubscriptionOffset = 2
)

func (SubscriptionOffset) Descriptor added in v0.422.0

func (SubscriptionOffset) Enum added in v0.422.0

func (SubscriptionOffset) EnumDescriptor deprecated added in v0.422.0

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

Deprecated: Use SubscriptionOffset.Descriptor instead.

func (SubscriptionOffset) Number added in v0.422.0

func (SubscriptionOffset) String added in v0.422.0

func (x SubscriptionOffset) String() string

func (SubscriptionOffset) Type added in v0.422.0

type UpdateDeploymentRuntimeRequest

type UpdateDeploymentRuntimeRequest struct {
	Changeset *string            `protobuf:"bytes,1,opt,name=changeset,proto3,oneof" json:"changeset,omitempty"`
	Update    *v1.RuntimeElement `protobuf:"bytes,2,opt,name=update,proto3" json:"update,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateDeploymentRuntimeRequest) Descriptor deprecated

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

Deprecated: Use UpdateDeploymentRuntimeRequest.ProtoReflect.Descriptor instead.

func (*UpdateDeploymentRuntimeRequest) GetChangeset added in v0.439.0

func (x *UpdateDeploymentRuntimeRequest) GetChangeset() string

func (*UpdateDeploymentRuntimeRequest) GetUpdate added in v0.439.0

func (*UpdateDeploymentRuntimeRequest) ProtoMessage

func (*UpdateDeploymentRuntimeRequest) ProtoMessage()

func (*UpdateDeploymentRuntimeRequest) ProtoReflect

func (*UpdateDeploymentRuntimeRequest) Reset

func (x *UpdateDeploymentRuntimeRequest) Reset()

func (*UpdateDeploymentRuntimeRequest) String

type UpdateDeploymentRuntimeResponse

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

func (*UpdateDeploymentRuntimeResponse) Descriptor deprecated

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

Deprecated: Use UpdateDeploymentRuntimeResponse.ProtoReflect.Descriptor instead.

func (*UpdateDeploymentRuntimeResponse) ProtoMessage

func (*UpdateDeploymentRuntimeResponse) ProtoMessage()

func (*UpdateDeploymentRuntimeResponse) ProtoReflect

func (*UpdateDeploymentRuntimeResponse) Reset

func (*UpdateDeploymentRuntimeResponse) String

type UploadArtefactRequest

type UploadArtefactRequest struct {

	// Digest of the complete artefact.
	Digest []byte `protobuf:"bytes,1,opt,name=digest,proto3" json:"digest,omitempty"`
	// Size of the complete artefact.
	Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	// Chunk of the artefact.
	Chunk []byte `protobuf:"bytes,3,opt,name=chunk,proto3" json:"chunk,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadArtefactRequest) Descriptor deprecated

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

Deprecated: Use UploadArtefactRequest.ProtoReflect.Descriptor instead.

func (*UploadArtefactRequest) GetChunk added in v0.447.0

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

func (*UploadArtefactRequest) GetDigest added in v0.447.0

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

func (*UploadArtefactRequest) GetSize added in v0.447.0

func (x *UploadArtefactRequest) GetSize() int64

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 {
	// contains filtered or unexported fields
}

func (*UploadArtefactResponse) Descriptor deprecated

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

Deprecated: Use UploadArtefactResponse.ProtoReflect.Descriptor instead.

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
JackTT - Gopher 🇻🇳