api

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Jan 28, 2021 License: Apache-2.0 Imports: 19 Imported by: 0

Documentation

Overview

Package api is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	Attribute_Type_name = map[int32]string{
		0: "STRING",
		1: "NUMBER",
		2: "OBJECT",
		3: "ARRAY",
		4: "BOOL",
		5: "NULL",
	}
	Attribute_Type_value = map[string]int32{
		"STRING": 0,
		"NUMBER": 1,
		"OBJECT": 2,
		"ARRAY":  3,
		"BOOL":   4,
		"NULL":   5,
	}
)

Enum value maps for Attribute_Type.

View Source
var (
	Agent_Status_name = map[int32]string{
		0: "STARTING",
		1: "RUNNING",
		2: "ERROR",
		3: "TERMINATED",
	}
	Agent_Status_value = map[string]int32{
		"STARTING":   0,
		"RUNNING":    1,
		"ERROR":      2,
		"TERMINATED": 3,
	}
)

Enum value maps for Agent_Status.

View Source
var File_canis_apiserver_proto protoreflect.FileDescriptor

Functions

func RegisterAdminHandler

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

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

func RegisterAdminHandlerClient

func RegisterAdminHandlerClient(ctx context.Context, mux *runtime.ServeMux, client AdminClient) error

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

func RegisterAdminHandlerFromEndpoint

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

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

func RegisterAdminHandlerServer

func RegisterAdminHandlerServer(ctx context.Context, mux *runtime.ServeMux, server AdminServer) error

RegisterAdminHandlerServer registers the http handlers for service Admin to "mux". UnaryRPC :call AdminServer 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 RegisterAdminHandlerFromEndpoint instead.

func RegisterAdminServer

func RegisterAdminServer(s *grpc.Server, srv AdminServer)

Types

type AdminClient

type AdminClient interface {
	CreateSchema(ctx context.Context, in *CreateSchemaRequest, opts ...grpc.CallOption) (*CreateSchemaResponse, error)
	ListSchema(ctx context.Context, in *ListSchemaRequest, opts ...grpc.CallOption) (*ListSchemaResponse, error)
	GetSchema(ctx context.Context, in *GetSchemaRequest, opts ...grpc.CallOption) (*GetSchemaResponse, error)
	DeleteSchema(ctx context.Context, in *DeleteSchemaRequest, opts ...grpc.CallOption) (*DeleteSchemaResponse, error)
	UpdateSchema(ctx context.Context, in *UpdateSchemaRequest, opts ...grpc.CallOption) (*UpdateSchemaResponse, error)
	IssueCredential(ctx context.Context, in *common.IssueCredentialRequest, opts ...grpc.CallOption) (*common.IssueCredentialResponse, error)
	CreateAgent(ctx context.Context, in *CreateAgentRequest, opts ...grpc.CallOption) (*CreateAgentResponse, error)
	ListAgent(ctx context.Context, in *ListAgentRequest, opts ...grpc.CallOption) (*ListAgentResponse, error)
	GetAgent(ctx context.Context, in *GetAgentRequest, opts ...grpc.CallOption) (*GetAgentResponse, error)
	DeleteAgent(ctx context.Context, in *DeleteAgentRequest, opts ...grpc.CallOption) (*DeleteAgentResponse, error)
	UpdateAgent(ctx context.Context, in *UpdateAgentRequest, opts ...grpc.CallOption) (*UpdateAgentResponse, error)
	GetAgentInvitation(ctx context.Context, in *common.InvitationRequest, opts ...grpc.CallOption) (*common.InvitationResponse, error)
	AcceptInvitation(ctx context.Context, in *common.AcceptInvitationRequest, opts ...grpc.CallOption) (*common.AcceptInvitationResponse, error)
	ListConnections(ctx context.Context, in *ListConnectionRequest, opts ...grpc.CallOption) (*ListConnectionResponse, error)
	DeleteConnection(ctx context.Context, in *DeleteConnectionRequest, opts ...grpc.CallOption) (*DeleteConnectionResponse, error)
	RequestPresentation(ctx context.Context, in *common.RequestPresentationRequest, opts ...grpc.CallOption) (*common.RequestPresentationResponse, error)
	SeedPublicDID(ctx context.Context, in *SeedPublicDIDRequest, opts ...grpc.CallOption) (*SeedPublicDIDResponse, error)
	CreateWebhook(ctx context.Context, in *CreateWebhookRequest, opts ...grpc.CallOption) (*CreateWebhookResponse, error)
	ListWebhook(ctx context.Context, in *ListWebhookRequest, opts ...grpc.CallOption) (*ListWebhookResponse, error)
	DeleteWebhook(ctx context.Context, in *DeleteWebhookRequest, opts ...grpc.CallOption) (*DeleteWebhookResponse, error)
}

AdminClient is the client API for Admin service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewAdminClient

func NewAdminClient(cc grpc.ClientConnInterface) AdminClient

type AdminServer

