identity

package
v2.9.4 Latest Latest
Warning

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

Go to latest
Published: Apr 8, 2024 License: Apache-2.0 Imports: 32 Imported by: 1

Documentation

Overview

Package identity is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	API_SetIdentityServerConfig_FullMethodName = "/identity_v2.API/SetIdentityServerConfig"
	API_GetIdentityServerConfig_FullMethodName = "/identity_v2.API/GetIdentityServerConfig"
	API_CreateIDPConnector_FullMethodName      = "/identity_v2.API/CreateIDPConnector"
	API_UpdateIDPConnector_FullMethodName      = "/identity_v2.API/UpdateIDPConnector"
	API_ListIDPConnectors_FullMethodName       = "/identity_v2.API/ListIDPConnectors"
	API_GetIDPConnector_FullMethodName         = "/identity_v2.API/GetIDPConnector"
	API_DeleteIDPConnector_FullMethodName      = "/identity_v2.API/DeleteIDPConnector"
	API_CreateOIDCClient_FullMethodName        = "/identity_v2.API/CreateOIDCClient"
	API_UpdateOIDCClient_FullMethodName        = "/identity_v2.API/UpdateOIDCClient"
	API_GetOIDCClient_FullMethodName           = "/identity_v2.API/GetOIDCClient"
	API_ListOIDCClients_FullMethodName         = "/identity_v2.API/ListOIDCClients"
	API_DeleteOIDCClient_FullMethodName        = "/identity_v2.API/DeleteOIDCClient"
	API_DeleteAll_FullMethodName               = "/identity_v2.API/DeleteAll"
)

Variables

View Source
var (
	// ErrInvalidID is returned if the client or connector ID does not exist
	ErrInvalidID = status.Error(codes.Internal, "ID does not exist")

	// ErrAlreadyExists is returned if the client or connector ID already exists
	ErrAlreadyExists = status.Error(codes.Internal, "ID already exists")
)
View Source
var API_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "identity_v2.API",
	HandlerType: (*APIServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SetIdentityServerConfig",
			Handler:    _API_SetIdentityServerConfig_Handler,
		},
		{
			MethodName: "GetIdentityServerConfig",
			Handler:    _API_GetIdentityServerConfig_Handler,
		},
		{
			MethodName: "CreateIDPConnector",
			Handler:    _API_CreateIDPConnector_Handler,
		},
		{
			MethodName: "UpdateIDPConnector",
			Handler:    _API_UpdateIDPConnector_Handler,
		},
		{
			MethodName: "ListIDPConnectors",
			Handler:    _API_ListIDPConnectors_Handler,
		},
		{
			MethodName: "GetIDPConnector",
			Handler:    _API_GetIDPConnector_Handler,
		},
		{
			MethodName: "DeleteIDPConnector",
			Handler:    _API_DeleteIDPConnector_Handler,
		},
		{
			MethodName: "CreateOIDCClient",
			Handler:    _API_CreateOIDCClient_Handler,
		},
		{
			MethodName: "UpdateOIDCClient",
			Handler:    _API_UpdateOIDCClient_Handler,
		},
		{
			MethodName: "GetOIDCClient",
			Handler:    _API_GetOIDCClient_Handler,
		},
		{
			MethodName: "ListOIDCClients",
			Handler:    _API_ListOIDCClients_Handler,
		},
		{
			MethodName: "DeleteOIDCClient",
			Handler:    _API_DeleteOIDCClient_Handler,
		},
		{
			MethodName: "DeleteAll",
			Handler:    _API_DeleteAll_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "identity/identity.proto",
}

API_ServiceDesc is the grpc.ServiceDesc for API 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_identity_identity_proto protoreflect.FileDescriptor

Functions

func IsErrAlreadyExists

func IsErrAlreadyExists(err error) bool

IsErrAlreadyExists checks if an error is a ErrAlreadyExists

func IsErrInvalidID

func IsErrInvalidID(err error) bool

IsErrInvalidID checks if an error is a ErrInvalidID

func RegisterAPIHandler added in v2.8.0

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

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

func RegisterAPIHandlerClient added in v2.8.0

func RegisterAPIHandlerClient(ctx context.Context, mux *runtime.ServeMux, client APIClient) error

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

func RegisterAPIHandlerFromEndpoint added in v2.8.0

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

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

func RegisterAPIHandlerServer added in v2.8.0

func RegisterAPIHandlerServer(ctx context.Context, mux *runtime.ServeMux, server APIServer) error

RegisterAPIHandlerServer registers the http handlers for service API to "mux". UnaryRPC :call APIServer 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 RegisterAPIHandlerFromEndpoint instead.

func RegisterAPIServer

func RegisterAPIServer(s grpc.ServiceRegistrar, srv APIServer)

Types

type APIClient

type APIClient interface {
	SetIdentityServerConfig(ctx context.Context, in *SetIdentityServerConfigRequest, opts ...grpc.CallOption) (*SetIdentityServerConfigResponse, error)
	GetIdentityServerConfig(ctx context.Context, in *GetIdentityServerConfigRequest, opts ...grpc.CallOption) (*GetIdentityServerConfigResponse, error)
	CreateIDPConnector(ctx context.Context, in *CreateIDPConnectorRequest, opts ...grpc.CallOption) (*CreateIDPConnectorResponse, error)
	UpdateIDPConnector(ctx context.Context, in *UpdateIDPConnectorRequest, opts ...grpc.CallOption) (*UpdateIDPConnectorResponse, error)
	ListIDPConnectors(ctx context.Context, in *ListIDPConnectorsRequest, opts ...grpc.CallOption) (*ListIDPConnectorsResponse, error)
	GetIDPConnector(ctx context.Context, in *GetIDPConnectorRequest, opts ...grpc.CallOption) (*GetIDPConnectorResponse, error)
	DeleteIDPConnector(ctx context.Context, in *DeleteIDPConnectorRequest, opts ...grpc.CallOption) (*DeleteIDPConnectorResponse, error)
	CreateOIDCClient(ctx context.Context, in *CreateOIDCClientRequest, opts ...grpc.CallOption) (*CreateOIDCClientResponse, error)
	UpdateOIDCClient(ctx context.Context, in *UpdateOIDCClientRequest, opts ...grpc.CallOption) (*UpdateOIDCClientResponse, error)
	GetOIDCClient(ctx context.Context, in *GetOIDCClientRequest, opts ...grpc.CallOption) (*GetOIDCClientResponse, error)
	ListOIDCClients(ctx context.Context, in *ListOIDCClientsRequest, opts ...grpc.CallOption) (*ListOIDCClientsResponse, error)
	DeleteOIDCClient(ctx context.Context, in *DeleteOIDCClientRequest, opts ...grpc.CallOption) (*DeleteOIDCClientResponse, error)
	DeleteAll(ctx context.Context, in *DeleteAllRequest, opts ...grpc.CallOption) (*DeleteAllResponse, error)
}

APIClient is the client API for API 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.

func NewAPIClient

func NewAPIClient(cc grpc.ClientConnInterface) APIClient

type CreateIDPConnectorRequest

