adminv1

package
v0.23.1 Latest Latest
Warning

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

Go to latest
Published: Mar 16, 2023 License: Apache-2.0 Imports: 29 Imported by: 0

Documentation

Overview

Package adminv1 is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	DeploymentStatus_name = map[int32]string{
		0: "DEPLOYMENT_STATUS_UNSPECIFIED",
		1: "DEPLOYMENT_STATUS_PENDING",
		2: "DEPLOYMENT_STATUS_OK",
		3: "DEPLOYMENT_STATUS_RECONCILING",
		4: "DEPLOYMENT_STATUS_ERROR",
	}
	DeploymentStatus_value = map[string]int32{
		"DEPLOYMENT_STATUS_UNSPECIFIED": 0,
		"DEPLOYMENT_STATUS_PENDING":     1,
		"DEPLOYMENT_STATUS_OK":          2,
		"DEPLOYMENT_STATUS_RECONCILING": 3,
		"DEPLOYMENT_STATUS_ERROR":       4,
	}
)

Enum value maps for DeploymentStatus.

View Source
var AdminService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "rill.admin.v1.AdminService",
	HandlerType: (*AdminServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Ping",
			Handler:    _AdminService_Ping_Handler,
		},
		{
			MethodName: "ListOrganizations",
			Handler:    _AdminService_ListOrganizations_Handler,
		},
		{
			MethodName: "GetOrganization",
			Handler:    _AdminService_GetOrganization_Handler,
		},
		{
			MethodName: "CreateOrganization",
			Handler:    _AdminService_CreateOrganization_Handler,
		},
		{
			MethodName: "DeleteOrganization",
			Handler:    _AdminService_DeleteOrganization_Handler,
		},
		{
			MethodName: "UpdateOrganization",
			Handler:    _AdminService_UpdateOrganization_Handler,
		},
		{
			MethodName: "ListProjects",
			Handler:    _AdminService_ListProjects_Handler,
		},
		{
			MethodName: "GetProject",
			Handler:    _AdminService_GetProject_Handler,
		},
		{
			MethodName: "CreateProject",
			Handler:    _AdminService_CreateProject_Handler,
		},
		{
			MethodName: "DeleteProject",
			Handler:    _AdminService_DeleteProject_Handler,
		},
		{
			MethodName: "UpdateProject",
			Handler:    _AdminService_UpdateProject_Handler,
		},
		{
			MethodName: "GetCurrentUser",
			Handler:    _AdminService_GetCurrentUser_Handler,
		},
		{
			MethodName: "RevokeCurrentAuthToken",
			Handler:    _AdminService_RevokeCurrentAuthToken_Handler,
		},
		{
			MethodName: "GetGithubRepoStatus",
			Handler:    _AdminService_GetGithubRepoStatus_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "rill/admin/v1/api.proto",
}

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

View Source
var File_rill_admin_v1_api_proto protoreflect.FileDescriptor

Functions

func RegisterAdminServiceHandler

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

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

func RegisterAdminServiceHandlerClient

func RegisterAdminServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client AdminServiceClient) error

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

func RegisterAdminServiceHandlerFromEndpoint

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

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

func RegisterAdminServiceHandlerServer

func RegisterAdminServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server AdminServiceServer) error

RegisterAdminServiceHandlerServer registers the http handlers for service AdminService to "mux". UnaryRPC :call AdminServiceServer 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 RegisterAdminServiceHandlerFromEndpoint instead.

func RegisterAdminServiceServer

func RegisterAdminServiceServer(s grpc.ServiceRegistrar, srv AdminServiceServer)

Types

type AdminServiceClient

type AdminServiceClient interface {
	// Ping returns information about the server
	Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error)
	// ListOrganizations lists all the organizations currently managed by the admin
	ListOrganizations(ctx context.Context, in *ListOrganizationsRequest, opts ...grpc.CallOption) (*ListOrganizationsResponse, error)
	// GetOrganization returns information about a specific organization
	GetOrganization(ctx context.Context, in *GetOrganizationRequest, opts ...grpc.CallOption) (*GetOrganizationResponse, error)
	// CreateOrganization creates a new organization
	CreateOrganization(ctx context.Context, in *CreateOrganizationRequest, opts ...grpc.CallOption) (*CreateOrganizationResponse, error)
	// DeleteOrganization deletes an organizations
	DeleteOrganization(ctx context.Context, in *DeleteOrganizationRequest, opts ...grpc.CallOption) (*DeleteOrganizationResponse, error)
	// UpdateOrganization deletes an organizations
	UpdateOrganization(ctx context.Context, in *UpdateOrganizationRequest, opts ...grpc.CallOption) (*UpdateOrganizationResponse, error)
	// ListProjects lists all the projects currently available for given organizations
	ListProjects(ctx context.Context, in *ListProjectsRequest, opts ...grpc.CallOption) (*ListProjectsResponse, error)
	// GetProject returns information about a specific project
	GetProject(ctx context.Context, in *GetProjectRequest, opts ...grpc.CallOption) (*GetProjectResponse, error)
	// CreateProject creates a new project
	CreateProject(ctx context.Context, in *CreateProjectRequest, opts ...grpc.CallOption) (*CreateProjectResponse, error)
	// DeleteProject deletes an project
	DeleteProject(ctx context.Context, in *DeleteProjectRequest, opts ...grpc.CallOption) (*DeleteProjectResponse, error)
	// UpdateProject updates a project
	UpdateProject(ctx context.Context, in *UpdateProjectRequest, opts ...grpc.CallOption) (*UpdateProjectResponse, error)
	// GetCurrentUser returns the currently authenticated user (if any)
	GetCurrentUser(ctx context.Context, in *GetCurrentUserRequest, opts ...grpc.CallOption) (*GetCurrentUserResponse, error)
	// RevokeCurrentAuthToken revoke the current auth token
	RevokeCurrentAuthToken(ctx context.Context, in *RevokeCurrentAuthTokenRequest, opts ...grpc.CallOption) (*RevokeCurrentAuthTokenResponse, error)
	// GetGithubRepoRequest returns info about a Github repo based on the caller's installations.
	// If the caller has not granted access to the repository, instructions for granting access are returned.
	GetGithubRepoStatus(ctx context.Context, in *GetGithubRepoStatusRequest, opts ...grpc.CallOption) (*GetGithubRepoStatusResponse, error)
}

AdminServiceClient is the client API for AdminService 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 AdminServiceServer

type AdminServiceServer interface {
	// Ping returns information about the server
	Ping(context.Context, *PingRequest) (*PingResponse, error)
	// ListOrganizations lists all the organizations currently managed by the admin
	ListOrganizations(context.Context, *ListOrganizationsRequest) (*ListOrganizationsResponse, error)
	// GetOrganization returns information about a specific organization
	GetOrganization(context.Context, *GetOrganizationRequest) (*GetOrganizationResponse, error)
	// CreateOrganization creates a new organization
	CreateOrganization(context.Context, *CreateOrganizationRequest) (*CreateOrganizationResponse, error)
	// DeleteOrganization deletes an organizations
	DeleteOrganization(context.Context, *DeleteOrganizationRequest) (*DeleteOrganizationResponse, error)
	// UpdateOrganization deletes an organizations
	UpdateOrganization(context.Context, *UpdateOrganizationRequest) (*UpdateOrganizationResponse, error)
	// ListProjects lists all the projects currently available for given organizations
	ListProjects(context.Context, *ListProjectsRequest) (*ListProjectsResponse, error)
	// GetProject returns information about a specific project
	GetProject(context.Context, *GetProjectRequest) (*GetProjectResponse, error)
	// CreateProject creates a new project
	CreateProject(context.Context, *CreateProjectRequest) (*CreateProjectResponse, error)
	// DeleteProject deletes an project
	DeleteProject(context.Context, *DeleteProjectRequest) (*DeleteProjectResponse, error)
	// UpdateProject updates a project
	UpdateProject(context.Context, *UpdateProjectRequest) (*UpdateProjectResponse, error)
	// GetCurrentUser returns the currently authenticated user (if any)
	GetCurrentUser(context.Context, *GetCurrentUserRequest) (*GetCurrentUserResponse, error)
	// RevokeCurrentAuthToken revoke the current auth token
	RevokeCurrentAuthToken(context.Context, *RevokeCurrentAuthTokenRequest) (*RevokeCurrentAuthTokenResponse, error)
	// GetGithubRepoRequest returns info about a Github repo based on the caller's installations.
	// If the caller has not granted access to the repository, instructions for granting access are returned.
	GetGithubRepoStatus(context.Context, *GetGithubRepoStatusRequest) (*GetGithubRepoStatusResponse, error)
	// contains filtered or unexported methods
}

AdminServiceServer is the server API for AdminService service. All implementations must embed UnimplementedAdminServiceServer for forward compatibility

type CreateOrganizationRequest

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

func (*CreateOrganizationRequest) Descriptor deprecated

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

Deprecated: Use CreateOrganizationRequest.ProtoReflect.Descriptor instead.

func (*CreateOrganizationRequest) GetDescription

func (x *CreateOrganizationRequest) GetDescription() string

func (*CreateOrganizationRequest) GetId

func (x *CreateOrganizationRequest) GetId() string

func (*CreateOrganizationRequest) GetName

func (x *CreateOrganizationRequest) GetName() string

func (*CreateOrganizationRequest) ProtoMessage

func (*CreateOrganizationRequest) ProtoMessage()

func (*CreateOrganizationRequest) ProtoReflect

func (*CreateOrganizationRequest) Reset

func (x *CreateOrganizationRequest) Reset()