type AdminServer interface {
	CreateSchema(context.Context, *CreateSchemaRequest) (*CreateSchemaResponse, error)
	ListSchema(context.Context, *ListSchemaRequest) (*ListSchemaResponse, error)
	GetSchema(context.Context, *GetSchemaRequest) (*GetSchemaResponse, error)
	DeleteSchema(context.Context, *DeleteSchemaRequest) (*DeleteSchemaResponse, error)
	UpdateSchema(context.Context, *UpdateSchemaRequest) (*UpdateSchemaResponse, error)
	IssueCredential(context.Context, *common.IssueCredentialRequest) (*common.IssueCredentialResponse, error)
	CreateAgent(context.Context, *CreateAgentRequest) (*CreateAgentResponse, error)
	ListAgent(context.Context, *ListAgentRequest) (*ListAgentResponse, error)
	GetAgent(context.Context, *GetAgentRequest) (*GetAgentResponse, error)
	DeleteAgent(context.Context, *DeleteAgentRequest) (*DeleteAgentResponse, error)
	UpdateAgent(context.Context, *UpdateAgentRequest) (*UpdateAgentResponse, error)
	GetAgentInvitation(context.Context, *common.InvitationRequest) (*common.InvitationResponse, error)
	AcceptInvitation(context.Context, *common.AcceptInvitationRequest) (*common.AcceptInvitationResponse, error)
	ListConnections(context.Context, *ListConnectionRequest) (*ListConnectionResponse, error)
	DeleteConnection(context.Context, *DeleteConnectionRequest) (*DeleteConnectionResponse, error)
	RequestPresentation(context.Context, *common.RequestPresentationRequest) (*common.RequestPresentationResponse, error)
	SeedPublicDID(context.Context, *SeedPublicDIDRequest) (*SeedPublicDIDResponse, error)
	CreateWebhook(context.Context, *CreateWebhookRequest) (*CreateWebhookResponse, error)
	ListWebhook(context.Context, *ListWebhookRequest) (*ListWebhookResponse, error)
	DeleteWebhook(context.Context, *DeleteWebhookRequest) (*DeleteWebhookResponse, error)
}

AdminServer is the server API for Admin service.

type Agent

type Agent struct {
	Id                    string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                  string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	EndorsableSchemaNames []string     `` /* 126-byte string literal not displayed */
	Status                Agent_Status `protobuf:"varint,4,opt,name=status,proto3,enum=apiserver.Agent_Status" json:"status,omitempty"`
	PublicDid             bool         `protobuf:"varint,5,opt,name=public_did,json=publicDid,proto3" json:"public_did,omitempty"`
	// contains filtered or unexported fields
}

func (*Agent) Descriptor deprecated

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

Deprecated: Use Agent.ProtoReflect.Descriptor instead.

func (*Agent) GetEndorsableSchemaNames

func (x *Agent) GetEndorsableSchemaNames() []string

func (*Agent) GetId

func (x *Agent) GetId() string

func (*Agent) GetName

func (x *Agent) GetName() string

func (*Agent) GetPublicDid

func (x *Agent) GetPublicDid() bool

func (*Agent) GetStatus

func (x *Agent) GetStatus() Agent_Status

func (*Agent) ProtoMessage

func (*Agent) ProtoMessage()

func (*Agent) ProtoReflect

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

func (*Agent) Reset

func (x *Agent) Reset()

func (*Agent) String

func (x *Agent) String() string

type Agent_Status

type Agent_Status int32
const (
	Agent_STARTING   Agent_Status = 0
	Agent_RUNNING    Agent_Status = 1
	Agent_ERROR      Agent_Status = 2
	Agent_TERMINATED Agent_Status = 3
)

func (Agent_Status) Descriptor

func (Agent_Status) Enum

func (x Agent_Status) Enum() *Agent_Status

func (Agent_Status) EnumDescriptor deprecated

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

Deprecated: Use Agent_Status.Descriptor instead.

func (Agent_Status) Number

func (Agent_Status) String

func (x Agent_Status) String() string

func (Agent_Status) Type

type Attribute

type Attribute struct {
	Name string         `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type Attribute_Type `protobuf:"varint,2,opt,name=type,proto3,enum=apiserver.Attribute_Type" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*Attribute) Descriptor deprecated

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

Deprecated: Use Attribute.ProtoReflect.Descriptor instead.

func (*Attribute) GetName

func (x *Attribute) GetName() string

func (*Attribute) GetType

func (x *Attribute) GetType() Attribute_Type

func (*Attribute) ProtoMessage

func (*Attribute) ProtoMessage()

func (*Attribute) ProtoReflect

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

func (*Attribute) Reset

func (x *Attribute) Reset()

func (*Attribute) String

func (x *Attribute) String() string

type Attribute_Type

type Attribute_Type int32
const (
	Attribute_STRING Attribute_Type = 0
	Attribute_NUMBER Attribute_Type = 1
	Attribute_OBJECT Attribute_Type = 2
	Attribute_ARRAY  Attribute_Type = 3
	Attribute_BOOL   Attribute_Type = 4
	Attribute_NULL   Attribute_Type = 5
)

func (Attribute_Type) Descriptor

func (Attribute_Type) Enum

func (x Attribute_Type) Enum() *Attribute_Type

func (Attribute_Type) EnumDescriptor deprecated

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

Deprecated: Use Attribute_Type.Descriptor instead.

func (Attribute_Type) Number

func (Attribute_Type) String

func (x Attribute_Type) String() string

func (Attribute_Type) Type

type Connection

