Documentation ¶
Index ¶
- Constants
- func NewLocalServiceHandler(svc LocalServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type LocalServiceClient
- type LocalServiceHandler
- type UnimplementedLocalServiceHandler
- func (UnimplementedLocalServiceHandler) DeployProject(context.Context, *connect.Request[v1.DeployProjectRequest]) (*connect.Response[v1.DeployProjectResponse], error)
- func (UnimplementedLocalServiceHandler) DeployValidation(context.Context, *connect.Request[v1.DeployValidationRequest]) (*connect.Response[v1.DeployValidationResponse], error)
- func (UnimplementedLocalServiceHandler) GetCurrentUser(context.Context, *connect.Request[v1.GetCurrentUserRequest]) (*connect.Response[v1.GetCurrentUserResponse], error)
- func (UnimplementedLocalServiceHandler) GetMetadata(context.Context, *connect.Request[v1.GetMetadataRequest]) (*connect.Response[v1.GetMetadataResponse], error)
- func (UnimplementedLocalServiceHandler) GetVersion(context.Context, *connect.Request[v1.GetVersionRequest]) (*connect.Response[v1.GetVersionResponse], error)
- func (UnimplementedLocalServiceHandler) Ping(context.Context, *connect.Request[v1.PingRequest]) (*connect.Response[v1.PingResponse], error)
- func (UnimplementedLocalServiceHandler) PushToGithub(context.Context, *connect.Request[v1.PushToGithubRequest]) (*connect.Response[v1.PushToGithubResponse], error)
- func (UnimplementedLocalServiceHandler) RedeployProject(context.Context, *connect.Request[v1.RedeployProjectRequest]) (*connect.Response[v1.RedeployProjectResponse], error)
Constants ¶
const ( // LocalServicePingProcedure is the fully-qualified name of the LocalService's Ping RPC. LocalServicePingProcedure = "/rill.local.v1.LocalService/Ping" // LocalServiceGetMetadataProcedure is the fully-qualified name of the LocalService's GetMetadata // RPC. LocalServiceGetMetadataProcedure = "/rill.local.v1.LocalService/GetMetadata" // LocalServiceGetVersionProcedure is the fully-qualified name of the LocalService's GetVersion RPC. LocalServiceGetVersionProcedure = "/rill.local.v1.LocalService/GetVersion" // LocalServiceDeployValidationProcedure is the fully-qualified name of the LocalService's // DeployValidation RPC. LocalServiceDeployValidationProcedure = "/rill.local.v1.LocalService/DeployValidation" // LocalServicePushToGithubProcedure is the fully-qualified name of the LocalService's PushToGithub // RPC. LocalServicePushToGithubProcedure = "/rill.local.v1.LocalService/PushToGithub" // LocalServiceDeployProjectProcedure is the fully-qualified name of the LocalService's // DeployProject RPC. LocalServiceDeployProjectProcedure = "/rill.local.v1.LocalService/DeployProject" // LocalServiceRedeployProjectProcedure is the fully-qualified name of the LocalService's // RedeployProject RPC. LocalServiceRedeployProjectProcedure = "/rill.local.v1.LocalService/RedeployProject" // LocalServiceGetCurrentUserProcedure is the fully-qualified name of the LocalService's // GetCurrentUser RPC. LocalServiceGetCurrentUserProcedure = "/rill.local.v1.LocalService/GetCurrentUser" )
These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.
const (
// LocalServiceName is the fully-qualified name of the LocalService service.
LocalServiceName = "rill.local.v1.LocalService"
)
Variables ¶
This section is empty.
Functions ¶
func NewLocalServiceHandler ¶
func NewLocalServiceHandler(svc LocalServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewLocalServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.
By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.
Types ¶
type LocalServiceClient ¶
type LocalServiceClient interface { // Ping returns the current time. Ping(context.Context, *connect.Request[v1.PingRequest]) (*connect.Response[v1.PingResponse], error) // GetMetadata returns information about the local Rill instance. GetMetadata(context.Context, *connect.Request[v1.GetMetadataRequest]) (*connect.Response[v1.GetMetadataResponse], error) // GetVersion returns details about the current and latest available Rill versions. GetVersion(context.Context, *connect.Request[v1.GetVersionRequest]) (*connect.Response[v1.GetVersionResponse], error) // DeployValidation validates a deploy request. DeployValidation(context.Context, *connect.Request[v1.DeployValidationRequest]) (*connect.Response[v1.DeployValidationResponse], error) // PushToGithub create a Git repo from local project and pushed to users git account. PushToGithub(context.Context, *connect.Request[v1.PushToGithubRequest]) (*connect.Response[v1.PushToGithubResponse], error) // DeployProject deploys the local project to the Rill cloud. DeployProject(context.Context, *connect.Request[v1.DeployProjectRequest]) (*connect.Response[v1.DeployProjectResponse], error) // RedeployProject updates a deployed project. RedeployProject(context.Context, *connect.Request[v1.RedeployProjectRequest]) (*connect.Response[v1.RedeployProjectResponse], error) // User returns the locally logged in user GetCurrentUser(context.Context, *connect.Request[v1.GetCurrentUserRequest]) (*connect.Response[v1.GetCurrentUserResponse], error) }
LocalServiceClient is a client for the rill.local.v1.LocalService service.
func NewLocalServiceClient ¶
func NewLocalServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) LocalServiceClient
NewLocalServiceClient constructs a client for the rill.local.v1.LocalService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.
The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).
type LocalServiceHandler ¶
type LocalServiceHandler interface { // Ping returns the current time. Ping(context.Context, *connect.Request[v1.PingRequest]) (*connect.Response[v1.PingResponse], error) // GetMetadata returns information about the local Rill instance. GetMetadata(context.Context, *connect.Request[v1.GetMetadataRequest]) (*connect.Response[v1.GetMetadataResponse], error) // GetVersion returns details about the current and latest available Rill versions. GetVersion(context.Context, *connect.Request[v1.GetVersionRequest]) (*connect.Response[v1.GetVersionResponse], error) // DeployValidation validates a deploy request. DeployValidation(context.Context, *connect.Request[v1.DeployValidationRequest]) (*connect.Response[v1.DeployValidationResponse], error) // PushToGithub create a Git repo from local project and pushed to users git account. PushToGithub(context.Context, *connect.Request[v1.PushToGithubRequest]) (*connect.Response[v1.PushToGithubResponse], error) // DeployProject deploys the local project to the Rill cloud. DeployProject(context.Context, *connect.Request[v1.DeployProjectRequest]) (*connect.Response[v1.DeployProjectResponse], error) // RedeployProject updates a deployed project. RedeployProject(context.Context, *connect.Request[v1.RedeployProjectRequest]) (*connect.Response[v1.RedeployProjectResponse], error) // User returns the locally logged in user GetCurrentUser(context.Context, *connect.Request[v1.GetCurrentUserRequest]) (*connect.Response[v1.GetCurrentUserResponse], error) }
LocalServiceHandler is an implementation of the rill.local.v1.LocalService service.
type UnimplementedLocalServiceHandler ¶
type UnimplementedLocalServiceHandler struct{}
UnimplementedLocalServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedLocalServiceHandler) DeployProject ¶ added in v0.47.0
func (UnimplementedLocalServiceHandler) DeployProject(context.Context, *connect.Request[v1.DeployProjectRequest]) (*connect.Response[v1.DeployProjectResponse], error)
func (UnimplementedLocalServiceHandler) DeployValidation ¶ added in v0.47.0
func (UnimplementedLocalServiceHandler) DeployValidation(context.Context, *connect.Request[v1.DeployValidationRequest]) (*connect.Response[v1.DeployValidationResponse], error)
func (UnimplementedLocalServiceHandler) GetCurrentUser ¶ added in v0.47.0
func (UnimplementedLocalServiceHandler) GetCurrentUser(context.Context, *connect.Request[v1.GetCurrentUserRequest]) (*connect.Response[v1.GetCurrentUserResponse], error)
func (UnimplementedLocalServiceHandler) GetMetadata ¶
func (UnimplementedLocalServiceHandler) GetMetadata(context.Context, *connect.Request[v1.GetMetadataRequest]) (*connect.Response[v1.GetMetadataResponse], error)
func (UnimplementedLocalServiceHandler) GetVersion ¶
func (UnimplementedLocalServiceHandler) GetVersion(context.Context, *connect.Request[v1.GetVersionRequest]) (*connect.Response[v1.GetVersionResponse], error)
func (UnimplementedLocalServiceHandler) Ping ¶
func (UnimplementedLocalServiceHandler) Ping(context.Context, *connect.Request[v1.PingRequest]) (*connect.Response[v1.PingResponse], error)
func (UnimplementedLocalServiceHandler) PushToGithub ¶ added in v0.47.0
func (UnimplementedLocalServiceHandler) PushToGithub(context.Context, *connect.Request[v1.PushToGithubRequest]) (*connect.Response[v1.PushToGithubResponse], error)
func (UnimplementedLocalServiceHandler) RedeployProject ¶ added in v0.47.0
func (UnimplementedLocalServiceHandler) RedeployProject(context.Context, *connect.Request[v1.RedeployProjectRequest]) (*connect.Response[v1.RedeployProjectResponse], error)