Documentation ¶
Index ¶
- type Apply
- type Builds
- type Connections
- type Deployments
- type DispatchOptions
- type Dispatcher
- type Envs
- type Events
- type Integration
- type Integrations
- type ListBuildsFilter
- type ListConnectionsFilter
- type ListDeploymentsFilter
- type ListEventRecordsFilter
- type ListEventsFilter
- type ListIntegrationsFilter
- type ListMappingsFilter
- type ListSessionsFilter
- type Mappings
- type NewRunIDFunc
- type OAuth
- type Projects
- type Run
- type RunCallFunc
- type RunCallbacks
- func (rc *RunCallbacks) SafeCall(ctx context.Context, rid sdktypes.RunID, v sdktypes.Value, ...) (sdktypes.Value, error)
- func (rc *RunCallbacks) SafeLoad(ctx context.Context, rid sdktypes.RunID, path string) (map[string]sdktypes.Value, error)
- func (rc *RunCallbacks) SafeNewRunID() sdktypes.RunID
- func (rc *RunCallbacks) SafePrint(ctx context.Context, rid sdktypes.RunID, text string)
- type RunLoadFunc
- type RunPrintFunc
- type Runtime
- type Runtimes
- type Secrets
- type Services
- type Sessions
- type Store
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Builds ¶
type Builds interface { Get(ctx context.Context, id sdktypes.BuildID) (sdktypes.Build, error) List(ctx context.Context, filter ListBuildsFilter) ([]sdktypes.Build, error) Download(ctx context.Context, id sdktypes.BuildID) (io.ReadCloser, error) Save(ctx context.Context, build sdktypes.Build, data []byte) (sdktypes.BuildID, error) Remove(ctx context.Context, id sdktypes.BuildID) error }
type Connections ¶
type Connections interface { Create(ctx context.Context, conn sdktypes.Connection) (sdktypes.ConnectionID, error) Delete(ctx context.Context, id sdktypes.ConnectionID) error Update(ctx context.Context, conn sdktypes.Connection) error List(ctx context.Context, filter ListConnectionsFilter) ([]sdktypes.Connection, error) Get(ctx context.Context, id sdktypes.ConnectionID) (sdktypes.Connection, error) }
type Deployments ¶
type Deployments interface { Get(ctx context.Context, id sdktypes.DeploymentID) (sdktypes.Deployment, error) Create(ctx context.Context, deployment sdktypes.Deployment) (sdktypes.DeploymentID, error) List(ctx context.Context, filter ListDeploymentsFilter) ([]sdktypes.Deployment, error) Activate(ctx context.Context, deploymentID sdktypes.DeploymentID) error Test(ctx context.Context, deploymentID sdktypes.DeploymentID) error Drain(ctx context.Context, deploymentID sdktypes.DeploymentID) error Deactivate(ctx context.Context, deploymentID sdktypes.DeploymentID) error }
type DispatchOptions ¶
type DispatchOptions struct { // If set, dispatch only to deployments in this environment. EnvID sdktypes.EnvID // If set, dispatch only to this specific deployment. DeploymentID sdktypes.DeploymentID }
type Dispatcher ¶
type Envs ¶
type Envs interface { List(ctx context.Context, projectID sdktypes.ProjectID) ([]sdktypes.Env, error) Create(ctx context.Context, env sdktypes.Env) (sdktypes.EnvID, error) GetByID(ctx context.Context, envID sdktypes.EnvID) (sdktypes.Env, error) GetByName(ctx context.Context, projectID sdktypes.ProjectID, name sdktypes.Name) (sdktypes.Env, error) Remove(ctx context.Context, envID sdktypes.EnvID) error Update(ctx context.Context, env sdktypes.Env) error SetVar(ctx context.Context, envVar sdktypes.EnvVar) error RemoveVar(ctx context.Context, envID sdktypes.EnvID, name sdktypes.Symbol) error GetVars(ctx context.Context, names []sdktypes.Symbol, envID sdktypes.EnvID) ([]sdktypes.EnvVar, error) RevealVar(ctx context.Context, envID sdktypes.EnvID, varName sdktypes.Symbol) (string, error) }
type Events ¶
type Events interface { Save(ctx context.Context, event sdktypes.Event) (sdktypes.EventID, error) Get(ctx context.Context, eventID sdktypes.EventID) (sdktypes.Event, error) List(ctx context.Context, filter ListEventsFilter) ([]sdktypes.Event, error) AddEventRecord(context.Context, sdktypes.EventRecord) error ListEventRecords(context.Context, ListEventRecordsFilter) ([]sdktypes.EventRecord, error) }
type Integration ¶
type Integration interface { // Get returns the configuration details of this integration and the // external service that it wraps. Get() sdktypes.Integration Configure(ctx context.Context, config string) (map[string]sdktypes.Value, error) sdkexecutor.Caller }
Integration is implemented for each external service, to let the autokitteh server interact with it.
type Integrations ¶
type Integrations interface { // Get returns the instance of an integration which has already been registered // in the autokitteh server, and is available for usage by runtime connections. Get(ctx context.Context, id sdktypes.IntegrationID) (Integration, error) // List returns an enumeration - with optional filtering - of all // the integrations which have been registered in the autokitteh // server, and are available for usage by runtime connections. // TODO: Add an optional tag-search-term filter argument. List(ctx context.Context, nameSubstring string) ([]sdktypes.Integration, error) }
Integrations is implemented by the autokitteh core, to manage integrations of external services within a running autokitteh server.
type ListBuildsFilter ¶
type ListConnectionsFilter ¶
type ListConnectionsFilter struct { IntegrationID sdktypes.IntegrationID IntegrationToken string ProjectID sdktypes.ProjectID }
type ListDeploymentsFilter ¶
type ListEventRecordsFilter ¶
type ListEventsFilter ¶
type ListIntegrationsFilter ¶
type ListIntegrationsFilter struct {
NameSubstring string
}
type ListMappingsFilter ¶
type ListMappingsFilter struct { EnvID sdktypes.EnvID ConnectionID sdktypes.ConnectionID }
type ListSessionsFilter ¶
type ListSessionsFilter struct { DeploymentID sdktypes.DeploymentID EnvID sdktypes.EnvID EventID sdktypes.EventID StateType sdktypes.SessionStateType CountOnly bool }
type Mappings ¶
type Mappings interface { Create(ctx context.Context, mapping sdktypes.Mapping) (sdktypes.MappingID, error) Delete(ctx context.Context, mappingID sdktypes.MappingID) error Get(ctx context.Context, mappingID sdktypes.MappingID) (sdktypes.Mapping, error) List(ctx context.Context, filter ListMappingsFilter) ([]sdktypes.Mapping, error) }
type NewRunIDFunc ¶
type OAuth ¶
type OAuth interface { Register(ctx context.Context, id string, cfg *oauth2.Config, opts map[string]string) error Get(ctx context.Context, id string) (*oauth2.Config, map[string]string, error) StartFlow(ctx context.Context, id string) (string, error) Exchange(ctx context.Context, id, state, code string) (*oauth2.Token, error) }
OAuth is a generic implementation of 3-legged OAuth v2 flows, reusable by OAuth-based integrations and autokitteh user authentication. It assumes that the autokitteh server has a public address for callbacks, which allows callers of this service not to care about this requirement.
type Projects ¶
type Projects interface { Create(ctx context.Context, project sdktypes.Project) (sdktypes.ProjectID, error) GetByID(ctx context.Context, projectID sdktypes.ProjectID) (sdktypes.Project, error) GetByName(ctx context.Context, name sdktypes.Name) (sdktypes.Project, error) List(ctx context.Context) ([]sdktypes.Project, error) Build(ctx context.Context, projectID sdktypes.ProjectID) (sdktypes.BuildID, error) SetResources(ctx context.Context, projectID sdktypes.ProjectID, resources map[string][]byte) error DownloadResources(ctx context.Context, projectID sdktypes.ProjectID) (map[string][]byte, error) }
type RunCallFunc ¶
type RunCallbacks ¶
type RunCallbacks struct { // Returns sdktypes.ProgramErrorAsError if not internal error. Load RunLoadFunc // Returns sdktypes.ProgramErrorAsError if not internal error. Call RunCallFunc Print RunPrintFunc NewRunID NewRunIDFunc }
func (*RunCallbacks) SafeNewRunID ¶
func (rc *RunCallbacks) SafeNewRunID() sdktypes.RunID
type RunLoadFunc ¶
type Runtime ¶
type Runtime interface { Get() sdktypes.Runtime // Returns sdktypes.ProgramErrorAsError if not internal error. Build(ctx context.Context, rootURL *url.URL, path string, symbols []sdktypes.Symbol) (sdktypes.BuildArtifact, error) // Returns sdktypes.ProgramErrorAsError if not internal error. Run( ctx context.Context, rid sdktypes.RunID, path string, compiled map[string][]byte, values map[string]sdktypes.Value, cbs *RunCallbacks, ) (Run, error) }
type Secrets ¶
type Secrets interface { // Create generates a new token to represent a connection's specified // key-value data, and associates them bidirectionally. If the same // request is sent N times, this method returns N different tokens. Create(ctx context.Context, scope string, data map[string]string, key string) (token string, err error) // Get retrieves a connection's key-value data based on the given token. // If the token isn’t found then we return an error. Get(ctx context.Context, scope string, token string) (data map[string]string, err error) // List enumerates all the tokens (0 or more) that are associated with a given // connection identifier. This enables autokitteh to dispatch/fan-out asynchronous // events that it receives from integrations through all the relevant connections. List(ctx context.Context, scope string, key string) (tokens []string, err error) }
SecretsService is a simple API for managing autokitteh user secrets. So far, this is limited to connections (managed by integrations).
type Services ¶
type Services interface { Builds() Builds Connections() Connections Deployments() Deployments Dispatcher() Dispatcher Envs() Envs Events() Events Integrations() Integrations Mappings() Mappings OAuth() OAuth Projects() Projects Runtimes() Runtimes Secrets() Secrets Sessions() Sessions Store() Store }
type Sessions ¶
type Sessions interface { Start(ctx context.Context, session sdktypes.Session) (sdktypes.SessionID, error) Stop(ctx context.Context, sessionID sdktypes.SessionID, reason string, force bool) error List(ctx context.Context, filter ListSessionsFilter) ([]sdktypes.Session, int, error) Get(ctx context.Context, sessionID sdktypes.SessionID) (sdktypes.Session, error) GetLog(ctx context.Context, sessionID sdktypes.SessionID) (sdktypes.SessionLog, error) }