adminv1

package
v0.22.0 Latest Latest
Warning

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

Go to latest
Published: Mar 3, 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 AdminService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "rill.admin.v1.AdminService",
	HandlerType: (*AdminServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Ping",
			Handler:    _AdminService_Ping_Handler,
		},
		{
			MethodName: "FindOrganizations",
			Handler:    _AdminService_FindOrganizations_Handler,
		},
		{
			MethodName: "FindOrganization",
			Handler:    _AdminService_FindOrganization_Handler,
		},
		{
			MethodName: "CreateOrganization",
			Handler:    _AdminService_CreateOrganization_Handler,
		},
		{
			MethodName: "DeleteOrganization",
			Handler:    _AdminService_DeleteOrganization_Handler,
		},
		{
			MethodName: "UpdateOrganization",
			Handler:    _AdminService_UpdateOrganization_Handler,
		},
		{
			MethodName: "FindProjects",
			Handler:    _AdminService_FindProjects_Handler,
		},
		{
			MethodName: "FindProject",
			Handler:    _AdminService_FindProject_Handler,
		},
		{
			MethodName: "CreateProject",
			Handler:    _AdminService_CreateProject_Handler,
		},
		{
			MethodName: "DeleteProject",
			Handler:    _AdminService_DeleteProject_Handler,
		},
		{
			MethodName: "UpdateProject",
			Handler:    _AdminService_UpdateProject_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 admin
	Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error)
	// findOrganizations lists all the organizations currently managed by the admin
	FindOrganizations(ctx context.Context, in *FindOrganizationsRequest, opts ...grpc.CallOption) (*FindOrganizationsResponse, error)
	// FindOrganization returns information about a specific organization
	FindOrganization(ctx context.Context, in *FindOrganizationRequest, opts ...grpc.CallOption) (*FindOrganizationResponse, 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)
	// FindProjects lists all the projects currently available for given organizations
	FindProjects(ctx context.Context, in *FindProjectsRequest, opts ...grpc.CallOption) (*FindProjectsResponse, error)
	// FindProject returns information about a specific project
	FindProject(ctx context.Context, in *FindProjectRequest, opts ...grpc.CallOption) (*FindProjectResponse, 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 update a project
	UpdateProject(ctx context.Context, in *UpdateProjectRequest, opts ...grpc.CallOption) (*UpdateProjectResponse, 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 admin
	Ping(context.Context, *PingRequest) (*PingResponse, error)
	// findOrganizations lists all the organizations currently managed by the admin
	FindOrganizations(context.Context, *FindOrganizationsRequest) (*FindOrganizationsResponse, error)
	// FindOrganization returns information about a specific organization
	FindOrganization(context.Context, *FindOrganizationRequest) (*FindOrganizationResponse, 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)
	// FindProjects lists all the projects currently available for given organizations
	FindProjects(context.Context, *FindProjectsRequest) (*FindProjectsResponse, error)
	// FindProject returns information about a specific project
	FindProject(context.Context, *FindProjectRequest) (*FindProjectResponse, error)
	// CreateProject creates a new project
	CreateProject(context.Context, *CreateProjectRequest) (*CreateProjectResponse, error)
	// DeleteProject deletes an project
	DeleteProject(context.Context, *DeleteProjectRequest) (*DeleteProjectResponse, error)
	// UpdateProject update a project
	UpdateProject(context.Context, *UpdateProjectRequest) (*UpdateProjectResponse, 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"`
	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 (*CreateOrganizationRequest) Descriptor deprecated

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

Deprecated: Use CreateOrganizationRequest.ProtoReflect.Descriptor instead.

func (*CreateOrganizationRequest) GetCreatedOn

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

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) GetUpdatedOn

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

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
}

Response message for AdminService.CreateOrganization

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 {
	Organization string                 `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	Id           string                 `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Name         string                 `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Description  string                 `protobuf:"bytes,4,opt,name=description,proto3" json:"description,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 (*CreateProjectRequest) Descriptor deprecated

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

Deprecated: Use CreateProjectRequest.ProtoReflect.Descriptor instead.

func (*CreateProjectRequest) GetCreatedOn

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

func (*CreateProjectRequest) GetDescription

func (x *CreateProjectRequest) GetDescription() string

func (*CreateProjectRequest) GetId

func (x *CreateProjectRequest) GetId() string

func (*CreateProjectRequest) GetName

func (x *CreateProjectRequest) GetName() string

func (*CreateProjectRequest) GetOrganization

func (x *CreateProjectRequest) GetOrganization() string

func (*CreateProjectRequest) GetUpdatedOn

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

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
}

Response message for AdminService.CreateOrganization

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
}