func (*CreateOrganizationRequest) String

func (x *CreateOrganizationRequest) String() string

func (*CreateOrganizationRequest) Validate

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

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

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

AllErrors returns a list of validation violation errors.

func (CreateOrganizationRequestMultiError) Error

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

type CreateOrganizationRequestValidationError

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

Cause function returns cause value.

func (CreateOrganizationRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateOrganizationRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateOrganizationRequestValidationError) Field

Field function returns field value.

func (CreateOrganizationRequestValidationError) Key

Key function returns key value.

func (CreateOrganizationRequestValidationError) Reason

Reason function returns reason value.

type CreateOrganizationResponse

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

func (*CreateOrganizationResponse) Descriptor deprecated

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

Deprecated: Use CreateOrganizationResponse.ProtoReflect.Descriptor instead.

func (*CreateOrganizationResponse) GetOrganization

func (x *CreateOrganizationResponse) GetOrganization() *Organization

func (*CreateOrganizationResponse) ProtoMessage

func (*CreateOrganizationResponse) ProtoMessage()

func (*CreateOrganizationResponse) ProtoReflect

func (*CreateOrganizationResponse) Reset

func (x *CreateOrganizationResponse) Reset()

func (*CreateOrganizationResponse) String

func (x *CreateOrganizationResponse) String() string

func (*CreateOrganizationResponse) Validate

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

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

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

AllErrors returns a list of validation violation errors.

func (CreateOrganizationResponseMultiError) Error

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

type CreateOrganizationResponseValidationError

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

Cause function returns cause value.

func (CreateOrganizationResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateOrganizationResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateOrganizationResponseValidationError) Field

Field function returns field value.

func (CreateOrganizationResponseValidationError) Key

Key function returns key value.

func (CreateOrganizationResponseValidationError) Reason

Reason function returns reason value.

type CreateProjectRequest

type CreateProjectRequest 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"`
	Description      string            `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Public           bool              `protobuf:"varint,4,opt,name=public,proto3" json:"public,omitempty"`
	ProductionSlots  int64             `protobuf:"varint,5,opt,name=production_slots,json=productionSlots,proto3" json:"production_slots,omitempty"`
	ProductionBranch string            `protobuf:"bytes,6,opt,name=production_branch,json=productionBranch,proto3" json:"production_branch,omitempty"`
	GithubUrl        string            `protobuf:"bytes,7,opt,name=github_url,json=githubUrl,proto3" json:"github_url,omitempty"`
	Variables        map[string]string `` /* 159-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateProjectRequest) Descriptor deprecated

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

Deprecated: Use CreateProjectRequest.ProtoReflect.Descriptor instead.

func (*CreateProjectRequest) GetDescription

func (x *CreateProjectRequest) GetDescription() string

func (*CreateProjectRequest) GetGithubUrl added in v0.23.0

func (x *CreateProjectRequest) GetGithubUrl() string

func (*CreateProjectRequest) GetName

func (x *CreateProjectRequest) GetName() string

func (*CreateProjectRequest) GetOrganizationName added in v0.23.0

func (x *CreateProjectRequest) GetOrganizationName() string

func (*CreateProjectRequest) GetProductionBranch added in v0.23.0

func (x *CreateProjectRequest) GetProductionBranch() string

func (*CreateProjectRequest) GetProductionSlots added in v0.23.0

func (x *CreateProjectRequest) GetProductionSlots() int64

func (*CreateProjectRequest) GetPublic added in v0.23.0

func (x *CreateProjectRequest) GetPublic() bool

func (*CreateProjectRequest) GetVariables added in v0.23.0

func (x *CreateProjectRequest) GetVariables() map[string]string

func (*CreateProjectRequest) ProtoMessage

func (*CreateProjectRequest) ProtoMessage()

func (*CreateProjectRequest) ProtoReflect

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

func (*CreateProjectRequest) Reset

func (x *CreateProjectRequest) Reset()

func (*CreateProjectRequest) String

func (x *CreateProjectRequest) String() string

func (*CreateProjectRequest) Validate

func (m *CreateProjectRequest) Validate() error

Validate checks the field values on CreateProjectRequest 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 (*CreateProjectRequest) ValidateAll

func (m *CreateProjectRequest) ValidateAll() error

ValidateAll checks the field values on CreateProjectRequest 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 CreateProjectRequestMultiError, or nil if none found.

type CreateProjectRequestMultiError

type CreateProjectRequestMultiError []error

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

func (CreateProjectRequestMultiError) AllErrors

func (m CreateProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateProjectRequestMultiError) Error

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

type CreateProjectRequestValidationError

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

CreateProjectRequestValidationError is the validation error returned by CreateProjectRequest.Validate if the designated constraints aren't met.

func (CreateProjectRequestValidationError) Cause

Cause function returns cause value.

func (CreateProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateProjectRequestValidationError) Field

Field function returns field value.

func (CreateProjectRequestValidationError) Key

Key function returns key value.

func (CreateProjectRequestValidationError) Reason

Reason function returns reason value.

type CreateProjectResponse

type CreateProjectResponse struct {
	Project *Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateProjectResponse) Descriptor deprecated

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

Deprecated: Use CreateProjectResponse.ProtoReflect.Descriptor instead.

func (*CreateProjectResponse) GetProject

func (x *CreateProjectResponse) GetProject() *Project

func (*CreateProjectResponse) ProtoMessage

func (*CreateProjectResponse) ProtoMessage()

func (*CreateProjectResponse) ProtoReflect

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

func (*CreateProjectResponse) Reset

func (x *CreateProjectResponse) Reset()

func (*CreateProjectResponse) String

func (x *CreateProjectResponse) String() string

func (*CreateProjectResponse) Validate

func (m *CreateProjectResponse) Validate() error

Validate checks the field values on CreateProjectResponse 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 (*CreateProjectResponse) ValidateAll

func (m *CreateProjectResponse) ValidateAll() error

ValidateAll checks the field values on CreateProjectResponse 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 CreateProjectResponseMultiError, or nil if none found.

type CreateProjectResponseMultiError

type CreateProjectResponseMultiError []error

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

func (CreateProjectResponseMultiError) AllErrors

func (m CreateProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateProjectResponseMultiError) Error

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

type CreateProjectResponseValidationError

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

CreateProjectResponseValidationError is the validation error returned by CreateProjectResponse.Validate if the designated constraints aren't met.

func (CreateProjectResponseValidationError) Cause

Cause function returns cause value.

func (CreateProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateProjectResponseValidationError) Field

Field function returns field value.

func (CreateProjectResponseValidationError) Key

Key function returns key value.

func (CreateProjectResponseValidationError) Reason

Reason function returns reason value.

type DeleteOrganizationRequest

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

func (*DeleteOrganizationRequest) Descriptor deprecated

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

Deprecated: Use DeleteOrganizationRequest.ProtoReflect.Descriptor instead.

func (*DeleteOrganizationRequest) GetName

func (x *DeleteOrganizationRequest) GetName() string

func (*DeleteOrganizationRequest) ProtoMessage

func (*DeleteOrganizationRequest) ProtoMessage()

func (*DeleteOrganizationRequest) ProtoReflect

func (*DeleteOrganizationRequest) Reset

func (x *DeleteOrganizationRequest) Reset()

func (*DeleteOrganizationRequest) String

func (x *DeleteOrganizationRequest) String() string

func (*DeleteOrganizationRequest) Validate

func (m *DeleteOrganizationRequest) Validate() error

Validate checks the field values on DeleteOrganizationRequest 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 (*DeleteOrganizationRequest) ValidateAll

func (m *DeleteOrganizationRequest) ValidateAll() error

ValidateAll checks the field values on DeleteOrganizationRequest 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 DeleteOrganizationRequestMultiError, or nil if none found.

type DeleteOrganizationRequestMultiError

type DeleteOrganizationRequestMultiError []error

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

func (DeleteOrganizationRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (DeleteOrganizationRequestMultiError) Error

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

type DeleteOrganizationRequestValidationError

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

DeleteOrganizationRequestValidationError is the validation error returned by DeleteOrganizationRequest.Validate if the designated constraints aren't met.

func (DeleteOrganizationRequestValidationError) Cause

Cause function returns cause value.

func (DeleteOrganizationRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteOrganizationRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteOrganizationRequestValidationError) Field

Field function returns field value.

func (DeleteOrganizationRequestValidationError) Key

Key function returns key value.

func (DeleteOrganizationRequestValidationError) Reason

Reason function returns reason value.

type DeleteOrganizationResponse

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

func (*DeleteOrganizationResponse) Descriptor deprecated

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

Deprecated: Use DeleteOrganizationResponse.ProtoReflect.Descriptor instead.

func (*DeleteOrganizationResponse) ProtoMessage

func (*DeleteOrganizationResponse) ProtoMessage()

func (*DeleteOrganizationResponse) ProtoReflect

func (*DeleteOrganizationResponse) Reset

func (x *DeleteOrganizationResponse) Reset()

func (*DeleteOrganizationResponse) String

func (x *DeleteOrganizationResponse) String() string

func (*DeleteOrganizationResponse) Validate

func (m *DeleteOrganizationResponse) Validate() error

Validate checks the field values on DeleteOrganizationResponse 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 (*DeleteOrganizationResponse) ValidateAll

func (m *DeleteOrganizationResponse) ValidateAll() error

ValidateAll checks the field values on DeleteOrganizationResponse 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 DeleteOrganizationResponseMultiError, or nil if none found.

type DeleteOrganizationResponseMultiError

type DeleteOrganizationResponseMultiError []error

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

func (DeleteOrganizationResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (DeleteOrganizationResponseMultiError) Error

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

type DeleteOrganizationResponseValidationError

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

DeleteOrganizationResponseValidationError is the validation error returned by DeleteOrganizationResponse.Validate if the designated constraints aren't met.

func (DeleteOrganizationResponseValidationError) Cause

Cause function returns cause value.

func (DeleteOrganizationResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteOrganizationResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteOrganizationResponseValidationError) Field

Field function returns field value.

func (DeleteOrganizationResponseValidationError) Key

Key function returns key value.

func (DeleteOrganizationResponseValidationError) Reason

Reason function returns reason value.

type DeleteProjectRequest

type DeleteProjectRequest 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 (*DeleteProjectRequest) Descriptor deprecated

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

Deprecated: Use DeleteProjectRequest.ProtoReflect.Descriptor instead.

func (*DeleteProjectRequest) GetName

func (x *DeleteProjectRequest) GetName() string

func (*DeleteProjectRequest) GetOrganizationName added in v0.23.0

func (x *DeleteProjectRequest) GetOrganizationName() string

func (*DeleteProjectRequest) ProtoMessage

func (*DeleteProjectRequest) ProtoMessage()

func (*DeleteProjectRequest) ProtoReflect

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

func (*DeleteProjectRequest) Reset

func (x *DeleteProjectRequest) Reset()

func (*DeleteProjectRequest) String

func (x *DeleteProjectRequest) String() string

func (*DeleteProjectRequest) Validate

func (m *DeleteProjectRequest) Validate() error

Validate checks the field values on DeleteProjectRequest 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 (*DeleteProjectRequest) ValidateAll

func (m *DeleteProjectRequest) ValidateAll() error

ValidateAll checks the field values on DeleteProjectRequest 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 DeleteProjectRequestMultiError, or nil if none found.

type DeleteProjectRequestMultiError

type DeleteProjectRequestMultiError []error

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

func (DeleteProjectRequestMultiError) AllErrors

func (m DeleteProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteProjectRequestMultiError) Error

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

type DeleteProjectRequestValidationError

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

DeleteProjectRequestValidationError is the validation error returned by DeleteProjectRequest.Validate if the designated constraints aren't met.

func (DeleteProjectRequestValidationError) Cause

Cause function returns cause value.

func (DeleteProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteProjectRequestValidationError) Field

Field function returns field value.

func (DeleteProjectRequestValidationError) Key

Key function returns key value.

func (DeleteProjectRequestValidationError) Reason

Reason function returns reason value.

type DeleteProjectResponse

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

func (*DeleteProjectResponse) Descriptor deprecated

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

Deprecated: Use DeleteProjectResponse.ProtoReflect.Descriptor instead.

func (*DeleteProjectResponse) ProtoMessage

func (*DeleteProjectResponse) ProtoMessage()

func (*DeleteProjectResponse) ProtoReflect

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

func (*DeleteProjectResponse) Reset

func (x *DeleteProjectResponse) Reset()

func (*DeleteProjectResponse) String

func (x *DeleteProjectResponse) String() string

func (*DeleteProjectResponse) Validate

func (m *DeleteProjectResponse) Validate() error

Validate checks the field values on DeleteProjectResponse 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 (*DeleteProjectResponse) ValidateAll

func (m *DeleteProjectResponse) ValidateAll() error

ValidateAll checks the field values on DeleteProjectResponse 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 DeleteProjectResponseMultiError, or nil if none found.

type DeleteProjectResponseMultiError

type DeleteProjectResponseMultiError []error

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

func (DeleteProjectResponseMultiError) AllErrors

func (m DeleteProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteProjectResponseMultiError) Error

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

type DeleteProjectResponseValidationError

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

DeleteProjectResponseValidationError is the validation error returned by DeleteProjectResponse.Validate if the designated constraints aren't met.

func (DeleteProjectResponseValidationError) Cause

Cause function returns cause value.

func (DeleteProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteProjectResponseValidationError) Field

Field function returns field value.

func (DeleteProjectResponseValidationError) Key

Key function returns key value.

func (DeleteProjectResponseValidationError) Reason

Reason function returns reason value.

type Deployment added in v0.23.0

type Deployment struct {
	Id                string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ProjectId         string                 `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Slots             int64                  `protobuf:"varint,3,opt,name=slots,proto3" json:"slots,omitempty"`
	Branch            string                 `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
	RuntimeHost       string                 `protobuf:"bytes,5,opt,name=runtime_host,json=runtimeHost,proto3" json:"runtime_host,omitempty"`
	RuntimeInstanceId string                 `protobuf:"bytes,6,opt,name=runtime_instance_id,json=runtimeInstanceId,proto3" json:"runtime_instance_id,omitempty"`
	Status            DeploymentStatus       `protobuf:"varint,7,opt,name=status,proto3,enum=rill.admin.v1.DeploymentStatus" json:"status,omitempty"`
	Logs              string                 `protobuf:"bytes,8,opt,name=logs,proto3" json:"logs,omitempty"`
	CreatedOn         *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=created_on,json=createdOn,proto3" json:"created_on,omitempty"`
	UpdatedOn         *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=updated_on,json=updatedOn,proto3" json:"updated_on,omitempty"`
	// contains filtered or unexported fields
}

