|
|
@@ -3871,17 +3871,118 @@ func (*GetDiagnosticsRequest) Descriptor() ([]byte, []int) {
|
|
|
return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{64}
|
|
|
}
|
|
|
|
|
|
+type ConfigIssue struct {
|
|
|
+ state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
+ Severity string `protobuf:"bytes,1,opt,name=severity,proto3" json:"severity,omitempty"`
|
|
|
+ Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
|
|
|
+ Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
|
|
|
+ ActionId string `protobuf:"bytes,4,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
|
|
|
+ ActionTitle string `protobuf:"bytes,5,opt,name=action_title,json=actionTitle,proto3" json:"action_title,omitempty"`
|
|
|
+ ArgumentName string `protobuf:"bytes,6,opt,name=argument_name,json=argumentName,proto3" json:"argument_name,omitempty"`
|
|
|
+ Source string `protobuf:"bytes,7,opt,name=source,proto3" json:"source,omitempty"`
|
|
|
+ ConfigFile string `protobuf:"bytes,8,opt,name=config_file,json=configFile,proto3" json:"config_file,omitempty"`
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) Reset() {
|
|
|
+ *x = ConfigIssue{}
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*ConfigIssue) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *ConfigIssue) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
|
|
|
+ if x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+// Deprecated: Use ConfigIssue.ProtoReflect.Descriptor instead.
|
|
|
+func (*ConfigIssue) Descriptor() ([]byte, []int) {
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{65}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetSeverity() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Severity
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetCode() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Code
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetMessage() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Message
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetActionId() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ActionId
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetActionTitle() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ActionTitle
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetArgumentName() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ArgumentName
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetSource() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Source
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *ConfigIssue) GetConfigFile() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ConfigFile
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
type GetDiagnosticsResponse struct {
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
SshFoundKey string `protobuf:"bytes,1,opt,name=SshFoundKey,proto3" json:"SshFoundKey,omitempty"`
|
|
|
SshFoundConfig string `protobuf:"bytes,2,opt,name=SshFoundConfig,proto3" json:"SshFoundConfig,omitempty"`
|
|
|
+ ConfigIssues []*ConfigIssue `protobuf:"bytes,3,rep,name=config_issues,json=configIssues,proto3" json:"config_issues,omitempty"`
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
}
|
|
|
|
|
|
func (x *GetDiagnosticsResponse) Reset() {
|
|
|
*x = GetDiagnosticsResponse{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -3893,7 +3994,7 @@ func (x *GetDiagnosticsResponse) String() string {
|
|
|
func (*GetDiagnosticsResponse) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetDiagnosticsResponse) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -3906,7 +4007,7 @@ func (x *GetDiagnosticsResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use GetDiagnosticsResponse.ProtoReflect.Descriptor instead.
|
|
|
func (*GetDiagnosticsResponse) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{65}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{66}
|
|
|
}
|
|
|
|
|
|
func (x *GetDiagnosticsResponse) GetSshFoundKey() string {
|
|
|
@@ -3923,6 +4024,13 @@ func (x *GetDiagnosticsResponse) GetSshFoundConfig() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
+func (x *GetDiagnosticsResponse) GetConfigIssues() []*ConfigIssue {
|
|
|
+ if x != nil {
|
|
|
+ return x.ConfigIssues
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
type InitRequest struct {
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
@@ -3931,7 +4039,7 @@ type InitRequest struct {
|
|
|
|
|
|
func (x *InitRequest) Reset() {
|
|
|
*x = InitRequest{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -3943,7 +4051,7 @@ func (x *InitRequest) String() string {
|
|
|
func (*InitRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *InitRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -3956,7 +4064,7 @@ func (x *InitRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use InitRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*InitRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{66}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{67}
|
|
|
}
|
|
|
|
|
|
type InitResponse struct {
|
|
|
@@ -3986,13 +4094,14 @@ type InitResponse struct {
|
|
|
LoginRequired bool `protobuf:"varint,23,opt,name=login_required,json=loginRequired,proto3" json:"login_required,omitempty"`
|
|
|
AvailableThemes []string `protobuf:"bytes,24,rep,name=available_themes,json=availableThemes,proto3" json:"available_themes,omitempty"` // List of available theme names
|
|
|
ShowNavigateOnStartIcons bool `protobuf:"varint,25,opt,name=show_navigate_on_start_icons,json=showNavigateOnStartIcons,proto3" json:"show_navigate_on_start_icons,omitempty"`
|
|
|
+ ConfigIssueCount int32 `protobuf:"varint,26,opt,name=config_issue_count,json=configIssueCount,proto3" json:"config_issue_count,omitempty"`
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
}
|
|
|
|
|
|
func (x *InitResponse) Reset() {
|
|
|
*x = InitResponse{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4004,7 +4113,7 @@ func (x *InitResponse) String() string {
|
|
|
func (*InitResponse) ProtoMessage() {}
|
|
|
|
|
|
func (x *InitResponse) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4017,7 +4126,7 @@ func (x *InitResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use InitResponse.ProtoReflect.Descriptor instead.
|
|
|
func (*InitResponse) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{67}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{68}
|
|
|
}
|
|
|
|
|
|
func (x *InitResponse) GetShowFooter() bool {
|
|
|
@@ -4195,6 +4304,13 @@ func (x *InitResponse) GetShowNavigateOnStartIcons() bool {
|
|
|
return false
|
|
|
}
|
|
|
|
|
|
+func (x *InitResponse) GetConfigIssueCount() int32 {
|
|
|
+ if x != nil {
|
|
|
+ return x.ConfigIssueCount
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
type AdditionalLink struct {
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
|
|
|
@@ -4205,7 +4321,7 @@ type AdditionalLink struct {
|
|
|
|
|
|
func (x *AdditionalLink) Reset() {
|
|
|
*x = AdditionalLink{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[69]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4217,7 +4333,7 @@ func (x *AdditionalLink) String() string {
|
|
|
func (*AdditionalLink) ProtoMessage() {}
|
|
|
|
|
|
func (x *AdditionalLink) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[69]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4230,7 +4346,7 @@ func (x *AdditionalLink) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use AdditionalLink.ProtoReflect.Descriptor instead.
|
|
|
func (*AdditionalLink) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{68}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{69}
|
|
|
}
|
|
|
|
|
|
func (x *AdditionalLink) GetTitle() string {
|
|
|
@@ -4258,7 +4374,7 @@ type OAuth2Provider struct {
|
|
|
|
|
|
func (x *OAuth2Provider) Reset() {
|
|
|
*x = OAuth2Provider{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[69]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[70]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4270,7 +4386,7 @@ func (x *OAuth2Provider) String() string {
|
|
|
func (*OAuth2Provider) ProtoMessage() {}
|
|
|
|
|
|
func (x *OAuth2Provider) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[69]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[70]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4283,7 +4399,7 @@ func (x *OAuth2Provider) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use OAuth2Provider.ProtoReflect.Descriptor instead.
|
|
|
func (*OAuth2Provider) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{69}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{70}
|
|
|
}
|
|
|
|
|
|
func (x *OAuth2Provider) GetTitle() string {
|
|
|
@@ -4316,7 +4432,7 @@ type GetActionBindingRequest struct {
|
|
|
|
|
|
func (x *GetActionBindingRequest) Reset() {
|
|
|
*x = GetActionBindingRequest{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[70]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[71]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4328,7 +4444,7 @@ func (x *GetActionBindingRequest) String() string {
|
|
|
func (*GetActionBindingRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetActionBindingRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[70]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[71]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4341,7 +4457,7 @@ func (x *GetActionBindingRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use GetActionBindingRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*GetActionBindingRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{70}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{71}
|
|
|
}
|
|
|
|
|
|
func (x *GetActionBindingRequest) GetBindingId() string {
|
|
|
@@ -4361,7 +4477,7 @@ type GetActionBindingResponse struct {
|
|
|
|
|
|
func (x *GetActionBindingResponse) Reset() {
|
|
|
*x = GetActionBindingResponse{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[71]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[72]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4373,7 +4489,7 @@ func (x *GetActionBindingResponse) String() string {
|
|
|
func (*GetActionBindingResponse) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetActionBindingResponse) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[71]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[72]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4386,7 +4502,7 @@ func (x *GetActionBindingResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use GetActionBindingResponse.ProtoReflect.Descriptor instead.
|
|
|
func (*GetActionBindingResponse) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{71}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{72}
|
|
|
}
|
|
|
|
|
|
func (x *GetActionBindingResponse) GetAction() *Action {
|
|
|
@@ -4415,7 +4531,7 @@ type GetEntitiesRequest struct {
|
|
|
|
|
|
func (x *GetEntitiesRequest) Reset() {
|
|
|
*x = GetEntitiesRequest{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[72]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[73]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4427,7 +4543,7 @@ func (x *GetEntitiesRequest) String() string {
|
|
|
func (*GetEntitiesRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetEntitiesRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[72]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[73]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4440,7 +4556,7 @@ func (x *GetEntitiesRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use GetEntitiesRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*GetEntitiesRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{72}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{73}
|
|
|
}
|
|
|
|
|
|
func (x *GetEntitiesRequest) GetEntityType() string {
|
|
|
@@ -4480,7 +4596,7 @@ type GetEntitiesResponse struct {
|
|
|
|
|
|
func (x *GetEntitiesResponse) Reset() {
|
|
|
*x = GetEntitiesResponse{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[73]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[74]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4492,7 +4608,7 @@ func (x *GetEntitiesResponse) String() string {
|
|
|
func (*GetEntitiesResponse) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetEntitiesResponse) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[73]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[74]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4505,7 +4621,7 @@ func (x *GetEntitiesResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use GetEntitiesResponse.ProtoReflect.Descriptor instead.
|
|
|
func (*GetEntitiesResponse) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{73}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{74}
|
|
|
}
|
|
|
|
|
|
func (x *GetEntitiesResponse) GetEntityDefinitions() []*EntityDefinition {
|
|
|
@@ -4529,7 +4645,7 @@ type EntityDefinition struct {
|
|
|
|
|
|
func (x *EntityDefinition) Reset() {
|
|
|
*x = EntityDefinition{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[74]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[75]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4541,7 +4657,7 @@ func (x *EntityDefinition) String() string {
|
|
|
func (*EntityDefinition) ProtoMessage() {}
|
|
|
|
|
|
func (x *EntityDefinition) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[74]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[75]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4554,7 +4670,7 @@ func (x *EntityDefinition) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use EntityDefinition.ProtoReflect.Descriptor instead.
|
|
|
func (*EntityDefinition) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{74}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{75}
|
|
|
}
|
|
|
|
|
|
func (x *EntityDefinition) GetTitle() string {
|
|
|
@@ -4609,7 +4725,7 @@ type EntityProperty struct {
|
|
|
|
|
|
func (x *EntityProperty) Reset() {
|
|
|
*x = EntityProperty{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[75]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[76]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4621,7 +4737,7 @@ func (x *EntityProperty) String() string {
|
|
|
func (*EntityProperty) ProtoMessage() {}
|
|
|
|
|
|
func (x *EntityProperty) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[75]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[76]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4634,7 +4750,7 @@ func (x *EntityProperty) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use EntityProperty.ProtoReflect.Descriptor instead.
|
|
|
func (*EntityProperty) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{75}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{76}
|
|
|
}
|
|
|
|
|
|
func (x *EntityProperty) GetName() string {
|
|
|
@@ -4661,7 +4777,7 @@ type GetEntityRequest struct {
|
|
|
|
|
|
func (x *GetEntityRequest) Reset() {
|
|
|
*x = GetEntityRequest{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[76]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[77]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4673,7 +4789,7 @@ func (x *GetEntityRequest) String() string {
|
|
|
func (*GetEntityRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetEntityRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[76]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[77]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4686,7 +4802,7 @@ func (x *GetEntityRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use GetEntityRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*GetEntityRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{76}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{77}
|
|
|
}
|
|
|
|
|
|
func (x *GetEntityRequest) GetUniqueKey() string {
|
|
|
@@ -4712,7 +4828,7 @@ type RestartActionRequest struct {
|
|
|
|
|
|
func (x *RestartActionRequest) Reset() {
|
|
|
*x = RestartActionRequest{}
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[77]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[78]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -4724,7 +4840,7 @@ func (x *RestartActionRequest) String() string {
|
|
|
func (*RestartActionRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *RestartActionRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[77]
|
|
|
+ mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[78]
|
|
|
if x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -4737,7 +4853,7 @@ func (x *RestartActionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use RestartActionRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*RestartActionRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{77}
|
|
|
+ return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{78}
|
|
|
}
|
|
|
|
|
|
func (x *RestartActionRequest) GetExecutionTrackingId() string {
|
|
|
@@ -5044,11 +5160,22 @@ const file_olivetin_api_v1_olivetin_proto_rawDesc = "" +
|
|
|
"\x04hash\x18\x01 \x01(\tR\x04hash\"\x0f\n" +
|
|
|
"\rLogoutRequest\"\x10\n" +
|
|
|
"\x0eLogoutResponse\"\x17\n" +
|
|
|
- "\x15GetDiagnosticsRequest\"b\n" +
|
|
|
+ "\x15GetDiagnosticsRequest\"\xf5\x01\n" +
|
|
|
+ "\vConfigIssue\x12\x1a\n" +
|
|
|
+ "\bseverity\x18\x01 \x01(\tR\bseverity\x12\x12\n" +
|
|
|
+ "\x04code\x18\x02 \x01(\tR\x04code\x12\x18\n" +
|
|
|
+ "\amessage\x18\x03 \x01(\tR\amessage\x12\x1b\n" +
|
|
|
+ "\taction_id\x18\x04 \x01(\tR\bactionId\x12!\n" +
|
|
|
+ "\faction_title\x18\x05 \x01(\tR\vactionTitle\x12#\n" +
|
|
|
+ "\rargument_name\x18\x06 \x01(\tR\fargumentName\x12\x16\n" +
|
|
|
+ "\x06source\x18\a \x01(\tR\x06source\x12\x1f\n" +
|
|
|
+ "\vconfig_file\x18\b \x01(\tR\n" +
|
|
|
+ "configFile\"\xa5\x01\n" +
|
|
|
"\x16GetDiagnosticsResponse\x12 \n" +
|
|
|
"\vSshFoundKey\x18\x01 \x01(\tR\vSshFoundKey\x12&\n" +
|
|
|
- "\x0eSshFoundConfig\x18\x02 \x01(\tR\x0eSshFoundConfig\"\r\n" +
|
|
|
- "\vInitRequest\"\x8d\t\n" +
|
|
|
+ "\x0eSshFoundConfig\x18\x02 \x01(\tR\x0eSshFoundConfig\x12A\n" +
|
|
|
+ "\rconfig_issues\x18\x03 \x03(\v2\x1c.olivetin.api.v1.ConfigIssueR\fconfigIssues\"\r\n" +
|
|
|
+ "\vInitRequest\"\xbb\t\n" +
|
|
|
"\fInitResponse\x12\x1e\n" +
|
|
|
"\n" +
|
|
|
"showFooter\x18\x01 \x01(\bR\n" +
|
|
|
@@ -5078,7 +5205,8 @@ const file_olivetin_api_v1_olivetin_proto_rawDesc = "" +
|
|
|
"\rshow_log_list\x18\x16 \x01(\bR\vshowLogList\x12%\n" +
|
|
|
"\x0elogin_required\x18\x17 \x01(\bR\rloginRequired\x12)\n" +
|
|
|
"\x10available_themes\x18\x18 \x03(\tR\x0favailableThemes\x12>\n" +
|
|
|
- "\x1cshow_navigate_on_start_icons\x18\x19 \x01(\bR\x18showNavigateOnStartIcons\"8\n" +
|
|
|
+ "\x1cshow_navigate_on_start_icons\x18\x19 \x01(\bR\x18showNavigateOnStartIcons\x12,\n" +
|
|
|
+ "\x12config_issue_count\x18\x1a \x01(\x05R\x10configIssueCount\"8\n" +
|
|
|
"\x0eAdditionalLink\x12\x14\n" +
|
|
|
"\x05title\x18\x01 \x01(\tR\x05title\x12\x10\n" +
|
|
|
"\x03url\x18\x02 \x01(\tR\x03url\"L\n" +
|
|
|
@@ -5159,7 +5287,7 @@ func file_olivetin_api_v1_olivetin_proto_rawDescGZIP() []byte {
|
|
|
return file_olivetin_api_v1_olivetin_proto_rawDescData
|
|
|
}
|
|
|
|
|
|
-var file_olivetin_api_v1_olivetin_proto_msgTypes = make([]protoimpl.MessageInfo, 85)
|
|
|
+var file_olivetin_api_v1_olivetin_proto_msgTypes = make([]protoimpl.MessageInfo, 86)
|
|
|
var file_olivetin_api_v1_olivetin_proto_goTypes = []any{
|
|
|
(*Action)(nil), // 0: olivetin.api.v1.Action
|
|
|
(*ActionGroupMembership)(nil), // 1: olivetin.api.v1.ActionGroupMembership
|
|
|
@@ -5226,38 +5354,39 @@ var file_olivetin_api_v1_olivetin_proto_goTypes = []any{
|
|
|
(*LogoutRequest)(nil), // 62: olivetin.api.v1.LogoutRequest
|
|
|
(*LogoutResponse)(nil), // 63: olivetin.api.v1.LogoutResponse
|
|
|
(*GetDiagnosticsRequest)(nil), // 64: olivetin.api.v1.GetDiagnosticsRequest
|
|
|
- (*GetDiagnosticsResponse)(nil), // 65: olivetin.api.v1.GetDiagnosticsResponse
|
|
|
- (*InitRequest)(nil), // 66: olivetin.api.v1.InitRequest
|
|
|
- (*InitResponse)(nil), // 67: olivetin.api.v1.InitResponse
|
|
|
- (*AdditionalLink)(nil), // 68: olivetin.api.v1.AdditionalLink
|
|
|
- (*OAuth2Provider)(nil), // 69: olivetin.api.v1.OAuth2Provider
|
|
|
- (*GetActionBindingRequest)(nil), // 70: olivetin.api.v1.GetActionBindingRequest
|
|
|
- (*GetActionBindingResponse)(nil), // 71: olivetin.api.v1.GetActionBindingResponse
|
|
|
- (*GetEntitiesRequest)(nil), // 72: olivetin.api.v1.GetEntitiesRequest
|
|
|
- (*GetEntitiesResponse)(nil), // 73: olivetin.api.v1.GetEntitiesResponse
|
|
|
- (*EntityDefinition)(nil), // 74: olivetin.api.v1.EntityDefinition
|
|
|
- (*EntityProperty)(nil), // 75: olivetin.api.v1.EntityProperty
|
|
|
- (*GetEntityRequest)(nil), // 76: olivetin.api.v1.GetEntityRequest
|
|
|
- (*RestartActionRequest)(nil), // 77: olivetin.api.v1.RestartActionRequest
|
|
|
- nil, // 78: olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
|
|
|
- nil, // 79: olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
|
|
|
- nil, // 80: olivetin.api.v1.ActionArgument.SuggestionsEntry
|
|
|
- nil, // 81: olivetin.api.v1.EntityRelatedAction.PrefilledArgumentsEntry
|
|
|
- nil, // 82: olivetin.api.v1.Entity.FieldsEntry
|
|
|
- nil, // 83: olivetin.api.v1.DumpVarsResponse.ContentsEntry
|
|
|
- nil, // 84: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
|
|
|
+ (*ConfigIssue)(nil), // 65: olivetin.api.v1.ConfigIssue
|
|
|
+ (*GetDiagnosticsResponse)(nil), // 66: olivetin.api.v1.GetDiagnosticsResponse
|
|
|
+ (*InitRequest)(nil), // 67: olivetin.api.v1.InitRequest
|
|
|
+ (*InitResponse)(nil), // 68: olivetin.api.v1.InitResponse
|
|
|
+ (*AdditionalLink)(nil), // 69: olivetin.api.v1.AdditionalLink
|
|
|
+ (*OAuth2Provider)(nil), // 70: olivetin.api.v1.OAuth2Provider
|
|
|
+ (*GetActionBindingRequest)(nil), // 71: olivetin.api.v1.GetActionBindingRequest
|
|
|
+ (*GetActionBindingResponse)(nil), // 72: olivetin.api.v1.GetActionBindingResponse
|
|
|
+ (*GetEntitiesRequest)(nil), // 73: olivetin.api.v1.GetEntitiesRequest
|
|
|
+ (*GetEntitiesResponse)(nil), // 74: olivetin.api.v1.GetEntitiesResponse
|
|
|
+ (*EntityDefinition)(nil), // 75: olivetin.api.v1.EntityDefinition
|
|
|
+ (*EntityProperty)(nil), // 76: olivetin.api.v1.EntityProperty
|
|
|
+ (*GetEntityRequest)(nil), // 77: olivetin.api.v1.GetEntityRequest
|
|
|
+ (*RestartActionRequest)(nil), // 78: olivetin.api.v1.RestartActionRequest
|
|
|
+ nil, // 79: olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
|
|
|
+ nil, // 80: olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
|
|
|
+ nil, // 81: olivetin.api.v1.ActionArgument.SuggestionsEntry
|
|
|
+ nil, // 82: olivetin.api.v1.EntityRelatedAction.PrefilledArgumentsEntry
|
|
|
+ nil, // 83: olivetin.api.v1.Entity.FieldsEntry
|
|
|
+ nil, // 84: olivetin.api.v1.DumpVarsResponse.ContentsEntry
|
|
|
+ nil, // 85: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
|
|
|
}
|
|
|
var file_olivetin_api_v1_olivetin_proto_depIdxs = []int32{
|
|
|
3, // 0: olivetin.api.v1.Action.arguments:type_name -> olivetin.api.v1.ActionArgument
|
|
|
2, // 1: olivetin.api.v1.Action.exec_on_webhooks:type_name -> olivetin.api.v1.ActionWebhookExecHint
|
|
|
1, // 2: olivetin.api.v1.Action.groups:type_name -> olivetin.api.v1.ActionGroupMembership
|
|
|
- 78, // 3: olivetin.api.v1.ActionWebhookExecHint.match_headers:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
|
|
|
- 79, // 4: olivetin.api.v1.ActionWebhookExecHint.match_query:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
|
|
|
+ 79, // 3: olivetin.api.v1.ActionWebhookExecHint.match_headers:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
|
|
|
+ 80, // 4: olivetin.api.v1.ActionWebhookExecHint.match_query:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
|
|
|
4, // 5: olivetin.api.v1.ActionArgument.choices:type_name -> olivetin.api.v1.ActionArgumentChoice
|
|
|
- 80, // 6: olivetin.api.v1.ActionArgument.suggestions:type_name -> olivetin.api.v1.ActionArgument.SuggestionsEntry
|
|
|
+ 81, // 6: olivetin.api.v1.ActionArgument.suggestions:type_name -> olivetin.api.v1.ActionArgument.SuggestionsEntry
|
|
|
0, // 7: olivetin.api.v1.EntityRelatedAction.action:type_name -> olivetin.api.v1.Action
|
|
|
- 81, // 8: olivetin.api.v1.EntityRelatedAction.prefilled_arguments:type_name -> olivetin.api.v1.EntityRelatedAction.PrefilledArgumentsEntry
|
|
|
- 82, // 9: olivetin.api.v1.Entity.fields:type_name -> olivetin.api.v1.Entity.FieldsEntry
|
|
|
+ 82, // 8: olivetin.api.v1.EntityRelatedAction.prefilled_arguments:type_name -> olivetin.api.v1.EntityRelatedAction.PrefilledArgumentsEntry
|
|
|
+ 83, // 9: olivetin.api.v1.Entity.fields:type_name -> olivetin.api.v1.Entity.FieldsEntry
|
|
|
5, // 10: olivetin.api.v1.Entity.related_actions:type_name -> olivetin.api.v1.EntityRelatedAction
|
|
|
10, // 11: olivetin.api.v1.GetDashboardResponse.dashboard:type_name -> olivetin.api.v1.Dashboard
|
|
|
11, // 12: olivetin.api.v1.Dashboard.contents:type_name -> olivetin.api.v1.DashboardComponent
|
|
|
@@ -5275,8 +5404,8 @@ var file_olivetin_api_v1_olivetin_proto_depIdxs = []int32{
|
|
|
28, // 24: olivetin.api.v1.GetExecutionQueueResponse.groups:type_name -> olivetin.api.v1.ExecutionQueueGroup
|
|
|
22, // 25: olivetin.api.v1.ExecutionStatusResponse.log_entry:type_name -> olivetin.api.v1.LogEntry
|
|
|
35, // 26: olivetin.api.v1.ExecutionStatusResponse.back_to_dashboards:type_name -> olivetin.api.v1.DashboardNavigationTarget
|
|
|
- 83, // 27: olivetin.api.v1.DumpVarsResponse.contents:type_name -> olivetin.api.v1.DumpVarsResponse.ContentsEntry
|
|
|
- 84, // 28: olivetin.api.v1.DumpPublicIdActionMapResponse.contents:type_name -> olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
|
|
|
+ 84, // 27: olivetin.api.v1.DumpVarsResponse.contents:type_name -> olivetin.api.v1.DumpVarsResponse.ContentsEntry
|
|
|
+ 85, // 28: olivetin.api.v1.DumpPublicIdActionMapResponse.contents:type_name -> olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
|
|
|
51, // 29: olivetin.api.v1.EventStreamResponse.entity_changed:type_name -> olivetin.api.v1.EventEntityChanged
|
|
|
52, // 30: olivetin.api.v1.EventStreamResponse.config_changed:type_name -> olivetin.api.v1.EventConfigChanged
|
|
|
54, // 31: olivetin.api.v1.EventStreamResponse.execution_finished:type_name -> olivetin.api.v1.EventExecutionFinished
|
|
|
@@ -5285,72 +5414,73 @@ var file_olivetin_api_v1_olivetin_proto_depIdxs = []int32{
|
|
|
53, // 34: olivetin.api.v1.EventStreamResponse.heartbeat:type_name -> olivetin.api.v1.EventHeartbeat
|
|
|
22, // 35: olivetin.api.v1.EventExecutionFinished.log_entry:type_name -> olivetin.api.v1.LogEntry
|
|
|
22, // 36: olivetin.api.v1.EventExecutionStarted.log_entry:type_name -> olivetin.api.v1.LogEntry
|
|
|
- 69, // 37: olivetin.api.v1.InitResponse.oAuth2Providers:type_name -> olivetin.api.v1.OAuth2Provider
|
|
|
- 68, // 38: olivetin.api.v1.InitResponse.additionalLinks:type_name -> olivetin.api.v1.AdditionalLink
|
|
|
- 8, // 39: olivetin.api.v1.InitResponse.effective_policy:type_name -> olivetin.api.v1.EffectivePolicy
|
|
|
- 0, // 40: olivetin.api.v1.GetActionBindingResponse.action:type_name -> olivetin.api.v1.Action
|
|
|
- 35, // 41: olivetin.api.v1.GetActionBindingResponse.back_to_dashboards:type_name -> olivetin.api.v1.DashboardNavigationTarget
|
|
|
- 74, // 42: olivetin.api.v1.GetEntitiesResponse.entity_definitions:type_name -> olivetin.api.v1.EntityDefinition
|
|
|
- 6, // 43: olivetin.api.v1.EntityDefinition.instances:type_name -> olivetin.api.v1.Entity
|
|
|
- 75, // 44: olivetin.api.v1.EntityDefinition.properties:type_name -> olivetin.api.v1.EntityProperty
|
|
|
- 43, // 45: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry.value:type_name -> olivetin.api.v1.DebugBinding
|
|
|
- 9, // 46: olivetin.api.v1.OliveTinApiService.GetDashboard:input_type -> olivetin.api.v1.GetDashboardRequest
|
|
|
- 12, // 47: olivetin.api.v1.OliveTinApiService.StartAction:input_type -> olivetin.api.v1.StartActionRequest
|
|
|
- 15, // 48: olivetin.api.v1.OliveTinApiService.StartActionAndWait:input_type -> olivetin.api.v1.StartActionAndWaitRequest
|
|
|
- 17, // 49: olivetin.api.v1.OliveTinApiService.StartActionByGet:input_type -> olivetin.api.v1.StartActionByGetRequest
|
|
|
- 19, // 50: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:input_type -> olivetin.api.v1.StartActionByGetAndWaitRequest
|
|
|
- 77, // 51: olivetin.api.v1.OliveTinApiService.RestartAction:input_type -> olivetin.api.v1.RestartActionRequest
|
|
|
- 56, // 52: olivetin.api.v1.OliveTinApiService.KillAction:input_type -> olivetin.api.v1.KillActionRequest
|
|
|
- 34, // 53: olivetin.api.v1.OliveTinApiService.ExecutionStatus:input_type -> olivetin.api.v1.ExecutionStatusRequest
|
|
|
- 21, // 54: olivetin.api.v1.OliveTinApiService.GetLogs:input_type -> olivetin.api.v1.GetLogsRequest
|
|
|
- 24, // 55: olivetin.api.v1.OliveTinApiService.GetActionLogs:input_type -> olivetin.api.v1.GetActionLogsRequest
|
|
|
- 26, // 56: olivetin.api.v1.OliveTinApiService.GetExecutionQueue:input_type -> olivetin.api.v1.GetExecutionQueueRequest
|
|
|
- 30, // 57: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:input_type -> olivetin.api.v1.ValidateArgumentTypeRequest
|
|
|
- 37, // 58: olivetin.api.v1.OliveTinApiService.WhoAmI:input_type -> olivetin.api.v1.WhoAmIRequest
|
|
|
- 39, // 59: olivetin.api.v1.OliveTinApiService.ServerDiagnostics:input_type -> olivetin.api.v1.ServerDiagnosticsRequest
|
|
|
- 41, // 60: olivetin.api.v1.OliveTinApiService.DumpVars:input_type -> olivetin.api.v1.DumpVarsRequest
|
|
|
- 44, // 61: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:input_type -> olivetin.api.v1.DumpPublicIdActionMapRequest
|
|
|
- 46, // 62: olivetin.api.v1.OliveTinApiService.GetReadyz:input_type -> olivetin.api.v1.GetReadyzRequest
|
|
|
- 58, // 63: olivetin.api.v1.OliveTinApiService.LocalUserLogin:input_type -> olivetin.api.v1.LocalUserLoginRequest
|
|
|
- 60, // 64: olivetin.api.v1.OliveTinApiService.PasswordHash:input_type -> olivetin.api.v1.PasswordHashRequest
|
|
|
- 62, // 65: olivetin.api.v1.OliveTinApiService.Logout:input_type -> olivetin.api.v1.LogoutRequest
|
|
|
- 48, // 66: olivetin.api.v1.OliveTinApiService.EventStream:input_type -> olivetin.api.v1.EventStreamRequest
|
|
|
- 64, // 67: olivetin.api.v1.OliveTinApiService.GetDiagnostics:input_type -> olivetin.api.v1.GetDiagnosticsRequest
|
|
|
- 66, // 68: olivetin.api.v1.OliveTinApiService.Init:input_type -> olivetin.api.v1.InitRequest
|
|
|
- 70, // 69: olivetin.api.v1.OliveTinApiService.GetActionBinding:input_type -> olivetin.api.v1.GetActionBindingRequest
|
|
|
- 72, // 70: olivetin.api.v1.OliveTinApiService.GetEntities:input_type -> olivetin.api.v1.GetEntitiesRequest
|
|
|
- 76, // 71: olivetin.api.v1.OliveTinApiService.GetEntity:input_type -> olivetin.api.v1.GetEntityRequest
|
|
|
- 7, // 72: olivetin.api.v1.OliveTinApiService.GetDashboard:output_type -> olivetin.api.v1.GetDashboardResponse
|
|
|
- 14, // 73: olivetin.api.v1.OliveTinApiService.StartAction:output_type -> olivetin.api.v1.StartActionResponse
|
|
|
- 16, // 74: olivetin.api.v1.OliveTinApiService.StartActionAndWait:output_type -> olivetin.api.v1.StartActionAndWaitResponse
|
|
|
- 18, // 75: olivetin.api.v1.OliveTinApiService.StartActionByGet:output_type -> olivetin.api.v1.StartActionByGetResponse
|
|
|
- 20, // 76: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:output_type -> olivetin.api.v1.StartActionByGetAndWaitResponse
|
|
|
- 14, // 77: olivetin.api.v1.OliveTinApiService.RestartAction:output_type -> olivetin.api.v1.StartActionResponse
|
|
|
- 57, // 78: olivetin.api.v1.OliveTinApiService.KillAction:output_type -> olivetin.api.v1.KillActionResponse
|
|
|
- 36, // 79: olivetin.api.v1.OliveTinApiService.ExecutionStatus:output_type -> olivetin.api.v1.ExecutionStatusResponse
|
|
|
- 23, // 80: olivetin.api.v1.OliveTinApiService.GetLogs:output_type -> olivetin.api.v1.GetLogsResponse
|
|
|
- 25, // 81: olivetin.api.v1.OliveTinApiService.GetActionLogs:output_type -> olivetin.api.v1.GetActionLogsResponse
|
|
|
- 29, // 82: olivetin.api.v1.OliveTinApiService.GetExecutionQueue:output_type -> olivetin.api.v1.GetExecutionQueueResponse
|
|
|
- 31, // 83: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:output_type -> olivetin.api.v1.ValidateArgumentTypeResponse
|
|
|
- 38, // 84: olivetin.api.v1.OliveTinApiService.WhoAmI:output_type -> olivetin.api.v1.WhoAmIResponse
|
|
|
- 40, // 85: olivetin.api.v1.OliveTinApiService.ServerDiagnostics:output_type -> olivetin.api.v1.ServerDiagnosticsResponse
|
|
|
- 42, // 86: olivetin.api.v1.OliveTinApiService.DumpVars:output_type -> olivetin.api.v1.DumpVarsResponse
|
|
|
- 45, // 87: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:output_type -> olivetin.api.v1.DumpPublicIdActionMapResponse
|
|
|
- 47, // 88: olivetin.api.v1.OliveTinApiService.GetReadyz:output_type -> olivetin.api.v1.GetReadyzResponse
|
|
|
- 59, // 89: olivetin.api.v1.OliveTinApiService.LocalUserLogin:output_type -> olivetin.api.v1.LocalUserLoginResponse
|
|
|
- 61, // 90: olivetin.api.v1.OliveTinApiService.PasswordHash:output_type -> olivetin.api.v1.PasswordHashResponse
|
|
|
- 63, // 91: olivetin.api.v1.OliveTinApiService.Logout:output_type -> olivetin.api.v1.LogoutResponse
|
|
|
- 49, // 92: olivetin.api.v1.OliveTinApiService.EventStream:output_type -> olivetin.api.v1.EventStreamResponse
|
|
|
- 65, // 93: olivetin.api.v1.OliveTinApiService.GetDiagnostics:output_type -> olivetin.api.v1.GetDiagnosticsResponse
|
|
|
- 67, // 94: olivetin.api.v1.OliveTinApiService.Init:output_type -> olivetin.api.v1.InitResponse
|
|
|
- 71, // 95: olivetin.api.v1.OliveTinApiService.GetActionBinding:output_type -> olivetin.api.v1.GetActionBindingResponse
|
|
|
- 73, // 96: olivetin.api.v1.OliveTinApiService.GetEntities:output_type -> olivetin.api.v1.GetEntitiesResponse
|
|
|
- 6, // 97: olivetin.api.v1.OliveTinApiService.GetEntity:output_type -> olivetin.api.v1.Entity
|
|
|
- 72, // [72:98] is the sub-list for method output_type
|
|
|
- 46, // [46:72] is the sub-list for method input_type
|
|
|
- 46, // [46:46] is the sub-list for extension type_name
|
|
|
- 46, // [46:46] is the sub-list for extension extendee
|
|
|
- 0, // [0:46] is the sub-list for field type_name
|
|
|
+ 65, // 37: olivetin.api.v1.GetDiagnosticsResponse.config_issues:type_name -> olivetin.api.v1.ConfigIssue
|
|
|
+ 70, // 38: olivetin.api.v1.InitResponse.oAuth2Providers:type_name -> olivetin.api.v1.OAuth2Provider
|
|
|
+ 69, // 39: olivetin.api.v1.InitResponse.additionalLinks:type_name -> olivetin.api.v1.AdditionalLink
|
|
|
+ 8, // 40: olivetin.api.v1.InitResponse.effective_policy:type_name -> olivetin.api.v1.EffectivePolicy
|
|
|
+ 0, // 41: olivetin.api.v1.GetActionBindingResponse.action:type_name -> olivetin.api.v1.Action
|
|
|
+ 35, // 42: olivetin.api.v1.GetActionBindingResponse.back_to_dashboards:type_name -> olivetin.api.v1.DashboardNavigationTarget
|
|
|
+ 75, // 43: olivetin.api.v1.GetEntitiesResponse.entity_definitions:type_name -> olivetin.api.v1.EntityDefinition
|
|
|
+ 6, // 44: olivetin.api.v1.EntityDefinition.instances:type_name -> olivetin.api.v1.Entity
|
|
|
+ 76, // 45: olivetin.api.v1.EntityDefinition.properties:type_name -> olivetin.api.v1.EntityProperty
|
|
|
+ 43, // 46: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry.value:type_name -> olivetin.api.v1.DebugBinding
|
|
|
+ 9, // 47: olivetin.api.v1.OliveTinApiService.GetDashboard:input_type -> olivetin.api.v1.GetDashboardRequest
|
|
|
+ 12, // 48: olivetin.api.v1.OliveTinApiService.StartAction:input_type -> olivetin.api.v1.StartActionRequest
|
|
|
+ 15, // 49: olivetin.api.v1.OliveTinApiService.StartActionAndWait:input_type -> olivetin.api.v1.StartActionAndWaitRequest
|
|
|
+ 17, // 50: olivetin.api.v1.OliveTinApiService.StartActionByGet:input_type -> olivetin.api.v1.StartActionByGetRequest
|
|
|
+ 19, // 51: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:input_type -> olivetin.api.v1.StartActionByGetAndWaitRequest
|
|
|
+ 78, // 52: olivetin.api.v1.OliveTinApiService.RestartAction:input_type -> olivetin.api.v1.RestartActionRequest
|
|
|
+ 56, // 53: olivetin.api.v1.OliveTinApiService.KillAction:input_type -> olivetin.api.v1.KillActionRequest
|
|
|
+ 34, // 54: olivetin.api.v1.OliveTinApiService.ExecutionStatus:input_type -> olivetin.api.v1.ExecutionStatusRequest
|
|
|
+ 21, // 55: olivetin.api.v1.OliveTinApiService.GetLogs:input_type -> olivetin.api.v1.GetLogsRequest
|
|
|
+ 24, // 56: olivetin.api.v1.OliveTinApiService.GetActionLogs:input_type -> olivetin.api.v1.GetActionLogsRequest
|
|
|
+ 26, // 57: olivetin.api.v1.OliveTinApiService.GetExecutionQueue:input_type -> olivetin.api.v1.GetExecutionQueueRequest
|
|
|
+ 30, // 58: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:input_type -> olivetin.api.v1.ValidateArgumentTypeRequest
|
|
|
+ 37, // 59: olivetin.api.v1.OliveTinApiService.WhoAmI:input_type -> olivetin.api.v1.WhoAmIRequest
|
|
|
+ 39, // 60: olivetin.api.v1.OliveTinApiService.ServerDiagnostics:input_type -> olivetin.api.v1.ServerDiagnosticsRequest
|
|
|
+ 41, // 61: olivetin.api.v1.OliveTinApiService.DumpVars:input_type -> olivetin.api.v1.DumpVarsRequest
|
|
|
+ 44, // 62: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:input_type -> olivetin.api.v1.DumpPublicIdActionMapRequest
|
|
|
+ 46, // 63: olivetin.api.v1.OliveTinApiService.GetReadyz:input_type -> olivetin.api.v1.GetReadyzRequest
|
|
|
+ 58, // 64: olivetin.api.v1.OliveTinApiService.LocalUserLogin:input_type -> olivetin.api.v1.LocalUserLoginRequest
|
|
|
+ 60, // 65: olivetin.api.v1.OliveTinApiService.PasswordHash:input_type -> olivetin.api.v1.PasswordHashRequest
|
|
|
+ 62, // 66: olivetin.api.v1.OliveTinApiService.Logout:input_type -> olivetin.api.v1.LogoutRequest
|
|
|
+ 48, // 67: olivetin.api.v1.OliveTinApiService.EventStream:input_type -> olivetin.api.v1.EventStreamRequest
|
|
|
+ 64, // 68: olivetin.api.v1.OliveTinApiService.GetDiagnostics:input_type -> olivetin.api.v1.GetDiagnosticsRequest
|
|
|
+ 67, // 69: olivetin.api.v1.OliveTinApiService.Init:input_type -> olivetin.api.v1.InitRequest
|
|
|
+ 71, // 70: olivetin.api.v1.OliveTinApiService.GetActionBinding:input_type -> olivetin.api.v1.GetActionBindingRequest
|
|
|
+ 73, // 71: olivetin.api.v1.OliveTinApiService.GetEntities:input_type -> olivetin.api.v1.GetEntitiesRequest
|
|
|
+ 77, // 72: olivetin.api.v1.OliveTinApiService.GetEntity:input_type -> olivetin.api.v1.GetEntityRequest
|
|
|
+ 7, // 73: olivetin.api.v1.OliveTinApiService.GetDashboard:output_type -> olivetin.api.v1.GetDashboardResponse
|
|
|
+ 14, // 74: olivetin.api.v1.OliveTinApiService.StartAction:output_type -> olivetin.api.v1.StartActionResponse
|
|
|
+ 16, // 75: olivetin.api.v1.OliveTinApiService.StartActionAndWait:output_type -> olivetin.api.v1.StartActionAndWaitResponse
|
|
|
+ 18, // 76: olivetin.api.v1.OliveTinApiService.StartActionByGet:output_type -> olivetin.api.v1.StartActionByGetResponse
|
|
|
+ 20, // 77: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:output_type -> olivetin.api.v1.StartActionByGetAndWaitResponse
|
|
|
+ 14, // 78: olivetin.api.v1.OliveTinApiService.RestartAction:output_type -> olivetin.api.v1.StartActionResponse
|
|
|
+ 57, // 79: olivetin.api.v1.OliveTinApiService.KillAction:output_type -> olivetin.api.v1.KillActionResponse
|
|
|
+ 36, // 80: olivetin.api.v1.OliveTinApiService.ExecutionStatus:output_type -> olivetin.api.v1.ExecutionStatusResponse
|
|
|
+ 23, // 81: olivetin.api.v1.OliveTinApiService.GetLogs:output_type -> olivetin.api.v1.GetLogsResponse
|
|
|
+ 25, // 82: olivetin.api.v1.OliveTinApiService.GetActionLogs:output_type -> olivetin.api.v1.GetActionLogsResponse
|
|
|
+ 29, // 83: olivetin.api.v1.OliveTinApiService.GetExecutionQueue:output_type -> olivetin.api.v1.GetExecutionQueueResponse
|
|
|
+ 31, // 84: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:output_type -> olivetin.api.v1.ValidateArgumentTypeResponse
|
|
|
+ 38, // 85: olivetin.api.v1.OliveTinApiService.WhoAmI:output_type -> olivetin.api.v1.WhoAmIResponse
|
|
|
+ 40, // 86: olivetin.api.v1.OliveTinApiService.ServerDiagnostics:output_type -> olivetin.api.v1.ServerDiagnosticsResponse
|
|
|
+ 42, // 87: olivetin.api.v1.OliveTinApiService.DumpVars:output_type -> olivetin.api.v1.DumpVarsResponse
|
|
|
+ 45, // 88: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:output_type -> olivetin.api.v1.DumpPublicIdActionMapResponse
|
|
|
+ 47, // 89: olivetin.api.v1.OliveTinApiService.GetReadyz:output_type -> olivetin.api.v1.GetReadyzResponse
|
|
|
+ 59, // 90: olivetin.api.v1.OliveTinApiService.LocalUserLogin:output_type -> olivetin.api.v1.LocalUserLoginResponse
|
|
|
+ 61, // 91: olivetin.api.v1.OliveTinApiService.PasswordHash:output_type -> olivetin.api.v1.PasswordHashResponse
|
|
|
+ 63, // 92: olivetin.api.v1.OliveTinApiService.Logout:output_type -> olivetin.api.v1.LogoutResponse
|
|
|
+ 49, // 93: olivetin.api.v1.OliveTinApiService.EventStream:output_type -> olivetin.api.v1.EventStreamResponse
|
|
|
+ 66, // 94: olivetin.api.v1.OliveTinApiService.GetDiagnostics:output_type -> olivetin.api.v1.GetDiagnosticsResponse
|
|
|
+ 68, // 95: olivetin.api.v1.OliveTinApiService.Init:output_type -> olivetin.api.v1.InitResponse
|
|
|
+ 72, // 96: olivetin.api.v1.OliveTinApiService.GetActionBinding:output_type -> olivetin.api.v1.GetActionBindingResponse
|
|
|
+ 74, // 97: olivetin.api.v1.OliveTinApiService.GetEntities:output_type -> olivetin.api.v1.GetEntitiesResponse
|
|
|
+ 6, // 98: olivetin.api.v1.OliveTinApiService.GetEntity:output_type -> olivetin.api.v1.Entity
|
|
|
+ 73, // [73:99] is the sub-list for method output_type
|
|
|
+ 47, // [47:73] is the sub-list for method input_type
|
|
|
+ 47, // [47:47] is the sub-list for extension type_name
|
|
|
+ 47, // [47:47] is the sub-list for extension extendee
|
|
|
+ 0, // [0:47] is the sub-list for field type_name
|
|
|
}
|
|
|
|
|
|
func init() { file_olivetin_api_v1_olivetin_proto_init() }
|
|
|
@@ -5372,7 +5502,7 @@ func file_olivetin_api_v1_olivetin_proto_init() {
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_olivetin_api_v1_olivetin_proto_rawDesc), len(file_olivetin_api_v1_olivetin_proto_rawDesc)),
|
|
|
NumEnums: 0,
|
|
|
- NumMessages: 85,
|
|
|
+ NumMessages: 86,
|
|
|
NumExtensions: 0,
|
|
|
NumServices: 1,
|
|
|
},
|