Documentation ¶
Index ¶
- Variables
- type CallRequest
- func (*CallRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CallRequest) GetArgs() []*v1.Value
- func (x *CallRequest) GetFunction() *v1.Value
- func (x *CallRequest) GetIntegrationId() string
- func (x *CallRequest) GetKwargs() map[string]*v1.Value
- func (*CallRequest) ProtoMessage()
- func (x *CallRequest) ProtoReflect() protoreflect.Message
- func (x *CallRequest) Reset()
- func (x *CallRequest) String() string
- type CallResponse
- func (*CallResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CallResponse) GetError() *v11.Error
- func (x *CallResponse) GetValue() *v1.Value
- func (*CallResponse) ProtoMessage()
- func (x *CallResponse) ProtoReflect() protoreflect.Message
- func (x *CallResponse) Reset()
- func (x *CallResponse) String() string
- type GetRequest
- func (*GetRequest) Descriptor() ([]byte, []int)deprecated
- func (x *GetRequest) GetConnectionToken() string
- func (x *GetRequest) GetExecutorId() string
- func (x *GetRequest) GetIntegrationId() string
- func (*GetRequest) ProtoMessage()
- func (x *GetRequest) ProtoReflect() protoreflect.Message
- func (x *GetRequest) Reset()
- func (x *GetRequest) String() string
- type GetResponse
- type Integration
- type ListRequest
- type ListResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var File_autokitteh_integration_provider_v1_integration_proto protoreflect.FileDescriptor
View Source
var File_autokitteh_integration_provider_v1_svc_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type CallRequest ¶
type CallRequest struct { IntegrationId string `protobuf:"bytes,1,opt,name=integration_id,json=integrationId,proto3" json:"integration_id,omitempty"` Function *v1.Value `protobuf:"bytes,2,opt,name=function,proto3" json:"function,omitempty"` Args []*v1.Value `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"` Kwargs map[string]*v1.Value `` /* 153-byte string literal not displayed */ // contains filtered or unexported fields }
TODO(ENG-112): This part of the API is still being designed.
func (*CallRequest) Descriptor
deprecated
func (*CallRequest) Descriptor() ([]byte, []int)
Deprecated: Use CallRequest.ProtoReflect.Descriptor instead.
func (*CallRequest) GetArgs ¶
func (x *CallRequest) GetArgs() []*v1.Value
func (*CallRequest) GetFunction ¶
func (x *CallRequest) GetFunction() *v1.Value
func (*CallRequest) GetIntegrationId ¶
func (x *CallRequest) GetIntegrationId() string
func (*CallRequest) ProtoMessage ¶
func (*CallRequest) ProtoMessage()
func (*CallRequest) ProtoReflect ¶
func (x *CallRequest) ProtoReflect() protoreflect.Message
func (*CallRequest) Reset ¶
func (x *CallRequest) Reset()
func (*CallRequest) String ¶
func (x *CallRequest) String() string
type CallResponse ¶
type CallResponse struct { Value *v1.Value `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` Error *v11.Error `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` // contains filtered or unexported fields }
func (*CallResponse) Descriptor
deprecated
func (*CallResponse) Descriptor() ([]byte, []int)
Deprecated: Use CallResponse.ProtoReflect.Descriptor instead.
func (*CallResponse) GetError ¶
func (x *CallResponse) GetError() *v11.Error
func (*CallResponse) GetValue ¶
func (x *CallResponse) GetValue() *v1.Value
func (*CallResponse) ProtoMessage ¶
func (*CallResponse) ProtoMessage()
func (*CallResponse) ProtoReflect ¶
func (x *CallResponse) ProtoReflect() protoreflect.Message
func (*CallResponse) Reset ¶
func (x *CallResponse) Reset()
func (*CallResponse) String ¶
func (x *CallResponse) String() string
type GetRequest ¶
type GetRequest struct { IntegrationId string `protobuf:"bytes,1,opt,name=integration_id,json=integrationId,proto3" json:"integration_id,omitempty"` // TODO(ENG-113): Is this needed / available in a remote integration? ExecutorId string `protobuf:"bytes,2,opt,name=executor_id,json=executorId,proto3" json:"executor_id,omitempty"` // TODO(ENG-113): Is this needed? ConnectionToken string `protobuf:"bytes,3,opt,name=connection_token,json=connectionToken,proto3" json:"connection_token,omitempty"` // contains filtered or unexported fields }
func (*GetRequest) Descriptor
deprecated
func (*GetRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetRequest.ProtoReflect.Descriptor instead.
func (*GetRequest) GetConnectionToken ¶
func (x *GetRequest) GetConnectionToken() string
func (*GetRequest) GetExecutorId ¶
func (x *GetRequest) GetExecutorId() string
func (*GetRequest) GetIntegrationId ¶
func (x *GetRequest) GetIntegrationId() string
func (*GetRequest) ProtoMessage ¶
func (*GetRequest) ProtoMessage()
func (*GetRequest) ProtoReflect ¶
func (x *GetRequest) ProtoReflect() protoreflect.Message
func (*GetRequest) Reset ¶
func (x *GetRequest) Reset()
func (*GetRequest) String ¶
func (x *GetRequest) String() string
type GetResponse ¶
type GetResponse struct { Integration *Integration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"` // contains filtered or unexported fields }
func (*GetResponse) Descriptor
deprecated
func (*GetResponse) Descriptor() ([]byte, []int)
Deprecated: Use GetResponse.ProtoReflect.Descriptor instead.
func (*GetResponse) GetIntegration ¶
func (x *GetResponse) GetIntegration() *Integration
func (*GetResponse) ProtoMessage ¶
func (*GetResponse) ProtoMessage()
func (*GetResponse) ProtoReflect ¶
func (x *GetResponse) ProtoReflect() protoreflect.Message
func (*GetResponse) Reset ¶
func (x *GetResponse) Reset()
func (*GetResponse) String ¶
func (x *GetResponse) String() string
type Integration ¶
type Integration struct { Values map[string]*v1.Value `` /* 153-byte string literal not displayed */ // contains filtered or unexported fields }
TODO(ENG-112): This part of the API is still being designed.
func (*Integration) Descriptor
deprecated
func (*Integration) Descriptor() ([]byte, []int)
Deprecated: Use Integration.ProtoReflect.Descriptor instead.
func (*Integration) ProtoMessage ¶
func (*Integration) ProtoMessage()
func (*Integration) ProtoReflect ¶
func (x *Integration) ProtoReflect() protoreflect.Message
func (*Integration) Reset ¶
func (x *Integration) Reset()
func (*Integration) String ¶
func (x *Integration) String() string
type ListRequest ¶
type ListRequest struct {
// contains filtered or unexported fields
}
func (*ListRequest) Descriptor
deprecated
func (*ListRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListRequest.ProtoReflect.Descriptor instead.
func (*ListRequest) ProtoMessage ¶
func (*ListRequest) ProtoMessage()
func (*ListRequest) ProtoReflect ¶
func (x *ListRequest) ProtoReflect() protoreflect.Message
func (*ListRequest) Reset ¶
func (x *ListRequest) Reset()
func (*ListRequest) String ¶
func (x *ListRequest) String() string
type ListResponse ¶
type ListResponse struct { Integrations []*Integration `protobuf:"bytes,1,rep,name=integrations,proto3" json:"integrations,omitempty"` // contains filtered or unexported fields }
func (*ListResponse) Descriptor
deprecated
func (*ListResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListResponse.ProtoReflect.Descriptor instead.
func (*ListResponse) GetIntegrations ¶
func (x *ListResponse) GetIntegrations() []*Integration
func (*ListResponse) ProtoMessage ¶
func (*ListResponse) ProtoMessage()
func (*ListResponse) ProtoReflect ¶
func (x *ListResponse) ProtoReflect() protoreflect.Message
func (*ListResponse) Reset ¶
func (x *ListResponse) Reset()
func (*ListResponse) String ¶
func (x *ListResponse) String() string
Click to show internal directories.
Click to hide internal directories.