localv1

package
v0.84.0 Latest Latest
Warning

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

Go to latest
Published: Mar 25, 2026 License: Apache-2.0 Imports: 30 Imported by: 0

Documentation

Overview

Package localv1 is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	LocalService_Ping_FullMethodName                                = "/rill.local.v1.LocalService/Ping"
	LocalService_GetMetadata_FullMethodName                         = "/rill.local.v1.LocalService/GetMetadata"
	LocalService_GetVersion_FullMethodName                          = "/rill.local.v1.LocalService/GetVersion"
	LocalService_GitStatus_FullMethodName                           = "/rill.local.v1.LocalService/GitStatus"
	LocalService_GithubRepoStatus_FullMethodName                    = "/rill.local.v1.LocalService/GithubRepoStatus"
	LocalService_GitPull_FullMethodName                             = "/rill.local.v1.LocalService/GitPull"
	LocalService_GitPush_FullMethodName                             = "/rill.local.v1.LocalService/GitPush"
	LocalService_PushToGithub_FullMethodName                        = "/rill.local.v1.LocalService/PushToGithub"
	LocalService_DeployProject_FullMethodName                       = "/rill.local.v1.LocalService/DeployProject"
	LocalService_RedeployProject_FullMethodName                     = "/rill.local.v1.LocalService/RedeployProject"
	LocalService_GetCurrentUser_FullMethodName                      = "/rill.local.v1.LocalService/GetCurrentUser"
	LocalService_GetCurrentProject_FullMethodName                   = "/rill.local.v1.LocalService/GetCurrentProject"
	LocalService_ListOrganizationsAndBillingMetadata_FullMethodName = "/rill.local.v1.LocalService/ListOrganizationsAndBillingMetadata"
	LocalService_CreateOrganization_FullMethodName                  = "/rill.local.v1.LocalService/CreateOrganization"
	LocalService_ListMatchingProjects_FullMethodName                = "/rill.local.v1.LocalService/ListMatchingProjects"
	LocalService_ListProjectsForOrg_FullMethodName                  = "/rill.local.v1.LocalService/ListProjectsForOrg"
	LocalService_GetProject_FullMethodName                          = "/rill.local.v1.LocalService/GetProject"
)

Variables

View Source
var File_rill_local_v1_api_proto protoreflect.FileDescriptor
View Source
var LocalService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "rill.local.v1.LocalService",
	HandlerType: (*LocalServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Ping",
			Handler:    _LocalService_Ping_Handler,
		},
		{
			MethodName: "GetMetadata",
			Handler:    _LocalService_GetMetadata_Handler,
		},
		{
			MethodName: "GetVersion",
			Handler:    _LocalService_GetVersion_Handler,
		},
		{
			MethodName: "GitStatus",
			Handler:    _LocalService_GitStatus_Handler,
		},
		{
			MethodName: "GithubRepoStatus",
			Handler:    _LocalService_GithubRepoStatus_Handler,
		},
		{
			MethodName: "GitPull",
			Handler:    _LocalService_GitPull_Handler,
		},
		{
			MethodName: "GitPush",
			Handler:    _LocalService_GitPush_Handler,
		},
		{
			MethodName: "PushToGithub",
			Handler:    _LocalService_PushToGithub_Handler,
		},
		{
			MethodName: "DeployProject",
			Handler:    _LocalService_DeployProject_Handler,
		},
		{
			MethodName: "RedeployProject",
			Handler:    _LocalService_RedeployProject_Handler,
		},
		{
			MethodName: "GetCurrentUser",
			Handler:    _LocalService_GetCurrentUser_Handler,
		},
		{
			MethodName: "GetCurrentProject",
			Handler:    _LocalService_GetCurrentProject_Handler,
		},
		{
			MethodName: "ListOrganizationsAndBillingMetadata",
			Handler:    _LocalService_ListOrganizationsAndBillingMetadata_Handler,
		},
		{
			MethodName: "CreateOrganization",
			Handler:    _LocalService_CreateOrganization_Handler,
		},
		{
			MethodName: "ListMatchingProjects",
			Handler:    _LocalService_ListMatchingProjects_Handler,
		},
		{
			MethodName: "ListProjectsForOrg",
			Handler:    _LocalService_ListProjectsForOrg_Handler,
		},
		{
			MethodName: "GetProject",
			Handler:    _LocalService_GetProject_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "rill/local/v1/api.proto",
}

LocalService_ServiceDesc is the grpc.ServiceDesc for LocalService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterLocalServiceHandler

func RegisterLocalServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterLocalServiceHandler registers the http handlers for service LocalService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterLocalServiceHandlerClient

func RegisterLocalServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client LocalServiceClient) error

RegisterLocalServiceHandlerClient registers the http handlers for service LocalService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "LocalServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "LocalServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "LocalServiceClient" to call the correct interceptors. This client ignores the HTTP middlewares.

func RegisterLocalServiceHandlerFromEndpoint

func RegisterLocalServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterLocalServiceHandlerFromEndpoint is same as RegisterLocalServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterLocalServiceHandlerServer

func RegisterLocalServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server LocalServiceServer) error

RegisterLocalServiceHandlerServer registers the http handlers for service LocalService to "mux". UnaryRPC :call LocalServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterLocalServiceHandlerFromEndpoint instead. GRPC interceptors will not work for this type of registration. To use interceptors, you must use the "runtime.WithMiddlewares" option in the "runtime.NewServeMux" call.

func RegisterLocalServiceServer

func RegisterLocalServiceServer(s grpc.ServiceRegistrar, srv LocalServiceServer)

Types

type CreateOrganizationRequest added in v0.62.0

type CreateOrganizationRequest struct {
	Name        string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOrganizationRequest) Descriptor deprecated added in v0.62.0

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

Deprecated: Use CreateOrganizationRequest.ProtoReflect.Descriptor instead.

func (*CreateOrganizationRequest) GetDescription added in v0.62.0

func (x *CreateOrganizationRequest) GetDescription() string

func (*CreateOrganizationRequest) GetDisplayName added in v0.62.0

func (x *CreateOrganizationRequest) GetDisplayName() string

func (*CreateOrganizationRequest) GetName added in v0.62.0

func (x *CreateOrganizationRequest) GetName() string

func (*CreateOrganizationRequest) ProtoMessage added in v0.62.0

func (*CreateOrganizationRequest) ProtoMessage()

func (*CreateOrganizationRequest) ProtoReflect added in v0.62.0

func (*CreateOrganizationRequest) Reset added in v0.62.0

func (x *CreateOrganizationRequest) Reset()

func (*CreateOrganizationRequest) String added in v0.62.0

func (x *CreateOrganizationRequest) String() string

func (*CreateOrganizationRequest) Validate added in v0.62.0

func (m *CreateOrganizationRequest) Validate() error

Validate checks the field values on CreateOrganizationRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateOrganizationRequest) ValidateAll added in v0.62.0

func (m *CreateOrganizationRequest) ValidateAll() error

ValidateAll checks the field values on CreateOrganizationRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateOrganizationRequestMultiError, or nil if none found.

type CreateOrganizationRequestMultiError added in v0.62.0

type CreateOrganizationRequestMultiError []error

CreateOrganizationRequestMultiError is an error wrapping multiple validation errors returned by CreateOrganizationRequest.ValidateAll() if the designated constraints aren't met.

func (CreateOrganizationRequestMultiError) AllErrors added in v0.62.0

AllErrors returns a list of validation violation errors.

func (CreateOrganizationRequestMultiError) Error added in v0.62.0

Error returns a concatenation of all the error messages it wraps.

type CreateOrganizationRequestValidationError added in v0.62.0

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

CreateOrganizationRequestValidationError is the validation error returned by CreateOrganizationRequest.Validate if the designated constraints aren't met.

func (CreateOrganizationRequestValidationError) Cause added in v0.62.0

Cause function returns cause value.

func (CreateOrganizationRequestValidationError) Error added in v0.62.0

Error satisfies the builtin error interface

func (CreateOrganizationRequestValidationError) ErrorName added in v0.62.0

ErrorName returns error name.

func (CreateOrganizationRequestValidationError) Field added in v0.62.0

Field function returns field value.

func (CreateOrganizationRequestValidationError) Key added in v0.62.0

Key function returns key value.

func (CreateOrganizationRequestValidationError) Reason added in v0.62.0

Reason function returns reason value.

type CreateOrganizationResponse added in v0.62.0

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

func (*CreateOrganizationResponse) Descriptor deprecated added in v0.62.0

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

Deprecated: Use CreateOrganizationResponse.ProtoReflect.Descriptor instead.

func (*CreateOrganizationResponse) GetOrganization added in v0.62.0

func (x *CreateOrganizationResponse) GetOrganization() *v1.Organization

func (*CreateOrganizationResponse) ProtoMessage added in v0.62.0

func (*CreateOrganizationResponse) ProtoMessage()

func (*CreateOrganizationResponse) ProtoReflect added in v0.62.0

func (*CreateOrganizationResponse) Reset added in v0.62.0

func (x *CreateOrganizationResponse) Reset()

func (*CreateOrganizationResponse) String added in v0.62.0

func (x *CreateOrganizationResponse) String() string

func (*CreateOrganizationResponse) Validate added in v0.62.0

func (m *CreateOrganizationResponse) Validate() error

Validate checks the field values on CreateOrganizationResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateOrganizationResponse) ValidateAll added in v0.62.0

func (m *CreateOrganizationResponse) ValidateAll() error

ValidateAll checks the field values on CreateOrganizationResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateOrganizationResponseMultiError, or nil if none found.

type CreateOrganizationResponseMultiError added in v0.62.0

type CreateOrganizationResponseMultiError []error

CreateOrganizationResponseMultiError is an error wrapping multiple validation errors returned by CreateOrganizationResponse.ValidateAll() if the designated constraints aren't met.

func (CreateOrganizationResponseMultiError) AllErrors added in v0.62.0

AllErrors returns a list of validation violation errors.

func (CreateOrganizationResponseMultiError) Error added in v0.62.0

Error returns a concatenation of all the error messages it wraps.

type CreateOrganizationResponseValidationError added in v0.62.0

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

CreateOrganizationResponseValidationError is the validation error returned by CreateOrganizationResponse.Validate if the designated constraints aren't met.

func (CreateOrganizationResponseValidationError) Cause added in v0.62.0

Cause function returns cause value.

func (CreateOrganizationResponseValidationError) Error added in v0.62.0

Error satisfies the builtin error interface

func (CreateOrganizationResponseValidationError) ErrorName added in v0.62.0

ErrorName returns error name.

func (CreateOrganizationResponseValidationError) Field added in v0.62.0

Field function returns field value.

func (CreateOrganizationResponseValidationError) Key added in v0.62.0

Key function returns key value.

func (CreateOrganizationResponseValidationError) Reason added in v0.62.0

Reason function returns reason value.

type DeployProjectRequest added in v0.47.0

type DeployProjectRequest struct {
	Org               string `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"`
	NewOrgDisplayName string `protobuf:"bytes,4,opt,name=new_org_display_name,json=newOrgDisplayName,proto3" json:"new_org_display_name,omitempty"`
	ProjectName       string `protobuf:"bytes,2,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
	Upload            bool   `protobuf:"varint,3,opt,name=upload,proto3" json:"upload,omitempty"`
	// temporarily used for testing
	Archive bool `protobuf:"varint,5,opt,name=archive,proto3" json:"archive,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployProjectRequest) Descriptor deprecated added in v0.47.0

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

Deprecated: Use DeployProjectRequest.ProtoReflect.Descriptor instead.

func (*DeployProjectRequest) GetArchive added in v0.64.1

func (x *DeployProjectRequest) GetArchive() bool

func (*DeployProjectRequest) GetNewOrgDisplayName added in v0.62.0

func (x *DeployProjectRequest) GetNewOrgDisplayName() string

func (*DeployProjectRequest) GetOrg added in v0.47.0

func (x *DeployProjectRequest) GetOrg() string

func (*DeployProjectRequest) GetProjectName added in v0.47.0

func (x *DeployProjectRequest) GetProjectName() string

func (*DeployProjectRequest) GetUpload added in v0.47.0

func (x *DeployProjectRequest) GetUpload() bool

func (*DeployProjectRequest) ProtoMessage added in v0.47.0

func (*DeployProjectRequest) ProtoMessage()

func (*DeployProjectRequest) ProtoReflect added in v0.47.0

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

func (*DeployProjectRequest) Reset added in v0.47.0

func (x *DeployProjectRequest) Reset()

func (*DeployProjectRequest) String added in v0.47.0

func (x *DeployProjectRequest) String() string

func (*DeployProjectRequest) Validate added in v0.47.0

func (m *DeployProjectRequest) Validate() error

Validate checks the field values on DeployProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeployProjectRequest) ValidateAll added in v0.47.0