Request message for AdminService.DeleteOrganization

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 {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Response message for AdminService.DeleteOrganization

func (*DeleteOrganizationResponse) Descriptor deprecated

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

Deprecated: Use DeleteOrganizationResponse.ProtoReflect.Descriptor instead.

func (*DeleteOrganizationResponse) GetName

func (x *DeleteOrganizationResponse) GetName() string

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 {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	Name         string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Request message for AdminService.DeleteOrganization

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) GetOrganization

func (x *DeleteProjectRequest) GetOrganization() 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 {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Response message for AdminService.DeleteOrganization

func (*DeleteProjectResponse) Descriptor deprecated

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

Deprecated: Use DeleteProjectResponse.ProtoReflect.Descriptor instead.

func (*DeleteProjectResponse) GetName

func (x *DeleteProjectResponse) GetName() string

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 FindOrganizationRequest

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

Request message for AdminService.GetInstance

func (*FindOrganizationRequest) Descriptor deprecated

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

Deprecated: Use FindOrganizationRequest.ProtoReflect.Descriptor instead.

func (*FindOrganizationRequest) GetName

func (x *FindOrganizationRequest) GetName() string

func (*FindOrganizationRequest) ProtoMessage

func (*FindOrganizationRequest) ProtoMessage()

func (*FindOrganizationRequest) ProtoReflect

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

func (*FindOrganizationRequest) Reset

func (x *FindOrganizationRequest) Reset()

func (*FindOrganizationRequest) String

func (x *FindOrganizationRequest) String() string

func (*FindOrganizationRequest) Validate

func (m *FindOrganizationRequest) Validate() error

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

func (m *FindOrganizationRequest) ValidateAll() error

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

type FindOrganizationRequestMultiError

type FindOrganizationRequestMultiError []error

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

func (FindOrganizationRequestMultiError) AllErrors

func (m FindOrganizationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindOrganizationRequestMultiError) Error

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

type FindOrganizationRequestValidationError

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

FindOrganizationRequestValidationError is the validation error returned by FindOrganizationRequest.Validate if the designated constraints aren't met.

func (FindOrganizationRequestValidationError) Cause

Cause function returns cause value.

func (FindOrganizationRequestValidationError) Error

Error satisfies the builtin error interface

func (FindOrganizationRequestValidationError) ErrorName

ErrorName returns error name.

func (FindOrganizationRequestValidationError) Field

Field function returns field value.

func (FindOrganizationRequestValidationError) Key

Key function returns key value.

func (FindOrganizationRequestValidationError) Reason

Reason function returns reason value.

type FindOrganizationResponse

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

Response message for AdminService.GetInstance

func (*FindOrganizationResponse) Descriptor deprecated

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

Deprecated: Use FindOrganizationResponse.ProtoReflect.Descriptor instead.

func (*FindOrganizationResponse) GetOrganization

func (x *FindOrganizationResponse) GetOrganization() *Organization

func (*FindOrganizationResponse) ProtoMessage

func (*FindOrganizationResponse) ProtoMessage()

func (*FindOrganizationResponse) ProtoReflect

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

func (*FindOrganizationResponse) Reset

func (x *FindOrganizationResponse) Reset()

func (*FindOrganizationResponse) String

func (x *FindOrganizationResponse) String() string

func (*FindOrganizationResponse) Validate

func (m *FindOrganizationResponse) Validate() error

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

func (m *FindOrganizationResponse) ValidateAll() error

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

type FindOrganizationResponseMultiError

type FindOrganizationResponseMultiError []error

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

func (FindOrganizationResponseMultiError) AllErrors

func (m FindOrganizationResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindOrganizationResponseMultiError) Error

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

type FindOrganizationResponseValidationError

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

FindOrganizationResponseValidationError is the validation error returned by FindOrganizationResponse.Validate if the designated constraints aren't met.

func (FindOrganizationResponseValidationError) Cause

Cause function returns cause value.

func (FindOrganizationResponseValidationError) Error

Error satisfies the builtin error interface

func (FindOrganizationResponseValidationError) ErrorName

ErrorName returns error name.

func (FindOrganizationResponseValidationError) Field

Field function returns field value.

func (FindOrganizationResponseValidationError) Key

Key function returns key value.

func (FindOrganizationResponseValidationError) Reason

Reason function returns reason value.

type FindOrganizationsRequest

type FindOrganizationsRequest 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
}

Request message for AdminService.FindOrganizations

func (*FindOrganizationsRequest) Descriptor deprecated

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

Deprecated: Use FindOrganizationsRequest.ProtoReflect.Descriptor instead.

func (*FindOrganizationsRequest) GetPageSize

func (x *FindOrganizationsRequest) GetPageSize() uint32

func (*FindOrganizationsRequest) GetPageToken

func (x *FindOrganizationsRequest) GetPageToken() string

func (*FindOrganizationsRequest) ProtoMessage

func (*FindOrganizationsRequest) ProtoMessage()

func (*FindOrganizationsRequest) ProtoReflect

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

func (*FindOrganizationsRequest) Reset

func (x *FindOrganizationsRequest) Reset()

func (*FindOrganizationsRequest) String

func (x *FindOrganizationsRequest) String() string

func (*FindOrganizationsRequest) Validate

func (m *FindOrganizationsRequest) Validate() error

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

func (m *FindOrganizationsRequest) ValidateAll() error

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

type FindOrganizationsRequestMultiError

type FindOrganizationsRequestMultiError []error

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

func (FindOrganizationsRequestMultiError) AllErrors

func (m FindOrganizationsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindOrganizationsRequestMultiError) Error

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

type FindOrganizationsRequestValidationError

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

FindOrganizationsRequestValidationError is the validation error returned by FindOrganizationsRequest.Validate if the designated constraints aren't met.

func (FindOrganizationsRequestValidationError) Cause

Cause function returns cause value.

func (FindOrganizationsRequestValidationError) Error

Error satisfies the builtin error interface

func (FindOrganizationsRequestValidationError) ErrorName

ErrorName returns error name.

func (FindOrganizationsRequestValidationError) Field

Field function returns field value.

func (FindOrganizationsRequestValidationError) Key

Key function returns key value.

func (FindOrganizationsRequestValidationError) Reason

Reason function returns reason value.

type FindOrganizationsResponse

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

Response message for AdminService.FindOrganizations

func (*FindOrganizationsResponse) Descriptor deprecated

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

Deprecated: Use FindOrganizationsResponse.ProtoReflect.Descriptor instead.

func (*FindOrganizationsResponse) GetNextPageToken

func (x *FindOrganizationsResponse) GetNextPageToken() string

func (*FindOrganizationsResponse) GetOrganization

func (x *FindOrganizationsResponse) GetOrganization() []*Organization

func (*FindOrganizationsResponse) ProtoMessage

func (*FindOrganizationsResponse) ProtoMessage()

func (*FindOrganizationsResponse) ProtoReflect

func (*FindOrganizationsResponse) Reset

func (x *FindOrganizationsResponse) Reset()

func (*FindOrganizationsResponse) String

func (x *FindOrganizationsResponse) String() string

func (*FindOrganizationsResponse) Validate

func (m *FindOrganizationsResponse) Validate() error

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

func (m *FindOrganizationsResponse) ValidateAll() error

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

type FindOrganizationsResponseMultiError

type FindOrganizationsResponseMultiError []error

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

func (FindOrganizationsResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (FindOrganizationsResponseMultiError) Error

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

type FindOrganizationsResponseValidationError

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

FindOrganizationsResponseValidationError is the validation error returned by FindOrganizationsResponse.Validate if the designated constraints aren't met.

func (FindOrganizationsResponseValidationError) Cause

Cause function returns cause value.

func (FindOrganizationsResponseValidationError) Error

Error satisfies the builtin error interface

func (FindOrganizationsResponseValidationError) ErrorName

ErrorName returns error name.

func (FindOrganizationsResponseValidationError) Field

Field function returns field value.

func (FindOrganizationsResponseValidationError) Key

Key function returns key value.

func (FindOrganizationsResponseValidationError) Reason

Reason function returns reason value.

type FindProjectRequest

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

Request message for AdminService.FindProject

func (*FindProjectRequest) Descriptor deprecated

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

Deprecated: Use FindProjectRequest.ProtoReflect.Descriptor instead.

func (*FindProjectRequest) GetName

func (x *FindProjectRequest) GetName() string

func (*FindProjectRequest) GetOrganization

func (x *FindProjectRequest) GetOrganization() string

func (*FindProjectRequest) ProtoMessage

func (*FindProjectRequest) ProtoMessage()

func (*FindProjectRequest) ProtoReflect

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

func (*FindProjectRequest) Reset

func (x *FindProjectRequest) Reset()

func (*FindProjectRequest) String

func (x *FindProjectRequest) String() string

func (*FindProjectRequest) Validate

func (m *FindProjectRequest) Validate() error

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

func (m *FindProjectRequest) ValidateAll() error

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

type FindProjectRequestMultiError

type FindProjectRequestMultiError []error

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

func (FindProjectRequestMultiError) AllErrors

func (m FindProjectRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindProjectRequestMultiError) Error

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

type FindProjectRequestValidationError

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

FindProjectRequestValidationError is the validation error returned by FindProjectRequest.Validate if the designated constraints aren't met.

func (FindProjectRequestValidationError) Cause

Cause function returns cause value.

func (FindProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (FindProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (FindProjectRequestValidationError) Field

Field function returns field value.

func (FindProjectRequestValidationError) Key

Key function returns key value.

func (FindProjectRequestValidationError) Reason

Reason function returns reason value.

type FindProjectResponse

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

Response message for AdminService.FindProject

func (*FindProjectResponse) Descriptor deprecated

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

Deprecated: Use FindProjectResponse.ProtoReflect.Descriptor instead.

func (*FindProjectResponse) GetProject

func (x *FindProjectResponse) GetProject() *Project

func (*FindProjectResponse) ProtoMessage

func (*FindProjectResponse) ProtoMessage()

func (*FindProjectResponse) ProtoReflect

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

func (*FindProjectResponse) Reset

func (x *FindProjectResponse) Reset()

func (*FindProjectResponse) String

func (x *FindProjectResponse) String() string

func (*FindProjectResponse) Validate

func (m *FindProjectResponse) Validate() error

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

func (m *FindProjectResponse) ValidateAll() error

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

type FindProjectResponseMultiError

type FindProjectResponseMultiError []error

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

func (FindProjectResponseMultiError) AllErrors

func (m FindProjectResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindProjectResponseMultiError) Error

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

type FindProjectResponseValidationError

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

FindProjectResponseValidationError is the validation error returned by FindProjectResponse.Validate if the designated constraints aren't met.

func (FindProjectResponseValidationError) Cause

Cause function returns cause value.

func (FindProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (FindProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (FindProjectResponseValidationError) Field

Field function returns field value.

func (FindProjectResponseValidationError) Key

Key function returns key value.

func (FindProjectResponseValidationError) Reason

Reason function returns reason value.

type FindProjectsRequest

type FindProjectsRequest struct {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,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
}

Request message for AdminService.FindProjects

func (*FindProjectsRequest) Descriptor deprecated

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

Deprecated: Use FindProjectsRequest.ProtoReflect.Descriptor instead.

func (*FindProjectsRequest) GetOrganization

func (x *FindProjectsRequest) GetOrganization() string

func (*FindProjectsRequest) GetPageSize

func (x *FindProjectsRequest) GetPageSize() uint32

func (*FindProjectsRequest) GetPageToken

func (x *FindProjectsRequest) GetPageToken() string

func (*FindProjectsRequest) ProtoMessage

func (*FindProjectsRequest) ProtoMessage()

func (*FindProjectsRequest) ProtoReflect

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

func (*FindProjectsRequest) Reset

func (x *FindProjectsRequest) Reset()

func (*FindProjectsRequest) String

func (x *FindProjectsRequest) String() string

func (*FindProjectsRequest) Validate

func (m *FindProjectsRequest) Validate() error

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

func (m *FindProjectsRequest) ValidateAll() error

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

type FindProjectsRequestMultiError

type FindProjectsRequestMultiError []error

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

func (FindProjectsRequestMultiError) AllErrors

func (m FindProjectsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindProjectsRequestMultiError) Error

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

type FindProjectsRequestValidationError

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

FindProjectsRequestValidationError is the validation error returned by FindProjectsRequest.Validate if the designated constraints aren't met.

func (FindProjectsRequestValidationError) Cause

Cause function returns cause value.

func (FindProjectsRequestValidationError) Error

Error satisfies the builtin error interface

func (FindProjectsRequestValidationError) ErrorName

ErrorName returns error name.

func (FindProjectsRequestValidationError) Field

Field function returns field value.

func (FindProjectsRequestValidationError) Key

Key function returns key value.

func (FindProjectsRequestValidationError) Reason

Reason function returns reason value.

type FindProjectsResponse

type FindProjectsResponse 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
}

Response message for AdminService.FindProjects

func (*FindProjectsResponse) Descriptor deprecated

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

Deprecated: Use FindProjectsResponse.ProtoReflect.Descriptor instead.

func (*FindProjectsResponse) GetNextPageToken

func (x *FindProjectsResponse) GetNextPageToken() string

func (*FindProjectsResponse) GetProjects

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

func (*FindProjectsResponse) ProtoMessage

func (*FindProjectsResponse) ProtoMessage()

func (*FindProjectsResponse) ProtoReflect

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

func (*FindProjectsResponse) Reset

func (x *FindProjectsResponse) Reset()

func (*FindProjectsResponse) String

func (x *FindProjectsResponse) String() string

func (*FindProjectsResponse) Validate

func (m *FindProjectsResponse) Validate() error

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

func (m *FindProjectsResponse) ValidateAll() error

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

type FindProjectsResponseMultiError

type FindProjectsResponseMultiError []error

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

func (FindProjectsResponseMultiError) AllErrors

func (m FindProjectsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FindProjectsResponseMultiError) Error

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

type FindProjectsResponseValidationError

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

FindProjectsResponseValidationError is the validation error returned by FindProjectsResponse.Validate if the designated constraints aren't met.

func (FindProjectsResponseValidationError) Cause

Cause function returns cause value.

func (FindProjectsResponseValidationError) Error

Error satisfies the builtin error interface

func (FindProjectsResponseValidationError) ErrorName

ErrorName returns error name.

func (FindProjectsResponseValidationError) Field

Field function returns field value.

func (FindProjectsResponseValidationError) Key

Key function returns key value.

func (FindProjectsResponseValidationError) Reason

Reason function returns reason value.

type Organization

type Organization struct {

	// Identifier (UUID)
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Organization name
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	//Short description for the organization
	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
}

Request message for AdminService.Ping

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 {

	// Admin version
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// Admin server time
	Time *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=time,proto3" json:"time,omitempty"`
	// contains filtered or unexported fields
}

Response message for AdminService.Ping

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 {

	// Identifier (UUID)
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// project name
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	//Short description for the project
	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 (*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) GetId

func (x *Project) GetId() string

func (*Project) GetName

func (x *Project) GetName() string

func (*Project) GetUpdatedOn

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

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 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) FindOrganization

func (UnimplementedAdminServiceServer) FindOrganizations

func (UnimplementedAdminServiceServer) FindProject

func (UnimplementedAdminServiceServer) FindProjects

func (UnimplementedAdminServiceServer) Ping

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
}

Request message for AdminService.UpdateOrganization

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
}

Response message for AdminService.UpdateOrganization

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 {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,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
}

Request message for AdminService.UpdateOrganization

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) GetName

func (x *UpdateProjectRequest) GetName() string

func (*UpdateProjectRequest) GetOrganization

func (x *UpdateProjectRequest) GetOrganization() 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
}

Response message for AdminService.UpdateOrganization

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.

Jump to

Keyboard shortcuts

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