type CreateIDPConnectorRequest struct {
	Connector *IDPConnector `protobuf:"bytes,1,opt,name=connector,proto3" json:"connector,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateIDPConnectorRequest) Descriptor deprecated

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

Deprecated: Use CreateIDPConnectorRequest.ProtoReflect.Descriptor instead.

func (*CreateIDPConnectorRequest) GetConnector

func (x *CreateIDPConnectorRequest) GetConnector() *IDPConnector

func (*CreateIDPConnectorRequest) MarshalLogObject

func (x *CreateIDPConnectorRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateIDPConnectorRequest) ProtoMessage

func (*CreateIDPConnectorRequest) ProtoMessage()

func (*CreateIDPConnectorRequest) ProtoReflect added in v2.7.0

func (*CreateIDPConnectorRequest) Reset

func (x *CreateIDPConnectorRequest) Reset()

func (*CreateIDPConnectorRequest) String

func (x *CreateIDPConnectorRequest) String() string

func (*CreateIDPConnectorRequest) Validate added in v2.8.0

func (m *CreateIDPConnectorRequest) Validate() error

Validate checks the field values on CreateIDPConnectorRequest 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 (*CreateIDPConnectorRequest) ValidateAll added in v2.8.0

func (m *CreateIDPConnectorRequest) ValidateAll() error

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

type CreateIDPConnectorRequestMultiError added in v2.8.0

type CreateIDPConnectorRequestMultiError []error

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

func (CreateIDPConnectorRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (CreateIDPConnectorRequestMultiError) Error added in v2.8.0

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

type CreateIDPConnectorRequestValidationError added in v2.8.0

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

CreateIDPConnectorRequestValidationError is the validation error returned by CreateIDPConnectorRequest.Validate if the designated constraints aren't met.

func (CreateIDPConnectorRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateIDPConnectorRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateIDPConnectorRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateIDPConnectorRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateIDPConnectorRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateIDPConnectorRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreateIDPConnectorResponse

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

func (*CreateIDPConnectorResponse) Descriptor deprecated

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

Deprecated: Use CreateIDPConnectorResponse.ProtoReflect.Descriptor instead.

func (*CreateIDPConnectorResponse) MarshalLogObject

func (x *CreateIDPConnectorResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateIDPConnectorResponse) ProtoMessage

func (*CreateIDPConnectorResponse) ProtoMessage()

func (*CreateIDPConnectorResponse) ProtoReflect added in v2.7.0

func (*CreateIDPConnectorResponse) Reset

func (x *CreateIDPConnectorResponse) Reset()

func (*CreateIDPConnectorResponse) String

func (x *CreateIDPConnectorResponse) String() string

func (*CreateIDPConnectorResponse) Validate added in v2.8.0

func (m *CreateIDPConnectorResponse) Validate() error

Validate checks the field values on CreateIDPConnectorResponse 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 (*CreateIDPConnectorResponse) ValidateAll added in v2.8.0

func (m *CreateIDPConnectorResponse) ValidateAll() error

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

type CreateIDPConnectorResponseMultiError added in v2.8.0

type CreateIDPConnectorResponseMultiError []error

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

func (CreateIDPConnectorResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (CreateIDPConnectorResponseMultiError) Error added in v2.8.0

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

type CreateIDPConnectorResponseValidationError added in v2.8.0

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

CreateIDPConnectorResponseValidationError is the validation error returned by CreateIDPConnectorResponse.Validate if the designated constraints aren't met.

func (CreateIDPConnectorResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateIDPConnectorResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateIDPConnectorResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateIDPConnectorResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateIDPConnectorResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateIDPConnectorResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreateOIDCClientRequest

type CreateOIDCClientRequest struct {
	Client *OIDCClient `protobuf:"bytes,1,opt,name=client,proto3" json:"client,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOIDCClientRequest) Descriptor deprecated

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

Deprecated: Use CreateOIDCClientRequest.ProtoReflect.Descriptor instead.

func (*CreateOIDCClientRequest) GetClient

func (x *CreateOIDCClientRequest) GetClient() *OIDCClient

func (*CreateOIDCClientRequest) MarshalLogObject

func (x *CreateOIDCClientRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateOIDCClientRequest) ProtoMessage

func (*CreateOIDCClientRequest) ProtoMessage()

func (*CreateOIDCClientRequest) ProtoReflect added in v2.7.0

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

func (*CreateOIDCClientRequest) Reset

func (x *CreateOIDCClientRequest) Reset()

func (*CreateOIDCClientRequest) String

func (x *CreateOIDCClientRequest) String() string

func (*CreateOIDCClientRequest) Validate added in v2.8.0

func (m *CreateOIDCClientRequest) Validate() error

Validate checks the field values on CreateOIDCClientRequest 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 (*CreateOIDCClientRequest) ValidateAll added in v2.8.0

func (m *CreateOIDCClientRequest) ValidateAll() error

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

type CreateOIDCClientRequestMultiError added in v2.8.0

type CreateOIDCClientRequestMultiError []error

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

func (CreateOIDCClientRequestMultiError) AllErrors added in v2.8.0

func (m CreateOIDCClientRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateOIDCClientRequestMultiError) Error added in v2.8.0

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

type CreateOIDCClientRequestValidationError added in v2.8.0

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

CreateOIDCClientRequestValidationError is the validation error returned by CreateOIDCClientRequest.Validate if the designated constraints aren't met.

func (CreateOIDCClientRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateOIDCClientRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateOIDCClientRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateOIDCClientRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateOIDCClientRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateOIDCClientRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreateOIDCClientResponse

type CreateOIDCClientResponse struct {
	Client *OIDCClient `protobuf:"bytes,1,opt,name=client,proto3" json:"client,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOIDCClientResponse) Descriptor deprecated

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

Deprecated: Use CreateOIDCClientResponse.ProtoReflect.Descriptor instead.

func (*CreateOIDCClientResponse) GetClient

func (x *CreateOIDCClientResponse) GetClient() *OIDCClient

func (*CreateOIDCClientResponse) MarshalLogObject

func (x *CreateOIDCClientResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateOIDCClientResponse) ProtoMessage

func (*CreateOIDCClientResponse) ProtoMessage()

func (*CreateOIDCClientResponse) ProtoReflect added in v2.7.0

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

func (*CreateOIDCClientResponse) Reset

func (x *CreateOIDCClientResponse) Reset()

func (*CreateOIDCClientResponse) String

func (x *CreateOIDCClientResponse) String() string

func (*CreateOIDCClientResponse) Validate added in v2.8.0

func (m *CreateOIDCClientResponse) Validate() error

Validate checks the field values on CreateOIDCClientResponse 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 (*CreateOIDCClientResponse) ValidateAll added in v2.8.0

func (m *CreateOIDCClientResponse) ValidateAll() error

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

type CreateOIDCClientResponseMultiError added in v2.8.0

type CreateOIDCClientResponseMultiError []error

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

func (CreateOIDCClientResponseMultiError) AllErrors added in v2.8.0

func (m CreateOIDCClientResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateOIDCClientResponseMultiError) Error added in v2.8.0

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

type CreateOIDCClientResponseValidationError added in v2.8.0

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

CreateOIDCClientResponseValidationError is the validation error returned by CreateOIDCClientResponse.Validate if the designated constraints aren't met.

func (CreateOIDCClientResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateOIDCClientResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateOIDCClientResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateOIDCClientResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateOIDCClientResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateOIDCClientResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteAllRequest

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

func (*DeleteAllRequest) Descriptor deprecated

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

Deprecated: Use DeleteAllRequest.ProtoReflect.Descriptor instead.

func (*DeleteAllRequest) MarshalLogObject

func (x *DeleteAllRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteAllRequest) ProtoMessage

func (*DeleteAllRequest) ProtoMessage()

func (*DeleteAllRequest) ProtoReflect added in v2.7.0

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

func (*DeleteAllRequest) Reset

func (x *DeleteAllRequest) Reset()

func (*DeleteAllRequest) String

func (x *DeleteAllRequest) String() string

func (*DeleteAllRequest) Validate added in v2.8.0

func (m *DeleteAllRequest) Validate() error

Validate checks the field values on DeleteAllRequest 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 (*DeleteAllRequest) ValidateAll added in v2.8.0

func (m *DeleteAllRequest) ValidateAll() error

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

type DeleteAllRequestMultiError added in v2.8.0

type DeleteAllRequestMultiError []error

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

func (DeleteAllRequestMultiError) AllErrors added in v2.8.0

func (m DeleteAllRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteAllRequestMultiError) Error added in v2.8.0

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

type DeleteAllRequestValidationError added in v2.8.0

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

DeleteAllRequestValidationError is the validation error returned by DeleteAllRequest.Validate if the designated constraints aren't met.

func (DeleteAllRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteAllRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteAllRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteAllRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteAllRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteAllRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteAllResponse

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

func (*DeleteAllResponse) Descriptor deprecated

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

Deprecated: Use DeleteAllResponse.ProtoReflect.Descriptor instead.

func (*DeleteAllResponse) MarshalLogObject

func (x *DeleteAllResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteAllResponse) ProtoMessage

func (*DeleteAllResponse) ProtoMessage()

func (*DeleteAllResponse) ProtoReflect added in v2.7.0

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

func (*DeleteAllResponse) Reset

func (x *DeleteAllResponse) Reset()

func (*DeleteAllResponse) String

func (x *DeleteAllResponse) String() string

func (*DeleteAllResponse) Validate added in v2.8.0

func (m *DeleteAllResponse) Validate() error

Validate checks the field values on DeleteAllResponse 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 (*DeleteAllResponse) ValidateAll added in v2.8.0

func (m *DeleteAllResponse) ValidateAll() error

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

type DeleteAllResponseMultiError added in v2.8.0

type DeleteAllResponseMultiError []error

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

func (DeleteAllResponseMultiError) AllErrors added in v2.8.0

func (m DeleteAllResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteAllResponseMultiError) Error added in v2.8.0

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

type DeleteAllResponseValidationError added in v2.8.0

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

DeleteAllResponseValidationError is the validation error returned by DeleteAllResponse.Validate if the designated constraints aren't met.

func (DeleteAllResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteAllResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteAllResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteAllResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteAllResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteAllResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteIDPConnectorRequest

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

func (*DeleteIDPConnectorRequest) Descriptor deprecated

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

Deprecated: Use DeleteIDPConnectorRequest.ProtoReflect.Descriptor instead.

func (*DeleteIDPConnectorRequest) GetId

func (x *DeleteIDPConnectorRequest) GetId() string

func (*DeleteIDPConnectorRequest) MarshalLogObject

func (x *DeleteIDPConnectorRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteIDPConnectorRequest) ProtoMessage

func (*DeleteIDPConnectorRequest) ProtoMessage()

func (*DeleteIDPConnectorRequest) ProtoReflect added in v2.7.0

func (*DeleteIDPConnectorRequest) Reset

func (x *DeleteIDPConnectorRequest) Reset()

func (*DeleteIDPConnectorRequest) String

func (x *DeleteIDPConnectorRequest) String() string

func (*DeleteIDPConnectorRequest) Validate added in v2.8.0

func (m *DeleteIDPConnectorRequest) Validate() error

Validate checks the field values on DeleteIDPConnectorRequest 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 (*DeleteIDPConnectorRequest) ValidateAll added in v2.8.0

func (m *DeleteIDPConnectorRequest) ValidateAll() error

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

type DeleteIDPConnectorRequestMultiError added in v2.8.0

type DeleteIDPConnectorRequestMultiError []error

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

func (DeleteIDPConnectorRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (DeleteIDPConnectorRequestMultiError) Error added in v2.8.0

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

type DeleteIDPConnectorRequestValidationError added in v2.8.0

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

DeleteIDPConnectorRequestValidationError is the validation error returned by DeleteIDPConnectorRequest.Validate if the designated constraints aren't met.

func (DeleteIDPConnectorRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteIDPConnectorRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteIDPConnectorRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteIDPConnectorRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteIDPConnectorRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteIDPConnectorRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteIDPConnectorResponse

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

func (*DeleteIDPConnectorResponse) Descriptor deprecated

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

Deprecated: Use DeleteIDPConnectorResponse.ProtoReflect.Descriptor instead.

func (*DeleteIDPConnectorResponse) MarshalLogObject

func (x *DeleteIDPConnectorResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteIDPConnectorResponse) ProtoMessage

func (*DeleteIDPConnectorResponse) ProtoMessage()

func (*DeleteIDPConnectorResponse) ProtoReflect added in v2.7.0

func (*DeleteIDPConnectorResponse) Reset

func (x *DeleteIDPConnectorResponse) Reset()

func (*DeleteIDPConnectorResponse) String

func (x *DeleteIDPConnectorResponse) String() string

func (*DeleteIDPConnectorResponse) Validate added in v2.8.0

func (m *DeleteIDPConnectorResponse) Validate() error

Validate checks the field values on DeleteIDPConnectorResponse 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 (*DeleteIDPConnectorResponse) ValidateAll added in v2.8.0

func (m *DeleteIDPConnectorResponse) ValidateAll() error

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

type DeleteIDPConnectorResponseMultiError added in v2.8.0

type DeleteIDPConnectorResponseMultiError []error

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

func (DeleteIDPConnectorResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (DeleteIDPConnectorResponseMultiError) Error added in v2.8.0

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

type DeleteIDPConnectorResponseValidationError added in v2.8.0

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

DeleteIDPConnectorResponseValidationError is the validation error returned by DeleteIDPConnectorResponse.Validate if the designated constraints aren't met.

func (DeleteIDPConnectorResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteIDPConnectorResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteIDPConnectorResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteIDPConnectorResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteIDPConnectorResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteIDPConnectorResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteOIDCClientRequest

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

func (*DeleteOIDCClientRequest) Descriptor deprecated

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

Deprecated: Use DeleteOIDCClientRequest.ProtoReflect.Descriptor instead.

func (*DeleteOIDCClientRequest) GetId

func (x *DeleteOIDCClientRequest) GetId() string

func (*DeleteOIDCClientRequest) MarshalLogObject

func (x *DeleteOIDCClientRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteOIDCClientRequest) ProtoMessage

func (*DeleteOIDCClientRequest) ProtoMessage()

func (*DeleteOIDCClientRequest) ProtoReflect added in v2.7.0

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

func (*DeleteOIDCClientRequest) Reset

func (x *DeleteOIDCClientRequest) Reset()

func (*DeleteOIDCClientRequest) String

func (x *DeleteOIDCClientRequest) String() string

func (*DeleteOIDCClientRequest) Validate added in v2.8.0

func (m *DeleteOIDCClientRequest) Validate() error

Validate checks the field values on DeleteOIDCClientRequest 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 (*DeleteOIDCClientRequest) ValidateAll added in v2.8.0

func (m *DeleteOIDCClientRequest) ValidateAll() error

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

type DeleteOIDCClientRequestMultiError added in v2.8.0

type DeleteOIDCClientRequestMultiError []error

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

func (DeleteOIDCClientRequestMultiError) AllErrors added in v2.8.0

func (m DeleteOIDCClientRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteOIDCClientRequestMultiError) Error added in v2.8.0

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

type DeleteOIDCClientRequestValidationError added in v2.8.0

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

DeleteOIDCClientRequestValidationError is the validation error returned by DeleteOIDCClientRequest.Validate if the designated constraints aren't met.

func (DeleteOIDCClientRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteOIDCClientRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteOIDCClientRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteOIDCClientRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteOIDCClientRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteOIDCClientRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteOIDCClientResponse

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

func (*DeleteOIDCClientResponse) Descriptor deprecated

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

Deprecated: Use DeleteOIDCClientResponse.ProtoReflect.Descriptor instead.

func (*DeleteOIDCClientResponse) MarshalLogObject

func (x *DeleteOIDCClientResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteOIDCClientResponse) ProtoMessage

func (*DeleteOIDCClientResponse) ProtoMessage()

func (*DeleteOIDCClientResponse) ProtoReflect added in v2.7.0

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

func (*DeleteOIDCClientResponse) Reset

func (x *DeleteOIDCClientResponse) Reset()

func (*DeleteOIDCClientResponse) String

func (x *DeleteOIDCClientResponse) String() string

func (*DeleteOIDCClientResponse) Validate added in v2.8.0

func (m *DeleteOIDCClientResponse) Validate() error

Validate checks the field values on DeleteOIDCClientResponse 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 (*DeleteOIDCClientResponse) ValidateAll added in v2.8.0

func (m *DeleteOIDCClientResponse) ValidateAll() error

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

type DeleteOIDCClientResponseMultiError added in v2.8.0

type DeleteOIDCClientResponseMultiError []error

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

func (DeleteOIDCClientResponseMultiError) AllErrors added in v2.8.0

func (m DeleteOIDCClientResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteOIDCClientResponseMultiError) Error added in v2.8.0

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

type DeleteOIDCClientResponseValidationError added in v2.8.0

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

DeleteOIDCClientResponseValidationError is the validation error returned by DeleteOIDCClientResponse.Validate if the designated constraints aren't met.

func (DeleteOIDCClientResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteOIDCClientResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteOIDCClientResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteOIDCClientResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteOIDCClientResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteOIDCClientResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetIDPConnectorRequest

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

func (*GetIDPConnectorRequest) Descriptor deprecated

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

Deprecated: Use GetIDPConnectorRequest.ProtoReflect.Descriptor instead.

func (*GetIDPConnectorRequest) GetId

func (x *GetIDPConnectorRequest) GetId() string

func (*GetIDPConnectorRequest) MarshalLogObject

func (x *GetIDPConnectorRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetIDPConnectorRequest) ProtoMessage

func (*GetIDPConnectorRequest) ProtoMessage()

func (*GetIDPConnectorRequest) ProtoReflect added in v2.7.0

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

func (*GetIDPConnectorRequest) Reset

func (x *GetIDPConnectorRequest) Reset()

func (*GetIDPConnectorRequest) String

func (x *GetIDPConnectorRequest) String() string

func (*GetIDPConnectorRequest) Validate added in v2.8.0

func (m *GetIDPConnectorRequest) Validate() error

Validate checks the field values on GetIDPConnectorRequest 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 (*GetIDPConnectorRequest) ValidateAll added in v2.8.0

func (m *GetIDPConnectorRequest) ValidateAll() error

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

type GetIDPConnectorRequestMultiError added in v2.8.0

type GetIDPConnectorRequestMultiError []error

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

func (GetIDPConnectorRequestMultiError) AllErrors added in v2.8.0

func (m GetIDPConnectorRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetIDPConnectorRequestMultiError) Error added in v2.8.0

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

type GetIDPConnectorRequestValidationError added in v2.8.0

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

GetIDPConnectorRequestValidationError is the validation error returned by GetIDPConnectorRequest.Validate if the designated constraints aren't met.

func (GetIDPConnectorRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetIDPConnectorRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetIDPConnectorRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetIDPConnectorRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetIDPConnectorRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetIDPConnectorRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetIDPConnectorResponse

type GetIDPConnectorResponse struct {
	Connector *IDPConnector `protobuf:"bytes,1,opt,name=connector,proto3" json:"connector,omitempty"`
	// contains filtered or unexported fields
}

func (*GetIDPConnectorResponse) Descriptor deprecated

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

Deprecated: Use GetIDPConnectorResponse.ProtoReflect.Descriptor instead.

func (*GetIDPConnectorResponse) GetConnector

func (x *GetIDPConnectorResponse) GetConnector() *IDPConnector

func (*GetIDPConnectorResponse) MarshalLogObject

func (x *GetIDPConnectorResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetIDPConnectorResponse) ProtoMessage

func (*GetIDPConnectorResponse) ProtoMessage()

func (*GetIDPConnectorResponse) ProtoReflect added in v2.7.0

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

func (*GetIDPConnectorResponse) Reset

func (x *GetIDPConnectorResponse) Reset()

func (*GetIDPConnectorResponse) String

func (x *GetIDPConnectorResponse) String() string

func (*GetIDPConnectorResponse) Validate added in v2.8.0

func (m *GetIDPConnectorResponse) Validate() error

Validate checks the field values on GetIDPConnectorResponse 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 (*GetIDPConnectorResponse) ValidateAll added in v2.8.0

func (m *GetIDPConnectorResponse) ValidateAll() error

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

type GetIDPConnectorResponseMultiError added in v2.8.0

type GetIDPConnectorResponseMultiError []error

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

func (GetIDPConnectorResponseMultiError) AllErrors added in v2.8.0

func (m GetIDPConnectorResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetIDPConnectorResponseMultiError) Error added in v2.8.0

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

type GetIDPConnectorResponseValidationError added in v2.8.0

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

GetIDPConnectorResponseValidationError is the validation error returned by GetIDPConnectorResponse.Validate if the designated constraints aren't met.

func (GetIDPConnectorResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetIDPConnectorResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetIDPConnectorResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetIDPConnectorResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (GetIDPConnectorResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (GetIDPConnectorResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetIdentityServerConfigRequest

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

func (*GetIdentityServerConfigRequest) Descriptor deprecated

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

Deprecated: Use GetIdentityServerConfigRequest.ProtoReflect.Descriptor instead.

func (*GetIdentityServerConfigRequest) MarshalLogObject

func (x *GetIdentityServerConfigRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetIdentityServerConfigRequest) ProtoMessage

func (*GetIdentityServerConfigRequest) ProtoMessage()

func (*GetIdentityServerConfigRequest) ProtoReflect added in v2.7.0

func (*GetIdentityServerConfigRequest) Reset

func (x *GetIdentityServerConfigRequest) Reset()

func (*GetIdentityServerConfigRequest) String

func (*GetIdentityServerConfigRequest) Validate added in v2.8.0

func (m *GetIdentityServerConfigRequest) Validate() error

Validate checks the field values on GetIdentityServerConfigRequest 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 (*GetIdentityServerConfigRequest) ValidateAll added in v2.8.0

func (m *GetIdentityServerConfigRequest) ValidateAll() error

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

type GetIdentityServerConfigRequestMultiError added in v2.8.0

type GetIdentityServerConfigRequestMultiError []error

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

func (GetIdentityServerConfigRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (GetIdentityServerConfigRequestMultiError) Error added in v2.8.0

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

type GetIdentityServerConfigRequestValidationError added in v2.8.0

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

GetIdentityServerConfigRequestValidationError is the validation error returned by GetIdentityServerConfigRequest.Validate if the designated constraints aren't met.

func (GetIdentityServerConfigRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetIdentityServerConfigRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetIdentityServerConfigRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetIdentityServerConfigRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetIdentityServerConfigRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetIdentityServerConfigRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetIdentityServerConfigResponse

type GetIdentityServerConfigResponse struct {
	Config *IdentityServerConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*GetIdentityServerConfigResponse) Descriptor deprecated

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

Deprecated: Use GetIdentityServerConfigResponse.ProtoReflect.Descriptor instead.

func (*GetIdentityServerConfigResponse) GetConfig

func (*GetIdentityServerConfigResponse) MarshalLogObject

func (*GetIdentityServerConfigResponse) ProtoMessage

func (*GetIdentityServerConfigResponse) ProtoMessage()

func (*GetIdentityServerConfigResponse) ProtoReflect added in v2.7.0

func (*GetIdentityServerConfigResponse) Reset

func (*GetIdentityServerConfigResponse) String

func (*GetIdentityServerConfigResponse) Validate added in v2.8.0

func (m *GetIdentityServerConfigResponse) Validate() error

Validate checks the field values on GetIdentityServerConfigResponse 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 (*GetIdentityServerConfigResponse) ValidateAll added in v2.8.0

func (m *GetIdentityServerConfigResponse) ValidateAll() error

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

type GetIdentityServerConfigResponseMultiError added in v2.8.0

type GetIdentityServerConfigResponseMultiError []error

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

func (GetIdentityServerConfigResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (GetIdentityServerConfigResponseMultiError) Error added in v2.8.0

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

type GetIdentityServerConfigResponseValidationError added in v2.8.0

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

GetIdentityServerConfigResponseValidationError is the validation error returned by GetIdentityServerConfigResponse.Validate if the designated constraints aren't met.

func (GetIdentityServerConfigResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetIdentityServerConfigResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetIdentityServerConfigResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetIdentityServerConfigResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (GetIdentityServerConfigResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (GetIdentityServerConfigResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetOIDCClientRequest

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

func (*GetOIDCClientRequest) Descriptor deprecated

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

Deprecated: Use GetOIDCClientRequest.ProtoReflect.Descriptor instead.

func (*GetOIDCClientRequest) GetId

func (x *GetOIDCClientRequest) GetId() string

func (*GetOIDCClientRequest) MarshalLogObject

func (x *GetOIDCClientRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetOIDCClientRequest) ProtoMessage

func (*GetOIDCClientRequest) ProtoMessage()

func (*GetOIDCClientRequest) ProtoReflect added in v2.7.0

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

func (*GetOIDCClientRequest) Reset

func (x *GetOIDCClientRequest) Reset()

func (*GetOIDCClientRequest) String

func (x *GetOIDCClientRequest) String() string

func (*GetOIDCClientRequest) Validate added in v2.8.0

func (m *GetOIDCClientRequest) Validate() error

Validate checks the field values on GetOIDCClientRequest 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 (*GetOIDCClientRequest) ValidateAll added in v2.8.0

func (m *GetOIDCClientRequest) ValidateAll() error

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

type GetOIDCClientRequestMultiError added in v2.8.0

type GetOIDCClientRequestMultiError []error

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

func (GetOIDCClientRequestMultiError) AllErrors added in v2.8.0

func (m GetOIDCClientRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetOIDCClientRequestMultiError) Error added in v2.8.0

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

type GetOIDCClientRequestValidationError added in v2.8.0

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

GetOIDCClientRequestValidationError is the validation error returned by GetOIDCClientRequest.Validate if the designated constraints aren't met.

func (GetOIDCClientRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetOIDCClientRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetOIDCClientRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetOIDCClientRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetOIDCClientRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetOIDCClientRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetOIDCClientResponse

type GetOIDCClientResponse struct {
	Client *OIDCClient `protobuf:"bytes,1,opt,name=client,proto3" json:"client,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOIDCClientResponse) Descriptor deprecated

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

Deprecated: Use GetOIDCClientResponse.ProtoReflect.Descriptor instead.

func (*GetOIDCClientResponse) GetClient

func (x *GetOIDCClientResponse) GetClient() *OIDCClient

func (*GetOIDCClientResponse) MarshalLogObject

func (x *GetOIDCClientResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetOIDCClientResponse) ProtoMessage

func (*GetOIDCClientResponse) ProtoMessage()

func (*GetOIDCClientResponse) ProtoReflect added in v2.7.0

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

func (*GetOIDCClientResponse) Reset

func (x *GetOIDCClientResponse) Reset()

func (*GetOIDCClientResponse) String

func (x *GetOIDCClientResponse) String() string

func (*GetOIDCClientResponse) Validate added in v2.8.0

func (m *GetOIDCClientResponse) Validate() error

Validate checks the field values on GetOIDCClientResponse 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 (*GetOIDCClientResponse) ValidateAll added in v2.8.0

func (m *GetOIDCClientResponse) ValidateAll() error

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

type GetOIDCClientResponseMultiError added in v2.8.0

type GetOIDCClientResponseMultiError []error

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

func (GetOIDCClientResponseMultiError) AllErrors added in v2.8.0

func (m GetOIDCClientResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetOIDCClientResponseMultiError) Error added in v2.8.0

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

type GetOIDCClientResponseValidationError added in v2.8.0

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

GetOIDCClientResponseValidationError is the validation error returned by GetOIDCClientResponse.Validate if the designated constraints aren't met.

func (GetOIDCClientResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetOIDCClientResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetOIDCClientResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetOIDCClientResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (GetOIDCClientResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (GetOIDCClientResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type IDPConnector

type IDPConnector struct {

	// ID is the unique identifier for this connector.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Name is the human-readable identifier for this connector,
	// which will be shown to end users when they're authenticating.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// Type is the type of the IDP ex. `saml`, `oidc`, `github`.
	Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	// ConfigVersion must be incremented every time a connector is
	// updated, to avoid concurrent updates conflicting.
	ConfigVersion int64 `protobuf:"varint,4,opt,name=configVersion,proto3" json:"configVersion,omitempty"`
	// This is left for backwards compatibility, but we want users to use the config defined below.
	JsonConfig string `protobuf:"bytes,5,opt,name=jsonConfig,proto3" json:"jsonConfig,omitempty"`
	// Config is the configuration for the upstream IDP, which varies based on the type.
	// We make the assumption that this is either yaml or JSON.
	Config *structpb.Struct `protobuf:"bytes,6,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

IDPConnector represents a connection to an identity provider

func (*IDPConnector) Descriptor deprecated

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

Deprecated: Use IDPConnector.ProtoReflect.Descriptor instead.

func (*IDPConnector) GetConfig

func (x *IDPConnector) GetConfig() *structpb.Struct

func (*IDPConnector) GetConfigVersion

func (x *IDPConnector) GetConfigVersion() int64

func (*IDPConnector) GetId

func (x *IDPConnector) GetId() string

func (*IDPConnector) GetJsonConfig

func (x *IDPConnector) GetJsonConfig() string

func (*IDPConnector) GetName

func (x *IDPConnector) GetName() string

func (*IDPConnector) GetType

func (x *IDPConnector) GetType() string

func (*IDPConnector) MarshalLogObject

func (x *IDPConnector) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*IDPConnector) ProtoMessage

func (*IDPConnector) ProtoMessage()

func (*IDPConnector) ProtoReflect added in v2.7.0

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

func (*IDPConnector) Reset

func (x *IDPConnector) Reset()

func (*IDPConnector) String

func (x *IDPConnector) String() string

func (*IDPConnector) Validate added in v2.8.0

func (m *IDPConnector) Validate() error

Validate checks the field values on IDPConnector 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 (*IDPConnector) ValidateAll added in v2.8.0

func (m *IDPConnector) ValidateAll() error

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

type IDPConnectorMultiError added in v2.8.0

type IDPConnectorMultiError []error

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

func (IDPConnectorMultiError) AllErrors added in v2.8.0

func (m IDPConnectorMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IDPConnectorMultiError) Error added in v2.8.0

func (m IDPConnectorMultiError) Error() string

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

type IDPConnectorValidationError added in v2.8.0

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

IDPConnectorValidationError is the validation error returned by IDPConnector.Validate if the designated constraints aren't met.

func (IDPConnectorValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (IDPConnectorValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (IDPConnectorValidationError) ErrorName added in v2.8.0

func (e IDPConnectorValidationError) ErrorName() string

ErrorName returns error name.

func (IDPConnectorValidationError) Field added in v2.8.0

Field function returns field value.

func (IDPConnectorValidationError) Key added in v2.8.0

Key function returns key value.

func (IDPConnectorValidationError) Reason added in v2.8.0

Reason function returns reason value.

type IdentityServerConfig

type IdentityServerConfig struct {
	Issuer              string `protobuf:"bytes,1,opt,name=issuer,proto3" json:"issuer,omitempty"`
	IdTokenExpiry       string `protobuf:"bytes,2,opt,name=id_token_expiry,json=idTokenExpiry,proto3" json:"id_token_expiry,omitempty"`
	RotationTokenExpiry string `protobuf:"bytes,3,opt,name=rotation_token_expiry,json=rotationTokenExpiry,proto3" json:"rotation_token_expiry,omitempty"`
	// contains filtered or unexported fields
}

IdentityServerConfig is the configuration for the identity web server. When the configuration is changed the web server is reloaded automatically.

func (*IdentityServerConfig) Descriptor deprecated

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

Deprecated: Use IdentityServerConfig.ProtoReflect.Descriptor instead.

func (*IdentityServerConfig) GetIdTokenExpiry

func (x *IdentityServerConfig) GetIdTokenExpiry() string

func (*IdentityServerConfig) GetIssuer

func (x *IdentityServerConfig) GetIssuer() string

func (*IdentityServerConfig) GetRotationTokenExpiry

func (x *IdentityServerConfig) GetRotationTokenExpiry() string

func (*IdentityServerConfig) MarshalLogObject

func (x *IdentityServerConfig) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*IdentityServerConfig) ProtoMessage

func (*IdentityServerConfig) ProtoMessage()

func (*IdentityServerConfig) ProtoReflect added in v2.7.0

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

func (*IdentityServerConfig) Reset

func (x *IdentityServerConfig) Reset()

func (*IdentityServerConfig) String

func (x *IdentityServerConfig) String() string

func (*IdentityServerConfig) Validate added in v2.8.0

func (m *IdentityServerConfig) Validate() error

Validate checks the field values on IdentityServerConfig 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 (*IdentityServerConfig) ValidateAll added in v2.8.0

func (m *IdentityServerConfig) ValidateAll() error

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

type IdentityServerConfigMultiError added in v2.8.0

type IdentityServerConfigMultiError []error

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

func (IdentityServerConfigMultiError) AllErrors added in v2.8.0

func (m IdentityServerConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IdentityServerConfigMultiError) Error added in v2.8.0

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

type IdentityServerConfigValidationError added in v2.8.0

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

IdentityServerConfigValidationError is the validation error returned by IdentityServerConfig.Validate if the designated constraints aren't met.

func (IdentityServerConfigValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (IdentityServerConfigValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (IdentityServerConfigValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (IdentityServerConfigValidationError) Field added in v2.8.0

Field function returns field value.

func (IdentityServerConfigValidationError) Key added in v2.8.0

Key function returns key value.

func (IdentityServerConfigValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListIDPConnectorsRequest

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

func (*ListIDPConnectorsRequest) Descriptor deprecated

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

Deprecated: Use ListIDPConnectorsRequest.ProtoReflect.Descriptor instead.

func (*ListIDPConnectorsRequest) MarshalLogObject

func (x *ListIDPConnectorsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListIDPConnectorsRequest) ProtoMessage

func (*ListIDPConnectorsRequest) ProtoMessage()

func (*ListIDPConnectorsRequest) ProtoReflect added in v2.7.0

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

func (*ListIDPConnectorsRequest) Reset

func (x *ListIDPConnectorsRequest) Reset()

func (*ListIDPConnectorsRequest) String

func (x *ListIDPConnectorsRequest) String() string

func (*ListIDPConnectorsRequest) Validate added in v2.8.0

func (m *ListIDPConnectorsRequest) Validate() error

Validate checks the field values on ListIDPConnectorsRequest 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 (*ListIDPConnectorsRequest) ValidateAll added in v2.8.0

func (m *ListIDPConnectorsRequest) ValidateAll() error

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

type ListIDPConnectorsRequestMultiError added in v2.8.0

type ListIDPConnectorsRequestMultiError []error

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

func (ListIDPConnectorsRequestMultiError) AllErrors added in v2.8.0

func (m ListIDPConnectorsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListIDPConnectorsRequestMultiError) Error added in v2.8.0

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

type ListIDPConnectorsRequestValidationError added in v2.8.0

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

ListIDPConnectorsRequestValidationError is the validation error returned by ListIDPConnectorsRequest.Validate if the designated constraints aren't met.

func (ListIDPConnectorsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListIDPConnectorsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListIDPConnectorsRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListIDPConnectorsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListIDPConnectorsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListIDPConnectorsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListIDPConnectorsResponse

type ListIDPConnectorsResponse struct {
	Connectors []*IDPConnector `protobuf:"bytes,1,rep,name=connectors,proto3" json:"connectors,omitempty"`
	// contains filtered or unexported fields
}

func (*ListIDPConnectorsResponse) Descriptor deprecated

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

Deprecated: Use ListIDPConnectorsResponse.ProtoReflect.Descriptor instead.

func (*ListIDPConnectorsResponse) GetConnectors

func (x *ListIDPConnectorsResponse) GetConnectors() []*IDPConnector

func (*ListIDPConnectorsResponse) MarshalLogObject

func (x *ListIDPConnectorsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListIDPConnectorsResponse) ProtoMessage

func (*ListIDPConnectorsResponse) ProtoMessage()

func (*ListIDPConnectorsResponse) ProtoReflect added in v2.7.0

func (*ListIDPConnectorsResponse) Reset

func (x *ListIDPConnectorsResponse) Reset()

func (*ListIDPConnectorsResponse) String

func (x *ListIDPConnectorsResponse) String() string

func (*ListIDPConnectorsResponse) Validate added in v2.8.0

func (m *ListIDPConnectorsResponse) Validate() error

Validate checks the field values on ListIDPConnectorsResponse 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 (*ListIDPConnectorsResponse) ValidateAll added in v2.8.0

func (m *ListIDPConnectorsResponse) ValidateAll() error

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

type ListIDPConnectorsResponseMultiError added in v2.8.0

type ListIDPConnectorsResponseMultiError []error

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

func (ListIDPConnectorsResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (ListIDPConnectorsResponseMultiError) Error added in v2.8.0

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

type ListIDPConnectorsResponseValidationError added in v2.8.0

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

ListIDPConnectorsResponseValidationError is the validation error returned by ListIDPConnectorsResponse.Validate if the designated constraints aren't met.

func (ListIDPConnectorsResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListIDPConnectorsResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListIDPConnectorsResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListIDPConnectorsResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (ListIDPConnectorsResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (ListIDPConnectorsResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListOIDCClientsRequest

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

func (*ListOIDCClientsRequest) Descriptor deprecated

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

Deprecated: Use ListOIDCClientsRequest.ProtoReflect.Descriptor instead.

func (*ListOIDCClientsRequest) MarshalLogObject

func (x *ListOIDCClientsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListOIDCClientsRequest) ProtoMessage

func (*ListOIDCClientsRequest) ProtoMessage()

func (*ListOIDCClientsRequest) ProtoReflect added in v2.7.0

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

func (*ListOIDCClientsRequest) Reset

func (x *ListOIDCClientsRequest) Reset()

func (*ListOIDCClientsRequest) String

func (x *ListOIDCClientsRequest) String() string

func (*ListOIDCClientsRequest) Validate added in v2.8.0

func (m *ListOIDCClientsRequest) Validate() error

Validate checks the field values on ListOIDCClientsRequest 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 (*ListOIDCClientsRequest) ValidateAll added in v2.8.0

func (m *ListOIDCClientsRequest) ValidateAll() error

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

type ListOIDCClientsRequestMultiError added in v2.8.0

type ListOIDCClientsRequestMultiError []error

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

func (ListOIDCClientsRequestMultiError) AllErrors added in v2.8.0

func (m ListOIDCClientsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListOIDCClientsRequestMultiError) Error added in v2.8.0

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

type ListOIDCClientsRequestValidationError added in v2.8.0

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

ListOIDCClientsRequestValidationError is the validation error returned by ListOIDCClientsRequest.Validate if the designated constraints aren't met.

func (ListOIDCClientsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListOIDCClientsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListOIDCClientsRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListOIDCClientsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListOIDCClientsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListOIDCClientsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListOIDCClientsResponse

type ListOIDCClientsResponse struct {
	Clients []*OIDCClient `protobuf:"bytes,1,rep,name=clients,proto3" json:"clients,omitempty"`
	// contains filtered or unexported fields
}

func (*ListOIDCClientsResponse) Descriptor deprecated

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

Deprecated: Use ListOIDCClientsResponse.ProtoReflect.Descriptor instead.

func (*ListOIDCClientsResponse) GetClients

func (x *ListOIDCClientsResponse) GetClients() []*OIDCClient

func (*ListOIDCClientsResponse) MarshalLogObject

func (x *ListOIDCClientsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListOIDCClientsResponse) ProtoMessage

func (*ListOIDCClientsResponse) ProtoMessage()

func (*ListOIDCClientsResponse) ProtoReflect added in v2.7.0

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

func (*ListOIDCClientsResponse) Reset

func (x *ListOIDCClientsResponse) Reset()

func (*ListOIDCClientsResponse) String

func (x *ListOIDCClientsResponse) String() string

func (*ListOIDCClientsResponse) Validate added in v2.8.0

func (m *ListOIDCClientsResponse) Validate() error

Validate checks the field values on ListOIDCClientsResponse 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 (*ListOIDCClientsResponse) ValidateAll added in v2.8.0

func (m *ListOIDCClientsResponse) ValidateAll() error

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

type ListOIDCClientsResponseMultiError added in v2.8.0

type ListOIDCClientsResponseMultiError []error

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

func (ListOIDCClientsResponseMultiError) AllErrors added in v2.8.0

func (m ListOIDCClientsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListOIDCClientsResponseMultiError) Error added in v2.8.0

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

type ListOIDCClientsResponseValidationError added in v2.8.0

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

ListOIDCClientsResponseValidationError is the validation error returned by ListOIDCClientsResponse.Validate if the designated constraints aren't met.

func (ListOIDCClientsResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListOIDCClientsResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListOIDCClientsResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListOIDCClientsResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (ListOIDCClientsResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (ListOIDCClientsResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type OIDCClient

type OIDCClient struct {
	Id           string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	RedirectUris []string `protobuf:"bytes,2,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
	TrustedPeers []string `protobuf:"bytes,3,rep,name=trusted_peers,json=trustedPeers,proto3" json:"trusted_peers,omitempty"`
	Name         string   `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Secret       string   `protobuf:"bytes,5,opt,name=secret,proto3" json:"secret,omitempty"`
	// contains filtered or unexported fields
}

func (*OIDCClient) Descriptor deprecated

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

Deprecated: Use OIDCClient.ProtoReflect.Descriptor instead.

func (*OIDCClient) GetId

func (x *OIDCClient) GetId() string

func (*OIDCClient) GetName

func (x *OIDCClient) GetName() string

func (*OIDCClient) GetRedirectUris

func (x *OIDCClient) GetRedirectUris() []string

func (*OIDCClient) GetSecret

func (x *OIDCClient) GetSecret() string

func (*OIDCClient) GetTrustedPeers

func (x *OIDCClient) GetTrustedPeers() []string

func (*OIDCClient) MarshalLogObject

func (x *OIDCClient) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*OIDCClient) ProtoMessage

func (*OIDCClient) ProtoMessage()

func (*OIDCClient) ProtoReflect added in v2.7.0

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

func (*OIDCClient) Reset

func (x *OIDCClient) Reset()

func (*OIDCClient) String

func (x *OIDCClient) String() string

func (*OIDCClient) Validate added in v2.8.0

func (m *OIDCClient) Validate() error

Validate checks the field values on OIDCClient 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 (*OIDCClient) ValidateAll added in v2.8.0

func (m *OIDCClient) ValidateAll() error

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

type OIDCClientMultiError added in v2.8.0

type OIDCClientMultiError []error

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

func (OIDCClientMultiError) AllErrors added in v2.8.0

func (m OIDCClientMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OIDCClientMultiError) Error added in v2.8.0

func (m OIDCClientMultiError) Error() string

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

type OIDCClientValidationError added in v2.8.0

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

OIDCClientValidationError is the validation error returned by OIDCClient.Validate if the designated constraints aren't met.

func (OIDCClientValidationError) Cause added in v2.8.0

func (e OIDCClientValidationError) Cause() error

Cause function returns cause value.

func (OIDCClientValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (OIDCClientValidationError) ErrorName added in v2.8.0

func (e OIDCClientValidationError) ErrorName() string

ErrorName returns error name.

func (OIDCClientValidationError) Field added in v2.8.0

Field function returns field value.

func (OIDCClientValidationError) Key added in v2.8.0

Key function returns key value.

func (OIDCClientValidationError) Reason added in v2.8.0

func (e OIDCClientValidationError) Reason() string

Reason function returns reason value.

type SetIdentityServerConfigRequest

type SetIdentityServerConfigRequest struct {
	Config *IdentityServerConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*SetIdentityServerConfigRequest) Descriptor deprecated

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

Deprecated: Use SetIdentityServerConfigRequest.ProtoReflect.Descriptor instead.

func (*SetIdentityServerConfigRequest) GetConfig

func (*SetIdentityServerConfigRequest) MarshalLogObject

func (x *SetIdentityServerConfigRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SetIdentityServerConfigRequest) ProtoMessage

func (*SetIdentityServerConfigRequest) ProtoMessage()

func (*SetIdentityServerConfigRequest) ProtoReflect added in v2.7.0

func (*SetIdentityServerConfigRequest) Reset

func (x *SetIdentityServerConfigRequest) Reset()

func (*SetIdentityServerConfigRequest) String

func (*SetIdentityServerConfigRequest) Validate added in v2.8.0

func (m *SetIdentityServerConfigRequest) Validate() error

Validate checks the field values on SetIdentityServerConfigRequest 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 (*SetIdentityServerConfigRequest) ValidateAll added in v2.8.0

func (m *SetIdentityServerConfigRequest) ValidateAll() error

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

type SetIdentityServerConfigRequestMultiError added in v2.8.0

type SetIdentityServerConfigRequestMultiError []error

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

func (SetIdentityServerConfigRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (SetIdentityServerConfigRequestMultiError) Error added in v2.8.0

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

type SetIdentityServerConfigRequestValidationError added in v2.8.0

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

SetIdentityServerConfigRequestValidationError is the validation error returned by SetIdentityServerConfigRequest.Validate if the designated constraints aren't met.

func (SetIdentityServerConfigRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetIdentityServerConfigRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetIdentityServerConfigRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetIdentityServerConfigRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SetIdentityServerConfigRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SetIdentityServerConfigRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SetIdentityServerConfigResponse

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

func (*SetIdentityServerConfigResponse) Descriptor deprecated

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

Deprecated: Use SetIdentityServerConfigResponse.ProtoReflect.Descriptor instead.

func (*SetIdentityServerConfigResponse) MarshalLogObject

func (*SetIdentityServerConfigResponse) ProtoMessage

func (*SetIdentityServerConfigResponse) ProtoMessage()

func (*SetIdentityServerConfigResponse) ProtoReflect added in v2.7.0

func (*SetIdentityServerConfigResponse) Reset

func (*SetIdentityServerConfigResponse) String

func (*SetIdentityServerConfigResponse) Validate added in v2.8.0

func (m *SetIdentityServerConfigResponse) Validate() error

Validate checks the field values on SetIdentityServerConfigResponse 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 (*SetIdentityServerConfigResponse) ValidateAll added in v2.8.0

func (m *SetIdentityServerConfigResponse) ValidateAll() error

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

type SetIdentityServerConfigResponseMultiError added in v2.8.0

type SetIdentityServerConfigResponseMultiError []error

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

func (SetIdentityServerConfigResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (SetIdentityServerConfigResponseMultiError) Error added in v2.8.0

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

type SetIdentityServerConfigResponseValidationError added in v2.8.0

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

SetIdentityServerConfigResponseValidationError is the validation error returned by SetIdentityServerConfigResponse.Validate if the designated constraints aren't met.

func (SetIdentityServerConfigResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetIdentityServerConfigResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetIdentityServerConfigResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetIdentityServerConfigResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (SetIdentityServerConfigResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (SetIdentityServerConfigResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type UnimplementedAPIServer

type UnimplementedAPIServer struct {
}

UnimplementedAPIServer must be embedded to have forward compatible implementations.

func (UnimplementedAPIServer) DeleteAll

func (UnimplementedAPIServer) GetIDPConnector

func (UnimplementedAPIServer) GetOIDCClient

func (UnimplementedAPIServer) ListOIDCClients

type UnsafeAPIServer added in v2.7.0

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

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

type UpdateIDPConnectorRequest

type UpdateIDPConnectorRequest struct {
	Connector *IDPConnector `protobuf:"bytes,1,opt,name=connector,proto3" json:"connector,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateIDPConnectorRequest) Descriptor deprecated

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

Deprecated: Use UpdateIDPConnectorRequest.ProtoReflect.Descriptor instead.

func (*UpdateIDPConnectorRequest) GetConnector

func (x *UpdateIDPConnectorRequest) GetConnector() *IDPConnector

func (*UpdateIDPConnectorRequest) MarshalLogObject

func (x *UpdateIDPConnectorRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*UpdateIDPConnectorRequest) ProtoMessage

func (*UpdateIDPConnectorRequest) ProtoMessage()

func (*UpdateIDPConnectorRequest) ProtoReflect added in v2.7.0

func (*UpdateIDPConnectorRequest) Reset

func (x *UpdateIDPConnectorRequest) Reset()

func (*UpdateIDPConnectorRequest) String

func (x *UpdateIDPConnectorRequest) String() string

func (*UpdateIDPConnectorRequest) Validate added in v2.8.0

func (m *UpdateIDPConnectorRequest) Validate() error

Validate checks the field values on UpdateIDPConnectorRequest 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 (*UpdateIDPConnectorRequest) ValidateAll added in v2.8.0

func (m *UpdateIDPConnectorRequest) ValidateAll() error

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

type UpdateIDPConnectorRequestMultiError added in v2.8.0

type UpdateIDPConnectorRequestMultiError []error

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

func (UpdateIDPConnectorRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (UpdateIDPConnectorRequestMultiError) Error added in v2.8.0

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

type UpdateIDPConnectorRequestValidationError added in v2.8.0

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

UpdateIDPConnectorRequestValidationError is the validation error returned by UpdateIDPConnectorRequest.Validate if the designated constraints aren't met.

func (UpdateIDPConnectorRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (UpdateIDPConnectorRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (UpdateIDPConnectorRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (UpdateIDPConnectorRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (UpdateIDPConnectorRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (UpdateIDPConnectorRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type UpdateIDPConnectorResponse

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

func (*UpdateIDPConnectorResponse) Descriptor deprecated

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

Deprecated: Use UpdateIDPConnectorResponse.ProtoReflect.Descriptor instead.

func (*UpdateIDPConnectorResponse) MarshalLogObject

func (x *UpdateIDPConnectorResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*UpdateIDPConnectorResponse) ProtoMessage

func (*UpdateIDPConnectorResponse) ProtoMessage()

func (*UpdateIDPConnectorResponse) ProtoReflect added in v2.7.0

func (*UpdateIDPConnectorResponse) Reset

func (x *UpdateIDPConnectorResponse) Reset()

func (*UpdateIDPConnectorResponse) String

func (x *UpdateIDPConnectorResponse) String() string

func (*UpdateIDPConnectorResponse) Validate added in v2.8.0

func (m *UpdateIDPConnectorResponse) Validate() error

Validate checks the field values on UpdateIDPConnectorResponse 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 (*UpdateIDPConnectorResponse) ValidateAll added in v2.8.0

func (m *UpdateIDPConnectorResponse) ValidateAll() error

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

type UpdateIDPConnectorResponseMultiError added in v2.8.0

type UpdateIDPConnectorResponseMultiError []error

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

func (UpdateIDPConnectorResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (UpdateIDPConnectorResponseMultiError) Error added in v2.8.0

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

type UpdateIDPConnectorResponseValidationError added in v2.8.0

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

UpdateIDPConnectorResponseValidationError is the validation error returned by UpdateIDPConnectorResponse.Validate if the designated constraints aren't met.

func (UpdateIDPConnectorResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (UpdateIDPConnectorResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (UpdateIDPConnectorResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (UpdateIDPConnectorResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (UpdateIDPConnectorResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (UpdateIDPConnectorResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type UpdateOIDCClientRequest

type UpdateOIDCClientRequest struct {
	Client *OIDCClient `protobuf:"bytes,1,opt,name=client,proto3" json:"client,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateOIDCClientRequest) Descriptor deprecated

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

Deprecated: Use UpdateOIDCClientRequest.ProtoReflect.Descriptor instead.

func (*UpdateOIDCClientRequest) GetClient

func (x *UpdateOIDCClientRequest) GetClient() *OIDCClient

func (*UpdateOIDCClientRequest) MarshalLogObject

func (x *UpdateOIDCClientRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*UpdateOIDCClientRequest) ProtoMessage

func (*UpdateOIDCClientRequest) ProtoMessage()

func (*UpdateOIDCClientRequest) ProtoReflect added in v2.7.0

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

func (*UpdateOIDCClientRequest) Reset

func (x *UpdateOIDCClientRequest) Reset()

func (*UpdateOIDCClientRequest) String

func (x *UpdateOIDCClientRequest) String() string

func (*UpdateOIDCClientRequest) Validate added in v2.8.0

func (m *UpdateOIDCClientRequest) Validate() error

Validate checks the field values on UpdateOIDCClientRequest 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 (*UpdateOIDCClientRequest) ValidateAll added in v2.8.0

func (m *UpdateOIDCClientRequest) ValidateAll() error

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

type UpdateOIDCClientRequestMultiError added in v2.8.0

type UpdateOIDCClientRequestMultiError []error

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

func (UpdateOIDCClientRequestMultiError) AllErrors added in v2.8.0

func (m UpdateOIDCClientRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateOIDCClientRequestMultiError) Error added in v2.8.0

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

type UpdateOIDCClientRequestValidationError added in v2.8.0

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

UpdateOIDCClientRequestValidationError is the validation error returned by UpdateOIDCClientRequest.Validate if the designated constraints aren't met.

func (UpdateOIDCClientRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (UpdateOIDCClientRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (UpdateOIDCClientRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (UpdateOIDCClientRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (UpdateOIDCClientRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (UpdateOIDCClientRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type UpdateOIDCClientResponse

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

func (*UpdateOIDCClientResponse) Descriptor deprecated

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

Deprecated: Use UpdateOIDCClientResponse.ProtoReflect.Descriptor instead.

func (*UpdateOIDCClientResponse) MarshalLogObject

func (x *UpdateOIDCClientResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*UpdateOIDCClientResponse) ProtoMessage

func (*UpdateOIDCClientResponse) ProtoMessage()

func (*UpdateOIDCClientResponse) ProtoReflect added in v2.7.0

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

func (*UpdateOIDCClientResponse) Reset

func (x *UpdateOIDCClientResponse) Reset()

func (*UpdateOIDCClientResponse) String

func (x *UpdateOIDCClientResponse) String() string

func (*UpdateOIDCClientResponse) Validate added in v2.8.0

func (m *UpdateOIDCClientResponse) Validate() error

Validate checks the field values on UpdateOIDCClientResponse 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 (*UpdateOIDCClientResponse) ValidateAll added in v2.8.0

func (m *UpdateOIDCClientResponse) ValidateAll() error

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

type UpdateOIDCClientResponseMultiError added in v2.8.0

type UpdateOIDCClientResponseMultiError []error

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

func (UpdateOIDCClientResponseMultiError) AllErrors added in v2.8.0

func (m UpdateOIDCClientResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateOIDCClientResponseMultiError) Error added in v2.8.0

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

type UpdateOIDCClientResponseValidationError added in v2.8.0

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

UpdateOIDCClientResponseValidationError is the validation error returned by UpdateOIDCClientResponse.Validate if the designated constraints aren't met.

func (UpdateOIDCClientResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (UpdateOIDCClientResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (UpdateOIDCClientResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (UpdateOIDCClientResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (UpdateOIDCClientResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (UpdateOIDCClientResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type User

type User struct {
	Email             string                 `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	LastAuthenticated *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=last_authenticated,json=lastAuthenticated,proto3" json:"last_authenticated,omitempty"`
	// contains filtered or unexported fields
}

User represents an IDP user that has authenticated via OIDC

func (*User) Descriptor deprecated

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetEmail

func (x *User) GetEmail() string

func (*User) GetLastAuthenticated

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

func (*User) MarshalLogObject

func (x *User) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect added in v2.7.0

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

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

func (*User) Validate added in v2.8.0

func (m *User) Validate() error

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

func (*User) ValidateAll added in v2.8.0

func (m *User) ValidateAll() error

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

type UserMultiError added in v2.8.0

type UserMultiError []error

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

func (UserMultiError) AllErrors added in v2.8.0

func (m UserMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserMultiError) Error added in v2.8.0

func (m UserMultiError) Error() string

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

type UserValidationError added in v2.8.0

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

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

func (UserValidationError) Cause added in v2.8.0

func (e UserValidationError) Cause() error

Cause function returns cause value.

func (UserValidationError) Error added in v2.8.0

func (e UserValidationError) Error() string

Error satisfies the builtin error interface

func (UserValidationError) ErrorName added in v2.8.0

func (e UserValidationError) ErrorName() string

ErrorName returns error name.

func (UserValidationError) Field added in v2.8.0

func (e UserValidationError) Field() string

Field function returns field value.

func (UserValidationError) Key added in v2.8.0

func (e UserValidationError) Key() bool

Key function returns key value.

func (UserValidationError) Reason added in v2.8.0

func (e UserValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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