Documentation ¶
Index ¶
- Constants
- func NewDeploymentServiceHandler(svc DeploymentServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type DeploymentServiceClient
- type DeploymentServiceHandler
- type UnimplementedDeploymentServiceHandler
- func (UnimplementedDeploymentServiceHandler) CreateDNSRecord(context.Context, *connect.Request[v1alpha1.CreateDNSRecordRequest]) (*connect.Response[v1alpha1.CreateDNSRecordResponse], error)
- func (UnimplementedDeploymentServiceHandler) DeleteDNSRecord(context.Context, *connect.Request[v1alpha1.DeleteDNSRecordRequest]) (*connect.Response[v1alpha1.DeleteDNSRecordResponse], error)
- func (UnimplementedDeploymentServiceHandler) DeregisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.DeregisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.DeregisterAWSACMCertificateResponse], error)
- func (UnimplementedDeploymentServiceHandler) GetAWSACMCertificate(context.Context, *connect.Request[v1alpha1.GetAWSACMCertificateRequest]) (*connect.Response[v1alpha1.GetAWSACMCertificateResponse], error)
- func (UnimplementedDeploymentServiceHandler) GetDNSRecord(context.Context, *connect.Request[v1alpha1.GetDNSRecordRequest]) (*connect.Response[v1alpha1.GetDNSRecordResponse], error)
- func (UnimplementedDeploymentServiceHandler) GetDeployment(context.Context, *connect.Request[v1alpha1.GetDeploymentRequest]) (*connect.Response[v1alpha1.GetDeploymentResponse], error)
- func (UnimplementedDeploymentServiceHandler) GetTerraformOutput(context.Context, *connect.Request[v1alpha1.GetTerraformOutputRequest]) (*connect.Response[v1alpha1.GetTerraformOutputResponse], error)
- func (UnimplementedDeploymentServiceHandler) RegisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.RegisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.RegisterAWSACMCertificateResponse], error)
- func (UnimplementedDeploymentServiceHandler) SetTerraformOutput(context.Context, *connect.Request[v1alpha1.SetTerraformOutputRequest]) (*connect.Response[v1alpha1.SetTerraformOutputResponse], error)
- func (UnimplementedDeploymentServiceHandler) UpdateAWSACMCertificate(context.Context, *connect.Request[v1alpha1.UpdateAWSACMCertificateRequest]) (*connect.Response[v1alpha1.UpdateAWSACMCertificateResponse], error)
- func (UnimplementedDeploymentServiceHandler) UpdateDNSRecord(context.Context, *connect.Request[v1alpha1.UpdateDNSRecordRequest]) (*connect.Response[v1alpha1.UpdateDNSRecordResponse], error)
Constants ¶
const ( // DeploymentServiceGetDeploymentProcedure is the fully-qualified name of the DeploymentService's // GetDeployment RPC. DeploymentServiceGetDeploymentProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/GetDeployment" // DeploymentServiceCreateDNSRecordProcedure is the fully-qualified name of the DeploymentService's // CreateDNSRecord RPC. DeploymentServiceCreateDNSRecordProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/CreateDNSRecord" // DeploymentServiceGetDNSRecordProcedure is the fully-qualified name of the DeploymentService's // GetDNSRecord RPC. DeploymentServiceGetDNSRecordProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/GetDNSRecord" // DeploymentServiceRegisterAWSACMCertificateProcedure is the fully-qualified name of the // DeploymentService's RegisterAWSACMCertificate RPC. DeploymentServiceRegisterAWSACMCertificateProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/RegisterAWSACMCertificate" // DeploymentServiceGetAWSACMCertificateProcedure is the fully-qualified name of the // DeploymentService's GetAWSACMCertificate RPC. DeploymentServiceGetAWSACMCertificateProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/GetAWSACMCertificate" // DeploymentServiceUpdateAWSACMCertificateProcedure is the fully-qualified name of the // DeploymentService's UpdateAWSACMCertificate RPC. DeploymentServiceUpdateAWSACMCertificateProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/UpdateAWSACMCertificate" // DeploymentServiceDeregisterAWSACMCertificateProcedure is the fully-qualified name of the // DeploymentService's DeregisterAWSACMCertificate RPC. DeploymentServiceDeregisterAWSACMCertificateProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/DeregisterAWSACMCertificate" // DeploymentServiceUpdateDNSRecordProcedure is the fully-qualified name of the DeploymentService's // UpdateDNSRecord RPC. DeploymentServiceUpdateDNSRecordProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/UpdateDNSRecord" // DeploymentServiceDeleteDNSRecordProcedure is the fully-qualified name of the DeploymentService's // DeleteDNSRecord RPC. DeploymentServiceDeleteDNSRecordProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/DeleteDNSRecord" // DeploymentServiceGetTerraformOutputProcedure is the fully-qualified name of the // DeploymentService's GetTerraformOutput RPC. DeploymentServiceGetTerraformOutputProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/GetTerraformOutput" // DeploymentServiceSetTerraformOutputProcedure is the fully-qualified name of the // DeploymentService's SetTerraformOutput RPC. DeploymentServiceSetTerraformOutputProcedure = "/commonfate.factory.deployment.v1alpha1.DeploymentService/SetTerraformOutput" )
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 (
// DeploymentServiceName is the fully-qualified name of the DeploymentService service.
DeploymentServiceName = "commonfate.factory.deployment.v1alpha1.DeploymentService"
)
Variables ¶
This section is empty.
Functions ¶
func NewDeploymentServiceHandler ¶
func NewDeploymentServiceHandler(svc DeploymentServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewDeploymentServiceHandler 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 DeploymentServiceClient ¶
type DeploymentServiceClient interface { // Get information about a deployment. GetDeployment(context.Context, *connect.Request[v1alpha1.GetDeploymentRequest]) (*connect.Response[v1alpha1.GetDeploymentResponse], error) // Create a DNS record associated with the deployment. // Used to set up a default `commonfate.app` domain for the deployment. CreateDNSRecord(context.Context, *connect.Request[v1alpha1.CreateDNSRecordRequest]) (*connect.Response[v1alpha1.CreateDNSRecordResponse], error) // Retrieves a DNS record associated with the deployment. GetDNSRecord(context.Context, *connect.Request[v1alpha1.GetDNSRecordRequest]) (*connect.Response[v1alpha1.GetDNSRecordResponse], error) // Registers an AWS ACM certificate to be associated with the deployment RegisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.RegisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.RegisterAWSACMCertificateResponse], error) // Retrieves an AWS ACM certificate to be associated with the deployment GetAWSACMCertificate(context.Context, *connect.Request[v1alpha1.GetAWSACMCertificateRequest]) (*connect.Response[v1alpha1.GetAWSACMCertificateResponse], error) // Updates an AWS ACM certificate to be associated with the deployment UpdateAWSACMCertificate(context.Context, *connect.Request[v1alpha1.UpdateAWSACMCertificateRequest]) (*connect.Response[v1alpha1.UpdateAWSACMCertificateResponse], error) // Deregisters an AWS ACM certificate to be associated with the deployment. // This method doesn't delete the actual ACM cert, it just removes the reference to it. DeregisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.DeregisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.DeregisterAWSACMCertificateResponse], error) // Updates a DNS record associated with the deployment. UpdateDNSRecord(context.Context, *connect.Request[v1alpha1.UpdateDNSRecordRequest]) (*connect.Response[v1alpha1.UpdateDNSRecordResponse], error) // Deletes a DNS record associated with the deployment. DeleteDNSRecord(context.Context, *connect.Request[v1alpha1.DeleteDNSRecordRequest]) (*connect.Response[v1alpha1.DeleteDNSRecordResponse], error) // Retrieves Terraform outputs for the deployment. GetTerraformOutput(context.Context, *connect.Request[v1alpha1.GetTerraformOutputRequest]) (*connect.Response[v1alpha1.GetTerraformOutputResponse], error) // Sets Terraform outputs for the deployment. SetTerraformOutput(context.Context, *connect.Request[v1alpha1.SetTerraformOutputRequest]) (*connect.Response[v1alpha1.SetTerraformOutputResponse], error) }
DeploymentServiceClient is a client for the commonfate.factory.deployment.v1alpha1.DeploymentService service.
func NewDeploymentServiceClient ¶
func NewDeploymentServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) DeploymentServiceClient
NewDeploymentServiceClient constructs a client for the commonfate.factory.deployment.v1alpha1.DeploymentService 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 DeploymentServiceHandler ¶
type DeploymentServiceHandler interface { // Get information about a deployment. GetDeployment(context.Context, *connect.Request[v1alpha1.GetDeploymentRequest]) (*connect.Response[v1alpha1.GetDeploymentResponse], error) // Create a DNS record associated with the deployment. // Used to set up a default `commonfate.app` domain for the deployment. CreateDNSRecord(context.Context, *connect.Request[v1alpha1.CreateDNSRecordRequest]) (*connect.Response[v1alpha1.CreateDNSRecordResponse], error) // Retrieves a DNS record associated with the deployment. GetDNSRecord(context.Context, *connect.Request[v1alpha1.GetDNSRecordRequest]) (*connect.Response[v1alpha1.GetDNSRecordResponse], error) // Registers an AWS ACM certificate to be associated with the deployment RegisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.RegisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.RegisterAWSACMCertificateResponse], error) // Retrieves an AWS ACM certificate to be associated with the deployment GetAWSACMCertificate(context.Context, *connect.Request[v1alpha1.GetAWSACMCertificateRequest]) (*connect.Response[v1alpha1.GetAWSACMCertificateResponse], error) // Updates an AWS ACM certificate to be associated with the deployment UpdateAWSACMCertificate(context.Context, *connect.Request[v1alpha1.UpdateAWSACMCertificateRequest]) (*connect.Response[v1alpha1.UpdateAWSACMCertificateResponse], error) // Deregisters an AWS ACM certificate to be associated with the deployment. // This method doesn't delete the actual ACM cert, it just removes the reference to it. DeregisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.DeregisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.DeregisterAWSACMCertificateResponse], error) // Updates a DNS record associated with the deployment. UpdateDNSRecord(context.Context, *connect.Request[v1alpha1.UpdateDNSRecordRequest]) (*connect.Response[v1alpha1.UpdateDNSRecordResponse], error) // Deletes a DNS record associated with the deployment. DeleteDNSRecord(context.Context, *connect.Request[v1alpha1.DeleteDNSRecordRequest]) (*connect.Response[v1alpha1.DeleteDNSRecordResponse], error) // Retrieves Terraform outputs for the deployment. GetTerraformOutput(context.Context, *connect.Request[v1alpha1.GetTerraformOutputRequest]) (*connect.Response[v1alpha1.GetTerraformOutputResponse], error) // Sets Terraform outputs for the deployment. SetTerraformOutput(context.Context, *connect.Request[v1alpha1.SetTerraformOutputRequest]) (*connect.Response[v1alpha1.SetTerraformOutputResponse], error) }
DeploymentServiceHandler is an implementation of the commonfate.factory.deployment.v1alpha1.DeploymentService service.
type UnimplementedDeploymentServiceHandler ¶
type UnimplementedDeploymentServiceHandler struct{}
UnimplementedDeploymentServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedDeploymentServiceHandler) CreateDNSRecord ¶
func (UnimplementedDeploymentServiceHandler) CreateDNSRecord(context.Context, *connect.Request[v1alpha1.CreateDNSRecordRequest]) (*connect.Response[v1alpha1.CreateDNSRecordResponse], error)
func (UnimplementedDeploymentServiceHandler) DeleteDNSRecord ¶
func (UnimplementedDeploymentServiceHandler) DeleteDNSRecord(context.Context, *connect.Request[v1alpha1.DeleteDNSRecordRequest]) (*connect.Response[v1alpha1.DeleteDNSRecordResponse], error)
func (UnimplementedDeploymentServiceHandler) DeregisterAWSACMCertificate ¶ added in v1.53.0
func (UnimplementedDeploymentServiceHandler) DeregisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.DeregisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.DeregisterAWSACMCertificateResponse], error)
func (UnimplementedDeploymentServiceHandler) GetAWSACMCertificate ¶ added in v1.53.0
func (UnimplementedDeploymentServiceHandler) GetAWSACMCertificate(context.Context, *connect.Request[v1alpha1.GetAWSACMCertificateRequest]) (*connect.Response[v1alpha1.GetAWSACMCertificateResponse], error)
func (UnimplementedDeploymentServiceHandler) GetDNSRecord ¶
func (UnimplementedDeploymentServiceHandler) GetDNSRecord(context.Context, *connect.Request[v1alpha1.GetDNSRecordRequest]) (*connect.Response[v1alpha1.GetDNSRecordResponse], error)
func (UnimplementedDeploymentServiceHandler) GetDeployment ¶
func (UnimplementedDeploymentServiceHandler) GetDeployment(context.Context, *connect.Request[v1alpha1.GetDeploymentRequest]) (*connect.Response[v1alpha1.GetDeploymentResponse], error)
func (UnimplementedDeploymentServiceHandler) GetTerraformOutput ¶ added in v1.53.0
func (UnimplementedDeploymentServiceHandler) GetTerraformOutput(context.Context, *connect.Request[v1alpha1.GetTerraformOutputRequest]) (*connect.Response[v1alpha1.GetTerraformOutputResponse], error)
func (UnimplementedDeploymentServiceHandler) RegisterAWSACMCertificate ¶ added in v1.53.0
func (UnimplementedDeploymentServiceHandler) RegisterAWSACMCertificate(context.Context, *connect.Request[v1alpha1.RegisterAWSACMCertificateRequest]) (*connect.Response[v1alpha1.RegisterAWSACMCertificateResponse], error)
func (UnimplementedDeploymentServiceHandler) SetTerraformOutput ¶ added in v1.53.0
func (UnimplementedDeploymentServiceHandler) SetTerraformOutput(context.Context, *connect.Request[v1alpha1.SetTerraformOutputRequest]) (*connect.Response[v1alpha1.SetTerraformOutputResponse], error)
func (UnimplementedDeploymentServiceHandler) UpdateAWSACMCertificate ¶ added in v1.53.0
func (UnimplementedDeploymentServiceHandler) UpdateAWSACMCertificate(context.Context, *connect.Request[v1alpha1.UpdateAWSACMCertificateRequest]) (*connect.Response[v1alpha1.UpdateAWSACMCertificateResponse], error)
func (UnimplementedDeploymentServiceHandler) UpdateDNSRecord ¶
func (UnimplementedDeploymentServiceHandler) UpdateDNSRecord(context.Context, *connect.Request[v1alpha1.UpdateDNSRecordRequest]) (*connect.Response[v1alpha1.UpdateDNSRecordResponse], error)