type Connection struct {
	TheirLabel   string `protobuf:"bytes,1,opt,name=their_label,json=theirLabel,proto3" json:"their_label,omitempty"`
	MyLabel      string `protobuf:"bytes,2,opt,name=my_label,json=myLabel,proto3" json:"my_label,omitempty"`
	TheirDid     string `protobuf:"bytes,3,opt,name=their_did,json=theirDid,proto3" json:"their_did,omitempty"`
	MyDid        string `protobuf:"bytes,4,opt,name=my_did,json=myDid,proto3" json:"my_did,omitempty"`
	ConnectionId string `protobuf:"bytes,5,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	ExternalId   string `protobuf:"bytes,6,opt,name=external_id,json=externalId,proto3" json:"external_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Connection) Descriptor deprecated

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

Deprecated: Use Connection.ProtoReflect.Descriptor instead.

func (*Connection) GetConnectionId

func (x *Connection) GetConnectionId() string

func (*Connection) GetExternalId

func (x *Connection) GetExternalId() string

func (*Connection) GetMyDid

func (x *Connection) GetMyDid() string

func (*Connection) GetMyLabel

func (x *Connection) GetMyLabel() string

func (*Connection) GetTheirDid

func (x *Connection) GetTheirDid() string

func (*Connection) GetTheirLabel

func (x *Connection) GetTheirLabel() string

func (*Connection) ProtoMessage

func (*Connection) ProtoMessage()

func (*Connection) ProtoReflect

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

func (*Connection) Reset

func (x *Connection) Reset()

func (*Connection) String

func (x *Connection) String() string

type CreateAgentRequest

type CreateAgentRequest struct {
	Agent *NewAgent `protobuf:"bytes,1,opt,name=agent,proto3" json:"agent,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAgentRequest) Descriptor deprecated

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

Deprecated: Use CreateAgentRequest.ProtoReflect.Descriptor instead.

func (*CreateAgentRequest) GetAgent

func (x *CreateAgentRequest) GetAgent() *NewAgent

func (*CreateAgentRequest) ProtoMessage

func (*CreateAgentRequest) ProtoMessage()

func (*CreateAgentRequest) ProtoReflect

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

func (*CreateAgentRequest) Reset

func (x *CreateAgentRequest) Reset()

func (*CreateAgentRequest) String

func (x *CreateAgentRequest) String() string

type CreateAgentResponse

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

func (*CreateAgentResponse) Descriptor deprecated

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

Deprecated: Use CreateAgentResponse.ProtoReflect.Descriptor instead.

func (*CreateAgentResponse) GetId

func (x *CreateAgentResponse) GetId() string

func (*CreateAgentResponse) ProtoMessage

func (*CreateAgentResponse) ProtoMessage()

func (*CreateAgentResponse) ProtoReflect

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

func (*CreateAgentResponse) Reset

func (x *CreateAgentResponse) Reset()

func (*CreateAgentResponse) String

func (x *CreateAgentResponse) String() string

type CreateSchemaRequest

type CreateSchemaRequest struct {
	Schema *NewSchema `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateSchemaRequest) Descriptor deprecated

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

Deprecated: Use CreateSchemaRequest.ProtoReflect.Descriptor instead.

func (*CreateSchemaRequest) GetSchema

func (x *CreateSchemaRequest) GetSchema() *NewSchema

func (*CreateSchemaRequest) ProtoMessage

func (*CreateSchemaRequest) ProtoMessage()

func (*CreateSchemaRequest) ProtoReflect

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

func (*CreateSchemaRequest) Reset

func (x *CreateSchemaRequest) Reset()

func (*CreateSchemaRequest) String

func (x *CreateSchemaRequest) String() string

type CreateSchemaResponse

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

func (*CreateSchemaResponse) Descriptor deprecated

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

Deprecated: Use CreateSchemaResponse.ProtoReflect.Descriptor instead.

func (*CreateSchemaResponse) GetId

func (x *CreateSchemaResponse) GetId() string

func (*CreateSchemaResponse) ProtoMessage

func (*CreateSchemaResponse) ProtoMessage()

func (*CreateSchemaResponse) ProtoReflect

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

func (*CreateSchemaResponse) Reset

func (x *CreateSchemaResponse) Reset()

func (*CreateSchemaResponse) String

func (x *CreateSchemaResponse) String() string

type CreateWebhookRequest

type CreateWebhookRequest struct {
	Id      string     `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Webhook []*Webhook `protobuf:"bytes,2,rep,name=webhook,proto3" json:"webhook,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateWebhookRequest) Descriptor deprecated

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

Deprecated: Use CreateWebhookRequest.ProtoReflect.Descriptor instead.

func (*CreateWebhookRequest) GetId

func (x *CreateWebhookRequest) GetId() string

func (*CreateWebhookRequest) GetWebhook

func (x *CreateWebhookRequest) GetWebhook() []*Webhook

func (*CreateWebhookRequest) ProtoMessage

func (*CreateWebhookRequest) ProtoMessage()

func (*CreateWebhookRequest) ProtoReflect

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

func (*CreateWebhookRequest) Reset

func (x *CreateWebhookRequest) Reset()

func (*CreateWebhookRequest) String

func (x *CreateWebhookRequest) String() string

type CreateWebhookResponse

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

func (*CreateWebhookResponse) Descriptor deprecated

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

Deprecated: Use CreateWebhookResponse.ProtoReflect.Descriptor instead.

func (*CreateWebhookResponse) ProtoMessage

func (*CreateWebhookResponse) ProtoMessage()

func (*CreateWebhookResponse) ProtoReflect

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

func (*CreateWebhookResponse) Reset

func (x *CreateWebhookResponse) Reset()

func (*CreateWebhookResponse) String

func (x *CreateWebhookResponse) String() string

type DeleteAgentRequest

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

func (*DeleteAgentRequest) Descriptor deprecated

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

Deprecated: Use DeleteAgentRequest.ProtoReflect.Descriptor instead.

func (*DeleteAgentRequest) GetId

func (x *DeleteAgentRequest) GetId() string

func (*DeleteAgentRequest) ProtoMessage

func (*DeleteAgentRequest) ProtoMessage()

func (*DeleteAgentRequest) ProtoReflect

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

func (*DeleteAgentRequest) Reset

func (x *DeleteAgentRequest) Reset()

func (*DeleteAgentRequest) String

func (x *DeleteAgentRequest) String() string

type DeleteAgentResponse

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

func (*DeleteAgentResponse) Descriptor deprecated

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

Deprecated: Use DeleteAgentResponse.ProtoReflect.Descriptor instead.

func (*DeleteAgentResponse) ProtoMessage

func (*DeleteAgentResponse) ProtoMessage()

func (*DeleteAgentResponse) ProtoReflect

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

func (*DeleteAgentResponse) Reset

func (x *DeleteAgentResponse) Reset()

func (*DeleteAgentResponse) String

func (x *DeleteAgentResponse) String() string

type DeleteConnectionRequest

type DeleteConnectionRequest struct {
	AgentName  string `protobuf:"bytes,1,opt,name=agent_name,json=agentName,proto3" json:"agent_name,omitempty"`
	ExternalId string `protobuf:"bytes,2,opt,name=external_id,json=externalId,proto3" json:"external_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteConnectionRequest) Descriptor deprecated

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

Deprecated: Use DeleteConnectionRequest.ProtoReflect.Descriptor instead.

func (*DeleteConnectionRequest) GetAgentName

func (x *DeleteConnectionRequest) GetAgentName() string

func (*DeleteConnectionRequest) GetExternalId

func (x *DeleteConnectionRequest) GetExternalId() string

func (*DeleteConnectionRequest) ProtoMessage

func (*DeleteConnectionRequest) ProtoMessage()

func (*DeleteConnectionRequest) ProtoReflect

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

func (*DeleteConnectionRequest) Reset

func (x *DeleteConnectionRequest) Reset()

func (*DeleteConnectionRequest) String

func (x *DeleteConnectionRequest) String() string

type DeleteConnectionResponse

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

func (*DeleteConnectionResponse) Descriptor deprecated

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

Deprecated: Use DeleteConnectionResponse.ProtoReflect.Descriptor instead.

func (*DeleteConnectionResponse) ProtoMessage

func (*DeleteConnectionResponse) ProtoMessage()

func (*DeleteConnectionResponse) ProtoReflect

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

func (*DeleteConnectionResponse) Reset

func (x *DeleteConnectionResponse) Reset()

func (*DeleteConnectionResponse) String

func (x *DeleteConnectionResponse) String() string

type DeleteSchemaRequest

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

func (*DeleteSchemaRequest) Descriptor deprecated

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

Deprecated: Use DeleteSchemaRequest.ProtoReflect.Descriptor instead.

func (*DeleteSchemaRequest) GetId

func (x *DeleteSchemaRequest) GetId() string

func (*DeleteSchemaRequest) ProtoMessage

func (*DeleteSchemaRequest) ProtoMessage()

func (*DeleteSchemaRequest) ProtoReflect

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

func (*DeleteSchemaRequest) Reset

func (x *DeleteSchemaRequest) Reset()

func (*DeleteSchemaRequest) String

func (x *DeleteSchemaRequest) String() string

type DeleteSchemaResponse

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

func (*DeleteSchemaResponse) Descriptor deprecated

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

Deprecated: Use DeleteSchemaResponse.ProtoReflect.Descriptor instead.

func (*DeleteSchemaResponse) ProtoMessage

func (*DeleteSchemaResponse) ProtoMessage()

func (*DeleteSchemaResponse) ProtoReflect

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

func (*DeleteSchemaResponse) Reset

func (x *DeleteSchemaResponse) Reset()

func (*DeleteSchemaResponse) String

func (x *DeleteSchemaResponse) String() string

type DeleteWebhookRequest

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

func (*DeleteWebhookRequest) Descriptor deprecated

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

Deprecated: Use DeleteWebhookRequest.ProtoReflect.Descriptor instead.

func (*DeleteWebhookRequest) GetId

func (x *DeleteWebhookRequest) GetId() string

func (*DeleteWebhookRequest) ProtoMessage

func (*DeleteWebhookRequest) ProtoMessage()

func (*DeleteWebhookRequest) ProtoReflect

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

func (*DeleteWebhookRequest) Reset

func (x *DeleteWebhookRequest) Reset()

func (*DeleteWebhookRequest) String

func (x *DeleteWebhookRequest) String() string

type DeleteWebhookResponse

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

func (*DeleteWebhookResponse) Descriptor deprecated

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

Deprecated: Use DeleteWebhookResponse.ProtoReflect.Descriptor instead.

func (*DeleteWebhookResponse) ProtoMessage

func (*DeleteWebhookResponse) ProtoMessage()

func (*DeleteWebhookResponse) ProtoReflect

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

func (*DeleteWebhookResponse) Reset

func (x *DeleteWebhookResponse) Reset()

func (*DeleteWebhookResponse) String

func (x *DeleteWebhookResponse) String() string

type GetAgentRequest

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

func (*GetAgentRequest) Descriptor deprecated

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

Deprecated: Use GetAgentRequest.ProtoReflect.Descriptor instead.

func (*GetAgentRequest) GetId

func (x *GetAgentRequest) GetId() string

func (*GetAgentRequest) ProtoMessage

func (*GetAgentRequest) ProtoMessage()

func (*GetAgentRequest) ProtoReflect

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

func (*GetAgentRequest) Reset

func (x *GetAgentRequest) Reset()

func (*GetAgentRequest) String

func (x *GetAgentRequest) String() string

type GetAgentResponse

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

func (*GetAgentResponse) Descriptor deprecated

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

Deprecated: Use GetAgentResponse.ProtoReflect.Descriptor instead.

func (*GetAgentResponse) GetAgent

func (x *GetAgentResponse) GetAgent() *Agent

func (*GetAgentResponse) ProtoMessage

func (*GetAgentResponse) ProtoMessage()

func (*GetAgentResponse) ProtoReflect

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

func (*GetAgentResponse) Reset

func (x *GetAgentResponse) Reset()

func (*GetAgentResponse) String

func (x *GetAgentResponse) String() string

type GetSchemaRequest

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

func (*GetSchemaRequest) Descriptor deprecated

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

Deprecated: Use GetSchemaRequest.ProtoReflect.Descriptor instead.

func (*GetSchemaRequest) GetId

func (x *GetSchemaRequest) GetId() string

func (*GetSchemaRequest) ProtoMessage

func (*GetSchemaRequest) ProtoMessage()

func (*GetSchemaRequest) ProtoReflect

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

func (*GetSchemaRequest) Reset

func (x *GetSchemaRequest) Reset()

func (*GetSchemaRequest) String

func (x *GetSchemaRequest) String() string

type GetSchemaResponse

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

func (*GetSchemaResponse) Descriptor deprecated

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

Deprecated: Use GetSchemaResponse.ProtoReflect.Descriptor instead.

func (*GetSchemaResponse) GetSchema

func (x *GetSchemaResponse) GetSchema() *Schema

func (*GetSchemaResponse) ProtoMessage

func (*GetSchemaResponse) ProtoMessage()

func (*GetSchemaResponse) ProtoReflect

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

func (*GetSchemaResponse) Reset

func (x *GetSchemaResponse) Reset()

func (*GetSchemaResponse) String

func (x *GetSchemaResponse) String() string

type LaunchAgentRequest

type LaunchAgentRequest struct {
	Id   string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Wait bool   `protobuf:"varint,2,opt,name=wait,proto3" json:"wait,omitempty"`
	// contains filtered or unexported fields
}

func (*LaunchAgentRequest) Descriptor deprecated

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

Deprecated: Use LaunchAgentRequest.ProtoReflect.Descriptor instead.

func (*LaunchAgentRequest) GetId

func (x *LaunchAgentRequest) GetId() string

func (*LaunchAgentRequest) GetWait

func (x *LaunchAgentRequest) GetWait() bool

func (*LaunchAgentRequest) ProtoMessage

func (*LaunchAgentRequest) ProtoMessage()

func (*LaunchAgentRequest) ProtoReflect

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

func (*LaunchAgentRequest) Reset

func (x *LaunchAgentRequest) Reset()

func (*LaunchAgentRequest) String

func (x *LaunchAgentRequest) String() string

type LaunchAgentResponse

type LaunchAgentResponse struct {
	Status Agent_Status `protobuf:"varint,5,opt,name=status,proto3,enum=apiserver.Agent_Status" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*LaunchAgentResponse) Descriptor deprecated

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

Deprecated: Use LaunchAgentResponse.ProtoReflect.Descriptor instead.

func (*LaunchAgentResponse) GetStatus

func (x *LaunchAgentResponse) GetStatus() Agent_Status

func (*LaunchAgentResponse) ProtoMessage

func (*LaunchAgentResponse) ProtoMessage()

func (*LaunchAgentResponse) ProtoReflect

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

func (*LaunchAgentResponse) Reset

func (x *LaunchAgentResponse) Reset()

func (*LaunchAgentResponse) String

func (x *LaunchAgentResponse) String() string

type ListAgentRequest

type ListAgentRequest struct {
	Start    int64  `protobuf:"varint,1,opt,name=start,proto3" json:"start,omitempty"`
	PageSize int64  `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	Name     string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAgentRequest) Descriptor deprecated

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

Deprecated: Use ListAgentRequest.ProtoReflect.Descriptor instead.

func (*ListAgentRequest) GetName

func (x *ListAgentRequest) GetName() string

func (*ListAgentRequest) GetPageSize

func (x *ListAgentRequest) GetPageSize() int64

func (*ListAgentRequest) GetStart

func (x *ListAgentRequest) GetStart() int64

func (*ListAgentRequest) ProtoMessage

func (*ListAgentRequest) ProtoMessage()

func (*ListAgentRequest) ProtoReflect

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

func (*ListAgentRequest) Reset

func (x *ListAgentRequest) Reset()

func (*ListAgentRequest) String

func (x *ListAgentRequest) String() string

type ListAgentResponse

type ListAgentResponse struct {
	Count  int64    `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	Agents []*Agent `protobuf:"bytes,2,rep,name=agents,proto3" json:"agents,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAgentResponse) Descriptor deprecated

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

Deprecated: Use ListAgentResponse.ProtoReflect.Descriptor instead.

func (*ListAgentResponse) GetAgents

func (x *ListAgentResponse) GetAgents() []*Agent

func (*ListAgentResponse) GetCount

func (x *ListAgentResponse) GetCount() int64

func (*ListAgentResponse) ProtoMessage

func (*ListAgentResponse) ProtoMessage()

func (*ListAgentResponse) ProtoReflect

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

func (*ListAgentResponse) Reset

func (x *ListAgentResponse) Reset()

func (*ListAgentResponse) String

func (x *ListAgentResponse) String() string

type ListConnectionRequest

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

func (*ListConnectionRequest) Descriptor deprecated

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

Deprecated: Use ListConnectionRequest.ProtoReflect.Descriptor instead.

func (*ListConnectionRequest) GetAgentName

func (x *ListConnectionRequest) GetAgentName() string

func (*ListConnectionRequest) ProtoMessage

func (*ListConnectionRequest) ProtoMessage()

func (*ListConnectionRequest) ProtoReflect

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

func (*ListConnectionRequest) Reset

func (x *ListConnectionRequest) Reset()

func (*ListConnectionRequest) String

func (x *ListConnectionRequest) String() string

type ListConnectionResponse

type ListConnectionResponse struct {
	Connections []*Connection `protobuf:"bytes,1,rep,name=connections,proto3" json:"connections,omitempty"`
	// contains filtered or unexported fields
}

func (*ListConnectionResponse) Descriptor deprecated

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

Deprecated: Use ListConnectionResponse.ProtoReflect.Descriptor instead.

func (*ListConnectionResponse) GetConnections

func (x *ListConnectionResponse) GetConnections() []*Connection

func (*ListConnectionResponse) ProtoMessage

func (*ListConnectionResponse) ProtoMessage()

func (*ListConnectionResponse) ProtoReflect

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

func (*ListConnectionResponse) Reset

func (x *ListConnectionResponse) Reset()

func (*ListConnectionResponse) String

func (x *ListConnectionResponse) String() string

type ListSchemaRequest

type ListSchemaRequest struct {
	Start    int64  `protobuf:"varint,1,opt,name=start,proto3" json:"start,omitempty"`
	PageSize int64  `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	Name     string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Version  string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*ListSchemaRequest) Descriptor deprecated

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

Deprecated: Use ListSchemaRequest.ProtoReflect.Descriptor instead.

func (*ListSchemaRequest) GetName

func (x *ListSchemaRequest) GetName() string

func (*ListSchemaRequest) GetPageSize

func (x *ListSchemaRequest) GetPageSize() int64

func (*ListSchemaRequest) GetStart

func (x *ListSchemaRequest) GetStart() int64

func (*ListSchemaRequest) GetVersion

func (x *ListSchemaRequest) GetVersion() string

func (*ListSchemaRequest) ProtoMessage

func (*ListSchemaRequest) ProtoMessage()

func (*ListSchemaRequest) ProtoReflect

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

func (*ListSchemaRequest) Reset

func (x *ListSchemaRequest) Reset()

func (*ListSchemaRequest) String

func (x *ListSchemaRequest) String() string

type ListSchemaResponse

type ListSchemaResponse struct {
	Count  int64     `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	Schema []*Schema `protobuf:"bytes,2,rep,name=schema,proto3" json:"schema,omitempty"`
	// contains filtered or unexported fields
}

func (*ListSchemaResponse) Descriptor deprecated

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

Deprecated: Use ListSchemaResponse.ProtoReflect.Descriptor instead.

func (*ListSchemaResponse) GetCount

func (x *ListSchemaResponse) GetCount() int64

func (*ListSchemaResponse) GetSchema

func (x *ListSchemaResponse) GetSchema() []*Schema

func (*ListSchemaResponse) ProtoMessage

func (*ListSchemaResponse) ProtoMessage()

func (*ListSchemaResponse) ProtoReflect

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

func (*ListSchemaResponse) Reset

func (x *ListSchemaResponse) Reset()

func (*ListSchemaResponse) String

func (x *ListSchemaResponse) String() string

type ListWebhookRequest

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

func (*ListWebhookRequest) Descriptor deprecated

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

Deprecated: Use ListWebhookRequest.ProtoReflect.Descriptor instead.

func (*ListWebhookRequest) GetId

func (x *ListWebhookRequest) GetId() string

func (*ListWebhookRequest) ProtoMessage

func (*ListWebhookRequest) ProtoMessage()

func (*ListWebhookRequest) ProtoReflect

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

func (*ListWebhookRequest) Reset

func (x *ListWebhookRequest) Reset()

func (*ListWebhookRequest) String

func (x *ListWebhookRequest) String() string

type ListWebhookResponse

type ListWebhookResponse struct {
	Hooks []*Webhook `protobuf:"bytes,1,rep,name=hooks,proto3" json:"hooks,omitempty"`
	// contains filtered or unexported fields
}

func (*ListWebhookResponse) Descriptor deprecated

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

Deprecated: Use ListWebhookResponse.ProtoReflect.Descriptor instead.

func (*ListWebhookResponse) GetHooks

func (x *ListWebhookResponse) GetHooks() []*Webhook

func (*ListWebhookResponse) ProtoMessage

func (*ListWebhookResponse) ProtoMessage()

func (*ListWebhookResponse) ProtoReflect

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

func (*ListWebhookResponse) Reset

func (x *ListWebhookResponse) Reset()

func (*ListWebhookResponse) String

func (x *ListWebhookResponse) String() string

type NewAgent

type NewAgent struct {
	Name                  string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	EndorsableSchemaNames []string `` /* 126-byte string literal not displayed */
	PublicDid             bool     `protobuf:"varint,3,opt,name=public_did,json=publicDid,proto3" json:"public_did,omitempty"`
	// contains filtered or unexported fields
}

func (*NewAgent) Descriptor deprecated

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

Deprecated: Use NewAgent.ProtoReflect.Descriptor instead.

func (*NewAgent) GetEndorsableSchemaNames

func (x *NewAgent) GetEndorsableSchemaNames() []string

func (*NewAgent) GetName

func (x *NewAgent) GetName() string

func (*NewAgent) GetPublicDid

func (x *NewAgent) GetPublicDid() bool

func (*NewAgent) ProtoMessage

func (*NewAgent) ProtoMessage()

func (*NewAgent) ProtoReflect

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

func (*NewAgent) Reset

func (x *NewAgent) Reset()

func (*NewAgent) String

func (x *NewAgent) String() string

type NewSchema

type NewSchema struct {
	Name       string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Version    string       `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	Type       string       `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"`
	Format     string       `protobuf:"bytes,5,opt,name=format,proto3" json:"format,omitempty"`
	Context    []string     `protobuf:"bytes,6,rep,name=context,proto3" json:"context,omitempty"`
	Attributes []*Attribute `protobuf:"bytes,7,rep,name=attributes,proto3" json:"attributes,omitempty"`
	// contains filtered or unexported fields
}

func (*NewSchema) Descriptor deprecated

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

Deprecated: Use NewSchema.ProtoReflect.Descriptor instead.

func (*NewSchema) GetAttributes

func (x *NewSchema) GetAttributes() []*Attribute

func (*NewSchema) GetContext

func (x *NewSchema) GetContext() []string

func (*NewSchema) GetFormat

func (x *NewSchema) GetFormat() string

func (*NewSchema) GetName

func (x *NewSchema) GetName() string

func (*NewSchema) GetType

func (x *NewSchema) GetType() string

func (*NewSchema) GetVersion

func (x *NewSchema) GetVersion() string

func (*NewSchema) ProtoMessage

func (*NewSchema) ProtoMessage()

func (*NewSchema) ProtoReflect

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

func (*NewSchema) Reset

func (x *NewSchema) Reset()

func (*NewSchema) String

func (x *NewSchema) String() string

type PublicDIDRequest

type PublicDIDRequest struct {
	AgentName string `protobuf:"bytes,1,opt,name=agent_name,json=agentName,proto3" json:"agent_name,omitempty"`
	Did       string `protobuf:"bytes,2,opt,name=did,proto3" json:"did,omitempty"`
	Verkey    string `protobuf:"bytes,3,opt,name=verkey,proto3" json:"verkey,omitempty"`
	// contains filtered or unexported fields
}

func (*PublicDIDRequest) Descriptor deprecated

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

Deprecated: Use PublicDIDRequest.ProtoReflect.Descriptor instead.

func (*PublicDIDRequest) GetAgentName

func (x *PublicDIDRequest) GetAgentName() string

func (*PublicDIDRequest) GetDid

func (x *PublicDIDRequest) GetDid() string

func (*PublicDIDRequest) GetVerkey

func (x *PublicDIDRequest) GetVerkey() string

func (*PublicDIDRequest) ProtoMessage

func (*PublicDIDRequest) ProtoMessage()

func (*PublicDIDRequest) ProtoReflect

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

func (*PublicDIDRequest) Reset

func (x *PublicDIDRequest) Reset()

func (*PublicDIDRequest) String

func (x *PublicDIDRequest) String() string

type PublicDIDResponse

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

func (*PublicDIDResponse) Descriptor deprecated

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

Deprecated: Use PublicDIDResponse.ProtoReflect.Descriptor instead.

func (*PublicDIDResponse) ProtoMessage

func (*PublicDIDResponse) ProtoMessage()

func (*PublicDIDResponse) ProtoReflect

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

func (*PublicDIDResponse) Reset

func (x *PublicDIDResponse) Reset()

func (*PublicDIDResponse) String

func (x *PublicDIDResponse) String() string

type Schema

type Schema struct {
	Id         string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name       string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Version    string       `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	Type       string       `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"`
	Format     string       `protobuf:"bytes,5,opt,name=format,proto3" json:"format,omitempty"`
	Context    []string     `protobuf:"bytes,6,rep,name=context,proto3" json:"context,omitempty"`
	Attributes []*Attribute `protobuf:"bytes,7,rep,name=attributes,proto3" json:"attributes,omitempty"`
	// contains filtered or unexported fields
}

func (*Schema) Descriptor deprecated

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

Deprecated: Use Schema.ProtoReflect.Descriptor instead.

func (*Schema) GetAttributes

func (x *Schema) GetAttributes() []*Attribute

func (*Schema) GetContext

func (x *Schema) GetContext() []string

func (*Schema) GetFormat

func (x *Schema) GetFormat() string

func (*Schema) GetId

func (x *Schema) GetId() string

func (*Schema) GetName

func (x *Schema) GetName() string

func (*Schema) GetType

func (x *Schema) GetType() string

func (*Schema) GetVersion

func (x *Schema) GetVersion() string

func (*Schema) ProtoMessage

func (*Schema) ProtoMessage()

func (*Schema) ProtoReflect

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

func (*Schema) Reset

func (x *Schema) Reset()

func (*Schema) String

func (x *Schema) String() string

type SeedPublicDIDRequest

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

func (*SeedPublicDIDRequest) Descriptor deprecated

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

Deprecated: Use SeedPublicDIDRequest.ProtoReflect.Descriptor instead.

func (*SeedPublicDIDRequest) GetSeed

func (x *SeedPublicDIDRequest) GetSeed() string

func (*SeedPublicDIDRequest) ProtoMessage

func (*SeedPublicDIDRequest) ProtoMessage()

func (*SeedPublicDIDRequest) ProtoReflect

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

func (*SeedPublicDIDRequest) Reset

func (x *SeedPublicDIDRequest) Reset()

func (*SeedPublicDIDRequest) String

func (x *SeedPublicDIDRequest) String() string

type SeedPublicDIDResponse

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

func (*SeedPublicDIDResponse) Descriptor deprecated

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

Deprecated: Use SeedPublicDIDResponse.ProtoReflect.Descriptor instead.

func (*SeedPublicDIDResponse) ProtoMessage

func (*SeedPublicDIDResponse) ProtoMessage()

func (*SeedPublicDIDResponse) ProtoReflect

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

func (*SeedPublicDIDResponse) Reset

func (x *SeedPublicDIDResponse) Reset()

func (*SeedPublicDIDResponse) String

func (x *SeedPublicDIDResponse) String() string

type ShutdownAgentRequest

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

func (*ShutdownAgentRequest) Descriptor deprecated

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

Deprecated: Use ShutdownAgentRequest.ProtoReflect.Descriptor instead.

func (*ShutdownAgentRequest) GetId

func (x *ShutdownAgentRequest) GetId() string

func (*ShutdownAgentRequest) ProtoMessage

func (*ShutdownAgentRequest) ProtoMessage()

func (*ShutdownAgentRequest) ProtoReflect

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

func (*ShutdownAgentRequest) Reset

func (x *ShutdownAgentRequest) Reset()

func (*ShutdownAgentRequest) String

func (x *ShutdownAgentRequest) String() string

type ShutdownAgentResponse

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

func (*ShutdownAgentResponse) Descriptor deprecated

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

Deprecated: Use ShutdownAgentResponse.ProtoReflect.Descriptor instead.

func (*ShutdownAgentResponse) ProtoMessage

func (*ShutdownAgentResponse) ProtoMessage()

func (*ShutdownAgentResponse) ProtoReflect

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

func (*ShutdownAgentResponse) Reset

func (x *ShutdownAgentResponse) Reset()

func (*ShutdownAgentResponse) String

func (x *ShutdownAgentResponse) String() string

type UnimplementedAdminServer

type UnimplementedAdminServer struct {
}

UnimplementedAdminServer can be embedded to have forward compatible implementations.

func (*UnimplementedAdminServer) CreateAgent

func (*UnimplementedAdminServer) CreateSchema

func (*UnimplementedAdminServer) CreateWebhook

func (*UnimplementedAdminServer) DeleteAgent

func (*UnimplementedAdminServer) DeleteConnection

func (*UnimplementedAdminServer) DeleteSchema

func (*UnimplementedAdminServer) DeleteWebhook

func (*UnimplementedAdminServer) GetAgent

func (*UnimplementedAdminServer) GetAgentInvitation

func (*UnimplementedAdminServer) GetSchema

func (*UnimplementedAdminServer) ListAgent

func (*UnimplementedAdminServer) ListConnections

func (*UnimplementedAdminServer) ListSchema

func (*UnimplementedAdminServer) ListWebhook

func (*UnimplementedAdminServer) SeedPublicDID

func (*UnimplementedAdminServer) UpdateAgent

func (*UnimplementedAdminServer) UpdateSchema

type UpdateAgentRequest

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

func (*UpdateAgentRequest) Descriptor deprecated

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

Deprecated: Use UpdateAgentRequest.ProtoReflect.Descriptor instead.

func (*UpdateAgentRequest) GetAgent

func (x *UpdateAgentRequest) GetAgent() *Agent

func (*UpdateAgentRequest) ProtoMessage

func (*UpdateAgentRequest) ProtoMessage()

func (*UpdateAgentRequest) ProtoReflect

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

func (*UpdateAgentRequest) Reset

func (x *UpdateAgentRequest) Reset()

func (*UpdateAgentRequest) String

func (x *UpdateAgentRequest) String() string

type UpdateAgentResponse

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

func (*UpdateAgentResponse) Descriptor deprecated

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

Deprecated: Use UpdateAgentResponse.ProtoReflect.Descriptor instead.

func (*UpdateAgentResponse) ProtoMessage

func (*UpdateAgentResponse) ProtoMessage()

func (*UpdateAgentResponse) ProtoReflect

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

func (*UpdateAgentResponse) Reset

func (x *UpdateAgentResponse) Reset()

func (*UpdateAgentResponse) String

func (x *UpdateAgentResponse) String() string

type UpdateSchemaRequest

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

func (*UpdateSchemaRequest) Descriptor deprecated

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

Deprecated: Use UpdateSchemaRequest.ProtoReflect.Descriptor instead.

func (*UpdateSchemaRequest) GetSchema

func (x *UpdateSchemaRequest) GetSchema() *Schema

func (*UpdateSchemaRequest) ProtoMessage

func (*UpdateSchemaRequest) ProtoMessage()

func (*UpdateSchemaRequest) ProtoReflect

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

func (*UpdateSchemaRequest) Reset

func (x *UpdateSchemaRequest) Reset()

func (*UpdateSchemaRequest) String

func (x *UpdateSchemaRequest) String() string

type UpdateSchemaResponse

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

func (*UpdateSchemaResponse) Descriptor deprecated

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

Deprecated: Use UpdateSchemaResponse.ProtoReflect.Descriptor instead.

func (*UpdateSchemaResponse) ProtoMessage

func (*UpdateSchemaResponse) ProtoMessage()

func (*UpdateSchemaResponse) ProtoReflect

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

func (*UpdateSchemaResponse) Reset

func (x *UpdateSchemaResponse) Reset()

func (*UpdateSchemaResponse) String

func (x *UpdateSchemaResponse) String() string

type Webhook

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

func (*Webhook) Descriptor deprecated

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

Deprecated: Use Webhook.ProtoReflect.Descriptor instead.

func (*Webhook) GetUrl

func (x *Webhook) GetUrl() string

func (*Webhook) ProtoMessage

func (*Webhook) ProtoMessage()

func (*Webhook) ProtoReflect

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

func (*Webhook) Reset

func (x *Webhook) Reset()

func (*Webhook) String

func (x *Webhook) String() string

Jump to

Keyboard shortcuts

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