func (*Deployment) Descriptor deprecated added in v0.23.0

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

Deprecated: Use Deployment.ProtoReflect.Descriptor instead.

func (*Deployment) GetBranch added in v0.23.0

func (x *Deployment) GetBranch() string

func (*Deployment) GetCreatedOn added in v0.23.0

func (x *Deployment) GetCreatedOn() *timestamppb.Timestamp

func (*Deployment) GetId added in v0.23.0

func (x *Deployment) GetId() string

func (*Deployment) GetLogs added in v0.23.0

func (x *Deployment) GetLogs() string

func (*Deployment) GetProjectId added in v0.23.0

func (x *Deployment) GetProjectId() string

func (*Deployment) GetRuntimeHost added in v0.23.0

func (x *Deployment) GetRuntimeHost() string

func (*Deployment) GetRuntimeInstanceId added in v0.23.0

func (x *Deployment) GetRuntimeInstanceId() string

func (*Deployment) GetSlots added in v0.23.0

func (x *Deployment) GetSlots() int64

func (*Deployment) GetStatus added in v0.23.0

func (x *Deployment) GetStatus() DeploymentStatus

func (*Deployment) GetUpdatedOn added in v0.23.0

func (x *Deployment) GetUpdatedOn() *timestamppb.Timestamp

func (*Deployment) ProtoMessage added in v0.23.0

func (*Deployment) ProtoMessage()

func (*Deployment) ProtoReflect added in v0.23.0

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

func (*Deployment) Reset added in v0.23.0

func (x *Deployment) Reset()

func (*Deployment) String added in v0.23.0

func (x *Deployment) String() string

func (*Deployment) Validate added in v0.23.0

func (m *Deployment) Validate() error

Validate checks the field values on Deployment 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 (*Deployment) ValidateAll added in v0.23.0

func (m *Deployment) ValidateAll() error

ValidateAll checks the field values on Deployment 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 DeploymentMultiError, or nil if none found.

type DeploymentMultiError added in v0.23.0

type DeploymentMultiError []error

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

func (DeploymentMultiError) AllErrors added in v0.23.0

func (m DeploymentMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeploymentMultiError) Error added in v0.23.0

func (m DeploymentMultiError) Error() string

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

type DeploymentStatus added in v0.23.0

type DeploymentStatus int32
const (
	DeploymentStatus_DEPLOYMENT_STATUS_UNSPECIFIED DeploymentStatus = 0
	DeploymentStatus_DEPLOYMENT_STATUS_PENDING     DeploymentStatus = 1
	DeploymentStatus_DEPLOYMENT_STATUS_OK          DeploymentStatus = 2
	DeploymentStatus_DEPLOYMENT_STATUS_RECONCILING DeploymentStatus = 3
	DeploymentStatus_DEPLOYMENT_STATUS_ERROR       DeploymentStatus = 4
)

func (DeploymentStatus) Descriptor added in v0.23.0

func (DeploymentStatus) Enum added in v0.23.0

func (DeploymentStatus) EnumDescriptor deprecated added in v0.23.0

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

Deprecated: Use DeploymentStatus.Descriptor instead.

func (DeploymentStatus) Number added in v0.23.0

func (DeploymentStatus) String added in v0.23.0

func (x DeploymentStatus) String() string

func (DeploymentStatus) Type added in v0.23.0

type DeploymentValidationError added in v0.23.0

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

DeploymentValidationError is the validation error returned by Deployment.Validate if the designated constraints aren't met.

func (DeploymentValidationError) Cause added in v0.23.0

func (e DeploymentValidationError) Cause() error

Cause function returns cause value.

