Documentation ¶
Index ¶
- Variables
- func RegisterCertificateServiceServer(s *grpc.Server, srv CertificateServiceServer)
- type CertificateRequest
- func (*CertificateRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CertificateRequest) GetCsr() []byte
- func (x *CertificateRequest) GetValidityPeriod() *durationpb.Duration
- func (*CertificateRequest) ProtoMessage()
- func (x *CertificateRequest) ProtoReflect() protoreflect.Message
- func (x *CertificateRequest) Reset()
- func (x *CertificateRequest) String() string
- func (m *CertificateRequest) Validate() error
- func (m *CertificateRequest) ValidateAll() error
- type CertificateRequestMultiError
- type CertificateRequestValidationError
- func (e CertificateRequestValidationError) Cause() error
- func (e CertificateRequestValidationError) Error() string
- func (e CertificateRequestValidationError) ErrorName() string
- func (e CertificateRequestValidationError) Field() string
- func (e CertificateRequestValidationError) Key() bool
- func (e CertificateRequestValidationError) Reason() string
- type CertificateResponse
- func (*CertificateResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CertificateResponse) GetCertificateChain() [][]byte
- func (*CertificateResponse) ProtoMessage()
- func (x *CertificateResponse) ProtoReflect() protoreflect.Message
- func (x *CertificateResponse) Reset()
- func (x *CertificateResponse) String() string
- func (m *CertificateResponse) Validate() error
- func (m *CertificateResponse) ValidateAll() error
- type CertificateResponseMultiError
- type CertificateResponseValidationError
- func (e CertificateResponseValidationError) Cause() error
- func (e CertificateResponseValidationError) Error() string
- func (e CertificateResponseValidationError) ErrorName() string
- func (e CertificateResponseValidationError) Field() string
- func (e CertificateResponseValidationError) Key() bool
- func (e CertificateResponseValidationError) Reason() string
- type CertificateServiceClient
- type CertificateServiceServer
- type UnimplementedCertificateServiceServer
Constants ¶
This section is empty.
Variables ¶
var File_pkg_apis_security_v1_security_proto protoreflect.FileDescriptor
Functions ¶
func RegisterCertificateServiceServer ¶
func RegisterCertificateServiceServer(s *grpc.Server, srv CertificateServiceServer)
Types ¶
type CertificateRequest ¶
type CertificateRequest struct { // ASN.1 DER form certificate request. // The public key in the CSR is used to generate the certificate, // and other fields in the generated certificate may be overwritten by the CA. Csr []byte `protobuf:"bytes,1,opt,name=csr,proto3" json:"csr,omitempty"` // Optional: requested certificate validity period. ValidityPeriod *durationpb.Duration `protobuf:"bytes,2,opt,name=validity_period,json=validityPeriod,proto3" json:"validity_period,omitempty"` // contains filtered or unexported fields }
Certificate request type. Dragonfly supports peers authentication with Mutual TLS(mTLS) For mTLS, all peers need to request TLS certificates for communicating The server side may overwrite ant requested certificate filed based on its policies.
func (*CertificateRequest) Descriptor
deprecated
func (*CertificateRequest) Descriptor() ([]byte, []int)
Deprecated: Use CertificateRequest.ProtoReflect.Descriptor instead.
func (*CertificateRequest) GetCsr ¶
func (x *CertificateRequest) GetCsr() []byte
func (*CertificateRequest) GetValidityPeriod ¶ added in v1.1.3
func (x *CertificateRequest) GetValidityPeriod() *durationpb.Duration
func (*CertificateRequest) ProtoMessage ¶
func (*CertificateRequest) ProtoMessage()
func (*CertificateRequest) ProtoReflect ¶
func (x *CertificateRequest) ProtoReflect() protoreflect.Message
func (*CertificateRequest) Reset ¶
func (x *CertificateRequest) Reset()
func (*CertificateRequest) String ¶
func (x *CertificateRequest) String() string
func (*CertificateRequest) Validate ¶
func (m *CertificateRequest) Validate() error
Validate checks the field values on CertificateRequest 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 (*CertificateRequest) ValidateAll ¶
func (m *CertificateRequest) ValidateAll() error
ValidateAll checks the field values on CertificateRequest 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 CertificateRequestMultiError, or nil if none found.
type CertificateRequestMultiError ¶
type CertificateRequestMultiError []error
CertificateRequestMultiError is an error wrapping multiple validation errors returned by CertificateRequest.ValidateAll() if the designated constraints aren't met.
func (CertificateRequestMultiError) AllErrors ¶
func (m CertificateRequestMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (CertificateRequestMultiError) Error ¶
func (m CertificateRequestMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type CertificateRequestValidationError ¶
type CertificateRequestValidationError struct {
// contains filtered or unexported fields
}
CertificateRequestValidationError is the validation error returned by CertificateRequest.Validate if the designated constraints aren't met.
func (CertificateRequestValidationError) Cause ¶
func (e CertificateRequestValidationError) Cause() error
Cause function returns cause value.
func (CertificateRequestValidationError) Error ¶
func (e CertificateRequestValidationError) Error() string
Error satisfies the builtin error interface
func (CertificateRequestValidationError) ErrorName ¶
func (e CertificateRequestValidationError) ErrorName() string
ErrorName returns error name.
func (CertificateRequestValidationError) Field ¶
func (e CertificateRequestValidationError) Field() string
Field function returns field value.
func (CertificateRequestValidationError) Key ¶
func (e CertificateRequestValidationError) Key() bool
Key function returns key value.
func (CertificateRequestValidationError) Reason ¶
func (e CertificateRequestValidationError) Reason() string
Reason function returns reason value.
type CertificateResponse ¶
type CertificateResponse struct { // ASN.1 DER form certificate chain. CertificateChain [][]byte `protobuf:"bytes,1,rep,name=certificate_chain,json=certificateChain,proto3" json:"certificate_chain,omitempty"` // contains filtered or unexported fields }
Certificate response type.
func (*CertificateResponse) Descriptor
deprecated
func (*CertificateResponse) Descriptor() ([]byte, []int)
Deprecated: Use CertificateResponse.ProtoReflect.Descriptor instead.
func (*CertificateResponse) GetCertificateChain ¶
func (x *CertificateResponse) GetCertificateChain() [][]byte
func (*CertificateResponse) ProtoMessage ¶
func (*CertificateResponse) ProtoMessage()
func (*CertificateResponse) ProtoReflect ¶
func (x *CertificateResponse) ProtoReflect() protoreflect.Message
func (*CertificateResponse) Reset ¶
func (x *CertificateResponse) Reset()
func (*CertificateResponse) String ¶
func (x *CertificateResponse) String() string
func (*CertificateResponse) Validate ¶
func (m *CertificateResponse) Validate() error
Validate checks the field values on CertificateResponse 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 (*CertificateResponse) ValidateAll ¶
func (m *CertificateResponse) ValidateAll() error
ValidateAll checks the field values on CertificateResponse 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 CertificateResponseMultiError, or nil if none found.
type CertificateResponseMultiError ¶
type CertificateResponseMultiError []error
CertificateResponseMultiError is an error wrapping multiple validation errors returned by CertificateResponse.ValidateAll() if the designated constraints aren't met.
func (CertificateResponseMultiError) AllErrors ¶
func (m CertificateResponseMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (CertificateResponseMultiError) Error ¶
func (m CertificateResponseMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type CertificateResponseValidationError ¶
type CertificateResponseValidationError struct {
// contains filtered or unexported fields
}
CertificateResponseValidationError is the validation error returned by CertificateResponse.Validate if the designated constraints aren't met.
func (CertificateResponseValidationError) Cause ¶
func (e CertificateResponseValidationError) Cause() error
Cause function returns cause value.
func (CertificateResponseValidationError) Error ¶
func (e CertificateResponseValidationError) Error() string
Error satisfies the builtin error interface
func (CertificateResponseValidationError) ErrorName ¶
func (e CertificateResponseValidationError) ErrorName() string
ErrorName returns error name.
func (CertificateResponseValidationError) Field ¶
func (e CertificateResponseValidationError) Field() string
Field function returns field value.
func (CertificateResponseValidationError) Key ¶
func (e CertificateResponseValidationError) Key() bool
Key function returns key value.
func (CertificateResponseValidationError) Reason ¶
func (e CertificateResponseValidationError) Reason() string
Reason function returns reason value.
type CertificateServiceClient ¶
type CertificateServiceClient interface { // Using provided CSR, returns a signed certificate. IssueCertificate(ctx context.Context, in *CertificateRequest, opts ...grpc.CallOption) (*CertificateResponse, error) }
CertificateServiceClient is the client API for CertificateService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewCertificateServiceClient ¶
func NewCertificateServiceClient(cc grpc.ClientConnInterface) CertificateServiceClient
type CertificateServiceServer ¶
type CertificateServiceServer interface { // Using provided CSR, returns a signed certificate. IssueCertificate(context.Context, *CertificateRequest) (*CertificateResponse, error) }
CertificateServiceServer is the server API for CertificateService service.
type UnimplementedCertificateServiceServer ¶
type UnimplementedCertificateServiceServer struct { }
UnimplementedCertificateServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedCertificateServiceServer) IssueCertificate ¶
func (*UnimplementedCertificateServiceServer) IssueCertificate(context.Context, *CertificateRequest) (*CertificateResponse, error)