diff --git a/pkg/api/domain.go b/pkg/api/domain.go index bbfd75c..6fd472a 100644 --- a/pkg/api/domain.go +++ b/pkg/api/domain.go @@ -21,7 +21,7 @@ func (d *Domain) List(ctx context.Context, in *proto.DomainListAllRequest) (*pro } func (d *Domain) Get(ctx context.Context, in *proto.DomainListRequest) (*proto.DomainListResponse, error) { - d.Store.Set(in.DomainId, "test1") + d.Store.Set(in.DomainId, "test") return &proto.DomainListResponse{}, nil } diff --git a/pkg/api/events.go b/pkg/api/events.go new file mode 100644 index 0000000..129599c --- /dev/null +++ b/pkg/api/events.go @@ -0,0 +1,44 @@ +package api + +import ( + "context" + "encoding/json" + "fmt" + + "deevirt.fr/compute/pkg/amqp" + "deevirt.fr/compute/pkg/api/proto" + "libvirt.org/go/libvirt" +) + +type Events struct { + NodeID string + CompanyID string + DatacenterID string + DomainID string + Event *libvirt.DomainQemuMonitorEvent +} + +func (d *Domain) Event(ctx context.Context, req *proto.DomainEventRequest) (*proto.DomainEventResponse, error) { + var events Events + + err := json.Unmarshal(req.Event, &events) + if err != nil { + fmt.Println("Erreur lors du décodage JSON:", err) + } + + // AMQP - On envoi l'évènement brut + e, _ := json.Marshal(events.Event) + a, _ := amqp.NewAMQP() + a.Publisher("vmcenter", + "events."+events.CompanyID+ + "."+events.DatacenterID+ + "."+events.DomainID, + e) + defer a.Close() + + t, _ := json.Marshal(events) + + fmt.Printf("%v\n", string(t)) + + return &proto.DomainEventResponse{}, nil +} diff --git a/pkg/api/proto/domain.pb.go b/pkg/api/proto/domain.pb.go index 373cfd6..e3a00d0 100644 --- a/pkg/api/proto/domain.pb.go +++ b/pkg/api/proto/domain.pb.go @@ -84,6 +84,91 @@ func (DomainPower) EnumDescriptor() ([]byte, []int) { return file_proto_domain_proto_rawDescGZIP(), []int{0} } +type DomainEventRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Event []byte `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"` +} + +func (x *DomainEventRequest) Reset() { + *x = DomainEventRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_proto_domain_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *DomainEventRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DomainEventRequest) ProtoMessage() {} + +func (x *DomainEventRequest) ProtoReflect() protoreflect.Message { + mi := &file_proto_domain_proto_msgTypes[0] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use DomainEventRequest.ProtoReflect.Descriptor instead. +func (*DomainEventRequest) Descriptor() ([]byte, []int) { + return file_proto_domain_proto_rawDescGZIP(), []int{0} +} + +func (x *DomainEventRequest) GetEvent() []byte { + if x != nil { + return x.Event + } + return nil +} + +type DomainEventResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields +} + +func (x *DomainEventResponse) Reset() { + *x = DomainEventResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_proto_domain_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *DomainEventResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DomainEventResponse) ProtoMessage() {} + +func (x *DomainEventResponse) ProtoReflect() protoreflect.Message { + mi := &file_proto_domain_proto_msgTypes[1] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use DomainEventResponse.ProtoReflect.Descriptor instead. +func (*DomainEventResponse) Descriptor() ([]byte, []int) { + return file_proto_domain_proto_rawDescGZIP(), []int{1} +} + type DomainListAllRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -93,7 +178,7 @@ type DomainListAllRequest struct { func (x *DomainListAllRequest) Reset() { *x = DomainListAllRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[0] + mi := &file_proto_domain_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106,7 +191,7 @@ func (x *DomainListAllRequest) String() string { func (*DomainListAllRequest) ProtoMessage() {} func (x *DomainListAllRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[0] + mi := &file_proto_domain_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119,7 +204,7 @@ func (x *DomainListAllRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainListAllRequest.ProtoReflect.Descriptor instead. func (*DomainListAllRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{0} + return file_proto_domain_proto_rawDescGZIP(), []int{2} } type DomainListAllResponse struct { @@ -133,7 +218,7 @@ type DomainListAllResponse struct { func (x *DomainListAllResponse) Reset() { *x = DomainListAllResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[1] + mi := &file_proto_domain_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +231,7 @@ func (x *DomainListAllResponse) String() string { func (*DomainListAllResponse) ProtoMessage() {} func (x *DomainListAllResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[1] + mi := &file_proto_domain_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +244,7 @@ func (x *DomainListAllResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainListAllResponse.ProtoReflect.Descriptor instead. func (*DomainListAllResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{1} + return file_proto_domain_proto_rawDescGZIP(), []int{3} } func (x *DomainListAllResponse) GetDomains() []*DomainListResponse { @@ -180,7 +265,7 @@ type DomainListRequest struct { func (x *DomainListRequest) Reset() { *x = DomainListRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[2] + mi := &file_proto_domain_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193,7 +278,7 @@ func (x *DomainListRequest) String() string { func (*DomainListRequest) ProtoMessage() {} func (x *DomainListRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[2] + mi := &file_proto_domain_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206,7 +291,7 @@ func (x *DomainListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainListRequest.ProtoReflect.Descriptor instead. func (*DomainListRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{2} + return file_proto_domain_proto_rawDescGZIP(), []int{4} } func (x *DomainListRequest) GetDomainId() string { @@ -229,7 +314,7 @@ type DomainListResponse struct { func (x *DomainListResponse) Reset() { *x = DomainListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[3] + mi := &file_proto_domain_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -242,7 +327,7 @@ func (x *DomainListResponse) String() string { func (*DomainListResponse) ProtoMessage() {} func (x *DomainListResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[3] + mi := &file_proto_domain_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -255,7 +340,7 @@ func (x *DomainListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainListResponse.ProtoReflect.Descriptor instead. func (*DomainListResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{3} + return file_proto_domain_proto_rawDescGZIP(), []int{5} } func (x *DomainListResponse) GetDomainId() string { @@ -291,7 +376,7 @@ type DomainCreateRequest struct { func (x *DomainCreateRequest) Reset() { *x = DomainCreateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[4] + mi := &file_proto_domain_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +389,7 @@ func (x *DomainCreateRequest) String() string { func (*DomainCreateRequest) ProtoMessage() {} func (x *DomainCreateRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[4] + mi := &file_proto_domain_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +402,7 @@ func (x *DomainCreateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainCreateRequest.ProtoReflect.Descriptor instead. func (*DomainCreateRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{4} + return file_proto_domain_proto_rawDescGZIP(), []int{6} } func (x *DomainCreateRequest) GetNodeId() string { @@ -345,7 +430,7 @@ type DomainCreateResponse struct { func (x *DomainCreateResponse) Reset() { *x = DomainCreateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[5] + mi := &file_proto_domain_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -358,7 +443,7 @@ func (x *DomainCreateResponse) String() string { func (*DomainCreateResponse) ProtoMessage() {} func (x *DomainCreateResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[5] + mi := &file_proto_domain_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -371,7 +456,7 @@ func (x *DomainCreateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainCreateResponse.ProtoReflect.Descriptor instead. func (*DomainCreateResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{5} + return file_proto_domain_proto_rawDescGZIP(), []int{7} } func (x *DomainCreateResponse) GetProgress() int64 { @@ -392,7 +477,7 @@ type DomainUpdateRequest struct { func (x *DomainUpdateRequest) Reset() { *x = DomainUpdateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[6] + mi := &file_proto_domain_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -405,7 +490,7 @@ func (x *DomainUpdateRequest) String() string { func (*DomainUpdateRequest) ProtoMessage() {} func (x *DomainUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[6] + mi := &file_proto_domain_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -418,7 +503,7 @@ func (x *DomainUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainUpdateRequest.ProtoReflect.Descriptor instead. func (*DomainUpdateRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{6} + return file_proto_domain_proto_rawDescGZIP(), []int{8} } func (x *DomainUpdateRequest) GetVmId() string { @@ -437,7 +522,7 @@ type DomainUpdateResponse struct { func (x *DomainUpdateResponse) Reset() { *x = DomainUpdateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[7] + mi := &file_proto_domain_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -450,7 +535,7 @@ func (x *DomainUpdateResponse) String() string { func (*DomainUpdateResponse) ProtoMessage() {} func (x *DomainUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[7] + mi := &file_proto_domain_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -463,7 +548,7 @@ func (x *DomainUpdateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainUpdateResponse.ProtoReflect.Descriptor instead. func (*DomainUpdateResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{7} + return file_proto_domain_proto_rawDescGZIP(), []int{9} } type DomainDeleteRequest struct { @@ -477,7 +562,7 @@ type DomainDeleteRequest struct { func (x *DomainDeleteRequest) Reset() { *x = DomainDeleteRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[8] + mi := &file_proto_domain_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -490,7 +575,7 @@ func (x *DomainDeleteRequest) String() string { func (*DomainDeleteRequest) ProtoMessage() {} func (x *DomainDeleteRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[8] + mi := &file_proto_domain_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -503,7 +588,7 @@ func (x *DomainDeleteRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeleteRequest.ProtoReflect.Descriptor instead. func (*DomainDeleteRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{8} + return file_proto_domain_proto_rawDescGZIP(), []int{10} } func (x *DomainDeleteRequest) GetVmId() string { @@ -522,7 +607,7 @@ type DomainDeleteResponse struct { func (x *DomainDeleteResponse) Reset() { *x = DomainDeleteResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[9] + mi := &file_proto_domain_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -535,7 +620,7 @@ func (x *DomainDeleteResponse) String() string { func (*DomainDeleteResponse) ProtoMessage() {} func (x *DomainDeleteResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[9] + mi := &file_proto_domain_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -548,7 +633,7 @@ func (x *DomainDeleteResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeleteResponse.ProtoReflect.Descriptor instead. func (*DomainDeleteResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{9} + return file_proto_domain_proto_rawDescGZIP(), []int{11} } type DomainPowerRequest struct { @@ -563,7 +648,7 @@ type DomainPowerRequest struct { func (x *DomainPowerRequest) Reset() { *x = DomainPowerRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[10] + mi := &file_proto_domain_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -576,7 +661,7 @@ func (x *DomainPowerRequest) String() string { func (*DomainPowerRequest) ProtoMessage() {} func (x *DomainPowerRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[10] + mi := &file_proto_domain_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -589,7 +674,7 @@ func (x *DomainPowerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainPowerRequest.ProtoReflect.Descriptor instead. func (*DomainPowerRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{10} + return file_proto_domain_proto_rawDescGZIP(), []int{12} } func (x *DomainPowerRequest) GetVmId() []byte { @@ -615,7 +700,7 @@ type DomainPowerResponse struct { func (x *DomainPowerResponse) Reset() { *x = DomainPowerResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[11] + mi := &file_proto_domain_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -628,7 +713,7 @@ func (x *DomainPowerResponse) String() string { func (*DomainPowerResponse) ProtoMessage() {} func (x *DomainPowerResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[11] + mi := &file_proto_domain_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -641,7 +726,7 @@ func (x *DomainPowerResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainPowerResponse.ProtoReflect.Descriptor instead. func (*DomainPowerResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{11} + return file_proto_domain_proto_rawDescGZIP(), []int{13} } type DomainDevicesGraphicsConsoleRequest struct { @@ -655,7 +740,7 @@ type DomainDevicesGraphicsConsoleRequest struct { func (x *DomainDevicesGraphicsConsoleRequest) Reset() { *x = DomainDevicesGraphicsConsoleRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[12] + mi := &file_proto_domain_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -668,7 +753,7 @@ func (x *DomainDevicesGraphicsConsoleRequest) String() string { func (*DomainDevicesGraphicsConsoleRequest) ProtoMessage() {} func (x *DomainDevicesGraphicsConsoleRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[12] + mi := &file_proto_domain_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -681,7 +766,7 @@ func (x *DomainDevicesGraphicsConsoleRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use DomainDevicesGraphicsConsoleRequest.ProtoReflect.Descriptor instead. func (*DomainDevicesGraphicsConsoleRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{12} + return file_proto_domain_proto_rawDescGZIP(), []int{14} } func (x *DomainDevicesGraphicsConsoleRequest) GetVmId() []byte { @@ -702,7 +787,7 @@ type DomainDevicesGraphicsConsoleResponse struct { func (x *DomainDevicesGraphicsConsoleResponse) Reset() { *x = DomainDevicesGraphicsConsoleResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[13] + mi := &file_proto_domain_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -715,7 +800,7 @@ func (x *DomainDevicesGraphicsConsoleResponse) String() string { func (*DomainDevicesGraphicsConsoleResponse) ProtoMessage() {} func (x *DomainDevicesGraphicsConsoleResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[13] + mi := &file_proto_domain_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -728,7 +813,7 @@ func (x *DomainDevicesGraphicsConsoleResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use DomainDevicesGraphicsConsoleResponse.ProtoReflect.Descriptor instead. func (*DomainDevicesGraphicsConsoleResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{13} + return file_proto_domain_proto_rawDescGZIP(), []int{15} } func (x *DomainDevicesGraphicsConsoleResponse) GetUri() string { @@ -742,98 +827,106 @@ var File_proto_domain_proto protoreflect.FileDescriptor var file_proto_domain_proto_rawDesc = []byte{ 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x22, 0x16, 0x0a, - 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x4e, 0x0a, 0x15, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, - 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x35, - 0x0a, 0x07, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x1b, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, - 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x07, 0x64, 0x6f, - 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x22, 0x30, 0x0a, 0x11, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, - 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x6f, - 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, - 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x12, 0x44, 0x6f, 0x6d, 0x61, 0x69, - 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, + 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x22, 0x2a, 0x0a, + 0x12, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0c, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x15, 0x0a, 0x13, 0x44, 0x6f, 0x6d, + 0x61, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, + 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x4e, 0x0a, 0x15, 0x44, 0x6f, 0x6d, 0x61, + 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x35, 0x0a, 0x07, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, + 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, + 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, + 0x07, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x22, 0x30, 0x0a, 0x11, 0x44, 0x6f, 0x6d, 0x61, + 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, - 0x69, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x03, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x46, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, - 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x17, 0x0a, 0x07, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, - 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x22, 0x32, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x67, - 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x67, - 0x72, 0x65, 0x73, 0x73, 0x22, 0x2a, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, - 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, - 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, - 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, - 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, - 0x76, 0x6d, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x12, - 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0c, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, - 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x06, 0x61, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x15, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, - 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x23, - 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, - 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0c, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x24, 0x44, 0x6f, 0x6d, 0x61, - 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, - 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, - 0x72, 0x69, 0x2a, 0x70, 0x0a, 0x0b, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, - 0x72, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00, - 0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, 0x41, 0x52, 0x54, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x52, - 0x45, 0x42, 0x4f, 0x4f, 0x54, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, 0x55, 0x54, 0x44, - 0x4f, 0x57, 0x4e, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x41, 0x55, 0x53, 0x45, 0x10, 0x04, - 0x12, 0x0a, 0x0a, 0x06, 0x52, 0x45, 0x53, 0x55, 0x4d, 0x45, 0x10, 0x05, 0x12, 0x09, 0x0a, 0x05, - 0x52, 0x45, 0x53, 0x45, 0x54, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x53, 0x54, 0x52, - 0x4f, 0x59, 0x10, 0x07, 0x32, 0xb4, 0x03, 0x0a, 0x06, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, - 0x47, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, - 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, - 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x03, 0x47, 0x65, 0x74, 0x12, - 0x1a, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, - 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x64, 0x65, - 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x06, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, + 0x52, 0x08, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x12, 0x44, 0x6f, + 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, + 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x46, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, - 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x2e, - 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, - 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x64, 0x65, - 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, + 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x22, 0x32, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, + 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, + 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x22, 0x2a, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, + 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, + 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x76, + 0x6d, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a, 0x13, 0x44, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, + 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, + 0x57, 0x0a, 0x12, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x06, 0x61, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x64, 0x65, 0x65, + 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, + 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x15, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, + 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, + 0x3a, 0x0a, 0x23, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x24, 0x44, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, + 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x03, 0x75, 0x72, 0x69, 0x2a, 0x70, 0x0a, 0x0b, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, + 0x6f, 0x77, 0x65, 0x72, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, + 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, 0x41, 0x52, 0x54, 0x10, 0x01, 0x12, 0x0a, + 0x0a, 0x06, 0x52, 0x45, 0x42, 0x4f, 0x4f, 0x54, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, + 0x55, 0x54, 0x44, 0x4f, 0x57, 0x4e, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x41, 0x55, 0x53, + 0x45, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x52, 0x45, 0x53, 0x55, 0x4d, 0x45, 0x10, 0x05, 0x12, + 0x09, 0x0a, 0x05, 0x52, 0x45, 0x53, 0x45, 0x54, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, + 0x53, 0x54, 0x52, 0x4f, 0x59, 0x10, 0x07, 0x32, 0xfa, 0x03, 0x0a, 0x06, 0x44, 0x6f, 0x6d, 0x61, + 0x69, 0x6e, 0x12, 0x44, 0x0a, 0x05, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x1b, 0x2e, 0x64, 0x65, + 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, + 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, + 0x12, 0x1d, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, + 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x1e, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, + 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, + 0x00, 0x12, 0x40, 0x0a, 0x03, 0x47, 0x65, 0x74, 0x12, 0x1a, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, + 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x2e, + 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, + 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x64, 0x65, + 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x06, - 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x1c, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, - 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, + 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, + 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, - 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x05, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x1b, - 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, - 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, 0x65, - 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, - 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x32, 0x81, 0x01, 0x0a, 0x15, - 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, - 0x70, 0x68, 0x69, 0x63, 0x73, 0x12, 0x68, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, - 0x12, 0x2c, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, - 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, - 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, - 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, - 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, - 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, - 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, + 0x1c, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, + 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, + 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, + 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x44, + 0x0a, 0x05, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x1b, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, + 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, 0x74, 0x2e, 0x44, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x00, 0x32, 0x81, 0x01, 0x0a, 0x15, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, + 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x12, 0x68, + 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x64, 0x65, 0x65, 0x76, + 0x69, 0x72, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x64, 0x65, 0x65, 0x76, 0x69, 0x72, + 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, + 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -849,43 +942,47 @@ func file_proto_domain_proto_rawDescGZIP() []byte { } var file_proto_domain_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_proto_domain_proto_msgTypes = make([]protoimpl.MessageInfo, 14) +var file_proto_domain_proto_msgTypes = make([]protoimpl.MessageInfo, 16) var file_proto_domain_proto_goTypes = []interface{}{ (DomainPower)(0), // 0: deevirt.DomainPower - (*DomainListAllRequest)(nil), // 1: deevirt.DomainListAllRequest - (*DomainListAllResponse)(nil), // 2: deevirt.DomainListAllResponse - (*DomainListRequest)(nil), // 3: deevirt.DomainListRequest - (*DomainListResponse)(nil), // 4: deevirt.DomainListResponse - (*DomainCreateRequest)(nil), // 5: deevirt.DomainCreateRequest - (*DomainCreateResponse)(nil), // 6: deevirt.DomainCreateResponse - (*DomainUpdateRequest)(nil), // 7: deevirt.DomainUpdateRequest - (*DomainUpdateResponse)(nil), // 8: deevirt.DomainUpdateResponse - (*DomainDeleteRequest)(nil), // 9: deevirt.DomainDeleteRequest - (*DomainDeleteResponse)(nil), // 10: deevirt.DomainDeleteResponse - (*DomainPowerRequest)(nil), // 11: deevirt.DomainPowerRequest - (*DomainPowerResponse)(nil), // 12: deevirt.DomainPowerResponse - (*DomainDevicesGraphicsConsoleRequest)(nil), // 13: deevirt.DomainDevicesGraphicsConsoleRequest - (*DomainDevicesGraphicsConsoleResponse)(nil), // 14: deevirt.DomainDevicesGraphicsConsoleResponse + (*DomainEventRequest)(nil), // 1: deevirt.DomainEventRequest + (*DomainEventResponse)(nil), // 2: deevirt.DomainEventResponse + (*DomainListAllRequest)(nil), // 3: deevirt.DomainListAllRequest + (*DomainListAllResponse)(nil), // 4: deevirt.DomainListAllResponse + (*DomainListRequest)(nil), // 5: deevirt.DomainListRequest + (*DomainListResponse)(nil), // 6: deevirt.DomainListResponse + (*DomainCreateRequest)(nil), // 7: deevirt.DomainCreateRequest + (*DomainCreateResponse)(nil), // 8: deevirt.DomainCreateResponse + (*DomainUpdateRequest)(nil), // 9: deevirt.DomainUpdateRequest + (*DomainUpdateResponse)(nil), // 10: deevirt.DomainUpdateResponse + (*DomainDeleteRequest)(nil), // 11: deevirt.DomainDeleteRequest + (*DomainDeleteResponse)(nil), // 12: deevirt.DomainDeleteResponse + (*DomainPowerRequest)(nil), // 13: deevirt.DomainPowerRequest + (*DomainPowerResponse)(nil), // 14: deevirt.DomainPowerResponse + (*DomainDevicesGraphicsConsoleRequest)(nil), // 15: deevirt.DomainDevicesGraphicsConsoleRequest + (*DomainDevicesGraphicsConsoleResponse)(nil), // 16: deevirt.DomainDevicesGraphicsConsoleResponse } var file_proto_domain_proto_depIdxs = []int32{ - 4, // 0: deevirt.DomainListAllResponse.domains:type_name -> deevirt.DomainListResponse + 6, // 0: deevirt.DomainListAllResponse.domains:type_name -> deevirt.DomainListResponse 0, // 1: deevirt.DomainPowerRequest.action:type_name -> deevirt.DomainPower - 1, // 2: deevirt.Domain.List:input_type -> deevirt.DomainListAllRequest - 3, // 3: deevirt.Domain.Get:input_type -> deevirt.DomainListRequest - 5, // 4: deevirt.Domain.Create:input_type -> deevirt.DomainCreateRequest - 7, // 5: deevirt.Domain.Update:input_type -> deevirt.DomainUpdateRequest - 9, // 6: deevirt.Domain.Delete:input_type -> deevirt.DomainDeleteRequest - 11, // 7: deevirt.Domain.Power:input_type -> deevirt.DomainPowerRequest - 13, // 8: deevirt.DomainDevicesGraphics.Console:input_type -> deevirt.DomainDevicesGraphicsConsoleRequest - 2, // 9: deevirt.Domain.List:output_type -> deevirt.DomainListAllResponse - 4, // 10: deevirt.Domain.Get:output_type -> deevirt.DomainListResponse - 6, // 11: deevirt.Domain.Create:output_type -> deevirt.DomainCreateResponse - 8, // 12: deevirt.Domain.Update:output_type -> deevirt.DomainUpdateResponse - 10, // 13: deevirt.Domain.Delete:output_type -> deevirt.DomainDeleteResponse - 12, // 14: deevirt.Domain.Power:output_type -> deevirt.DomainPowerResponse - 14, // 15: deevirt.DomainDevicesGraphics.Console:output_type -> deevirt.DomainDevicesGraphicsConsoleResponse - 9, // [9:16] is the sub-list for method output_type - 2, // [2:9] is the sub-list for method input_type + 1, // 2: deevirt.Domain.Event:input_type -> deevirt.DomainEventRequest + 3, // 3: deevirt.Domain.List:input_type -> deevirt.DomainListAllRequest + 5, // 4: deevirt.Domain.Get:input_type -> deevirt.DomainListRequest + 7, // 5: deevirt.Domain.Create:input_type -> deevirt.DomainCreateRequest + 9, // 6: deevirt.Domain.Update:input_type -> deevirt.DomainUpdateRequest + 11, // 7: deevirt.Domain.Delete:input_type -> deevirt.DomainDeleteRequest + 13, // 8: deevirt.Domain.Power:input_type -> deevirt.DomainPowerRequest + 15, // 9: deevirt.DomainDevicesGraphics.Console:input_type -> deevirt.DomainDevicesGraphicsConsoleRequest + 2, // 10: deevirt.Domain.Event:output_type -> deevirt.DomainEventResponse + 4, // 11: deevirt.Domain.List:output_type -> deevirt.DomainListAllResponse + 6, // 12: deevirt.Domain.Get:output_type -> deevirt.DomainListResponse + 8, // 13: deevirt.Domain.Create:output_type -> deevirt.DomainCreateResponse + 10, // 14: deevirt.Domain.Update:output_type -> deevirt.DomainUpdateResponse + 12, // 15: deevirt.Domain.Delete:output_type -> deevirt.DomainDeleteResponse + 14, // 16: deevirt.Domain.Power:output_type -> deevirt.DomainPowerResponse + 16, // 17: deevirt.DomainDevicesGraphics.Console:output_type -> deevirt.DomainDevicesGraphicsConsoleResponse + 10, // [10:18] is the sub-list for method output_type + 2, // [2:10] is the sub-list for method input_type 2, // [2:2] is the sub-list for extension type_name 2, // [2:2] is the sub-list for extension extendee 0, // [0:2] is the sub-list for field type_name @@ -898,7 +995,7 @@ func file_proto_domain_proto_init() { } if !protoimpl.UnsafeEnabled { file_proto_domain_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainListAllRequest); i { + switch v := v.(*DomainEventRequest); i { case 0: return &v.state case 1: @@ -910,7 +1007,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainListAllResponse); i { + switch v := v.(*DomainEventResponse); i { case 0: return &v.state case 1: @@ -922,7 +1019,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainListRequest); i { + switch v := v.(*DomainListAllRequest); i { case 0: return &v.state case 1: @@ -934,7 +1031,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainListResponse); i { + switch v := v.(*DomainListAllResponse); i { case 0: return &v.state case 1: @@ -946,7 +1043,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainCreateRequest); i { + switch v := v.(*DomainListRequest); i { case 0: return &v.state case 1: @@ -958,7 +1055,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainCreateResponse); i { + switch v := v.(*DomainListResponse); i { case 0: return &v.state case 1: @@ -970,7 +1067,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainUpdateRequest); i { + switch v := v.(*DomainCreateRequest); i { case 0: return &v.state case 1: @@ -982,7 +1079,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainUpdateResponse); i { + switch v := v.(*DomainCreateResponse); i { case 0: return &v.state case 1: @@ -994,7 +1091,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainDeleteRequest); i { + switch v := v.(*DomainUpdateRequest); i { case 0: return &v.state case 1: @@ -1006,7 +1103,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainDeleteResponse); i { + switch v := v.(*DomainUpdateResponse); i { case 0: return &v.state case 1: @@ -1018,7 +1115,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainPowerRequest); i { + switch v := v.(*DomainDeleteRequest); i { case 0: return &v.state case 1: @@ -1030,7 +1127,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainPowerResponse); i { + switch v := v.(*DomainDeleteResponse); i { case 0: return &v.state case 1: @@ -1042,7 +1139,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainDevicesGraphicsConsoleRequest); i { + switch v := v.(*DomainPowerRequest); i { case 0: return &v.state case 1: @@ -1054,6 +1151,30 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*DomainPowerResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_proto_domain_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*DomainDevicesGraphicsConsoleRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_proto_domain_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DomainDevicesGraphicsConsoleResponse); i { case 0: return &v.state @@ -1072,7 +1193,7 @@ func file_proto_domain_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_proto_domain_proto_rawDesc, NumEnums: 1, - NumMessages: 14, + NumMessages: 16, NumExtensions: 0, NumServices: 2, }, diff --git a/pkg/api/proto/domain.proto b/pkg/api/proto/domain.proto index a57956d..ab64ae1 100644 --- a/pkg/api/proto/domain.proto +++ b/pkg/api/proto/domain.proto @@ -5,6 +5,8 @@ package deevirt; // The greeting service definition. service Domain { + rpc Event (DomainEventRequest) returns (DomainEventResponse) {} + rpc List (DomainListAllRequest) returns (DomainListAllResponse) {} rpc Get (DomainListRequest) returns (DomainListResponse) {} rpc Create (DomainCreateRequest) returns (DomainCreateResponse) {} @@ -15,6 +17,12 @@ service Domain { } +message DomainEventRequest { + bytes event = 1; +} + +message DomainEventResponse {} + message DomainListAllRequest {} message DomainListAllResponse { diff --git a/pkg/api/proto/domain_grpc.pb.go b/pkg/api/proto/domain_grpc.pb.go index d79908f..2e82290 100644 --- a/pkg/api/proto/domain_grpc.pb.go +++ b/pkg/api/proto/domain_grpc.pb.go @@ -19,6 +19,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( + Domain_Event_FullMethodName = "/deevirt.Domain/Event" Domain_List_FullMethodName = "/deevirt.Domain/List" Domain_Get_FullMethodName = "/deevirt.Domain/Get" Domain_Create_FullMethodName = "/deevirt.Domain/Create" @@ -33,6 +34,7 @@ const ( // // The greeting service definition. type DomainClient interface { + Event(ctx context.Context, in *DomainEventRequest, opts ...grpc.CallOption) (*DomainEventResponse, error) List(ctx context.Context, in *DomainListAllRequest, opts ...grpc.CallOption) (*DomainListAllResponse, error) Get(ctx context.Context, in *DomainListRequest, opts ...grpc.CallOption) (*DomainListResponse, error) Create(ctx context.Context, in *DomainCreateRequest, opts ...grpc.CallOption) (*DomainCreateResponse, error) @@ -49,6 +51,16 @@ func NewDomainClient(cc grpc.ClientConnInterface) DomainClient { return &domainClient{cc} } +func (c *domainClient) Event(ctx context.Context, in *DomainEventRequest, opts ...grpc.CallOption) (*DomainEventResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(DomainEventResponse) + err := c.cc.Invoke(ctx, Domain_Event_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *domainClient) List(ctx context.Context, in *DomainListAllRequest, opts ...grpc.CallOption) (*DomainListAllResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(DomainListAllResponse) @@ -115,6 +127,7 @@ func (c *domainClient) Power(ctx context.Context, in *DomainPowerRequest, opts . // // The greeting service definition. type DomainServer interface { + Event(context.Context, *DomainEventRequest) (*DomainEventResponse, error) List(context.Context, *DomainListAllRequest) (*DomainListAllResponse, error) Get(context.Context, *DomainListRequest) (*DomainListResponse, error) Create(context.Context, *DomainCreateRequest) (*DomainCreateResponse, error) @@ -131,6 +144,9 @@ type DomainServer interface { // pointer dereference when methods are called. type UnimplementedDomainServer struct{} +func (UnimplementedDomainServer) Event(context.Context, *DomainEventRequest) (*DomainEventResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Event not implemented") +} func (UnimplementedDomainServer) List(context.Context, *DomainListAllRequest) (*DomainListAllResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method List not implemented") } @@ -170,6 +186,24 @@ func RegisterDomainServer(s grpc.ServiceRegistrar, srv DomainServer) { s.RegisterService(&Domain_ServiceDesc, srv) } +func _Domain_Event_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DomainEventRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(DomainServer).Event(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Domain_Event_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DomainServer).Event(ctx, req.(*DomainEventRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _Domain_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DomainListAllRequest) if err := dec(in); err != nil { @@ -285,6 +319,10 @@ var Domain_ServiceDesc = grpc.ServiceDesc{ ServiceName: "deevirt.Domain", HandlerType: (*DomainServer)(nil), Methods: []grpc.MethodDesc{ + { + MethodName: "Event", + Handler: _Domain_Event_Handler, + }, { MethodName: "List", Handler: _Domain_List_Handler,