func (m *DeployProjectRequest) ValidateAll() error

ValidateAll checks the field values on DeployProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeployProjectRequestMultiError, or nil if none found.

type DeployProjectRequestMultiError added in v0.47.0

type DeployProjectRequestMultiError []error

DeployProjectRequestMultiError is an error wrapping multiple validation errors returned by DeployProjectRequest.ValidateAll() if the designated constraints aren't met.

func (DeployProjectRequestMultiError) AllErrors added in v0.47.0

func (m DeployProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeployProjectRequestMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type DeployProjectRequestValidationError added in v0.47.0

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

DeployProjectRequestValidationError is the validation error returned by DeployProjectRequest.Validate if the designated constraints aren't met.

func (DeployProjectRequestValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (DeployProjectRequestValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (DeployProjectRequestValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (DeployProjectRequestValidationError) Field added in v0.47.0

Field function returns field value.

func (DeployProjectRequestValidationError) Key added in v0.47.0

Key function returns key value.

func (DeployProjectRequestValidationError) Reason added in v0.47.0

Reason function returns reason value.

type DeployProjectResponse added in v0.47.0

type DeployProjectResponse struct {
	DeployId    string `protobuf:"bytes,1,opt,name=deploy_id,json=deployId,proto3" json:"deploy_id,omitempty"`
	Org         string `protobuf:"bytes,2,opt,name=org,proto3" json:"org,omitempty"`
	Project     string `protobuf:"bytes,3,opt,name=project,proto3" json:"project,omitempty"`
	FrontendUrl string `protobuf:"bytes,4,opt,name=frontend_url,json=frontendUrl,proto3" json:"frontend_url,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployProjectResponse) Descriptor deprecated added in v0.47.0

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

Deprecated: Use DeployProjectResponse.ProtoReflect.Descriptor instead.

func (*DeployProjectResponse) GetDeployId added in v0.47.0

func (x *DeployProjectResponse) GetDeployId() string

func (*DeployProjectResponse) GetFrontendUrl added in v0.47.0

func (x *DeployProjectResponse) GetFrontendUrl() string

func (*DeployProjectResponse) GetOrg added in v0.47.0

func (x *DeployProjectResponse) GetOrg() string

func (*DeployProjectResponse) GetProject added in v0.47.0

func (x *DeployProjectResponse) GetProject() string

func (*DeployProjectResponse) ProtoMessage added in v0.47.0

func (*DeployProjectResponse) ProtoMessage()

func (*DeployProjectResponse) ProtoReflect added in v0.47.0

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

func (*DeployProjectResponse) Reset added in v0.47.0

func (x *DeployProjectResponse) Reset()

func (*DeployProjectResponse) String added in v0.47.0

func (x *DeployProjectResponse) String() string

func (*DeployProjectResponse) Validate added in v0.47.0

func (m *DeployProjectResponse) Validate() error

Validate checks the field values on DeployProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeployProjectResponse) ValidateAll added in v0.47.0

func (m *DeployProjectResponse) ValidateAll() error

ValidateAll checks the field values on DeployProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeployProjectResponseMultiError, or nil if none found.

type DeployProjectResponseMultiError added in v0.47.0

type DeployProjectResponseMultiError []error

DeployProjectResponseMultiError is an error wrapping multiple validation errors returned by DeployProjectResponse.ValidateAll() if the designated constraints aren't met.

func (DeployProjectResponseMultiError) AllErrors added in v0.47.0

func (m DeployProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeployProjectResponseMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type DeployProjectResponseValidationError added in v0.47.0

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

DeployProjectResponseValidationError is the validation error returned by DeployProjectResponse.Validate if the designated constraints aren't met.

func (DeployProjectResponseValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (DeployProjectResponseValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (DeployProjectResponseValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (DeployProjectResponseValidationError) Field added in v0.47.0

Field function returns field value.

func (DeployProjectResponseValidationError) Key added in v0.47.0

Key function returns key value.

func (DeployProjectResponseValidationError) Reason added in v0.47.0

Reason function returns reason value.

type GetCurrentProjectRequest added in v0.48.0

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

func (*GetCurrentProjectRequest) Descriptor deprecated added in v0.48.0

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

Deprecated: Use GetCurrentProjectRequest.ProtoReflect.Descriptor instead.

func (*GetCurrentProjectRequest) ProtoMessage added in v0.48.0

func (*GetCurrentProjectRequest) ProtoMessage()

func (*GetCurrentProjectRequest) ProtoReflect added in v0.48.0

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

func (*GetCurrentProjectRequest) Reset added in v0.48.0

func (x *GetCurrentProjectRequest) Reset()

func (*GetCurrentProjectRequest) String added in v0.48.0

func (x *GetCurrentProjectRequest) String() string

func (*GetCurrentProjectRequest) Validate added in v0.48.0

func (m *GetCurrentProjectRequest) Validate() error

Validate checks the field values on GetCurrentProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetCurrentProjectRequest) ValidateAll added in v0.48.0

func (m *GetCurrentProjectRequest) ValidateAll() error

ValidateAll checks the field values on GetCurrentProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetCurrentProjectRequestMultiError, or nil if none found.

type GetCurrentProjectRequestMultiError added in v0.48.0

type GetCurrentProjectRequestMultiError []error

GetCurrentProjectRequestMultiError is an error wrapping multiple validation errors returned by GetCurrentProjectRequest.ValidateAll() if the designated constraints aren't met.

func (GetCurrentProjectRequestMultiError) AllErrors added in v0.48.0

func (m GetCurrentProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCurrentProjectRequestMultiError) Error added in v0.48.0

Error returns a concatenation of all the error messages it wraps.

type GetCurrentProjectRequestValidationError added in v0.48.0

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

GetCurrentProjectRequestValidationError is the validation error returned by GetCurrentProjectRequest.Validate if the designated constraints aren't met.

func (GetCurrentProjectRequestValidationError) Cause added in v0.48.0

Cause function returns cause value.

func (GetCurrentProjectRequestValidationError) Error added in v0.48.0

Error satisfies the builtin error interface

func (GetCurrentProjectRequestValidationError) ErrorName added in v0.48.0

ErrorName returns error name.

func (GetCurrentProjectRequestValidationError) Field added in v0.48.0

Field function returns field value.

func (GetCurrentProjectRequestValidationError) Key added in v0.48.0

Key function returns key value.

func (GetCurrentProjectRequestValidationError) Reason added in v0.48.0

Reason function returns reason value.

type GetCurrentProjectResponse added in v0.48.0

type GetCurrentProjectResponse struct {
	LocalProjectName string      `protobuf:"bytes,1,opt,name=local_project_name,json=localProjectName,proto3" json:"local_project_name,omitempty"`
	Project          *v1.Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCurrentProjectResponse) Descriptor deprecated added in v0.48.0

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

Deprecated: Use GetCurrentProjectResponse.ProtoReflect.Descriptor instead.

func (*GetCurrentProjectResponse) GetLocalProjectName added in v0.48.0

func (x *GetCurrentProjectResponse) GetLocalProjectName() string

func (*GetCurrentProjectResponse) GetProject added in v0.48.0

func (x *GetCurrentProjectResponse) GetProject() *v1.Project

func (*GetCurrentProjectResponse) ProtoMessage added in v0.48.0

func (*GetCurrentProjectResponse) ProtoMessage()

func (*GetCurrentProjectResponse) ProtoReflect added in v0.48.0

func (*GetCurrentProjectResponse) Reset added in v0.48.0

func (x *GetCurrentProjectResponse) Reset()

func (*GetCurrentProjectResponse) String added in v0.48.0

func (x *GetCurrentProjectResponse) String() string

func (*GetCurrentProjectResponse) Validate added in v0.48.0

func (m *GetCurrentProjectResponse) Validate() error

Validate checks the field values on GetCurrentProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetCurrentProjectResponse) ValidateAll added in v0.48.0

func (m *GetCurrentProjectResponse) ValidateAll() error

ValidateAll checks the field values on GetCurrentProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetCurrentProjectResponseMultiError, or nil if none found.

type GetCurrentProjectResponseMultiError added in v0.48.0

type GetCurrentProjectResponseMultiError []error

GetCurrentProjectResponseMultiError is an error wrapping multiple validation errors returned by GetCurrentProjectResponse.ValidateAll() if the designated constraints aren't met.

func (GetCurrentProjectResponseMultiError) AllErrors added in v0.48.0

AllErrors returns a list of validation violation errors.

func (GetCurrentProjectResponseMultiError) Error added in v0.48.0

Error returns a concatenation of all the error messages it wraps.

type GetCurrentProjectResponseValidationError added in v0.48.0

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

GetCurrentProjectResponseValidationError is the validation error returned by GetCurrentProjectResponse.Validate if the designated constraints aren't met.

func (GetCurrentProjectResponseValidationError) Cause added in v0.48.0

Cause function returns cause value.

func (GetCurrentProjectResponseValidationError) Error added in v0.48.0

Error satisfies the builtin error interface

func (GetCurrentProjectResponseValidationError) ErrorName added in v0.48.0

ErrorName returns error name.

func (GetCurrentProjectResponseValidationError) Field added in v0.48.0

Field function returns field value.

func (GetCurrentProjectResponseValidationError) Key added in v0.48.0

Key function returns key value.

func (GetCurrentProjectResponseValidationError) Reason added in v0.48.0

Reason function returns reason value.

type GetCurrentUserRequest added in v0.47.0

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

func (*GetCurrentUserRequest) Descriptor deprecated added in v0.47.0

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

Deprecated: Use GetCurrentUserRequest.ProtoReflect.Descriptor instead.

func (*GetCurrentUserRequest) ProtoMessage added in v0.47.0

func (*GetCurrentUserRequest) ProtoMessage()

func (*GetCurrentUserRequest) ProtoReflect added in v0.47.0

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

func (*GetCurrentUserRequest) Reset added in v0.47.0

func (x *GetCurrentUserRequest) Reset()

func (*GetCurrentUserRequest) String added in v0.47.0

func (x *GetCurrentUserRequest) String() string

func (*GetCurrentUserRequest) Validate added in v0.47.0

func (m *GetCurrentUserRequest) Validate() error

Validate checks the field values on GetCurrentUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetCurrentUserRequest) ValidateAll added in v0.47.0

func (m *GetCurrentUserRequest) ValidateAll() error

ValidateAll checks the field values on GetCurrentUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetCurrentUserRequestMultiError, or nil if none found.

type GetCurrentUserRequestMultiError added in v0.47.0

type GetCurrentUserRequestMultiError []error

GetCurrentUserRequestMultiError is an error wrapping multiple validation errors returned by GetCurrentUserRequest.ValidateAll() if the designated constraints aren't met.

func (GetCurrentUserRequestMultiError) AllErrors added in v0.47.0

func (m GetCurrentUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCurrentUserRequestMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type GetCurrentUserRequestValidationError added in v0.47.0

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

GetCurrentUserRequestValidationError is the validation error returned by GetCurrentUserRequest.Validate if the designated constraints aren't met.

func (GetCurrentUserRequestValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (GetCurrentUserRequestValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (GetCurrentUserRequestValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (GetCurrentUserRequestValidationError) Field added in v0.47.0

Field function returns field value.

func (GetCurrentUserRequestValidationError) Key added in v0.47.0

Key function returns key value.

func (GetCurrentUserRequestValidationError) Reason added in v0.47.0

Reason function returns reason value.

type GetCurrentUserResponse added in v0.47.0

type GetCurrentUserResponse struct {
	User               *v1.User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	RillUserOrgs       []string `protobuf:"bytes,2,rep,name=rill_user_orgs,json=rillUserOrgs,proto3" json:"rill_user_orgs,omitempty"`
	IsRepresentingUser bool     `protobuf:"varint,3,opt,name=is_representing_user,json=isRepresentingUser,proto3" json:"is_representing_user,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCurrentUserResponse) Descriptor deprecated added in v0.47.0

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

Deprecated: Use GetCurrentUserResponse.ProtoReflect.Descriptor instead.

func (*GetCurrentUserResponse) GetIsRepresentingUser added in v0.49.0

func (x *GetCurrentUserResponse) GetIsRepresentingUser() bool

func (*GetCurrentUserResponse) GetRillUserOrgs added in v0.48.0

func (x *GetCurrentUserResponse) GetRillUserOrgs() []string

func (*GetCurrentUserResponse) GetUser added in v0.47.0

func (x *GetCurrentUserResponse) GetUser() *v1.User

func (*GetCurrentUserResponse) ProtoMessage added in v0.47.0

func (*GetCurrentUserResponse) ProtoMessage()

func (*GetCurrentUserResponse) ProtoReflect added in v0.47.0

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

func (*GetCurrentUserResponse) Reset added in v0.47.0

func (x *GetCurrentUserResponse) Reset()

func (*GetCurrentUserResponse) String added in v0.47.0

func (x *GetCurrentUserResponse) String() string

func (*GetCurrentUserResponse) Validate added in v0.47.0

func (m *GetCurrentUserResponse) Validate() error

Validate checks the field values on GetCurrentUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetCurrentUserResponse) ValidateAll added in v0.47.0

func (m *GetCurrentUserResponse) ValidateAll() error

ValidateAll checks the field values on GetCurrentUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetCurrentUserResponseMultiError, or nil if none found.

type GetCurrentUserResponseMultiError added in v0.47.0

type GetCurrentUserResponseMultiError []error

GetCurrentUserResponseMultiError is an error wrapping multiple validation errors returned by GetCurrentUserResponse.ValidateAll() if the designated constraints aren't met.

func (GetCurrentUserResponseMultiError) AllErrors added in v0.47.0

func (m GetCurrentUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCurrentUserResponseMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type GetCurrentUserResponseValidationError added in v0.47.0

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

GetCurrentUserResponseValidationError is the validation error returned by GetCurrentUserResponse.Validate if the designated constraints aren't met.

func (GetCurrentUserResponseValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (GetCurrentUserResponseValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (GetCurrentUserResponseValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (GetCurrentUserResponseValidationError) Field added in v0.47.0

Field function returns field value.

func (GetCurrentUserResponseValidationError) Key added in v0.47.0

Key function returns key value.

func (GetCurrentUserResponseValidationError) Reason added in v0.47.0

Reason function returns reason value.

type GetMetadataRequest

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

func (*GetMetadataRequest) Descriptor deprecated

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

Deprecated: Use GetMetadataRequest.ProtoReflect.Descriptor instead.

func (*GetMetadataRequest) ProtoMessage

func (*GetMetadataRequest) ProtoMessage()

func (*GetMetadataRequest) ProtoReflect

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

func (*GetMetadataRequest) Reset

func (x *GetMetadataRequest) Reset()

func (*GetMetadataRequest) String

func (x *GetMetadataRequest) String() string

func (*GetMetadataRequest) Validate

func (m *GetMetadataRequest) Validate() error

Validate checks the field values on GetMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetMetadataRequest) ValidateAll

func (m *GetMetadataRequest) ValidateAll() error

ValidateAll checks the field values on GetMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetMetadataRequestMultiError, or nil if none found.

type GetMetadataRequestMultiError

type GetMetadataRequestMultiError []error

GetMetadataRequestMultiError is an error wrapping multiple validation errors returned by GetMetadataRequest.ValidateAll() if the designated constraints aren't met.

func (GetMetadataRequestMultiError) AllErrors

func (m GetMetadataRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetMetadataRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetMetadataRequestValidationError

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

GetMetadataRequestValidationError is the validation error returned by GetMetadataRequest.Validate if the designated constraints aren't met.

func (GetMetadataRequestValidationError) Cause

Cause function returns cause value.

func (GetMetadataRequestValidationError) Error

Error satisfies the builtin error interface

func (GetMetadataRequestValidationError) ErrorName

ErrorName returns error name.

func (GetMetadataRequestValidationError) Field

Field function returns field value.

func (GetMetadataRequestValidationError) Key

Key function returns key value.

func (GetMetadataRequestValidationError) Reason

Reason function returns reason value.

type GetMetadataResponse

type GetMetadataResponse struct {
	InstanceId       string `protobuf:"bytes,1,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`
	ProjectPath      string `protobuf:"bytes,2,opt,name=project_path,json=projectPath,proto3" json:"project_path,omitempty"`
	InstallId        string `protobuf:"bytes,3,opt,name=install_id,json=installId,proto3" json:"install_id,omitempty"`
	UserId           string `protobuf:"bytes,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Version          string `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	BuildCommit      string `protobuf:"bytes,6,opt,name=build_commit,json=buildCommit,proto3" json:"build_commit,omitempty"`
	BuildTime        string `protobuf:"bytes,7,opt,name=build_time,json=buildTime,proto3" json:"build_time,omitempty"`
	IsDev            bool   `protobuf:"varint,8,opt,name=is_dev,json=isDev,proto3" json:"is_dev,omitempty"`
	AnalyticsEnabled bool   `protobuf:"varint,9,opt,name=analytics_enabled,json=analyticsEnabled,proto3" json:"analytics_enabled,omitempty"`
	Readonly         bool   `protobuf:"varint,10,opt,name=readonly,proto3" json:"readonly,omitempty"`
	GrpcPort         int32  `protobuf:"varint,11,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
	LoginUrl         string `protobuf:"bytes,12,opt,name=login_url,json=loginUrl,proto3" json:"login_url,omitempty"`
	AdminUrl         string `protobuf:"bytes,13,opt,name=admin_url,json=adminUrl,proto3" json:"admin_url,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMetadataResponse) Descriptor deprecated

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

Deprecated: Use GetMetadataResponse.ProtoReflect.Descriptor instead.

func (*GetMetadataResponse) GetAdminUrl added in v0.51.0

func (x *GetMetadataResponse) GetAdminUrl() string

func (*GetMetadataResponse) GetAnalyticsEnabled

func (x *GetMetadataResponse) GetAnalyticsEnabled() bool

func (*GetMetadataResponse) GetBuildCommit

func (x *GetMetadataResponse) GetBuildCommit() string

func (*GetMetadataResponse) GetBuildTime

func (x *GetMetadataResponse) GetBuildTime() string

func (*GetMetadataResponse) GetGrpcPort

func (x *GetMetadataResponse) GetGrpcPort() int32

func (*GetMetadataResponse) GetInstallId

func (x *GetMetadataResponse) GetInstallId() string

func (*GetMetadataResponse) GetInstanceId

func (x *GetMetadataResponse) GetInstanceId() string

func (*GetMetadataResponse) GetIsDev

func (x *GetMetadataResponse) GetIsDev() bool

func (*GetMetadataResponse) GetLoginUrl added in v0.48.0

func (x *GetMetadataResponse) GetLoginUrl() string

func (*GetMetadataResponse) GetProjectPath

func (x *GetMetadataResponse) GetProjectPath() string

func (*GetMetadataResponse) GetReadonly

func (x *GetMetadataResponse) GetReadonly() bool

func (*GetMetadataResponse) GetUserId

func (x *GetMetadataResponse) GetUserId() string

func (*GetMetadataResponse) GetVersion

func (x *GetMetadataResponse) GetVersion() string

func (*GetMetadataResponse) ProtoMessage

func (*GetMetadataResponse) ProtoMessage()

func (*GetMetadataResponse) ProtoReflect

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

func (*GetMetadataResponse) Reset

func (x *GetMetadataResponse) Reset()

func (*GetMetadataResponse) String

func (x *GetMetadataResponse) String() string

func (*GetMetadataResponse) Validate

func (m *GetMetadataResponse) Validate() error

Validate checks the field values on GetMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetMetadataResponse) ValidateAll

func (m *GetMetadataResponse) ValidateAll() error

ValidateAll checks the field values on GetMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetMetadataResponseMultiError, or nil if none found.

type GetMetadataResponseMultiError

type GetMetadataResponseMultiError []error

GetMetadataResponseMultiError is an error wrapping multiple validation errors returned by GetMetadataResponse.ValidateAll() if the designated constraints aren't met.

func (GetMetadataResponseMultiError) AllErrors

func (m GetMetadataResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetMetadataResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetMetadataResponseValidationError

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

GetMetadataResponseValidationError is the validation error returned by GetMetadataResponse.Validate if the designated constraints aren't met.

func (GetMetadataResponseValidationError) Cause

Cause function returns cause value.

func (GetMetadataResponseValidationError) Error

Error satisfies the builtin error interface

func (GetMetadataResponseValidationError) ErrorName

ErrorName returns error name.

func (GetMetadataResponseValidationError) Field

Field function returns field value.

func (GetMetadataResponseValidationError) Key

Key function returns key value.

func (GetMetadataResponseValidationError) Reason

Reason function returns reason value.

type GetProjectRequest added in v0.78.0

type GetProjectRequest struct {
	OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name,omitempty"`
	Name             string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectRequest) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GetProjectRequest.ProtoReflect.Descriptor instead.

func (*GetProjectRequest) GetName added in v0.78.0

func (x *GetProjectRequest) GetName() string

func (*GetProjectRequest) GetOrganizationName added in v0.78.0

func (x *GetProjectRequest) GetOrganizationName() string

func (*GetProjectRequest) ProtoMessage added in v0.78.0

func (*GetProjectRequest) ProtoMessage()

func (*GetProjectRequest) ProtoReflect added in v0.78.0

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

func (*GetProjectRequest) Reset added in v0.78.0

func (x *GetProjectRequest) Reset()

func (*GetProjectRequest) String added in v0.78.0

func (x *GetProjectRequest) String() string

func (*GetProjectRequest) Validate added in v0.78.0

func (m *GetProjectRequest) Validate() error

Validate checks the field values on GetProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetProjectRequest) ValidateAll added in v0.78.0

func (m *GetProjectRequest) ValidateAll() error

ValidateAll checks the field values on GetProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetProjectRequestMultiError, or nil if none found.

type GetProjectRequestMultiError added in v0.78.0

type GetProjectRequestMultiError []error

GetProjectRequestMultiError is an error wrapping multiple validation errors returned by GetProjectRequest.ValidateAll() if the designated constraints aren't met.

func (GetProjectRequestMultiError) AllErrors added in v0.78.0

func (m GetProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetProjectRequestMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GetProjectRequestValidationError added in v0.78.0

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

GetProjectRequestValidationError is the validation error returned by GetProjectRequest.Validate if the designated constraints aren't met.

func (GetProjectRequestValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GetProjectRequestValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GetProjectRequestValidationError) ErrorName added in v0.78.0

ErrorName returns error name.

func (GetProjectRequestValidationError) Field added in v0.78.0

Field function returns field value.

func (GetProjectRequestValidationError) Key added in v0.78.0

Key function returns key value.

func (GetProjectRequestValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GetProjectResponse added in v0.78.0

type GetProjectResponse struct {
	Project            *v1.Project            `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	ProjectPermissions *v1.ProjectPermissions `protobuf:"bytes,4,opt,name=project_permissions,json=projectPermissions,proto3" json:"project_permissions,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectResponse) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GetProjectResponse.ProtoReflect.Descriptor instead.

func (*GetProjectResponse) GetProject added in v0.78.0

func (x *GetProjectResponse) GetProject() *v1.Project

func (*GetProjectResponse) GetProjectPermissions added in v0.78.0

func (x *GetProjectResponse) GetProjectPermissions() *v1.ProjectPermissions

func (*GetProjectResponse) ProtoMessage added in v0.78.0

func (*GetProjectResponse) ProtoMessage()

func (*GetProjectResponse) ProtoReflect added in v0.78.0

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

func (*GetProjectResponse) Reset added in v0.78.0

func (x *GetProjectResponse) Reset()

func (*GetProjectResponse) String added in v0.78.0

func (x *GetProjectResponse) String() string

func (*GetProjectResponse) Validate added in v0.78.0

func (m *GetProjectResponse) Validate() error

Validate checks the field values on GetProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetProjectResponse) ValidateAll added in v0.78.0

func (m *GetProjectResponse) ValidateAll() error

ValidateAll checks the field values on GetProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetProjectResponseMultiError, or nil if none found.

type GetProjectResponseMultiError added in v0.78.0

type GetProjectResponseMultiError []error

GetProjectResponseMultiError is an error wrapping multiple validation errors returned by GetProjectResponse.ValidateAll() if the designated constraints aren't met.

func (GetProjectResponseMultiError) AllErrors added in v0.78.0

func (m GetProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetProjectResponseMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GetProjectResponseValidationError added in v0.78.0

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

GetProjectResponseValidationError is the validation error returned by GetProjectResponse.Validate if the designated constraints aren't met.

func (GetProjectResponseValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GetProjectResponseValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GetProjectResponseValidationError) ErrorName added in v0.78.0

ErrorName returns error name.

func (GetProjectResponseValidationError) Field added in v0.78.0

Field function returns field value.

func (GetProjectResponseValidationError) Key added in v0.78.0

Key function returns key value.

func (GetProjectResponseValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GetVersionRequest

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

func (*GetVersionRequest) Descriptor deprecated

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

Deprecated: Use GetVersionRequest.ProtoReflect.Descriptor instead.

func (*GetVersionRequest) ProtoMessage

func (*GetVersionRequest) ProtoMessage()

func (*GetVersionRequest) ProtoReflect

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

func (*GetVersionRequest) Reset

func (x *GetVersionRequest) Reset()

func (*GetVersionRequest) String

func (x *GetVersionRequest) String() string

func (*GetVersionRequest) Validate

func (m *GetVersionRequest) Validate() error

Validate checks the field values on GetVersionRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetVersionRequest) ValidateAll

func (m *GetVersionRequest) ValidateAll() error

ValidateAll checks the field values on GetVersionRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetVersionRequestMultiError, or nil if none found.

type GetVersionRequestMultiError

type GetVersionRequestMultiError []error

GetVersionRequestMultiError is an error wrapping multiple validation errors returned by GetVersionRequest.ValidateAll() if the designated constraints aren't met.

func (GetVersionRequestMultiError) AllErrors

func (m GetVersionRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetVersionRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetVersionRequestValidationError

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

GetVersionRequestValidationError is the validation error returned by GetVersionRequest.Validate if the designated constraints aren't met.

func (GetVersionRequestValidationError) Cause

Cause function returns cause value.

func (GetVersionRequestValidationError) Error

Error satisfies the builtin error interface

func (GetVersionRequestValidationError) ErrorName

ErrorName returns error name.

func (GetVersionRequestValidationError) Field

Field function returns field value.

func (GetVersionRequestValidationError) Key

Key function returns key value.

func (GetVersionRequestValidationError) Reason

Reason function returns reason value.

type GetVersionResponse

type GetVersionResponse struct {
	Current string `protobuf:"bytes,1,opt,name=current,proto3" json:"current,omitempty"`
	Latest  string `protobuf:"bytes,2,opt,name=latest,proto3" json:"latest,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVersionResponse) Descriptor deprecated

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

Deprecated: Use GetVersionResponse.ProtoReflect.Descriptor instead.

func (*GetVersionResponse) GetCurrent

func (x *GetVersionResponse) GetCurrent() string

func (*GetVersionResponse) GetLatest

func (x *GetVersionResponse) GetLatest() string

func (*GetVersionResponse) ProtoMessage

func (*GetVersionResponse) ProtoMessage()

func (*GetVersionResponse) ProtoReflect

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

func (*GetVersionResponse) Reset

func (x *GetVersionResponse) Reset()

func (*GetVersionResponse) String

func (x *GetVersionResponse) String() string

func (*GetVersionResponse) Validate

func (m *GetVersionResponse) Validate() error

Validate checks the field values on GetVersionResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetVersionResponse) ValidateAll

func (m *GetVersionResponse) ValidateAll() error

ValidateAll checks the field values on GetVersionResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetVersionResponseMultiError, or nil if none found.

type GetVersionResponseMultiError

type GetVersionResponseMultiError []error

GetVersionResponseMultiError is an error wrapping multiple validation errors returned by GetVersionResponse.ValidateAll() if the designated constraints aren't met.

func (GetVersionResponseMultiError) AllErrors

func (m GetVersionResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetVersionResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetVersionResponseValidationError

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

GetVersionResponseValidationError is the validation error returned by GetVersionResponse.Validate if the designated constraints aren't met.

func (GetVersionResponseValidationError) Cause

Cause function returns cause value.

func (GetVersionResponseValidationError) Error

Error satisfies the builtin error interface

func (GetVersionResponseValidationError) ErrorName

ErrorName returns error name.

func (GetVersionResponseValidationError) Field

Field function returns field value.

func (GetVersionResponseValidationError) Key

Key function returns key value.

func (GetVersionResponseValidationError) Reason

Reason function returns reason value.

type GitPullRequest added in v0.78.0

type GitPullRequest struct {
	DiscardLocal bool `protobuf:"varint,1,opt,name=discard_local,json=discardLocal,proto3" json:"discard_local,omitempty"`
	// contains filtered or unexported fields
}

func (*GitPullRequest) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GitPullRequest.ProtoReflect.Descriptor instead.

func (*GitPullRequest) GetDiscardLocal added in v0.78.0

func (x *GitPullRequest) GetDiscardLocal() bool

func (*GitPullRequest) ProtoMessage added in v0.78.0

func (*GitPullRequest) ProtoMessage()

func (*GitPullRequest) ProtoReflect added in v0.78.0

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

func (*GitPullRequest) Reset added in v0.78.0

func (x *GitPullRequest) Reset()

func (*GitPullRequest) String added in v0.78.0

func (x *GitPullRequest) String() string

func (*GitPullRequest) Validate added in v0.78.0

func (m *GitPullRequest) Validate() error

Validate checks the field values on GitPullRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GitPullRequest) ValidateAll added in v0.78.0

func (m *GitPullRequest) ValidateAll() error

ValidateAll checks the field values on GitPullRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GitPullRequestMultiError, or nil if none found.

type GitPullRequestMultiError added in v0.78.0

type GitPullRequestMultiError []error

GitPullRequestMultiError is an error wrapping multiple validation errors returned by GitPullRequest.ValidateAll() if the designated constraints aren't met.

func (GitPullRequestMultiError) AllErrors added in v0.78.0

func (m GitPullRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitPullRequestMultiError) Error added in v0.78.0

func (m GitPullRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type GitPullRequestValidationError added in v0.78.0

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

GitPullRequestValidationError is the validation error returned by GitPullRequest.Validate if the designated constraints aren't met.

func (GitPullRequestValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GitPullRequestValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GitPullRequestValidationError) ErrorName added in v0.78.0

func (e GitPullRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GitPullRequestValidationError) Field added in v0.78.0

Field function returns field value.

func (GitPullRequestValidationError) Key added in v0.78.0

Key function returns key value.

func (GitPullRequestValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GitPullResponse added in v0.78.0

type GitPullResponse struct {

	// The output of the git pull command. Only set for unsuccessful pulls.
	Output string `protobuf:"bytes,1,opt,name=output,proto3" json:"output,omitempty"`
	// contains filtered or unexported fields
}

func (*GitPullResponse) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GitPullResponse.ProtoReflect.Descriptor instead.

func (*GitPullResponse) GetOutput added in v0.78.0

func (x *GitPullResponse) GetOutput() string

func (*GitPullResponse) ProtoMessage added in v0.78.0

func (*GitPullResponse) ProtoMessage()

func (*GitPullResponse) ProtoReflect added in v0.78.0

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

func (*GitPullResponse) Reset added in v0.78.0

func (x *GitPullResponse) Reset()

func (*GitPullResponse) String added in v0.78.0

func (x *GitPullResponse) String() string

func (*GitPullResponse) Validate added in v0.78.0

func (m *GitPullResponse) Validate() error

Validate checks the field values on GitPullResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GitPullResponse) ValidateAll added in v0.78.0

func (m *GitPullResponse) ValidateAll() error

ValidateAll checks the field values on GitPullResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GitPullResponseMultiError, or nil if none found.

type GitPullResponseMultiError added in v0.78.0

type GitPullResponseMultiError []error

GitPullResponseMultiError is an error wrapping multiple validation errors returned by GitPullResponse.ValidateAll() if the designated constraints aren't met.

func (GitPullResponseMultiError) AllErrors added in v0.78.0

func (m GitPullResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitPullResponseMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GitPullResponseValidationError added in v0.78.0

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

GitPullResponseValidationError is the validation error returned by GitPullResponse.Validate if the designated constraints aren't met.

func (GitPullResponseValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GitPullResponseValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GitPullResponseValidationError) ErrorName added in v0.78.0

func (e GitPullResponseValidationError) ErrorName() string

ErrorName returns error name.

func (GitPullResponseValidationError) Field added in v0.78.0

Field function returns field value.

func (GitPullResponseValidationError) Key added in v0.78.0

Key function returns key value.

func (GitPullResponseValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GitPushRequest added in v0.78.0

type GitPushRequest struct {
	CommitMessage string `protobuf:"bytes,1,opt,name=commit_message,json=commitMessage,proto3" json:"commit_message,omitempty"`
	Force         bool   `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"`
	// contains filtered or unexported fields
}

func (*GitPushRequest) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GitPushRequest.ProtoReflect.Descriptor instead.

func (*GitPushRequest) GetCommitMessage added in v0.78.0

func (x *GitPushRequest) GetCommitMessage() string

func (*GitPushRequest) GetForce added in v0.78.0

func (x *GitPushRequest) GetForce() bool

func (*GitPushRequest) ProtoMessage added in v0.78.0

func (*GitPushRequest) ProtoMessage()

func (*GitPushRequest) ProtoReflect added in v0.78.0

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

func (*GitPushRequest) Reset added in v0.78.0

func (x *GitPushRequest) Reset()

func (*GitPushRequest) String added in v0.78.0

func (x *GitPushRequest) String() string

func (*GitPushRequest) Validate added in v0.78.0

func (m *GitPushRequest) Validate() error

Validate checks the field values on GitPushRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GitPushRequest) ValidateAll added in v0.78.0

func (m *GitPushRequest) ValidateAll() error

ValidateAll checks the field values on GitPushRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GitPushRequestMultiError, or nil if none found.

type GitPushRequestMultiError added in v0.78.0

type GitPushRequestMultiError []error

GitPushRequestMultiError is an error wrapping multiple validation errors returned by GitPushRequest.ValidateAll() if the designated constraints aren't met.

func (GitPushRequestMultiError) AllErrors added in v0.78.0

func (m GitPushRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitPushRequestMultiError) Error added in v0.78.0

func (m GitPushRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type GitPushRequestValidationError added in v0.78.0

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

GitPushRequestValidationError is the validation error returned by GitPushRequest.Validate if the designated constraints aren't met.

func (GitPushRequestValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GitPushRequestValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GitPushRequestValidationError) ErrorName added in v0.78.0

func (e GitPushRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GitPushRequestValidationError) Field added in v0.78.0

Field function returns field value.

func (GitPushRequestValidationError) Key added in v0.78.0

Key function returns key value.

func (GitPushRequestValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GitPushResponse added in v0.78.0

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

func (*GitPushResponse) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GitPushResponse.ProtoReflect.Descriptor instead.

func (*GitPushResponse) ProtoMessage added in v0.78.0

func (*GitPushResponse) ProtoMessage()

func (*GitPushResponse) ProtoReflect added in v0.78.0

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

func (*GitPushResponse) Reset added in v0.78.0

func (x *GitPushResponse) Reset()

func (*GitPushResponse) String added in v0.78.0

func (x *GitPushResponse) String() string

func (*GitPushResponse) Validate added in v0.78.0

func (m *GitPushResponse) Validate() error

Validate checks the field values on GitPushResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GitPushResponse) ValidateAll added in v0.78.0

func (m *GitPushResponse) ValidateAll() error

ValidateAll checks the field values on GitPushResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GitPushResponseMultiError, or nil if none found.

type GitPushResponseMultiError added in v0.78.0

type GitPushResponseMultiError []error

GitPushResponseMultiError is an error wrapping multiple validation errors returned by GitPushResponse.ValidateAll() if the designated constraints aren't met.

func (GitPushResponseMultiError) AllErrors added in v0.78.0

func (m GitPushResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitPushResponseMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GitPushResponseValidationError added in v0.78.0

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

GitPushResponseValidationError is the validation error returned by GitPushResponse.Validate if the designated constraints aren't met.

func (GitPushResponseValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GitPushResponseValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GitPushResponseValidationError) ErrorName added in v0.78.0

func (e GitPushResponseValidationError) ErrorName() string

ErrorName returns error name.

func (GitPushResponseValidationError) Field added in v0.78.0

Field function returns field value.

func (GitPushResponseValidationError) Key added in v0.78.0

Key function returns key value.

func (GitPushResponseValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GitStatusRequest added in v0.78.0

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

func (*GitStatusRequest) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GitStatusRequest.ProtoReflect.Descriptor instead.

func (*GitStatusRequest) ProtoMessage added in v0.78.0

func (*GitStatusRequest) ProtoMessage()

func (*GitStatusRequest) ProtoReflect added in v0.78.0

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

func (*GitStatusRequest) Reset added in v0.78.0

func (x *GitStatusRequest) Reset()

func (*GitStatusRequest) String added in v0.78.0

func (x *GitStatusRequest) String() string

func (*GitStatusRequest) Validate added in v0.78.0

func (m *GitStatusRequest) Validate() error

Validate checks the field values on GitStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GitStatusRequest) ValidateAll added in v0.78.0

func (m *GitStatusRequest) ValidateAll() error

ValidateAll checks the field values on GitStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GitStatusRequestMultiError, or nil if none found.

type GitStatusRequestMultiError added in v0.78.0

type GitStatusRequestMultiError []error

GitStatusRequestMultiError is an error wrapping multiple validation errors returned by GitStatusRequest.ValidateAll() if the designated constraints aren't met.

func (GitStatusRequestMultiError) AllErrors added in v0.78.0

func (m GitStatusRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitStatusRequestMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GitStatusRequestValidationError added in v0.78.0

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

GitStatusRequestValidationError is the validation error returned by GitStatusRequest.Validate if the designated constraints aren't met.

func (GitStatusRequestValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GitStatusRequestValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GitStatusRequestValidationError) ErrorName added in v0.78.0

ErrorName returns error name.

func (GitStatusRequestValidationError) Field added in v0.78.0

Field function returns field value.

func (GitStatusRequestValidationError) Key added in v0.78.0

Key function returns key value.

func (GitStatusRequestValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GitStatusResponse added in v0.78.0

type GitStatusResponse struct {

	// The current branch of the git repo.
	Branch string `protobuf:"bytes,1,opt,name=branch,proto3" json:"branch,omitempty"`
	// The remote url of the git repo.
	GithubUrl string `protobuf:"bytes,2,opt,name=github_url,json=githubUrl,proto3" json:"github_url,omitempty"`
	// Subpath relative to the git repo root. This is where the project is started.
	Subpath string `protobuf:"bytes,7,opt,name=subpath,proto3" json:"subpath,omitempty"`
	// If the repo is managed by Rill.
	ManagedGit bool `protobuf:"varint,3,opt,name=managed_git,json=managedGit,proto3" json:"managed_git,omitempty"`
	// local_changes returns true if there are any staged, unstaged, or untracked changes in the local git repo.
	LocalChanges bool `protobuf:"varint,4,opt,name=local_changes,json=localChanges,proto3" json:"local_changes,omitempty"`
	// local_commits returns number of local commits that are not pushed to the remote git repo.
	LocalCommits int32 `protobuf:"varint,5,opt,name=local_commits,json=localCommits,proto3" json:"local_commits,omitempty"`
	// remote_commits returns number of remote commits not pulled yet.
	RemoteCommits int32 `protobuf:"varint,6,opt,name=remote_commits,json=remoteCommits,proto3" json:"remote_commits,omitempty"`
	// contains filtered or unexported fields
}

func (*GitStatusResponse) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GitStatusResponse.ProtoReflect.Descriptor instead.

func (*GitStatusResponse) GetBranch added in v0.78.0

func (x *GitStatusResponse) GetBranch() string

func (*GitStatusResponse) GetGithubUrl added in v0.78.0

func (x *GitStatusResponse) GetGithubUrl() string

func (*GitStatusResponse) GetLocalChanges added in v0.78.0

func (x *GitStatusResponse) GetLocalChanges() bool

func (*GitStatusResponse) GetLocalCommits added in v0.78.0

func (x *GitStatusResponse) GetLocalCommits() int32

func (*GitStatusResponse) GetManagedGit added in v0.78.0

func (x *GitStatusResponse) GetManagedGit() bool

func (*GitStatusResponse) GetRemoteCommits added in v0.78.0

func (x *GitStatusResponse) GetRemoteCommits() int32

func (*GitStatusResponse) GetSubpath added in v0.78.0

func (x *GitStatusResponse) GetSubpath() string

func (*GitStatusResponse) ProtoMessage added in v0.78.0

func (*GitStatusResponse) ProtoMessage()

func (*GitStatusResponse) ProtoReflect added in v0.78.0

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

func (*GitStatusResponse) Reset added in v0.78.0

func (x *GitStatusResponse) Reset()

func (*GitStatusResponse) String added in v0.78.0

func (x *GitStatusResponse) String() string

func (*GitStatusResponse) Validate added in v0.78.0

func (m *GitStatusResponse) Validate() error

Validate checks the field values on GitStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GitStatusResponse) ValidateAll added in v0.78.0

func (m *GitStatusResponse) ValidateAll() error

ValidateAll checks the field values on GitStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GitStatusResponseMultiError, or nil if none found.

type GitStatusResponseMultiError added in v0.78.0

type GitStatusResponseMultiError []error

GitStatusResponseMultiError is an error wrapping multiple validation errors returned by GitStatusResponse.ValidateAll() if the designated constraints aren't met.

func (GitStatusResponseMultiError) AllErrors added in v0.78.0

func (m GitStatusResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitStatusResponseMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GitStatusResponseValidationError added in v0.78.0

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

GitStatusResponseValidationError is the validation error returned by GitStatusResponse.Validate if the designated constraints aren't met.

func (GitStatusResponseValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GitStatusResponseValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GitStatusResponseValidationError) ErrorName added in v0.78.0

ErrorName returns error name.

func (GitStatusResponseValidationError) Field added in v0.78.0

Field function returns field value.

func (GitStatusResponseValidationError) Key added in v0.78.0

Key function returns key value.

func (GitStatusResponseValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GithubRepoStatusRequest added in v0.78.0

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

func (*GithubRepoStatusRequest) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GithubRepoStatusRequest.ProtoReflect.Descriptor instead.

func (*GithubRepoStatusRequest) GetRemote added in v0.78.0

func (x *GithubRepoStatusRequest) GetRemote() string

func (*GithubRepoStatusRequest) ProtoMessage added in v0.78.0

func (*GithubRepoStatusRequest) ProtoMessage()

func (*GithubRepoStatusRequest) ProtoReflect added in v0.78.0

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

func (*GithubRepoStatusRequest) Reset added in v0.78.0

func (x *GithubRepoStatusRequest) Reset()

func (*GithubRepoStatusRequest) String added in v0.78.0

func (x *GithubRepoStatusRequest) String() string

func (*GithubRepoStatusRequest) Validate added in v0.78.0

func (m *GithubRepoStatusRequest) Validate() error

Validate checks the field values on GithubRepoStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GithubRepoStatusRequest) ValidateAll added in v0.78.0

func (m *GithubRepoStatusRequest) ValidateAll() error

ValidateAll checks the field values on GithubRepoStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GithubRepoStatusRequestMultiError, or nil if none found.

type GithubRepoStatusRequestMultiError added in v0.78.0

type GithubRepoStatusRequestMultiError []error

GithubRepoStatusRequestMultiError is an error wrapping multiple validation errors returned by GithubRepoStatusRequest.ValidateAll() if the designated constraints aren't met.

func (GithubRepoStatusRequestMultiError) AllErrors added in v0.78.0

func (m GithubRepoStatusRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GithubRepoStatusRequestMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GithubRepoStatusRequestValidationError added in v0.78.0

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

GithubRepoStatusRequestValidationError is the validation error returned by GithubRepoStatusRequest.Validate if the designated constraints aren't met.

func (GithubRepoStatusRequestValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GithubRepoStatusRequestValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GithubRepoStatusRequestValidationError) ErrorName added in v0.78.0

ErrorName returns error name.

func (GithubRepoStatusRequestValidationError) Field added in v0.78.0

Field function returns field value.

func (GithubRepoStatusRequestValidationError) Key added in v0.78.0

Key function returns key value.

func (GithubRepoStatusRequestValidationError) Reason added in v0.78.0

Reason function returns reason value.

type GithubRepoStatusResponse added in v0.78.0

type GithubRepoStatusResponse struct {
	HasAccess      bool   `protobuf:"varint,1,opt,name=has_access,json=hasAccess,proto3" json:"has_access,omitempty"`
	GrantAccessUrl string `protobuf:"bytes,2,opt,name=grant_access_url,json=grantAccessUrl,proto3" json:"grant_access_url,omitempty"`
	DefaultBranch  string `protobuf:"bytes,3,opt,name=default_branch,json=defaultBranch,proto3" json:"default_branch,omitempty"`
	// contains filtered or unexported fields
}

func (*GithubRepoStatusResponse) Descriptor deprecated added in v0.78.0

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

Deprecated: Use GithubRepoStatusResponse.ProtoReflect.Descriptor instead.

func (*GithubRepoStatusResponse) GetDefaultBranch added in v0.78.0

func (x *GithubRepoStatusResponse) GetDefaultBranch() string

func (*GithubRepoStatusResponse) GetGrantAccessUrl added in v0.78.0

func (x *GithubRepoStatusResponse) GetGrantAccessUrl() string

func (*GithubRepoStatusResponse) GetHasAccess added in v0.78.0

func (x *GithubRepoStatusResponse) GetHasAccess() bool

func (*GithubRepoStatusResponse) ProtoMessage added in v0.78.0

func (*GithubRepoStatusResponse) ProtoMessage()

func (*GithubRepoStatusResponse) ProtoReflect added in v0.78.0

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

func (*GithubRepoStatusResponse) Reset added in v0.78.0

func (x *GithubRepoStatusResponse) Reset()

func (*GithubRepoStatusResponse) String added in v0.78.0

func (x *GithubRepoStatusResponse) String() string

func (*GithubRepoStatusResponse) Validate added in v0.78.0

func (m *GithubRepoStatusResponse) Validate() error

Validate checks the field values on GithubRepoStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GithubRepoStatusResponse) ValidateAll added in v0.78.0

func (m *GithubRepoStatusResponse) ValidateAll() error

ValidateAll checks the field values on GithubRepoStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GithubRepoStatusResponseMultiError, or nil if none found.

type GithubRepoStatusResponseMultiError added in v0.78.0

type GithubRepoStatusResponseMultiError []error

GithubRepoStatusResponseMultiError is an error wrapping multiple validation errors returned by GithubRepoStatusResponse.ValidateAll() if the designated constraints aren't met.

func (GithubRepoStatusResponseMultiError) AllErrors added in v0.78.0

func (m GithubRepoStatusResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GithubRepoStatusResponseMultiError) Error added in v0.78.0

Error returns a concatenation of all the error messages it wraps.

type GithubRepoStatusResponseValidationError added in v0.78.0

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

GithubRepoStatusResponseValidationError is the validation error returned by GithubRepoStatusResponse.Validate if the designated constraints aren't met.

func (GithubRepoStatusResponseValidationError) Cause added in v0.78.0

Cause function returns cause value.

func (GithubRepoStatusResponseValidationError) Error added in v0.78.0

Error satisfies the builtin error interface

func (GithubRepoStatusResponseValidationError) ErrorName added in v0.78.0

ErrorName returns error name.

func (GithubRepoStatusResponseValidationError) Field added in v0.78.0

Field function returns field value.

func (GithubRepoStatusResponseValidationError) Key added in v0.78.0

Key function returns key value.

func (GithubRepoStatusResponseValidationError) Reason added in v0.78.0

Reason function returns reason value.

type ListMatchingProjectsRequest added in v0.62.0

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

func (*ListMatchingProjectsRequest) Descriptor deprecated added in v0.62.0

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

Deprecated: Use ListMatchingProjectsRequest.ProtoReflect.Descriptor instead.

func (*ListMatchingProjectsRequest) ProtoMessage added in v0.62.0

func (*ListMatchingProjectsRequest) ProtoMessage()

func (*ListMatchingProjectsRequest) ProtoReflect added in v0.62.0

func (*ListMatchingProjectsRequest) Reset added in v0.62.0

func (x *ListMatchingProjectsRequest) Reset()

func (*ListMatchingProjectsRequest) String added in v0.62.0

func (x *ListMatchingProjectsRequest) String() string

func (*ListMatchingProjectsRequest) Validate added in v0.62.0

func (m *ListMatchingProjectsRequest) Validate() error

Validate checks the field values on ListMatchingProjectsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListMatchingProjectsRequest) ValidateAll added in v0.62.0

func (m *ListMatchingProjectsRequest) ValidateAll() error

ValidateAll checks the field values on ListMatchingProjectsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListMatchingProjectsRequestMultiError, or nil if none found.

type ListMatchingProjectsRequestMultiError added in v0.62.0

type ListMatchingProjectsRequestMultiError []error

ListMatchingProjectsRequestMultiError is an error wrapping multiple validation errors returned by ListMatchingProjectsRequest.ValidateAll() if the designated constraints aren't met.

func (ListMatchingProjectsRequestMultiError) AllErrors added in v0.62.0

AllErrors returns a list of validation violation errors.

func (ListMatchingProjectsRequestMultiError) Error added in v0.62.0

Error returns a concatenation of all the error messages it wraps.

type ListMatchingProjectsRequestValidationError added in v0.62.0

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

ListMatchingProjectsRequestValidationError is the validation error returned by ListMatchingProjectsRequest.Validate if the designated constraints aren't met.

func (ListMatchingProjectsRequestValidationError) Cause added in v0.62.0

Cause function returns cause value.

func (ListMatchingProjectsRequestValidationError) Error added in v0.62.0

Error satisfies the builtin error interface

func (ListMatchingProjectsRequestValidationError) ErrorName added in v0.62.0

ErrorName returns error name.

func (ListMatchingProjectsRequestValidationError) Field added in v0.62.0

Field function returns field value.

func (ListMatchingProjectsRequestValidationError) Key added in v0.62.0

Key function returns key value.

func (ListMatchingProjectsRequestValidationError) Reason added in v0.62.0

Reason function returns reason value.

type ListMatchingProjectsResponse added in v0.62.0

type ListMatchingProjectsResponse struct {
	Projects []*v1.Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
	// contains filtered or unexported fields
}

func (*ListMatchingProjectsResponse) Descriptor deprecated added in v0.62.0

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

Deprecated: Use ListMatchingProjectsResponse.ProtoReflect.Descriptor instead.

func (*ListMatchingProjectsResponse) GetProjects added in v0.62.0

func (x *ListMatchingProjectsResponse) GetProjects() []*v1.Project

func (*ListMatchingProjectsResponse) ProtoMessage added in v0.62.0

func (*ListMatchingProjectsResponse) ProtoMessage()

func (*ListMatchingProjectsResponse) ProtoReflect added in v0.62.0

func (*ListMatchingProjectsResponse) Reset added in v0.62.0

func (x *ListMatchingProjectsResponse) Reset()

func (*ListMatchingProjectsResponse) String added in v0.62.0

func (*ListMatchingProjectsResponse) Validate added in v0.62.0

func (m *ListMatchingProjectsResponse) Validate() error

Validate checks the field values on ListMatchingProjectsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListMatchingProjectsResponse) ValidateAll added in v0.62.0

func (m *ListMatchingProjectsResponse) ValidateAll() error

ValidateAll checks the field values on ListMatchingProjectsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListMatchingProjectsResponseMultiError, or nil if none found.

type ListMatchingProjectsResponseMultiError added in v0.62.0

type ListMatchingProjectsResponseMultiError []error

ListMatchingProjectsResponseMultiError is an error wrapping multiple validation errors returned by ListMatchingProjectsResponse.ValidateAll() if the designated constraints aren't met.

func (ListMatchingProjectsResponseMultiError) AllErrors added in v0.62.0

AllErrors returns a list of validation violation errors.

func (ListMatchingProjectsResponseMultiError) Error added in v0.62.0

Error returns a concatenation of all the error messages it wraps.

type ListMatchingProjectsResponseValidationError added in v0.62.0

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

ListMatchingProjectsResponseValidationError is the validation error returned by ListMatchingProjectsResponse.Validate if the designated constraints aren't met.

func (ListMatchingProjectsResponseValidationError) Cause added in v0.62.0

Cause function returns cause value.

func (ListMatchingProjectsResponseValidationError) Error added in v0.62.0

Error satisfies the builtin error interface

func (ListMatchingProjectsResponseValidationError) ErrorName added in v0.62.0

ErrorName returns error name.

func (ListMatchingProjectsResponseValidationError) Field added in v0.62.0

Field function returns field value.

func (ListMatchingProjectsResponseValidationError) Key added in v0.62.0

Key function returns key value.

func (ListMatchingProjectsResponseValidationError) Reason added in v0.62.0

Reason function returns reason value.

type ListOrganizationsAndBillingMetadataRequest added in v0.51.0

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

func (*ListOrganizationsAndBillingMetadataRequest) Descriptor deprecated added in v0.51.0

Deprecated: Use ListOrganizationsAndBillingMetadataRequest.ProtoReflect.Descriptor instead.

func (*ListOrganizationsAndBillingMetadataRequest) ProtoMessage added in v0.51.0

func (*ListOrganizationsAndBillingMetadataRequest) ProtoReflect added in v0.51.0

func (*ListOrganizationsAndBillingMetadataRequest) Reset added in v0.51.0

func (*ListOrganizationsAndBillingMetadataRequest) String added in v0.51.0

func (*ListOrganizationsAndBillingMetadataRequest) Validate added in v0.51.0

Validate checks the field values on ListOrganizationsAndBillingMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListOrganizationsAndBillingMetadataRequest) ValidateAll added in v0.51.0

ValidateAll checks the field values on ListOrganizationsAndBillingMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListOrganizationsAndBillingMetadataRequestMultiError, or nil if none found.

type ListOrganizationsAndBillingMetadataRequestMultiError added in v0.51.0

type ListOrganizationsAndBillingMetadataRequestMultiError []error

ListOrganizationsAndBillingMetadataRequestMultiError is an error wrapping multiple validation errors returned by ListOrganizationsAndBillingMetadataRequest.ValidateAll() if the designated constraints aren't met.

func (ListOrganizationsAndBillingMetadataRequestMultiError) AllErrors added in v0.51.0

AllErrors returns a list of validation violation errors.

func (ListOrganizationsAndBillingMetadataRequestMultiError) Error added in v0.51.0

Error returns a concatenation of all the error messages it wraps.

type ListOrganizationsAndBillingMetadataRequestValidationError added in v0.51.0

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

ListOrganizationsAndBillingMetadataRequestValidationError is the validation error returned by ListOrganizationsAndBillingMetadataRequest.Validate if the designated constraints aren't met.

func (ListOrganizationsAndBillingMetadataRequestValidationError) Cause added in v0.51.0

Cause function returns cause value.

func (ListOrganizationsAndBillingMetadataRequestValidationError) Error added in v0.51.0

Error satisfies the builtin error interface

func (ListOrganizationsAndBillingMetadataRequestValidationError) ErrorName added in v0.51.0

ErrorName returns error name.

func (ListOrganizationsAndBillingMetadataRequestValidationError) Field added in v0.51.0

Field function returns field value.

func (ListOrganizationsAndBillingMetadataRequestValidationError) Key added in v0.51.0

Key function returns key value.

func (ListOrganizationsAndBillingMetadataRequestValidationError) Reason added in v0.51.0

Reason function returns reason value.

type ListOrganizationsAndBillingMetadataResponse added in v0.51.0

type ListOrganizationsAndBillingMetadataResponse struct {
	Orgs []*ListOrganizationsAndBillingMetadataResponse_OrgMetadata `protobuf:"bytes,1,rep,name=orgs,proto3" json:"orgs,omitempty"`
	// contains filtered or unexported fields
}

func (*ListOrganizationsAndBillingMetadataResponse) Descriptor deprecated added in v0.51.0

Deprecated: Use ListOrganizationsAndBillingMetadataResponse.ProtoReflect.Descriptor instead.

func (*ListOrganizationsAndBillingMetadataResponse) GetOrgs added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse) ProtoMessage added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse) ProtoReflect added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse) Reset added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse) String added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse) Validate added in v0.51.0

Validate checks the field values on ListOrganizationsAndBillingMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListOrganizationsAndBillingMetadataResponse) ValidateAll added in v0.51.0

ValidateAll checks the field values on ListOrganizationsAndBillingMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListOrganizationsAndBillingMetadataResponseMultiError, or nil if none found.

type ListOrganizationsAndBillingMetadataResponseMultiError added in v0.51.0

type ListOrganizationsAndBillingMetadataResponseMultiError []error

ListOrganizationsAndBillingMetadataResponseMultiError is an error wrapping multiple validation errors returned by ListOrganizationsAndBillingMetadataResponse.ValidateAll() if the designated constraints aren't met.

func (ListOrganizationsAndBillingMetadataResponseMultiError) AllErrors added in v0.51.0

AllErrors returns a list of validation violation errors.

func (ListOrganizationsAndBillingMetadataResponseMultiError) Error added in v0.51.0

Error returns a concatenation of all the error messages it wraps.

type ListOrganizationsAndBillingMetadataResponseValidationError added in v0.51.0

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

ListOrganizationsAndBillingMetadataResponseValidationError is the validation error returned by ListOrganizationsAndBillingMetadataResponse.Validate if the designated constraints aren't met.

func (ListOrganizationsAndBillingMetadataResponseValidationError) Cause added in v0.51.0

Cause function returns cause value.

func (ListOrganizationsAndBillingMetadataResponseValidationError) Error added in v0.51.0

Error satisfies the builtin error interface

func (ListOrganizationsAndBillingMetadataResponseValidationError) ErrorName added in v0.51.0

ErrorName returns error name.

func (ListOrganizationsAndBillingMetadataResponseValidationError) Field added in v0.51.0

Field function returns field value.

func (ListOrganizationsAndBillingMetadataResponseValidationError) Key added in v0.51.0

Key function returns key value.

func (ListOrganizationsAndBillingMetadataResponseValidationError) Reason added in v0.51.0

Reason function returns reason value.

type ListOrganizationsAndBillingMetadataResponse_OrgMetadata added in v0.51.0

type ListOrganizationsAndBillingMetadataResponse_OrgMetadata struct {
	Name   string             `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Issues []*v1.BillingIssue `protobuf:"bytes,3,rep,name=issues,proto3" json:"issues,omitempty"`
	// contains filtered or unexported fields
}

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) Descriptor deprecated added in v0.51.0

Deprecated: Use ListOrganizationsAndBillingMetadataResponse_OrgMetadata.ProtoReflect.Descriptor instead.

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) GetIssues added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) GetName added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) ProtoMessage added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) ProtoReflect added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) Reset added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) String added in v0.51.0

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) Validate added in v0.51.0

Validate checks the field values on ListOrganizationsAndBillingMetadataResponse_OrgMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListOrganizationsAndBillingMetadataResponse_OrgMetadata) ValidateAll added in v0.51.0

ValidateAll checks the field values on ListOrganizationsAndBillingMetadataResponse_OrgMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListOrganizationsAndBillingMetadataResponse_OrgMetadataMultiError, or nil if none found.

type ListOrganizationsAndBillingMetadataResponse_OrgMetadataMultiError added in v0.51.0

type ListOrganizationsAndBillingMetadataResponse_OrgMetadataMultiError []error

ListOrganizationsAndBillingMetadataResponse_OrgMetadataMultiError is an error wrapping multiple validation errors returned by ListOrganizationsAndBillingMetadataResponse_OrgMetadata.ValidateAll() if the designated constraints aren't met.

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataMultiError) AllErrors added in v0.51.0

AllErrors returns a list of validation violation errors.

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataMultiError) Error added in v0.51.0

Error returns a concatenation of all the error messages it wraps.

type ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError added in v0.51.0

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

ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError is the validation error returned by ListOrganizationsAndBillingMetadataResponse_OrgMetadata.Validate if the designated constraints aren't met.

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError) Cause added in v0.51.0

Cause function returns cause value.

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError) Error added in v0.51.0

Error satisfies the builtin error interface

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError) ErrorName added in v0.51.0

ErrorName returns error name.

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError) Field added in v0.51.0

Field function returns field value.

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError) Key added in v0.51.0

Key function returns key value.

func (ListOrganizationsAndBillingMetadataResponse_OrgMetadataValidationError) Reason added in v0.51.0

Reason function returns reason value.

type ListProjectsForOrgRequest added in v0.62.0

type ListProjectsForOrgRequest struct {
	Org       string `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"`
	PageSize  uint32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListProjectsForOrgRequest) Descriptor deprecated added in v0.62.0

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

Deprecated: Use ListProjectsForOrgRequest.ProtoReflect.Descriptor instead.

func (*ListProjectsForOrgRequest) GetOrg added in v0.62.0

func (x *ListProjectsForOrgRequest) GetOrg() string

func (*ListProjectsForOrgRequest) GetPageSize added in v0.62.0

func (x *ListProjectsForOrgRequest) GetPageSize() uint32

func (*ListProjectsForOrgRequest) GetPageToken added in v0.62.0

func (x *ListProjectsForOrgRequest) GetPageToken() string

func (*ListProjectsForOrgRequest) ProtoMessage added in v0.62.0

func (*ListProjectsForOrgRequest) ProtoMessage()

func (*ListProjectsForOrgRequest) ProtoReflect added in v0.62.0

func (*ListProjectsForOrgRequest) Reset added in v0.62.0

func (x *ListProjectsForOrgRequest) Reset()

func (*ListProjectsForOrgRequest) String added in v0.62.0

func (x *ListProjectsForOrgRequest) String() string

func (*ListProjectsForOrgRequest) Validate added in v0.62.0

func (m *ListProjectsForOrgRequest) Validate() error

Validate checks the field values on ListProjectsForOrgRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListProjectsForOrgRequest) ValidateAll added in v0.62.0

func (m *ListProjectsForOrgRequest) ValidateAll() error

ValidateAll checks the field values on ListProjectsForOrgRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListProjectsForOrgRequestMultiError, or nil if none found.

type ListProjectsForOrgRequestMultiError added in v0.62.0

type ListProjectsForOrgRequestMultiError []error

ListProjectsForOrgRequestMultiError is an error wrapping multiple validation errors returned by ListProjectsForOrgRequest.ValidateAll() if the designated constraints aren't met.

func (ListProjectsForOrgRequestMultiError) AllErrors added in v0.62.0

AllErrors returns a list of validation violation errors.

func (ListProjectsForOrgRequestMultiError) Error added in v0.62.0

Error returns a concatenation of all the error messages it wraps.

type ListProjectsForOrgRequestValidationError added in v0.62.0

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

ListProjectsForOrgRequestValidationError is the validation error returned by ListProjectsForOrgRequest.Validate if the designated constraints aren't met.

func (ListProjectsForOrgRequestValidationError) Cause added in v0.62.0

Cause function returns cause value.

func (ListProjectsForOrgRequestValidationError) Error added in v0.62.0

Error satisfies the builtin error interface

func (ListProjectsForOrgRequestValidationError) ErrorName added in v0.62.0

ErrorName returns error name.

func (ListProjectsForOrgRequestValidationError) Field added in v0.62.0

Field function returns field value.

func (ListProjectsForOrgRequestValidationError) Key added in v0.62.0

Key function returns key value.

func (ListProjectsForOrgRequestValidationError) Reason added in v0.62.0

Reason function returns reason value.

type ListProjectsForOrgResponse added in v0.62.0

type ListProjectsForOrgResponse struct {
	Projects []*v1.Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
	// contains filtered or unexported fields
}

func (*ListProjectsForOrgResponse) Descriptor deprecated added in v0.62.0

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

Deprecated: Use ListProjectsForOrgResponse.ProtoReflect.Descriptor instead.

func (*ListProjectsForOrgResponse) GetProjects added in v0.62.0

func (x *ListProjectsForOrgResponse) GetProjects() []*v1.Project

func (*ListProjectsForOrgResponse) ProtoMessage added in v0.62.0

func (*ListProjectsForOrgResponse) ProtoMessage()

func (*ListProjectsForOrgResponse) ProtoReflect added in v0.62.0

func (*ListProjectsForOrgResponse) Reset added in v0.62.0

func (x *ListProjectsForOrgResponse) Reset()

func (*ListProjectsForOrgResponse) String added in v0.62.0

func (x *ListProjectsForOrgResponse) String() string

func (*ListProjectsForOrgResponse) Validate added in v0.62.0

func (m *ListProjectsForOrgResponse) Validate() error

Validate checks the field values on ListProjectsForOrgResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListProjectsForOrgResponse) ValidateAll added in v0.62.0

func (m *ListProjectsForOrgResponse) ValidateAll() error

ValidateAll checks the field values on ListProjectsForOrgResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListProjectsForOrgResponseMultiError, or nil if none found.

type ListProjectsForOrgResponseMultiError added in v0.62.0

type ListProjectsForOrgResponseMultiError []error

ListProjectsForOrgResponseMultiError is an error wrapping multiple validation errors returned by ListProjectsForOrgResponse.ValidateAll() if the designated constraints aren't met.

func (ListProjectsForOrgResponseMultiError) AllErrors added in v0.62.0

AllErrors returns a list of validation violation errors.

func (ListProjectsForOrgResponseMultiError) Error added in v0.62.0

Error returns a concatenation of all the error messages it wraps.

type ListProjectsForOrgResponseValidationError added in v0.62.0

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

ListProjectsForOrgResponseValidationError is the validation error returned by ListProjectsForOrgResponse.Validate if the designated constraints aren't met.

func (ListProjectsForOrgResponseValidationError) Cause added in v0.62.0

Cause function returns cause value.

func (ListProjectsForOrgResponseValidationError) Error added in v0.62.0

Error satisfies the builtin error interface

func (ListProjectsForOrgResponseValidationError) ErrorName added in v0.62.0

ErrorName returns error name.

func (ListProjectsForOrgResponseValidationError) Field added in v0.62.0

Field function returns field value.

func (ListProjectsForOrgResponseValidationError) Key added in v0.62.0

Key function returns key value.

func (ListProjectsForOrgResponseValidationError) Reason added in v0.62.0

Reason function returns reason value.

type LocalServiceClient

type LocalServiceClient interface {
	// Ping returns the current time.
	Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error)
	// GetMetadata returns information about the local Rill instance.
	GetMetadata(ctx context.Context, in *GetMetadataRequest, opts ...grpc.CallOption) (*GetMetadataResponse, error)
	// GetVersion returns details about the current and latest available Rill versions.
	GetVersion(ctx context.Context, in *GetVersionRequest, opts ...grpc.CallOption) (*GetVersionResponse, error)
	// GitStatus returns the curren status of the local git repo. This is equivalent to doing a `git fetch` followed by running `git status`.
	GitStatus(ctx context.Context, in *GitStatusRequest, opts ...grpc.CallOption) (*GitStatusResponse, error)
	// GithubRepoStatus returns info about a Github user account based on the caller's installations. Forwards to admin API of the same name.
	GithubRepoStatus(ctx context.Context, in *GithubRepoStatusRequest, opts ...grpc.CallOption) (*GithubRepoStatusResponse, error)
	// GitPull fetches the latest changes from the remote git repo equivalent to `git pull` command.
	// If there are any merge conflicts the pull is aborted.
	// Force can be set to true to force the pull and overwrite any local changes.
	GitPull(ctx context.Context, in *GitPullRequest, opts ...grpc.CallOption) (*GitPullResponse, error)
	// GitPush pushes the local changes to the remote git repo equivalent to `git push` command.
	// The difference between this and PushTiGithub is that this does not create a new repo.
	// It only pushes the changes to the existing remote repo.
	GitPush(ctx context.Context, in *GitPushRequest, opts ...grpc.CallOption) (*GitPushResponse, error)
	// PushToGithub create a Git repo from local project and pushed to users git account.
	PushToGithub(ctx context.Context, in *PushToGithubRequest, opts ...grpc.CallOption) (*PushToGithubResponse, error)
	// DeployProject deploys the local project to the Rill cloud.
	DeployProject(ctx context.Context, in *DeployProjectRequest, opts ...grpc.CallOption) (*DeployProjectResponse, error)
	// RedeployProject updates a deployed project.
	RedeployProject(ctx context.Context, in *RedeployProjectRequest, opts ...grpc.CallOption) (*RedeployProjectResponse, error)
	// GetCurrentUser returns the locally logged in user
	GetCurrentUser(ctx context.Context, in *GetCurrentUserRequest, opts ...grpc.CallOption) (*GetCurrentUserResponse, error)
	// GetCurrentProject returns the rill cloud project connected to the local project
	// Deprecated: Use ListMatchingProjects instead.
	GetCurrentProject(ctx context.Context, in *GetCurrentProjectRequest, opts ...grpc.CallOption) (*GetCurrentProjectResponse, error)
	// ListOrganizationsAndBillingMetadata returns metadata about the current user's orgs.
	ListOrganizationsAndBillingMetadata(ctx context.Context, in *ListOrganizationsAndBillingMetadataRequest, opts ...grpc.CallOption) (*ListOrganizationsAndBillingMetadataResponse, error)
	// CreateOrganization creates a new organization
	CreateOrganization(ctx context.Context, in *CreateOrganizationRequest, opts ...grpc.CallOption) (*CreateOrganizationResponse, error)
	// ListMatchingProjects returns all remote projects matching the local project name
	ListMatchingProjects(ctx context.Context, in *ListMatchingProjectsRequest, opts ...grpc.CallOption) (*ListMatchingProjectsResponse, error)
	// ListProjectsForOrg returns all projects within an org
	ListProjectsForOrg(ctx context.Context, in *ListProjectsForOrgRequest, opts ...grpc.CallOption) (*ListProjectsForOrgResponse, error)
	// GetProject returns information about a specific project
	GetProject(ctx context.Context, in *GetProjectRequest, opts ...grpc.CallOption) (*GetProjectResponse, error)
}

LocalServiceClient is the client API for LocalService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type LocalServiceServer

type LocalServiceServer interface {
	// Ping returns the current time.
	Ping(context.Context, *PingRequest) (*PingResponse, error)
	// GetMetadata returns information about the local Rill instance.
	GetMetadata(context.Context, *GetMetadataRequest) (*GetMetadataResponse, error)
	// GetVersion returns details about the current and latest available Rill versions.
	GetVersion(context.Context, *GetVersionRequest) (*GetVersionResponse, error)
	// GitStatus returns the curren status of the local git repo. This is equivalent to doing a `git fetch` followed by running `git status`.
	GitStatus(context.Context, *GitStatusRequest) (*GitStatusResponse, error)
	// GithubRepoStatus returns info about a Github user account based on the caller's installations. Forwards to admin API of the same name.
	GithubRepoStatus(context.Context, *GithubRepoStatusRequest) (*GithubRepoStatusResponse, error)
	// GitPull fetches the latest changes from the remote git repo equivalent to `git pull` command.
	// If there are any merge conflicts the pull is aborted.
	// Force can be set to true to force the pull and overwrite any local changes.
	GitPull(context.Context, *GitPullRequest) (*GitPullResponse, error)
	// GitPush pushes the local changes to the remote git repo equivalent to `git push` command.
	// The difference between this and PushTiGithub is that this does not create a new repo.
	// It only pushes the changes to the existing remote repo.
	GitPush(context.Context, *GitPushRequest) (*GitPushResponse, error)
	// PushToGithub create a Git repo from local project and pushed to users git account.
	PushToGithub(context.Context, *PushToGithubRequest) (*PushToGithubResponse, error)
	// DeployProject deploys the local project to the Rill cloud.
	DeployProject(context.Context, *DeployProjectRequest) (*DeployProjectResponse, error)
	// RedeployProject updates a deployed project.
	RedeployProject(context.Context, *RedeployProjectRequest) (*RedeployProjectResponse, error)
	// GetCurrentUser returns the locally logged in user
	GetCurrentUser(context.Context, *GetCurrentUserRequest) (*GetCurrentUserResponse, error)
	// GetCurrentProject returns the rill cloud project connected to the local project
	// Deprecated: Use ListMatchingProjects instead.
	GetCurrentProject(context.Context, *GetCurrentProjectRequest) (*GetCurrentProjectResponse, error)
	// ListOrganizationsAndBillingMetadata returns metadata about the current user's orgs.
	ListOrganizationsAndBillingMetadata(context.Context, *ListOrganizationsAndBillingMetadataRequest) (*ListOrganizationsAndBillingMetadataResponse, error)
	// CreateOrganization creates a new organization
	CreateOrganization(context.Context, *CreateOrganizationRequest) (*CreateOrganizationResponse, error)
	// ListMatchingProjects returns all remote projects matching the local project name
	ListMatchingProjects(context.Context, *ListMatchingProjectsRequest) (*ListMatchingProjectsResponse, error)
	// ListProjectsForOrg returns all projects within an org
	ListProjectsForOrg(context.Context, *ListProjectsForOrgRequest) (*ListProjectsForOrgResponse, error)
	// GetProject returns information about a specific project
	GetProject(context.Context, *GetProjectRequest) (*GetProjectResponse, error)
	// contains filtered or unexported methods
}

LocalServiceServer is the server API for LocalService service. All implementations must embed UnimplementedLocalServiceServer for forward compatibility.

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

func (*PingRequest) Validate

func (m *PingRequest) Validate() error

Validate checks the field values on PingRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PingRequest) ValidateAll

func (m *PingRequest) ValidateAll() error

ValidateAll checks the field values on PingRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PingRequestMultiError, or nil if none found.

type PingRequestMultiError

type PingRequestMultiError []error

PingRequestMultiError is an error wrapping multiple validation errors returned by PingRequest.ValidateAll() if the designated constraints aren't met.

func (PingRequestMultiError) AllErrors

func (m PingRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PingRequestMultiError) Error

func (m PingRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PingRequestValidationError

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

PingRequestValidationError is the validation error returned by PingRequest.Validate if the designated constraints aren't met.

func (PingRequestValidationError) Cause

Cause function returns cause value.

func (PingRequestValidationError) Error

Error satisfies the builtin error interface

func (PingRequestValidationError) ErrorName

func (e PingRequestValidationError) ErrorName() string

ErrorName returns error name.

func (PingRequestValidationError) Field

Field function returns field value.

func (PingRequestValidationError) Key

Key function returns key value.

func (PingRequestValidationError) Reason

Reason function returns reason value.

type PingResponse

type PingResponse struct {
	Time *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=time,proto3" json:"time,omitempty"`
	// contains filtered or unexported fields
}

func (*PingResponse) Descriptor deprecated

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

Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.

func (*PingResponse) GetTime

func (x *PingResponse) GetTime() *timestamppb.Timestamp

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

func (*PingResponse) Validate

func (m *PingResponse) Validate() error

Validate checks the field values on PingResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PingResponse) ValidateAll

func (m *PingResponse) ValidateAll() error

ValidateAll checks the field values on PingResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PingResponseMultiError, or nil if none found.

type PingResponseMultiError

type PingResponseMultiError []error

PingResponseMultiError is an error wrapping multiple validation errors returned by PingResponse.ValidateAll() if the designated constraints aren't met.

func (PingResponseMultiError) AllErrors

func (m PingResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PingResponseMultiError) Error

func (m PingResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PingResponseValidationError

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

PingResponseValidationError is the validation error returned by PingResponse.Validate if the designated constraints aren't met.

func (PingResponseValidationError) Cause

Cause function returns cause value.

func (PingResponseValidationError) Error

Error satisfies the builtin error interface

func (PingResponseValidationError) ErrorName

func (e PingResponseValidationError) ErrorName() string

ErrorName returns error name.

func (PingResponseValidationError) Field

Field function returns field value.

func (PingResponseValidationError) Key

Key function returns key value.

func (PingResponseValidationError) Reason

Reason function returns reason value.

type PushToGithubRequest added in v0.47.0

type PushToGithubRequest struct {
	Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	Repo    string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	// contains filtered or unexported fields
}

func (*PushToGithubRequest) Descriptor deprecated added in v0.47.0

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

Deprecated: Use PushToGithubRequest.ProtoReflect.Descriptor instead.

func (*PushToGithubRequest) GetAccount added in v0.47.0

func (x *PushToGithubRequest) GetAccount() string

func (*PushToGithubRequest) GetRepo added in v0.47.0

func (x *PushToGithubRequest) GetRepo() string

func (*PushToGithubRequest) ProtoMessage added in v0.47.0

func (*PushToGithubRequest) ProtoMessage()

func (*PushToGithubRequest) ProtoReflect added in v0.47.0

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

func (*PushToGithubRequest) Reset added in v0.47.0

func (x *PushToGithubRequest) Reset()

func (*PushToGithubRequest) String added in v0.47.0

func (x *PushToGithubRequest) String() string

func (*PushToGithubRequest) Validate added in v0.47.0

func (m *PushToGithubRequest) Validate() error

Validate checks the field values on PushToGithubRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PushToGithubRequest) ValidateAll added in v0.47.0

func (m *PushToGithubRequest) ValidateAll() error

ValidateAll checks the field values on PushToGithubRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PushToGithubRequestMultiError, or nil if none found.

type PushToGithubRequestMultiError added in v0.47.0

type PushToGithubRequestMultiError []error

PushToGithubRequestMultiError is an error wrapping multiple validation errors returned by PushToGithubRequest.ValidateAll() if the designated constraints aren't met.

func (PushToGithubRequestMultiError) AllErrors added in v0.47.0

func (m PushToGithubRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PushToGithubRequestMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type PushToGithubRequestValidationError added in v0.47.0

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

PushToGithubRequestValidationError is the validation error returned by PushToGithubRequest.Validate if the designated constraints aren't met.

func (PushToGithubRequestValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (PushToGithubRequestValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (PushToGithubRequestValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (PushToGithubRequestValidationError) Field added in v0.47.0

Field function returns field value.

func (PushToGithubRequestValidationError) Key added in v0.47.0

Key function returns key value.

func (PushToGithubRequestValidationError) Reason added in v0.47.0

Reason function returns reason value.

type PushToGithubResponse added in v0.47.0

type PushToGithubResponse struct {
	Remote  string `protobuf:"bytes,1,opt,name=remote,proto3" json:"remote,omitempty"`
	Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	Repo    string `protobuf:"bytes,3,opt,name=repo,proto3" json:"repo,omitempty"`
	// contains filtered or unexported fields
}

func (*PushToGithubResponse) Descriptor deprecated added in v0.47.0

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

Deprecated: Use PushToGithubResponse.ProtoReflect.Descriptor instead.

func (*PushToGithubResponse) GetAccount added in v0.47.0

func (x *PushToGithubResponse) GetAccount() string

func (*PushToGithubResponse) GetRemote added in v0.78.0

func (x *PushToGithubResponse) GetRemote() string

func (*PushToGithubResponse) GetRepo added in v0.47.0

func (x *PushToGithubResponse) GetRepo() string

func (*PushToGithubResponse) ProtoMessage added in v0.47.0

func (*PushToGithubResponse) ProtoMessage()

func (*PushToGithubResponse) ProtoReflect added in v0.47.0

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

func (*PushToGithubResponse) Reset added in v0.47.0

func (x *PushToGithubResponse) Reset()

func (*PushToGithubResponse) String added in v0.47.0

func (x *PushToGithubResponse) String() string

func (*PushToGithubResponse) Validate added in v0.47.0

func (m *PushToGithubResponse) Validate() error

Validate checks the field values on PushToGithubResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PushToGithubResponse) ValidateAll added in v0.47.0

func (m *PushToGithubResponse) ValidateAll() error

ValidateAll checks the field values on PushToGithubResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PushToGithubResponseMultiError, or nil if none found.

type PushToGithubResponseMultiError added in v0.47.0

type PushToGithubResponseMultiError []error

PushToGithubResponseMultiError is an error wrapping multiple validation errors returned by PushToGithubResponse.ValidateAll() if the designated constraints aren't met.

func (PushToGithubResponseMultiError) AllErrors added in v0.47.0

func (m PushToGithubResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PushToGithubResponseMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type PushToGithubResponseValidationError added in v0.47.0

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

PushToGithubResponseValidationError is the validation error returned by PushToGithubResponse.Validate if the designated constraints aren't met.

func (PushToGithubResponseValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (PushToGithubResponseValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (PushToGithubResponseValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (PushToGithubResponseValidationError) Field added in v0.47.0

Field function returns field value.

func (PushToGithubResponseValidationError) Key added in v0.47.0

Key function returns key value.

func (PushToGithubResponseValidationError) Reason added in v0.47.0

Reason function returns reason value.

type RedeployProjectRequest added in v0.47.0

type RedeployProjectRequest struct {
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Reupload  bool   `protobuf:"varint,2,opt,name=reupload,proto3" json:"reupload,omitempty"`
	// temporarily used for testing
	Rearchive         bool `protobuf:"varint,3,opt,name=rearchive,proto3" json:"rearchive,omitempty"`
	CreateManagedRepo bool `protobuf:"varint,4,opt,name=create_managed_repo,json=createManagedRepo,proto3" json:"create_managed_repo,omitempty"`
	// contains filtered or unexported fields
}

func (*RedeployProjectRequest) Descriptor deprecated added in v0.47.0

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

Deprecated: Use RedeployProjectRequest.ProtoReflect.Descriptor instead.

func (*RedeployProjectRequest) GetCreateManagedRepo added in v0.78.0

func (x *RedeployProjectRequest) GetCreateManagedRepo() bool

func (*RedeployProjectRequest) GetProjectId added in v0.47.0

func (x *RedeployProjectRequest) GetProjectId() string

func (*RedeployProjectRequest) GetRearchive added in v0.64.1

func (x *RedeployProjectRequest) GetRearchive() bool

func (*RedeployProjectRequest) GetReupload added in v0.47.0

func (x *RedeployProjectRequest) GetReupload() bool

func (*RedeployProjectRequest) ProtoMessage added in v0.47.0

func (*RedeployProjectRequest) ProtoMessage()

func (*RedeployProjectRequest) ProtoReflect added in v0.47.0

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

func (*RedeployProjectRequest) Reset added in v0.47.0

func (x *RedeployProjectRequest) Reset()

func (*RedeployProjectRequest) String added in v0.47.0

func (x *RedeployProjectRequest) String() string

func (*RedeployProjectRequest) Validate added in v0.47.0

func (m *RedeployProjectRequest) Validate() error

Validate checks the field values on RedeployProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RedeployProjectRequest) ValidateAll added in v0.47.0

func (m *RedeployProjectRequest) ValidateAll() error

ValidateAll checks the field values on RedeployProjectRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RedeployProjectRequestMultiError, or nil if none found.

type RedeployProjectRequestMultiError added in v0.47.0

type RedeployProjectRequestMultiError []error

RedeployProjectRequestMultiError is an error wrapping multiple validation errors returned by RedeployProjectRequest.ValidateAll() if the designated constraints aren't met.

func (RedeployProjectRequestMultiError) AllErrors added in v0.47.0

func (m RedeployProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RedeployProjectRequestMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type RedeployProjectRequestValidationError added in v0.47.0

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

RedeployProjectRequestValidationError is the validation error returned by RedeployProjectRequest.Validate if the designated constraints aren't met.

func (RedeployProjectRequestValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (RedeployProjectRequestValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (RedeployProjectRequestValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (RedeployProjectRequestValidationError) Field added in v0.47.0

Field function returns field value.

func (RedeployProjectRequestValidationError) Key added in v0.47.0

Key function returns key value.

func (RedeployProjectRequestValidationError) Reason added in v0.47.0

Reason function returns reason value.

type RedeployProjectResponse added in v0.47.0

type RedeployProjectResponse struct {
	FrontendUrl string `protobuf:"bytes,1,opt,name=frontend_url,json=frontendUrl,proto3" json:"frontend_url,omitempty"`
	// contains filtered or unexported fields
}

func (*RedeployProjectResponse) Descriptor deprecated added in v0.47.0

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

Deprecated: Use RedeployProjectResponse.ProtoReflect.Descriptor instead.

func (*RedeployProjectResponse) GetFrontendUrl added in v0.48.0

func (x *RedeployProjectResponse) GetFrontendUrl() string

func (*RedeployProjectResponse) ProtoMessage added in v0.47.0

func (*RedeployProjectResponse) ProtoMessage()

func (*RedeployProjectResponse) ProtoReflect added in v0.47.0

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

func (*RedeployProjectResponse) Reset added in v0.47.0

func (x *RedeployProjectResponse) Reset()

func (*RedeployProjectResponse) String added in v0.47.0

func (x *RedeployProjectResponse) String() string

func (*RedeployProjectResponse) Validate added in v0.47.0

func (m *RedeployProjectResponse) Validate() error

Validate checks the field values on RedeployProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RedeployProjectResponse) ValidateAll added in v0.47.0

func (m *RedeployProjectResponse) ValidateAll() error

ValidateAll checks the field values on RedeployProjectResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RedeployProjectResponseMultiError, or nil if none found.

type RedeployProjectResponseMultiError added in v0.47.0

type RedeployProjectResponseMultiError []error

RedeployProjectResponseMultiError is an error wrapping multiple validation errors returned by RedeployProjectResponse.ValidateAll() if the designated constraints aren't met.

func (RedeployProjectResponseMultiError) AllErrors added in v0.47.0

func (m RedeployProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RedeployProjectResponseMultiError) Error added in v0.47.0

Error returns a concatenation of all the error messages it wraps.

type RedeployProjectResponseValidationError added in v0.47.0

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

RedeployProjectResponseValidationError is the validation error returned by RedeployProjectResponse.Validate if the designated constraints aren't met.

func (RedeployProjectResponseValidationError) Cause added in v0.47.0

Cause function returns cause value.

func (RedeployProjectResponseValidationError) Error added in v0.47.0

Error satisfies the builtin error interface

func (RedeployProjectResponseValidationError) ErrorName added in v0.47.0

ErrorName returns error name.

func (RedeployProjectResponseValidationError) Field added in v0.47.0

Field function returns field value.

func (RedeployProjectResponseValidationError) Key added in v0.47.0

Key function returns key value.

func (RedeployProjectResponseValidationError) Reason added in v0.47.0

Reason function returns reason value.

type UnimplementedLocalServiceServer

type UnimplementedLocalServiceServer struct{}

UnimplementedLocalServiceServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedLocalServiceServer) CreateOrganization added in v0.62.0

func (UnimplementedLocalServiceServer) DeployProject added in v0.47.0

func (UnimplementedLocalServiceServer) GetCurrentProject added in v0.48.0

func (UnimplementedLocalServiceServer) GetCurrentUser added in v0.47.0

func (UnimplementedLocalServiceServer) GetMetadata

func (UnimplementedLocalServiceServer) GetProject added in v0.78.0

func (UnimplementedLocalServiceServer) GetVersion

func (UnimplementedLocalServiceServer) GitPull added in v0.78.0

func (UnimplementedLocalServiceServer) GitPush added in v0.78.0

func (UnimplementedLocalServiceServer) GitStatus added in v0.78.0

func (UnimplementedLocalServiceServer) GithubRepoStatus added in v0.78.0

func (UnimplementedLocalServiceServer) ListMatchingProjects added in v0.62.0

func (UnimplementedLocalServiceServer) ListOrganizationsAndBillingMetadata added in v0.51.0

func (UnimplementedLocalServiceServer) ListProjectsForOrg added in v0.62.0

func (UnimplementedLocalServiceServer) Ping

func (UnimplementedLocalServiceServer) PushToGithub added in v0.47.0

func (UnimplementedLocalServiceServer) RedeployProject added in v0.47.0

type UnsafeLocalServiceServer

type UnsafeLocalServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeLocalServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to LocalServiceServer will result in compilation errors.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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