func (DeploymentValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (DeploymentValidationError) ErrorName added in v0.23.0

func (e DeploymentValidationError) ErrorName() string

ErrorName returns error name.

func (DeploymentValidationError) Field added in v0.23.0

Field function returns field value.

func (DeploymentValidationError) Key added in v0.23.0

Key function returns key value.

func (DeploymentValidationError) Reason added in v0.23.0

func (e DeploymentValidationError) Reason() string

Reason function returns reason value.

type GetCurrentUserRequest added in v0.23.0

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

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

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

Deprecated: Use GetCurrentUserRequest.ProtoReflect.Descriptor instead.

func (*GetCurrentUserRequest) ProtoMessage added in v0.23.0

func (*GetCurrentUserRequest) ProtoMessage()

func (*GetCurrentUserRequest) ProtoReflect added in v0.23.0

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

func (*GetCurrentUserRequest) Reset added in v0.23.0

func (x *GetCurrentUserRequest) Reset()

func (*GetCurrentUserRequest) String added in v0.23.0

func (x *GetCurrentUserRequest) String() string

func (*GetCurrentUserRequest) Validate added in v0.23.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.23.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.23.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.23.0

func (m GetCurrentUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCurrentUserRequestMultiError) Error added in v0.23.0

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

type GetCurrentUserRequestValidationError added in v0.23.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.23.0

Cause function returns cause value.

func (GetCurrentUserRequestValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetCurrentUserRequestValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetCurrentUserRequestValidationError) Field added in v0.23.0

Field function returns field value.

func (GetCurrentUserRequestValidationError) Key added in v0.23.0

Key function returns key value.

func (GetCurrentUserRequestValidationError) Reason added in v0.23.0

Reason function returns reason value.

type GetCurrentUserResponse added in v0.23.0

type GetCurrentUserResponse struct {
	User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use GetCurrentUserResponse.ProtoReflect.Descriptor instead.

func (*GetCurrentUserResponse) GetUser added in v0.23.0

func (x *GetCurrentUserResponse) GetUser() *User

func (*GetCurrentUserResponse) ProtoMessage added in v0.23.0

func (*GetCurrentUserResponse) ProtoMessage()

func (*GetCurrentUserResponse) ProtoReflect added in v0.23.0

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

func (*GetCurrentUserResponse) Reset added in v0.23.0

func (x *GetCurrentUserResponse) Reset()

func (*GetCurrentUserResponse) String added in v0.23.0

func (x *GetCurrentUserResponse) String() string

func (*GetCurrentUserResponse) Validate added in v0.23.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.23.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.23.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.23.0

func (m GetCurrentUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCurrentUserResponseMultiError) Error added in v0.23.0

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

type GetCurrentUserResponseValidationError added in v0.23.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.23.0

Cause function returns cause value.

func (GetCurrentUserResponseValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetCurrentUserResponseValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetCurrentUserResponseValidationError) Field added in v0.23.0

Field function returns field value.

func (GetCurrentUserResponseValidationError) Key added in v0.23.0

Key function returns key value.

func (GetCurrentUserResponseValidationError) Reason added in v0.23.0

Reason function returns reason value.

type GetGithubRepoStatusRequest added in v0.23.0

type GetGithubRepoStatusRequest struct {
	GithubUrl string `protobuf:"bytes,1,opt,name=github_url,json=githubUrl,proto3" json:"github_url,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGithubRepoStatusRequest) Descriptor deprecated added in v0.23.0

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

Deprecated: Use GetGithubRepoStatusRequest.ProtoReflect.Descriptor instead.

func (*GetGithubRepoStatusRequest) GetGithubUrl added in v0.23.0

func (x *GetGithubRepoStatusRequest) GetGithubUrl() string

func (*GetGithubRepoStatusRequest) ProtoMessage added in v0.23.0

func (*GetGithubRepoStatusRequest) ProtoMessage()

func (*GetGithubRepoStatusRequest) ProtoReflect added in v0.23.0

func (*GetGithubRepoStatusRequest) Reset added in v0.23.0

func (x *GetGithubRepoStatusRequest) Reset()

func (*GetGithubRepoStatusRequest) String added in v0.23.0

func (x *GetGithubRepoStatusRequest) String() string

func (*GetGithubRepoStatusRequest) Validate added in v0.23.0

func (m *GetGithubRepoStatusRequest) Validate() error

Validate checks the field values on GetGithubRepoStatusRequest 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 (*GetGithubRepoStatusRequest) ValidateAll added in v0.23.0

func (m *GetGithubRepoStatusRequest) ValidateAll() error

ValidateAll checks the field values on GetGithubRepoStatusRequest 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 GetGithubRepoStatusRequestMultiError, or nil if none found.

type GetGithubRepoStatusRequestMultiError added in v0.23.0

type GetGithubRepoStatusRequestMultiError []error

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

func (GetGithubRepoStatusRequestMultiError) AllErrors added in v0.23.0

AllErrors returns a list of validation violation errors.

func (GetGithubRepoStatusRequestMultiError) Error added in v0.23.0

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

type GetGithubRepoStatusRequestValidationError added in v0.23.0

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

GetGithubRepoStatusRequestValidationError is the validation error returned by GetGithubRepoStatusRequest.Validate if the designated constraints aren't met.

func (GetGithubRepoStatusRequestValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (GetGithubRepoStatusRequestValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetGithubRepoStatusRequestValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetGithubRepoStatusRequestValidationError) Field added in v0.23.0

Field function returns field value.

func (GetGithubRepoStatusRequestValidationError) Key added in v0.23.0

Key function returns key value.

func (GetGithubRepoStatusRequestValidationError) Reason added in v0.23.0

Reason function returns reason value.

type GetGithubRepoStatusResponse added in v0.23.0

type GetGithubRepoStatusResponse 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 (*GetGithubRepoStatusResponse) Descriptor deprecated added in v0.23.0

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

Deprecated: Use GetGithubRepoStatusResponse.ProtoReflect.Descriptor instead.

func (*GetGithubRepoStatusResponse) GetDefaultBranch added in v0.23.0

func (x *GetGithubRepoStatusResponse) GetDefaultBranch() string

func (*GetGithubRepoStatusResponse) GetGrantAccessUrl added in v0.23.0

func (x *GetGithubRepoStatusResponse) GetGrantAccessUrl() string

func (*GetGithubRepoStatusResponse) GetHasAccess added in v0.23.0

func (x *GetGithubRepoStatusResponse) GetHasAccess() bool

func (*GetGithubRepoStatusResponse) ProtoMessage added in v0.23.0

func (*GetGithubRepoStatusResponse) ProtoMessage()

func (*GetGithubRepoStatusResponse) ProtoReflect added in v0.23.0

func (*GetGithubRepoStatusResponse) Reset added in v0.23.0

func (x *GetGithubRepoStatusResponse) Reset()

func (*GetGithubRepoStatusResponse) String added in v0.23.0

func (x *GetGithubRepoStatusResponse) String() string

func (*GetGithubRepoStatusResponse) Validate added in v0.23.0

func (m *GetGithubRepoStatusResponse) Validate() error

Validate checks the field values on GetGithubRepoStatusResponse 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 (*GetGithubRepoStatusResponse) ValidateAll added in v0.23.0

func (m *GetGithubRepoStatusResponse) ValidateAll() error

ValidateAll checks the field values on GetGithubRepoStatusResponse 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 GetGithubRepoStatusResponseMultiError, or nil if none found.

type GetGithubRepoStatusResponseMultiError added in v0.23.0

type GetGithubRepoStatusResponseMultiError []error

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

func (GetGithubRepoStatusResponseMultiError) AllErrors added in v0.23.0

AllErrors returns a list of validation violation errors.

func (GetGithubRepoStatusResponseMultiError) Error added in v0.23.0

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

type GetGithubRepoStatusResponseValidationError added in v0.23.0

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

GetGithubRepoStatusResponseValidationError is the validation error returned by GetGithubRepoStatusResponse.Validate if the designated constraints aren't met.

func (GetGithubRepoStatusResponseValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (GetGithubRepoStatusResponseValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetGithubRepoStatusResponseValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetGithubRepoStatusResponseValidationError) Field added in v0.23.0

Field function returns field value.

func (GetGithubRepoStatusResponseValidationError) Key added in v0.23.0

Key function returns key value.

func (GetGithubRepoStatusResponseValidationError) Reason added in v0.23.0

Reason function returns reason value.

type GetOrganizationRequest added in v0.23.0

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

func (*GetOrganizationRequest) Descriptor deprecated added in v0.23.0

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

Deprecated: Use GetOrganizationRequest.ProtoReflect.Descriptor instead.

func (*GetOrganizationRequest) GetName added in v0.23.0

func (x *GetOrganizationRequest) GetName() string

func (*GetOrganizationRequest) ProtoMessage added in v0.23.0

func (*GetOrganizationRequest) ProtoMessage()

func (*GetOrganizationRequest) ProtoReflect added in v0.23.0

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

func (*GetOrganizationRequest) Reset added in v0.23.0

func (x *GetOrganizationRequest) Reset()

func (*GetOrganizationRequest) String added in v0.23.0

func (x *GetOrganizationRequest) String() string

func (*GetOrganizationRequest) Validate added in v0.23.0

func (m *GetOrganizationRequest) Validate() error

Validate checks the field values on GetOrganizationRequest 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 (*GetOrganizationRequest) ValidateAll added in v0.23.0

func (m *GetOrganizationRequest) ValidateAll() error

ValidateAll checks the field values on GetOrganizationRequest 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 GetOrganizationRequestMultiError, or nil if none found.

type GetOrganizationRequestMultiError added in v0.23.0

type GetOrganizationRequestMultiError []error

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

func (GetOrganizationRequestMultiError) AllErrors added in v0.23.0

func (m GetOrganizationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetOrganizationRequestMultiError) Error added in v0.23.0

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

type GetOrganizationRequestValidationError added in v0.23.0

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

GetOrganizationRequestValidationError is the validation error returned by GetOrganizationRequest.Validate if the designated constraints aren't met.

func (GetOrganizationRequestValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (GetOrganizationRequestValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetOrganizationRequestValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetOrganizationRequestValidationError) Field added in v0.23.0

Field function returns field value.

func (GetOrganizationRequestValidationError) Key added in v0.23.0

Key function returns key value.

func (GetOrganizationRequestValidationError) Reason added in v0.23.0

Reason function returns reason value.

type GetOrganizationResponse added in v0.23.0

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

func (*GetOrganizationResponse) Descriptor deprecated added in v0.23.0

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

Deprecated: Use GetOrganizationResponse.ProtoReflect.Descriptor instead.

func (*GetOrganizationResponse) GetOrganization added in v0.23.0

func (x *GetOrganizationResponse) GetOrganization() *Organization

func (*GetOrganizationResponse) ProtoMessage added in v0.23.0

func (*GetOrganizationResponse) ProtoMessage()

func (*GetOrganizationResponse) ProtoReflect added in v0.23.0

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

func (*GetOrganizationResponse) Reset added in v0.23.0

func (x *GetOrganizationResponse) Reset()

func (*GetOrganizationResponse) String added in v0.23.0

func (x *GetOrganizationResponse) String() string

func (*GetOrganizationResponse) Validate added in v0.23.0

func (m *GetOrganizationResponse) Validate() error

Validate checks the field values on GetOrganizationResponse 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 (*GetOrganizationResponse) ValidateAll added in v0.23.0

func (m *GetOrganizationResponse) ValidateAll() error

ValidateAll checks the field values on GetOrganizationResponse 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 GetOrganizationResponseMultiError, or nil if none found.

type GetOrganizationResponseMultiError added in v0.23.0

type GetOrganizationResponseMultiError []error

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

func (GetOrganizationResponseMultiError) AllErrors added in v0.23.0

func (m GetOrganizationResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetOrganizationResponseMultiError) Error added in v0.23.0

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

type GetOrganizationResponseValidationError added in v0.23.0

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

GetOrganizationResponseValidationError is the validation error returned by GetOrganizationResponse.Validate if the designated constraints aren't met.

func (GetOrganizationResponseValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (GetOrganizationResponseValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetOrganizationResponseValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetOrganizationResponseValidationError) Field added in v0.23.0

Field function returns field value.

func (GetOrganizationResponseValidationError) Key added in v0.23.0

Key function returns key value.

func (GetOrganizationResponseValidationError) Reason added in v0.23.0

Reason function returns reason value.

type GetProjectRequest added in v0.23.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.23.0

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

Deprecated: Use GetProjectRequest.ProtoReflect.Descriptor instead.

func (*GetProjectRequest) GetName added in v0.23.0

func (x *GetProjectRequest) GetName() string

func (*GetProjectRequest) GetOrganizationName added in v0.23.0

func (x *GetProjectRequest) GetOrganizationName() string

func (*GetProjectRequest) ProtoMessage added in v0.23.0

func (*GetProjectRequest) ProtoMessage()

func (*GetProjectRequest) ProtoReflect added in v0.23.0

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

func (*GetProjectRequest) Reset added in v0.23.0

func (x *GetProjectRequest) Reset()

func (*GetProjectRequest) String added in v0.23.0

func (x *GetProjectRequest) String() string

func (*GetProjectRequest) Validate added in v0.23.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.23.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.23.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.23.0

func (m GetProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetProjectRequestMultiError) Error added in v0.23.0

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

type GetProjectRequestValidationError added in v0.23.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.23.0

Cause function returns cause value.

func (GetProjectRequestValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetProjectRequestValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetProjectRequestValidationError) Field added in v0.23.0

Field function returns field value.

func (GetProjectRequestValidationError) Key added in v0.23.0

Key function returns key value.

func (GetProjectRequestValidationError) Reason added in v0.23.0

Reason function returns reason value.

type GetProjectResponse added in v0.23.0

type GetProjectResponse struct {
	Project              *Project    `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	ProductionDeployment *Deployment `protobuf:"bytes,2,opt,name=production_deployment,json=productionDeployment,proto3" json:"production_deployment,omitempty"`
	Jwt                  string      `protobuf:"bytes,3,opt,name=jwt,proto3" json:"jwt,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use GetProjectResponse.ProtoReflect.Descriptor instead.

func (*GetProjectResponse) GetJwt added in v0.23.0

func (x *GetProjectResponse) GetJwt() string

func (*GetProjectResponse) GetProductionDeployment added in v0.23.0

func (x *GetProjectResponse) GetProductionDeployment() *Deployment

func (*GetProjectResponse) GetProject added in v0.23.0

func (x *GetProjectResponse) GetProject() *Project

func (*GetProjectResponse) ProtoMessage added in v0.23.0

func (*GetProjectResponse) ProtoMessage()

func (*GetProjectResponse) ProtoReflect added in v0.23.0

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

func (*GetProjectResponse) Reset added in v0.23.0

func (x *GetProjectResponse) Reset()

func (*GetProjectResponse) String added in v0.23.0

func (x *GetProjectResponse) String() string

func (*GetProjectResponse) Validate added in v0.23.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.23.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.23.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.23.0

func (m GetProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetProjectResponseMultiError) Error added in v0.23.0

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

type GetProjectResponseValidationError added in v0.23.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.23.0

Cause function returns cause value.

func (GetProjectResponseValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (GetProjectResponseValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (GetProjectResponseValidationError) Field added in v0.23.0

Field function returns field value.

func (GetProjectResponseValidationError) Key added in v0.23.0

Key function returns key value.

func (GetProjectResponseValidationError) Reason added in v0.23.0

Reason function returns reason value.

type ListOrganizationsRequest added in v0.23.0

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

func (*ListOrganizationsRequest) Descriptor deprecated added in v0.23.0

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

Deprecated: Use ListOrganizationsRequest.ProtoReflect.Descriptor instead.

func (*ListOrganizationsRequest) GetPageSize added in v0.23.0

func (x *ListOrganizationsRequest) GetPageSize() uint32

func (*ListOrganizationsRequest) GetPageToken added in v0.23.0

func (x *ListOrganizationsRequest) GetPageToken() string

func (*ListOrganizationsRequest) ProtoMessage added in v0.23.0

func (*ListOrganizationsRequest) ProtoMessage()

func (*ListOrganizationsRequest) ProtoReflect added in v0.23.0

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

func (*ListOrganizationsRequest) Reset added in v0.23.0

func (x *ListOrganizationsRequest) Reset()

func (*ListOrganizationsRequest) String added in v0.23.0

func (x *ListOrganizationsRequest) String() string

func (*ListOrganizationsRequest) Validate added in v0.23.0

func (m *ListOrganizationsRequest) Validate() error

Validate checks the field values on ListOrganizationsRequest 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 (*ListOrganizationsRequest) ValidateAll added in v0.23.0

func (m *ListOrganizationsRequest) ValidateAll() error

ValidateAll checks the field values on ListOrganizationsRequest 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 ListOrganizationsRequestMultiError, or nil if none found.

type ListOrganizationsRequestMultiError added in v0.23.0

type ListOrganizationsRequestMultiError []error

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

func (ListOrganizationsRequestMultiError) AllErrors added in v0.23.0

func (m ListOrganizationsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListOrganizationsRequestMultiError) Error added in v0.23.0

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

type ListOrganizationsRequestValidationError added in v0.23.0

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

ListOrganizationsRequestValidationError is the validation error returned by ListOrganizationsRequest.Validate if the designated constraints aren't met.

func (ListOrganizationsRequestValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (ListOrganizationsRequestValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (ListOrganizationsRequestValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (ListOrganizationsRequestValidationError) Field added in v0.23.0

Field function returns field value.

func (ListOrganizationsRequestValidationError) Key added in v0.23.0

Key function returns key value.

func (ListOrganizationsRequestValidationError) Reason added in v0.23.0

Reason function returns reason value.

type ListOrganizationsResponse added in v0.23.0

type ListOrganizationsResponse struct {
	Organizations []*Organization `protobuf:"bytes,1,rep,name=organizations,proto3" json:"organizations,omitempty"`
	NextPageToken string          `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListOrganizationsResponse) Descriptor deprecated added in v0.23.0

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

Deprecated: Use ListOrganizationsResponse.ProtoReflect.Descriptor instead.

func (*ListOrganizationsResponse) GetNextPageToken added in v0.23.0

func (x *ListOrganizationsResponse) GetNextPageToken() string

func (*ListOrganizationsResponse) GetOrganizations added in v0.23.0

func (x *ListOrganizationsResponse) GetOrganizations() []*Organization

func (*ListOrganizationsResponse) ProtoMessage added in v0.23.0

func (*ListOrganizationsResponse) ProtoMessage()

func (*ListOrganizationsResponse) ProtoReflect added in v0.23.0

func (*ListOrganizationsResponse) Reset added in v0.23.0

func (x *ListOrganizationsResponse) Reset()

func (*ListOrganizationsResponse) String added in v0.23.0

func (x *ListOrganizationsResponse) String() string

func (*ListOrganizationsResponse) Validate added in v0.23.0

func (m *ListOrganizationsResponse) Validate() error

Validate checks the field values on ListOrganizationsResponse 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 (*ListOrganizationsResponse) ValidateAll added in v0.23.0

func (m *ListOrganizationsResponse) ValidateAll() error

ValidateAll checks the field values on ListOrganizationsResponse 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 ListOrganizationsResponseMultiError, or nil if none found.

type ListOrganizationsResponseMultiError added in v0.23.0

type ListOrganizationsResponseMultiError []error

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

func (ListOrganizationsResponseMultiError) AllErrors added in v0.23.0

AllErrors returns a list of validation violation errors.

func (ListOrganizationsResponseMultiError) Error added in v0.23.0

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

type ListOrganizationsResponseValidationError added in v0.23.0

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

ListOrganizationsResponseValidationError is the validation error returned by ListOrganizationsResponse.Validate if the designated constraints aren't met.

func (ListOrganizationsResponseValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (ListOrganizationsResponseValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (ListOrganizationsResponseValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (ListOrganizationsResponseValidationError) Field added in v0.23.0

Field function returns field value.

func (ListOrganizationsResponseValidationError) Key added in v0.23.0

Key function returns key value.

func (ListOrganizationsResponseValidationError) Reason added in v0.23.0

Reason function returns reason value.

type ListProjectsRequest added in v0.23.0

type ListProjectsRequest struct {
	OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name,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 (*ListProjectsRequest) Descriptor deprecated added in v0.23.0

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

Deprecated: Use ListProjectsRequest.ProtoReflect.Descriptor instead.

func (*ListProjectsRequest) GetOrganizationName added in v0.23.0

func (x *ListProjectsRequest) GetOrganizationName() string

func (*ListProjectsRequest) GetPageSize added in v0.23.0

func (x *ListProjectsRequest) GetPageSize() uint32

func (*ListProjectsRequest) GetPageToken added in v0.23.0

func (x *ListProjectsRequest) GetPageToken() string

func (*ListProjectsRequest) ProtoMessage added in v0.23.0

func (*ListProjectsRequest) ProtoMessage()

func (*ListProjectsRequest) ProtoReflect added in v0.23.0

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

func (*ListProjectsRequest) Reset added in v0.23.0

func (x *ListProjectsRequest) Reset()

func (*ListProjectsRequest) String added in v0.23.0

func (x *ListProjectsRequest) String() string

func (*ListProjectsRequest) Validate added in v0.23.0

func (m *ListProjectsRequest) Validate() error

Validate checks the field values on ListProjectsRequest 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 (*ListProjectsRequest) ValidateAll added in v0.23.0

func (m *ListProjectsRequest) ValidateAll() error

ValidateAll checks the field values on ListProjectsRequest 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 ListProjectsRequestMultiError, or nil if none found.

type ListProjectsRequestMultiError added in v0.23.0

type ListProjectsRequestMultiError []error

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

func (ListProjectsRequestMultiError) AllErrors added in v0.23.0

func (m ListProjectsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListProjectsRequestMultiError) Error added in v0.23.0

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

type ListProjectsRequestValidationError added in v0.23.0

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

ListProjectsRequestValidationError is the validation error returned by ListProjectsRequest.Validate if the designated constraints aren't met.

func (ListProjectsRequestValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (ListProjectsRequestValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (ListProjectsRequestValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (ListProjectsRequestValidationError) Field added in v0.23.0

Field function returns field value.

func (ListProjectsRequestValidationError) Key added in v0.23.0

Key function returns key value.

func (ListProjectsRequestValidationError) Reason added in v0.23.0

Reason function returns reason value.

type ListProjectsResponse added in v0.23.0

type ListProjectsResponse struct {
	Projects      []*Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
	NextPageToken string     `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListProjectsResponse) Descriptor deprecated added in v0.23.0

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

Deprecated: Use ListProjectsResponse.ProtoReflect.Descriptor instead.

func (*ListProjectsResponse) GetNextPageToken added in v0.23.0

func (x *ListProjectsResponse) GetNextPageToken() string

func (*ListProjectsResponse) GetProjects added in v0.23.0

func (x *ListProjectsResponse) GetProjects() []*Project

func (*ListProjectsResponse) ProtoMessage added in v0.23.0

func (*ListProjectsResponse) ProtoMessage()

func (*ListProjectsResponse) ProtoReflect added in v0.23.0

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

func (*ListProjectsResponse) Reset added in v0.23.0

func (x *ListProjectsResponse) Reset()

func (*ListProjectsResponse) String added in v0.23.0

func (x *ListProjectsResponse) String() string

func (*ListProjectsResponse) Validate added in v0.23.0

func (m *ListProjectsResponse) Validate() error

Validate checks the field values on ListProjectsResponse 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 (*ListProjectsResponse) ValidateAll added in v0.23.0

func (m *ListProjectsResponse) ValidateAll() error

ValidateAll checks the field values on ListProjectsResponse 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 ListProjectsResponseMultiError, or nil if none found.

type ListProjectsResponseMultiError added in v0.23.0

type ListProjectsResponseMultiError []error

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

func (ListProjectsResponseMultiError) AllErrors added in v0.23.0

func (m ListProjectsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListProjectsResponseMultiError) Error added in v0.23.0

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

type ListProjectsResponseValidationError added in v0.23.0

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

ListProjectsResponseValidationError is the validation error returned by ListProjectsResponse.Validate if the designated constraints aren't met.

func (ListProjectsResponseValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (ListProjectsResponseValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (ListProjectsResponseValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (ListProjectsResponseValidationError) Field added in v0.23.0

Field function returns field value.

func (ListProjectsResponseValidationError) Key added in v0.23.0

Key function returns key value.

func (ListProjectsResponseValidationError) Reason added in v0.23.0

Reason function returns reason value.

type Organization

type Organization struct {
	Id          string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string                 `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // Globally unique
	Description string                 `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	CreatedOn   *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=created_on,json=createdOn,proto3" json:"created_on,omitempty"`
	UpdatedOn   *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=updated_on,json=updatedOn,proto3" json:"updated_on,omitempty"`
	// contains filtered or unexported fields
}

func (*Organization) Descriptor deprecated

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

Deprecated: Use Organization.ProtoReflect.Descriptor instead.

func (*Organization) GetCreatedOn

func (x *Organization) GetCreatedOn() *timestamppb.Timestamp

func (*Organization) GetDescription

func (x *Organization) GetDescription() string

func (*Organization) GetId

func (x *Organization) GetId() string

func (*Organization) GetName

func (x *Organization) GetName() string

func (*Organization) GetUpdatedOn

func (x *Organization) GetUpdatedOn() *timestamppb.Timestamp

func (*Organization) ProtoMessage

func (*Organization) ProtoMessage()

func (*Organization) ProtoReflect

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

func (*Organization) Reset

func (x *Organization) Reset()

func (*Organization) String

func (x *Organization) String() string

func (*Organization) Validate

func (m *Organization) Validate() error

Validate checks the field values on Organization 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 (*Organization) ValidateAll

func (m *Organization) ValidateAll() error

ValidateAll checks the field values on Organization 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 OrganizationMultiError, or nil if none found.

type OrganizationMultiError

type OrganizationMultiError []error

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

func (OrganizationMultiError) AllErrors

func (m OrganizationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OrganizationMultiError) Error

func (m OrganizationMultiError) Error() string

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

type OrganizationValidationError

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

OrganizationValidationError is the validation error returned by Organization.Validate if the designated constraints aren't met.

func (OrganizationValidationError) Cause

Cause function returns cause value.

func (OrganizationValidationError) Error

Error satisfies the builtin error interface

func (OrganizationValidationError) ErrorName

func (e OrganizationValidationError) ErrorName() string

ErrorName returns error name.

func (OrganizationValidationError) Field

Field function returns field value.

func (OrganizationValidationError) Key

Key function returns key value.

func (OrganizationValidationError) Reason

Reason function returns reason value.

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 {
	Version string                 `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	Time    *timestamppb.Timestamp `protobuf:"bytes,2,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) GetVersion

func (x *PingResponse) GetVersion() string

func (*PingResponse) ProtoMessage

func (*PingResponse) ProtoMessage()

func (*PingResponse) ProtoReflect

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

func (*PingResponse) Reset

func (x *PingResponse) Reset()

func (*PingResponse) String

func (x *PingResponse) String() string

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 Project

type Project struct {
	Id                     string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                   string                 `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // Unique in organization
	Description            string                 `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Public                 bool                   `protobuf:"varint,4,opt,name=public,proto3" json:"public,omitempty"`
	ProductionSlots        int64                  `protobuf:"varint,5,opt,name=production_slots,json=productionSlots,proto3" json:"production_slots,omitempty"`
	ProductionBranch       string                 `protobuf:"bytes,6,opt,name=production_branch,json=productionBranch,proto3" json:"production_branch,omitempty"`
	GithubUrl              string                 `protobuf:"bytes,7,opt,name=github_url,json=githubUrl,proto3" json:"github_url,omitempty"`
	ProductionDeploymentId string                 `` /* 129-byte string literal not displayed */
	CreatedOn              *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=created_on,json=createdOn,proto3" json:"created_on,omitempty"`
	UpdatedOn              *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=updated_on,json=updatedOn,proto3" json:"updated_on,omitempty"`
	Variables              map[string]string      `` /* 160-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Project) Descriptor deprecated

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

Deprecated: Use Project.ProtoReflect.Descriptor instead.

func (*Project) GetCreatedOn

func (x *Project) GetCreatedOn() *timestamppb.Timestamp

func (*Project) GetDescription

func (x *Project) GetDescription() string

func (*Project) GetGithubUrl added in v0.23.0

func (x *Project) GetGithubUrl() string

func (*Project) GetId

func (x *Project) GetId() string

func (*Project) GetName

func (x *Project) GetName() string

func (*Project) GetProductionBranch added in v0.23.0

func (x *Project) GetProductionBranch() string

func (*Project) GetProductionDeploymentId added in v0.23.0

func (x *Project) GetProductionDeploymentId() string

func (*Project) GetProductionSlots added in v0.23.0

func (x *Project) GetProductionSlots() int64

func (*Project) GetPublic added in v0.23.0

func (x *Project) GetPublic() bool

func (*Project) GetUpdatedOn

func (x *Project) GetUpdatedOn() *timestamppb.Timestamp

func (*Project) GetVariables added in v0.23.0

func (x *Project) GetVariables() map[string]string

func (*Project) ProtoMessage

func (*Project) ProtoMessage()

func (*Project) ProtoReflect

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

func (*Project) Reset

func (x *Project) Reset()

func (*Project) String

func (x *Project) String() string

func (*Project) Validate

func (m *Project) Validate() error

Validate checks the field values on Project 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 (*Project) ValidateAll

func (m *Project) ValidateAll() error

ValidateAll checks the field values on Project 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 ProjectMultiError, or nil if none found.

type ProjectMultiError

type ProjectMultiError []error

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

func (ProjectMultiError) AllErrors

func (m ProjectMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProjectMultiError) Error

func (m ProjectMultiError) Error() string

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

type ProjectValidationError

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

ProjectValidationError is the validation error returned by Project.Validate if the designated constraints aren't met.

func (ProjectValidationError) Cause

func (e ProjectValidationError) Cause() error

Cause function returns cause value.

func (ProjectValidationError) Error

func (e ProjectValidationError) Error() string

Error satisfies the builtin error interface

func (ProjectValidationError) ErrorName

func (e ProjectValidationError) ErrorName() string

ErrorName returns error name.

func (ProjectValidationError) Field

func (e ProjectValidationError) Field() string

Field function returns field value.

func (ProjectValidationError) Key

func (e ProjectValidationError) Key() bool

Key function returns key value.

func (ProjectValidationError) Reason

func (e ProjectValidationError) Reason() string

Reason function returns reason value.

type RevokeCurrentAuthTokenRequest added in v0.23.0

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

func (*RevokeCurrentAuthTokenRequest) Descriptor deprecated added in v0.23.0

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

Deprecated: Use RevokeCurrentAuthTokenRequest.ProtoReflect.Descriptor instead.

func (*RevokeCurrentAuthTokenRequest) ProtoMessage added in v0.23.0

func (*RevokeCurrentAuthTokenRequest) ProtoMessage()

func (*RevokeCurrentAuthTokenRequest) ProtoReflect added in v0.23.0

func (*RevokeCurrentAuthTokenRequest) Reset added in v0.23.0

func (x *RevokeCurrentAuthTokenRequest) Reset()

func (*RevokeCurrentAuthTokenRequest) String added in v0.23.0

func (*RevokeCurrentAuthTokenRequest) Validate added in v0.23.0

func (m *RevokeCurrentAuthTokenRequest) Validate() error

Validate checks the field values on RevokeCurrentAuthTokenRequest 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 (*RevokeCurrentAuthTokenRequest) ValidateAll added in v0.23.0

func (m *RevokeCurrentAuthTokenRequest) ValidateAll() error

ValidateAll checks the field values on RevokeCurrentAuthTokenRequest 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 RevokeCurrentAuthTokenRequestMultiError, or nil if none found.

type RevokeCurrentAuthTokenRequestMultiError added in v0.23.0

type RevokeCurrentAuthTokenRequestMultiError []error

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

func (RevokeCurrentAuthTokenRequestMultiError) AllErrors added in v0.23.0

AllErrors returns a list of validation violation errors.

func (RevokeCurrentAuthTokenRequestMultiError) Error added in v0.23.0

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

type RevokeCurrentAuthTokenRequestValidationError added in v0.23.0

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

RevokeCurrentAuthTokenRequestValidationError is the validation error returned by RevokeCurrentAuthTokenRequest.Validate if the designated constraints aren't met.

func (RevokeCurrentAuthTokenRequestValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (RevokeCurrentAuthTokenRequestValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (RevokeCurrentAuthTokenRequestValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (RevokeCurrentAuthTokenRequestValidationError) Field added in v0.23.0

Field function returns field value.

func (RevokeCurrentAuthTokenRequestValidationError) Key added in v0.23.0

Key function returns key value.

func (RevokeCurrentAuthTokenRequestValidationError) Reason added in v0.23.0

Reason function returns reason value.

type RevokeCurrentAuthTokenResponse added in v0.23.0

type RevokeCurrentAuthTokenResponse struct {
	TokenId string `protobuf:"bytes,1,opt,name=token_id,json=tokenId,proto3" json:"token_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeCurrentAuthTokenResponse) Descriptor deprecated added in v0.23.0

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

Deprecated: Use RevokeCurrentAuthTokenResponse.ProtoReflect.Descriptor instead.

func (*RevokeCurrentAuthTokenResponse) GetTokenId added in v0.23.0

func (x *RevokeCurrentAuthTokenResponse) GetTokenId() string

func (*RevokeCurrentAuthTokenResponse) ProtoMessage added in v0.23.0

func (*RevokeCurrentAuthTokenResponse) ProtoMessage()

func (*RevokeCurrentAuthTokenResponse) ProtoReflect added in v0.23.0

func (*RevokeCurrentAuthTokenResponse) Reset added in v0.23.0

func (x *RevokeCurrentAuthTokenResponse) Reset()

func (*RevokeCurrentAuthTokenResponse) String added in v0.23.0

func (*RevokeCurrentAuthTokenResponse) Validate added in v0.23.0

func (m *RevokeCurrentAuthTokenResponse) Validate() error

Validate checks the field values on RevokeCurrentAuthTokenResponse 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 (*RevokeCurrentAuthTokenResponse) ValidateAll added in v0.23.0

func (m *RevokeCurrentAuthTokenResponse) ValidateAll() error

ValidateAll checks the field values on RevokeCurrentAuthTokenResponse 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 RevokeCurrentAuthTokenResponseMultiError, or nil if none found.

type RevokeCurrentAuthTokenResponseMultiError added in v0.23.0

type RevokeCurrentAuthTokenResponseMultiError []error

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

func (RevokeCurrentAuthTokenResponseMultiError) AllErrors added in v0.23.0

AllErrors returns a list of validation violation errors.

func (RevokeCurrentAuthTokenResponseMultiError) Error added in v0.23.0

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

type RevokeCurrentAuthTokenResponseValidationError added in v0.23.0

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

RevokeCurrentAuthTokenResponseValidationError is the validation error returned by RevokeCurrentAuthTokenResponse.Validate if the designated constraints aren't met.

func (RevokeCurrentAuthTokenResponseValidationError) Cause added in v0.23.0

Cause function returns cause value.

func (RevokeCurrentAuthTokenResponseValidationError) Error added in v0.23.0

Error satisfies the builtin error interface

func (RevokeCurrentAuthTokenResponseValidationError) ErrorName added in v0.23.0

ErrorName returns error name.

func (RevokeCurrentAuthTokenResponseValidationError) Field added in v0.23.0

Field function returns field value.

func (RevokeCurrentAuthTokenResponseValidationError) Key added in v0.23.0

Key function returns key value.

func (RevokeCurrentAuthTokenResponseValidationError) Reason added in v0.23.0

Reason function returns reason value.

type UnimplementedAdminServiceServer

type UnimplementedAdminServiceServer struct {
}

UnimplementedAdminServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedAdminServiceServer) CreateOrganization

func (UnimplementedAdminServiceServer) CreateProject

func (UnimplementedAdminServiceServer) DeleteOrganization

func (UnimplementedAdminServiceServer) DeleteProject

func (UnimplementedAdminServiceServer) GetCurrentUser added in v0.23.0

func (UnimplementedAdminServiceServer) GetGithubRepoStatus added in v0.23.0

func (UnimplementedAdminServiceServer) GetOrganization added in v0.23.0

func (UnimplementedAdminServiceServer) GetProject added in v0.23.0

func (UnimplementedAdminServiceServer) ListOrganizations added in v0.23.0

func (UnimplementedAdminServiceServer) ListProjects added in v0.23.0

func (UnimplementedAdminServiceServer) Ping

func (UnimplementedAdminServiceServer) RevokeCurrentAuthToken added in v0.23.0

func (UnimplementedAdminServiceServer) UpdateOrganization

func (UnimplementedAdminServiceServer) UpdateProject

type UnsafeAdminServiceServer

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

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

type UpdateOrganizationRequest

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

func (*UpdateOrganizationRequest) Descriptor deprecated

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

Deprecated: Use UpdateOrganizationRequest.ProtoReflect.Descriptor instead.

func (*UpdateOrganizationRequest) GetDescription

func (x *UpdateOrganizationRequest) GetDescription() string

func (*UpdateOrganizationRequest) GetName

func (x *UpdateOrganizationRequest) GetName() string

func (*UpdateOrganizationRequest) ProtoMessage

func (*UpdateOrganizationRequest) ProtoMessage()

func (*UpdateOrganizationRequest) ProtoReflect

func (*UpdateOrganizationRequest) Reset

func (x *UpdateOrganizationRequest) Reset()

func (*UpdateOrganizationRequest) String

func (x *UpdateOrganizationRequest) String() string

func (*UpdateOrganizationRequest) Validate

func (m *UpdateOrganizationRequest) Validate() error

Validate checks the field values on UpdateOrganizationRequest 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 (*UpdateOrganizationRequest) ValidateAll

func (m *UpdateOrganizationRequest) ValidateAll() error

ValidateAll checks the field values on UpdateOrganizationRequest 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 UpdateOrganizationRequestMultiError, or nil if none found.

type UpdateOrganizationRequestMultiError

type UpdateOrganizationRequestMultiError []error

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

func (UpdateOrganizationRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (UpdateOrganizationRequestMultiError) Error

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

type UpdateOrganizationRequestValidationError

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

UpdateOrganizationRequestValidationError is the validation error returned by UpdateOrganizationRequest.Validate if the designated constraints aren't met.

func (UpdateOrganizationRequestValidationError) Cause

Cause function returns cause value.

func (UpdateOrganizationRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateOrganizationRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateOrganizationRequestValidationError) Field

Field function returns field value.

func (UpdateOrganizationRequestValidationError) Key

Key function returns key value.

func (UpdateOrganizationRequestValidationError) Reason

Reason function returns reason value.

type UpdateOrganizationResponse

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

func (*UpdateOrganizationResponse) Descriptor deprecated

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

Deprecated: Use UpdateOrganizationResponse.ProtoReflect.Descriptor instead.

func (*UpdateOrganizationResponse) GetOrganization

func (x *UpdateOrganizationResponse) GetOrganization() *Organization

func (*UpdateOrganizationResponse) ProtoMessage

func (*UpdateOrganizationResponse) ProtoMessage()

func (*UpdateOrganizationResponse) ProtoReflect

func (*UpdateOrganizationResponse) Reset

func (x *UpdateOrganizationResponse) Reset()

func (*UpdateOrganizationResponse) String

func (x *UpdateOrganizationResponse) String() string

func (*UpdateOrganizationResponse) Validate

func (m *UpdateOrganizationResponse) Validate() error

Validate checks the field values on UpdateOrganizationResponse 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 (*UpdateOrganizationResponse) ValidateAll

func (m *UpdateOrganizationResponse) ValidateAll() error

ValidateAll checks the field values on UpdateOrganizationResponse 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 UpdateOrganizationResponseMultiError, or nil if none found.

type UpdateOrganizationResponseMultiError

type UpdateOrganizationResponseMultiError []error

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

func (UpdateOrganizationResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (UpdateOrganizationResponseMultiError) Error

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

type UpdateOrganizationResponseValidationError

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

UpdateOrganizationResponseValidationError is the validation error returned by UpdateOrganizationResponse.Validate if the designated constraints aren't met.

func (UpdateOrganizationResponseValidationError) Cause

Cause function returns cause value.

func (UpdateOrganizationResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateOrganizationResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateOrganizationResponseValidationError) Field

Field function returns field value.

func (UpdateOrganizationResponseValidationError) Key

Key function returns key value.

func (UpdateOrganizationResponseValidationError) Reason

Reason function returns reason value.

type UpdateProjectRequest

type UpdateProjectRequest 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"`
	Description      string            `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Public           bool              `protobuf:"varint,4,opt,name=public,proto3" json:"public,omitempty"`
	ProductionBranch string            `protobuf:"bytes,5,opt,name=production_branch,json=productionBranch,proto3" json:"production_branch,omitempty"`
	GithubUrl        string            `protobuf:"bytes,6,opt,name=github_url,json=githubUrl,proto3" json:"github_url,omitempty"`
	Variables        map[string]string `` /* 159-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UpdateProjectRequest) Descriptor deprecated

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

Deprecated: Use UpdateProjectRequest.ProtoReflect.Descriptor instead.

func (*UpdateProjectRequest) GetDescription

func (x *UpdateProjectRequest) GetDescription() string

func (*UpdateProjectRequest) GetGithubUrl added in v0.23.0

func (x *UpdateProjectRequest) GetGithubUrl() string

func (*UpdateProjectRequest) GetName

func (x *UpdateProjectRequest) GetName() string

func (*UpdateProjectRequest) GetOrganizationName added in v0.23.0

func (x *UpdateProjectRequest) GetOrganizationName() string

func (*UpdateProjectRequest) GetProductionBranch added in v0.23.0

func (x *UpdateProjectRequest) GetProductionBranch() string

func (*UpdateProjectRequest) GetPublic added in v0.23.0

func (x *UpdateProjectRequest) GetPublic() bool

func (*UpdateProjectRequest) GetVariables added in v0.23.0

func (x *UpdateProjectRequest) GetVariables() map[string]string

func (*UpdateProjectRequest) ProtoMessage

func (*UpdateProjectRequest) ProtoMessage()

func (*UpdateProjectRequest) ProtoReflect

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

func (*UpdateProjectRequest) Reset

func (x *UpdateProjectRequest) Reset()

func (*UpdateProjectRequest) String

func (x *UpdateProjectRequest) String() string

func (*UpdateProjectRequest) Validate

func (m *UpdateProjectRequest) Validate() error

Validate checks the field values on UpdateProjectRequest 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 (*UpdateProjectRequest) ValidateAll

func (m *UpdateProjectRequest) ValidateAll() error

ValidateAll checks the field values on UpdateProjectRequest 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 UpdateProjectRequestMultiError, or nil if none found.

type UpdateProjectRequestMultiError

type UpdateProjectRequestMultiError []error

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

func (UpdateProjectRequestMultiError) AllErrors

func (m UpdateProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateProjectRequestMultiError) Error

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

type UpdateProjectRequestValidationError

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

UpdateProjectRequestValidationError is the validation error returned by UpdateProjectRequest.Validate if the designated constraints aren't met.

func (UpdateProjectRequestValidationError) Cause

Cause function returns cause value.

func (UpdateProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateProjectRequestValidationError) Field

Field function returns field value.

func (UpdateProjectRequestValidationError) Key

Key function returns key value.

func (UpdateProjectRequestValidationError) Reason

Reason function returns reason value.

type UpdateProjectResponse

type UpdateProjectResponse struct {
	Project *Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateProjectResponse) Descriptor deprecated

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

Deprecated: Use UpdateProjectResponse.ProtoReflect.Descriptor instead.

func (*UpdateProjectResponse) GetProject

func (x *UpdateProjectResponse) GetProject() *Project

func (*UpdateProjectResponse) ProtoMessage

func (*UpdateProjectResponse) ProtoMessage()

func (*UpdateProjectResponse) ProtoReflect

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

func (*UpdateProjectResponse) Reset

func (x *UpdateProjectResponse) Reset()

func (*UpdateProjectResponse) String

func (x *UpdateProjectResponse) String() string

func (*UpdateProjectResponse) Validate

func (m *UpdateProjectResponse) Validate() error

Validate checks the field values on UpdateProjectResponse 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 (*UpdateProjectResponse) ValidateAll

func (m *UpdateProjectResponse) ValidateAll() error

ValidateAll checks the field values on UpdateProjectResponse 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 UpdateProjectResponseMultiError, or nil if none found.

type UpdateProjectResponseMultiError

type UpdateProjectResponseMultiError []error

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

func (UpdateProjectResponseMultiError) AllErrors

func (m UpdateProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateProjectResponseMultiError) Error

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

type UpdateProjectResponseValidationError

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

UpdateProjectResponseValidationError is the validation error returned by UpdateProjectResponse.Validate if the designated constraints aren't met.

func (UpdateProjectResponseValidationError) Cause

Cause function returns cause value.

func (UpdateProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateProjectResponseValidationError) Field

Field function returns field value.

func (UpdateProjectResponseValidationError) Key

Key function returns key value.

func (UpdateProjectResponseValidationError) Reason

Reason function returns reason value.

type User added in v0.23.0

type User struct {
	Id          string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Email       string                 `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	DisplayName string                 `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	PhotoUrl    string                 `protobuf:"bytes,4,opt,name=photo_url,json=photoUrl,proto3" json:"photo_url,omitempty"`
	CreatedOn   *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=created_on,json=createdOn,proto3" json:"created_on,omitempty"`
	UpdatedOn   *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=updated_on,json=updatedOn,proto3" json:"updated_on,omitempty"`
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated added in v0.23.0

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetCreatedOn added in v0.23.0

func (x *User) GetCreatedOn() *timestamppb.Timestamp

func (*User) GetDisplayName added in v0.23.0

func (x *User) GetDisplayName() string

func (*User) GetEmail added in v0.23.0

func (x *User) GetEmail() string

func (*User) GetId added in v0.23.0

func (x *User) GetId() string

func (*User) GetPhotoUrl added in v0.23.0

func (x *User) GetPhotoUrl() string

func (*User) GetUpdatedOn added in v0.23.0

func (x *User) GetUpdatedOn() *timestamppb.Timestamp

func (*User) ProtoMessage added in v0.23.0

func (*User) ProtoMessage()

func (*User) ProtoReflect added in v0.23.0

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

func (*User) Reset added in v0.23.0

func (x *User) Reset()

func (*User) String added in v0.23.0

func (x *User) String() string

func (*User) Validate added in v0.23.0

func (m *User) Validate() error

Validate checks the field values on User 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 (*User) ValidateAll added in v0.23.0

func (m *User) ValidateAll() error

ValidateAll checks the field values on User 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 UserMultiError, or nil if none found.

type UserMultiError added in v0.23.0

type UserMultiError []error

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

func (UserMultiError) AllErrors added in v0.23.0

func (m UserMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserMultiError) Error added in v0.23.0

func (m UserMultiError) Error() string

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

type UserValidationError added in v0.23.0

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

UserValidationError is the validation error returned by User.Validate if the designated constraints aren't met.

func (UserValidationError) Cause added in v0.23.0

func (e UserValidationError) Cause() error

Cause function returns cause value.

func (UserValidationError) Error added in v0.23.0

func (e UserValidationError) Error() string

Error satisfies the builtin error interface

func (UserValidationError) ErrorName added in v0.23.0

func (e UserValidationError) ErrorName() string

ErrorName returns error name.

func (UserValidationError) Field added in v0.23.0

func (e UserValidationError) Field() string

Field function returns field value.

func (UserValidationError) Key added in v0.23.0

func (e UserValidationError) Key() bool

Key function returns key value.

func (UserValidationError) Reason added in v0.23.0

func (e UserValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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