From 7675f507a0794da65df383d58a14a836e8d3d4ae Mon Sep 17 00:00:00 2001 From: dhurley Date: Mon, 26 Sep 2022 12:04:20 +0100 Subject: [PATCH 1/4] Updated DataplaneStatus to include new field AgentActivityStatus --- sdk/proto/command.pb.go | 662 +++++++++++++++--- sdk/proto/command.proto | 11 + sdk/proto/events/event.pb.go | 1 - sdk/proto/nginx.pb.go | 159 ++--- sdk/proto/nginx.proto | 3 +- src/core/config/defaults.go | 4 +- src/plugins/dataplane_status_test.go | 8 +- .../nginx/agent/sdk/v2/proto/command.pb.go | 662 +++++++++++++++--- .../nginx/agent/sdk/v2/proto/command.proto | 11 + .../agent/sdk/v2/proto/events/event.pb.go | 1 - .../nginx/agent/sdk/v2/proto/nginx.pb.go | 159 ++--- .../nginx/agent/sdk/v2/proto/nginx.proto | 3 +- .../agent/v2/src/core/config/defaults.go | 4 +- .../nginx/agent/sdk/v2/proto/command.pb.go | 662 +++++++++++++++--- .../nginx/agent/sdk/v2/proto/command.proto | 11 + .../agent/sdk/v2/proto/events/event.pb.go | 1 - .../nginx/agent/sdk/v2/proto/nginx.pb.go | 159 ++--- .../nginx/agent/sdk/v2/proto/nginx.proto | 3 +- 18 files changed, 2018 insertions(+), 506 deletions(-) diff --git a/sdk/proto/command.pb.go b/sdk/proto/command.pb.go index 179802799..d0de717b6 100644 --- a/sdk/proto/command.pb.go +++ b/sdk/proto/command.pb.go @@ -130,7 +130,7 @@ func (x UploadStatus_TransferStatus) String() string { } func (UploadStatus_TransferStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5, 0} + return fileDescriptor_213c0bb044472049, []int{6, 0} } // Command is the envelope sent between the management plane and the data plane, requesting some action or reporting a response @@ -422,6 +422,7 @@ type DataplaneStatus struct { Host *HostInfo `protobuf:"bytes,3,opt,name=host,proto3" json:"host"` Healths []*NginxHealth `protobuf:"bytes,5,rep,name=healths,proto3" json:"healths"` DataplaneSoftwareDetails []*DataplaneSoftwareDetails `protobuf:"bytes,6,rep,name=dataplane_software_details,json=dataplaneSoftwareDetails,proto3" json:"dataplane_software_details"` + AgentActivityStatus *AgentActivityStatus `protobuf:"bytes,7,opt,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -495,6 +496,120 @@ func (m *DataplaneStatus) GetDataplaneSoftwareDetails() []*DataplaneSoftwareDeta return nil } +func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { + if m != nil { + return m.AgentActivityStatus + } + return nil +} + +type AgentActivityStatus struct { + CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + Module string `protobuf:"bytes,2,opt,name=Module,proto3" json:"module"` + Type string `protobuf:"bytes,3,opt,name=Type,proto3" json:"type"` + Category string `protobuf:"bytes,4,opt,name=Category,proto3" json:"category"` + // Types that are valid to be assigned to Status: + // *AgentActivityStatus_NginxConfigAction + Status isAgentActivityStatus_Status `protobuf_oneof:"Status"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AgentActivityStatus) Reset() { *m = AgentActivityStatus{} } +func (m *AgentActivityStatus) String() string { return proto.CompactTextString(m) } +func (*AgentActivityStatus) ProtoMessage() {} +func (*AgentActivityStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{3} +} +func (m *AgentActivityStatus) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *AgentActivityStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_AgentActivityStatus.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *AgentActivityStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_AgentActivityStatus.Merge(m, src) +} +func (m *AgentActivityStatus) XXX_Size() int { + return m.Size() +} +func (m *AgentActivityStatus) XXX_DiscardUnknown() { + xxx_messageInfo_AgentActivityStatus.DiscardUnknown(m) +} + +var xxx_messageInfo_AgentActivityStatus proto.InternalMessageInfo + +type isAgentActivityStatus_Status interface { + isAgentActivityStatus_Status() + MarshalTo([]byte) (int, error) + Size() int +} + +type AgentActivityStatus_NginxConfigAction struct { + NginxConfigAction NginxConfigAction `protobuf:"varint,5,opt,name=nginx_config_action,json=nginxConfigAction,proto3,enum=f5.nginx.agent.sdk.NginxConfigAction,oneof" json:"nginx_config_action"` +} + +func (*AgentActivityStatus_NginxConfigAction) isAgentActivityStatus_Status() {} + +func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *AgentActivityStatus) GetCorrelationID() string { + if m != nil { + return m.CorrelationID + } + return "" +} + +func (m *AgentActivityStatus) GetModule() string { + if m != nil { + return m.Module + } + return "" +} + +func (m *AgentActivityStatus) GetType() string { + if m != nil { + return m.Type + } + return "" +} + +func (m *AgentActivityStatus) GetCategory() string { + if m != nil { + return m.Category + } + return "" +} + +func (m *AgentActivityStatus) GetNginxConfigAction() NginxConfigAction { + if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigAction); ok { + return x.NginxConfigAction + } + return NginxConfigAction_UNKNOWN +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*AgentActivityStatus_NginxConfigAction)(nil), + } +} + type DownloadRequest struct { Meta *Metadata `protobuf:"bytes,1,opt,name=meta,proto3" json:"meta"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -506,7 +621,7 @@ func (m *DownloadRequest) Reset() { *m = DownloadRequest{} } func (m *DownloadRequest) String() string { return proto.CompactTextString(m) } func (*DownloadRequest) ProtoMessage() {} func (*DownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{3} + return fileDescriptor_213c0bb044472049, []int{4} } func (m *DownloadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -555,7 +670,7 @@ func (m *NginxConfigResponse) Reset() { *m = NginxConfigResponse{} } func (m *NginxConfigResponse) String() string { return proto.CompactTextString(m) } func (*NginxConfigResponse) ProtoMessage() {} func (*NginxConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{4} + return fileDescriptor_213c0bb044472049, []int{5} } func (m *NginxConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -618,7 +733,7 @@ func (m *UploadStatus) Reset() { *m = UploadStatus{} } func (m *UploadStatus) String() string { return proto.CompactTextString(m) } func (*UploadStatus) ProtoMessage() {} func (*UploadStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5} + return fileDescriptor_213c0bb044472049, []int{6} } func (m *UploadStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -670,7 +785,6 @@ func (m *UploadStatus) GetReason() string { type DataChunk struct { // Types that are valid to be assigned to Chunk: - // // *DataChunk_Header // *DataChunk_Data Chunk isDataChunk_Chunk `protobuf_oneof:"chunk"` @@ -683,7 +797,7 @@ func (m *DataChunk) Reset() { *m = DataChunk{} } func (m *DataChunk) String() string { return proto.CompactTextString(m) } func (*DataChunk) ProtoMessage() {} func (*DataChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6} + return fileDescriptor_213c0bb044472049, []int{7} } func (m *DataChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -772,7 +886,7 @@ func (m *ChunkedResourceHeader) Reset() { *m = ChunkedResourceHeader{} } func (m *ChunkedResourceHeader) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceHeader) ProtoMessage() {} func (*ChunkedResourceHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{7} + return fileDescriptor_213c0bb044472049, []int{8} } func (m *ChunkedResourceHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -842,7 +956,7 @@ func (m *ChunkedResourceChunk) Reset() { *m = ChunkedResourceChunk{} } func (m *ChunkedResourceChunk) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceChunk) ProtoMessage() {} func (*ChunkedResourceChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{8} + return fileDescriptor_213c0bb044472049, []int{9} } func (m *ChunkedResourceChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -900,6 +1014,7 @@ func init() { proto.RegisterType((*Command)(nil), "f5.nginx.agent.sdk.Command") proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") proto.RegisterType((*DataplaneStatus)(nil), "f5.nginx.agent.sdk.DataplaneStatus") + proto.RegisterType((*AgentActivityStatus)(nil), "f5.nginx.agent.sdk.AgentActivityStatus") proto.RegisterType((*DownloadRequest)(nil), "f5.nginx.agent.sdk.DownloadRequest") proto.RegisterType((*NginxConfigResponse)(nil), "f5.nginx.agent.sdk.NginxConfigResponse") proto.RegisterType((*UploadStatus)(nil), "f5.nginx.agent.sdk.UploadStatus") @@ -911,85 +1026,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1233 bytes of a gzipped FileDescriptorProto + // 1375 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x26, 0x65, 0x8b, 0xb2, 0x8e, 0xe4, 0x58, 0x98, 0x38, 0x3f, 0x18, 0x23, 0x30, 0x0d, 0xfe, - 0x4d, 0xed, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x02, 0x24, 0x2b, 0x53, 0x52, 0x4a, 0x23, 0xb6, 0x54, - 0x8c, 0xe3, 0x04, 0x48, 0x51, 0x08, 0x0c, 0x39, 0xba, 0xc0, 0x16, 0xa9, 0x72, 0xa8, 0x24, 0x0e, - 0xba, 0x2f, 0x50, 0x74, 0x57, 0x14, 0x45, 0x9f, 0xa2, 0xaf, 0xd1, 0x65, 0x9e, 0x80, 0x28, 0xbc, - 0xe4, 0x03, 0x74, 0x5d, 0xcc, 0x85, 0xb2, 0x64, 0x53, 0x72, 0x03, 0x77, 0xa3, 0x39, 0x1c, 0x7e, - 0xdf, 0x77, 0x2e, 0x33, 0x73, 0x86, 0x82, 0x55, 0x37, 0x18, 0x0e, 0x1d, 0xdf, 0xab, 0x8e, 0xc2, - 0x20, 0x0a, 0x10, 0xea, 0x7e, 0x55, 0xf5, 0x7b, 0x03, 0xff, 0x5d, 0xd5, 0xe9, 0x11, 0x3f, 0xaa, - 0x52, 0xef, 0x64, 0x03, 0x7a, 0x41, 0x2f, 0x10, 0xef, 0x37, 0xca, 0x0c, 0x1e, 0xf8, 0xf2, 0xa9, - 0x24, 0x40, 0xe2, 0x01, 0xfa, 0x01, 0x4d, 0xed, 0x92, 0xd0, 0x98, 0x70, 0xfc, 0xee, 0xa0, 0x27, - 0x9f, 0x10, 0x79, 0x43, 0xfc, 0x88, 0xd6, 0xf8, 0x20, 0xe7, 0xee, 0x7a, 0xa3, 0x0e, 0x0d, 0xba, - 0xd1, 0x5b, 0x27, 0x24, 0x1d, 0x8f, 0x44, 0xce, 0xe0, 0x94, 0x8a, 0x57, 0xe6, 0x2f, 0x00, 0x85, - 0xba, 0x08, 0x11, 0x3d, 0x86, 0xe5, 0x21, 0x89, 0x1c, 0x5d, 0xdd, 0x52, 0x77, 0x4a, 0xbb, 0xf7, - 0xaa, 0x57, 0x63, 0xad, 0x1e, 0x92, 0xc8, 0xf1, 0x9c, 0xc8, 0xb1, 0x56, 0x92, 0xd8, 0xe0, 0x68, - 0xcc, 0x7f, 0x51, 0x13, 0x96, 0xa3, 0xb3, 0x11, 0xd1, 0x73, 0x5b, 0xea, 0xce, 0xad, 0xdd, 0xed, - 0x2c, 0xae, 0x74, 0x93, 0x8e, 0xcf, 0xcf, 0x46, 0x44, 0xc8, 0x30, 0x22, 0xe6, 0xbf, 0xe8, 0x15, - 0x80, 0x3b, 0xf4, 0x3a, 0x34, 0x72, 0xa2, 0x31, 0xd5, 0x97, 0x78, 0x20, 0x0f, 0x16, 0x88, 0x1d, - 0x71, 0x20, 0x26, 0x74, 0x14, 0xf8, 0x94, 0x58, 0xb7, 0x92, 0xd8, 0x98, 0x12, 0xb0, 0x15, 0x5c, - 0x74, 0x87, 0x12, 0x84, 0x5e, 0x40, 0x99, 0xab, 0x74, 0x44, 0xbd, 0xf4, 0x65, 0xae, 0x6e, 0x64, - 0xa9, 0xb7, 0xd8, 0x73, 0x9d, 0xc3, 0xac, 0x4a, 0x12, 0x1b, 0x33, 0x44, 0x5b, 0xc1, 0xa2, 0xfe, - 0x02, 0x80, 0xde, 0xc1, 0x9d, 0xe9, 0xd7, 0x9d, 0x50, 0x46, 0xa3, 0xe7, 0xb9, 0x83, 0xed, 0x6b, - 0x1c, 0x4c, 0x82, 0xbf, 0x9b, 0xc4, 0x46, 0xb6, 0x92, 0xad, 0xe0, 0xdb, 0xfe, 0x55, 0x06, 0xf3, - 0xcc, 0x25, 0x19, 0xde, 0x27, 0x6e, 0xd4, 0x09, 0xc9, 0xf7, 0x63, 0x42, 0x23, 0x5d, 0x9b, 0xef, - 0x79, 0x8f, 0x59, 0x75, 0x81, 0xc7, 0x02, 0x2e, 0x3c, 0x67, 0x2a, 0x31, 0xcf, 0xce, 0x55, 0x06, - 0xfa, 0x01, 0xfe, 0x77, 0x19, 0x2f, 0x93, 0x2e, 0x70, 0xd7, 0x3b, 0xd7, 0xbb, 0x96, 0x59, 0x6f, - 0x24, 0xb1, 0x31, 0x47, 0xcb, 0x56, 0xf0, 0xba, 0x93, 0xc1, 0x41, 0x11, 0xac, 0x4f, 0x18, 0xa2, - 0x4e, 0x22, 0xed, 0x15, 0xee, 0xfb, 0xd3, 0x45, 0xbe, 0x79, 0xf9, 0x44, 0xd6, 0x7a, 0x12, 0x1b, - 0x99, 0x3a, 0xb6, 0x82, 0x91, 0x73, 0x05, 0xcf, 0xf6, 0xcf, 0x34, 0x5a, 0x2f, 0xce, 0xdf, 0x3f, - 0x53, 0xde, 0xc4, 0xfe, 0x99, 0x26, 0xb2, 0xfd, 0x33, 0x25, 0x8f, 0xba, 0x50, 0x61, 0x47, 0x6a, - 0x74, 0xea, 0xf8, 0x24, 0xdd, 0xf9, 0x25, 0xae, 0xfd, 0xff, 0x2c, 0xed, 0x46, 0x8a, 0x15, 0xdb, - 0xda, 0x5a, 0x4f, 0x62, 0xe3, 0x8a, 0x80, 0xad, 0xe0, 0x35, 0x6f, 0x16, 0x88, 0xbe, 0x83, 0x32, - 0x6f, 0x0a, 0x9d, 0x90, 0x8c, 0x82, 0x30, 0xd2, 0xcb, 0xf3, 0xab, 0x25, 0x7a, 0x48, 0xb5, 0xc9, - 0x06, 0xcc, 0xd1, 0x22, 0x8d, 0x69, 0x3e, 0x4b, 0x83, 0x5c, 0x00, 0xd0, 0xcf, 0x2a, 0x6c, 0x4c, - 0x85, 0x71, 0xa9, 0xdd, 0xe8, 0xab, 0xdc, 0xdb, 0xe7, 0x8b, 0x33, 0x92, 0xa4, 0x86, 0xe0, 0x58, - 0x9b, 0x49, 0x6c, 0x2c, 0xd0, 0xb4, 0x15, 0xac, 0x7b, 0x73, 0xb8, 0xe6, 0x43, 0x28, 0x4d, 0x35, - 0x1a, 0x04, 0xa0, 0xb5, 0xda, 0xf8, 0x70, 0xef, 0xa0, 0xa2, 0xa0, 0x32, 0xac, 0x34, 0xda, 0x2f, - 0x5b, 0x07, 0xed, 0xbd, 0x46, 0x45, 0x65, 0x6f, 0x8e, 0xbf, 0xe1, 0x76, 0xce, 0xd2, 0x60, 0x99, - 0x09, 0x9a, 0xbf, 0x2e, 0xc1, 0x9d, 0xcc, 0x0e, 0x83, 0xbe, 0x05, 0x4d, 0x2e, 0x91, 0xca, 0x3b, - 0xdd, 0xa3, 0x7f, 0xdd, 0x9c, 0x66, 0x67, 0x2d, 0x48, 0x62, 0x43, 0x4a, 0x61, 0x39, 0xa2, 0x01, - 0x00, 0x09, 0xc3, 0x20, 0xec, 0xb8, 0x81, 0x97, 0xb6, 0xd2, 0xc7, 0x1f, 0xed, 0xa0, 0xc9, 0x24, - 0xea, 0x81, 0x27, 0xdb, 0xe1, 0x85, 0x22, 0x2e, 0x92, 0xf4, 0x15, 0xba, 0x0f, 0x85, 0x21, 0xa1, - 0xd4, 0xe9, 0x11, 0xde, 0x65, 0x8b, 0x56, 0x29, 0x89, 0x8d, 0x74, 0x0a, 0xa7, 0x06, 0x32, 0x20, - 0xcf, 0x39, 0xbc, 0x59, 0x16, 0xad, 0x62, 0x12, 0x1b, 0x62, 0x02, 0x8b, 0xc1, 0x7c, 0x02, 0xab, - 0x33, 0xc1, 0xa0, 0x35, 0x28, 0xd5, 0x0f, 0x1b, 0x9d, 0xe3, 0xd6, 0xb3, 0x56, 0xfb, 0x65, 0xab, - 0xa2, 0xb0, 0xfa, 0xb2, 0x89, 0xf6, 0xb3, 0x8a, 0x8a, 0x56, 0xa1, 0xc8, 0xec, 0x26, 0xc6, 0x6d, - 0x5c, 0xc9, 0x99, 0x35, 0xa8, 0x5c, 0x8e, 0x99, 0xc1, 0x9b, 0x18, 0x33, 0xb8, 0xc2, 0xb4, 0x98, - 0x9d, 0x6a, 0xa9, 0xe6, 0x6f, 0x4b, 0xb0, 0x76, 0x69, 0xff, 0xa3, 0xcf, 0xa0, 0x48, 0xcf, 0x68, - 0x44, 0x86, 0x9d, 0x81, 0xc7, 0x17, 0xa5, 0x68, 0xad, 0x26, 0xb1, 0x71, 0x31, 0x89, 0x57, 0x84, - 0xb9, 0xef, 0xa1, 0xaf, 0xa1, 0x90, 0xee, 0xc7, 0xdc, 0xd6, 0xd2, 0x4e, 0x69, 0x77, 0x6b, 0x6e, - 0x73, 0x4e, 0xf7, 0x20, 0xaf, 0x8b, 0x24, 0xe1, 0xd4, 0x60, 0x57, 0x25, 0xbb, 0x8e, 0xe5, 0x0d, - 0x95, 0x79, 0x55, 0xda, 0x01, 0x8d, 0xf6, 0xfd, 0x6e, 0x20, 0xee, 0x38, 0x86, 0xc6, 0xfc, 0x17, - 0x3d, 0x85, 0x42, 0x9f, 0x38, 0xa7, 0x51, 0x9f, 0xea, 0x79, 0x1e, 0xc4, 0xfc, 0x2b, 0xc8, 0xe6, - 0x38, 0x11, 0x83, 0xe4, 0xe0, 0xd4, 0x40, 0x3f, 0x2d, 0x3e, 0x70, 0x1a, 0xd7, 0xfe, 0x4f, 0x0f, - 0xdc, 0x82, 0xe3, 0x76, 0x08, 0x6b, 0x8d, 0xe0, 0xad, 0x7f, 0x1a, 0x38, 0x5e, 0xda, 0x2f, 0x6f, - 0xf0, 0x39, 0x61, 0xfe, 0x98, 0x83, 0xdb, 0x19, 0x77, 0x24, 0x3a, 0x9c, 0x39, 0x7e, 0x1f, 0xf5, - 0x6d, 0x90, 0x75, 0xe0, 0xf6, 0x41, 0x73, 0xdc, 0x68, 0x10, 0xf8, 0xf2, 0xb0, 0xdd, 0xbf, 0xe6, - 0xae, 0xde, 0xe3, 0x60, 0x21, 0x25, 0x88, 0x58, 0x8e, 0xe8, 0x05, 0x94, 0xe4, 0x2d, 0xc2, 0x12, - 0x92, 0x1b, 0xe3, 0x93, 0xec, 0xf0, 0x18, 0xac, 0x41, 0xa8, 0x1b, 0x0e, 0x46, 0x51, 0x10, 0x5a, - 0x6b, 0x49, 0x6c, 0x4c, 0x93, 0x31, 0x88, 0x07, 0xb6, 0x4c, 0xe6, 0xdf, 0x2a, 0x94, 0x8f, 0x47, - 0xac, 0xae, 0x72, 0xbf, 0xdf, 0xe4, 0x2b, 0xed, 0x68, 0x52, 0x3e, 0x91, 0x6f, 0x2d, 0x8b, 0x3d, - 0xed, 0xad, 0xfa, 0x3c, 0x74, 0x7c, 0xda, 0x25, 0xe1, 0x82, 0xae, 0x65, 0x82, 0x16, 0x12, 0x87, - 0x06, 0xbe, 0xec, 0x24, 0x1c, 0x23, 0x66, 0xb0, 0x1c, 0xcd, 0x2f, 0xe1, 0xd6, 0xac, 0x12, 0x2a, - 0x41, 0xe1, 0xa2, 0x47, 0x68, 0x90, 0xe3, 0xfd, 0x01, 0x40, 0x7b, 0xba, 0xb7, 0x7f, 0xd0, 0x6c, - 0x54, 0x72, 0xe6, 0x1f, 0x2a, 0x14, 0x59, 0x05, 0xea, 0xfd, 0xb1, 0x7f, 0x82, 0xda, 0xa0, 0xf5, - 0x89, 0xe3, 0x91, 0x70, 0xe1, 0xc2, 0x33, 0x28, 0xf1, 0x30, 0xa1, 0xc1, 0x38, 0x74, 0x89, 0xcd, - 0x09, 0x22, 0x1e, 0x41, 0xb6, 0x15, 0x2c, 0x2d, 0x64, 0x8b, 0x56, 0xcf, 0x0b, 0x31, 0xe7, 0x7b, - 0xe5, 0x92, 0x1c, 0x7f, 0x14, 0x25, 0x65, 0x4c, 0x5b, 0xc1, 0x7c, 0xb4, 0x0a, 0x90, 0x77, 0xd9, - 0x2b, 0xf3, 0x83, 0x0a, 0x77, 0x32, 0x43, 0xb8, 0xd1, 0x9a, 0x99, 0xa0, 0x71, 0x79, 0xb1, 0x66, - 0x79, 0x91, 0x8e, 0x98, 0xc1, 0x72, 0x44, 0x3b, 0xb0, 0xe2, 0xf6, 0x89, 0x7b, 0x42, 0xc7, 0x43, - 0xb9, 0x08, 0xe5, 0x24, 0x36, 0x26, 0x73, 0x78, 0x62, 0xa1, 0x2f, 0x00, 0x38, 0xa7, 0x43, 0x07, - 0xef, 0x09, 0xef, 0xea, 0x79, 0xf9, 0xd5, 0x3c, 0x99, 0xc5, 0x45, 0x6e, 0x1f, 0x0d, 0xde, 0x13, - 0xf3, 0x77, 0x15, 0xd6, 0xb3, 0xca, 0x70, 0xa3, 0x8c, 0xb6, 0x59, 0xb4, 0xcc, 0xdb, 0xc0, 0x93, - 0x39, 0xc9, 0x68, 0xc5, 0x1c, 0x2e, 0x70, 0x6b, 0xdf, 0x43, 0xf7, 0xe4, 0x1a, 0xb1, 0x94, 0xca, - 0x17, 0x95, 0x97, 0x75, 0x7f, 0xf4, 0xe7, 0xf9, 0xa6, 0xfa, 0xe1, 0x7c, 0x53, 0xfd, 0xeb, 0x7c, - 0x53, 0x7d, 0xf5, 0xa0, 0x37, 0x88, 0xfa, 0xe3, 0xd7, 0x55, 0x37, 0x18, 0xd6, 0x78, 0x24, 0x35, - 0x1e, 0x49, 0x8d, 0x7a, 0x27, 0xb5, 0x37, 0xbb, 0x35, 0xfe, 0x6f, 0xe7, 0x09, 0xff, 0x7d, 0xad, - 0xf1, 0xe1, 0xe1, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xa7, 0x4a, 0x04, 0x9c, 0x0d, 0x00, - 0x00, + 0x17, 0x26, 0x15, 0x9b, 0x92, 0x8e, 0x64, 0x5b, 0xff, 0xd8, 0xf9, 0xab, 0x18, 0x81, 0x69, 0xb0, + 0x4d, 0xe3, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x52, 0x24, 0x2b, 0x53, 0x72, 0x4a, 0x23, 0xb1, 0x55, + 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0xe2, 0xa8, 0x24, 0xe5, 0xc4, 0x41, + 0xf7, 0x05, 0x8a, 0x02, 0x5d, 0x14, 0x5d, 0xf4, 0x29, 0xba, 0xec, 0x2b, 0x74, 0x99, 0x27, 0x20, + 0x8a, 0x2c, 0xf9, 0x00, 0x5d, 0x17, 0x73, 0xa1, 0x4c, 0x59, 0x94, 0x5c, 0xc3, 0xdd, 0x68, 0x86, + 0x33, 0xdf, 0xf9, 0xce, 0x65, 0xce, 0x9c, 0x33, 0x82, 0x25, 0x87, 0x0e, 0x06, 0xb6, 0xef, 0x36, + 0x86, 0x01, 0x8d, 0x28, 0x42, 0x87, 0x5f, 0x34, 0xfc, 0x9e, 0xe7, 0xbf, 0x69, 0xd8, 0x3d, 0xe2, + 0x47, 0x8d, 0xd0, 0x3d, 0x5a, 0x87, 0x1e, 0xed, 0x51, 0xb1, 0xbf, 0x5e, 0x65, 0x70, 0xea, 0xcb, + 0xaf, 0x8a, 0x00, 0x89, 0x0f, 0xe8, 0xd3, 0x30, 0x9d, 0x57, 0x04, 0xc7, 0x58, 0xc6, 0x3f, 0xf4, + 0x7a, 0xf2, 0x0b, 0x91, 0x13, 0xe2, 0x47, 0x61, 0x93, 0x0f, 0x72, 0xed, 0x86, 0x3b, 0xec, 0x86, + 0xf4, 0x30, 0x7a, 0x6d, 0x07, 0xa4, 0xeb, 0x92, 0xc8, 0xf6, 0x8e, 0x43, 0xb1, 0x65, 0xfc, 0x02, + 0x50, 0x6c, 0x09, 0x13, 0xd1, 0x7d, 0x58, 0x18, 0x90, 0xc8, 0xae, 0xab, 0x9b, 0xea, 0x56, 0x65, + 0xfb, 0x66, 0x63, 0xda, 0xd6, 0xc6, 0x3e, 0x89, 0x6c, 0xd7, 0x8e, 0x6c, 0xb3, 0x94, 0xc4, 0x3a, + 0x47, 0x63, 0xfe, 0x8b, 0x76, 0x61, 0x21, 0x3a, 0x1d, 0x92, 0x7a, 0x61, 0x53, 0xdd, 0x5a, 0xde, + 0xbe, 0x9d, 0x27, 0x2b, 0xd5, 0xa4, 0xe3, 0xd3, 0xd3, 0x21, 0x11, 0x34, 0x4c, 0x10, 0xf3, 0x5f, + 0xf4, 0x12, 0xc0, 0x19, 0xb8, 0xdd, 0x30, 0xb2, 0xa3, 0x51, 0x58, 0xbf, 0xc6, 0x0d, 0xb9, 0x33, + 0x87, 0xec, 0x09, 0x07, 0x62, 0x12, 0x0e, 0xa9, 0x1f, 0x12, 0x73, 0x39, 0x89, 0xf5, 0x0c, 0x81, + 0xa5, 0xe0, 0xb2, 0x33, 0x90, 0x20, 0xf4, 0x1c, 0xaa, 0x9c, 0xa5, 0x2b, 0xe2, 0x55, 0x5f, 0xe0, + 0xec, 0x7a, 0x1e, 0xfb, 0x01, 0xfb, 0x6e, 0x71, 0x98, 0x59, 0x4b, 0x62, 0x7d, 0x42, 0xd0, 0x52, + 0xb0, 0x88, 0xbf, 0x00, 0xa0, 0x37, 0x70, 0x3d, 0xbb, 0xdd, 0x0d, 0xa4, 0x35, 0xf5, 0x45, 0xae, + 0xe0, 0xf6, 0x05, 0x0a, 0xc6, 0xc6, 0xdf, 0x48, 0x62, 0x3d, 0x9f, 0xc9, 0x52, 0xf0, 0xaa, 0x3f, + 0x2d, 0xc1, 0x34, 0x73, 0x4a, 0x86, 0xf7, 0x89, 0x13, 0x75, 0x03, 0xf2, 0xdd, 0x88, 0x84, 0x51, + 0x5d, 0x9b, 0xad, 0x79, 0x87, 0xcd, 0x5a, 0x02, 0x8f, 0x05, 0x5c, 0x68, 0xce, 0x65, 0x62, 0x9a, + 0xed, 0x69, 0x09, 0xf4, 0x3d, 0xfc, 0xff, 0x3c, 0x5e, 0x3a, 0x5d, 0xe4, 0xaa, 0xb7, 0x2e, 0x56, + 0x2d, 0xbd, 0x5e, 0x4f, 0x62, 0x7d, 0x06, 0x97, 0xa5, 0xe0, 0x35, 0x3b, 0x47, 0x06, 0x45, 0xb0, + 0x36, 0x96, 0x10, 0x71, 0x12, 0x6e, 0x97, 0xb8, 0xee, 0x8f, 0xe7, 0xe9, 0xe6, 0xe1, 0x13, 0x5e, + 0xd7, 0x93, 0x58, 0xcf, 0xe5, 0xb1, 0x14, 0x8c, 0xec, 0x29, 0x3c, 0xcb, 0x9f, 0x2c, 0xba, 0x5e, + 0x9e, 0x9d, 0x3f, 0x19, 0x6d, 0x22, 0x7f, 0xb2, 0x82, 0x2c, 0x7f, 0x32, 0xf4, 0xe8, 0x10, 0x6a, + 0xec, 0x4a, 0x0d, 0x8f, 0x6d, 0x9f, 0xa4, 0x99, 0x5f, 0xe1, 0xdc, 0x1f, 0xe6, 0x71, 0xb7, 0x53, + 0xac, 0x48, 0x6b, 0x73, 0x2d, 0x89, 0xf5, 0x29, 0x02, 0x4b, 0xc1, 0x2b, 0xee, 0x24, 0x10, 0x7d, + 0x0b, 0x55, 0x5e, 0x14, 0xba, 0x01, 0x19, 0xd2, 0x20, 0xaa, 0x57, 0x67, 0x47, 0x4b, 0xd4, 0x90, + 0xc6, 0x2e, 0x1b, 0x30, 0x47, 0x0b, 0x37, 0xb2, 0xf2, 0xcc, 0x0d, 0x72, 0x06, 0x40, 0x3f, 0xa9, + 0xb0, 0x9e, 0x31, 0xe3, 0x5c, 0xb9, 0xa9, 0x2f, 0x71, 0x6d, 0x9f, 0xce, 0xf7, 0x48, 0x0a, 0xb5, + 0x85, 0x8c, 0xb9, 0x91, 0xc4, 0xfa, 0x1c, 0x4e, 0x4b, 0xc1, 0x75, 0x77, 0x86, 0xac, 0x71, 0x17, + 0x2a, 0x99, 0x42, 0x83, 0x00, 0xb4, 0x83, 0x0e, 0xde, 0xdf, 0x79, 0x5c, 0x53, 0x50, 0x15, 0x4a, + 0xed, 0xce, 0x8b, 0x83, 0xc7, 0x9d, 0x9d, 0x76, 0x4d, 0x65, 0x3b, 0xcf, 0xbe, 0xe6, 0xf3, 0x82, + 0xa9, 0xc1, 0x02, 0x23, 0x34, 0x7e, 0xbd, 0x06, 0xd7, 0x73, 0x2b, 0x0c, 0xfa, 0x06, 0x34, 0x79, + 0x44, 0x2a, 0xaf, 0x74, 0xf7, 0xfe, 0x75, 0x71, 0x9a, 0x5c, 0x35, 0x21, 0x89, 0x75, 0x49, 0x85, + 0xe5, 0x88, 0x3c, 0x00, 0x12, 0x04, 0x34, 0xe8, 0x3a, 0xd4, 0x4d, 0x4b, 0xe9, 0xfd, 0x4b, 0x2b, + 0xd8, 0x65, 0x14, 0x2d, 0xea, 0xca, 0x72, 0x78, 0xc6, 0x88, 0xcb, 0x24, 0xdd, 0x42, 0xb7, 0xa0, + 0x38, 0x20, 0x61, 0x68, 0xf7, 0x08, 0xaf, 0xb2, 0x65, 0xb3, 0x92, 0xc4, 0x7a, 0xba, 0x84, 0xd3, + 0x09, 0xd2, 0x61, 0x91, 0xcb, 0xf0, 0x62, 0x59, 0x36, 0xcb, 0x49, 0xac, 0x8b, 0x05, 0x2c, 0x06, + 0xe3, 0x01, 0x2c, 0x4d, 0x18, 0x83, 0x56, 0xa0, 0xd2, 0xda, 0x6f, 0x77, 0x9f, 0x1d, 0x3c, 0x3a, + 0xe8, 0xbc, 0x38, 0xa8, 0x29, 0x2c, 0xbe, 0x6c, 0xa1, 0xf3, 0xa8, 0xa6, 0xa2, 0x25, 0x28, 0xb3, + 0xf9, 0x2e, 0xc6, 0x1d, 0x5c, 0x2b, 0x18, 0x4d, 0xa8, 0x9d, 0xb7, 0x99, 0xc1, 0x77, 0x31, 0x66, + 0x70, 0x85, 0x71, 0xb1, 0x79, 0xca, 0xa5, 0x1a, 0x3f, 0x2f, 0xc0, 0xca, 0xb9, 0xfc, 0x47, 0x9f, + 0x40, 0x39, 0x3c, 0x0d, 0x23, 0x32, 0xe8, 0x7a, 0x2e, 0x3f, 0x94, 0xb2, 0xb9, 0x94, 0xc4, 0xfa, + 0xd9, 0x22, 0x2e, 0x89, 0xe9, 0x9e, 0x8b, 0xbe, 0x82, 0x62, 0x9a, 0x8f, 0x85, 0xcd, 0x6b, 0x5b, + 0x95, 0xed, 0xcd, 0x99, 0xc5, 0x39, 0xcd, 0x41, 0x1e, 0x17, 0x29, 0x84, 0xd3, 0x09, 0x6b, 0x95, + 0xac, 0x1d, 0xcb, 0x0e, 0x95, 0xdb, 0x2a, 0x2d, 0x1a, 0x46, 0x7b, 0xfe, 0x21, 0x15, 0x3d, 0x8e, + 0xa1, 0x31, 0xff, 0x45, 0x0f, 0xa1, 0xd8, 0x27, 0xf6, 0x71, 0xd4, 0x0f, 0xeb, 0x8b, 0xdc, 0x88, + 0xd9, 0x2d, 0xc8, 0xe2, 0x38, 0x61, 0x83, 0x94, 0xc1, 0xe9, 0x04, 0xfd, 0x38, 0xff, 0xc2, 0x69, + 0x9c, 0xfb, 0x3f, 0xbd, 0x70, 0xb3, 0xaf, 0x1b, 0x3a, 0x49, 0x5b, 0x91, 0xed, 0x44, 0xde, 0x89, + 0x17, 0x9d, 0xa6, 0x95, 0xac, 0x78, 0x41, 0x2b, 0xda, 0x91, 0x78, 0x79, 0x2d, 0x32, 0xad, 0xe8, + 0x1c, 0x93, 0x6c, 0x44, 0x93, 0x78, 0xe3, 0x8f, 0x02, 0xac, 0xe6, 0xf0, 0xa0, 0x2f, 0x59, 0x5e, + 0x06, 0x01, 0x39, 0xb6, 0x23, 0x8f, 0xfa, 0x7b, 0x6d, 0x99, 0x19, 0x28, 0x89, 0xf5, 0x65, 0xe7, + 0x6c, 0x83, 0xa5, 0xc7, 0x24, 0x10, 0x19, 0xa0, 0xed, 0x53, 0x77, 0x74, 0x2c, 0x2e, 0x60, 0x59, + 0x5c, 0xd4, 0x01, 0x5f, 0xc1, 0x72, 0x07, 0xdd, 0x84, 0x05, 0x56, 0x55, 0xe4, 0xd5, 0xc9, 0x3c, + 0x62, 0x78, 0xad, 0xd9, 0x82, 0x52, 0xcb, 0x8e, 0x48, 0x8f, 0x06, 0xa7, 0xf2, 0xde, 0x54, 0x93, + 0x58, 0x2f, 0x39, 0x72, 0x0d, 0x8f, 0x77, 0xd1, 0x10, 0x56, 0x27, 0x1a, 0x3e, 0x73, 0x99, 0xfa, + 0xfc, 0xe1, 0xb0, 0xbc, 0x7d, 0xeb, 0x82, 0x87, 0xc3, 0x0e, 0x07, 0x9b, 0x1f, 0x24, 0xb1, 0x9e, + 0xc7, 0x62, 0x29, 0xf8, 0x7f, 0xfe, 0x14, 0xba, 0x04, 0x9a, 0x8c, 0xdc, 0x3e, 0xac, 0xb4, 0xe9, + 0x6b, 0xff, 0x98, 0xda, 0x6e, 0xda, 0xe1, 0xae, 0xf0, 0x00, 0x34, 0x7e, 0x28, 0xc0, 0x6a, 0xce, + 0xab, 0x06, 0xed, 0x4f, 0x14, 0xcc, 0x4b, 0xbd, 0xe6, 0xf2, 0x4a, 0xe4, 0x1e, 0x68, 0x32, 0x48, + 0x85, 0xcb, 0x04, 0x89, 0x53, 0x09, 0x41, 0x2c, 0x47, 0xf4, 0x1c, 0x2a, 0x32, 0x60, 0xcc, 0x21, + 0x79, 0x95, 0x3f, 0xca, 0x37, 0x8f, 0xc1, 0xda, 0x24, 0x74, 0x02, 0x6f, 0x18, 0xd1, 0xc0, 0x5c, + 0x49, 0x62, 0x3d, 0x2b, 0x8c, 0x41, 0x7c, 0xb0, 0x8b, 0x65, 0xfc, 0xad, 0x42, 0xf5, 0xd9, 0x90, + 0xc5, 0x55, 0xe6, 0xe2, 0x55, 0xde, 0xd5, 0x4f, 0xc6, 0xe1, 0x13, 0xfe, 0x36, 0xf3, 0xa4, 0xb3, + 0xda, 0x1a, 0x4f, 0x03, 0xdb, 0x0f, 0x0f, 0x49, 0x30, 0xa7, 0xcf, 0x18, 0xa0, 0x05, 0xc4, 0x0e, + 0xa9, 0x2f, 0x13, 0x98, 0x63, 0xc4, 0x0a, 0x96, 0xa3, 0xf1, 0x39, 0x2c, 0x4f, 0x32, 0xa1, 0x0a, + 0x14, 0xcf, 0xaa, 0xba, 0x06, 0x05, 0x5e, 0xd1, 0x01, 0xb4, 0x87, 0x3b, 0x7b, 0x8f, 0x77, 0xdb, + 0xb5, 0x82, 0xf1, 0xbb, 0x0a, 0x65, 0x16, 0x81, 0x56, 0x7f, 0xe4, 0x1f, 0xa1, 0x0e, 0x68, 0x7d, + 0x62, 0xbb, 0x24, 0x98, 0x7b, 0xf0, 0x0c, 0x4a, 0x5c, 0x4c, 0x42, 0x3a, 0x0a, 0x1c, 0x62, 0x71, + 0x01, 0x61, 0x8f, 0x10, 0xb6, 0x14, 0x2c, 0x67, 0xc8, 0x12, 0xcd, 0x99, 0x07, 0x62, 0xc6, 0x0b, + 0xf3, 0x1c, 0x1d, 0xff, 0x14, 0x21, 0x65, 0x92, 0x96, 0x82, 0xf9, 0x68, 0x16, 0x61, 0xd1, 0x61, + 0x5b, 0xc6, 0x3b, 0x15, 0xae, 0xe7, 0x9a, 0x70, 0xa5, 0x33, 0x33, 0x40, 0xe3, 0xf4, 0xe2, 0xcc, + 0x16, 0x85, 0x3b, 0x62, 0x05, 0xcb, 0x91, 0xd5, 0x08, 0xa7, 0x4f, 0x9c, 0xa3, 0x70, 0x34, 0x90, + 0x87, 0x20, 0x6a, 0x84, 0x5c, 0xc3, 0xe3, 0x19, 0xfa, 0x0c, 0x80, 0xcb, 0x74, 0x43, 0xef, 0x2d, + 0xe1, 0xf5, 0x64, 0x51, 0xfe, 0xcf, 0x19, 0xaf, 0xe2, 0x32, 0x9f, 0x3f, 0xf1, 0xde, 0x12, 0xe3, + 0x37, 0x15, 0xd6, 0xf2, 0xc2, 0x70, 0x25, 0x8f, 0x6e, 0x33, 0x6b, 0x99, 0x36, 0xcf, 0x95, 0x3e, + 0x49, 0x6b, 0xc5, 0x1a, 0x2e, 0xf2, 0xd9, 0x9e, 0xcb, 0x0a, 0xe3, 0xf8, 0x32, 0x55, 0xcf, 0x22, + 0x2f, 0xe3, 0x7e, 0xef, 0xcf, 0xf7, 0x1b, 0xea, 0xbb, 0xf7, 0x1b, 0xea, 0x5f, 0xef, 0x37, 0xd4, + 0x97, 0x77, 0x7a, 0x5e, 0xd4, 0x1f, 0xbd, 0x6a, 0x38, 0x74, 0xd0, 0xe4, 0x96, 0x34, 0xb9, 0x25, + 0xcd, 0xd0, 0x3d, 0x6a, 0x9e, 0x6c, 0x37, 0xf9, 0xff, 0xd3, 0x07, 0xfc, 0xf7, 0x95, 0xc6, 0x87, + 0xbb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x88, 0x7b, 0xcf, 0x4e, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1330,6 +1453,18 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.AgentActivityStatus != nil { + { + size, err := m.AgentActivityStatus.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } if len(m.DataplaneSoftwareDetails) > 0 { for iNdEx := len(m.DataplaneSoftwareDetails) - 1; iNdEx >= 0; iNdEx-- { { @@ -1394,6 +1529,82 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *AgentActivityStatus) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AgentActivityStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.Status != nil { + { + size := m.Status.Size() + i -= size + if _, err := m.Status.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + } + } + if len(m.Category) > 0 { + i -= len(m.Category) + copy(dAtA[i:], m.Category) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Category))) + i-- + dAtA[i] = 0x22 + } + if len(m.Type) > 0 { + i -= len(m.Type) + copy(dAtA[i:], m.Type) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Type))) + i-- + dAtA[i] = 0x1a + } + if len(m.Module) > 0 { + i -= len(m.Module) + copy(dAtA[i:], m.Module) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Module))) + i-- + dAtA[i] = 0x12 + } + if len(m.CorrelationID) > 0 { + i -= len(m.CorrelationID) + copy(dAtA[i:], m.CorrelationID) + i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationID))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *AgentActivityStatus_NginxConfigAction) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus_NginxConfigAction) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + i = encodeVarintCommand(dAtA, i, uint64(m.NginxConfigAction)) + i-- + dAtA[i] = 0x28 + return len(dAtA) - i, nil +} func (m *DownloadRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1936,12 +2147,56 @@ func (m *DataplaneStatus) Size() (n int) { n += 1 + l + sovCommand(uint64(l)) } } + if m.AgentActivityStatus != nil { + l = m.AgentActivityStatus.Size() + n += 1 + l + sovCommand(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *AgentActivityStatus) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.CorrelationID) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Module) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Type) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Category) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.Status != nil { + n += m.Status.Size() + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } +func (m *AgentActivityStatus_NginxConfigAction) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovCommand(uint64(m.NginxConfigAction)) + return n +} func (m *DownloadRequest) Size() (n int) { if m == nil { return 0 @@ -2906,6 +3161,241 @@ func (m *DataplaneStatus) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AgentActivityStatus", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AgentActivityStatus == nil { + m.AgentActivityStatus = &AgentActivityStatus{} + } + if err := m.AgentActivityStatus.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCommand(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCommand + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: AgentActivityStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AgentActivityStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CorrelationID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Module", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Module = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Type = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Category", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Category = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigAction", wireType) + } + var v NginxConfigAction + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= NginxConfigAction(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Status = &AgentActivityStatus_NginxConfigAction{v} default: iNdEx = preIndex skippy, err := skipCommand(dAtA[iNdEx:]) diff --git a/sdk/proto/command.proto b/sdk/proto/command.proto index f93e7a004..1675c748e 100644 --- a/sdk/proto/command.proto +++ b/sdk/proto/command.proto @@ -86,6 +86,17 @@ message DataplaneStatus { HostInfo host = 3 [(gogoproto.jsontag) = "host" ]; repeated NginxHealth healths = 5 [(gogoproto.jsontag) = "healths" ]; repeated DataplaneSoftwareDetails dataplane_software_details = 6 [(gogoproto.jsontag) = "dataplane_software_details"]; + AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; +} + +message AgentActivityStatus { + string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + string Module = 2 [(gogoproto.jsontag) = "module" ]; + string Type = 3 [(gogoproto.jsontag) = "type" ]; + string Category = 4 [(gogoproto.jsontag) = "category" ]; + oneof Status { + NginxConfigAction nginx_config_action = 5 [(gogoproto.jsontag) = "nginx_config_action" ]; + } } message DownloadRequest { diff --git a/sdk/proto/events/event.pb.go b/sdk/proto/events/event.pb.go index 6621de95d..39b2e1760 100644 --- a/sdk/proto/events/event.pb.go +++ b/sdk/proto/events/event.pb.go @@ -123,7 +123,6 @@ func (m *Metadata) GetCategory() string { type Event struct { Metadata *Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3" json:"metadata"` // Types that are valid to be assigned to Data: - // // *Event_ActivityEvent Data isEvent_Data `protobuf_oneof:"data"` XXX_NoUnkeyedLiteral struct{} `json:"-"` diff --git a/sdk/proto/nginx.pb.go b/sdk/proto/nginx.pb.go index 9a79eb930..b33bd6e39 100644 --- a/sdk/proto/nginx.pb.go +++ b/sdk/proto/nginx.pb.go @@ -31,6 +31,7 @@ const ( NginxConfigAction_TEST NginxConfigAction = 2 NginxConfigAction_ROLLBACK NginxConfigAction = 3 NginxConfigAction_RETURN NginxConfigAction = 4 + NginxConfigAction_PENDING NginxConfigAction = 5 ) var NginxConfigAction_name = map[int32]string{ @@ -39,6 +40,7 @@ var NginxConfigAction_name = map[int32]string{ 2: "TEST", 3: "ROLLBACK", 4: "RETURN", + 5: "PENDING", } var NginxConfigAction_value = map[string]int32{ @@ -47,6 +49,7 @@ var NginxConfigAction_value = map[string]int32{ "TEST": 2, "ROLLBACK": 3, "RETURN": 4, + "PENDING": 5, } func (x NginxConfigAction) String() string { @@ -952,85 +955,85 @@ func init() { func init() { proto.RegisterFile("nginx.proto", fileDescriptor_917f1a70b1fd7255) } var fileDescriptor_917f1a70b1fd7255 = []byte{ - // 1233 bytes of a gzipped FileDescriptorProto + // 1245 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0xc6, - 0x13, 0x0f, 0x2d, 0xd9, 0x22, 0x47, 0xb2, 0xad, 0xec, 0xff, 0x5f, 0x40, 0x09, 0x52, 0xd3, 0x60, - 0x1b, 0xd4, 0x4d, 0x51, 0x1b, 0x71, 0x5a, 0x14, 0x45, 0x83, 0x06, 0x92, 0xa5, 0x34, 0x46, 0x14, - 0xc7, 0x58, 0xcb, 0x69, 0xea, 0x8b, 0xba, 0x16, 0xd7, 0x32, 0x11, 0x8a, 0x14, 0x76, 0xc9, 0x20, - 0xc9, 0x33, 0xf4, 0x49, 0x7a, 0xeb, 0xb1, 0x6f, 0xd0, 0x5b, 0xfb, 0x04, 0x44, 0x91, 0x23, 0x2f, - 0x7d, 0x85, 0x62, 0x67, 0x97, 0x94, 0xfc, 0xd5, 0xe4, 0xd0, 0x5e, 0x96, 0x3b, 0xbf, 0x9d, 0xf9, - 0x71, 0xe7, 0x93, 0x84, 0x7a, 0x34, 0x0e, 0xa2, 0x57, 0x9b, 0x53, 0x11, 0x27, 0x31, 0x21, 0x27, - 0x5f, 0x6e, 0x6a, 0x99, 0x8d, 0x79, 0x94, 0x6c, 0x4a, 0xff, 0xc5, 0x4d, 0x18, 0xc7, 0xe3, 0x58, - 0x9f, 0xdf, 0x6c, 0x8c, 0xe2, 0xe8, 0x24, 0x18, 0xcf, 0xa4, 0xc9, 0x24, 0x8e, 0xb4, 0xe4, 0x3d, - 0x07, 0x7b, 0x3f, 0x4c, 0xe5, 0x6e, 0x74, 0x12, 0x93, 0xdb, 0x50, 0xe3, 0x11, 0x3b, 0x0e, 0xb9, - 0xdf, 0xb2, 0xd6, 0xad, 0x0d, 0xbb, 0x53, 0xcf, 0x33, 0xb7, 0x80, 0x68, 0xb1, 0x51, 0x6a, 0x82, - 0x87, 0x9c, 0x49, 0xde, 0x5a, 0x58, 0xb7, 0x36, 0x1c, 0xad, 0x66, 0x20, 0x5a, 0x6c, 0xbc, 0x1e, - 0xd4, 0x0e, 0x0e, 0xfa, 0x48, 0xec, 0xc2, 0xe2, 0x71, 0x1a, 0x84, 0x49, 0xcb, 0x5a, 0xaf, 0x6c, - 0x38, 0x1d, 0x27, 0xcf, 0x5c, 0x0d, 0x50, 0xfd, 0x20, 0x37, 0xa0, 0x22, 0xd2, 0xa8, 0xb5, 0x80, - 0xc7, 0xb5, 0x3c, 0x73, 0x95, 0x48, 0xd5, 0xe2, 0xed, 0x80, 0xbd, 0xcf, 0x92, 0x53, 0xe4, 0xb9, - 0x01, 0x95, 0xe3, 0x20, 0xc2, 0xcb, 0x19, 0xb5, 0xe3, 0x20, 0xa2, 0x6a, 0x21, 0xb7, 0xa0, 0xaa, - 0xbc, 0x34, 0x37, 0xb2, 0xf3, 0xcc, 0x45, 0x99, 0xe2, 0xea, 0xfd, 0xbe, 0x08, 0x8d, 0x3d, 0x15, - 0xa1, 0x2e, 0x4f, 0x58, 0x10, 0x4a, 0xf2, 0x09, 0xd8, 0x18, 0xb1, 0x61, 0xe0, 0x1b, 0xba, 0x46, - 0x9e, 0xb9, 0x25, 0x46, 0x6b, 0xb8, 0xdb, 0x45, 0x67, 0x5f, 0x72, 0x21, 0x83, 0x38, 0x9a, 0x77, - 0xd6, 0x40, 0xb4, 0xd8, 0x90, 0x3b, 0xe0, 0xa8, 0x17, 0x0d, 0xa7, 0x2c, 0x39, 0x6d, 0x55, 0x50, - 0x71, 0x39, 0xcf, 0xdc, 0x19, 0x48, 0x6d, 0xb5, 0x55, 0x9e, 0x90, 0xcf, 0x01, 0xa6, 0x22, 0x1e, - 0x71, 0x29, 0xd5, 0xdb, 0xab, 0xa8, 0xbc, 0x92, 0x67, 0xee, 0x1c, 0x4a, 0x1d, 0xb3, 0xdf, 0xf5, - 0xc9, 0x3d, 0x68, 0x14, 0x07, 0xc8, 0xbe, 0x88, 0x06, 0xcd, 0x3c, 0x73, 0xcf, 0xe0, 0xb4, 0x6e, - 0xa4, 0xe2, 0x1d, 0x32, 0x61, 0x22, 0x19, 0x26, 0xc1, 0x84, 0xb7, 0x96, 0xd6, 0xad, 0x8d, 0x8a, - 0x7e, 0xc7, 0x0c, 0xa5, 0x0e, 0xee, 0x07, 0xc1, 0x84, 0x93, 0x36, 0x5c, 0xc7, 0x44, 0x0c, 0x4f, - 0x44, 0x3c, 0x19, 0xca, 0x38, 0x15, 0x23, 0xde, 0xaa, 0x61, 0x0d, 0x7c, 0x90, 0x67, 0xee, 0xc5, - 0x43, 0xba, 0x8a, 0xd0, 0x43, 0x11, 0x4f, 0x0e, 0x10, 0x20, 0x0f, 0xa0, 0x19, 0xc6, 0xcc, 0x57, - 0x25, 0x32, 0x9c, 0xc4, 0x7e, 0x1a, 0x72, 0xd9, 0xb2, 0x31, 0x9f, 0xff, 0xcf, 0x33, 0xf7, 0xc2, - 0x19, 0x5d, 0x2d, 0x90, 0x27, 0x1a, 0x20, 0xf7, 0x61, 0x55, 0xa4, 0x91, 0xba, 0x59, 0x69, 0xef, - 0xa0, 0xfd, 0xff, 0xf2, 0xcc, 0x3d, 0x7f, 0x44, 0x57, 0x0c, 0x50, 0x58, 0xef, 0x40, 0x75, 0x1a, - 0xa6, 0xb2, 0x05, 0xeb, 0xd6, 0x46, 0x7d, 0xfb, 0xf6, 0xe6, 0xc5, 0x96, 0xd8, 0xc4, 0x02, 0x50, - 0xc5, 0xfe, 0x84, 0x27, 0xac, 0xcb, 0x12, 0xa6, 0xcb, 0x44, 0x99, 0x51, 0x5c, 0xc9, 0x03, 0xa8, - 0x48, 0x19, 0xb6, 0xea, 0xc8, 0xf1, 0xf1, 0x95, 0x1c, 0x07, 0x32, 0x2c, 0x29, 0xb0, 0x0a, 0xa5, - 0x0c, 0xa9, 0x5a, 0x4c, 0xd8, 0x93, 0x54, 0x0e, 0x53, 0x11, 0xb6, 0x1a, 0xb3, 0xd4, 0xce, 0x50, - 0x0c, 0x7b, 0x92, 0xca, 0x43, 0x11, 0x92, 0xaf, 0x61, 0x45, 0xb7, 0x66, 0x2a, 0xf8, 0x90, 0x89, - 0xb1, 0x6c, 0x2d, 0xa3, 0xc7, 0x24, 0xcf, 0xdc, 0x73, 0x27, 0x74, 0xb9, 0x94, 0xdb, 0x62, 0x2c, - 0x3d, 0x06, 0xd7, 0x2f, 0xf8, 0xf3, 0x2f, 0x37, 0xf0, 0xaf, 0x16, 0x34, 0xcf, 0xfb, 0x4b, 0x8e, - 0xc0, 0x96, 0x32, 0x1c, 0x26, 0xaf, 0xa7, 0x1c, 0xdf, 0xb1, 0xb2, 0x7d, 0xf7, 0x7d, 0xe2, 0x54, - 0x02, 0x83, 0xd7, 0x53, 0xae, 0x7b, 0xad, 0xa0, 0xa1, 0x35, 0xa9, 0x61, 0x75, 0x2f, 0x5f, 0xf7, - 0xa7, 0x99, 0x04, 0x78, 0x2f, 0x03, 0xd1, 0x62, 0xe3, 0x79, 0xa6, 0x97, 0x0d, 0x1b, 0x71, 0x60, - 0xb1, 0x73, 0xb8, 0xdb, 0x1f, 0x34, 0xaf, 0x91, 0x1a, 0x54, 0xe8, 0xe1, 0x5e, 0xd3, 0xf2, 0x7e, - 0x5a, 0x80, 0x3a, 0x2a, 0x3d, 0xe2, 0x2c, 0x4c, 0x4e, 0xdf, 0xbf, 0xdf, 0x7f, 0x84, 0x86, 0x06, - 0x75, 0x96, 0x30, 0x40, 0x2b, 0xdb, 0x9f, 0x5d, 0xe9, 0xa3, 0xe6, 0x37, 0xee, 0xa1, 0x89, 0x6e, - 0xcd, 0x79, 0x12, 0xaa, 0xa7, 0xb5, 0x3e, 0x56, 0x75, 0xee, 0xf3, 0xb1, 0x60, 0x3e, 0xf7, 0x87, - 0x82, 0x33, 0x19, 0x47, 0x66, 0x60, 0x60, 0x9d, 0x9f, 0x3b, 0xa2, 0x2b, 0x05, 0x40, 0x51, 0xf6, - 0xbe, 0x30, 0x7e, 0x19, 0xb2, 0x3a, 0xd4, 0x0e, 0xf7, 0x1e, 0xef, 0x3d, 0xfd, 0x7e, 0xaf, 0x79, - 0x8d, 0x00, 0x2c, 0xb5, 0x77, 0x06, 0xbb, 0xcf, 0x7a, 0x4d, 0x8b, 0x34, 0xc0, 0xee, 0xf6, 0xbe, - 0xa3, 0xed, 0x6e, 0xaf, 0xdb, 0x5c, 0xf0, 0xfe, 0xaa, 0x1a, 0xb3, 0x1d, 0x2c, 0x22, 0xb2, 0x0b, - 0x4b, 0x6c, 0x94, 0xa8, 0xa1, 0xa6, 0x73, 0x78, 0x75, 0xbf, 0x68, 0x83, 0x36, 0x2a, 0x77, 0x20, - 0xcf, 0x5c, 0x63, 0x48, 0xcd, 0x93, 0x3c, 0x83, 0xba, 0xae, 0xcc, 0xa1, 0xcf, 0x12, 0x86, 0xf1, - 0xba, 0xa2, 0x77, 0x34, 0x55, 0x97, 0xcb, 0x91, 0x08, 0xa6, 0x49, 0x2c, 0x3a, 0xab, 0x79, 0xe6, - 0xce, 0x1b, 0x53, 0xd0, 0x02, 0x16, 0x5a, 0x0f, 0x6a, 0x6f, 0xb4, 0x88, 0xe1, 0xa9, 0x6f, 0xaf, - 0x5d, 0xc6, 0x79, 0x14, 0x4c, 0xa7, 0xdc, 0x7f, 0x18, 0x84, 0x5c, 0x17, 0x8b, 0x31, 0xa1, 0xc5, - 0x86, 0xdc, 0x87, 0xea, 0x1b, 0x96, 0xbe, 0xc2, 0x31, 0xfb, 0x6e, 0x0e, 0x1c, 0x08, 0x4a, 0x9f, - 0xe2, 0x4a, 0xf6, 0xa1, 0xce, 0x46, 0x38, 0x62, 0xc3, 0x78, 0x2c, 0x71, 0xf4, 0x5e, 0x41, 0xd2, - 0x46, 0xb5, 0x7e, 0x3c, 0x96, 0xda, 0xad, 0x39, 0x33, 0x0a, 0xac, 0x3c, 0x24, 0x7d, 0x00, 0x2e, - 0x44, 0x2c, 0x34, 0xe1, 0x12, 0x12, 0x7e, 0x78, 0x19, 0x61, 0x4f, 0x69, 0x21, 0x1f, 0x0e, 0x90, - 0x99, 0x11, 0x75, 0x78, 0x71, 0x44, 0xbe, 0xd5, 0x03, 0xab, 0x86, 0x34, 0x1f, 0x5d, 0x46, 0x73, - 0x20, 0xc3, 0x1d, 0x2e, 0x92, 0xe0, 0x24, 0x18, 0xb1, 0x84, 0xcb, 0x73, 0xf3, 0xea, 0x39, 0x2c, - 0xfb, 0x81, 0xe0, 0xa3, 0x24, 0x16, 0xaf, 0x87, 0x13, 0x36, 0x6d, 0xd9, 0xc8, 0xb4, 0x7e, 0x19, - 0x53, 0xb7, 0x50, 0x7c, 0xc2, 0xa6, 0x9d, 0xeb, 0x79, 0xe6, 0x9e, 0x35, 0xa5, 0x0d, 0x7f, 0x4e, - 0xc1, 0x3b, 0x02, 0x68, 0x9f, 0xf1, 0x7a, 0x16, 0x10, 0xfc, 0x0b, 0xb8, 0xc2, 0xeb, 0xd2, 0x46, - 0x7b, 0x3d, 0x33, 0xa2, 0x4e, 0x19, 0x44, 0xef, 0x67, 0x0b, 0x9c, 0x52, 0x51, 0x7d, 0xf9, 0x23, - 0x36, 0xe1, 0xa6, 0xad, 0x31, 0x83, 0x4a, 0xa6, 0xb8, 0x12, 0x0f, 0x96, 0x4e, 0x62, 0x31, 0x61, - 0x89, 0x19, 0x75, 0x58, 0xc2, 0x1a, 0xa1, 0xe6, 0x49, 0xee, 0x42, 0x7d, 0xca, 0xc5, 0x24, 0x90, - 0xea, 0x53, 0x2e, 0x4d, 0x37, 0x62, 0x16, 0xe7, 0x60, 0x3a, 0x2f, 0x90, 0x0d, 0xb0, 0x05, 0xd7, - 0xdf, 0x2f, 0x2c, 0x2d, 0x5b, 0xcf, 0x93, 0x02, 0xa3, 0xe5, 0xce, 0x3b, 0x04, 0xa7, 0x4c, 0x25, - 0x79, 0x04, 0x4e, 0x99, 0x48, 0x13, 0x86, 0x5b, 0xff, 0x94, 0x7c, 0xfd, 0x13, 0x51, 0x9a, 0x50, - 0xbb, 0x48, 0xbd, 0xf7, 0x8b, 0x05, 0x76, 0xa1, 0xf5, 0x8e, 0x10, 0xdc, 0x01, 0x27, 0x8c, 0xc7, - 0xc3, 0x90, 0xbf, 0xe4, 0xa1, 0x89, 0x02, 0xd2, 0x96, 0x20, 0xb5, 0xc3, 0x78, 0xdc, 0x57, 0xbb, - 0xff, 0x34, 0x14, 0x77, 0x9e, 0x9a, 0x6f, 0xd6, 0xfc, 0x4c, 0x39, 0x3b, 0xc1, 0x1c, 0x58, 0x6c, - 0xef, 0xef, 0xf7, 0x7f, 0x68, 0x5a, 0xc4, 0x86, 0xea, 0xa0, 0x77, 0x30, 0x68, 0x2e, 0xa8, 0x51, - 0x46, 0x9f, 0xf6, 0xfb, 0x9d, 0xf6, 0xce, 0xe3, 0x66, 0x45, 0x0d, 0x39, 0xda, 0x1b, 0x1c, 0xd2, - 0xbd, 0x66, 0xb5, 0xf3, 0xd5, 0x6f, 0x6f, 0xd7, 0xac, 0x3f, 0xde, 0xae, 0x59, 0x7f, 0xbe, 0x5d, - 0xb3, 0x8e, 0x3e, 0x1d, 0x07, 0xc9, 0x69, 0x7a, 0xbc, 0x39, 0x8a, 0x27, 0x5b, 0x18, 0xd0, 0x2d, - 0x0c, 0xe8, 0x96, 0xf4, 0x5f, 0x6c, 0xbd, 0xdc, 0xde, 0xc2, 0xff, 0xdd, 0x6f, 0x70, 0x3d, 0x5e, - 0xc2, 0xc7, 0xbd, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x56, 0xdc, 0xdc, 0x47, 0x0b, 0x00, - 0x00, + 0x16, 0x0e, 0x2d, 0xd9, 0x22, 0x8f, 0x64, 0x5b, 0x99, 0x7b, 0x2f, 0xa0, 0x04, 0xb9, 0xa6, 0xc1, + 0x7b, 0x83, 0xba, 0x29, 0x6a, 0x23, 0x4e, 0x8b, 0xa2, 0x68, 0xd0, 0x40, 0xb2, 0x94, 0x44, 0x88, + 0xa2, 0x18, 0x63, 0x39, 0x4d, 0x8d, 0x02, 0xea, 0x58, 0x1c, 0xcb, 0x44, 0x28, 0x52, 0x98, 0xa1, + 0x82, 0x24, 0xcf, 0xd0, 0x27, 0xe9, 0xae, 0xcb, 0xbe, 0x41, 0x77, 0xed, 0x13, 0x10, 0x45, 0x96, + 0xdc, 0xf4, 0x15, 0x8a, 0x39, 0x33, 0xa4, 0xe4, 0xbf, 0x26, 0x8b, 0x76, 0x33, 0x9c, 0xf3, 0xcd, + 0x39, 0x1f, 0xe7, 0xfc, 0x92, 0x50, 0x8d, 0xc6, 0x41, 0xf4, 0x7a, 0x7b, 0x2a, 0xe2, 0x24, 0x26, + 0xe4, 0xe4, 0xf3, 0x6d, 0x2d, 0xb3, 0x31, 0x8f, 0x92, 0x6d, 0xe9, 0xbf, 0xbc, 0x09, 0xe3, 0x78, + 0x1c, 0xeb, 0xf3, 0x9b, 0xb5, 0x51, 0x1c, 0x9d, 0x04, 0xe3, 0xb9, 0x34, 0x99, 0xc4, 0x91, 0x96, + 0xbc, 0x17, 0x60, 0xef, 0x87, 0x33, 0xd9, 0x8d, 0x4e, 0x62, 0x72, 0x1b, 0x2a, 0x3c, 0x62, 0xc7, + 0x21, 0xf7, 0x1b, 0xd6, 0xa6, 0xb5, 0x65, 0xb7, 0xaa, 0x59, 0xea, 0xe6, 0x10, 0xcd, 0x37, 0x4a, + 0x4d, 0xf0, 0x90, 0x33, 0xc9, 0x1b, 0x4b, 0x9b, 0xd6, 0x96, 0xa3, 0xd5, 0x0c, 0x44, 0xf3, 0x8d, + 0xd7, 0x81, 0xca, 0xc1, 0x41, 0x0f, 0x89, 0x5d, 0x58, 0x3e, 0x9e, 0x05, 0x61, 0xd2, 0xb0, 0x36, + 0x4b, 0x5b, 0x4e, 0xcb, 0xc9, 0x52, 0x57, 0x03, 0x54, 0x3f, 0xc8, 0x0d, 0x28, 0x89, 0x59, 0xd4, + 0x58, 0xc2, 0xe3, 0x4a, 0x96, 0xba, 0x4a, 0xa4, 0x6a, 0xf1, 0xf6, 0xc0, 0xde, 0x67, 0xc9, 0x29, + 0xf2, 0xdc, 0x80, 0xd2, 0x71, 0x10, 0xe1, 0xe5, 0x8c, 0xda, 0x71, 0x10, 0x51, 0xb5, 0x90, 0x5b, + 0x50, 0x56, 0x5e, 0x9a, 0x1b, 0xd9, 0x59, 0xea, 0xa2, 0x4c, 0x71, 0xf5, 0x7e, 0x5d, 0x86, 0x5a, + 0x5f, 0x45, 0xa8, 0xcd, 0x13, 0x16, 0x84, 0x92, 0x7c, 0x04, 0x36, 0x46, 0x6c, 0x18, 0xf8, 0x86, + 0xae, 0x96, 0xa5, 0x6e, 0x81, 0xd1, 0x0a, 0xee, 0xba, 0xe8, 0xec, 0x2b, 0x2e, 0x64, 0x10, 0x47, + 0x8b, 0xce, 0x1a, 0x88, 0xe6, 0x1b, 0x72, 0x07, 0x1c, 0xf5, 0xa2, 0xe1, 0x94, 0x25, 0xa7, 0x8d, + 0x12, 0x2a, 0xae, 0x66, 0xa9, 0x3b, 0x07, 0xa9, 0xad, 0xb6, 0xca, 0x13, 0xf2, 0x29, 0xc0, 0x54, + 0xc4, 0x23, 0x2e, 0xa5, 0x7a, 0x7b, 0x19, 0x95, 0xd7, 0xb2, 0xd4, 0x5d, 0x40, 0xa9, 0x63, 0xf6, + 0x5d, 0x9f, 0xdc, 0x83, 0x5a, 0x7e, 0x80, 0xec, 0xcb, 0x68, 0x50, 0xcf, 0x52, 0xf7, 0x0c, 0x4e, + 0xab, 0x46, 0xca, 0xdf, 0x21, 0x13, 0x26, 0x92, 0x61, 0x12, 0x4c, 0x78, 0x63, 0x65, 0xd3, 0xda, + 0x2a, 0xe9, 0x77, 0xcc, 0x51, 0xea, 0xe0, 0x7e, 0x10, 0x4c, 0x38, 0x69, 0xc2, 0x75, 0x4c, 0xc4, + 0xf0, 0x44, 0xc4, 0x93, 0xa1, 0x8c, 0x67, 0x62, 0xc4, 0x1b, 0x15, 0xac, 0x81, 0xff, 0x64, 0xa9, + 0x7b, 0xf1, 0x90, 0xae, 0x23, 0xf4, 0x50, 0xc4, 0x93, 0x03, 0x04, 0xc8, 0x03, 0xa8, 0x87, 0x31, + 0xf3, 0x55, 0x89, 0x0c, 0x27, 0xb1, 0x3f, 0x0b, 0xb9, 0x6c, 0xd8, 0x98, 0xcf, 0x7f, 0x67, 0xa9, + 0x7b, 0xe1, 0x8c, 0xae, 0xe7, 0xc8, 0x53, 0x0d, 0x90, 0xfb, 0xb0, 0x2e, 0x66, 0x91, 0xba, 0x59, + 0x61, 0xef, 0xa0, 0xfd, 0xbf, 0xb2, 0xd4, 0x3d, 0x7f, 0x44, 0xd7, 0x0c, 0x90, 0x5b, 0xef, 0x41, + 0x79, 0x1a, 0xce, 0x64, 0x03, 0x36, 0xad, 0xad, 0xea, 0xee, 0xed, 0xed, 0x8b, 0x2d, 0xb1, 0x8d, + 0x05, 0xa0, 0x8a, 0xfd, 0x29, 0x4f, 0x58, 0x9b, 0x25, 0x4c, 0x97, 0x89, 0x32, 0xa3, 0xb8, 0x92, + 0x07, 0x50, 0x92, 0x32, 0x6c, 0x54, 0x91, 0xe3, 0xff, 0x57, 0x72, 0x1c, 0xc8, 0xb0, 0xa0, 0xc0, + 0x2a, 0x94, 0x32, 0xa4, 0x6a, 0x31, 0x61, 0x4f, 0x66, 0x72, 0x38, 0x13, 0x61, 0xa3, 0x36, 0x4f, + 0xed, 0x1c, 0xc5, 0xb0, 0x27, 0x33, 0x79, 0x28, 0x42, 0xf2, 0x25, 0xac, 0xe9, 0xd6, 0x9c, 0x09, + 0x3e, 0x64, 0x62, 0x2c, 0x1b, 0xab, 0xe8, 0x31, 0xc9, 0x52, 0xf7, 0xdc, 0x09, 0x5d, 0x2d, 0xe4, + 0xa6, 0x18, 0x4b, 0x8f, 0xc1, 0xf5, 0x0b, 0xfe, 0xfc, 0xcd, 0x0d, 0xfc, 0xb3, 0x05, 0xf5, 0xf3, + 0xfe, 0x92, 0x23, 0xb0, 0xa5, 0x0c, 0x87, 0xc9, 0x9b, 0x29, 0xc7, 0x77, 0xac, 0xed, 0xde, 0xfd, + 0x90, 0x38, 0x15, 0xc0, 0xe0, 0xcd, 0x94, 0xeb, 0x5e, 0xcb, 0x69, 0x68, 0x45, 0x6a, 0x58, 0xdd, + 0xcb, 0xd7, 0xfd, 0x69, 0x26, 0x01, 0xde, 0xcb, 0x40, 0x34, 0xdf, 0x78, 0x9e, 0xe9, 0x65, 0xc3, + 0x46, 0x1c, 0x58, 0x6e, 0x1d, 0x76, 0x7b, 0x83, 0xfa, 0x35, 0x52, 0x81, 0x12, 0x3d, 0xec, 0xd7, + 0x2d, 0xef, 0x87, 0x25, 0xa8, 0xa2, 0xd2, 0x63, 0xce, 0xc2, 0xe4, 0xf4, 0xc3, 0xfb, 0xfd, 0x7b, + 0xa8, 0x69, 0x50, 0x67, 0x09, 0x03, 0xb4, 0xb6, 0xfb, 0xc9, 0x95, 0x3e, 0x6a, 0x7e, 0xe3, 0x1e, + 0x9a, 0xe8, 0xd6, 0x5c, 0x24, 0xa1, 0x7a, 0x5a, 0xeb, 0x63, 0x55, 0xe7, 0x3e, 0x1f, 0x0b, 0xe6, + 0x73, 0x7f, 0x28, 0x38, 0x93, 0x71, 0x64, 0x06, 0x06, 0xd6, 0xf9, 0xb9, 0x23, 0xba, 0x96, 0x03, + 0x14, 0x65, 0xef, 0x33, 0xe3, 0x97, 0x21, 0xab, 0x42, 0xe5, 0xb0, 0xff, 0xa4, 0xff, 0xec, 0x9b, + 0x7e, 0xfd, 0x1a, 0x01, 0x58, 0x69, 0xee, 0x0d, 0xba, 0xcf, 0x3b, 0x75, 0x8b, 0xd4, 0xc0, 0x6e, + 0x77, 0x1e, 0xd1, 0x66, 0xbb, 0xd3, 0xae, 0x2f, 0x79, 0x7f, 0x94, 0x8d, 0xd9, 0x1e, 0x16, 0x11, + 0xe9, 0xc2, 0x0a, 0x1b, 0x25, 0x6a, 0xa8, 0xe9, 0x1c, 0x5e, 0xdd, 0x2f, 0xda, 0xa0, 0x89, 0xca, + 0x2d, 0xc8, 0x52, 0xd7, 0x18, 0x52, 0xf3, 0x24, 0xcf, 0xa1, 0xaa, 0x2b, 0x73, 0xe8, 0xb3, 0x84, + 0x61, 0xbc, 0xae, 0xe8, 0x1d, 0x4d, 0xd5, 0xe6, 0x72, 0x24, 0x82, 0x69, 0x12, 0x8b, 0xd6, 0x7a, + 0x96, 0xba, 0x8b, 0xc6, 0x14, 0xb4, 0x80, 0x85, 0xd6, 0x81, 0xca, 0x5b, 0x2d, 0x62, 0x78, 0xaa, + 0xbb, 0x1b, 0x97, 0x71, 0x1e, 0x05, 0xd3, 0x29, 0xf7, 0x1f, 0x06, 0x21, 0xd7, 0xc5, 0x62, 0x4c, + 0x68, 0xbe, 0x21, 0xf7, 0xa1, 0xfc, 0x96, 0xcd, 0x5e, 0xe3, 0x98, 0x7d, 0x3f, 0x07, 0x0e, 0x04, + 0xa5, 0x4f, 0x71, 0x25, 0xfb, 0x50, 0x65, 0x23, 0x1c, 0xb1, 0x61, 0x3c, 0x96, 0x38, 0x7a, 0xaf, + 0x20, 0x69, 0xa2, 0x5a, 0x2f, 0x1e, 0x4b, 0xed, 0xd6, 0x82, 0x19, 0x05, 0x56, 0x1c, 0x92, 0x1e, + 0x00, 0x17, 0x22, 0x16, 0x9a, 0x70, 0x05, 0x09, 0xff, 0x7b, 0x19, 0x61, 0x47, 0x69, 0x21, 0x1f, + 0x0e, 0x90, 0xb9, 0x11, 0x75, 0x78, 0x7e, 0x44, 0xbe, 0xd6, 0x03, 0xab, 0x82, 0x34, 0xff, 0xbb, + 0x8c, 0xe6, 0x40, 0x86, 0x7b, 0x5c, 0x24, 0xc1, 0x49, 0x30, 0x62, 0x09, 0x97, 0xe7, 0xe6, 0xd5, + 0x0b, 0x58, 0xf5, 0x03, 0xc1, 0x47, 0x49, 0x2c, 0xde, 0x0c, 0x27, 0x6c, 0xda, 0xb0, 0x91, 0x69, + 0xf3, 0x32, 0xa6, 0x76, 0xae, 0xf8, 0x94, 0x4d, 0x5b, 0xd7, 0xb3, 0xd4, 0x3d, 0x6b, 0x4a, 0x6b, + 0xfe, 0x82, 0x82, 0x77, 0x04, 0xd0, 0x3c, 0xe3, 0xf5, 0x3c, 0x20, 0xf8, 0x17, 0x70, 0x85, 0xd7, + 0x85, 0x8d, 0xf6, 0x7a, 0x6e, 0x44, 0x9d, 0x22, 0x88, 0xde, 0x8f, 0x16, 0x38, 0x85, 0xa2, 0xfa, + 0xf2, 0x47, 0x6c, 0xc2, 0x4d, 0x5b, 0x63, 0x06, 0x95, 0x4c, 0x71, 0x25, 0x1e, 0xac, 0x9c, 0xc4, + 0x62, 0xc2, 0x12, 0x33, 0xea, 0xb0, 0x84, 0x35, 0x42, 0xcd, 0x93, 0xdc, 0x85, 0xea, 0x94, 0x8b, + 0x49, 0x20, 0xd5, 0xa7, 0x5c, 0x9a, 0x6e, 0xc4, 0x2c, 0x2e, 0xc0, 0x74, 0x51, 0x20, 0x5b, 0x60, + 0x0b, 0xae, 0xbf, 0x5f, 0x58, 0x5a, 0xb6, 0x9e, 0x27, 0x39, 0x46, 0x8b, 0x9d, 0x77, 0x08, 0x4e, + 0x91, 0x4a, 0xf2, 0x18, 0x9c, 0x22, 0x91, 0x26, 0x0c, 0xb7, 0xfe, 0x2a, 0xf9, 0xfa, 0x27, 0xa2, + 0x30, 0xa1, 0x76, 0x9e, 0x7a, 0xef, 0x27, 0x0b, 0xec, 0x5c, 0xeb, 0x3d, 0x21, 0xb8, 0x03, 0x4e, + 0x18, 0x8f, 0x87, 0x21, 0x7f, 0xc5, 0x43, 0x13, 0x05, 0xa4, 0x2d, 0x40, 0x6a, 0x87, 0xf1, 0xb8, + 0xa7, 0x76, 0xff, 0x68, 0x28, 0xee, 0x7c, 0x67, 0xbe, 0x59, 0x8b, 0x33, 0xe5, 0xec, 0x04, 0x73, + 0x60, 0xb9, 0xb9, 0xbf, 0xdf, 0xfb, 0xb6, 0x6e, 0x11, 0x1b, 0xca, 0x83, 0xce, 0xc1, 0xa0, 0xbe, + 0xa4, 0x46, 0x19, 0x7d, 0xd6, 0xeb, 0xb5, 0x9a, 0x7b, 0x4f, 0xea, 0x25, 0x35, 0xe4, 0x68, 0x67, + 0x70, 0x48, 0xfb, 0xf5, 0xb2, 0xb2, 0xdd, 0xef, 0xf4, 0xdb, 0xdd, 0xfe, 0xa3, 0xfa, 0x72, 0xeb, + 0x8b, 0x5f, 0xde, 0x6d, 0x58, 0xbf, 0xbd, 0xdb, 0xb0, 0x7e, 0x7f, 0xb7, 0x61, 0x1d, 0x7d, 0x3c, + 0x0e, 0x92, 0xd3, 0xd9, 0xf1, 0xf6, 0x28, 0x9e, 0xec, 0x60, 0x74, 0x77, 0x30, 0xba, 0x3b, 0xd2, + 0x7f, 0xb9, 0xf3, 0x6a, 0x77, 0x07, 0x7f, 0x7e, 0xbf, 0xc2, 0xf5, 0x78, 0x05, 0x1f, 0xf7, 0xfe, + 0x0c, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xe0, 0x9f, 0x5c, 0x54, 0x0b, 0x00, 0x00, } func (m *PlusInfo) Marshal() (dAtA []byte, err error) { diff --git a/sdk/proto/nginx.proto b/sdk/proto/nginx.proto index 4bf9d33ba..dcb1386f9 100644 --- a/sdk/proto/nginx.proto +++ b/sdk/proto/nginx.proto @@ -69,6 +69,7 @@ enum NginxConfigAction { TEST = 2; ROLLBACK = 3; RETURN = 4; + PENDING = 5; } message NginxConfig { @@ -102,4 +103,4 @@ message ErrorLog { string log_level = 2 [(gogoproto.jsontag) = "log_level" ]; string permissions = 3 [(gogoproto.jsontag) = "permissions" ]; bool readable = 4 [(gogoproto.jsontag) = "readable" ]; -} \ No newline at end of file +} diff --git a/src/core/config/defaults.go b/src/core/config/defaults.go index 9c9487b7b..2584c8b0d 100644 --- a/src/core/config/defaults.go +++ b/src/core/config/defaults.go @@ -248,8 +248,8 @@ var ( Usage: "A comma-separated list of tags to add to the current instance or machine, to be used for inventory purposes.", }, &StringSliceFlag{ - Name: FeaturesKey, - Usage: "A comma-separated list of features enabled for the agent.", + Name: FeaturesKey, + Usage: "A comma-separated list of features enabled for the agent.", DefaultValue: Defaults.Features, }, // NGINX Config diff --git a/src/plugins/dataplane_status_test.go b/src/plugins/dataplane_status_test.go index 35fa2e88d..496c69449 100644 --- a/src/plugins/dataplane_status_test.go +++ b/src/plugins/dataplane_status_test.go @@ -95,11 +95,11 @@ func TestDPSSyncAgentConfigChange(t *testing.T) { { testName: "ValuesToUpdate", config: &config.Config{ - Tags: tutils.InitialConfTags, + Tags: tutils.InitialConfTags, Features: config.Defaults.Features, }, expUpdatedConfig: &config.Config{ - Tags: updateTags, + Tags: updateTags, Features: config.Defaults.Features, }, updatedTags: true, @@ -107,11 +107,11 @@ func TestDPSSyncAgentConfigChange(t *testing.T) { { testName: "NoValuesToUpdate", config: &config.Config{ - Tags: tutils.InitialConfTags, + Tags: tutils.InitialConfTags, Features: config.Defaults.Features, }, expUpdatedConfig: &config.Config{ - Tags: tutils.InitialConfTags, + Tags: tutils.InitialConfTags, Features: config.Defaults.Features, }, updatedTags: false, diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index 179802799..d0de717b6 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -130,7 +130,7 @@ func (x UploadStatus_TransferStatus) String() string { } func (UploadStatus_TransferStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5, 0} + return fileDescriptor_213c0bb044472049, []int{6, 0} } // Command is the envelope sent between the management plane and the data plane, requesting some action or reporting a response @@ -422,6 +422,7 @@ type DataplaneStatus struct { Host *HostInfo `protobuf:"bytes,3,opt,name=host,proto3" json:"host"` Healths []*NginxHealth `protobuf:"bytes,5,rep,name=healths,proto3" json:"healths"` DataplaneSoftwareDetails []*DataplaneSoftwareDetails `protobuf:"bytes,6,rep,name=dataplane_software_details,json=dataplaneSoftwareDetails,proto3" json:"dataplane_software_details"` + AgentActivityStatus *AgentActivityStatus `protobuf:"bytes,7,opt,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -495,6 +496,120 @@ func (m *DataplaneStatus) GetDataplaneSoftwareDetails() []*DataplaneSoftwareDeta return nil } +func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { + if m != nil { + return m.AgentActivityStatus + } + return nil +} + +type AgentActivityStatus struct { + CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + Module string `protobuf:"bytes,2,opt,name=Module,proto3" json:"module"` + Type string `protobuf:"bytes,3,opt,name=Type,proto3" json:"type"` + Category string `protobuf:"bytes,4,opt,name=Category,proto3" json:"category"` + // Types that are valid to be assigned to Status: + // *AgentActivityStatus_NginxConfigAction + Status isAgentActivityStatus_Status `protobuf_oneof:"Status"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AgentActivityStatus) Reset() { *m = AgentActivityStatus{} } +func (m *AgentActivityStatus) String() string { return proto.CompactTextString(m) } +func (*AgentActivityStatus) ProtoMessage() {} +func (*AgentActivityStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{3} +} +func (m *AgentActivityStatus) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *AgentActivityStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_AgentActivityStatus.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *AgentActivityStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_AgentActivityStatus.Merge(m, src) +} +func (m *AgentActivityStatus) XXX_Size() int { + return m.Size() +} +func (m *AgentActivityStatus) XXX_DiscardUnknown() { + xxx_messageInfo_AgentActivityStatus.DiscardUnknown(m) +} + +var xxx_messageInfo_AgentActivityStatus proto.InternalMessageInfo + +type isAgentActivityStatus_Status interface { + isAgentActivityStatus_Status() + MarshalTo([]byte) (int, error) + Size() int +} + +type AgentActivityStatus_NginxConfigAction struct { + NginxConfigAction NginxConfigAction `protobuf:"varint,5,opt,name=nginx_config_action,json=nginxConfigAction,proto3,enum=f5.nginx.agent.sdk.NginxConfigAction,oneof" json:"nginx_config_action"` +} + +func (*AgentActivityStatus_NginxConfigAction) isAgentActivityStatus_Status() {} + +func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *AgentActivityStatus) GetCorrelationID() string { + if m != nil { + return m.CorrelationID + } + return "" +} + +func (m *AgentActivityStatus) GetModule() string { + if m != nil { + return m.Module + } + return "" +} + +func (m *AgentActivityStatus) GetType() string { + if m != nil { + return m.Type + } + return "" +} + +func (m *AgentActivityStatus) GetCategory() string { + if m != nil { + return m.Category + } + return "" +} + +func (m *AgentActivityStatus) GetNginxConfigAction() NginxConfigAction { + if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigAction); ok { + return x.NginxConfigAction + } + return NginxConfigAction_UNKNOWN +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*AgentActivityStatus_NginxConfigAction)(nil), + } +} + type DownloadRequest struct { Meta *Metadata `protobuf:"bytes,1,opt,name=meta,proto3" json:"meta"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -506,7 +621,7 @@ func (m *DownloadRequest) Reset() { *m = DownloadRequest{} } func (m *DownloadRequest) String() string { return proto.CompactTextString(m) } func (*DownloadRequest) ProtoMessage() {} func (*DownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{3} + return fileDescriptor_213c0bb044472049, []int{4} } func (m *DownloadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -555,7 +670,7 @@ func (m *NginxConfigResponse) Reset() { *m = NginxConfigResponse{} } func (m *NginxConfigResponse) String() string { return proto.CompactTextString(m) } func (*NginxConfigResponse) ProtoMessage() {} func (*NginxConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{4} + return fileDescriptor_213c0bb044472049, []int{5} } func (m *NginxConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -618,7 +733,7 @@ func (m *UploadStatus) Reset() { *m = UploadStatus{} } func (m *UploadStatus) String() string { return proto.CompactTextString(m) } func (*UploadStatus) ProtoMessage() {} func (*UploadStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5} + return fileDescriptor_213c0bb044472049, []int{6} } func (m *UploadStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -670,7 +785,6 @@ func (m *UploadStatus) GetReason() string { type DataChunk struct { // Types that are valid to be assigned to Chunk: - // // *DataChunk_Header // *DataChunk_Data Chunk isDataChunk_Chunk `protobuf_oneof:"chunk"` @@ -683,7 +797,7 @@ func (m *DataChunk) Reset() { *m = DataChunk{} } func (m *DataChunk) String() string { return proto.CompactTextString(m) } func (*DataChunk) ProtoMessage() {} func (*DataChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6} + return fileDescriptor_213c0bb044472049, []int{7} } func (m *DataChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -772,7 +886,7 @@ func (m *ChunkedResourceHeader) Reset() { *m = ChunkedResourceHeader{} } func (m *ChunkedResourceHeader) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceHeader) ProtoMessage() {} func (*ChunkedResourceHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{7} + return fileDescriptor_213c0bb044472049, []int{8} } func (m *ChunkedResourceHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -842,7 +956,7 @@ func (m *ChunkedResourceChunk) Reset() { *m = ChunkedResourceChunk{} } func (m *ChunkedResourceChunk) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceChunk) ProtoMessage() {} func (*ChunkedResourceChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{8} + return fileDescriptor_213c0bb044472049, []int{9} } func (m *ChunkedResourceChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -900,6 +1014,7 @@ func init() { proto.RegisterType((*Command)(nil), "f5.nginx.agent.sdk.Command") proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") proto.RegisterType((*DataplaneStatus)(nil), "f5.nginx.agent.sdk.DataplaneStatus") + proto.RegisterType((*AgentActivityStatus)(nil), "f5.nginx.agent.sdk.AgentActivityStatus") proto.RegisterType((*DownloadRequest)(nil), "f5.nginx.agent.sdk.DownloadRequest") proto.RegisterType((*NginxConfigResponse)(nil), "f5.nginx.agent.sdk.NginxConfigResponse") proto.RegisterType((*UploadStatus)(nil), "f5.nginx.agent.sdk.UploadStatus") @@ -911,85 +1026,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1233 bytes of a gzipped FileDescriptorProto + // 1375 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x26, 0x65, 0x8b, 0xb2, 0x8e, 0xe4, 0x58, 0x98, 0x38, 0x3f, 0x18, 0x23, 0x30, 0x0d, 0xfe, - 0x4d, 0xed, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x02, 0x24, 0x2b, 0x53, 0x52, 0x4a, 0x23, 0xb6, 0x54, - 0x8c, 0xe3, 0x04, 0x48, 0x51, 0x08, 0x0c, 0x39, 0xba, 0xc0, 0x16, 0xa9, 0x72, 0xa8, 0x24, 0x0e, - 0xba, 0x2f, 0x50, 0x74, 0x57, 0x14, 0x45, 0x9f, 0xa2, 0xaf, 0xd1, 0x65, 0x9e, 0x80, 0x28, 0xbc, - 0xe4, 0x03, 0x74, 0x5d, 0xcc, 0x85, 0xb2, 0x64, 0x53, 0x72, 0x03, 0x77, 0xa3, 0x39, 0x1c, 0x7e, - 0xdf, 0x77, 0x2e, 0x33, 0x73, 0x86, 0x82, 0x55, 0x37, 0x18, 0x0e, 0x1d, 0xdf, 0xab, 0x8e, 0xc2, - 0x20, 0x0a, 0x10, 0xea, 0x7e, 0x55, 0xf5, 0x7b, 0x03, 0xff, 0x5d, 0xd5, 0xe9, 0x11, 0x3f, 0xaa, - 0x52, 0xef, 0x64, 0x03, 0x7a, 0x41, 0x2f, 0x10, 0xef, 0x37, 0xca, 0x0c, 0x1e, 0xf8, 0xf2, 0xa9, - 0x24, 0x40, 0xe2, 0x01, 0xfa, 0x01, 0x4d, 0xed, 0x92, 0xd0, 0x98, 0x70, 0xfc, 0xee, 0xa0, 0x27, - 0x9f, 0x10, 0x79, 0x43, 0xfc, 0x88, 0xd6, 0xf8, 0x20, 0xe7, 0xee, 0x7a, 0xa3, 0x0e, 0x0d, 0xba, - 0xd1, 0x5b, 0x27, 0x24, 0x1d, 0x8f, 0x44, 0xce, 0xe0, 0x94, 0x8a, 0x57, 0xe6, 0x2f, 0x00, 0x85, - 0xba, 0x08, 0x11, 0x3d, 0x86, 0xe5, 0x21, 0x89, 0x1c, 0x5d, 0xdd, 0x52, 0x77, 0x4a, 0xbb, 0xf7, - 0xaa, 0x57, 0x63, 0xad, 0x1e, 0x92, 0xc8, 0xf1, 0x9c, 0xc8, 0xb1, 0x56, 0x92, 0xd8, 0xe0, 0x68, - 0xcc, 0x7f, 0x51, 0x13, 0x96, 0xa3, 0xb3, 0x11, 0xd1, 0x73, 0x5b, 0xea, 0xce, 0xad, 0xdd, 0xed, - 0x2c, 0xae, 0x74, 0x93, 0x8e, 0xcf, 0xcf, 0x46, 0x44, 0xc8, 0x30, 0x22, 0xe6, 0xbf, 0xe8, 0x15, - 0x80, 0x3b, 0xf4, 0x3a, 0x34, 0x72, 0xa2, 0x31, 0xd5, 0x97, 0x78, 0x20, 0x0f, 0x16, 0x88, 0x1d, - 0x71, 0x20, 0x26, 0x74, 0x14, 0xf8, 0x94, 0x58, 0xb7, 0x92, 0xd8, 0x98, 0x12, 0xb0, 0x15, 0x5c, - 0x74, 0x87, 0x12, 0x84, 0x5e, 0x40, 0x99, 0xab, 0x74, 0x44, 0xbd, 0xf4, 0x65, 0xae, 0x6e, 0x64, - 0xa9, 0xb7, 0xd8, 0x73, 0x9d, 0xc3, 0xac, 0x4a, 0x12, 0x1b, 0x33, 0x44, 0x5b, 0xc1, 0xa2, 0xfe, - 0x02, 0x80, 0xde, 0xc1, 0x9d, 0xe9, 0xd7, 0x9d, 0x50, 0x46, 0xa3, 0xe7, 0xb9, 0x83, 0xed, 0x6b, - 0x1c, 0x4c, 0x82, 0xbf, 0x9b, 0xc4, 0x46, 0xb6, 0x92, 0xad, 0xe0, 0xdb, 0xfe, 0x55, 0x06, 0xf3, - 0xcc, 0x25, 0x19, 0xde, 0x27, 0x6e, 0xd4, 0x09, 0xc9, 0xf7, 0x63, 0x42, 0x23, 0x5d, 0x9b, 0xef, - 0x79, 0x8f, 0x59, 0x75, 0x81, 0xc7, 0x02, 0x2e, 0x3c, 0x67, 0x2a, 0x31, 0xcf, 0xce, 0x55, 0x06, - 0xfa, 0x01, 0xfe, 0x77, 0x19, 0x2f, 0x93, 0x2e, 0x70, 0xd7, 0x3b, 0xd7, 0xbb, 0x96, 0x59, 0x6f, - 0x24, 0xb1, 0x31, 0x47, 0xcb, 0x56, 0xf0, 0xba, 0x93, 0xc1, 0x41, 0x11, 0xac, 0x4f, 0x18, 0xa2, - 0x4e, 0x22, 0xed, 0x15, 0xee, 0xfb, 0xd3, 0x45, 0xbe, 0x79, 0xf9, 0x44, 0xd6, 0x7a, 0x12, 0x1b, - 0x99, 0x3a, 0xb6, 0x82, 0x91, 0x73, 0x05, 0xcf, 0xf6, 0xcf, 0x34, 0x5a, 0x2f, 0xce, 0xdf, 0x3f, - 0x53, 0xde, 0xc4, 0xfe, 0x99, 0x26, 0xb2, 0xfd, 0x33, 0x25, 0x8f, 0xba, 0x50, 0x61, 0x47, 0x6a, - 0x74, 0xea, 0xf8, 0x24, 0xdd, 0xf9, 0x25, 0xae, 0xfd, 0xff, 0x2c, 0xed, 0x46, 0x8a, 0x15, 0xdb, - 0xda, 0x5a, 0x4f, 0x62, 0xe3, 0x8a, 0x80, 0xad, 0xe0, 0x35, 0x6f, 0x16, 0x88, 0xbe, 0x83, 0x32, - 0x6f, 0x0a, 0x9d, 0x90, 0x8c, 0x82, 0x30, 0xd2, 0xcb, 0xf3, 0xab, 0x25, 0x7a, 0x48, 0xb5, 0xc9, - 0x06, 0xcc, 0xd1, 0x22, 0x8d, 0x69, 0x3e, 0x4b, 0x83, 0x5c, 0x00, 0xd0, 0xcf, 0x2a, 0x6c, 0x4c, - 0x85, 0x71, 0xa9, 0xdd, 0xe8, 0xab, 0xdc, 0xdb, 0xe7, 0x8b, 0x33, 0x92, 0xa4, 0x86, 0xe0, 0x58, - 0x9b, 0x49, 0x6c, 0x2c, 0xd0, 0xb4, 0x15, 0xac, 0x7b, 0x73, 0xb8, 0xe6, 0x43, 0x28, 0x4d, 0x35, - 0x1a, 0x04, 0xa0, 0xb5, 0xda, 0xf8, 0x70, 0xef, 0xa0, 0xa2, 0xa0, 0x32, 0xac, 0x34, 0xda, 0x2f, - 0x5b, 0x07, 0xed, 0xbd, 0x46, 0x45, 0x65, 0x6f, 0x8e, 0xbf, 0xe1, 0x76, 0xce, 0xd2, 0x60, 0x99, - 0x09, 0x9a, 0xbf, 0x2e, 0xc1, 0x9d, 0xcc, 0x0e, 0x83, 0xbe, 0x05, 0x4d, 0x2e, 0x91, 0xca, 0x3b, - 0xdd, 0xa3, 0x7f, 0xdd, 0x9c, 0x66, 0x67, 0x2d, 0x48, 0x62, 0x43, 0x4a, 0x61, 0x39, 0xa2, 0x01, - 0x00, 0x09, 0xc3, 0x20, 0xec, 0xb8, 0x81, 0x97, 0xb6, 0xd2, 0xc7, 0x1f, 0xed, 0xa0, 0xc9, 0x24, - 0xea, 0x81, 0x27, 0xdb, 0xe1, 0x85, 0x22, 0x2e, 0x92, 0xf4, 0x15, 0xba, 0x0f, 0x85, 0x21, 0xa1, - 0xd4, 0xe9, 0x11, 0xde, 0x65, 0x8b, 0x56, 0x29, 0x89, 0x8d, 0x74, 0x0a, 0xa7, 0x06, 0x32, 0x20, - 0xcf, 0x39, 0xbc, 0x59, 0x16, 0xad, 0x62, 0x12, 0x1b, 0x62, 0x02, 0x8b, 0xc1, 0x7c, 0x02, 0xab, - 0x33, 0xc1, 0xa0, 0x35, 0x28, 0xd5, 0x0f, 0x1b, 0x9d, 0xe3, 0xd6, 0xb3, 0x56, 0xfb, 0x65, 0xab, - 0xa2, 0xb0, 0xfa, 0xb2, 0x89, 0xf6, 0xb3, 0x8a, 0x8a, 0x56, 0xa1, 0xc8, 0xec, 0x26, 0xc6, 0x6d, - 0x5c, 0xc9, 0x99, 0x35, 0xa8, 0x5c, 0x8e, 0x99, 0xc1, 0x9b, 0x18, 0x33, 0xb8, 0xc2, 0xb4, 0x98, - 0x9d, 0x6a, 0xa9, 0xe6, 0x6f, 0x4b, 0xb0, 0x76, 0x69, 0xff, 0xa3, 0xcf, 0xa0, 0x48, 0xcf, 0x68, - 0x44, 0x86, 0x9d, 0x81, 0xc7, 0x17, 0xa5, 0x68, 0xad, 0x26, 0xb1, 0x71, 0x31, 0x89, 0x57, 0x84, - 0xb9, 0xef, 0xa1, 0xaf, 0xa1, 0x90, 0xee, 0xc7, 0xdc, 0xd6, 0xd2, 0x4e, 0x69, 0x77, 0x6b, 0x6e, - 0x73, 0x4e, 0xf7, 0x20, 0xaf, 0x8b, 0x24, 0xe1, 0xd4, 0x60, 0x57, 0x25, 0xbb, 0x8e, 0xe5, 0x0d, - 0x95, 0x79, 0x55, 0xda, 0x01, 0x8d, 0xf6, 0xfd, 0x6e, 0x20, 0xee, 0x38, 0x86, 0xc6, 0xfc, 0x17, - 0x3d, 0x85, 0x42, 0x9f, 0x38, 0xa7, 0x51, 0x9f, 0xea, 0x79, 0x1e, 0xc4, 0xfc, 0x2b, 0xc8, 0xe6, - 0x38, 0x11, 0x83, 0xe4, 0xe0, 0xd4, 0x40, 0x3f, 0x2d, 0x3e, 0x70, 0x1a, 0xd7, 0xfe, 0x4f, 0x0f, - 0xdc, 0x82, 0xe3, 0x76, 0x08, 0x6b, 0x8d, 0xe0, 0xad, 0x7f, 0x1a, 0x38, 0x5e, 0xda, 0x2f, 0x6f, - 0xf0, 0x39, 0x61, 0xfe, 0x98, 0x83, 0xdb, 0x19, 0x77, 0x24, 0x3a, 0x9c, 0x39, 0x7e, 0x1f, 0xf5, - 0x6d, 0x90, 0x75, 0xe0, 0xf6, 0x41, 0x73, 0xdc, 0x68, 0x10, 0xf8, 0xf2, 0xb0, 0xdd, 0xbf, 0xe6, - 0xae, 0xde, 0xe3, 0x60, 0x21, 0x25, 0x88, 0x58, 0x8e, 0xe8, 0x05, 0x94, 0xe4, 0x2d, 0xc2, 0x12, - 0x92, 0x1b, 0xe3, 0x93, 0xec, 0xf0, 0x18, 0xac, 0x41, 0xa8, 0x1b, 0x0e, 0x46, 0x51, 0x10, 0x5a, - 0x6b, 0x49, 0x6c, 0x4c, 0x93, 0x31, 0x88, 0x07, 0xb6, 0x4c, 0xe6, 0xdf, 0x2a, 0x94, 0x8f, 0x47, - 0xac, 0xae, 0x72, 0xbf, 0xdf, 0xe4, 0x2b, 0xed, 0x68, 0x52, 0x3e, 0x91, 0x6f, 0x2d, 0x8b, 0x3d, - 0xed, 0xad, 0xfa, 0x3c, 0x74, 0x7c, 0xda, 0x25, 0xe1, 0x82, 0xae, 0x65, 0x82, 0x16, 0x12, 0x87, - 0x06, 0xbe, 0xec, 0x24, 0x1c, 0x23, 0x66, 0xb0, 0x1c, 0xcd, 0x2f, 0xe1, 0xd6, 0xac, 0x12, 0x2a, - 0x41, 0xe1, 0xa2, 0x47, 0x68, 0x90, 0xe3, 0xfd, 0x01, 0x40, 0x7b, 0xba, 0xb7, 0x7f, 0xd0, 0x6c, - 0x54, 0x72, 0xe6, 0x1f, 0x2a, 0x14, 0x59, 0x05, 0xea, 0xfd, 0xb1, 0x7f, 0x82, 0xda, 0xa0, 0xf5, - 0x89, 0xe3, 0x91, 0x70, 0xe1, 0xc2, 0x33, 0x28, 0xf1, 0x30, 0xa1, 0xc1, 0x38, 0x74, 0x89, 0xcd, - 0x09, 0x22, 0x1e, 0x41, 0xb6, 0x15, 0x2c, 0x2d, 0x64, 0x8b, 0x56, 0xcf, 0x0b, 0x31, 0xe7, 0x7b, - 0xe5, 0x92, 0x1c, 0x7f, 0x14, 0x25, 0x65, 0x4c, 0x5b, 0xc1, 0x7c, 0xb4, 0x0a, 0x90, 0x77, 0xd9, - 0x2b, 0xf3, 0x83, 0x0a, 0x77, 0x32, 0x43, 0xb8, 0xd1, 0x9a, 0x99, 0xa0, 0x71, 0x79, 0xb1, 0x66, - 0x79, 0x91, 0x8e, 0x98, 0xc1, 0x72, 0x44, 0x3b, 0xb0, 0xe2, 0xf6, 0x89, 0x7b, 0x42, 0xc7, 0x43, - 0xb9, 0x08, 0xe5, 0x24, 0x36, 0x26, 0x73, 0x78, 0x62, 0xa1, 0x2f, 0x00, 0x38, 0xa7, 0x43, 0x07, - 0xef, 0x09, 0xef, 0xea, 0x79, 0xf9, 0xd5, 0x3c, 0x99, 0xc5, 0x45, 0x6e, 0x1f, 0x0d, 0xde, 0x13, - 0xf3, 0x77, 0x15, 0xd6, 0xb3, 0xca, 0x70, 0xa3, 0x8c, 0xb6, 0x59, 0xb4, 0xcc, 0xdb, 0xc0, 0x93, - 0x39, 0xc9, 0x68, 0xc5, 0x1c, 0x2e, 0x70, 0x6b, 0xdf, 0x43, 0xf7, 0xe4, 0x1a, 0xb1, 0x94, 0xca, - 0x17, 0x95, 0x97, 0x75, 0x7f, 0xf4, 0xe7, 0xf9, 0xa6, 0xfa, 0xe1, 0x7c, 0x53, 0xfd, 0xeb, 0x7c, - 0x53, 0x7d, 0xf5, 0xa0, 0x37, 0x88, 0xfa, 0xe3, 0xd7, 0x55, 0x37, 0x18, 0xd6, 0x78, 0x24, 0x35, - 0x1e, 0x49, 0x8d, 0x7a, 0x27, 0xb5, 0x37, 0xbb, 0x35, 0xfe, 0x6f, 0xe7, 0x09, 0xff, 0x7d, 0xad, - 0xf1, 0xe1, 0xe1, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xa7, 0x4a, 0x04, 0x9c, 0x0d, 0x00, - 0x00, + 0x17, 0x26, 0x15, 0x9b, 0x92, 0x8e, 0x64, 0x5b, 0xff, 0xd8, 0xf9, 0xab, 0x18, 0x81, 0x69, 0xb0, + 0x4d, 0xe3, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x52, 0x24, 0x2b, 0x53, 0x72, 0x4a, 0x23, 0xb1, 0x55, + 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0xe2, 0xa8, 0x24, 0xe5, 0xc4, 0x41, + 0xf7, 0x05, 0x8a, 0x02, 0x5d, 0x14, 0x5d, 0xf4, 0x29, 0xba, 0xec, 0x2b, 0x74, 0x99, 0x27, 0x20, + 0x8a, 0x2c, 0xf9, 0x00, 0x5d, 0x17, 0x73, 0xa1, 0x4c, 0x59, 0x94, 0x5c, 0xc3, 0xdd, 0x68, 0x86, + 0x33, 0xdf, 0xf9, 0xce, 0x65, 0xce, 0x9c, 0x33, 0x82, 0x25, 0x87, 0x0e, 0x06, 0xb6, 0xef, 0x36, + 0x86, 0x01, 0x8d, 0x28, 0x42, 0x87, 0x5f, 0x34, 0xfc, 0x9e, 0xe7, 0xbf, 0x69, 0xd8, 0x3d, 0xe2, + 0x47, 0x8d, 0xd0, 0x3d, 0x5a, 0x87, 0x1e, 0xed, 0x51, 0xb1, 0xbf, 0x5e, 0x65, 0x70, 0xea, 0xcb, + 0xaf, 0x8a, 0x00, 0x89, 0x0f, 0xe8, 0xd3, 0x30, 0x9d, 0x57, 0x04, 0xc7, 0x58, 0xc6, 0x3f, 0xf4, + 0x7a, 0xf2, 0x0b, 0x91, 0x13, 0xe2, 0x47, 0x61, 0x93, 0x0f, 0x72, 0xed, 0x86, 0x3b, 0xec, 0x86, + 0xf4, 0x30, 0x7a, 0x6d, 0x07, 0xa4, 0xeb, 0x92, 0xc8, 0xf6, 0x8e, 0x43, 0xb1, 0x65, 0xfc, 0x02, + 0x50, 0x6c, 0x09, 0x13, 0xd1, 0x7d, 0x58, 0x18, 0x90, 0xc8, 0xae, 0xab, 0x9b, 0xea, 0x56, 0x65, + 0xfb, 0x66, 0x63, 0xda, 0xd6, 0xc6, 0x3e, 0x89, 0x6c, 0xd7, 0x8e, 0x6c, 0xb3, 0x94, 0xc4, 0x3a, + 0x47, 0x63, 0xfe, 0x8b, 0x76, 0x61, 0x21, 0x3a, 0x1d, 0x92, 0x7a, 0x61, 0x53, 0xdd, 0x5a, 0xde, + 0xbe, 0x9d, 0x27, 0x2b, 0xd5, 0xa4, 0xe3, 0xd3, 0xd3, 0x21, 0x11, 0x34, 0x4c, 0x10, 0xf3, 0x5f, + 0xf4, 0x12, 0xc0, 0x19, 0xb8, 0xdd, 0x30, 0xb2, 0xa3, 0x51, 0x58, 0xbf, 0xc6, 0x0d, 0xb9, 0x33, + 0x87, 0xec, 0x09, 0x07, 0x62, 0x12, 0x0e, 0xa9, 0x1f, 0x12, 0x73, 0x39, 0x89, 0xf5, 0x0c, 0x81, + 0xa5, 0xe0, 0xb2, 0x33, 0x90, 0x20, 0xf4, 0x1c, 0xaa, 0x9c, 0xa5, 0x2b, 0xe2, 0x55, 0x5f, 0xe0, + 0xec, 0x7a, 0x1e, 0xfb, 0x01, 0xfb, 0x6e, 0x71, 0x98, 0x59, 0x4b, 0x62, 0x7d, 0x42, 0xd0, 0x52, + 0xb0, 0x88, 0xbf, 0x00, 0xa0, 0x37, 0x70, 0x3d, 0xbb, 0xdd, 0x0d, 0xa4, 0x35, 0xf5, 0x45, 0xae, + 0xe0, 0xf6, 0x05, 0x0a, 0xc6, 0xc6, 0xdf, 0x48, 0x62, 0x3d, 0x9f, 0xc9, 0x52, 0xf0, 0xaa, 0x3f, + 0x2d, 0xc1, 0x34, 0x73, 0x4a, 0x86, 0xf7, 0x89, 0x13, 0x75, 0x03, 0xf2, 0xdd, 0x88, 0x84, 0x51, + 0x5d, 0x9b, 0xad, 0x79, 0x87, 0xcd, 0x5a, 0x02, 0x8f, 0x05, 0x5c, 0x68, 0xce, 0x65, 0x62, 0x9a, + 0xed, 0x69, 0x09, 0xf4, 0x3d, 0xfc, 0xff, 0x3c, 0x5e, 0x3a, 0x5d, 0xe4, 0xaa, 0xb7, 0x2e, 0x56, + 0x2d, 0xbd, 0x5e, 0x4f, 0x62, 0x7d, 0x06, 0x97, 0xa5, 0xe0, 0x35, 0x3b, 0x47, 0x06, 0x45, 0xb0, + 0x36, 0x96, 0x10, 0x71, 0x12, 0x6e, 0x97, 0xb8, 0xee, 0x8f, 0xe7, 0xe9, 0xe6, 0xe1, 0x13, 0x5e, + 0xd7, 0x93, 0x58, 0xcf, 0xe5, 0xb1, 0x14, 0x8c, 0xec, 0x29, 0x3c, 0xcb, 0x9f, 0x2c, 0xba, 0x5e, + 0x9e, 0x9d, 0x3f, 0x19, 0x6d, 0x22, 0x7f, 0xb2, 0x82, 0x2c, 0x7f, 0x32, 0xf4, 0xe8, 0x10, 0x6a, + 0xec, 0x4a, 0x0d, 0x8f, 0x6d, 0x9f, 0xa4, 0x99, 0x5f, 0xe1, 0xdc, 0x1f, 0xe6, 0x71, 0xb7, 0x53, + 0xac, 0x48, 0x6b, 0x73, 0x2d, 0x89, 0xf5, 0x29, 0x02, 0x4b, 0xc1, 0x2b, 0xee, 0x24, 0x10, 0x7d, + 0x0b, 0x55, 0x5e, 0x14, 0xba, 0x01, 0x19, 0xd2, 0x20, 0xaa, 0x57, 0x67, 0x47, 0x4b, 0xd4, 0x90, + 0xc6, 0x2e, 0x1b, 0x30, 0x47, 0x0b, 0x37, 0xb2, 0xf2, 0xcc, 0x0d, 0x72, 0x06, 0x40, 0x3f, 0xa9, + 0xb0, 0x9e, 0x31, 0xe3, 0x5c, 0xb9, 0xa9, 0x2f, 0x71, 0x6d, 0x9f, 0xce, 0xf7, 0x48, 0x0a, 0xb5, + 0x85, 0x8c, 0xb9, 0x91, 0xc4, 0xfa, 0x1c, 0x4e, 0x4b, 0xc1, 0x75, 0x77, 0x86, 0xac, 0x71, 0x17, + 0x2a, 0x99, 0x42, 0x83, 0x00, 0xb4, 0x83, 0x0e, 0xde, 0xdf, 0x79, 0x5c, 0x53, 0x50, 0x15, 0x4a, + 0xed, 0xce, 0x8b, 0x83, 0xc7, 0x9d, 0x9d, 0x76, 0x4d, 0x65, 0x3b, 0xcf, 0xbe, 0xe6, 0xf3, 0x82, + 0xa9, 0xc1, 0x02, 0x23, 0x34, 0x7e, 0xbd, 0x06, 0xd7, 0x73, 0x2b, 0x0c, 0xfa, 0x06, 0x34, 0x79, + 0x44, 0x2a, 0xaf, 0x74, 0xf7, 0xfe, 0x75, 0x71, 0x9a, 0x5c, 0x35, 0x21, 0x89, 0x75, 0x49, 0x85, + 0xe5, 0x88, 0x3c, 0x00, 0x12, 0x04, 0x34, 0xe8, 0x3a, 0xd4, 0x4d, 0x4b, 0xe9, 0xfd, 0x4b, 0x2b, + 0xd8, 0x65, 0x14, 0x2d, 0xea, 0xca, 0x72, 0x78, 0xc6, 0x88, 0xcb, 0x24, 0xdd, 0x42, 0xb7, 0xa0, + 0x38, 0x20, 0x61, 0x68, 0xf7, 0x08, 0xaf, 0xb2, 0x65, 0xb3, 0x92, 0xc4, 0x7a, 0xba, 0x84, 0xd3, + 0x09, 0xd2, 0x61, 0x91, 0xcb, 0xf0, 0x62, 0x59, 0x36, 0xcb, 0x49, 0xac, 0x8b, 0x05, 0x2c, 0x06, + 0xe3, 0x01, 0x2c, 0x4d, 0x18, 0x83, 0x56, 0xa0, 0xd2, 0xda, 0x6f, 0x77, 0x9f, 0x1d, 0x3c, 0x3a, + 0xe8, 0xbc, 0x38, 0xa8, 0x29, 0x2c, 0xbe, 0x6c, 0xa1, 0xf3, 0xa8, 0xa6, 0xa2, 0x25, 0x28, 0xb3, + 0xf9, 0x2e, 0xc6, 0x1d, 0x5c, 0x2b, 0x18, 0x4d, 0xa8, 0x9d, 0xb7, 0x99, 0xc1, 0x77, 0x31, 0x66, + 0x70, 0x85, 0x71, 0xb1, 0x79, 0xca, 0xa5, 0x1a, 0x3f, 0x2f, 0xc0, 0xca, 0xb9, 0xfc, 0x47, 0x9f, + 0x40, 0x39, 0x3c, 0x0d, 0x23, 0x32, 0xe8, 0x7a, 0x2e, 0x3f, 0x94, 0xb2, 0xb9, 0x94, 0xc4, 0xfa, + 0xd9, 0x22, 0x2e, 0x89, 0xe9, 0x9e, 0x8b, 0xbe, 0x82, 0x62, 0x9a, 0x8f, 0x85, 0xcd, 0x6b, 0x5b, + 0x95, 0xed, 0xcd, 0x99, 0xc5, 0x39, 0xcd, 0x41, 0x1e, 0x17, 0x29, 0x84, 0xd3, 0x09, 0x6b, 0x95, + 0xac, 0x1d, 0xcb, 0x0e, 0x95, 0xdb, 0x2a, 0x2d, 0x1a, 0x46, 0x7b, 0xfe, 0x21, 0x15, 0x3d, 0x8e, + 0xa1, 0x31, 0xff, 0x45, 0x0f, 0xa1, 0xd8, 0x27, 0xf6, 0x71, 0xd4, 0x0f, 0xeb, 0x8b, 0xdc, 0x88, + 0xd9, 0x2d, 0xc8, 0xe2, 0x38, 0x61, 0x83, 0x94, 0xc1, 0xe9, 0x04, 0xfd, 0x38, 0xff, 0xc2, 0x69, + 0x9c, 0xfb, 0x3f, 0xbd, 0x70, 0xb3, 0xaf, 0x1b, 0x3a, 0x49, 0x5b, 0x91, 0xed, 0x44, 0xde, 0x89, + 0x17, 0x9d, 0xa6, 0x95, 0xac, 0x78, 0x41, 0x2b, 0xda, 0x91, 0x78, 0x79, 0x2d, 0x32, 0xad, 0xe8, + 0x1c, 0x93, 0x6c, 0x44, 0x93, 0x78, 0xe3, 0x8f, 0x02, 0xac, 0xe6, 0xf0, 0xa0, 0x2f, 0x59, 0x5e, + 0x06, 0x01, 0x39, 0xb6, 0x23, 0x8f, 0xfa, 0x7b, 0x6d, 0x99, 0x19, 0x28, 0x89, 0xf5, 0x65, 0xe7, + 0x6c, 0x83, 0xa5, 0xc7, 0x24, 0x10, 0x19, 0xa0, 0xed, 0x53, 0x77, 0x74, 0x2c, 0x2e, 0x60, 0x59, + 0x5c, 0xd4, 0x01, 0x5f, 0xc1, 0x72, 0x07, 0xdd, 0x84, 0x05, 0x56, 0x55, 0xe4, 0xd5, 0xc9, 0x3c, + 0x62, 0x78, 0xad, 0xd9, 0x82, 0x52, 0xcb, 0x8e, 0x48, 0x8f, 0x06, 0xa7, 0xf2, 0xde, 0x54, 0x93, + 0x58, 0x2f, 0x39, 0x72, 0x0d, 0x8f, 0x77, 0xd1, 0x10, 0x56, 0x27, 0x1a, 0x3e, 0x73, 0x99, 0xfa, + 0xfc, 0xe1, 0xb0, 0xbc, 0x7d, 0xeb, 0x82, 0x87, 0xc3, 0x0e, 0x07, 0x9b, 0x1f, 0x24, 0xb1, 0x9e, + 0xc7, 0x62, 0x29, 0xf8, 0x7f, 0xfe, 0x14, 0xba, 0x04, 0x9a, 0x8c, 0xdc, 0x3e, 0xac, 0xb4, 0xe9, + 0x6b, 0xff, 0x98, 0xda, 0x6e, 0xda, 0xe1, 0xae, 0xf0, 0x00, 0x34, 0x7e, 0x28, 0xc0, 0x6a, 0xce, + 0xab, 0x06, 0xed, 0x4f, 0x14, 0xcc, 0x4b, 0xbd, 0xe6, 0xf2, 0x4a, 0xe4, 0x1e, 0x68, 0x32, 0x48, + 0x85, 0xcb, 0x04, 0x89, 0x53, 0x09, 0x41, 0x2c, 0x47, 0xf4, 0x1c, 0x2a, 0x32, 0x60, 0xcc, 0x21, + 0x79, 0x95, 0x3f, 0xca, 0x37, 0x8f, 0xc1, 0xda, 0x24, 0x74, 0x02, 0x6f, 0x18, 0xd1, 0xc0, 0x5c, + 0x49, 0x62, 0x3d, 0x2b, 0x8c, 0x41, 0x7c, 0xb0, 0x8b, 0x65, 0xfc, 0xad, 0x42, 0xf5, 0xd9, 0x90, + 0xc5, 0x55, 0xe6, 0xe2, 0x55, 0xde, 0xd5, 0x4f, 0xc6, 0xe1, 0x13, 0xfe, 0x36, 0xf3, 0xa4, 0xb3, + 0xda, 0x1a, 0x4f, 0x03, 0xdb, 0x0f, 0x0f, 0x49, 0x30, 0xa7, 0xcf, 0x18, 0xa0, 0x05, 0xc4, 0x0e, + 0xa9, 0x2f, 0x13, 0x98, 0x63, 0xc4, 0x0a, 0x96, 0xa3, 0xf1, 0x39, 0x2c, 0x4f, 0x32, 0xa1, 0x0a, + 0x14, 0xcf, 0xaa, 0xba, 0x06, 0x05, 0x5e, 0xd1, 0x01, 0xb4, 0x87, 0x3b, 0x7b, 0x8f, 0x77, 0xdb, + 0xb5, 0x82, 0xf1, 0xbb, 0x0a, 0x65, 0x16, 0x81, 0x56, 0x7f, 0xe4, 0x1f, 0xa1, 0x0e, 0x68, 0x7d, + 0x62, 0xbb, 0x24, 0x98, 0x7b, 0xf0, 0x0c, 0x4a, 0x5c, 0x4c, 0x42, 0x3a, 0x0a, 0x1c, 0x62, 0x71, + 0x01, 0x61, 0x8f, 0x10, 0xb6, 0x14, 0x2c, 0x67, 0xc8, 0x12, 0xcd, 0x99, 0x07, 0x62, 0xc6, 0x0b, + 0xf3, 0x1c, 0x1d, 0xff, 0x14, 0x21, 0x65, 0x92, 0x96, 0x82, 0xf9, 0x68, 0x16, 0x61, 0xd1, 0x61, + 0x5b, 0xc6, 0x3b, 0x15, 0xae, 0xe7, 0x9a, 0x70, 0xa5, 0x33, 0x33, 0x40, 0xe3, 0xf4, 0xe2, 0xcc, + 0x16, 0x85, 0x3b, 0x62, 0x05, 0xcb, 0x91, 0xd5, 0x08, 0xa7, 0x4f, 0x9c, 0xa3, 0x70, 0x34, 0x90, + 0x87, 0x20, 0x6a, 0x84, 0x5c, 0xc3, 0xe3, 0x19, 0xfa, 0x0c, 0x80, 0xcb, 0x74, 0x43, 0xef, 0x2d, + 0xe1, 0xf5, 0x64, 0x51, 0xfe, 0xcf, 0x19, 0xaf, 0xe2, 0x32, 0x9f, 0x3f, 0xf1, 0xde, 0x12, 0xe3, + 0x37, 0x15, 0xd6, 0xf2, 0xc2, 0x70, 0x25, 0x8f, 0x6e, 0x33, 0x6b, 0x99, 0x36, 0xcf, 0x95, 0x3e, + 0x49, 0x6b, 0xc5, 0x1a, 0x2e, 0xf2, 0xd9, 0x9e, 0xcb, 0x0a, 0xe3, 0xf8, 0x32, 0x55, 0xcf, 0x22, + 0x2f, 0xe3, 0x7e, 0xef, 0xcf, 0xf7, 0x1b, 0xea, 0xbb, 0xf7, 0x1b, 0xea, 0x5f, 0xef, 0x37, 0xd4, + 0x97, 0x77, 0x7a, 0x5e, 0xd4, 0x1f, 0xbd, 0x6a, 0x38, 0x74, 0xd0, 0xe4, 0x96, 0x34, 0xb9, 0x25, + 0xcd, 0xd0, 0x3d, 0x6a, 0x9e, 0x6c, 0x37, 0xf9, 0xff, 0xd3, 0x07, 0xfc, 0xf7, 0x95, 0xc6, 0x87, + 0xbb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x88, 0x7b, 0xcf, 0x4e, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1330,6 +1453,18 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.AgentActivityStatus != nil { + { + size, err := m.AgentActivityStatus.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } if len(m.DataplaneSoftwareDetails) > 0 { for iNdEx := len(m.DataplaneSoftwareDetails) - 1; iNdEx >= 0; iNdEx-- { { @@ -1394,6 +1529,82 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *AgentActivityStatus) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AgentActivityStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.Status != nil { + { + size := m.Status.Size() + i -= size + if _, err := m.Status.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + } + } + if len(m.Category) > 0 { + i -= len(m.Category) + copy(dAtA[i:], m.Category) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Category))) + i-- + dAtA[i] = 0x22 + } + if len(m.Type) > 0 { + i -= len(m.Type) + copy(dAtA[i:], m.Type) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Type))) + i-- + dAtA[i] = 0x1a + } + if len(m.Module) > 0 { + i -= len(m.Module) + copy(dAtA[i:], m.Module) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Module))) + i-- + dAtA[i] = 0x12 + } + if len(m.CorrelationID) > 0 { + i -= len(m.CorrelationID) + copy(dAtA[i:], m.CorrelationID) + i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationID))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *AgentActivityStatus_NginxConfigAction) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus_NginxConfigAction) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + i = encodeVarintCommand(dAtA, i, uint64(m.NginxConfigAction)) + i-- + dAtA[i] = 0x28 + return len(dAtA) - i, nil +} func (m *DownloadRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1936,12 +2147,56 @@ func (m *DataplaneStatus) Size() (n int) { n += 1 + l + sovCommand(uint64(l)) } } + if m.AgentActivityStatus != nil { + l = m.AgentActivityStatus.Size() + n += 1 + l + sovCommand(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *AgentActivityStatus) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.CorrelationID) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Module) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Type) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Category) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.Status != nil { + n += m.Status.Size() + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } +func (m *AgentActivityStatus_NginxConfigAction) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovCommand(uint64(m.NginxConfigAction)) + return n +} func (m *DownloadRequest) Size() (n int) { if m == nil { return 0 @@ -2906,6 +3161,241 @@ func (m *DataplaneStatus) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AgentActivityStatus", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AgentActivityStatus == nil { + m.AgentActivityStatus = &AgentActivityStatus{} + } + if err := m.AgentActivityStatus.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCommand(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCommand + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: AgentActivityStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AgentActivityStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CorrelationID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Module", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Module = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Type = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Category", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Category = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigAction", wireType) + } + var v NginxConfigAction + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= NginxConfigAction(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Status = &AgentActivityStatus_NginxConfigAction{v} default: iNdEx = preIndex skippy, err := skipCommand(dAtA[iNdEx:]) diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index f93e7a004..1675c748e 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -86,6 +86,17 @@ message DataplaneStatus { HostInfo host = 3 [(gogoproto.jsontag) = "host" ]; repeated NginxHealth healths = 5 [(gogoproto.jsontag) = "healths" ]; repeated DataplaneSoftwareDetails dataplane_software_details = 6 [(gogoproto.jsontag) = "dataplane_software_details"]; + AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; +} + +message AgentActivityStatus { + string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + string Module = 2 [(gogoproto.jsontag) = "module" ]; + string Type = 3 [(gogoproto.jsontag) = "type" ]; + string Category = 4 [(gogoproto.jsontag) = "category" ]; + oneof Status { + NginxConfigAction nginx_config_action = 5 [(gogoproto.jsontag) = "nginx_config_action" ]; + } } message DownloadRequest { diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go index 6621de95d..39b2e1760 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go @@ -123,7 +123,6 @@ func (m *Metadata) GetCategory() string { type Event struct { Metadata *Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3" json:"metadata"` // Types that are valid to be assigned to Data: - // // *Event_ActivityEvent Data isEvent_Data `protobuf_oneof:"data"` XXX_NoUnkeyedLiteral struct{} `json:"-"` diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go index 9a79eb930..b33bd6e39 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go @@ -31,6 +31,7 @@ const ( NginxConfigAction_TEST NginxConfigAction = 2 NginxConfigAction_ROLLBACK NginxConfigAction = 3 NginxConfigAction_RETURN NginxConfigAction = 4 + NginxConfigAction_PENDING NginxConfigAction = 5 ) var NginxConfigAction_name = map[int32]string{ @@ -39,6 +40,7 @@ var NginxConfigAction_name = map[int32]string{ 2: "TEST", 3: "ROLLBACK", 4: "RETURN", + 5: "PENDING", } var NginxConfigAction_value = map[string]int32{ @@ -47,6 +49,7 @@ var NginxConfigAction_value = map[string]int32{ "TEST": 2, "ROLLBACK": 3, "RETURN": 4, + "PENDING": 5, } func (x NginxConfigAction) String() string { @@ -952,85 +955,85 @@ func init() { func init() { proto.RegisterFile("nginx.proto", fileDescriptor_917f1a70b1fd7255) } var fileDescriptor_917f1a70b1fd7255 = []byte{ - // 1233 bytes of a gzipped FileDescriptorProto + // 1245 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0xc6, - 0x13, 0x0f, 0x2d, 0xd9, 0x22, 0x47, 0xb2, 0xad, 0xec, 0xff, 0x5f, 0x40, 0x09, 0x52, 0xd3, 0x60, - 0x1b, 0xd4, 0x4d, 0x51, 0x1b, 0x71, 0x5a, 0x14, 0x45, 0x83, 0x06, 0x92, 0xa5, 0x34, 0x46, 0x14, - 0xc7, 0x58, 0xcb, 0x69, 0xea, 0x8b, 0xba, 0x16, 0xd7, 0x32, 0x11, 0x8a, 0x14, 0x76, 0xc9, 0x20, - 0xc9, 0x33, 0xf4, 0x49, 0x7a, 0xeb, 0xb1, 0x6f, 0xd0, 0x5b, 0xfb, 0x04, 0x44, 0x91, 0x23, 0x2f, - 0x7d, 0x85, 0x62, 0x67, 0x97, 0x94, 0xfc, 0xd5, 0xe4, 0xd0, 0x5e, 0x96, 0x3b, 0xbf, 0x9d, 0xf9, - 0x71, 0xe7, 0x93, 0x84, 0x7a, 0x34, 0x0e, 0xa2, 0x57, 0x9b, 0x53, 0x11, 0x27, 0x31, 0x21, 0x27, - 0x5f, 0x6e, 0x6a, 0x99, 0x8d, 0x79, 0x94, 0x6c, 0x4a, 0xff, 0xc5, 0x4d, 0x18, 0xc7, 0xe3, 0x58, - 0x9f, 0xdf, 0x6c, 0x8c, 0xe2, 0xe8, 0x24, 0x18, 0xcf, 0xa4, 0xc9, 0x24, 0x8e, 0xb4, 0xe4, 0x3d, - 0x07, 0x7b, 0x3f, 0x4c, 0xe5, 0x6e, 0x74, 0x12, 0x93, 0xdb, 0x50, 0xe3, 0x11, 0x3b, 0x0e, 0xb9, - 0xdf, 0xb2, 0xd6, 0xad, 0x0d, 0xbb, 0x53, 0xcf, 0x33, 0xb7, 0x80, 0x68, 0xb1, 0x51, 0x6a, 0x82, - 0x87, 0x9c, 0x49, 0xde, 0x5a, 0x58, 0xb7, 0x36, 0x1c, 0xad, 0x66, 0x20, 0x5a, 0x6c, 0xbc, 0x1e, - 0xd4, 0x0e, 0x0e, 0xfa, 0x48, 0xec, 0xc2, 0xe2, 0x71, 0x1a, 0x84, 0x49, 0xcb, 0x5a, 0xaf, 0x6c, - 0x38, 0x1d, 0x27, 0xcf, 0x5c, 0x0d, 0x50, 0xfd, 0x20, 0x37, 0xa0, 0x22, 0xd2, 0xa8, 0xb5, 0x80, - 0xc7, 0xb5, 0x3c, 0x73, 0x95, 0x48, 0xd5, 0xe2, 0xed, 0x80, 0xbd, 0xcf, 0x92, 0x53, 0xe4, 0xb9, - 0x01, 0x95, 0xe3, 0x20, 0xc2, 0xcb, 0x19, 0xb5, 0xe3, 0x20, 0xa2, 0x6a, 0x21, 0xb7, 0xa0, 0xaa, - 0xbc, 0x34, 0x37, 0xb2, 0xf3, 0xcc, 0x45, 0x99, 0xe2, 0xea, 0xfd, 0xbe, 0x08, 0x8d, 0x3d, 0x15, - 0xa1, 0x2e, 0x4f, 0x58, 0x10, 0x4a, 0xf2, 0x09, 0xd8, 0x18, 0xb1, 0x61, 0xe0, 0x1b, 0xba, 0x46, - 0x9e, 0xb9, 0x25, 0x46, 0x6b, 0xb8, 0xdb, 0x45, 0x67, 0x5f, 0x72, 0x21, 0x83, 0x38, 0x9a, 0x77, - 0xd6, 0x40, 0xb4, 0xd8, 0x90, 0x3b, 0xe0, 0xa8, 0x17, 0x0d, 0xa7, 0x2c, 0x39, 0x6d, 0x55, 0x50, - 0x71, 0x39, 0xcf, 0xdc, 0x19, 0x48, 0x6d, 0xb5, 0x55, 0x9e, 0x90, 0xcf, 0x01, 0xa6, 0x22, 0x1e, - 0x71, 0x29, 0xd5, 0xdb, 0xab, 0xa8, 0xbc, 0x92, 0x67, 0xee, 0x1c, 0x4a, 0x1d, 0xb3, 0xdf, 0xf5, - 0xc9, 0x3d, 0x68, 0x14, 0x07, 0xc8, 0xbe, 0x88, 0x06, 0xcd, 0x3c, 0x73, 0xcf, 0xe0, 0xb4, 0x6e, - 0xa4, 0xe2, 0x1d, 0x32, 0x61, 0x22, 0x19, 0x26, 0xc1, 0x84, 0xb7, 0x96, 0xd6, 0xad, 0x8d, 0x8a, - 0x7e, 0xc7, 0x0c, 0xa5, 0x0e, 0xee, 0x07, 0xc1, 0x84, 0x93, 0x36, 0x5c, 0xc7, 0x44, 0x0c, 0x4f, - 0x44, 0x3c, 0x19, 0xca, 0x38, 0x15, 0x23, 0xde, 0xaa, 0x61, 0x0d, 0x7c, 0x90, 0x67, 0xee, 0xc5, - 0x43, 0xba, 0x8a, 0xd0, 0x43, 0x11, 0x4f, 0x0e, 0x10, 0x20, 0x0f, 0xa0, 0x19, 0xc6, 0xcc, 0x57, - 0x25, 0x32, 0x9c, 0xc4, 0x7e, 0x1a, 0x72, 0xd9, 0xb2, 0x31, 0x9f, 0xff, 0xcf, 0x33, 0xf7, 0xc2, - 0x19, 0x5d, 0x2d, 0x90, 0x27, 0x1a, 0x20, 0xf7, 0x61, 0x55, 0xa4, 0x91, 0xba, 0x59, 0x69, 0xef, - 0xa0, 0xfd, 0xff, 0xf2, 0xcc, 0x3d, 0x7f, 0x44, 0x57, 0x0c, 0x50, 0x58, 0xef, 0x40, 0x75, 0x1a, - 0xa6, 0xb2, 0x05, 0xeb, 0xd6, 0x46, 0x7d, 0xfb, 0xf6, 0xe6, 0xc5, 0x96, 0xd8, 0xc4, 0x02, 0x50, - 0xc5, 0xfe, 0x84, 0x27, 0xac, 0xcb, 0x12, 0xa6, 0xcb, 0x44, 0x99, 0x51, 0x5c, 0xc9, 0x03, 0xa8, - 0x48, 0x19, 0xb6, 0xea, 0xc8, 0xf1, 0xf1, 0x95, 0x1c, 0x07, 0x32, 0x2c, 0x29, 0xb0, 0x0a, 0xa5, - 0x0c, 0xa9, 0x5a, 0x4c, 0xd8, 0x93, 0x54, 0x0e, 0x53, 0x11, 0xb6, 0x1a, 0xb3, 0xd4, 0xce, 0x50, - 0x0c, 0x7b, 0x92, 0xca, 0x43, 0x11, 0x92, 0xaf, 0x61, 0x45, 0xb7, 0x66, 0x2a, 0xf8, 0x90, 0x89, - 0xb1, 0x6c, 0x2d, 0xa3, 0xc7, 0x24, 0xcf, 0xdc, 0x73, 0x27, 0x74, 0xb9, 0x94, 0xdb, 0x62, 0x2c, - 0x3d, 0x06, 0xd7, 0x2f, 0xf8, 0xf3, 0x2f, 0x37, 0xf0, 0xaf, 0x16, 0x34, 0xcf, 0xfb, 0x4b, 0x8e, - 0xc0, 0x96, 0x32, 0x1c, 0x26, 0xaf, 0xa7, 0x1c, 0xdf, 0xb1, 0xb2, 0x7d, 0xf7, 0x7d, 0xe2, 0x54, - 0x02, 0x83, 0xd7, 0x53, 0xae, 0x7b, 0xad, 0xa0, 0xa1, 0x35, 0xa9, 0x61, 0x75, 0x2f, 0x5f, 0xf7, - 0xa7, 0x99, 0x04, 0x78, 0x2f, 0x03, 0xd1, 0x62, 0xe3, 0x79, 0xa6, 0x97, 0x0d, 0x1b, 0x71, 0x60, - 0xb1, 0x73, 0xb8, 0xdb, 0x1f, 0x34, 0xaf, 0x91, 0x1a, 0x54, 0xe8, 0xe1, 0x5e, 0xd3, 0xf2, 0x7e, - 0x5a, 0x80, 0x3a, 0x2a, 0x3d, 0xe2, 0x2c, 0x4c, 0x4e, 0xdf, 0xbf, 0xdf, 0x7f, 0x84, 0x86, 0x06, - 0x75, 0x96, 0x30, 0x40, 0x2b, 0xdb, 0x9f, 0x5d, 0xe9, 0xa3, 0xe6, 0x37, 0xee, 0xa1, 0x89, 0x6e, - 0xcd, 0x79, 0x12, 0xaa, 0xa7, 0xb5, 0x3e, 0x56, 0x75, 0xee, 0xf3, 0xb1, 0x60, 0x3e, 0xf7, 0x87, - 0x82, 0x33, 0x19, 0x47, 0x66, 0x60, 0x60, 0x9d, 0x9f, 0x3b, 0xa2, 0x2b, 0x05, 0x40, 0x51, 0xf6, - 0xbe, 0x30, 0x7e, 0x19, 0xb2, 0x3a, 0xd4, 0x0e, 0xf7, 0x1e, 0xef, 0x3d, 0xfd, 0x7e, 0xaf, 0x79, - 0x8d, 0x00, 0x2c, 0xb5, 0x77, 0x06, 0xbb, 0xcf, 0x7a, 0x4d, 0x8b, 0x34, 0xc0, 0xee, 0xf6, 0xbe, - 0xa3, 0xed, 0x6e, 0xaf, 0xdb, 0x5c, 0xf0, 0xfe, 0xaa, 0x1a, 0xb3, 0x1d, 0x2c, 0x22, 0xb2, 0x0b, - 0x4b, 0x6c, 0x94, 0xa8, 0xa1, 0xa6, 0x73, 0x78, 0x75, 0xbf, 0x68, 0x83, 0x36, 0x2a, 0x77, 0x20, - 0xcf, 0x5c, 0x63, 0x48, 0xcd, 0x93, 0x3c, 0x83, 0xba, 0xae, 0xcc, 0xa1, 0xcf, 0x12, 0x86, 0xf1, - 0xba, 0xa2, 0x77, 0x34, 0x55, 0x97, 0xcb, 0x91, 0x08, 0xa6, 0x49, 0x2c, 0x3a, 0xab, 0x79, 0xe6, - 0xce, 0x1b, 0x53, 0xd0, 0x02, 0x16, 0x5a, 0x0f, 0x6a, 0x6f, 0xb4, 0x88, 0xe1, 0xa9, 0x6f, 0xaf, - 0x5d, 0xc6, 0x79, 0x14, 0x4c, 0xa7, 0xdc, 0x7f, 0x18, 0x84, 0x5c, 0x17, 0x8b, 0x31, 0xa1, 0xc5, - 0x86, 0xdc, 0x87, 0xea, 0x1b, 0x96, 0xbe, 0xc2, 0x31, 0xfb, 0x6e, 0x0e, 0x1c, 0x08, 0x4a, 0x9f, - 0xe2, 0x4a, 0xf6, 0xa1, 0xce, 0x46, 0x38, 0x62, 0xc3, 0x78, 0x2c, 0x71, 0xf4, 0x5e, 0x41, 0xd2, - 0x46, 0xb5, 0x7e, 0x3c, 0x96, 0xda, 0xad, 0x39, 0x33, 0x0a, 0xac, 0x3c, 0x24, 0x7d, 0x00, 0x2e, - 0x44, 0x2c, 0x34, 0xe1, 0x12, 0x12, 0x7e, 0x78, 0x19, 0x61, 0x4f, 0x69, 0x21, 0x1f, 0x0e, 0x90, - 0x99, 0x11, 0x75, 0x78, 0x71, 0x44, 0xbe, 0xd5, 0x03, 0xab, 0x86, 0x34, 0x1f, 0x5d, 0x46, 0x73, - 0x20, 0xc3, 0x1d, 0x2e, 0x92, 0xe0, 0x24, 0x18, 0xb1, 0x84, 0xcb, 0x73, 0xf3, 0xea, 0x39, 0x2c, - 0xfb, 0x81, 0xe0, 0xa3, 0x24, 0x16, 0xaf, 0x87, 0x13, 0x36, 0x6d, 0xd9, 0xc8, 0xb4, 0x7e, 0x19, - 0x53, 0xb7, 0x50, 0x7c, 0xc2, 0xa6, 0x9d, 0xeb, 0x79, 0xe6, 0x9e, 0x35, 0xa5, 0x0d, 0x7f, 0x4e, - 0xc1, 0x3b, 0x02, 0x68, 0x9f, 0xf1, 0x7a, 0x16, 0x10, 0xfc, 0x0b, 0xb8, 0xc2, 0xeb, 0xd2, 0x46, - 0x7b, 0x3d, 0x33, 0xa2, 0x4e, 0x19, 0x44, 0xef, 0x67, 0x0b, 0x9c, 0x52, 0x51, 0x7d, 0xf9, 0x23, - 0x36, 0xe1, 0xa6, 0xad, 0x31, 0x83, 0x4a, 0xa6, 0xb8, 0x12, 0x0f, 0x96, 0x4e, 0x62, 0x31, 0x61, - 0x89, 0x19, 0x75, 0x58, 0xc2, 0x1a, 0xa1, 0xe6, 0x49, 0xee, 0x42, 0x7d, 0xca, 0xc5, 0x24, 0x90, - 0xea, 0x53, 0x2e, 0x4d, 0x37, 0x62, 0x16, 0xe7, 0x60, 0x3a, 0x2f, 0x90, 0x0d, 0xb0, 0x05, 0xd7, - 0xdf, 0x2f, 0x2c, 0x2d, 0x5b, 0xcf, 0x93, 0x02, 0xa3, 0xe5, 0xce, 0x3b, 0x04, 0xa7, 0x4c, 0x25, - 0x79, 0x04, 0x4e, 0x99, 0x48, 0x13, 0x86, 0x5b, 0xff, 0x94, 0x7c, 0xfd, 0x13, 0x51, 0x9a, 0x50, - 0xbb, 0x48, 0xbd, 0xf7, 0x8b, 0x05, 0x76, 0xa1, 0xf5, 0x8e, 0x10, 0xdc, 0x01, 0x27, 0x8c, 0xc7, - 0xc3, 0x90, 0xbf, 0xe4, 0xa1, 0x89, 0x02, 0xd2, 0x96, 0x20, 0xb5, 0xc3, 0x78, 0xdc, 0x57, 0xbb, - 0xff, 0x34, 0x14, 0x77, 0x9e, 0x9a, 0x6f, 0xd6, 0xfc, 0x4c, 0x39, 0x3b, 0xc1, 0x1c, 0x58, 0x6c, - 0xef, 0xef, 0xf7, 0x7f, 0x68, 0x5a, 0xc4, 0x86, 0xea, 0xa0, 0x77, 0x30, 0x68, 0x2e, 0xa8, 0x51, - 0x46, 0x9f, 0xf6, 0xfb, 0x9d, 0xf6, 0xce, 0xe3, 0x66, 0x45, 0x0d, 0x39, 0xda, 0x1b, 0x1c, 0xd2, - 0xbd, 0x66, 0xb5, 0xf3, 0xd5, 0x6f, 0x6f, 0xd7, 0xac, 0x3f, 0xde, 0xae, 0x59, 0x7f, 0xbe, 0x5d, - 0xb3, 0x8e, 0x3e, 0x1d, 0x07, 0xc9, 0x69, 0x7a, 0xbc, 0x39, 0x8a, 0x27, 0x5b, 0x18, 0xd0, 0x2d, - 0x0c, 0xe8, 0x96, 0xf4, 0x5f, 0x6c, 0xbd, 0xdc, 0xde, 0xc2, 0xff, 0xdd, 0x6f, 0x70, 0x3d, 0x5e, - 0xc2, 0xc7, 0xbd, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x56, 0xdc, 0xdc, 0x47, 0x0b, 0x00, - 0x00, + 0x16, 0x0e, 0x2d, 0xd9, 0x22, 0x8f, 0x64, 0x5b, 0x99, 0x7b, 0x2f, 0xa0, 0x04, 0xb9, 0xa6, 0xc1, + 0x7b, 0x83, 0xba, 0x29, 0x6a, 0x23, 0x4e, 0x8b, 0xa2, 0x68, 0xd0, 0x40, 0xb2, 0x94, 0x44, 0x88, + 0xa2, 0x18, 0x63, 0x39, 0x4d, 0x8d, 0x02, 0xea, 0x58, 0x1c, 0xcb, 0x44, 0x28, 0x52, 0x98, 0xa1, + 0x82, 0x24, 0xcf, 0xd0, 0x27, 0xe9, 0xae, 0xcb, 0xbe, 0x41, 0x77, 0xed, 0x13, 0x10, 0x45, 0x96, + 0xdc, 0xf4, 0x15, 0x8a, 0x39, 0x33, 0xa4, 0xe4, 0xbf, 0x26, 0x8b, 0x76, 0x33, 0x9c, 0xf3, 0xcd, + 0x39, 0x1f, 0xe7, 0xfc, 0x92, 0x50, 0x8d, 0xc6, 0x41, 0xf4, 0x7a, 0x7b, 0x2a, 0xe2, 0x24, 0x26, + 0xe4, 0xe4, 0xf3, 0x6d, 0x2d, 0xb3, 0x31, 0x8f, 0x92, 0x6d, 0xe9, 0xbf, 0xbc, 0x09, 0xe3, 0x78, + 0x1c, 0xeb, 0xf3, 0x9b, 0xb5, 0x51, 0x1c, 0x9d, 0x04, 0xe3, 0xb9, 0x34, 0x99, 0xc4, 0x91, 0x96, + 0xbc, 0x17, 0x60, 0xef, 0x87, 0x33, 0xd9, 0x8d, 0x4e, 0x62, 0x72, 0x1b, 0x2a, 0x3c, 0x62, 0xc7, + 0x21, 0xf7, 0x1b, 0xd6, 0xa6, 0xb5, 0x65, 0xb7, 0xaa, 0x59, 0xea, 0xe6, 0x10, 0xcd, 0x37, 0x4a, + 0x4d, 0xf0, 0x90, 0x33, 0xc9, 0x1b, 0x4b, 0x9b, 0xd6, 0x96, 0xa3, 0xd5, 0x0c, 0x44, 0xf3, 0x8d, + 0xd7, 0x81, 0xca, 0xc1, 0x41, 0x0f, 0x89, 0x5d, 0x58, 0x3e, 0x9e, 0x05, 0x61, 0xd2, 0xb0, 0x36, + 0x4b, 0x5b, 0x4e, 0xcb, 0xc9, 0x52, 0x57, 0x03, 0x54, 0x3f, 0xc8, 0x0d, 0x28, 0x89, 0x59, 0xd4, + 0x58, 0xc2, 0xe3, 0x4a, 0x96, 0xba, 0x4a, 0xa4, 0x6a, 0xf1, 0xf6, 0xc0, 0xde, 0x67, 0xc9, 0x29, + 0xf2, 0xdc, 0x80, 0xd2, 0x71, 0x10, 0xe1, 0xe5, 0x8c, 0xda, 0x71, 0x10, 0x51, 0xb5, 0x90, 0x5b, + 0x50, 0x56, 0x5e, 0x9a, 0x1b, 0xd9, 0x59, 0xea, 0xa2, 0x4c, 0x71, 0xf5, 0x7e, 0x5d, 0x86, 0x5a, + 0x5f, 0x45, 0xa8, 0xcd, 0x13, 0x16, 0x84, 0x92, 0x7c, 0x04, 0x36, 0x46, 0x6c, 0x18, 0xf8, 0x86, + 0xae, 0x96, 0xa5, 0x6e, 0x81, 0xd1, 0x0a, 0xee, 0xba, 0xe8, 0xec, 0x2b, 0x2e, 0x64, 0x10, 0x47, + 0x8b, 0xce, 0x1a, 0x88, 0xe6, 0x1b, 0x72, 0x07, 0x1c, 0xf5, 0xa2, 0xe1, 0x94, 0x25, 0xa7, 0x8d, + 0x12, 0x2a, 0xae, 0x66, 0xa9, 0x3b, 0x07, 0xa9, 0xad, 0xb6, 0xca, 0x13, 0xf2, 0x29, 0xc0, 0x54, + 0xc4, 0x23, 0x2e, 0xa5, 0x7a, 0x7b, 0x19, 0x95, 0xd7, 0xb2, 0xd4, 0x5d, 0x40, 0xa9, 0x63, 0xf6, + 0x5d, 0x9f, 0xdc, 0x83, 0x5a, 0x7e, 0x80, 0xec, 0xcb, 0x68, 0x50, 0xcf, 0x52, 0xf7, 0x0c, 0x4e, + 0xab, 0x46, 0xca, 0xdf, 0x21, 0x13, 0x26, 0x92, 0x61, 0x12, 0x4c, 0x78, 0x63, 0x65, 0xd3, 0xda, + 0x2a, 0xe9, 0x77, 0xcc, 0x51, 0xea, 0xe0, 0x7e, 0x10, 0x4c, 0x38, 0x69, 0xc2, 0x75, 0x4c, 0xc4, + 0xf0, 0x44, 0xc4, 0x93, 0xa1, 0x8c, 0x67, 0x62, 0xc4, 0x1b, 0x15, 0xac, 0x81, 0xff, 0x64, 0xa9, + 0x7b, 0xf1, 0x90, 0xae, 0x23, 0xf4, 0x50, 0xc4, 0x93, 0x03, 0x04, 0xc8, 0x03, 0xa8, 0x87, 0x31, + 0xf3, 0x55, 0x89, 0x0c, 0x27, 0xb1, 0x3f, 0x0b, 0xb9, 0x6c, 0xd8, 0x98, 0xcf, 0x7f, 0x67, 0xa9, + 0x7b, 0xe1, 0x8c, 0xae, 0xe7, 0xc8, 0x53, 0x0d, 0x90, 0xfb, 0xb0, 0x2e, 0x66, 0x91, 0xba, 0x59, + 0x61, 0xef, 0xa0, 0xfd, 0xbf, 0xb2, 0xd4, 0x3d, 0x7f, 0x44, 0xd7, 0x0c, 0x90, 0x5b, 0xef, 0x41, + 0x79, 0x1a, 0xce, 0x64, 0x03, 0x36, 0xad, 0xad, 0xea, 0xee, 0xed, 0xed, 0x8b, 0x2d, 0xb1, 0x8d, + 0x05, 0xa0, 0x8a, 0xfd, 0x29, 0x4f, 0x58, 0x9b, 0x25, 0x4c, 0x97, 0x89, 0x32, 0xa3, 0xb8, 0x92, + 0x07, 0x50, 0x92, 0x32, 0x6c, 0x54, 0x91, 0xe3, 0xff, 0x57, 0x72, 0x1c, 0xc8, 0xb0, 0xa0, 0xc0, + 0x2a, 0x94, 0x32, 0xa4, 0x6a, 0x31, 0x61, 0x4f, 0x66, 0x72, 0x38, 0x13, 0x61, 0xa3, 0x36, 0x4f, + 0xed, 0x1c, 0xc5, 0xb0, 0x27, 0x33, 0x79, 0x28, 0x42, 0xf2, 0x25, 0xac, 0xe9, 0xd6, 0x9c, 0x09, + 0x3e, 0x64, 0x62, 0x2c, 0x1b, 0xab, 0xe8, 0x31, 0xc9, 0x52, 0xf7, 0xdc, 0x09, 0x5d, 0x2d, 0xe4, + 0xa6, 0x18, 0x4b, 0x8f, 0xc1, 0xf5, 0x0b, 0xfe, 0xfc, 0xcd, 0x0d, 0xfc, 0xb3, 0x05, 0xf5, 0xf3, + 0xfe, 0x92, 0x23, 0xb0, 0xa5, 0x0c, 0x87, 0xc9, 0x9b, 0x29, 0xc7, 0x77, 0xac, 0xed, 0xde, 0xfd, + 0x90, 0x38, 0x15, 0xc0, 0xe0, 0xcd, 0x94, 0xeb, 0x5e, 0xcb, 0x69, 0x68, 0x45, 0x6a, 0x58, 0xdd, + 0xcb, 0xd7, 0xfd, 0x69, 0x26, 0x01, 0xde, 0xcb, 0x40, 0x34, 0xdf, 0x78, 0x9e, 0xe9, 0x65, 0xc3, + 0x46, 0x1c, 0x58, 0x6e, 0x1d, 0x76, 0x7b, 0x83, 0xfa, 0x35, 0x52, 0x81, 0x12, 0x3d, 0xec, 0xd7, + 0x2d, 0xef, 0x87, 0x25, 0xa8, 0xa2, 0xd2, 0x63, 0xce, 0xc2, 0xe4, 0xf4, 0xc3, 0xfb, 0xfd, 0x7b, + 0xa8, 0x69, 0x50, 0x67, 0x09, 0x03, 0xb4, 0xb6, 0xfb, 0xc9, 0x95, 0x3e, 0x6a, 0x7e, 0xe3, 0x1e, + 0x9a, 0xe8, 0xd6, 0x5c, 0x24, 0xa1, 0x7a, 0x5a, 0xeb, 0x63, 0x55, 0xe7, 0x3e, 0x1f, 0x0b, 0xe6, + 0x73, 0x7f, 0x28, 0x38, 0x93, 0x71, 0x64, 0x06, 0x06, 0xd6, 0xf9, 0xb9, 0x23, 0xba, 0x96, 0x03, + 0x14, 0x65, 0xef, 0x33, 0xe3, 0x97, 0x21, 0xab, 0x42, 0xe5, 0xb0, 0xff, 0xa4, 0xff, 0xec, 0x9b, + 0x7e, 0xfd, 0x1a, 0x01, 0x58, 0x69, 0xee, 0x0d, 0xba, 0xcf, 0x3b, 0x75, 0x8b, 0xd4, 0xc0, 0x6e, + 0x77, 0x1e, 0xd1, 0x66, 0xbb, 0xd3, 0xae, 0x2f, 0x79, 0x7f, 0x94, 0x8d, 0xd9, 0x1e, 0x16, 0x11, + 0xe9, 0xc2, 0x0a, 0x1b, 0x25, 0x6a, 0xa8, 0xe9, 0x1c, 0x5e, 0xdd, 0x2f, 0xda, 0xa0, 0x89, 0xca, + 0x2d, 0xc8, 0x52, 0xd7, 0x18, 0x52, 0xf3, 0x24, 0xcf, 0xa1, 0xaa, 0x2b, 0x73, 0xe8, 0xb3, 0x84, + 0x61, 0xbc, 0xae, 0xe8, 0x1d, 0x4d, 0xd5, 0xe6, 0x72, 0x24, 0x82, 0x69, 0x12, 0x8b, 0xd6, 0x7a, + 0x96, 0xba, 0x8b, 0xc6, 0x14, 0xb4, 0x80, 0x85, 0xd6, 0x81, 0xca, 0x5b, 0x2d, 0x62, 0x78, 0xaa, + 0xbb, 0x1b, 0x97, 0x71, 0x1e, 0x05, 0xd3, 0x29, 0xf7, 0x1f, 0x06, 0x21, 0xd7, 0xc5, 0x62, 0x4c, + 0x68, 0xbe, 0x21, 0xf7, 0xa1, 0xfc, 0x96, 0xcd, 0x5e, 0xe3, 0x98, 0x7d, 0x3f, 0x07, 0x0e, 0x04, + 0xa5, 0x4f, 0x71, 0x25, 0xfb, 0x50, 0x65, 0x23, 0x1c, 0xb1, 0x61, 0x3c, 0x96, 0x38, 0x7a, 0xaf, + 0x20, 0x69, 0xa2, 0x5a, 0x2f, 0x1e, 0x4b, 0xed, 0xd6, 0x82, 0x19, 0x05, 0x56, 0x1c, 0x92, 0x1e, + 0x00, 0x17, 0x22, 0x16, 0x9a, 0x70, 0x05, 0x09, 0xff, 0x7b, 0x19, 0x61, 0x47, 0x69, 0x21, 0x1f, + 0x0e, 0x90, 0xb9, 0x11, 0x75, 0x78, 0x7e, 0x44, 0xbe, 0xd6, 0x03, 0xab, 0x82, 0x34, 0xff, 0xbb, + 0x8c, 0xe6, 0x40, 0x86, 0x7b, 0x5c, 0x24, 0xc1, 0x49, 0x30, 0x62, 0x09, 0x97, 0xe7, 0xe6, 0xd5, + 0x0b, 0x58, 0xf5, 0x03, 0xc1, 0x47, 0x49, 0x2c, 0xde, 0x0c, 0x27, 0x6c, 0xda, 0xb0, 0x91, 0x69, + 0xf3, 0x32, 0xa6, 0x76, 0xae, 0xf8, 0x94, 0x4d, 0x5b, 0xd7, 0xb3, 0xd4, 0x3d, 0x6b, 0x4a, 0x6b, + 0xfe, 0x82, 0x82, 0x77, 0x04, 0xd0, 0x3c, 0xe3, 0xf5, 0x3c, 0x20, 0xf8, 0x17, 0x70, 0x85, 0xd7, + 0x85, 0x8d, 0xf6, 0x7a, 0x6e, 0x44, 0x9d, 0x22, 0x88, 0xde, 0x8f, 0x16, 0x38, 0x85, 0xa2, 0xfa, + 0xf2, 0x47, 0x6c, 0xc2, 0x4d, 0x5b, 0x63, 0x06, 0x95, 0x4c, 0x71, 0x25, 0x1e, 0xac, 0x9c, 0xc4, + 0x62, 0xc2, 0x12, 0x33, 0xea, 0xb0, 0x84, 0x35, 0x42, 0xcd, 0x93, 0xdc, 0x85, 0xea, 0x94, 0x8b, + 0x49, 0x20, 0xd5, 0xa7, 0x5c, 0x9a, 0x6e, 0xc4, 0x2c, 0x2e, 0xc0, 0x74, 0x51, 0x20, 0x5b, 0x60, + 0x0b, 0xae, 0xbf, 0x5f, 0x58, 0x5a, 0xb6, 0x9e, 0x27, 0x39, 0x46, 0x8b, 0x9d, 0x77, 0x08, 0x4e, + 0x91, 0x4a, 0xf2, 0x18, 0x9c, 0x22, 0x91, 0x26, 0x0c, 0xb7, 0xfe, 0x2a, 0xf9, 0xfa, 0x27, 0xa2, + 0x30, 0xa1, 0x76, 0x9e, 0x7a, 0xef, 0x27, 0x0b, 0xec, 0x5c, 0xeb, 0x3d, 0x21, 0xb8, 0x03, 0x4e, + 0x18, 0x8f, 0x87, 0x21, 0x7f, 0xc5, 0x43, 0x13, 0x05, 0xa4, 0x2d, 0x40, 0x6a, 0x87, 0xf1, 0xb8, + 0xa7, 0x76, 0xff, 0x68, 0x28, 0xee, 0x7c, 0x67, 0xbe, 0x59, 0x8b, 0x33, 0xe5, 0xec, 0x04, 0x73, + 0x60, 0xb9, 0xb9, 0xbf, 0xdf, 0xfb, 0xb6, 0x6e, 0x11, 0x1b, 0xca, 0x83, 0xce, 0xc1, 0xa0, 0xbe, + 0xa4, 0x46, 0x19, 0x7d, 0xd6, 0xeb, 0xb5, 0x9a, 0x7b, 0x4f, 0xea, 0x25, 0x35, 0xe4, 0x68, 0x67, + 0x70, 0x48, 0xfb, 0xf5, 0xb2, 0xb2, 0xdd, 0xef, 0xf4, 0xdb, 0xdd, 0xfe, 0xa3, 0xfa, 0x72, 0xeb, + 0x8b, 0x5f, 0xde, 0x6d, 0x58, 0xbf, 0xbd, 0xdb, 0xb0, 0x7e, 0x7f, 0xb7, 0x61, 0x1d, 0x7d, 0x3c, + 0x0e, 0x92, 0xd3, 0xd9, 0xf1, 0xf6, 0x28, 0x9e, 0xec, 0x60, 0x74, 0x77, 0x30, 0xba, 0x3b, 0xd2, + 0x7f, 0xb9, 0xf3, 0x6a, 0x77, 0x07, 0x7f, 0x7e, 0xbf, 0xc2, 0xf5, 0x78, 0x05, 0x1f, 0xf7, 0xfe, + 0x0c, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xe0, 0x9f, 0x5c, 0x54, 0x0b, 0x00, 0x00, } func (m *PlusInfo) Marshal() (dAtA []byte, err error) { diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto index 4bf9d33ba..dcb1386f9 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto @@ -69,6 +69,7 @@ enum NginxConfigAction { TEST = 2; ROLLBACK = 3; RETURN = 4; + PENDING = 5; } message NginxConfig { @@ -102,4 +103,4 @@ message ErrorLog { string log_level = 2 [(gogoproto.jsontag) = "log_level" ]; string permissions = 3 [(gogoproto.jsontag) = "permissions" ]; bool readable = 4 [(gogoproto.jsontag) = "readable" ]; -} \ No newline at end of file +} diff --git a/test/performance/vendor/github.com/nginx/agent/v2/src/core/config/defaults.go b/test/performance/vendor/github.com/nginx/agent/v2/src/core/config/defaults.go index 9c9487b7b..2584c8b0d 100644 --- a/test/performance/vendor/github.com/nginx/agent/v2/src/core/config/defaults.go +++ b/test/performance/vendor/github.com/nginx/agent/v2/src/core/config/defaults.go @@ -248,8 +248,8 @@ var ( Usage: "A comma-separated list of tags to add to the current instance or machine, to be used for inventory purposes.", }, &StringSliceFlag{ - Name: FeaturesKey, - Usage: "A comma-separated list of features enabled for the agent.", + Name: FeaturesKey, + Usage: "A comma-separated list of features enabled for the agent.", DefaultValue: Defaults.Features, }, // NGINX Config diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index 179802799..d0de717b6 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -130,7 +130,7 @@ func (x UploadStatus_TransferStatus) String() string { } func (UploadStatus_TransferStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5, 0} + return fileDescriptor_213c0bb044472049, []int{6, 0} } // Command is the envelope sent between the management plane and the data plane, requesting some action or reporting a response @@ -422,6 +422,7 @@ type DataplaneStatus struct { Host *HostInfo `protobuf:"bytes,3,opt,name=host,proto3" json:"host"` Healths []*NginxHealth `protobuf:"bytes,5,rep,name=healths,proto3" json:"healths"` DataplaneSoftwareDetails []*DataplaneSoftwareDetails `protobuf:"bytes,6,rep,name=dataplane_software_details,json=dataplaneSoftwareDetails,proto3" json:"dataplane_software_details"` + AgentActivityStatus *AgentActivityStatus `protobuf:"bytes,7,opt,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -495,6 +496,120 @@ func (m *DataplaneStatus) GetDataplaneSoftwareDetails() []*DataplaneSoftwareDeta return nil } +func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { + if m != nil { + return m.AgentActivityStatus + } + return nil +} + +type AgentActivityStatus struct { + CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + Module string `protobuf:"bytes,2,opt,name=Module,proto3" json:"module"` + Type string `protobuf:"bytes,3,opt,name=Type,proto3" json:"type"` + Category string `protobuf:"bytes,4,opt,name=Category,proto3" json:"category"` + // Types that are valid to be assigned to Status: + // *AgentActivityStatus_NginxConfigAction + Status isAgentActivityStatus_Status `protobuf_oneof:"Status"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AgentActivityStatus) Reset() { *m = AgentActivityStatus{} } +func (m *AgentActivityStatus) String() string { return proto.CompactTextString(m) } +func (*AgentActivityStatus) ProtoMessage() {} +func (*AgentActivityStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{3} +} +func (m *AgentActivityStatus) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *AgentActivityStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_AgentActivityStatus.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *AgentActivityStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_AgentActivityStatus.Merge(m, src) +} +func (m *AgentActivityStatus) XXX_Size() int { + return m.Size() +} +func (m *AgentActivityStatus) XXX_DiscardUnknown() { + xxx_messageInfo_AgentActivityStatus.DiscardUnknown(m) +} + +var xxx_messageInfo_AgentActivityStatus proto.InternalMessageInfo + +type isAgentActivityStatus_Status interface { + isAgentActivityStatus_Status() + MarshalTo([]byte) (int, error) + Size() int +} + +type AgentActivityStatus_NginxConfigAction struct { + NginxConfigAction NginxConfigAction `protobuf:"varint,5,opt,name=nginx_config_action,json=nginxConfigAction,proto3,enum=f5.nginx.agent.sdk.NginxConfigAction,oneof" json:"nginx_config_action"` +} + +func (*AgentActivityStatus_NginxConfigAction) isAgentActivityStatus_Status() {} + +func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *AgentActivityStatus) GetCorrelationID() string { + if m != nil { + return m.CorrelationID + } + return "" +} + +func (m *AgentActivityStatus) GetModule() string { + if m != nil { + return m.Module + } + return "" +} + +func (m *AgentActivityStatus) GetType() string { + if m != nil { + return m.Type + } + return "" +} + +func (m *AgentActivityStatus) GetCategory() string { + if m != nil { + return m.Category + } + return "" +} + +func (m *AgentActivityStatus) GetNginxConfigAction() NginxConfigAction { + if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigAction); ok { + return x.NginxConfigAction + } + return NginxConfigAction_UNKNOWN +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*AgentActivityStatus_NginxConfigAction)(nil), + } +} + type DownloadRequest struct { Meta *Metadata `protobuf:"bytes,1,opt,name=meta,proto3" json:"meta"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -506,7 +621,7 @@ func (m *DownloadRequest) Reset() { *m = DownloadRequest{} } func (m *DownloadRequest) String() string { return proto.CompactTextString(m) } func (*DownloadRequest) ProtoMessage() {} func (*DownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{3} + return fileDescriptor_213c0bb044472049, []int{4} } func (m *DownloadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -555,7 +670,7 @@ func (m *NginxConfigResponse) Reset() { *m = NginxConfigResponse{} } func (m *NginxConfigResponse) String() string { return proto.CompactTextString(m) } func (*NginxConfigResponse) ProtoMessage() {} func (*NginxConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{4} + return fileDescriptor_213c0bb044472049, []int{5} } func (m *NginxConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -618,7 +733,7 @@ func (m *UploadStatus) Reset() { *m = UploadStatus{} } func (m *UploadStatus) String() string { return proto.CompactTextString(m) } func (*UploadStatus) ProtoMessage() {} func (*UploadStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5} + return fileDescriptor_213c0bb044472049, []int{6} } func (m *UploadStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -670,7 +785,6 @@ func (m *UploadStatus) GetReason() string { type DataChunk struct { // Types that are valid to be assigned to Chunk: - // // *DataChunk_Header // *DataChunk_Data Chunk isDataChunk_Chunk `protobuf_oneof:"chunk"` @@ -683,7 +797,7 @@ func (m *DataChunk) Reset() { *m = DataChunk{} } func (m *DataChunk) String() string { return proto.CompactTextString(m) } func (*DataChunk) ProtoMessage() {} func (*DataChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6} + return fileDescriptor_213c0bb044472049, []int{7} } func (m *DataChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -772,7 +886,7 @@ func (m *ChunkedResourceHeader) Reset() { *m = ChunkedResourceHeader{} } func (m *ChunkedResourceHeader) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceHeader) ProtoMessage() {} func (*ChunkedResourceHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{7} + return fileDescriptor_213c0bb044472049, []int{8} } func (m *ChunkedResourceHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -842,7 +956,7 @@ func (m *ChunkedResourceChunk) Reset() { *m = ChunkedResourceChunk{} } func (m *ChunkedResourceChunk) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceChunk) ProtoMessage() {} func (*ChunkedResourceChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{8} + return fileDescriptor_213c0bb044472049, []int{9} } func (m *ChunkedResourceChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -900,6 +1014,7 @@ func init() { proto.RegisterType((*Command)(nil), "f5.nginx.agent.sdk.Command") proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") proto.RegisterType((*DataplaneStatus)(nil), "f5.nginx.agent.sdk.DataplaneStatus") + proto.RegisterType((*AgentActivityStatus)(nil), "f5.nginx.agent.sdk.AgentActivityStatus") proto.RegisterType((*DownloadRequest)(nil), "f5.nginx.agent.sdk.DownloadRequest") proto.RegisterType((*NginxConfigResponse)(nil), "f5.nginx.agent.sdk.NginxConfigResponse") proto.RegisterType((*UploadStatus)(nil), "f5.nginx.agent.sdk.UploadStatus") @@ -911,85 +1026,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1233 bytes of a gzipped FileDescriptorProto + // 1375 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x26, 0x65, 0x8b, 0xb2, 0x8e, 0xe4, 0x58, 0x98, 0x38, 0x3f, 0x18, 0x23, 0x30, 0x0d, 0xfe, - 0x4d, 0xed, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x02, 0x24, 0x2b, 0x53, 0x52, 0x4a, 0x23, 0xb6, 0x54, - 0x8c, 0xe3, 0x04, 0x48, 0x51, 0x08, 0x0c, 0x39, 0xba, 0xc0, 0x16, 0xa9, 0x72, 0xa8, 0x24, 0x0e, - 0xba, 0x2f, 0x50, 0x74, 0x57, 0x14, 0x45, 0x9f, 0xa2, 0xaf, 0xd1, 0x65, 0x9e, 0x80, 0x28, 0xbc, - 0xe4, 0x03, 0x74, 0x5d, 0xcc, 0x85, 0xb2, 0x64, 0x53, 0x72, 0x03, 0x77, 0xa3, 0x39, 0x1c, 0x7e, - 0xdf, 0x77, 0x2e, 0x33, 0x73, 0x86, 0x82, 0x55, 0x37, 0x18, 0x0e, 0x1d, 0xdf, 0xab, 0x8e, 0xc2, - 0x20, 0x0a, 0x10, 0xea, 0x7e, 0x55, 0xf5, 0x7b, 0x03, 0xff, 0x5d, 0xd5, 0xe9, 0x11, 0x3f, 0xaa, - 0x52, 0xef, 0x64, 0x03, 0x7a, 0x41, 0x2f, 0x10, 0xef, 0x37, 0xca, 0x0c, 0x1e, 0xf8, 0xf2, 0xa9, - 0x24, 0x40, 0xe2, 0x01, 0xfa, 0x01, 0x4d, 0xed, 0x92, 0xd0, 0x98, 0x70, 0xfc, 0xee, 0xa0, 0x27, - 0x9f, 0x10, 0x79, 0x43, 0xfc, 0x88, 0xd6, 0xf8, 0x20, 0xe7, 0xee, 0x7a, 0xa3, 0x0e, 0x0d, 0xba, - 0xd1, 0x5b, 0x27, 0x24, 0x1d, 0x8f, 0x44, 0xce, 0xe0, 0x94, 0x8a, 0x57, 0xe6, 0x2f, 0x00, 0x85, - 0xba, 0x08, 0x11, 0x3d, 0x86, 0xe5, 0x21, 0x89, 0x1c, 0x5d, 0xdd, 0x52, 0x77, 0x4a, 0xbb, 0xf7, - 0xaa, 0x57, 0x63, 0xad, 0x1e, 0x92, 0xc8, 0xf1, 0x9c, 0xc8, 0xb1, 0x56, 0x92, 0xd8, 0xe0, 0x68, - 0xcc, 0x7f, 0x51, 0x13, 0x96, 0xa3, 0xb3, 0x11, 0xd1, 0x73, 0x5b, 0xea, 0xce, 0xad, 0xdd, 0xed, - 0x2c, 0xae, 0x74, 0x93, 0x8e, 0xcf, 0xcf, 0x46, 0x44, 0xc8, 0x30, 0x22, 0xe6, 0xbf, 0xe8, 0x15, - 0x80, 0x3b, 0xf4, 0x3a, 0x34, 0x72, 0xa2, 0x31, 0xd5, 0x97, 0x78, 0x20, 0x0f, 0x16, 0x88, 0x1d, - 0x71, 0x20, 0x26, 0x74, 0x14, 0xf8, 0x94, 0x58, 0xb7, 0x92, 0xd8, 0x98, 0x12, 0xb0, 0x15, 0x5c, - 0x74, 0x87, 0x12, 0x84, 0x5e, 0x40, 0x99, 0xab, 0x74, 0x44, 0xbd, 0xf4, 0x65, 0xae, 0x6e, 0x64, - 0xa9, 0xb7, 0xd8, 0x73, 0x9d, 0xc3, 0xac, 0x4a, 0x12, 0x1b, 0x33, 0x44, 0x5b, 0xc1, 0xa2, 0xfe, - 0x02, 0x80, 0xde, 0xc1, 0x9d, 0xe9, 0xd7, 0x9d, 0x50, 0x46, 0xa3, 0xe7, 0xb9, 0x83, 0xed, 0x6b, - 0x1c, 0x4c, 0x82, 0xbf, 0x9b, 0xc4, 0x46, 0xb6, 0x92, 0xad, 0xe0, 0xdb, 0xfe, 0x55, 0x06, 0xf3, - 0xcc, 0x25, 0x19, 0xde, 0x27, 0x6e, 0xd4, 0x09, 0xc9, 0xf7, 0x63, 0x42, 0x23, 0x5d, 0x9b, 0xef, - 0x79, 0x8f, 0x59, 0x75, 0x81, 0xc7, 0x02, 0x2e, 0x3c, 0x67, 0x2a, 0x31, 0xcf, 0xce, 0x55, 0x06, - 0xfa, 0x01, 0xfe, 0x77, 0x19, 0x2f, 0x93, 0x2e, 0x70, 0xd7, 0x3b, 0xd7, 0xbb, 0x96, 0x59, 0x6f, - 0x24, 0xb1, 0x31, 0x47, 0xcb, 0x56, 0xf0, 0xba, 0x93, 0xc1, 0x41, 0x11, 0xac, 0x4f, 0x18, 0xa2, - 0x4e, 0x22, 0xed, 0x15, 0xee, 0xfb, 0xd3, 0x45, 0xbe, 0x79, 0xf9, 0x44, 0xd6, 0x7a, 0x12, 0x1b, - 0x99, 0x3a, 0xb6, 0x82, 0x91, 0x73, 0x05, 0xcf, 0xf6, 0xcf, 0x34, 0x5a, 0x2f, 0xce, 0xdf, 0x3f, - 0x53, 0xde, 0xc4, 0xfe, 0x99, 0x26, 0xb2, 0xfd, 0x33, 0x25, 0x8f, 0xba, 0x50, 0x61, 0x47, 0x6a, - 0x74, 0xea, 0xf8, 0x24, 0xdd, 0xf9, 0x25, 0xae, 0xfd, 0xff, 0x2c, 0xed, 0x46, 0x8a, 0x15, 0xdb, - 0xda, 0x5a, 0x4f, 0x62, 0xe3, 0x8a, 0x80, 0xad, 0xe0, 0x35, 0x6f, 0x16, 0x88, 0xbe, 0x83, 0x32, - 0x6f, 0x0a, 0x9d, 0x90, 0x8c, 0x82, 0x30, 0xd2, 0xcb, 0xf3, 0xab, 0x25, 0x7a, 0x48, 0xb5, 0xc9, - 0x06, 0xcc, 0xd1, 0x22, 0x8d, 0x69, 0x3e, 0x4b, 0x83, 0x5c, 0x00, 0xd0, 0xcf, 0x2a, 0x6c, 0x4c, - 0x85, 0x71, 0xa9, 0xdd, 0xe8, 0xab, 0xdc, 0xdb, 0xe7, 0x8b, 0x33, 0x92, 0xa4, 0x86, 0xe0, 0x58, - 0x9b, 0x49, 0x6c, 0x2c, 0xd0, 0xb4, 0x15, 0xac, 0x7b, 0x73, 0xb8, 0xe6, 0x43, 0x28, 0x4d, 0x35, - 0x1a, 0x04, 0xa0, 0xb5, 0xda, 0xf8, 0x70, 0xef, 0xa0, 0xa2, 0xa0, 0x32, 0xac, 0x34, 0xda, 0x2f, - 0x5b, 0x07, 0xed, 0xbd, 0x46, 0x45, 0x65, 0x6f, 0x8e, 0xbf, 0xe1, 0x76, 0xce, 0xd2, 0x60, 0x99, - 0x09, 0x9a, 0xbf, 0x2e, 0xc1, 0x9d, 0xcc, 0x0e, 0x83, 0xbe, 0x05, 0x4d, 0x2e, 0x91, 0xca, 0x3b, - 0xdd, 0xa3, 0x7f, 0xdd, 0x9c, 0x66, 0x67, 0x2d, 0x48, 0x62, 0x43, 0x4a, 0x61, 0x39, 0xa2, 0x01, - 0x00, 0x09, 0xc3, 0x20, 0xec, 0xb8, 0x81, 0x97, 0xb6, 0xd2, 0xc7, 0x1f, 0xed, 0xa0, 0xc9, 0x24, - 0xea, 0x81, 0x27, 0xdb, 0xe1, 0x85, 0x22, 0x2e, 0x92, 0xf4, 0x15, 0xba, 0x0f, 0x85, 0x21, 0xa1, - 0xd4, 0xe9, 0x11, 0xde, 0x65, 0x8b, 0x56, 0x29, 0x89, 0x8d, 0x74, 0x0a, 0xa7, 0x06, 0x32, 0x20, - 0xcf, 0x39, 0xbc, 0x59, 0x16, 0xad, 0x62, 0x12, 0x1b, 0x62, 0x02, 0x8b, 0xc1, 0x7c, 0x02, 0xab, - 0x33, 0xc1, 0xa0, 0x35, 0x28, 0xd5, 0x0f, 0x1b, 0x9d, 0xe3, 0xd6, 0xb3, 0x56, 0xfb, 0x65, 0xab, - 0xa2, 0xb0, 0xfa, 0xb2, 0x89, 0xf6, 0xb3, 0x8a, 0x8a, 0x56, 0xa1, 0xc8, 0xec, 0x26, 0xc6, 0x6d, - 0x5c, 0xc9, 0x99, 0x35, 0xa8, 0x5c, 0x8e, 0x99, 0xc1, 0x9b, 0x18, 0x33, 0xb8, 0xc2, 0xb4, 0x98, - 0x9d, 0x6a, 0xa9, 0xe6, 0x6f, 0x4b, 0xb0, 0x76, 0x69, 0xff, 0xa3, 0xcf, 0xa0, 0x48, 0xcf, 0x68, - 0x44, 0x86, 0x9d, 0x81, 0xc7, 0x17, 0xa5, 0x68, 0xad, 0x26, 0xb1, 0x71, 0x31, 0x89, 0x57, 0x84, - 0xb9, 0xef, 0xa1, 0xaf, 0xa1, 0x90, 0xee, 0xc7, 0xdc, 0xd6, 0xd2, 0x4e, 0x69, 0x77, 0x6b, 0x6e, - 0x73, 0x4e, 0xf7, 0x20, 0xaf, 0x8b, 0x24, 0xe1, 0xd4, 0x60, 0x57, 0x25, 0xbb, 0x8e, 0xe5, 0x0d, - 0x95, 0x79, 0x55, 0xda, 0x01, 0x8d, 0xf6, 0xfd, 0x6e, 0x20, 0xee, 0x38, 0x86, 0xc6, 0xfc, 0x17, - 0x3d, 0x85, 0x42, 0x9f, 0x38, 0xa7, 0x51, 0x9f, 0xea, 0x79, 0x1e, 0xc4, 0xfc, 0x2b, 0xc8, 0xe6, - 0x38, 0x11, 0x83, 0xe4, 0xe0, 0xd4, 0x40, 0x3f, 0x2d, 0x3e, 0x70, 0x1a, 0xd7, 0xfe, 0x4f, 0x0f, - 0xdc, 0x82, 0xe3, 0x76, 0x08, 0x6b, 0x8d, 0xe0, 0xad, 0x7f, 0x1a, 0x38, 0x5e, 0xda, 0x2f, 0x6f, - 0xf0, 0x39, 0x61, 0xfe, 0x98, 0x83, 0xdb, 0x19, 0x77, 0x24, 0x3a, 0x9c, 0x39, 0x7e, 0x1f, 0xf5, - 0x6d, 0x90, 0x75, 0xe0, 0xf6, 0x41, 0x73, 0xdc, 0x68, 0x10, 0xf8, 0xf2, 0xb0, 0xdd, 0xbf, 0xe6, - 0xae, 0xde, 0xe3, 0x60, 0x21, 0x25, 0x88, 0x58, 0x8e, 0xe8, 0x05, 0x94, 0xe4, 0x2d, 0xc2, 0x12, - 0x92, 0x1b, 0xe3, 0x93, 0xec, 0xf0, 0x18, 0xac, 0x41, 0xa8, 0x1b, 0x0e, 0x46, 0x51, 0x10, 0x5a, - 0x6b, 0x49, 0x6c, 0x4c, 0x93, 0x31, 0x88, 0x07, 0xb6, 0x4c, 0xe6, 0xdf, 0x2a, 0x94, 0x8f, 0x47, - 0xac, 0xae, 0x72, 0xbf, 0xdf, 0xe4, 0x2b, 0xed, 0x68, 0x52, 0x3e, 0x91, 0x6f, 0x2d, 0x8b, 0x3d, - 0xed, 0xad, 0xfa, 0x3c, 0x74, 0x7c, 0xda, 0x25, 0xe1, 0x82, 0xae, 0x65, 0x82, 0x16, 0x12, 0x87, - 0x06, 0xbe, 0xec, 0x24, 0x1c, 0x23, 0x66, 0xb0, 0x1c, 0xcd, 0x2f, 0xe1, 0xd6, 0xac, 0x12, 0x2a, - 0x41, 0xe1, 0xa2, 0x47, 0x68, 0x90, 0xe3, 0xfd, 0x01, 0x40, 0x7b, 0xba, 0xb7, 0x7f, 0xd0, 0x6c, - 0x54, 0x72, 0xe6, 0x1f, 0x2a, 0x14, 0x59, 0x05, 0xea, 0xfd, 0xb1, 0x7f, 0x82, 0xda, 0xa0, 0xf5, - 0x89, 0xe3, 0x91, 0x70, 0xe1, 0xc2, 0x33, 0x28, 0xf1, 0x30, 0xa1, 0xc1, 0x38, 0x74, 0x89, 0xcd, - 0x09, 0x22, 0x1e, 0x41, 0xb6, 0x15, 0x2c, 0x2d, 0x64, 0x8b, 0x56, 0xcf, 0x0b, 0x31, 0xe7, 0x7b, - 0xe5, 0x92, 0x1c, 0x7f, 0x14, 0x25, 0x65, 0x4c, 0x5b, 0xc1, 0x7c, 0xb4, 0x0a, 0x90, 0x77, 0xd9, - 0x2b, 0xf3, 0x83, 0x0a, 0x77, 0x32, 0x43, 0xb8, 0xd1, 0x9a, 0x99, 0xa0, 0x71, 0x79, 0xb1, 0x66, - 0x79, 0x91, 0x8e, 0x98, 0xc1, 0x72, 0x44, 0x3b, 0xb0, 0xe2, 0xf6, 0x89, 0x7b, 0x42, 0xc7, 0x43, - 0xb9, 0x08, 0xe5, 0x24, 0x36, 0x26, 0x73, 0x78, 0x62, 0xa1, 0x2f, 0x00, 0x38, 0xa7, 0x43, 0x07, - 0xef, 0x09, 0xef, 0xea, 0x79, 0xf9, 0xd5, 0x3c, 0x99, 0xc5, 0x45, 0x6e, 0x1f, 0x0d, 0xde, 0x13, - 0xf3, 0x77, 0x15, 0xd6, 0xb3, 0xca, 0x70, 0xa3, 0x8c, 0xb6, 0x59, 0xb4, 0xcc, 0xdb, 0xc0, 0x93, - 0x39, 0xc9, 0x68, 0xc5, 0x1c, 0x2e, 0x70, 0x6b, 0xdf, 0x43, 0xf7, 0xe4, 0x1a, 0xb1, 0x94, 0xca, - 0x17, 0x95, 0x97, 0x75, 0x7f, 0xf4, 0xe7, 0xf9, 0xa6, 0xfa, 0xe1, 0x7c, 0x53, 0xfd, 0xeb, 0x7c, - 0x53, 0x7d, 0xf5, 0xa0, 0x37, 0x88, 0xfa, 0xe3, 0xd7, 0x55, 0x37, 0x18, 0xd6, 0x78, 0x24, 0x35, - 0x1e, 0x49, 0x8d, 0x7a, 0x27, 0xb5, 0x37, 0xbb, 0x35, 0xfe, 0x6f, 0xe7, 0x09, 0xff, 0x7d, 0xad, - 0xf1, 0xe1, 0xe1, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xa7, 0x4a, 0x04, 0x9c, 0x0d, 0x00, - 0x00, + 0x17, 0x26, 0x15, 0x9b, 0x92, 0x8e, 0x64, 0x5b, 0xff, 0xd8, 0xf9, 0xab, 0x18, 0x81, 0x69, 0xb0, + 0x4d, 0xe3, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x52, 0x24, 0x2b, 0x53, 0x72, 0x4a, 0x23, 0xb1, 0x55, + 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0xe2, 0xa8, 0x24, 0xe5, 0xc4, 0x41, + 0xf7, 0x05, 0x8a, 0x02, 0x5d, 0x14, 0x5d, 0xf4, 0x29, 0xba, 0xec, 0x2b, 0x74, 0x99, 0x27, 0x20, + 0x8a, 0x2c, 0xf9, 0x00, 0x5d, 0x17, 0x73, 0xa1, 0x4c, 0x59, 0x94, 0x5c, 0xc3, 0xdd, 0x68, 0x86, + 0x33, 0xdf, 0xf9, 0xce, 0x65, 0xce, 0x9c, 0x33, 0x82, 0x25, 0x87, 0x0e, 0x06, 0xb6, 0xef, 0x36, + 0x86, 0x01, 0x8d, 0x28, 0x42, 0x87, 0x5f, 0x34, 0xfc, 0x9e, 0xe7, 0xbf, 0x69, 0xd8, 0x3d, 0xe2, + 0x47, 0x8d, 0xd0, 0x3d, 0x5a, 0x87, 0x1e, 0xed, 0x51, 0xb1, 0xbf, 0x5e, 0x65, 0x70, 0xea, 0xcb, + 0xaf, 0x8a, 0x00, 0x89, 0x0f, 0xe8, 0xd3, 0x30, 0x9d, 0x57, 0x04, 0xc7, 0x58, 0xc6, 0x3f, 0xf4, + 0x7a, 0xf2, 0x0b, 0x91, 0x13, 0xe2, 0x47, 0x61, 0x93, 0x0f, 0x72, 0xed, 0x86, 0x3b, 0xec, 0x86, + 0xf4, 0x30, 0x7a, 0x6d, 0x07, 0xa4, 0xeb, 0x92, 0xc8, 0xf6, 0x8e, 0x43, 0xb1, 0x65, 0xfc, 0x02, + 0x50, 0x6c, 0x09, 0x13, 0xd1, 0x7d, 0x58, 0x18, 0x90, 0xc8, 0xae, 0xab, 0x9b, 0xea, 0x56, 0x65, + 0xfb, 0x66, 0x63, 0xda, 0xd6, 0xc6, 0x3e, 0x89, 0x6c, 0xd7, 0x8e, 0x6c, 0xb3, 0x94, 0xc4, 0x3a, + 0x47, 0x63, 0xfe, 0x8b, 0x76, 0x61, 0x21, 0x3a, 0x1d, 0x92, 0x7a, 0x61, 0x53, 0xdd, 0x5a, 0xde, + 0xbe, 0x9d, 0x27, 0x2b, 0xd5, 0xa4, 0xe3, 0xd3, 0xd3, 0x21, 0x11, 0x34, 0x4c, 0x10, 0xf3, 0x5f, + 0xf4, 0x12, 0xc0, 0x19, 0xb8, 0xdd, 0x30, 0xb2, 0xa3, 0x51, 0x58, 0xbf, 0xc6, 0x0d, 0xb9, 0x33, + 0x87, 0xec, 0x09, 0x07, 0x62, 0x12, 0x0e, 0xa9, 0x1f, 0x12, 0x73, 0x39, 0x89, 0xf5, 0x0c, 0x81, + 0xa5, 0xe0, 0xb2, 0x33, 0x90, 0x20, 0xf4, 0x1c, 0xaa, 0x9c, 0xa5, 0x2b, 0xe2, 0x55, 0x5f, 0xe0, + 0xec, 0x7a, 0x1e, 0xfb, 0x01, 0xfb, 0x6e, 0x71, 0x98, 0x59, 0x4b, 0x62, 0x7d, 0x42, 0xd0, 0x52, + 0xb0, 0x88, 0xbf, 0x00, 0xa0, 0x37, 0x70, 0x3d, 0xbb, 0xdd, 0x0d, 0xa4, 0x35, 0xf5, 0x45, 0xae, + 0xe0, 0xf6, 0x05, 0x0a, 0xc6, 0xc6, 0xdf, 0x48, 0x62, 0x3d, 0x9f, 0xc9, 0x52, 0xf0, 0xaa, 0x3f, + 0x2d, 0xc1, 0x34, 0x73, 0x4a, 0x86, 0xf7, 0x89, 0x13, 0x75, 0x03, 0xf2, 0xdd, 0x88, 0x84, 0x51, + 0x5d, 0x9b, 0xad, 0x79, 0x87, 0xcd, 0x5a, 0x02, 0x8f, 0x05, 0x5c, 0x68, 0xce, 0x65, 0x62, 0x9a, + 0xed, 0x69, 0x09, 0xf4, 0x3d, 0xfc, 0xff, 0x3c, 0x5e, 0x3a, 0x5d, 0xe4, 0xaa, 0xb7, 0x2e, 0x56, + 0x2d, 0xbd, 0x5e, 0x4f, 0x62, 0x7d, 0x06, 0x97, 0xa5, 0xe0, 0x35, 0x3b, 0x47, 0x06, 0x45, 0xb0, + 0x36, 0x96, 0x10, 0x71, 0x12, 0x6e, 0x97, 0xb8, 0xee, 0x8f, 0xe7, 0xe9, 0xe6, 0xe1, 0x13, 0x5e, + 0xd7, 0x93, 0x58, 0xcf, 0xe5, 0xb1, 0x14, 0x8c, 0xec, 0x29, 0x3c, 0xcb, 0x9f, 0x2c, 0xba, 0x5e, + 0x9e, 0x9d, 0x3f, 0x19, 0x6d, 0x22, 0x7f, 0xb2, 0x82, 0x2c, 0x7f, 0x32, 0xf4, 0xe8, 0x10, 0x6a, + 0xec, 0x4a, 0x0d, 0x8f, 0x6d, 0x9f, 0xa4, 0x99, 0x5f, 0xe1, 0xdc, 0x1f, 0xe6, 0x71, 0xb7, 0x53, + 0xac, 0x48, 0x6b, 0x73, 0x2d, 0x89, 0xf5, 0x29, 0x02, 0x4b, 0xc1, 0x2b, 0xee, 0x24, 0x10, 0x7d, + 0x0b, 0x55, 0x5e, 0x14, 0xba, 0x01, 0x19, 0xd2, 0x20, 0xaa, 0x57, 0x67, 0x47, 0x4b, 0xd4, 0x90, + 0xc6, 0x2e, 0x1b, 0x30, 0x47, 0x0b, 0x37, 0xb2, 0xf2, 0xcc, 0x0d, 0x72, 0x06, 0x40, 0x3f, 0xa9, + 0xb0, 0x9e, 0x31, 0xe3, 0x5c, 0xb9, 0xa9, 0x2f, 0x71, 0x6d, 0x9f, 0xce, 0xf7, 0x48, 0x0a, 0xb5, + 0x85, 0x8c, 0xb9, 0x91, 0xc4, 0xfa, 0x1c, 0x4e, 0x4b, 0xc1, 0x75, 0x77, 0x86, 0xac, 0x71, 0x17, + 0x2a, 0x99, 0x42, 0x83, 0x00, 0xb4, 0x83, 0x0e, 0xde, 0xdf, 0x79, 0x5c, 0x53, 0x50, 0x15, 0x4a, + 0xed, 0xce, 0x8b, 0x83, 0xc7, 0x9d, 0x9d, 0x76, 0x4d, 0x65, 0x3b, 0xcf, 0xbe, 0xe6, 0xf3, 0x82, + 0xa9, 0xc1, 0x02, 0x23, 0x34, 0x7e, 0xbd, 0x06, 0xd7, 0x73, 0x2b, 0x0c, 0xfa, 0x06, 0x34, 0x79, + 0x44, 0x2a, 0xaf, 0x74, 0xf7, 0xfe, 0x75, 0x71, 0x9a, 0x5c, 0x35, 0x21, 0x89, 0x75, 0x49, 0x85, + 0xe5, 0x88, 0x3c, 0x00, 0x12, 0x04, 0x34, 0xe8, 0x3a, 0xd4, 0x4d, 0x4b, 0xe9, 0xfd, 0x4b, 0x2b, + 0xd8, 0x65, 0x14, 0x2d, 0xea, 0xca, 0x72, 0x78, 0xc6, 0x88, 0xcb, 0x24, 0xdd, 0x42, 0xb7, 0xa0, + 0x38, 0x20, 0x61, 0x68, 0xf7, 0x08, 0xaf, 0xb2, 0x65, 0xb3, 0x92, 0xc4, 0x7a, 0xba, 0x84, 0xd3, + 0x09, 0xd2, 0x61, 0x91, 0xcb, 0xf0, 0x62, 0x59, 0x36, 0xcb, 0x49, 0xac, 0x8b, 0x05, 0x2c, 0x06, + 0xe3, 0x01, 0x2c, 0x4d, 0x18, 0x83, 0x56, 0xa0, 0xd2, 0xda, 0x6f, 0x77, 0x9f, 0x1d, 0x3c, 0x3a, + 0xe8, 0xbc, 0x38, 0xa8, 0x29, 0x2c, 0xbe, 0x6c, 0xa1, 0xf3, 0xa8, 0xa6, 0xa2, 0x25, 0x28, 0xb3, + 0xf9, 0x2e, 0xc6, 0x1d, 0x5c, 0x2b, 0x18, 0x4d, 0xa8, 0x9d, 0xb7, 0x99, 0xc1, 0x77, 0x31, 0x66, + 0x70, 0x85, 0x71, 0xb1, 0x79, 0xca, 0xa5, 0x1a, 0x3f, 0x2f, 0xc0, 0xca, 0xb9, 0xfc, 0x47, 0x9f, + 0x40, 0x39, 0x3c, 0x0d, 0x23, 0x32, 0xe8, 0x7a, 0x2e, 0x3f, 0x94, 0xb2, 0xb9, 0x94, 0xc4, 0xfa, + 0xd9, 0x22, 0x2e, 0x89, 0xe9, 0x9e, 0x8b, 0xbe, 0x82, 0x62, 0x9a, 0x8f, 0x85, 0xcd, 0x6b, 0x5b, + 0x95, 0xed, 0xcd, 0x99, 0xc5, 0x39, 0xcd, 0x41, 0x1e, 0x17, 0x29, 0x84, 0xd3, 0x09, 0x6b, 0x95, + 0xac, 0x1d, 0xcb, 0x0e, 0x95, 0xdb, 0x2a, 0x2d, 0x1a, 0x46, 0x7b, 0xfe, 0x21, 0x15, 0x3d, 0x8e, + 0xa1, 0x31, 0xff, 0x45, 0x0f, 0xa1, 0xd8, 0x27, 0xf6, 0x71, 0xd4, 0x0f, 0xeb, 0x8b, 0xdc, 0x88, + 0xd9, 0x2d, 0xc8, 0xe2, 0x38, 0x61, 0x83, 0x94, 0xc1, 0xe9, 0x04, 0xfd, 0x38, 0xff, 0xc2, 0x69, + 0x9c, 0xfb, 0x3f, 0xbd, 0x70, 0xb3, 0xaf, 0x1b, 0x3a, 0x49, 0x5b, 0x91, 0xed, 0x44, 0xde, 0x89, + 0x17, 0x9d, 0xa6, 0x95, 0xac, 0x78, 0x41, 0x2b, 0xda, 0x91, 0x78, 0x79, 0x2d, 0x32, 0xad, 0xe8, + 0x1c, 0x93, 0x6c, 0x44, 0x93, 0x78, 0xe3, 0x8f, 0x02, 0xac, 0xe6, 0xf0, 0xa0, 0x2f, 0x59, 0x5e, + 0x06, 0x01, 0x39, 0xb6, 0x23, 0x8f, 0xfa, 0x7b, 0x6d, 0x99, 0x19, 0x28, 0x89, 0xf5, 0x65, 0xe7, + 0x6c, 0x83, 0xa5, 0xc7, 0x24, 0x10, 0x19, 0xa0, 0xed, 0x53, 0x77, 0x74, 0x2c, 0x2e, 0x60, 0x59, + 0x5c, 0xd4, 0x01, 0x5f, 0xc1, 0x72, 0x07, 0xdd, 0x84, 0x05, 0x56, 0x55, 0xe4, 0xd5, 0xc9, 0x3c, + 0x62, 0x78, 0xad, 0xd9, 0x82, 0x52, 0xcb, 0x8e, 0x48, 0x8f, 0x06, 0xa7, 0xf2, 0xde, 0x54, 0x93, + 0x58, 0x2f, 0x39, 0x72, 0x0d, 0x8f, 0x77, 0xd1, 0x10, 0x56, 0x27, 0x1a, 0x3e, 0x73, 0x99, 0xfa, + 0xfc, 0xe1, 0xb0, 0xbc, 0x7d, 0xeb, 0x82, 0x87, 0xc3, 0x0e, 0x07, 0x9b, 0x1f, 0x24, 0xb1, 0x9e, + 0xc7, 0x62, 0x29, 0xf8, 0x7f, 0xfe, 0x14, 0xba, 0x04, 0x9a, 0x8c, 0xdc, 0x3e, 0xac, 0xb4, 0xe9, + 0x6b, 0xff, 0x98, 0xda, 0x6e, 0xda, 0xe1, 0xae, 0xf0, 0x00, 0x34, 0x7e, 0x28, 0xc0, 0x6a, 0xce, + 0xab, 0x06, 0xed, 0x4f, 0x14, 0xcc, 0x4b, 0xbd, 0xe6, 0xf2, 0x4a, 0xe4, 0x1e, 0x68, 0x32, 0x48, + 0x85, 0xcb, 0x04, 0x89, 0x53, 0x09, 0x41, 0x2c, 0x47, 0xf4, 0x1c, 0x2a, 0x32, 0x60, 0xcc, 0x21, + 0x79, 0x95, 0x3f, 0xca, 0x37, 0x8f, 0xc1, 0xda, 0x24, 0x74, 0x02, 0x6f, 0x18, 0xd1, 0xc0, 0x5c, + 0x49, 0x62, 0x3d, 0x2b, 0x8c, 0x41, 0x7c, 0xb0, 0x8b, 0x65, 0xfc, 0xad, 0x42, 0xf5, 0xd9, 0x90, + 0xc5, 0x55, 0xe6, 0xe2, 0x55, 0xde, 0xd5, 0x4f, 0xc6, 0xe1, 0x13, 0xfe, 0x36, 0xf3, 0xa4, 0xb3, + 0xda, 0x1a, 0x4f, 0x03, 0xdb, 0x0f, 0x0f, 0x49, 0x30, 0xa7, 0xcf, 0x18, 0xa0, 0x05, 0xc4, 0x0e, + 0xa9, 0x2f, 0x13, 0x98, 0x63, 0xc4, 0x0a, 0x96, 0xa3, 0xf1, 0x39, 0x2c, 0x4f, 0x32, 0xa1, 0x0a, + 0x14, 0xcf, 0xaa, 0xba, 0x06, 0x05, 0x5e, 0xd1, 0x01, 0xb4, 0x87, 0x3b, 0x7b, 0x8f, 0x77, 0xdb, + 0xb5, 0x82, 0xf1, 0xbb, 0x0a, 0x65, 0x16, 0x81, 0x56, 0x7f, 0xe4, 0x1f, 0xa1, 0x0e, 0x68, 0x7d, + 0x62, 0xbb, 0x24, 0x98, 0x7b, 0xf0, 0x0c, 0x4a, 0x5c, 0x4c, 0x42, 0x3a, 0x0a, 0x1c, 0x62, 0x71, + 0x01, 0x61, 0x8f, 0x10, 0xb6, 0x14, 0x2c, 0x67, 0xc8, 0x12, 0xcd, 0x99, 0x07, 0x62, 0xc6, 0x0b, + 0xf3, 0x1c, 0x1d, 0xff, 0x14, 0x21, 0x65, 0x92, 0x96, 0x82, 0xf9, 0x68, 0x16, 0x61, 0xd1, 0x61, + 0x5b, 0xc6, 0x3b, 0x15, 0xae, 0xe7, 0x9a, 0x70, 0xa5, 0x33, 0x33, 0x40, 0xe3, 0xf4, 0xe2, 0xcc, + 0x16, 0x85, 0x3b, 0x62, 0x05, 0xcb, 0x91, 0xd5, 0x08, 0xa7, 0x4f, 0x9c, 0xa3, 0x70, 0x34, 0x90, + 0x87, 0x20, 0x6a, 0x84, 0x5c, 0xc3, 0xe3, 0x19, 0xfa, 0x0c, 0x80, 0xcb, 0x74, 0x43, 0xef, 0x2d, + 0xe1, 0xf5, 0x64, 0x51, 0xfe, 0xcf, 0x19, 0xaf, 0xe2, 0x32, 0x9f, 0x3f, 0xf1, 0xde, 0x12, 0xe3, + 0x37, 0x15, 0xd6, 0xf2, 0xc2, 0x70, 0x25, 0x8f, 0x6e, 0x33, 0x6b, 0x99, 0x36, 0xcf, 0x95, 0x3e, + 0x49, 0x6b, 0xc5, 0x1a, 0x2e, 0xf2, 0xd9, 0x9e, 0xcb, 0x0a, 0xe3, 0xf8, 0x32, 0x55, 0xcf, 0x22, + 0x2f, 0xe3, 0x7e, 0xef, 0xcf, 0xf7, 0x1b, 0xea, 0xbb, 0xf7, 0x1b, 0xea, 0x5f, 0xef, 0x37, 0xd4, + 0x97, 0x77, 0x7a, 0x5e, 0xd4, 0x1f, 0xbd, 0x6a, 0x38, 0x74, 0xd0, 0xe4, 0x96, 0x34, 0xb9, 0x25, + 0xcd, 0xd0, 0x3d, 0x6a, 0x9e, 0x6c, 0x37, 0xf9, 0xff, 0xd3, 0x07, 0xfc, 0xf7, 0x95, 0xc6, 0x87, + 0xbb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x88, 0x7b, 0xcf, 0x4e, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1330,6 +1453,18 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.AgentActivityStatus != nil { + { + size, err := m.AgentActivityStatus.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } if len(m.DataplaneSoftwareDetails) > 0 { for iNdEx := len(m.DataplaneSoftwareDetails) - 1; iNdEx >= 0; iNdEx-- { { @@ -1394,6 +1529,82 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *AgentActivityStatus) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AgentActivityStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.Status != nil { + { + size := m.Status.Size() + i -= size + if _, err := m.Status.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + } + } + if len(m.Category) > 0 { + i -= len(m.Category) + copy(dAtA[i:], m.Category) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Category))) + i-- + dAtA[i] = 0x22 + } + if len(m.Type) > 0 { + i -= len(m.Type) + copy(dAtA[i:], m.Type) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Type))) + i-- + dAtA[i] = 0x1a + } + if len(m.Module) > 0 { + i -= len(m.Module) + copy(dAtA[i:], m.Module) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Module))) + i-- + dAtA[i] = 0x12 + } + if len(m.CorrelationID) > 0 { + i -= len(m.CorrelationID) + copy(dAtA[i:], m.CorrelationID) + i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationID))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *AgentActivityStatus_NginxConfigAction) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus_NginxConfigAction) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + i = encodeVarintCommand(dAtA, i, uint64(m.NginxConfigAction)) + i-- + dAtA[i] = 0x28 + return len(dAtA) - i, nil +} func (m *DownloadRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1936,12 +2147,56 @@ func (m *DataplaneStatus) Size() (n int) { n += 1 + l + sovCommand(uint64(l)) } } + if m.AgentActivityStatus != nil { + l = m.AgentActivityStatus.Size() + n += 1 + l + sovCommand(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *AgentActivityStatus) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.CorrelationID) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Module) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Type) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + l = len(m.Category) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.Status != nil { + n += m.Status.Size() + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } +func (m *AgentActivityStatus_NginxConfigAction) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovCommand(uint64(m.NginxConfigAction)) + return n +} func (m *DownloadRequest) Size() (n int) { if m == nil { return 0 @@ -2906,6 +3161,241 @@ func (m *DataplaneStatus) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AgentActivityStatus", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AgentActivityStatus == nil { + m.AgentActivityStatus = &AgentActivityStatus{} + } + if err := m.AgentActivityStatus.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCommand(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCommand + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: AgentActivityStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AgentActivityStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CorrelationID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Module", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Module = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Type = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Category", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCommand + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCommand + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Category = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigAction", wireType) + } + var v NginxConfigAction + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= NginxConfigAction(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Status = &AgentActivityStatus_NginxConfigAction{v} default: iNdEx = preIndex skippy, err := skipCommand(dAtA[iNdEx:]) diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index f93e7a004..1675c748e 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -86,6 +86,17 @@ message DataplaneStatus { HostInfo host = 3 [(gogoproto.jsontag) = "host" ]; repeated NginxHealth healths = 5 [(gogoproto.jsontag) = "healths" ]; repeated DataplaneSoftwareDetails dataplane_software_details = 6 [(gogoproto.jsontag) = "dataplane_software_details"]; + AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; +} + +message AgentActivityStatus { + string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + string Module = 2 [(gogoproto.jsontag) = "module" ]; + string Type = 3 [(gogoproto.jsontag) = "type" ]; + string Category = 4 [(gogoproto.jsontag) = "category" ]; + oneof Status { + NginxConfigAction nginx_config_action = 5 [(gogoproto.jsontag) = "nginx_config_action" ]; + } } message DownloadRequest { diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go b/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go index 6621de95d..39b2e1760 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/events/event.pb.go @@ -123,7 +123,6 @@ func (m *Metadata) GetCategory() string { type Event struct { Metadata *Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3" json:"metadata"` // Types that are valid to be assigned to Data: - // // *Event_ActivityEvent Data isEvent_Data `protobuf_oneof:"data"` XXX_NoUnkeyedLiteral struct{} `json:"-"` diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go index 9a79eb930..b33bd6e39 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go @@ -31,6 +31,7 @@ const ( NginxConfigAction_TEST NginxConfigAction = 2 NginxConfigAction_ROLLBACK NginxConfigAction = 3 NginxConfigAction_RETURN NginxConfigAction = 4 + NginxConfigAction_PENDING NginxConfigAction = 5 ) var NginxConfigAction_name = map[int32]string{ @@ -39,6 +40,7 @@ var NginxConfigAction_name = map[int32]string{ 2: "TEST", 3: "ROLLBACK", 4: "RETURN", + 5: "PENDING", } var NginxConfigAction_value = map[string]int32{ @@ -47,6 +49,7 @@ var NginxConfigAction_value = map[string]int32{ "TEST": 2, "ROLLBACK": 3, "RETURN": 4, + "PENDING": 5, } func (x NginxConfigAction) String() string { @@ -952,85 +955,85 @@ func init() { func init() { proto.RegisterFile("nginx.proto", fileDescriptor_917f1a70b1fd7255) } var fileDescriptor_917f1a70b1fd7255 = []byte{ - // 1233 bytes of a gzipped FileDescriptorProto + // 1245 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0xc6, - 0x13, 0x0f, 0x2d, 0xd9, 0x22, 0x47, 0xb2, 0xad, 0xec, 0xff, 0x5f, 0x40, 0x09, 0x52, 0xd3, 0x60, - 0x1b, 0xd4, 0x4d, 0x51, 0x1b, 0x71, 0x5a, 0x14, 0x45, 0x83, 0x06, 0x92, 0xa5, 0x34, 0x46, 0x14, - 0xc7, 0x58, 0xcb, 0x69, 0xea, 0x8b, 0xba, 0x16, 0xd7, 0x32, 0x11, 0x8a, 0x14, 0x76, 0xc9, 0x20, - 0xc9, 0x33, 0xf4, 0x49, 0x7a, 0xeb, 0xb1, 0x6f, 0xd0, 0x5b, 0xfb, 0x04, 0x44, 0x91, 0x23, 0x2f, - 0x7d, 0x85, 0x62, 0x67, 0x97, 0x94, 0xfc, 0xd5, 0xe4, 0xd0, 0x5e, 0x96, 0x3b, 0xbf, 0x9d, 0xf9, - 0x71, 0xe7, 0x93, 0x84, 0x7a, 0x34, 0x0e, 0xa2, 0x57, 0x9b, 0x53, 0x11, 0x27, 0x31, 0x21, 0x27, - 0x5f, 0x6e, 0x6a, 0x99, 0x8d, 0x79, 0x94, 0x6c, 0x4a, 0xff, 0xc5, 0x4d, 0x18, 0xc7, 0xe3, 0x58, - 0x9f, 0xdf, 0x6c, 0x8c, 0xe2, 0xe8, 0x24, 0x18, 0xcf, 0xa4, 0xc9, 0x24, 0x8e, 0xb4, 0xe4, 0x3d, - 0x07, 0x7b, 0x3f, 0x4c, 0xe5, 0x6e, 0x74, 0x12, 0x93, 0xdb, 0x50, 0xe3, 0x11, 0x3b, 0x0e, 0xb9, - 0xdf, 0xb2, 0xd6, 0xad, 0x0d, 0xbb, 0x53, 0xcf, 0x33, 0xb7, 0x80, 0x68, 0xb1, 0x51, 0x6a, 0x82, - 0x87, 0x9c, 0x49, 0xde, 0x5a, 0x58, 0xb7, 0x36, 0x1c, 0xad, 0x66, 0x20, 0x5a, 0x6c, 0xbc, 0x1e, - 0xd4, 0x0e, 0x0e, 0xfa, 0x48, 0xec, 0xc2, 0xe2, 0x71, 0x1a, 0x84, 0x49, 0xcb, 0x5a, 0xaf, 0x6c, - 0x38, 0x1d, 0x27, 0xcf, 0x5c, 0x0d, 0x50, 0xfd, 0x20, 0x37, 0xa0, 0x22, 0xd2, 0xa8, 0xb5, 0x80, - 0xc7, 0xb5, 0x3c, 0x73, 0x95, 0x48, 0xd5, 0xe2, 0xed, 0x80, 0xbd, 0xcf, 0x92, 0x53, 0xe4, 0xb9, - 0x01, 0x95, 0xe3, 0x20, 0xc2, 0xcb, 0x19, 0xb5, 0xe3, 0x20, 0xa2, 0x6a, 0x21, 0xb7, 0xa0, 0xaa, - 0xbc, 0x34, 0x37, 0xb2, 0xf3, 0xcc, 0x45, 0x99, 0xe2, 0xea, 0xfd, 0xbe, 0x08, 0x8d, 0x3d, 0x15, - 0xa1, 0x2e, 0x4f, 0x58, 0x10, 0x4a, 0xf2, 0x09, 0xd8, 0x18, 0xb1, 0x61, 0xe0, 0x1b, 0xba, 0x46, - 0x9e, 0xb9, 0x25, 0x46, 0x6b, 0xb8, 0xdb, 0x45, 0x67, 0x5f, 0x72, 0x21, 0x83, 0x38, 0x9a, 0x77, - 0xd6, 0x40, 0xb4, 0xd8, 0x90, 0x3b, 0xe0, 0xa8, 0x17, 0x0d, 0xa7, 0x2c, 0x39, 0x6d, 0x55, 0x50, - 0x71, 0x39, 0xcf, 0xdc, 0x19, 0x48, 0x6d, 0xb5, 0x55, 0x9e, 0x90, 0xcf, 0x01, 0xa6, 0x22, 0x1e, - 0x71, 0x29, 0xd5, 0xdb, 0xab, 0xa8, 0xbc, 0x92, 0x67, 0xee, 0x1c, 0x4a, 0x1d, 0xb3, 0xdf, 0xf5, - 0xc9, 0x3d, 0x68, 0x14, 0x07, 0xc8, 0xbe, 0x88, 0x06, 0xcd, 0x3c, 0x73, 0xcf, 0xe0, 0xb4, 0x6e, - 0xa4, 0xe2, 0x1d, 0x32, 0x61, 0x22, 0x19, 0x26, 0xc1, 0x84, 0xb7, 0x96, 0xd6, 0xad, 0x8d, 0x8a, - 0x7e, 0xc7, 0x0c, 0xa5, 0x0e, 0xee, 0x07, 0xc1, 0x84, 0x93, 0x36, 0x5c, 0xc7, 0x44, 0x0c, 0x4f, - 0x44, 0x3c, 0x19, 0xca, 0x38, 0x15, 0x23, 0xde, 0xaa, 0x61, 0x0d, 0x7c, 0x90, 0x67, 0xee, 0xc5, - 0x43, 0xba, 0x8a, 0xd0, 0x43, 0x11, 0x4f, 0x0e, 0x10, 0x20, 0x0f, 0xa0, 0x19, 0xc6, 0xcc, 0x57, - 0x25, 0x32, 0x9c, 0xc4, 0x7e, 0x1a, 0x72, 0xd9, 0xb2, 0x31, 0x9f, 0xff, 0xcf, 0x33, 0xf7, 0xc2, - 0x19, 0x5d, 0x2d, 0x90, 0x27, 0x1a, 0x20, 0xf7, 0x61, 0x55, 0xa4, 0x91, 0xba, 0x59, 0x69, 0xef, - 0xa0, 0xfd, 0xff, 0xf2, 0xcc, 0x3d, 0x7f, 0x44, 0x57, 0x0c, 0x50, 0x58, 0xef, 0x40, 0x75, 0x1a, - 0xa6, 0xb2, 0x05, 0xeb, 0xd6, 0x46, 0x7d, 0xfb, 0xf6, 0xe6, 0xc5, 0x96, 0xd8, 0xc4, 0x02, 0x50, - 0xc5, 0xfe, 0x84, 0x27, 0xac, 0xcb, 0x12, 0xa6, 0xcb, 0x44, 0x99, 0x51, 0x5c, 0xc9, 0x03, 0xa8, - 0x48, 0x19, 0xb6, 0xea, 0xc8, 0xf1, 0xf1, 0x95, 0x1c, 0x07, 0x32, 0x2c, 0x29, 0xb0, 0x0a, 0xa5, - 0x0c, 0xa9, 0x5a, 0x4c, 0xd8, 0x93, 0x54, 0x0e, 0x53, 0x11, 0xb6, 0x1a, 0xb3, 0xd4, 0xce, 0x50, - 0x0c, 0x7b, 0x92, 0xca, 0x43, 0x11, 0x92, 0xaf, 0x61, 0x45, 0xb7, 0x66, 0x2a, 0xf8, 0x90, 0x89, - 0xb1, 0x6c, 0x2d, 0xa3, 0xc7, 0x24, 0xcf, 0xdc, 0x73, 0x27, 0x74, 0xb9, 0x94, 0xdb, 0x62, 0x2c, - 0x3d, 0x06, 0xd7, 0x2f, 0xf8, 0xf3, 0x2f, 0x37, 0xf0, 0xaf, 0x16, 0x34, 0xcf, 0xfb, 0x4b, 0x8e, - 0xc0, 0x96, 0x32, 0x1c, 0x26, 0xaf, 0xa7, 0x1c, 0xdf, 0xb1, 0xb2, 0x7d, 0xf7, 0x7d, 0xe2, 0x54, - 0x02, 0x83, 0xd7, 0x53, 0xae, 0x7b, 0xad, 0xa0, 0xa1, 0x35, 0xa9, 0x61, 0x75, 0x2f, 0x5f, 0xf7, - 0xa7, 0x99, 0x04, 0x78, 0x2f, 0x03, 0xd1, 0x62, 0xe3, 0x79, 0xa6, 0x97, 0x0d, 0x1b, 0x71, 0x60, - 0xb1, 0x73, 0xb8, 0xdb, 0x1f, 0x34, 0xaf, 0x91, 0x1a, 0x54, 0xe8, 0xe1, 0x5e, 0xd3, 0xf2, 0x7e, - 0x5a, 0x80, 0x3a, 0x2a, 0x3d, 0xe2, 0x2c, 0x4c, 0x4e, 0xdf, 0xbf, 0xdf, 0x7f, 0x84, 0x86, 0x06, - 0x75, 0x96, 0x30, 0x40, 0x2b, 0xdb, 0x9f, 0x5d, 0xe9, 0xa3, 0xe6, 0x37, 0xee, 0xa1, 0x89, 0x6e, - 0xcd, 0x79, 0x12, 0xaa, 0xa7, 0xb5, 0x3e, 0x56, 0x75, 0xee, 0xf3, 0xb1, 0x60, 0x3e, 0xf7, 0x87, - 0x82, 0x33, 0x19, 0x47, 0x66, 0x60, 0x60, 0x9d, 0x9f, 0x3b, 0xa2, 0x2b, 0x05, 0x40, 0x51, 0xf6, - 0xbe, 0x30, 0x7e, 0x19, 0xb2, 0x3a, 0xd4, 0x0e, 0xf7, 0x1e, 0xef, 0x3d, 0xfd, 0x7e, 0xaf, 0x79, - 0x8d, 0x00, 0x2c, 0xb5, 0x77, 0x06, 0xbb, 0xcf, 0x7a, 0x4d, 0x8b, 0x34, 0xc0, 0xee, 0xf6, 0xbe, - 0xa3, 0xed, 0x6e, 0xaf, 0xdb, 0x5c, 0xf0, 0xfe, 0xaa, 0x1a, 0xb3, 0x1d, 0x2c, 0x22, 0xb2, 0x0b, - 0x4b, 0x6c, 0x94, 0xa8, 0xa1, 0xa6, 0x73, 0x78, 0x75, 0xbf, 0x68, 0x83, 0x36, 0x2a, 0x77, 0x20, - 0xcf, 0x5c, 0x63, 0x48, 0xcd, 0x93, 0x3c, 0x83, 0xba, 0xae, 0xcc, 0xa1, 0xcf, 0x12, 0x86, 0xf1, - 0xba, 0xa2, 0x77, 0x34, 0x55, 0x97, 0xcb, 0x91, 0x08, 0xa6, 0x49, 0x2c, 0x3a, 0xab, 0x79, 0xe6, - 0xce, 0x1b, 0x53, 0xd0, 0x02, 0x16, 0x5a, 0x0f, 0x6a, 0x6f, 0xb4, 0x88, 0xe1, 0xa9, 0x6f, 0xaf, - 0x5d, 0xc6, 0x79, 0x14, 0x4c, 0xa7, 0xdc, 0x7f, 0x18, 0x84, 0x5c, 0x17, 0x8b, 0x31, 0xa1, 0xc5, - 0x86, 0xdc, 0x87, 0xea, 0x1b, 0x96, 0xbe, 0xc2, 0x31, 0xfb, 0x6e, 0x0e, 0x1c, 0x08, 0x4a, 0x9f, - 0xe2, 0x4a, 0xf6, 0xa1, 0xce, 0x46, 0x38, 0x62, 0xc3, 0x78, 0x2c, 0x71, 0xf4, 0x5e, 0x41, 0xd2, - 0x46, 0xb5, 0x7e, 0x3c, 0x96, 0xda, 0xad, 0x39, 0x33, 0x0a, 0xac, 0x3c, 0x24, 0x7d, 0x00, 0x2e, - 0x44, 0x2c, 0x34, 0xe1, 0x12, 0x12, 0x7e, 0x78, 0x19, 0x61, 0x4f, 0x69, 0x21, 0x1f, 0x0e, 0x90, - 0x99, 0x11, 0x75, 0x78, 0x71, 0x44, 0xbe, 0xd5, 0x03, 0xab, 0x86, 0x34, 0x1f, 0x5d, 0x46, 0x73, - 0x20, 0xc3, 0x1d, 0x2e, 0x92, 0xe0, 0x24, 0x18, 0xb1, 0x84, 0xcb, 0x73, 0xf3, 0xea, 0x39, 0x2c, - 0xfb, 0x81, 0xe0, 0xa3, 0x24, 0x16, 0xaf, 0x87, 0x13, 0x36, 0x6d, 0xd9, 0xc8, 0xb4, 0x7e, 0x19, - 0x53, 0xb7, 0x50, 0x7c, 0xc2, 0xa6, 0x9d, 0xeb, 0x79, 0xe6, 0x9e, 0x35, 0xa5, 0x0d, 0x7f, 0x4e, - 0xc1, 0x3b, 0x02, 0x68, 0x9f, 0xf1, 0x7a, 0x16, 0x10, 0xfc, 0x0b, 0xb8, 0xc2, 0xeb, 0xd2, 0x46, - 0x7b, 0x3d, 0x33, 0xa2, 0x4e, 0x19, 0x44, 0xef, 0x67, 0x0b, 0x9c, 0x52, 0x51, 0x7d, 0xf9, 0x23, - 0x36, 0xe1, 0xa6, 0xad, 0x31, 0x83, 0x4a, 0xa6, 0xb8, 0x12, 0x0f, 0x96, 0x4e, 0x62, 0x31, 0x61, - 0x89, 0x19, 0x75, 0x58, 0xc2, 0x1a, 0xa1, 0xe6, 0x49, 0xee, 0x42, 0x7d, 0xca, 0xc5, 0x24, 0x90, - 0xea, 0x53, 0x2e, 0x4d, 0x37, 0x62, 0x16, 0xe7, 0x60, 0x3a, 0x2f, 0x90, 0x0d, 0xb0, 0x05, 0xd7, - 0xdf, 0x2f, 0x2c, 0x2d, 0x5b, 0xcf, 0x93, 0x02, 0xa3, 0xe5, 0xce, 0x3b, 0x04, 0xa7, 0x4c, 0x25, - 0x79, 0x04, 0x4e, 0x99, 0x48, 0x13, 0x86, 0x5b, 0xff, 0x94, 0x7c, 0xfd, 0x13, 0x51, 0x9a, 0x50, - 0xbb, 0x48, 0xbd, 0xf7, 0x8b, 0x05, 0x76, 0xa1, 0xf5, 0x8e, 0x10, 0xdc, 0x01, 0x27, 0x8c, 0xc7, - 0xc3, 0x90, 0xbf, 0xe4, 0xa1, 0x89, 0x02, 0xd2, 0x96, 0x20, 0xb5, 0xc3, 0x78, 0xdc, 0x57, 0xbb, - 0xff, 0x34, 0x14, 0x77, 0x9e, 0x9a, 0x6f, 0xd6, 0xfc, 0x4c, 0x39, 0x3b, 0xc1, 0x1c, 0x58, 0x6c, - 0xef, 0xef, 0xf7, 0x7f, 0x68, 0x5a, 0xc4, 0x86, 0xea, 0xa0, 0x77, 0x30, 0x68, 0x2e, 0xa8, 0x51, - 0x46, 0x9f, 0xf6, 0xfb, 0x9d, 0xf6, 0xce, 0xe3, 0x66, 0x45, 0x0d, 0x39, 0xda, 0x1b, 0x1c, 0xd2, - 0xbd, 0x66, 0xb5, 0xf3, 0xd5, 0x6f, 0x6f, 0xd7, 0xac, 0x3f, 0xde, 0xae, 0x59, 0x7f, 0xbe, 0x5d, - 0xb3, 0x8e, 0x3e, 0x1d, 0x07, 0xc9, 0x69, 0x7a, 0xbc, 0x39, 0x8a, 0x27, 0x5b, 0x18, 0xd0, 0x2d, - 0x0c, 0xe8, 0x96, 0xf4, 0x5f, 0x6c, 0xbd, 0xdc, 0xde, 0xc2, 0xff, 0xdd, 0x6f, 0x70, 0x3d, 0x5e, - 0xc2, 0xc7, 0xbd, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x56, 0xdc, 0xdc, 0x47, 0x0b, 0x00, - 0x00, + 0x16, 0x0e, 0x2d, 0xd9, 0x22, 0x8f, 0x64, 0x5b, 0x99, 0x7b, 0x2f, 0xa0, 0x04, 0xb9, 0xa6, 0xc1, + 0x7b, 0x83, 0xba, 0x29, 0x6a, 0x23, 0x4e, 0x8b, 0xa2, 0x68, 0xd0, 0x40, 0xb2, 0x94, 0x44, 0x88, + 0xa2, 0x18, 0x63, 0x39, 0x4d, 0x8d, 0x02, 0xea, 0x58, 0x1c, 0xcb, 0x44, 0x28, 0x52, 0x98, 0xa1, + 0x82, 0x24, 0xcf, 0xd0, 0x27, 0xe9, 0xae, 0xcb, 0xbe, 0x41, 0x77, 0xed, 0x13, 0x10, 0x45, 0x96, + 0xdc, 0xf4, 0x15, 0x8a, 0x39, 0x33, 0xa4, 0xe4, 0xbf, 0x26, 0x8b, 0x76, 0x33, 0x9c, 0xf3, 0xcd, + 0x39, 0x1f, 0xe7, 0xfc, 0x92, 0x50, 0x8d, 0xc6, 0x41, 0xf4, 0x7a, 0x7b, 0x2a, 0xe2, 0x24, 0x26, + 0xe4, 0xe4, 0xf3, 0x6d, 0x2d, 0xb3, 0x31, 0x8f, 0x92, 0x6d, 0xe9, 0xbf, 0xbc, 0x09, 0xe3, 0x78, + 0x1c, 0xeb, 0xf3, 0x9b, 0xb5, 0x51, 0x1c, 0x9d, 0x04, 0xe3, 0xb9, 0x34, 0x99, 0xc4, 0x91, 0x96, + 0xbc, 0x17, 0x60, 0xef, 0x87, 0x33, 0xd9, 0x8d, 0x4e, 0x62, 0x72, 0x1b, 0x2a, 0x3c, 0x62, 0xc7, + 0x21, 0xf7, 0x1b, 0xd6, 0xa6, 0xb5, 0x65, 0xb7, 0xaa, 0x59, 0xea, 0xe6, 0x10, 0xcd, 0x37, 0x4a, + 0x4d, 0xf0, 0x90, 0x33, 0xc9, 0x1b, 0x4b, 0x9b, 0xd6, 0x96, 0xa3, 0xd5, 0x0c, 0x44, 0xf3, 0x8d, + 0xd7, 0x81, 0xca, 0xc1, 0x41, 0x0f, 0x89, 0x5d, 0x58, 0x3e, 0x9e, 0x05, 0x61, 0xd2, 0xb0, 0x36, + 0x4b, 0x5b, 0x4e, 0xcb, 0xc9, 0x52, 0x57, 0x03, 0x54, 0x3f, 0xc8, 0x0d, 0x28, 0x89, 0x59, 0xd4, + 0x58, 0xc2, 0xe3, 0x4a, 0x96, 0xba, 0x4a, 0xa4, 0x6a, 0xf1, 0xf6, 0xc0, 0xde, 0x67, 0xc9, 0x29, + 0xf2, 0xdc, 0x80, 0xd2, 0x71, 0x10, 0xe1, 0xe5, 0x8c, 0xda, 0x71, 0x10, 0x51, 0xb5, 0x90, 0x5b, + 0x50, 0x56, 0x5e, 0x9a, 0x1b, 0xd9, 0x59, 0xea, 0xa2, 0x4c, 0x71, 0xf5, 0x7e, 0x5d, 0x86, 0x5a, + 0x5f, 0x45, 0xa8, 0xcd, 0x13, 0x16, 0x84, 0x92, 0x7c, 0x04, 0x36, 0x46, 0x6c, 0x18, 0xf8, 0x86, + 0xae, 0x96, 0xa5, 0x6e, 0x81, 0xd1, 0x0a, 0xee, 0xba, 0xe8, 0xec, 0x2b, 0x2e, 0x64, 0x10, 0x47, + 0x8b, 0xce, 0x1a, 0x88, 0xe6, 0x1b, 0x72, 0x07, 0x1c, 0xf5, 0xa2, 0xe1, 0x94, 0x25, 0xa7, 0x8d, + 0x12, 0x2a, 0xae, 0x66, 0xa9, 0x3b, 0x07, 0xa9, 0xad, 0xb6, 0xca, 0x13, 0xf2, 0x29, 0xc0, 0x54, + 0xc4, 0x23, 0x2e, 0xa5, 0x7a, 0x7b, 0x19, 0x95, 0xd7, 0xb2, 0xd4, 0x5d, 0x40, 0xa9, 0x63, 0xf6, + 0x5d, 0x9f, 0xdc, 0x83, 0x5a, 0x7e, 0x80, 0xec, 0xcb, 0x68, 0x50, 0xcf, 0x52, 0xf7, 0x0c, 0x4e, + 0xab, 0x46, 0xca, 0xdf, 0x21, 0x13, 0x26, 0x92, 0x61, 0x12, 0x4c, 0x78, 0x63, 0x65, 0xd3, 0xda, + 0x2a, 0xe9, 0x77, 0xcc, 0x51, 0xea, 0xe0, 0x7e, 0x10, 0x4c, 0x38, 0x69, 0xc2, 0x75, 0x4c, 0xc4, + 0xf0, 0x44, 0xc4, 0x93, 0xa1, 0x8c, 0x67, 0x62, 0xc4, 0x1b, 0x15, 0xac, 0x81, 0xff, 0x64, 0xa9, + 0x7b, 0xf1, 0x90, 0xae, 0x23, 0xf4, 0x50, 0xc4, 0x93, 0x03, 0x04, 0xc8, 0x03, 0xa8, 0x87, 0x31, + 0xf3, 0x55, 0x89, 0x0c, 0x27, 0xb1, 0x3f, 0x0b, 0xb9, 0x6c, 0xd8, 0x98, 0xcf, 0x7f, 0x67, 0xa9, + 0x7b, 0xe1, 0x8c, 0xae, 0xe7, 0xc8, 0x53, 0x0d, 0x90, 0xfb, 0xb0, 0x2e, 0x66, 0x91, 0xba, 0x59, + 0x61, 0xef, 0xa0, 0xfd, 0xbf, 0xb2, 0xd4, 0x3d, 0x7f, 0x44, 0xd7, 0x0c, 0x90, 0x5b, 0xef, 0x41, + 0x79, 0x1a, 0xce, 0x64, 0x03, 0x36, 0xad, 0xad, 0xea, 0xee, 0xed, 0xed, 0x8b, 0x2d, 0xb1, 0x8d, + 0x05, 0xa0, 0x8a, 0xfd, 0x29, 0x4f, 0x58, 0x9b, 0x25, 0x4c, 0x97, 0x89, 0x32, 0xa3, 0xb8, 0x92, + 0x07, 0x50, 0x92, 0x32, 0x6c, 0x54, 0x91, 0xe3, 0xff, 0x57, 0x72, 0x1c, 0xc8, 0xb0, 0xa0, 0xc0, + 0x2a, 0x94, 0x32, 0xa4, 0x6a, 0x31, 0x61, 0x4f, 0x66, 0x72, 0x38, 0x13, 0x61, 0xa3, 0x36, 0x4f, + 0xed, 0x1c, 0xc5, 0xb0, 0x27, 0x33, 0x79, 0x28, 0x42, 0xf2, 0x25, 0xac, 0xe9, 0xd6, 0x9c, 0x09, + 0x3e, 0x64, 0x62, 0x2c, 0x1b, 0xab, 0xe8, 0x31, 0xc9, 0x52, 0xf7, 0xdc, 0x09, 0x5d, 0x2d, 0xe4, + 0xa6, 0x18, 0x4b, 0x8f, 0xc1, 0xf5, 0x0b, 0xfe, 0xfc, 0xcd, 0x0d, 0xfc, 0xb3, 0x05, 0xf5, 0xf3, + 0xfe, 0x92, 0x23, 0xb0, 0xa5, 0x0c, 0x87, 0xc9, 0x9b, 0x29, 0xc7, 0x77, 0xac, 0xed, 0xde, 0xfd, + 0x90, 0x38, 0x15, 0xc0, 0xe0, 0xcd, 0x94, 0xeb, 0x5e, 0xcb, 0x69, 0x68, 0x45, 0x6a, 0x58, 0xdd, + 0xcb, 0xd7, 0xfd, 0x69, 0x26, 0x01, 0xde, 0xcb, 0x40, 0x34, 0xdf, 0x78, 0x9e, 0xe9, 0x65, 0xc3, + 0x46, 0x1c, 0x58, 0x6e, 0x1d, 0x76, 0x7b, 0x83, 0xfa, 0x35, 0x52, 0x81, 0x12, 0x3d, 0xec, 0xd7, + 0x2d, 0xef, 0x87, 0x25, 0xa8, 0xa2, 0xd2, 0x63, 0xce, 0xc2, 0xe4, 0xf4, 0xc3, 0xfb, 0xfd, 0x7b, + 0xa8, 0x69, 0x50, 0x67, 0x09, 0x03, 0xb4, 0xb6, 0xfb, 0xc9, 0x95, 0x3e, 0x6a, 0x7e, 0xe3, 0x1e, + 0x9a, 0xe8, 0xd6, 0x5c, 0x24, 0xa1, 0x7a, 0x5a, 0xeb, 0x63, 0x55, 0xe7, 0x3e, 0x1f, 0x0b, 0xe6, + 0x73, 0x7f, 0x28, 0x38, 0x93, 0x71, 0x64, 0x06, 0x06, 0xd6, 0xf9, 0xb9, 0x23, 0xba, 0x96, 0x03, + 0x14, 0x65, 0xef, 0x33, 0xe3, 0x97, 0x21, 0xab, 0x42, 0xe5, 0xb0, 0xff, 0xa4, 0xff, 0xec, 0x9b, + 0x7e, 0xfd, 0x1a, 0x01, 0x58, 0x69, 0xee, 0x0d, 0xba, 0xcf, 0x3b, 0x75, 0x8b, 0xd4, 0xc0, 0x6e, + 0x77, 0x1e, 0xd1, 0x66, 0xbb, 0xd3, 0xae, 0x2f, 0x79, 0x7f, 0x94, 0x8d, 0xd9, 0x1e, 0x16, 0x11, + 0xe9, 0xc2, 0x0a, 0x1b, 0x25, 0x6a, 0xa8, 0xe9, 0x1c, 0x5e, 0xdd, 0x2f, 0xda, 0xa0, 0x89, 0xca, + 0x2d, 0xc8, 0x52, 0xd7, 0x18, 0x52, 0xf3, 0x24, 0xcf, 0xa1, 0xaa, 0x2b, 0x73, 0xe8, 0xb3, 0x84, + 0x61, 0xbc, 0xae, 0xe8, 0x1d, 0x4d, 0xd5, 0xe6, 0x72, 0x24, 0x82, 0x69, 0x12, 0x8b, 0xd6, 0x7a, + 0x96, 0xba, 0x8b, 0xc6, 0x14, 0xb4, 0x80, 0x85, 0xd6, 0x81, 0xca, 0x5b, 0x2d, 0x62, 0x78, 0xaa, + 0xbb, 0x1b, 0x97, 0x71, 0x1e, 0x05, 0xd3, 0x29, 0xf7, 0x1f, 0x06, 0x21, 0xd7, 0xc5, 0x62, 0x4c, + 0x68, 0xbe, 0x21, 0xf7, 0xa1, 0xfc, 0x96, 0xcd, 0x5e, 0xe3, 0x98, 0x7d, 0x3f, 0x07, 0x0e, 0x04, + 0xa5, 0x4f, 0x71, 0x25, 0xfb, 0x50, 0x65, 0x23, 0x1c, 0xb1, 0x61, 0x3c, 0x96, 0x38, 0x7a, 0xaf, + 0x20, 0x69, 0xa2, 0x5a, 0x2f, 0x1e, 0x4b, 0xed, 0xd6, 0x82, 0x19, 0x05, 0x56, 0x1c, 0x92, 0x1e, + 0x00, 0x17, 0x22, 0x16, 0x9a, 0x70, 0x05, 0x09, 0xff, 0x7b, 0x19, 0x61, 0x47, 0x69, 0x21, 0x1f, + 0x0e, 0x90, 0xb9, 0x11, 0x75, 0x78, 0x7e, 0x44, 0xbe, 0xd6, 0x03, 0xab, 0x82, 0x34, 0xff, 0xbb, + 0x8c, 0xe6, 0x40, 0x86, 0x7b, 0x5c, 0x24, 0xc1, 0x49, 0x30, 0x62, 0x09, 0x97, 0xe7, 0xe6, 0xd5, + 0x0b, 0x58, 0xf5, 0x03, 0xc1, 0x47, 0x49, 0x2c, 0xde, 0x0c, 0x27, 0x6c, 0xda, 0xb0, 0x91, 0x69, + 0xf3, 0x32, 0xa6, 0x76, 0xae, 0xf8, 0x94, 0x4d, 0x5b, 0xd7, 0xb3, 0xd4, 0x3d, 0x6b, 0x4a, 0x6b, + 0xfe, 0x82, 0x82, 0x77, 0x04, 0xd0, 0x3c, 0xe3, 0xf5, 0x3c, 0x20, 0xf8, 0x17, 0x70, 0x85, 0xd7, + 0x85, 0x8d, 0xf6, 0x7a, 0x6e, 0x44, 0x9d, 0x22, 0x88, 0xde, 0x8f, 0x16, 0x38, 0x85, 0xa2, 0xfa, + 0xf2, 0x47, 0x6c, 0xc2, 0x4d, 0x5b, 0x63, 0x06, 0x95, 0x4c, 0x71, 0x25, 0x1e, 0xac, 0x9c, 0xc4, + 0x62, 0xc2, 0x12, 0x33, 0xea, 0xb0, 0x84, 0x35, 0x42, 0xcd, 0x93, 0xdc, 0x85, 0xea, 0x94, 0x8b, + 0x49, 0x20, 0xd5, 0xa7, 0x5c, 0x9a, 0x6e, 0xc4, 0x2c, 0x2e, 0xc0, 0x74, 0x51, 0x20, 0x5b, 0x60, + 0x0b, 0xae, 0xbf, 0x5f, 0x58, 0x5a, 0xb6, 0x9e, 0x27, 0x39, 0x46, 0x8b, 0x9d, 0x77, 0x08, 0x4e, + 0x91, 0x4a, 0xf2, 0x18, 0x9c, 0x22, 0x91, 0x26, 0x0c, 0xb7, 0xfe, 0x2a, 0xf9, 0xfa, 0x27, 0xa2, + 0x30, 0xa1, 0x76, 0x9e, 0x7a, 0xef, 0x27, 0x0b, 0xec, 0x5c, 0xeb, 0x3d, 0x21, 0xb8, 0x03, 0x4e, + 0x18, 0x8f, 0x87, 0x21, 0x7f, 0xc5, 0x43, 0x13, 0x05, 0xa4, 0x2d, 0x40, 0x6a, 0x87, 0xf1, 0xb8, + 0xa7, 0x76, 0xff, 0x68, 0x28, 0xee, 0x7c, 0x67, 0xbe, 0x59, 0x8b, 0x33, 0xe5, 0xec, 0x04, 0x73, + 0x60, 0xb9, 0xb9, 0xbf, 0xdf, 0xfb, 0xb6, 0x6e, 0x11, 0x1b, 0xca, 0x83, 0xce, 0xc1, 0xa0, 0xbe, + 0xa4, 0x46, 0x19, 0x7d, 0xd6, 0xeb, 0xb5, 0x9a, 0x7b, 0x4f, 0xea, 0x25, 0x35, 0xe4, 0x68, 0x67, + 0x70, 0x48, 0xfb, 0xf5, 0xb2, 0xb2, 0xdd, 0xef, 0xf4, 0xdb, 0xdd, 0xfe, 0xa3, 0xfa, 0x72, 0xeb, + 0x8b, 0x5f, 0xde, 0x6d, 0x58, 0xbf, 0xbd, 0xdb, 0xb0, 0x7e, 0x7f, 0xb7, 0x61, 0x1d, 0x7d, 0x3c, + 0x0e, 0x92, 0xd3, 0xd9, 0xf1, 0xf6, 0x28, 0x9e, 0xec, 0x60, 0x74, 0x77, 0x30, 0xba, 0x3b, 0xd2, + 0x7f, 0xb9, 0xf3, 0x6a, 0x77, 0x07, 0x7f, 0x7e, 0xbf, 0xc2, 0xf5, 0x78, 0x05, 0x1f, 0xf7, 0xfe, + 0x0c, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xe0, 0x9f, 0x5c, 0x54, 0x0b, 0x00, 0x00, } func (m *PlusInfo) Marshal() (dAtA []byte, err error) { diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto index 4bf9d33ba..dcb1386f9 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto @@ -69,6 +69,7 @@ enum NginxConfigAction { TEST = 2; ROLLBACK = 3; RETURN = 4; + PENDING = 5; } message NginxConfig { @@ -102,4 +103,4 @@ message ErrorLog { string log_level = 2 [(gogoproto.jsontag) = "log_level" ]; string permissions = 3 [(gogoproto.jsontag) = "permissions" ]; bool readable = 4 [(gogoproto.jsontag) = "readable" ]; -} \ No newline at end of file +} From 19df232fffc19e51659603814b70f0184cf6868b Mon Sep 17 00:00:00 2001 From: dhurley Date: Mon, 26 Sep 2022 17:18:28 +0100 Subject: [PATCH 2/4] Added new NginxConfigStatus message --- sdk/proto/command.pb.go | 595 +++++++++++------- sdk/proto/command.proto | 20 +- sdk/proto/nginx.pb.go | 159 +++-- sdk/proto/nginx.proto | 1 - .../nginx/agent/sdk/v2/proto/command.pb.go | 595 +++++++++++------- .../nginx/agent/sdk/v2/proto/command.proto | 20 +- .../nginx/agent/sdk/v2/proto/nginx.pb.go | 159 +++-- .../nginx/agent/sdk/v2/proto/nginx.proto | 1 - .../nginx/agent/sdk/v2/proto/command.pb.go | 595 +++++++++++------- .../nginx/agent/sdk/v2/proto/command.proto | 20 +- .../nginx/agent/sdk/v2/proto/nginx.pb.go | 159 +++-- .../nginx/agent/sdk/v2/proto/nginx.proto | 1 - 12 files changed, 1350 insertions(+), 975 deletions(-) diff --git a/sdk/proto/command.pb.go b/sdk/proto/command.pb.go index d0de717b6..dfadb9bb5 100644 --- a/sdk/proto/command.pb.go +++ b/sdk/proto/command.pb.go @@ -24,6 +24,34 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +type Status int32 + +const ( + Status_PENDING Status = 0 + Status_OK Status = 1 + Status_ERROR Status = 2 +) + +var Status_name = map[int32]string{ + 0: "PENDING", + 1: "OK", + 2: "ERROR", +} + +var Status_value = map[string]int32{ + "PENDING": 0, + "OK": 1, + "ERROR": 2, +} + +func (x Status) String() string { + return proto.EnumName(Status_name, int32(x)) +} + +func (Status) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{0} +} + type Command_CommandType int32 const ( @@ -130,7 +158,7 @@ func (x UploadStatus_TransferStatus) String() string { } func (UploadStatus_TransferStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6, 0} + return fileDescriptor_213c0bb044472049, []int{7, 0} } // Command is the envelope sent between the management plane and the data plane, requesting some action or reporting a response @@ -422,7 +450,7 @@ type DataplaneStatus struct { Host *HostInfo `protobuf:"bytes,3,opt,name=host,proto3" json:"host"` Healths []*NginxHealth `protobuf:"bytes,5,rep,name=healths,proto3" json:"healths"` DataplaneSoftwareDetails []*DataplaneSoftwareDetails `protobuf:"bytes,6,rep,name=dataplane_software_details,json=dataplaneSoftwareDetails,proto3" json:"dataplane_software_details"` - AgentActivityStatus *AgentActivityStatus `protobuf:"bytes,7,opt,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` + AgentActivityStatus []*AgentActivityStatus `protobuf:"bytes,7,rep,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -496,7 +524,7 @@ func (m *DataplaneStatus) GetDataplaneSoftwareDetails() []*DataplaneSoftwareDeta return nil } -func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { +func (m *DataplaneStatus) GetAgentActivityStatus() []*AgentActivityStatus { if m != nil { return m.AgentActivityStatus } @@ -504,12 +532,8 @@ func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { } type AgentActivityStatus struct { - CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` - Module string `protobuf:"bytes,2,opt,name=Module,proto3" json:"module"` - Type string `protobuf:"bytes,3,opt,name=Type,proto3" json:"type"` - Category string `protobuf:"bytes,4,opt,name=Category,proto3" json:"category"` // Types that are valid to be assigned to Status: - // *AgentActivityStatus_NginxConfigAction + // *AgentActivityStatus_NginxConfigStatus Status isAgentActivityStatus_Status `protobuf_oneof:"Status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -555,11 +579,11 @@ type isAgentActivityStatus_Status interface { Size() int } -type AgentActivityStatus_NginxConfigAction struct { - NginxConfigAction NginxConfigAction `protobuf:"varint,5,opt,name=nginx_config_action,json=nginxConfigAction,proto3,enum=f5.nginx.agent.sdk.NginxConfigAction,oneof" json:"nginx_config_action"` +type AgentActivityStatus_NginxConfigStatus struct { + NginxConfigStatus *NginxConfigStatus `protobuf:"bytes,1,opt,name=nginx_config_status,json=nginxConfigStatus,proto3,oneof" json:"nginx_config_status"` } -func (*AgentActivityStatus_NginxConfigAction) isAgentActivityStatus_Status() {} +func (*AgentActivityStatus_NginxConfigStatus) isAgentActivityStatus_Status() {} func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { if m != nil { @@ -568,46 +592,81 @@ func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { return nil } -func (m *AgentActivityStatus) GetCorrelationID() string { - if m != nil { - return m.CorrelationID +func (m *AgentActivityStatus) GetNginxConfigStatus() *NginxConfigStatus { + if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigStatus); ok { + return x.NginxConfigStatus } - return "" + return nil } -func (m *AgentActivityStatus) GetModule() string { - if m != nil { - return m.Module +// XXX_OneofWrappers is for the internal use of the proto package. +func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*AgentActivityStatus_NginxConfigStatus)(nil), } - return "" } -func (m *AgentActivityStatus) GetType() string { - if m != nil { - return m.Type +type NginxConfigStatus struct { + CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` + Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *NginxConfigStatus) Reset() { *m = NginxConfigStatus{} } +func (m *NginxConfigStatus) String() string { return proto.CompactTextString(m) } +func (*NginxConfigStatus) ProtoMessage() {} +func (*NginxConfigStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{4} +} +func (m *NginxConfigStatus) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *NginxConfigStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_NginxConfigStatus.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil } - return "" +} +func (m *NginxConfigStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_NginxConfigStatus.Merge(m, src) +} +func (m *NginxConfigStatus) XXX_Size() int { + return m.Size() +} +func (m *NginxConfigStatus) XXX_DiscardUnknown() { + xxx_messageInfo_NginxConfigStatus.DiscardUnknown(m) } -func (m *AgentActivityStatus) GetCategory() string { +var xxx_messageInfo_NginxConfigStatus proto.InternalMessageInfo + +func (m *NginxConfigStatus) GetCorrelationID() string { if m != nil { - return m.Category + return m.CorrelationID } return "" } -func (m *AgentActivityStatus) GetNginxConfigAction() NginxConfigAction { - if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigAction); ok { - return x.NginxConfigAction +func (m *NginxConfigStatus) GetStatus() Status { + if m != nil { + return m.Status } - return NginxConfigAction_UNKNOWN + return Status_PENDING } -// XXX_OneofWrappers is for the internal use of the proto package. -func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { - return []interface{}{ - (*AgentActivityStatus_NginxConfigAction)(nil), +func (m *NginxConfigStatus) GetMessage() string { + if m != nil { + return m.Message } + return "" } type DownloadRequest struct { @@ -621,7 +680,7 @@ func (m *DownloadRequest) Reset() { *m = DownloadRequest{} } func (m *DownloadRequest) String() string { return proto.CompactTextString(m) } func (*DownloadRequest) ProtoMessage() {} func (*DownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{4} + return fileDescriptor_213c0bb044472049, []int{5} } func (m *DownloadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -670,7 +729,7 @@ func (m *NginxConfigResponse) Reset() { *m = NginxConfigResponse{} } func (m *NginxConfigResponse) String() string { return proto.CompactTextString(m) } func (*NginxConfigResponse) ProtoMessage() {} func (*NginxConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5} + return fileDescriptor_213c0bb044472049, []int{6} } func (m *NginxConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -733,7 +792,7 @@ func (m *UploadStatus) Reset() { *m = UploadStatus{} } func (m *UploadStatus) String() string { return proto.CompactTextString(m) } func (*UploadStatus) ProtoMessage() {} func (*UploadStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6} + return fileDescriptor_213c0bb044472049, []int{7} } func (m *UploadStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -797,7 +856,7 @@ func (m *DataChunk) Reset() { *m = DataChunk{} } func (m *DataChunk) String() string { return proto.CompactTextString(m) } func (*DataChunk) ProtoMessage() {} func (*DataChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{7} + return fileDescriptor_213c0bb044472049, []int{8} } func (m *DataChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -886,7 +945,7 @@ func (m *ChunkedResourceHeader) Reset() { *m = ChunkedResourceHeader{} } func (m *ChunkedResourceHeader) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceHeader) ProtoMessage() {} func (*ChunkedResourceHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{8} + return fileDescriptor_213c0bb044472049, []int{9} } func (m *ChunkedResourceHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -956,7 +1015,7 @@ func (m *ChunkedResourceChunk) Reset() { *m = ChunkedResourceChunk{} } func (m *ChunkedResourceChunk) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceChunk) ProtoMessage() {} func (*ChunkedResourceChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{9} + return fileDescriptor_213c0bb044472049, []int{10} } func (m *ChunkedResourceChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1007,6 +1066,7 @@ func (m *ChunkedResourceChunk) GetData() []byte { } func init() { + proto.RegisterEnum("f5.nginx.agent.sdk.Status", Status_name, Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.Command_CommandType", Command_CommandType_name, Command_CommandType_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandStatus", CommandStatusResponse_CommandStatus_name, CommandStatusResponse_CommandStatus_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandErrorCode", CommandStatusResponse_CommandErrorCode_name, CommandStatusResponse_CommandErrorCode_value) @@ -1015,6 +1075,7 @@ func init() { proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") proto.RegisterType((*DataplaneStatus)(nil), "f5.nginx.agent.sdk.DataplaneStatus") proto.RegisterType((*AgentActivityStatus)(nil), "f5.nginx.agent.sdk.AgentActivityStatus") + proto.RegisterType((*NginxConfigStatus)(nil), "f5.nginx.agent.sdk.NginxConfigStatus") proto.RegisterType((*DownloadRequest)(nil), "f5.nginx.agent.sdk.DownloadRequest") proto.RegisterType((*NginxConfigResponse)(nil), "f5.nginx.agent.sdk.NginxConfigResponse") proto.RegisterType((*UploadStatus)(nil), "f5.nginx.agent.sdk.UploadStatus") @@ -1026,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1375 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x26, 0x15, 0x9b, 0x92, 0x8e, 0x64, 0x5b, 0xff, 0xd8, 0xf9, 0xab, 0x18, 0x81, 0x69, 0xb0, - 0x4d, 0xe3, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x52, 0x24, 0x2b, 0x53, 0x72, 0x4a, 0x23, 0xb1, 0x55, - 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0xe2, 0xa8, 0x24, 0xe5, 0xc4, 0x41, - 0xf7, 0x05, 0x8a, 0x02, 0x5d, 0x14, 0x5d, 0xf4, 0x29, 0xba, 0xec, 0x2b, 0x74, 0x99, 0x27, 0x20, - 0x8a, 0x2c, 0xf9, 0x00, 0x5d, 0x17, 0x73, 0xa1, 0x4c, 0x59, 0x94, 0x5c, 0xc3, 0xdd, 0x68, 0x86, - 0x33, 0xdf, 0xf9, 0xce, 0x65, 0xce, 0x9c, 0x33, 0x82, 0x25, 0x87, 0x0e, 0x06, 0xb6, 0xef, 0x36, - 0x86, 0x01, 0x8d, 0x28, 0x42, 0x87, 0x5f, 0x34, 0xfc, 0x9e, 0xe7, 0xbf, 0x69, 0xd8, 0x3d, 0xe2, - 0x47, 0x8d, 0xd0, 0x3d, 0x5a, 0x87, 0x1e, 0xed, 0x51, 0xb1, 0xbf, 0x5e, 0x65, 0x70, 0xea, 0xcb, - 0xaf, 0x8a, 0x00, 0x89, 0x0f, 0xe8, 0xd3, 0x30, 0x9d, 0x57, 0x04, 0xc7, 0x58, 0xc6, 0x3f, 0xf4, - 0x7a, 0xf2, 0x0b, 0x91, 0x13, 0xe2, 0x47, 0x61, 0x93, 0x0f, 0x72, 0xed, 0x86, 0x3b, 0xec, 0x86, - 0xf4, 0x30, 0x7a, 0x6d, 0x07, 0xa4, 0xeb, 0x92, 0xc8, 0xf6, 0x8e, 0x43, 0xb1, 0x65, 0xfc, 0x02, - 0x50, 0x6c, 0x09, 0x13, 0xd1, 0x7d, 0x58, 0x18, 0x90, 0xc8, 0xae, 0xab, 0x9b, 0xea, 0x56, 0x65, - 0xfb, 0x66, 0x63, 0xda, 0xd6, 0xc6, 0x3e, 0x89, 0x6c, 0xd7, 0x8e, 0x6c, 0xb3, 0x94, 0xc4, 0x3a, - 0x47, 0x63, 0xfe, 0x8b, 0x76, 0x61, 0x21, 0x3a, 0x1d, 0x92, 0x7a, 0x61, 0x53, 0xdd, 0x5a, 0xde, - 0xbe, 0x9d, 0x27, 0x2b, 0xd5, 0xa4, 0xe3, 0xd3, 0xd3, 0x21, 0x11, 0x34, 0x4c, 0x10, 0xf3, 0x5f, - 0xf4, 0x12, 0xc0, 0x19, 0xb8, 0xdd, 0x30, 0xb2, 0xa3, 0x51, 0x58, 0xbf, 0xc6, 0x0d, 0xb9, 0x33, - 0x87, 0xec, 0x09, 0x07, 0x62, 0x12, 0x0e, 0xa9, 0x1f, 0x12, 0x73, 0x39, 0x89, 0xf5, 0x0c, 0x81, - 0xa5, 0xe0, 0xb2, 0x33, 0x90, 0x20, 0xf4, 0x1c, 0xaa, 0x9c, 0xa5, 0x2b, 0xe2, 0x55, 0x5f, 0xe0, - 0xec, 0x7a, 0x1e, 0xfb, 0x01, 0xfb, 0x6e, 0x71, 0x98, 0x59, 0x4b, 0x62, 0x7d, 0x42, 0xd0, 0x52, - 0xb0, 0x88, 0xbf, 0x00, 0xa0, 0x37, 0x70, 0x3d, 0xbb, 0xdd, 0x0d, 0xa4, 0x35, 0xf5, 0x45, 0xae, - 0xe0, 0xf6, 0x05, 0x0a, 0xc6, 0xc6, 0xdf, 0x48, 0x62, 0x3d, 0x9f, 0xc9, 0x52, 0xf0, 0xaa, 0x3f, - 0x2d, 0xc1, 0x34, 0x73, 0x4a, 0x86, 0xf7, 0x89, 0x13, 0x75, 0x03, 0xf2, 0xdd, 0x88, 0x84, 0x51, - 0x5d, 0x9b, 0xad, 0x79, 0x87, 0xcd, 0x5a, 0x02, 0x8f, 0x05, 0x5c, 0x68, 0xce, 0x65, 0x62, 0x9a, - 0xed, 0x69, 0x09, 0xf4, 0x3d, 0xfc, 0xff, 0x3c, 0x5e, 0x3a, 0x5d, 0xe4, 0xaa, 0xb7, 0x2e, 0x56, - 0x2d, 0xbd, 0x5e, 0x4f, 0x62, 0x7d, 0x06, 0x97, 0xa5, 0xe0, 0x35, 0x3b, 0x47, 0x06, 0x45, 0xb0, - 0x36, 0x96, 0x10, 0x71, 0x12, 0x6e, 0x97, 0xb8, 0xee, 0x8f, 0xe7, 0xe9, 0xe6, 0xe1, 0x13, 0x5e, - 0xd7, 0x93, 0x58, 0xcf, 0xe5, 0xb1, 0x14, 0x8c, 0xec, 0x29, 0x3c, 0xcb, 0x9f, 0x2c, 0xba, 0x5e, - 0x9e, 0x9d, 0x3f, 0x19, 0x6d, 0x22, 0x7f, 0xb2, 0x82, 0x2c, 0x7f, 0x32, 0xf4, 0xe8, 0x10, 0x6a, - 0xec, 0x4a, 0x0d, 0x8f, 0x6d, 0x9f, 0xa4, 0x99, 0x5f, 0xe1, 0xdc, 0x1f, 0xe6, 0x71, 0xb7, 0x53, - 0xac, 0x48, 0x6b, 0x73, 0x2d, 0x89, 0xf5, 0x29, 0x02, 0x4b, 0xc1, 0x2b, 0xee, 0x24, 0x10, 0x7d, - 0x0b, 0x55, 0x5e, 0x14, 0xba, 0x01, 0x19, 0xd2, 0x20, 0xaa, 0x57, 0x67, 0x47, 0x4b, 0xd4, 0x90, - 0xc6, 0x2e, 0x1b, 0x30, 0x47, 0x0b, 0x37, 0xb2, 0xf2, 0xcc, 0x0d, 0x72, 0x06, 0x40, 0x3f, 0xa9, - 0xb0, 0x9e, 0x31, 0xe3, 0x5c, 0xb9, 0xa9, 0x2f, 0x71, 0x6d, 0x9f, 0xce, 0xf7, 0x48, 0x0a, 0xb5, - 0x85, 0x8c, 0xb9, 0x91, 0xc4, 0xfa, 0x1c, 0x4e, 0x4b, 0xc1, 0x75, 0x77, 0x86, 0xac, 0x71, 0x17, - 0x2a, 0x99, 0x42, 0x83, 0x00, 0xb4, 0x83, 0x0e, 0xde, 0xdf, 0x79, 0x5c, 0x53, 0x50, 0x15, 0x4a, - 0xed, 0xce, 0x8b, 0x83, 0xc7, 0x9d, 0x9d, 0x76, 0x4d, 0x65, 0x3b, 0xcf, 0xbe, 0xe6, 0xf3, 0x82, - 0xa9, 0xc1, 0x02, 0x23, 0x34, 0x7e, 0xbd, 0x06, 0xd7, 0x73, 0x2b, 0x0c, 0xfa, 0x06, 0x34, 0x79, - 0x44, 0x2a, 0xaf, 0x74, 0xf7, 0xfe, 0x75, 0x71, 0x9a, 0x5c, 0x35, 0x21, 0x89, 0x75, 0x49, 0x85, - 0xe5, 0x88, 0x3c, 0x00, 0x12, 0x04, 0x34, 0xe8, 0x3a, 0xd4, 0x4d, 0x4b, 0xe9, 0xfd, 0x4b, 0x2b, - 0xd8, 0x65, 0x14, 0x2d, 0xea, 0xca, 0x72, 0x78, 0xc6, 0x88, 0xcb, 0x24, 0xdd, 0x42, 0xb7, 0xa0, - 0x38, 0x20, 0x61, 0x68, 0xf7, 0x08, 0xaf, 0xb2, 0x65, 0xb3, 0x92, 0xc4, 0x7a, 0xba, 0x84, 0xd3, - 0x09, 0xd2, 0x61, 0x91, 0xcb, 0xf0, 0x62, 0x59, 0x36, 0xcb, 0x49, 0xac, 0x8b, 0x05, 0x2c, 0x06, - 0xe3, 0x01, 0x2c, 0x4d, 0x18, 0x83, 0x56, 0xa0, 0xd2, 0xda, 0x6f, 0x77, 0x9f, 0x1d, 0x3c, 0x3a, - 0xe8, 0xbc, 0x38, 0xa8, 0x29, 0x2c, 0xbe, 0x6c, 0xa1, 0xf3, 0xa8, 0xa6, 0xa2, 0x25, 0x28, 0xb3, - 0xf9, 0x2e, 0xc6, 0x1d, 0x5c, 0x2b, 0x18, 0x4d, 0xa8, 0x9d, 0xb7, 0x99, 0xc1, 0x77, 0x31, 0x66, - 0x70, 0x85, 0x71, 0xb1, 0x79, 0xca, 0xa5, 0x1a, 0x3f, 0x2f, 0xc0, 0xca, 0xb9, 0xfc, 0x47, 0x9f, - 0x40, 0x39, 0x3c, 0x0d, 0x23, 0x32, 0xe8, 0x7a, 0x2e, 0x3f, 0x94, 0xb2, 0xb9, 0x94, 0xc4, 0xfa, - 0xd9, 0x22, 0x2e, 0x89, 0xe9, 0x9e, 0x8b, 0xbe, 0x82, 0x62, 0x9a, 0x8f, 0x85, 0xcd, 0x6b, 0x5b, - 0x95, 0xed, 0xcd, 0x99, 0xc5, 0x39, 0xcd, 0x41, 0x1e, 0x17, 0x29, 0x84, 0xd3, 0x09, 0x6b, 0x95, - 0xac, 0x1d, 0xcb, 0x0e, 0x95, 0xdb, 0x2a, 0x2d, 0x1a, 0x46, 0x7b, 0xfe, 0x21, 0x15, 0x3d, 0x8e, - 0xa1, 0x31, 0xff, 0x45, 0x0f, 0xa1, 0xd8, 0x27, 0xf6, 0x71, 0xd4, 0x0f, 0xeb, 0x8b, 0xdc, 0x88, - 0xd9, 0x2d, 0xc8, 0xe2, 0x38, 0x61, 0x83, 0x94, 0xc1, 0xe9, 0x04, 0xfd, 0x38, 0xff, 0xc2, 0x69, - 0x9c, 0xfb, 0x3f, 0xbd, 0x70, 0xb3, 0xaf, 0x1b, 0x3a, 0x49, 0x5b, 0x91, 0xed, 0x44, 0xde, 0x89, - 0x17, 0x9d, 0xa6, 0x95, 0xac, 0x78, 0x41, 0x2b, 0xda, 0x91, 0x78, 0x79, 0x2d, 0x32, 0xad, 0xe8, - 0x1c, 0x93, 0x6c, 0x44, 0x93, 0x78, 0xe3, 0x8f, 0x02, 0xac, 0xe6, 0xf0, 0xa0, 0x2f, 0x59, 0x5e, - 0x06, 0x01, 0x39, 0xb6, 0x23, 0x8f, 0xfa, 0x7b, 0x6d, 0x99, 0x19, 0x28, 0x89, 0xf5, 0x65, 0xe7, - 0x6c, 0x83, 0xa5, 0xc7, 0x24, 0x10, 0x19, 0xa0, 0xed, 0x53, 0x77, 0x74, 0x2c, 0x2e, 0x60, 0x59, - 0x5c, 0xd4, 0x01, 0x5f, 0xc1, 0x72, 0x07, 0xdd, 0x84, 0x05, 0x56, 0x55, 0xe4, 0xd5, 0xc9, 0x3c, - 0x62, 0x78, 0xad, 0xd9, 0x82, 0x52, 0xcb, 0x8e, 0x48, 0x8f, 0x06, 0xa7, 0xf2, 0xde, 0x54, 0x93, - 0x58, 0x2f, 0x39, 0x72, 0x0d, 0x8f, 0x77, 0xd1, 0x10, 0x56, 0x27, 0x1a, 0x3e, 0x73, 0x99, 0xfa, - 0xfc, 0xe1, 0xb0, 0xbc, 0x7d, 0xeb, 0x82, 0x87, 0xc3, 0x0e, 0x07, 0x9b, 0x1f, 0x24, 0xb1, 0x9e, - 0xc7, 0x62, 0x29, 0xf8, 0x7f, 0xfe, 0x14, 0xba, 0x04, 0x9a, 0x8c, 0xdc, 0x3e, 0xac, 0xb4, 0xe9, - 0x6b, 0xff, 0x98, 0xda, 0x6e, 0xda, 0xe1, 0xae, 0xf0, 0x00, 0x34, 0x7e, 0x28, 0xc0, 0x6a, 0xce, - 0xab, 0x06, 0xed, 0x4f, 0x14, 0xcc, 0x4b, 0xbd, 0xe6, 0xf2, 0x4a, 0xe4, 0x1e, 0x68, 0x32, 0x48, - 0x85, 0xcb, 0x04, 0x89, 0x53, 0x09, 0x41, 0x2c, 0x47, 0xf4, 0x1c, 0x2a, 0x32, 0x60, 0xcc, 0x21, - 0x79, 0x95, 0x3f, 0xca, 0x37, 0x8f, 0xc1, 0xda, 0x24, 0x74, 0x02, 0x6f, 0x18, 0xd1, 0xc0, 0x5c, - 0x49, 0x62, 0x3d, 0x2b, 0x8c, 0x41, 0x7c, 0xb0, 0x8b, 0x65, 0xfc, 0xad, 0x42, 0xf5, 0xd9, 0x90, - 0xc5, 0x55, 0xe6, 0xe2, 0x55, 0xde, 0xd5, 0x4f, 0xc6, 0xe1, 0x13, 0xfe, 0x36, 0xf3, 0xa4, 0xb3, - 0xda, 0x1a, 0x4f, 0x03, 0xdb, 0x0f, 0x0f, 0x49, 0x30, 0xa7, 0xcf, 0x18, 0xa0, 0x05, 0xc4, 0x0e, - 0xa9, 0x2f, 0x13, 0x98, 0x63, 0xc4, 0x0a, 0x96, 0xa3, 0xf1, 0x39, 0x2c, 0x4f, 0x32, 0xa1, 0x0a, - 0x14, 0xcf, 0xaa, 0xba, 0x06, 0x05, 0x5e, 0xd1, 0x01, 0xb4, 0x87, 0x3b, 0x7b, 0x8f, 0x77, 0xdb, - 0xb5, 0x82, 0xf1, 0xbb, 0x0a, 0x65, 0x16, 0x81, 0x56, 0x7f, 0xe4, 0x1f, 0xa1, 0x0e, 0x68, 0x7d, - 0x62, 0xbb, 0x24, 0x98, 0x7b, 0xf0, 0x0c, 0x4a, 0x5c, 0x4c, 0x42, 0x3a, 0x0a, 0x1c, 0x62, 0x71, - 0x01, 0x61, 0x8f, 0x10, 0xb6, 0x14, 0x2c, 0x67, 0xc8, 0x12, 0xcd, 0x99, 0x07, 0x62, 0xc6, 0x0b, - 0xf3, 0x1c, 0x1d, 0xff, 0x14, 0x21, 0x65, 0x92, 0x96, 0x82, 0xf9, 0x68, 0x16, 0x61, 0xd1, 0x61, - 0x5b, 0xc6, 0x3b, 0x15, 0xae, 0xe7, 0x9a, 0x70, 0xa5, 0x33, 0x33, 0x40, 0xe3, 0xf4, 0xe2, 0xcc, - 0x16, 0x85, 0x3b, 0x62, 0x05, 0xcb, 0x91, 0xd5, 0x08, 0xa7, 0x4f, 0x9c, 0xa3, 0x70, 0x34, 0x90, - 0x87, 0x20, 0x6a, 0x84, 0x5c, 0xc3, 0xe3, 0x19, 0xfa, 0x0c, 0x80, 0xcb, 0x74, 0x43, 0xef, 0x2d, - 0xe1, 0xf5, 0x64, 0x51, 0xfe, 0xcf, 0x19, 0xaf, 0xe2, 0x32, 0x9f, 0x3f, 0xf1, 0xde, 0x12, 0xe3, - 0x37, 0x15, 0xd6, 0xf2, 0xc2, 0x70, 0x25, 0x8f, 0x6e, 0x33, 0x6b, 0x99, 0x36, 0xcf, 0x95, 0x3e, - 0x49, 0x6b, 0xc5, 0x1a, 0x2e, 0xf2, 0xd9, 0x9e, 0xcb, 0x0a, 0xe3, 0xf8, 0x32, 0x55, 0xcf, 0x22, - 0x2f, 0xe3, 0x7e, 0xef, 0xcf, 0xf7, 0x1b, 0xea, 0xbb, 0xf7, 0x1b, 0xea, 0x5f, 0xef, 0x37, 0xd4, - 0x97, 0x77, 0x7a, 0x5e, 0xd4, 0x1f, 0xbd, 0x6a, 0x38, 0x74, 0xd0, 0xe4, 0x96, 0x34, 0xb9, 0x25, - 0xcd, 0xd0, 0x3d, 0x6a, 0x9e, 0x6c, 0x37, 0xf9, 0xff, 0xd3, 0x07, 0xfc, 0xf7, 0x95, 0xc6, 0x87, - 0xbb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x88, 0x7b, 0xcf, 0x4e, 0x0f, 0x00, 0x00, + // 1371 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, + 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, + 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xa3, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, + 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, + 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0xbd, 0xec, 0x43, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, + 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0xa3, 0xab, + 0xdf, 0xf9, 0x9d, 0x3f, 0xf7, 0xdc, 0x73, 0x64, 0x58, 0xb2, 0xbc, 0xc1, 0xc0, 0x74, 0xed, 0xda, + 0xd0, 0xf7, 0x42, 0x0f, 0xa1, 0xfd, 0xaf, 0x6a, 0x6e, 0xcf, 0x71, 0xdf, 0xd4, 0xcc, 0x1e, 0x71, + 0xc3, 0x5a, 0x60, 0x1f, 0xac, 0x43, 0xcf, 0xeb, 0x79, 0xfc, 0xfd, 0x7a, 0x99, 0xc2, 0x3d, 0x57, + 0x3c, 0x95, 0x38, 0x88, 0x3f, 0x40, 0xdf, 0x0b, 0x12, 0xb9, 0xc4, 0x39, 0x46, 0x3a, 0xee, 0xbe, + 0xd3, 0x13, 0x4f, 0x88, 0x1c, 0x13, 0x37, 0x0c, 0xea, 0x6c, 0x11, 0x7b, 0x57, 0xed, 0x61, 0x37, + 0xf0, 0xf6, 0xc3, 0xd7, 0xa6, 0x4f, 0xba, 0x36, 0x09, 0x4d, 0xe7, 0x30, 0xe0, 0xaf, 0xb4, 0xdf, + 0x00, 0x0a, 0xbb, 0xdc, 0x45, 0x74, 0x17, 0x16, 0x06, 0x24, 0x34, 0xab, 0xf2, 0xa6, 0xbc, 0x55, + 0xda, 0xbe, 0x56, 0x9b, 0xf6, 0xb5, 0xb6, 0x47, 0x42, 0xd3, 0x36, 0x43, 0x53, 0x5f, 0x8c, 0x23, + 0x95, 0xa1, 0x31, 0xfb, 0x45, 0x4d, 0x58, 0x08, 0x4f, 0x86, 0xa4, 0x9a, 0xdb, 0x94, 0xb7, 0x96, + 0xb7, 0x6f, 0x64, 0xe9, 0x0a, 0x33, 0xc9, 0xfa, 0xf4, 0x64, 0x48, 0x38, 0x0d, 0x55, 0xc4, 0xec, + 0x17, 0xbd, 0x04, 0xb0, 0x06, 0x76, 0x37, 0x08, 0xcd, 0xf0, 0x28, 0xa8, 0x5e, 0x62, 0x8e, 0xdc, + 0x9c, 0x43, 0xf6, 0x84, 0x01, 0x31, 0x09, 0x86, 0x9e, 0x1b, 0x10, 0x7d, 0x39, 0x8e, 0xd4, 0x14, + 0x81, 0x21, 0xe1, 0xa2, 0x35, 0x10, 0x20, 0xf4, 0x1c, 0xca, 0x8c, 0xa5, 0xcb, 0xf3, 0x55, 0x5d, + 0x60, 0xec, 0x6a, 0x16, 0x7b, 0x9b, 0x3e, 0xef, 0x32, 0x98, 0x5e, 0x89, 0x23, 0x75, 0x4c, 0xd1, + 0x90, 0x30, 0xcf, 0x3f, 0x07, 0xa0, 0x37, 0x70, 0x25, 0xfd, 0xba, 0xeb, 0x0b, 0x6f, 0xaa, 0x79, + 0x66, 0xe0, 0xc6, 0x39, 0x06, 0x46, 0xce, 0x5f, 0x8d, 0x23, 0x35, 0x9b, 0xc9, 0x90, 0xf0, 0xaa, + 0x3b, 0xad, 0x41, 0x2d, 0x33, 0x4a, 0x8a, 0x77, 0x89, 0x15, 0x76, 0x7d, 0xf2, 0xfd, 0x11, 0x09, + 0xc2, 0xaa, 0x32, 0xdb, 0xf2, 0x0e, 0x95, 0x76, 0x39, 0x1e, 0x73, 0x38, 0xb7, 0x9c, 0xc9, 0x44, + 0x2d, 0x9b, 0xd3, 0x1a, 0xe8, 0x07, 0xf8, 0x68, 0x12, 0x2f, 0x82, 0x2e, 0x30, 0xd3, 0x5b, 0xe7, + 0x9b, 0x16, 0x51, 0xaf, 0xc7, 0x91, 0x3a, 0x83, 0xcb, 0x90, 0xf0, 0x9a, 0x99, 0xa1, 0x83, 0x42, + 0x58, 0x1b, 0x69, 0xf0, 0x3c, 0xf1, 0xb0, 0x17, 0x99, 0xed, 0xcf, 0xe6, 0xd9, 0x66, 0xe9, 0xe3, + 0x51, 0x57, 0xe3, 0x48, 0xcd, 0xe4, 0x31, 0x24, 0x8c, 0xcc, 0x29, 0x3c, 0xad, 0x9f, 0x34, 0xba, + 0x5a, 0x9c, 0x5d, 0x3f, 0x29, 0x6b, 0xbc, 0x7e, 0xd2, 0x8a, 0xb4, 0x7e, 0x52, 0xf4, 0x68, 0x1f, + 0x2a, 0xf4, 0x4a, 0x0d, 0x0f, 0x4d, 0x97, 0x24, 0x95, 0x5f, 0x62, 0xdc, 0x9f, 0x64, 0x71, 0x37, + 0x12, 0x2c, 0x2f, 0x6b, 0x7d, 0x2d, 0x8e, 0xd4, 0x29, 0x02, 0x43, 0xc2, 0x2b, 0xf6, 0x38, 0x10, + 0x7d, 0x07, 0x65, 0xd6, 0x14, 0xba, 0x3e, 0x19, 0x7a, 0x7e, 0x58, 0x2d, 0xcf, 0xce, 0x16, 0xef, + 0x21, 0xb5, 0x26, 0x5d, 0x30, 0x43, 0xf3, 0x30, 0xd2, 0xfa, 0x34, 0x0c, 0x72, 0x06, 0x40, 0x3f, + 0xcb, 0xb0, 0x9e, 0x72, 0x63, 0xa2, 0xdd, 0x54, 0x97, 0x98, 0xb5, 0xcf, 0xe7, 0x47, 0x24, 0x94, + 0x1a, 0x5c, 0x47, 0xdf, 0x88, 0x23, 0x75, 0x0e, 0xa7, 0x21, 0xe1, 0xaa, 0x3d, 0x43, 0x57, 0xbb, + 0x0d, 0xa5, 0x54, 0xa3, 0x41, 0x00, 0x4a, 0xbb, 0x83, 0xf7, 0x76, 0x1e, 0x55, 0x24, 0x54, 0x86, + 0xc5, 0x46, 0xe7, 0x45, 0xfb, 0x51, 0x67, 0xa7, 0x51, 0x91, 0xe9, 0x9b, 0x67, 0x8f, 0x99, 0x9c, + 0xd3, 0x15, 0x58, 0xa0, 0x84, 0xda, 0xef, 0x97, 0xe0, 0x4a, 0x66, 0x87, 0x41, 0xdf, 0x82, 0x22, + 0x8e, 0x48, 0x66, 0x9d, 0xee, 0xce, 0x7b, 0x37, 0xa7, 0xf1, 0x5d, 0x1d, 0xe2, 0x48, 0x15, 0x54, + 0x58, 0xac, 0xc8, 0x01, 0x20, 0xbe, 0xef, 0xf9, 0x5d, 0xcb, 0xb3, 0x93, 0x56, 0x7a, 0xf7, 0x83, + 0x0d, 0x34, 0x29, 0xc5, 0xae, 0x67, 0x8b, 0x76, 0x78, 0xc6, 0x88, 0x8b, 0x24, 0x79, 0x85, 0xae, + 0x43, 0x61, 0x40, 0x82, 0xc0, 0xec, 0x11, 0xd6, 0x65, 0x8b, 0x7a, 0x29, 0x8e, 0xd4, 0x64, 0x0b, + 0x27, 0x02, 0x52, 0x21, 0xcf, 0x74, 0x58, 0xb3, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, + 0x8b, 0x76, 0x0f, 0x96, 0xc6, 0x9c, 0x41, 0x2b, 0x50, 0xda, 0xdd, 0x6b, 0x74, 0x9f, 0xb5, 0x1f, + 0xb6, 0x3b, 0x2f, 0xda, 0x15, 0x89, 0xe6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x04, 0x45, + 0x2a, 0x37, 0x31, 0xee, 0xe0, 0x4a, 0x4e, 0xab, 0x43, 0x65, 0xd2, 0x67, 0x0a, 0x6f, 0x62, 0x4c, + 0xe1, 0x12, 0xe5, 0xa2, 0x72, 0xc2, 0x25, 0x6b, 0xbf, 0x2c, 0xc0, 0xca, 0x44, 0xfd, 0xa3, 0x5b, + 0x50, 0x0c, 0x4e, 0x82, 0x90, 0x0c, 0xba, 0x8e, 0xcd, 0x0e, 0xa5, 0xa8, 0x2f, 0xc5, 0x91, 0x7a, + 0xb6, 0x89, 0x17, 0xb9, 0xd8, 0xb2, 0xd1, 0x03, 0x28, 0x24, 0xf5, 0x98, 0xdb, 0xbc, 0xb4, 0x55, + 0xda, 0xde, 0x9c, 0xd9, 0x9c, 0x93, 0x1a, 0x64, 0x79, 0x11, 0x4a, 0x38, 0x11, 0xe8, 0xa8, 0xa4, + 0xe3, 0x58, 0x4c, 0xa8, 0xcc, 0x51, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0x3e, 0xe3, 0x28, + 0x1a, 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x4e, 0xcc, + 0x1e, 0x41, 0x06, 0xc3, 0x71, 0x1f, 0x84, 0x0e, 0x4e, 0x04, 0xf4, 0xd3, 0xfc, 0x0b, 0xa7, 0x30, + 0xee, 0xff, 0xf5, 0xc2, 0xcd, 0xbe, 0x6e, 0xe8, 0x38, 0x19, 0x45, 0xa6, 0x15, 0x3a, 0xc7, 0x4e, + 0x78, 0x92, 0x74, 0xb2, 0x02, 0x73, 0x63, 0xf6, 0x28, 0xda, 0x11, 0x78, 0x71, 0x2d, 0x52, 0xa3, + 0x68, 0x82, 0x49, 0x0c, 0xa2, 0x71, 0xbc, 0xf6, 0xab, 0x0c, 0xab, 0x19, 0x3c, 0x68, 0x08, 0xab, + 0x63, 0xa3, 0x34, 0x75, 0x69, 0x4b, 0xdb, 0xd7, 0xcf, 0x19, 0xc9, 0xc2, 0x97, 0x8f, 0xe3, 0x48, + 0xcd, 0x62, 0x31, 0x24, 0x7c, 0xd9, 0x9d, 0x42, 0x2f, 0x82, 0x22, 0x7c, 0xfa, 0x4b, 0x86, 0xcb, + 0x53, 0x6c, 0xe8, 0x6b, 0x7a, 0x53, 0x7c, 0x9f, 0x1c, 0x9a, 0xa1, 0xe3, 0xb9, 0xad, 0x86, 0xa8, + 0x55, 0x14, 0x47, 0xea, 0xb2, 0x75, 0xf6, 0x82, 0x16, 0xec, 0x38, 0x10, 0x7d, 0x33, 0xea, 0x39, + 0xbc, 0x25, 0xac, 0x67, 0xb9, 0x3f, 0xa7, 0xad, 0xbc, 0xdf, 0x5d, 0xd7, 0xf6, 0x60, 0xa5, 0xe1, + 0xbd, 0x76, 0x0f, 0x3d, 0xd3, 0x4e, 0x46, 0xde, 0x05, 0xbe, 0x08, 0xb5, 0x1f, 0x73, 0xb0, 0x9a, + 0xf1, 0x99, 0x83, 0xf6, 0xc6, 0x3a, 0xe8, 0x07, 0x7d, 0xde, 0x65, 0x05, 0xd7, 0x02, 0x85, 0x16, + 0x8a, 0xe7, 0x8a, 0xe4, 0x9c, 0x77, 0xb6, 0x3b, 0x0c, 0xcc, 0xa9, 0xb8, 0x22, 0x16, 0x2b, 0x7a, + 0x0e, 0x25, 0x71, 0xce, 0x34, 0x20, 0x71, 0xb7, 0x3f, 0xcd, 0x76, 0x8f, 0xc2, 0x1a, 0x24, 0xb0, + 0x7c, 0x67, 0x18, 0x7a, 0xbe, 0xbe, 0x12, 0x47, 0x6a, 0x5a, 0x19, 0x03, 0x7f, 0xa0, 0x37, 0x4d, + 0xfb, 0x57, 0x86, 0xf2, 0xb3, 0x21, 0xcd, 0xab, 0x28, 0x85, 0x8b, 0x7c, 0x68, 0x3f, 0x99, 0x28, + 0x86, 0x7a, 0x96, 0x76, 0xda, 0x5a, 0xed, 0xa9, 0x6f, 0xba, 0xc1, 0x3e, 0xf1, 0xe7, 0x54, 0x88, + 0x06, 0x8a, 0x4f, 0xcc, 0xc0, 0x73, 0x45, 0x81, 0x30, 0x0c, 0xdf, 0xc1, 0x62, 0xd5, 0xbe, 0x84, + 0xe5, 0x71, 0x26, 0x54, 0x82, 0xc2, 0x59, 0x9b, 0x57, 0x20, 0xc7, 0x5a, 0x3c, 0x80, 0x72, 0x7f, + 0xa7, 0xf5, 0xa8, 0xd9, 0xa8, 0xe4, 0xb4, 0x3f, 0x65, 0x28, 0xd2, 0x0c, 0xec, 0xf6, 0x8f, 0xdc, + 0x03, 0xd4, 0x01, 0xa5, 0x4f, 0x4c, 0x9b, 0xf8, 0x73, 0x0f, 0x9e, 0x42, 0x89, 0x8d, 0x49, 0xe0, + 0x1d, 0xf9, 0x16, 0x31, 0x98, 0x02, 0xf7, 0x87, 0x2b, 0x1b, 0x12, 0x16, 0x12, 0x32, 0xf8, 0xb4, + 0x66, 0x89, 0x98, 0xf1, 0xc9, 0x39, 0x41, 0xc7, 0x1e, 0x79, 0x4a, 0xa9, 0xa6, 0x21, 0x61, 0xb6, + 0xea, 0x05, 0xc8, 0x5b, 0xf4, 0x95, 0xf6, 0x4e, 0x86, 0x2b, 0x99, 0x2e, 0x5c, 0xe8, 0xcc, 0x34, + 0x50, 0x18, 0x3d, 0x3f, 0xb3, 0x3c, 0x0f, 0x87, 0xef, 0x60, 0xb1, 0xa2, 0x2d, 0x58, 0xb4, 0xfa, + 0xc4, 0x3a, 0x08, 0x8e, 0x06, 0xe2, 0x10, 0xca, 0x71, 0xa4, 0x8e, 0xf6, 0xf0, 0x48, 0x42, 0x5f, + 0x00, 0x30, 0x9d, 0x6e, 0xe0, 0xbc, 0x25, 0x6c, 0x30, 0xe7, 0xc5, 0x1f, 0x9f, 0xd1, 0x2e, 0x2e, + 0x32, 0xf9, 0x89, 0xf3, 0x96, 0x68, 0x7f, 0xc8, 0xb0, 0x96, 0x95, 0x86, 0x0b, 0x45, 0x74, 0x83, + 0x7a, 0x4b, 0xad, 0x39, 0xb6, 0x88, 0x49, 0x78, 0xcb, 0xf7, 0x70, 0x81, 0x49, 0x2d, 0x1b, 0x5d, + 0x13, 0x67, 0x44, 0x43, 0x2a, 0x9f, 0x65, 0x9e, 0xe7, 0xfd, 0xd6, 0x56, 0xd2, 0x33, 0x69, 0x2d, + 0x3d, 0x6e, 0xb6, 0x1b, 0xad, 0xf6, 0x83, 0x54, 0x2d, 0x15, 0x21, 0x2f, 0x3e, 0x15, 0xf4, 0x3b, + 0x7f, 0x9f, 0x6e, 0xc8, 0xef, 0x4e, 0x37, 0xe4, 0x7f, 0x4e, 0x37, 0xe4, 0x97, 0x37, 0x7b, 0x4e, + 0xd8, 0x3f, 0x7a, 0x55, 0xb3, 0xbc, 0x41, 0x9d, 0xf9, 0x5c, 0x67, 0x3e, 0xd7, 0x03, 0xfb, 0xa0, + 0x7e, 0xbc, 0x5d, 0x67, 0x7f, 0x6d, 0xef, 0xb1, 0xdf, 0x57, 0x0a, 0x5b, 0x6e, 0xff, 0x17, 0x00, + 0x00, 0xff, 0xff, 0xb6, 0x04, 0xb9, 0x73, 0x89, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1453,17 +1514,19 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if m.AgentActivityStatus != nil { - { - size, err := m.AgentActivityStatus.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.AgentActivityStatus) > 0 { + for iNdEx := len(m.AgentActivityStatus) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.AgentActivityStatus[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) } - i -= size - i = encodeVarintCommand(dAtA, i, uint64(size)) + i-- + dAtA[i] = 0x3a } - i-- - dAtA[i] = 0x3a } if len(m.DataplaneSoftwareDetails) > 0 { for iNdEx := len(m.DataplaneSoftwareDetails) - 1; iNdEx >= 0; iNdEx-- { @@ -1562,26 +1625,65 @@ func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { } } } - if len(m.Category) > 0 { - i -= len(m.Category) - copy(dAtA[i:], m.Category) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Category))) + return len(dAtA) - i, nil +} + +func (m *AgentActivityStatus_NginxConfigStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus_NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.NginxConfigStatus != nil { + { + size, err := m.NginxConfigStatus.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) + } i-- - dAtA[i] = 0x22 + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} +func (m *NginxConfigStatus) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *NginxConfigStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.Type) > 0 { - i -= len(m.Type) - copy(dAtA[i:], m.Type) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Type))) + if len(m.Message) > 0 { + i -= len(m.Message) + copy(dAtA[i:], m.Message) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Message))) i-- dAtA[i] = 0x1a } - if len(m.Module) > 0 { - i -= len(m.Module) - copy(dAtA[i:], m.Module) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Module))) + if m.Status != 0 { + i = encodeVarintCommand(dAtA, i, uint64(m.Status)) i-- - dAtA[i] = 0x12 + dAtA[i] = 0x10 } if len(m.CorrelationID) > 0 { i -= len(m.CorrelationID) @@ -1593,18 +1695,6 @@ func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *AgentActivityStatus_NginxConfigAction) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *AgentActivityStatus_NginxConfigAction) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - i = encodeVarintCommand(dAtA, i, uint64(m.NginxConfigAction)) - i-- - dAtA[i] = 0x28 - return len(dAtA) - i, nil -} func (m *DownloadRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -2147,9 +2237,11 @@ func (m *DataplaneStatus) Size() (n int) { n += 1 + l + sovCommand(uint64(l)) } } - if m.AgentActivityStatus != nil { - l = m.AgentActivityStatus.Size() - n += 1 + l + sovCommand(uint64(l)) + if len(m.AgentActivityStatus) > 0 { + for _, e := range m.AgentActivityStatus { + l = e.Size() + n += 1 + l + sovCommand(uint64(l)) + } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -2163,22 +2255,6 @@ func (m *AgentActivityStatus) Size() (n int) { } var l int _ = l - l = len(m.CorrelationID) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Module) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Type) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Category) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } if m.Status != nil { n += m.Status.Size() } @@ -2188,15 +2264,41 @@ func (m *AgentActivityStatus) Size() (n int) { return n } -func (m *AgentActivityStatus_NginxConfigAction) Size() (n int) { +func (m *AgentActivityStatus_NginxConfigStatus) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.NginxConfigStatus != nil { + l = m.NginxConfigStatus.Size() + n += 1 + l + sovCommand(uint64(l)) + } + return n +} +func (m *NginxConfigStatus) Size() (n int) { if m == nil { return 0 } var l int _ = l - n += 1 + sovCommand(uint64(m.NginxConfigAction)) + l = len(m.CorrelationID) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.Status != 0 { + n += 1 + sovCommand(uint64(m.Status)) + } + l = len(m.Message) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } return n } + func (m *DownloadRequest) Size() (n int) { if m == nil { return 0 @@ -3190,10 +3292,8 @@ func (m *DataplaneStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.AgentActivityStatus == nil { - m.AgentActivityStatus = &AgentActivityStatus{} - } - if err := m.AgentActivityStatus.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.AgentActivityStatus = append(m.AgentActivityStatus, &AgentActivityStatus{}) + if err := m.AgentActivityStatus[len(m.AgentActivityStatus)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -3250,9 +3350,9 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigStatus", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCommand @@ -3262,27 +3362,81 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthCommand } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCommand } if postIndex > l { return io.ErrUnexpectedEOF } - m.CorrelationID = string(dAtA[iNdEx:postIndex]) + v := &NginxConfigStatus{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Status = &AgentActivityStatus_NginxConfigStatus{v} iNdEx = postIndex - case 2: + default: + iNdEx = preIndex + skippy, err := skipCommand(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCommand + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: NginxConfigStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: NginxConfigStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Module", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3310,13 +3464,13 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Module = string(dAtA[iNdEx:postIndex]) + m.CorrelationID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } - var stringLen uint64 + m.Status = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCommand @@ -3326,27 +3480,14 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + m.Status |= Status(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCommand - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCommand - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Type = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Category", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3374,28 +3515,8 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Category = string(dAtA[iNdEx:postIndex]) + m.Message = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigAction", wireType) - } - var v NginxConfigAction - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCommand - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= NginxConfigAction(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Status = &AgentActivityStatus_NginxConfigAction{v} default: iNdEx = preIndex skippy, err := skipCommand(dAtA[iNdEx:]) diff --git a/sdk/proto/command.proto b/sdk/proto/command.proto index 1675c748e..204aef138 100644 --- a/sdk/proto/command.proto +++ b/sdk/proto/command.proto @@ -86,19 +86,27 @@ message DataplaneStatus { HostInfo host = 3 [(gogoproto.jsontag) = "host" ]; repeated NginxHealth healths = 5 [(gogoproto.jsontag) = "healths" ]; repeated DataplaneSoftwareDetails dataplane_software_details = 6 [(gogoproto.jsontag) = "dataplane_software_details"]; - AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; + repeated AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; } message AgentActivityStatus { - string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; - string Module = 2 [(gogoproto.jsontag) = "module" ]; - string Type = 3 [(gogoproto.jsontag) = "type" ]; - string Category = 4 [(gogoproto.jsontag) = "category" ]; oneof Status { - NginxConfigAction nginx_config_action = 5 [(gogoproto.jsontag) = "nginx_config_action" ]; + NginxConfigStatus nginx_config_status = 1 [(gogoproto.jsontag) = "nginx_config_status" ]; } } +message NginxConfigStatus { + string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + Status status = 2 [(gogoproto.jsontag) = "status" ]; + string message = 3 [(gogoproto.jsontag) = "message" ]; +} + +enum Status { + PENDING = 0; + OK = 1; + ERROR = 2; +} + message DownloadRequest { Metadata meta = 1 [(gogoproto.jsontag) = "meta" ]; } diff --git a/sdk/proto/nginx.pb.go b/sdk/proto/nginx.pb.go index b33bd6e39..9a79eb930 100644 --- a/sdk/proto/nginx.pb.go +++ b/sdk/proto/nginx.pb.go @@ -31,7 +31,6 @@ const ( NginxConfigAction_TEST NginxConfigAction = 2 NginxConfigAction_ROLLBACK NginxConfigAction = 3 NginxConfigAction_RETURN NginxConfigAction = 4 - NginxConfigAction_PENDING NginxConfigAction = 5 ) var NginxConfigAction_name = map[int32]string{ @@ -40,7 +39,6 @@ var NginxConfigAction_name = map[int32]string{ 2: "TEST", 3: "ROLLBACK", 4: "RETURN", - 5: "PENDING", } var NginxConfigAction_value = map[string]int32{ @@ -49,7 +47,6 @@ var NginxConfigAction_value = map[string]int32{ "TEST": 2, "ROLLBACK": 3, "RETURN": 4, - "PENDING": 5, } func (x NginxConfigAction) String() string { @@ -955,85 +952,85 @@ func init() { func init() { proto.RegisterFile("nginx.proto", fileDescriptor_917f1a70b1fd7255) } var fileDescriptor_917f1a70b1fd7255 = []byte{ - // 1245 bytes of a gzipped FileDescriptorProto + // 1233 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0xc6, - 0x16, 0x0e, 0x2d, 0xd9, 0x22, 0x8f, 0x64, 0x5b, 0x99, 0x7b, 0x2f, 0xa0, 0x04, 0xb9, 0xa6, 0xc1, - 0x7b, 0x83, 0xba, 0x29, 0x6a, 0x23, 0x4e, 0x8b, 0xa2, 0x68, 0xd0, 0x40, 0xb2, 0x94, 0x44, 0x88, - 0xa2, 0x18, 0x63, 0x39, 0x4d, 0x8d, 0x02, 0xea, 0x58, 0x1c, 0xcb, 0x44, 0x28, 0x52, 0x98, 0xa1, - 0x82, 0x24, 0xcf, 0xd0, 0x27, 0xe9, 0xae, 0xcb, 0xbe, 0x41, 0x77, 0xed, 0x13, 0x10, 0x45, 0x96, - 0xdc, 0xf4, 0x15, 0x8a, 0x39, 0x33, 0xa4, 0xe4, 0xbf, 0x26, 0x8b, 0x76, 0x33, 0x9c, 0xf3, 0xcd, - 0x39, 0x1f, 0xe7, 0xfc, 0x92, 0x50, 0x8d, 0xc6, 0x41, 0xf4, 0x7a, 0x7b, 0x2a, 0xe2, 0x24, 0x26, - 0xe4, 0xe4, 0xf3, 0x6d, 0x2d, 0xb3, 0x31, 0x8f, 0x92, 0x6d, 0xe9, 0xbf, 0xbc, 0x09, 0xe3, 0x78, - 0x1c, 0xeb, 0xf3, 0x9b, 0xb5, 0x51, 0x1c, 0x9d, 0x04, 0xe3, 0xb9, 0x34, 0x99, 0xc4, 0x91, 0x96, - 0xbc, 0x17, 0x60, 0xef, 0x87, 0x33, 0xd9, 0x8d, 0x4e, 0x62, 0x72, 0x1b, 0x2a, 0x3c, 0x62, 0xc7, - 0x21, 0xf7, 0x1b, 0xd6, 0xa6, 0xb5, 0x65, 0xb7, 0xaa, 0x59, 0xea, 0xe6, 0x10, 0xcd, 0x37, 0x4a, - 0x4d, 0xf0, 0x90, 0x33, 0xc9, 0x1b, 0x4b, 0x9b, 0xd6, 0x96, 0xa3, 0xd5, 0x0c, 0x44, 0xf3, 0x8d, - 0xd7, 0x81, 0xca, 0xc1, 0x41, 0x0f, 0x89, 0x5d, 0x58, 0x3e, 0x9e, 0x05, 0x61, 0xd2, 0xb0, 0x36, - 0x4b, 0x5b, 0x4e, 0xcb, 0xc9, 0x52, 0x57, 0x03, 0x54, 0x3f, 0xc8, 0x0d, 0x28, 0x89, 0x59, 0xd4, - 0x58, 0xc2, 0xe3, 0x4a, 0x96, 0xba, 0x4a, 0xa4, 0x6a, 0xf1, 0xf6, 0xc0, 0xde, 0x67, 0xc9, 0x29, - 0xf2, 0xdc, 0x80, 0xd2, 0x71, 0x10, 0xe1, 0xe5, 0x8c, 0xda, 0x71, 0x10, 0x51, 0xb5, 0x90, 0x5b, - 0x50, 0x56, 0x5e, 0x9a, 0x1b, 0xd9, 0x59, 0xea, 0xa2, 0x4c, 0x71, 0xf5, 0x7e, 0x5d, 0x86, 0x5a, - 0x5f, 0x45, 0xa8, 0xcd, 0x13, 0x16, 0x84, 0x92, 0x7c, 0x04, 0x36, 0x46, 0x6c, 0x18, 0xf8, 0x86, - 0xae, 0x96, 0xa5, 0x6e, 0x81, 0xd1, 0x0a, 0xee, 0xba, 0xe8, 0xec, 0x2b, 0x2e, 0x64, 0x10, 0x47, - 0x8b, 0xce, 0x1a, 0x88, 0xe6, 0x1b, 0x72, 0x07, 0x1c, 0xf5, 0xa2, 0xe1, 0x94, 0x25, 0xa7, 0x8d, - 0x12, 0x2a, 0xae, 0x66, 0xa9, 0x3b, 0x07, 0xa9, 0xad, 0xb6, 0xca, 0x13, 0xf2, 0x29, 0xc0, 0x54, - 0xc4, 0x23, 0x2e, 0xa5, 0x7a, 0x7b, 0x19, 0x95, 0xd7, 0xb2, 0xd4, 0x5d, 0x40, 0xa9, 0x63, 0xf6, - 0x5d, 0x9f, 0xdc, 0x83, 0x5a, 0x7e, 0x80, 0xec, 0xcb, 0x68, 0x50, 0xcf, 0x52, 0xf7, 0x0c, 0x4e, - 0xab, 0x46, 0xca, 0xdf, 0x21, 0x13, 0x26, 0x92, 0x61, 0x12, 0x4c, 0x78, 0x63, 0x65, 0xd3, 0xda, - 0x2a, 0xe9, 0x77, 0xcc, 0x51, 0xea, 0xe0, 0x7e, 0x10, 0x4c, 0x38, 0x69, 0xc2, 0x75, 0x4c, 0xc4, - 0xf0, 0x44, 0xc4, 0x93, 0xa1, 0x8c, 0x67, 0x62, 0xc4, 0x1b, 0x15, 0xac, 0x81, 0xff, 0x64, 0xa9, - 0x7b, 0xf1, 0x90, 0xae, 0x23, 0xf4, 0x50, 0xc4, 0x93, 0x03, 0x04, 0xc8, 0x03, 0xa8, 0x87, 0x31, - 0xf3, 0x55, 0x89, 0x0c, 0x27, 0xb1, 0x3f, 0x0b, 0xb9, 0x6c, 0xd8, 0x98, 0xcf, 0x7f, 0x67, 0xa9, - 0x7b, 0xe1, 0x8c, 0xae, 0xe7, 0xc8, 0x53, 0x0d, 0x90, 0xfb, 0xb0, 0x2e, 0x66, 0x91, 0xba, 0x59, - 0x61, 0xef, 0xa0, 0xfd, 0xbf, 0xb2, 0xd4, 0x3d, 0x7f, 0x44, 0xd7, 0x0c, 0x90, 0x5b, 0xef, 0x41, - 0x79, 0x1a, 0xce, 0x64, 0x03, 0x36, 0xad, 0xad, 0xea, 0xee, 0xed, 0xed, 0x8b, 0x2d, 0xb1, 0x8d, - 0x05, 0xa0, 0x8a, 0xfd, 0x29, 0x4f, 0x58, 0x9b, 0x25, 0x4c, 0x97, 0x89, 0x32, 0xa3, 0xb8, 0x92, - 0x07, 0x50, 0x92, 0x32, 0x6c, 0x54, 0x91, 0xe3, 0xff, 0x57, 0x72, 0x1c, 0xc8, 0xb0, 0xa0, 0xc0, - 0x2a, 0x94, 0x32, 0xa4, 0x6a, 0x31, 0x61, 0x4f, 0x66, 0x72, 0x38, 0x13, 0x61, 0xa3, 0x36, 0x4f, - 0xed, 0x1c, 0xc5, 0xb0, 0x27, 0x33, 0x79, 0x28, 0x42, 0xf2, 0x25, 0xac, 0xe9, 0xd6, 0x9c, 0x09, - 0x3e, 0x64, 0x62, 0x2c, 0x1b, 0xab, 0xe8, 0x31, 0xc9, 0x52, 0xf7, 0xdc, 0x09, 0x5d, 0x2d, 0xe4, - 0xa6, 0x18, 0x4b, 0x8f, 0xc1, 0xf5, 0x0b, 0xfe, 0xfc, 0xcd, 0x0d, 0xfc, 0xb3, 0x05, 0xf5, 0xf3, - 0xfe, 0x92, 0x23, 0xb0, 0xa5, 0x0c, 0x87, 0xc9, 0x9b, 0x29, 0xc7, 0x77, 0xac, 0xed, 0xde, 0xfd, - 0x90, 0x38, 0x15, 0xc0, 0xe0, 0xcd, 0x94, 0xeb, 0x5e, 0xcb, 0x69, 0x68, 0x45, 0x6a, 0x58, 0xdd, - 0xcb, 0xd7, 0xfd, 0x69, 0x26, 0x01, 0xde, 0xcb, 0x40, 0x34, 0xdf, 0x78, 0x9e, 0xe9, 0x65, 0xc3, - 0x46, 0x1c, 0x58, 0x6e, 0x1d, 0x76, 0x7b, 0x83, 0xfa, 0x35, 0x52, 0x81, 0x12, 0x3d, 0xec, 0xd7, - 0x2d, 0xef, 0x87, 0x25, 0xa8, 0xa2, 0xd2, 0x63, 0xce, 0xc2, 0xe4, 0xf4, 0xc3, 0xfb, 0xfd, 0x7b, - 0xa8, 0x69, 0x50, 0x67, 0x09, 0x03, 0xb4, 0xb6, 0xfb, 0xc9, 0x95, 0x3e, 0x6a, 0x7e, 0xe3, 0x1e, - 0x9a, 0xe8, 0xd6, 0x5c, 0x24, 0xa1, 0x7a, 0x5a, 0xeb, 0x63, 0x55, 0xe7, 0x3e, 0x1f, 0x0b, 0xe6, - 0x73, 0x7f, 0x28, 0x38, 0x93, 0x71, 0x64, 0x06, 0x06, 0xd6, 0xf9, 0xb9, 0x23, 0xba, 0x96, 0x03, - 0x14, 0x65, 0xef, 0x33, 0xe3, 0x97, 0x21, 0xab, 0x42, 0xe5, 0xb0, 0xff, 0xa4, 0xff, 0xec, 0x9b, - 0x7e, 0xfd, 0x1a, 0x01, 0x58, 0x69, 0xee, 0x0d, 0xba, 0xcf, 0x3b, 0x75, 0x8b, 0xd4, 0xc0, 0x6e, - 0x77, 0x1e, 0xd1, 0x66, 0xbb, 0xd3, 0xae, 0x2f, 0x79, 0x7f, 0x94, 0x8d, 0xd9, 0x1e, 0x16, 0x11, - 0xe9, 0xc2, 0x0a, 0x1b, 0x25, 0x6a, 0xa8, 0xe9, 0x1c, 0x5e, 0xdd, 0x2f, 0xda, 0xa0, 0x89, 0xca, - 0x2d, 0xc8, 0x52, 0xd7, 0x18, 0x52, 0xf3, 0x24, 0xcf, 0xa1, 0xaa, 0x2b, 0x73, 0xe8, 0xb3, 0x84, - 0x61, 0xbc, 0xae, 0xe8, 0x1d, 0x4d, 0xd5, 0xe6, 0x72, 0x24, 0x82, 0x69, 0x12, 0x8b, 0xd6, 0x7a, - 0x96, 0xba, 0x8b, 0xc6, 0x14, 0xb4, 0x80, 0x85, 0xd6, 0x81, 0xca, 0x5b, 0x2d, 0x62, 0x78, 0xaa, - 0xbb, 0x1b, 0x97, 0x71, 0x1e, 0x05, 0xd3, 0x29, 0xf7, 0x1f, 0x06, 0x21, 0xd7, 0xc5, 0x62, 0x4c, - 0x68, 0xbe, 0x21, 0xf7, 0xa1, 0xfc, 0x96, 0xcd, 0x5e, 0xe3, 0x98, 0x7d, 0x3f, 0x07, 0x0e, 0x04, - 0xa5, 0x4f, 0x71, 0x25, 0xfb, 0x50, 0x65, 0x23, 0x1c, 0xb1, 0x61, 0x3c, 0x96, 0x38, 0x7a, 0xaf, - 0x20, 0x69, 0xa2, 0x5a, 0x2f, 0x1e, 0x4b, 0xed, 0xd6, 0x82, 0x19, 0x05, 0x56, 0x1c, 0x92, 0x1e, - 0x00, 0x17, 0x22, 0x16, 0x9a, 0x70, 0x05, 0x09, 0xff, 0x7b, 0x19, 0x61, 0x47, 0x69, 0x21, 0x1f, - 0x0e, 0x90, 0xb9, 0x11, 0x75, 0x78, 0x7e, 0x44, 0xbe, 0xd6, 0x03, 0xab, 0x82, 0x34, 0xff, 0xbb, - 0x8c, 0xe6, 0x40, 0x86, 0x7b, 0x5c, 0x24, 0xc1, 0x49, 0x30, 0x62, 0x09, 0x97, 0xe7, 0xe6, 0xd5, - 0x0b, 0x58, 0xf5, 0x03, 0xc1, 0x47, 0x49, 0x2c, 0xde, 0x0c, 0x27, 0x6c, 0xda, 0xb0, 0x91, 0x69, - 0xf3, 0x32, 0xa6, 0x76, 0xae, 0xf8, 0x94, 0x4d, 0x5b, 0xd7, 0xb3, 0xd4, 0x3d, 0x6b, 0x4a, 0x6b, - 0xfe, 0x82, 0x82, 0x77, 0x04, 0xd0, 0x3c, 0xe3, 0xf5, 0x3c, 0x20, 0xf8, 0x17, 0x70, 0x85, 0xd7, - 0x85, 0x8d, 0xf6, 0x7a, 0x6e, 0x44, 0x9d, 0x22, 0x88, 0xde, 0x8f, 0x16, 0x38, 0x85, 0xa2, 0xfa, - 0xf2, 0x47, 0x6c, 0xc2, 0x4d, 0x5b, 0x63, 0x06, 0x95, 0x4c, 0x71, 0x25, 0x1e, 0xac, 0x9c, 0xc4, - 0x62, 0xc2, 0x12, 0x33, 0xea, 0xb0, 0x84, 0x35, 0x42, 0xcd, 0x93, 0xdc, 0x85, 0xea, 0x94, 0x8b, - 0x49, 0x20, 0xd5, 0xa7, 0x5c, 0x9a, 0x6e, 0xc4, 0x2c, 0x2e, 0xc0, 0x74, 0x51, 0x20, 0x5b, 0x60, - 0x0b, 0xae, 0xbf, 0x5f, 0x58, 0x5a, 0xb6, 0x9e, 0x27, 0x39, 0x46, 0x8b, 0x9d, 0x77, 0x08, 0x4e, - 0x91, 0x4a, 0xf2, 0x18, 0x9c, 0x22, 0x91, 0x26, 0x0c, 0xb7, 0xfe, 0x2a, 0xf9, 0xfa, 0x27, 0xa2, - 0x30, 0xa1, 0x76, 0x9e, 0x7a, 0xef, 0x27, 0x0b, 0xec, 0x5c, 0xeb, 0x3d, 0x21, 0xb8, 0x03, 0x4e, - 0x18, 0x8f, 0x87, 0x21, 0x7f, 0xc5, 0x43, 0x13, 0x05, 0xa4, 0x2d, 0x40, 0x6a, 0x87, 0xf1, 0xb8, - 0xa7, 0x76, 0xff, 0x68, 0x28, 0xee, 0x7c, 0x67, 0xbe, 0x59, 0x8b, 0x33, 0xe5, 0xec, 0x04, 0x73, - 0x60, 0xb9, 0xb9, 0xbf, 0xdf, 0xfb, 0xb6, 0x6e, 0x11, 0x1b, 0xca, 0x83, 0xce, 0xc1, 0xa0, 0xbe, - 0xa4, 0x46, 0x19, 0x7d, 0xd6, 0xeb, 0xb5, 0x9a, 0x7b, 0x4f, 0xea, 0x25, 0x35, 0xe4, 0x68, 0x67, - 0x70, 0x48, 0xfb, 0xf5, 0xb2, 0xb2, 0xdd, 0xef, 0xf4, 0xdb, 0xdd, 0xfe, 0xa3, 0xfa, 0x72, 0xeb, - 0x8b, 0x5f, 0xde, 0x6d, 0x58, 0xbf, 0xbd, 0xdb, 0xb0, 0x7e, 0x7f, 0xb7, 0x61, 0x1d, 0x7d, 0x3c, - 0x0e, 0x92, 0xd3, 0xd9, 0xf1, 0xf6, 0x28, 0x9e, 0xec, 0x60, 0x74, 0x77, 0x30, 0xba, 0x3b, 0xd2, - 0x7f, 0xb9, 0xf3, 0x6a, 0x77, 0x07, 0x7f, 0x7e, 0xbf, 0xc2, 0xf5, 0x78, 0x05, 0x1f, 0xf7, 0xfe, - 0x0c, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xe0, 0x9f, 0x5c, 0x54, 0x0b, 0x00, 0x00, + 0x13, 0x0f, 0x2d, 0xd9, 0x22, 0x47, 0xb2, 0xad, 0xec, 0xff, 0x5f, 0x40, 0x09, 0x52, 0xd3, 0x60, + 0x1b, 0xd4, 0x4d, 0x51, 0x1b, 0x71, 0x5a, 0x14, 0x45, 0x83, 0x06, 0x92, 0xa5, 0x34, 0x46, 0x14, + 0xc7, 0x58, 0xcb, 0x69, 0xea, 0x8b, 0xba, 0x16, 0xd7, 0x32, 0x11, 0x8a, 0x14, 0x76, 0xc9, 0x20, + 0xc9, 0x33, 0xf4, 0x49, 0x7a, 0xeb, 0xb1, 0x6f, 0xd0, 0x5b, 0xfb, 0x04, 0x44, 0x91, 0x23, 0x2f, + 0x7d, 0x85, 0x62, 0x67, 0x97, 0x94, 0xfc, 0xd5, 0xe4, 0xd0, 0x5e, 0x96, 0x3b, 0xbf, 0x9d, 0xf9, + 0x71, 0xe7, 0x93, 0x84, 0x7a, 0x34, 0x0e, 0xa2, 0x57, 0x9b, 0x53, 0x11, 0x27, 0x31, 0x21, 0x27, + 0x5f, 0x6e, 0x6a, 0x99, 0x8d, 0x79, 0x94, 0x6c, 0x4a, 0xff, 0xc5, 0x4d, 0x18, 0xc7, 0xe3, 0x58, + 0x9f, 0xdf, 0x6c, 0x8c, 0xe2, 0xe8, 0x24, 0x18, 0xcf, 0xa4, 0xc9, 0x24, 0x8e, 0xb4, 0xe4, 0x3d, + 0x07, 0x7b, 0x3f, 0x4c, 0xe5, 0x6e, 0x74, 0x12, 0x93, 0xdb, 0x50, 0xe3, 0x11, 0x3b, 0x0e, 0xb9, + 0xdf, 0xb2, 0xd6, 0xad, 0x0d, 0xbb, 0x53, 0xcf, 0x33, 0xb7, 0x80, 0x68, 0xb1, 0x51, 0x6a, 0x82, + 0x87, 0x9c, 0x49, 0xde, 0x5a, 0x58, 0xb7, 0x36, 0x1c, 0xad, 0x66, 0x20, 0x5a, 0x6c, 0xbc, 0x1e, + 0xd4, 0x0e, 0x0e, 0xfa, 0x48, 0xec, 0xc2, 0xe2, 0x71, 0x1a, 0x84, 0x49, 0xcb, 0x5a, 0xaf, 0x6c, + 0x38, 0x1d, 0x27, 0xcf, 0x5c, 0x0d, 0x50, 0xfd, 0x20, 0x37, 0xa0, 0x22, 0xd2, 0xa8, 0xb5, 0x80, + 0xc7, 0xb5, 0x3c, 0x73, 0x95, 0x48, 0xd5, 0xe2, 0xed, 0x80, 0xbd, 0xcf, 0x92, 0x53, 0xe4, 0xb9, + 0x01, 0x95, 0xe3, 0x20, 0xc2, 0xcb, 0x19, 0xb5, 0xe3, 0x20, 0xa2, 0x6a, 0x21, 0xb7, 0xa0, 0xaa, + 0xbc, 0x34, 0x37, 0xb2, 0xf3, 0xcc, 0x45, 0x99, 0xe2, 0xea, 0xfd, 0xbe, 0x08, 0x8d, 0x3d, 0x15, + 0xa1, 0x2e, 0x4f, 0x58, 0x10, 0x4a, 0xf2, 0x09, 0xd8, 0x18, 0xb1, 0x61, 0xe0, 0x1b, 0xba, 0x46, + 0x9e, 0xb9, 0x25, 0x46, 0x6b, 0xb8, 0xdb, 0x45, 0x67, 0x5f, 0x72, 0x21, 0x83, 0x38, 0x9a, 0x77, + 0xd6, 0x40, 0xb4, 0xd8, 0x90, 0x3b, 0xe0, 0xa8, 0x17, 0x0d, 0xa7, 0x2c, 0x39, 0x6d, 0x55, 0x50, + 0x71, 0x39, 0xcf, 0xdc, 0x19, 0x48, 0x6d, 0xb5, 0x55, 0x9e, 0x90, 0xcf, 0x01, 0xa6, 0x22, 0x1e, + 0x71, 0x29, 0xd5, 0xdb, 0xab, 0xa8, 0xbc, 0x92, 0x67, 0xee, 0x1c, 0x4a, 0x1d, 0xb3, 0xdf, 0xf5, + 0xc9, 0x3d, 0x68, 0x14, 0x07, 0xc8, 0xbe, 0x88, 0x06, 0xcd, 0x3c, 0x73, 0xcf, 0xe0, 0xb4, 0x6e, + 0xa4, 0xe2, 0x1d, 0x32, 0x61, 0x22, 0x19, 0x26, 0xc1, 0x84, 0xb7, 0x96, 0xd6, 0xad, 0x8d, 0x8a, + 0x7e, 0xc7, 0x0c, 0xa5, 0x0e, 0xee, 0x07, 0xc1, 0x84, 0x93, 0x36, 0x5c, 0xc7, 0x44, 0x0c, 0x4f, + 0x44, 0x3c, 0x19, 0xca, 0x38, 0x15, 0x23, 0xde, 0xaa, 0x61, 0x0d, 0x7c, 0x90, 0x67, 0xee, 0xc5, + 0x43, 0xba, 0x8a, 0xd0, 0x43, 0x11, 0x4f, 0x0e, 0x10, 0x20, 0x0f, 0xa0, 0x19, 0xc6, 0xcc, 0x57, + 0x25, 0x32, 0x9c, 0xc4, 0x7e, 0x1a, 0x72, 0xd9, 0xb2, 0x31, 0x9f, 0xff, 0xcf, 0x33, 0xf7, 0xc2, + 0x19, 0x5d, 0x2d, 0x90, 0x27, 0x1a, 0x20, 0xf7, 0x61, 0x55, 0xa4, 0x91, 0xba, 0x59, 0x69, 0xef, + 0xa0, 0xfd, 0xff, 0xf2, 0xcc, 0x3d, 0x7f, 0x44, 0x57, 0x0c, 0x50, 0x58, 0xef, 0x40, 0x75, 0x1a, + 0xa6, 0xb2, 0x05, 0xeb, 0xd6, 0x46, 0x7d, 0xfb, 0xf6, 0xe6, 0xc5, 0x96, 0xd8, 0xc4, 0x02, 0x50, + 0xc5, 0xfe, 0x84, 0x27, 0xac, 0xcb, 0x12, 0xa6, 0xcb, 0x44, 0x99, 0x51, 0x5c, 0xc9, 0x03, 0xa8, + 0x48, 0x19, 0xb6, 0xea, 0xc8, 0xf1, 0xf1, 0x95, 0x1c, 0x07, 0x32, 0x2c, 0x29, 0xb0, 0x0a, 0xa5, + 0x0c, 0xa9, 0x5a, 0x4c, 0xd8, 0x93, 0x54, 0x0e, 0x53, 0x11, 0xb6, 0x1a, 0xb3, 0xd4, 0xce, 0x50, + 0x0c, 0x7b, 0x92, 0xca, 0x43, 0x11, 0x92, 0xaf, 0x61, 0x45, 0xb7, 0x66, 0x2a, 0xf8, 0x90, 0x89, + 0xb1, 0x6c, 0x2d, 0xa3, 0xc7, 0x24, 0xcf, 0xdc, 0x73, 0x27, 0x74, 0xb9, 0x94, 0xdb, 0x62, 0x2c, + 0x3d, 0x06, 0xd7, 0x2f, 0xf8, 0xf3, 0x2f, 0x37, 0xf0, 0xaf, 0x16, 0x34, 0xcf, 0xfb, 0x4b, 0x8e, + 0xc0, 0x96, 0x32, 0x1c, 0x26, 0xaf, 0xa7, 0x1c, 0xdf, 0xb1, 0xb2, 0x7d, 0xf7, 0x7d, 0xe2, 0x54, + 0x02, 0x83, 0xd7, 0x53, 0xae, 0x7b, 0xad, 0xa0, 0xa1, 0x35, 0xa9, 0x61, 0x75, 0x2f, 0x5f, 0xf7, + 0xa7, 0x99, 0x04, 0x78, 0x2f, 0x03, 0xd1, 0x62, 0xe3, 0x79, 0xa6, 0x97, 0x0d, 0x1b, 0x71, 0x60, + 0xb1, 0x73, 0xb8, 0xdb, 0x1f, 0x34, 0xaf, 0x91, 0x1a, 0x54, 0xe8, 0xe1, 0x5e, 0xd3, 0xf2, 0x7e, + 0x5a, 0x80, 0x3a, 0x2a, 0x3d, 0xe2, 0x2c, 0x4c, 0x4e, 0xdf, 0xbf, 0xdf, 0x7f, 0x84, 0x86, 0x06, + 0x75, 0x96, 0x30, 0x40, 0x2b, 0xdb, 0x9f, 0x5d, 0xe9, 0xa3, 0xe6, 0x37, 0xee, 0xa1, 0x89, 0x6e, + 0xcd, 0x79, 0x12, 0xaa, 0xa7, 0xb5, 0x3e, 0x56, 0x75, 0xee, 0xf3, 0xb1, 0x60, 0x3e, 0xf7, 0x87, + 0x82, 0x33, 0x19, 0x47, 0x66, 0x60, 0x60, 0x9d, 0x9f, 0x3b, 0xa2, 0x2b, 0x05, 0x40, 0x51, 0xf6, + 0xbe, 0x30, 0x7e, 0x19, 0xb2, 0x3a, 0xd4, 0x0e, 0xf7, 0x1e, 0xef, 0x3d, 0xfd, 0x7e, 0xaf, 0x79, + 0x8d, 0x00, 0x2c, 0xb5, 0x77, 0x06, 0xbb, 0xcf, 0x7a, 0x4d, 0x8b, 0x34, 0xc0, 0xee, 0xf6, 0xbe, + 0xa3, 0xed, 0x6e, 0xaf, 0xdb, 0x5c, 0xf0, 0xfe, 0xaa, 0x1a, 0xb3, 0x1d, 0x2c, 0x22, 0xb2, 0x0b, + 0x4b, 0x6c, 0x94, 0xa8, 0xa1, 0xa6, 0x73, 0x78, 0x75, 0xbf, 0x68, 0x83, 0x36, 0x2a, 0x77, 0x20, + 0xcf, 0x5c, 0x63, 0x48, 0xcd, 0x93, 0x3c, 0x83, 0xba, 0xae, 0xcc, 0xa1, 0xcf, 0x12, 0x86, 0xf1, + 0xba, 0xa2, 0x77, 0x34, 0x55, 0x97, 0xcb, 0x91, 0x08, 0xa6, 0x49, 0x2c, 0x3a, 0xab, 0x79, 0xe6, + 0xce, 0x1b, 0x53, 0xd0, 0x02, 0x16, 0x5a, 0x0f, 0x6a, 0x6f, 0xb4, 0x88, 0xe1, 0xa9, 0x6f, 0xaf, + 0x5d, 0xc6, 0x79, 0x14, 0x4c, 0xa7, 0xdc, 0x7f, 0x18, 0x84, 0x5c, 0x17, 0x8b, 0x31, 0xa1, 0xc5, + 0x86, 0xdc, 0x87, 0xea, 0x1b, 0x96, 0xbe, 0xc2, 0x31, 0xfb, 0x6e, 0x0e, 0x1c, 0x08, 0x4a, 0x9f, + 0xe2, 0x4a, 0xf6, 0xa1, 0xce, 0x46, 0x38, 0x62, 0xc3, 0x78, 0x2c, 0x71, 0xf4, 0x5e, 0x41, 0xd2, + 0x46, 0xb5, 0x7e, 0x3c, 0x96, 0xda, 0xad, 0x39, 0x33, 0x0a, 0xac, 0x3c, 0x24, 0x7d, 0x00, 0x2e, + 0x44, 0x2c, 0x34, 0xe1, 0x12, 0x12, 0x7e, 0x78, 0x19, 0x61, 0x4f, 0x69, 0x21, 0x1f, 0x0e, 0x90, + 0x99, 0x11, 0x75, 0x78, 0x71, 0x44, 0xbe, 0xd5, 0x03, 0xab, 0x86, 0x34, 0x1f, 0x5d, 0x46, 0x73, + 0x20, 0xc3, 0x1d, 0x2e, 0x92, 0xe0, 0x24, 0x18, 0xb1, 0x84, 0xcb, 0x73, 0xf3, 0xea, 0x39, 0x2c, + 0xfb, 0x81, 0xe0, 0xa3, 0x24, 0x16, 0xaf, 0x87, 0x13, 0x36, 0x6d, 0xd9, 0xc8, 0xb4, 0x7e, 0x19, + 0x53, 0xb7, 0x50, 0x7c, 0xc2, 0xa6, 0x9d, 0xeb, 0x79, 0xe6, 0x9e, 0x35, 0xa5, 0x0d, 0x7f, 0x4e, + 0xc1, 0x3b, 0x02, 0x68, 0x9f, 0xf1, 0x7a, 0x16, 0x10, 0xfc, 0x0b, 0xb8, 0xc2, 0xeb, 0xd2, 0x46, + 0x7b, 0x3d, 0x33, 0xa2, 0x4e, 0x19, 0x44, 0xef, 0x67, 0x0b, 0x9c, 0x52, 0x51, 0x7d, 0xf9, 0x23, + 0x36, 0xe1, 0xa6, 0xad, 0x31, 0x83, 0x4a, 0xa6, 0xb8, 0x12, 0x0f, 0x96, 0x4e, 0x62, 0x31, 0x61, + 0x89, 0x19, 0x75, 0x58, 0xc2, 0x1a, 0xa1, 0xe6, 0x49, 0xee, 0x42, 0x7d, 0xca, 0xc5, 0x24, 0x90, + 0xea, 0x53, 0x2e, 0x4d, 0x37, 0x62, 0x16, 0xe7, 0x60, 0x3a, 0x2f, 0x90, 0x0d, 0xb0, 0x05, 0xd7, + 0xdf, 0x2f, 0x2c, 0x2d, 0x5b, 0xcf, 0x93, 0x02, 0xa3, 0xe5, 0xce, 0x3b, 0x04, 0xa7, 0x4c, 0x25, + 0x79, 0x04, 0x4e, 0x99, 0x48, 0x13, 0x86, 0x5b, 0xff, 0x94, 0x7c, 0xfd, 0x13, 0x51, 0x9a, 0x50, + 0xbb, 0x48, 0xbd, 0xf7, 0x8b, 0x05, 0x76, 0xa1, 0xf5, 0x8e, 0x10, 0xdc, 0x01, 0x27, 0x8c, 0xc7, + 0xc3, 0x90, 0xbf, 0xe4, 0xa1, 0x89, 0x02, 0xd2, 0x96, 0x20, 0xb5, 0xc3, 0x78, 0xdc, 0x57, 0xbb, + 0xff, 0x34, 0x14, 0x77, 0x9e, 0x9a, 0x6f, 0xd6, 0xfc, 0x4c, 0x39, 0x3b, 0xc1, 0x1c, 0x58, 0x6c, + 0xef, 0xef, 0xf7, 0x7f, 0x68, 0x5a, 0xc4, 0x86, 0xea, 0xa0, 0x77, 0x30, 0x68, 0x2e, 0xa8, 0x51, + 0x46, 0x9f, 0xf6, 0xfb, 0x9d, 0xf6, 0xce, 0xe3, 0x66, 0x45, 0x0d, 0x39, 0xda, 0x1b, 0x1c, 0xd2, + 0xbd, 0x66, 0xb5, 0xf3, 0xd5, 0x6f, 0x6f, 0xd7, 0xac, 0x3f, 0xde, 0xae, 0x59, 0x7f, 0xbe, 0x5d, + 0xb3, 0x8e, 0x3e, 0x1d, 0x07, 0xc9, 0x69, 0x7a, 0xbc, 0x39, 0x8a, 0x27, 0x5b, 0x18, 0xd0, 0x2d, + 0x0c, 0xe8, 0x96, 0xf4, 0x5f, 0x6c, 0xbd, 0xdc, 0xde, 0xc2, 0xff, 0xdd, 0x6f, 0x70, 0x3d, 0x5e, + 0xc2, 0xc7, 0xbd, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x56, 0xdc, 0xdc, 0x47, 0x0b, 0x00, + 0x00, } func (m *PlusInfo) Marshal() (dAtA []byte, err error) { diff --git a/sdk/proto/nginx.proto b/sdk/proto/nginx.proto index dcb1386f9..9f6f1ad55 100644 --- a/sdk/proto/nginx.proto +++ b/sdk/proto/nginx.proto @@ -69,7 +69,6 @@ enum NginxConfigAction { TEST = 2; ROLLBACK = 3; RETURN = 4; - PENDING = 5; } message NginxConfig { diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index d0de717b6..dfadb9bb5 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -24,6 +24,34 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +type Status int32 + +const ( + Status_PENDING Status = 0 + Status_OK Status = 1 + Status_ERROR Status = 2 +) + +var Status_name = map[int32]string{ + 0: "PENDING", + 1: "OK", + 2: "ERROR", +} + +var Status_value = map[string]int32{ + "PENDING": 0, + "OK": 1, + "ERROR": 2, +} + +func (x Status) String() string { + return proto.EnumName(Status_name, int32(x)) +} + +func (Status) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{0} +} + type Command_CommandType int32 const ( @@ -130,7 +158,7 @@ func (x UploadStatus_TransferStatus) String() string { } func (UploadStatus_TransferStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6, 0} + return fileDescriptor_213c0bb044472049, []int{7, 0} } // Command is the envelope sent between the management plane and the data plane, requesting some action or reporting a response @@ -422,7 +450,7 @@ type DataplaneStatus struct { Host *HostInfo `protobuf:"bytes,3,opt,name=host,proto3" json:"host"` Healths []*NginxHealth `protobuf:"bytes,5,rep,name=healths,proto3" json:"healths"` DataplaneSoftwareDetails []*DataplaneSoftwareDetails `protobuf:"bytes,6,rep,name=dataplane_software_details,json=dataplaneSoftwareDetails,proto3" json:"dataplane_software_details"` - AgentActivityStatus *AgentActivityStatus `protobuf:"bytes,7,opt,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` + AgentActivityStatus []*AgentActivityStatus `protobuf:"bytes,7,rep,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -496,7 +524,7 @@ func (m *DataplaneStatus) GetDataplaneSoftwareDetails() []*DataplaneSoftwareDeta return nil } -func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { +func (m *DataplaneStatus) GetAgentActivityStatus() []*AgentActivityStatus { if m != nil { return m.AgentActivityStatus } @@ -504,12 +532,8 @@ func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { } type AgentActivityStatus struct { - CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` - Module string `protobuf:"bytes,2,opt,name=Module,proto3" json:"module"` - Type string `protobuf:"bytes,3,opt,name=Type,proto3" json:"type"` - Category string `protobuf:"bytes,4,opt,name=Category,proto3" json:"category"` // Types that are valid to be assigned to Status: - // *AgentActivityStatus_NginxConfigAction + // *AgentActivityStatus_NginxConfigStatus Status isAgentActivityStatus_Status `protobuf_oneof:"Status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -555,11 +579,11 @@ type isAgentActivityStatus_Status interface { Size() int } -type AgentActivityStatus_NginxConfigAction struct { - NginxConfigAction NginxConfigAction `protobuf:"varint,5,opt,name=nginx_config_action,json=nginxConfigAction,proto3,enum=f5.nginx.agent.sdk.NginxConfigAction,oneof" json:"nginx_config_action"` +type AgentActivityStatus_NginxConfigStatus struct { + NginxConfigStatus *NginxConfigStatus `protobuf:"bytes,1,opt,name=nginx_config_status,json=nginxConfigStatus,proto3,oneof" json:"nginx_config_status"` } -func (*AgentActivityStatus_NginxConfigAction) isAgentActivityStatus_Status() {} +func (*AgentActivityStatus_NginxConfigStatus) isAgentActivityStatus_Status() {} func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { if m != nil { @@ -568,46 +592,81 @@ func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { return nil } -func (m *AgentActivityStatus) GetCorrelationID() string { - if m != nil { - return m.CorrelationID +func (m *AgentActivityStatus) GetNginxConfigStatus() *NginxConfigStatus { + if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigStatus); ok { + return x.NginxConfigStatus } - return "" + return nil } -func (m *AgentActivityStatus) GetModule() string { - if m != nil { - return m.Module +// XXX_OneofWrappers is for the internal use of the proto package. +func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*AgentActivityStatus_NginxConfigStatus)(nil), } - return "" } -func (m *AgentActivityStatus) GetType() string { - if m != nil { - return m.Type +type NginxConfigStatus struct { + CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` + Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *NginxConfigStatus) Reset() { *m = NginxConfigStatus{} } +func (m *NginxConfigStatus) String() string { return proto.CompactTextString(m) } +func (*NginxConfigStatus) ProtoMessage() {} +func (*NginxConfigStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{4} +} +func (m *NginxConfigStatus) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *NginxConfigStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_NginxConfigStatus.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil } - return "" +} +func (m *NginxConfigStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_NginxConfigStatus.Merge(m, src) +} +func (m *NginxConfigStatus) XXX_Size() int { + return m.Size() +} +func (m *NginxConfigStatus) XXX_DiscardUnknown() { + xxx_messageInfo_NginxConfigStatus.DiscardUnknown(m) } -func (m *AgentActivityStatus) GetCategory() string { +var xxx_messageInfo_NginxConfigStatus proto.InternalMessageInfo + +func (m *NginxConfigStatus) GetCorrelationID() string { if m != nil { - return m.Category + return m.CorrelationID } return "" } -func (m *AgentActivityStatus) GetNginxConfigAction() NginxConfigAction { - if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigAction); ok { - return x.NginxConfigAction +func (m *NginxConfigStatus) GetStatus() Status { + if m != nil { + return m.Status } - return NginxConfigAction_UNKNOWN + return Status_PENDING } -// XXX_OneofWrappers is for the internal use of the proto package. -func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { - return []interface{}{ - (*AgentActivityStatus_NginxConfigAction)(nil), +func (m *NginxConfigStatus) GetMessage() string { + if m != nil { + return m.Message } + return "" } type DownloadRequest struct { @@ -621,7 +680,7 @@ func (m *DownloadRequest) Reset() { *m = DownloadRequest{} } func (m *DownloadRequest) String() string { return proto.CompactTextString(m) } func (*DownloadRequest) ProtoMessage() {} func (*DownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{4} + return fileDescriptor_213c0bb044472049, []int{5} } func (m *DownloadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -670,7 +729,7 @@ func (m *NginxConfigResponse) Reset() { *m = NginxConfigResponse{} } func (m *NginxConfigResponse) String() string { return proto.CompactTextString(m) } func (*NginxConfigResponse) ProtoMessage() {} func (*NginxConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5} + return fileDescriptor_213c0bb044472049, []int{6} } func (m *NginxConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -733,7 +792,7 @@ func (m *UploadStatus) Reset() { *m = UploadStatus{} } func (m *UploadStatus) String() string { return proto.CompactTextString(m) } func (*UploadStatus) ProtoMessage() {} func (*UploadStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6} + return fileDescriptor_213c0bb044472049, []int{7} } func (m *UploadStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -797,7 +856,7 @@ func (m *DataChunk) Reset() { *m = DataChunk{} } func (m *DataChunk) String() string { return proto.CompactTextString(m) } func (*DataChunk) ProtoMessage() {} func (*DataChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{7} + return fileDescriptor_213c0bb044472049, []int{8} } func (m *DataChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -886,7 +945,7 @@ func (m *ChunkedResourceHeader) Reset() { *m = ChunkedResourceHeader{} } func (m *ChunkedResourceHeader) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceHeader) ProtoMessage() {} func (*ChunkedResourceHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{8} + return fileDescriptor_213c0bb044472049, []int{9} } func (m *ChunkedResourceHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -956,7 +1015,7 @@ func (m *ChunkedResourceChunk) Reset() { *m = ChunkedResourceChunk{} } func (m *ChunkedResourceChunk) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceChunk) ProtoMessage() {} func (*ChunkedResourceChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{9} + return fileDescriptor_213c0bb044472049, []int{10} } func (m *ChunkedResourceChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1007,6 +1066,7 @@ func (m *ChunkedResourceChunk) GetData() []byte { } func init() { + proto.RegisterEnum("f5.nginx.agent.sdk.Status", Status_name, Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.Command_CommandType", Command_CommandType_name, Command_CommandType_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandStatus", CommandStatusResponse_CommandStatus_name, CommandStatusResponse_CommandStatus_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandErrorCode", CommandStatusResponse_CommandErrorCode_name, CommandStatusResponse_CommandErrorCode_value) @@ -1015,6 +1075,7 @@ func init() { proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") proto.RegisterType((*DataplaneStatus)(nil), "f5.nginx.agent.sdk.DataplaneStatus") proto.RegisterType((*AgentActivityStatus)(nil), "f5.nginx.agent.sdk.AgentActivityStatus") + proto.RegisterType((*NginxConfigStatus)(nil), "f5.nginx.agent.sdk.NginxConfigStatus") proto.RegisterType((*DownloadRequest)(nil), "f5.nginx.agent.sdk.DownloadRequest") proto.RegisterType((*NginxConfigResponse)(nil), "f5.nginx.agent.sdk.NginxConfigResponse") proto.RegisterType((*UploadStatus)(nil), "f5.nginx.agent.sdk.UploadStatus") @@ -1026,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1375 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x26, 0x15, 0x9b, 0x92, 0x8e, 0x64, 0x5b, 0xff, 0xd8, 0xf9, 0xab, 0x18, 0x81, 0x69, 0xb0, - 0x4d, 0xe3, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x52, 0x24, 0x2b, 0x53, 0x72, 0x4a, 0x23, 0xb1, 0x55, - 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0xe2, 0xa8, 0x24, 0xe5, 0xc4, 0x41, - 0xf7, 0x05, 0x8a, 0x02, 0x5d, 0x14, 0x5d, 0xf4, 0x29, 0xba, 0xec, 0x2b, 0x74, 0x99, 0x27, 0x20, - 0x8a, 0x2c, 0xf9, 0x00, 0x5d, 0x17, 0x73, 0xa1, 0x4c, 0x59, 0x94, 0x5c, 0xc3, 0xdd, 0x68, 0x86, - 0x33, 0xdf, 0xf9, 0xce, 0x65, 0xce, 0x9c, 0x33, 0x82, 0x25, 0x87, 0x0e, 0x06, 0xb6, 0xef, 0x36, - 0x86, 0x01, 0x8d, 0x28, 0x42, 0x87, 0x5f, 0x34, 0xfc, 0x9e, 0xe7, 0xbf, 0x69, 0xd8, 0x3d, 0xe2, - 0x47, 0x8d, 0xd0, 0x3d, 0x5a, 0x87, 0x1e, 0xed, 0x51, 0xb1, 0xbf, 0x5e, 0x65, 0x70, 0xea, 0xcb, - 0xaf, 0x8a, 0x00, 0x89, 0x0f, 0xe8, 0xd3, 0x30, 0x9d, 0x57, 0x04, 0xc7, 0x58, 0xc6, 0x3f, 0xf4, - 0x7a, 0xf2, 0x0b, 0x91, 0x13, 0xe2, 0x47, 0x61, 0x93, 0x0f, 0x72, 0xed, 0x86, 0x3b, 0xec, 0x86, - 0xf4, 0x30, 0x7a, 0x6d, 0x07, 0xa4, 0xeb, 0x92, 0xc8, 0xf6, 0x8e, 0x43, 0xb1, 0x65, 0xfc, 0x02, - 0x50, 0x6c, 0x09, 0x13, 0xd1, 0x7d, 0x58, 0x18, 0x90, 0xc8, 0xae, 0xab, 0x9b, 0xea, 0x56, 0x65, - 0xfb, 0x66, 0x63, 0xda, 0xd6, 0xc6, 0x3e, 0x89, 0x6c, 0xd7, 0x8e, 0x6c, 0xb3, 0x94, 0xc4, 0x3a, - 0x47, 0x63, 0xfe, 0x8b, 0x76, 0x61, 0x21, 0x3a, 0x1d, 0x92, 0x7a, 0x61, 0x53, 0xdd, 0x5a, 0xde, - 0xbe, 0x9d, 0x27, 0x2b, 0xd5, 0xa4, 0xe3, 0xd3, 0xd3, 0x21, 0x11, 0x34, 0x4c, 0x10, 0xf3, 0x5f, - 0xf4, 0x12, 0xc0, 0x19, 0xb8, 0xdd, 0x30, 0xb2, 0xa3, 0x51, 0x58, 0xbf, 0xc6, 0x0d, 0xb9, 0x33, - 0x87, 0xec, 0x09, 0x07, 0x62, 0x12, 0x0e, 0xa9, 0x1f, 0x12, 0x73, 0x39, 0x89, 0xf5, 0x0c, 0x81, - 0xa5, 0xe0, 0xb2, 0x33, 0x90, 0x20, 0xf4, 0x1c, 0xaa, 0x9c, 0xa5, 0x2b, 0xe2, 0x55, 0x5f, 0xe0, - 0xec, 0x7a, 0x1e, 0xfb, 0x01, 0xfb, 0x6e, 0x71, 0x98, 0x59, 0x4b, 0x62, 0x7d, 0x42, 0xd0, 0x52, - 0xb0, 0x88, 0xbf, 0x00, 0xa0, 0x37, 0x70, 0x3d, 0xbb, 0xdd, 0x0d, 0xa4, 0x35, 0xf5, 0x45, 0xae, - 0xe0, 0xf6, 0x05, 0x0a, 0xc6, 0xc6, 0xdf, 0x48, 0x62, 0x3d, 0x9f, 0xc9, 0x52, 0xf0, 0xaa, 0x3f, - 0x2d, 0xc1, 0x34, 0x73, 0x4a, 0x86, 0xf7, 0x89, 0x13, 0x75, 0x03, 0xf2, 0xdd, 0x88, 0x84, 0x51, - 0x5d, 0x9b, 0xad, 0x79, 0x87, 0xcd, 0x5a, 0x02, 0x8f, 0x05, 0x5c, 0x68, 0xce, 0x65, 0x62, 0x9a, - 0xed, 0x69, 0x09, 0xf4, 0x3d, 0xfc, 0xff, 0x3c, 0x5e, 0x3a, 0x5d, 0xe4, 0xaa, 0xb7, 0x2e, 0x56, - 0x2d, 0xbd, 0x5e, 0x4f, 0x62, 0x7d, 0x06, 0x97, 0xa5, 0xe0, 0x35, 0x3b, 0x47, 0x06, 0x45, 0xb0, - 0x36, 0x96, 0x10, 0x71, 0x12, 0x6e, 0x97, 0xb8, 0xee, 0x8f, 0xe7, 0xe9, 0xe6, 0xe1, 0x13, 0x5e, - 0xd7, 0x93, 0x58, 0xcf, 0xe5, 0xb1, 0x14, 0x8c, 0xec, 0x29, 0x3c, 0xcb, 0x9f, 0x2c, 0xba, 0x5e, - 0x9e, 0x9d, 0x3f, 0x19, 0x6d, 0x22, 0x7f, 0xb2, 0x82, 0x2c, 0x7f, 0x32, 0xf4, 0xe8, 0x10, 0x6a, - 0xec, 0x4a, 0x0d, 0x8f, 0x6d, 0x9f, 0xa4, 0x99, 0x5f, 0xe1, 0xdc, 0x1f, 0xe6, 0x71, 0xb7, 0x53, - 0xac, 0x48, 0x6b, 0x73, 0x2d, 0x89, 0xf5, 0x29, 0x02, 0x4b, 0xc1, 0x2b, 0xee, 0x24, 0x10, 0x7d, - 0x0b, 0x55, 0x5e, 0x14, 0xba, 0x01, 0x19, 0xd2, 0x20, 0xaa, 0x57, 0x67, 0x47, 0x4b, 0xd4, 0x90, - 0xc6, 0x2e, 0x1b, 0x30, 0x47, 0x0b, 0x37, 0xb2, 0xf2, 0xcc, 0x0d, 0x72, 0x06, 0x40, 0x3f, 0xa9, - 0xb0, 0x9e, 0x31, 0xe3, 0x5c, 0xb9, 0xa9, 0x2f, 0x71, 0x6d, 0x9f, 0xce, 0xf7, 0x48, 0x0a, 0xb5, - 0x85, 0x8c, 0xb9, 0x91, 0xc4, 0xfa, 0x1c, 0x4e, 0x4b, 0xc1, 0x75, 0x77, 0x86, 0xac, 0x71, 0x17, - 0x2a, 0x99, 0x42, 0x83, 0x00, 0xb4, 0x83, 0x0e, 0xde, 0xdf, 0x79, 0x5c, 0x53, 0x50, 0x15, 0x4a, - 0xed, 0xce, 0x8b, 0x83, 0xc7, 0x9d, 0x9d, 0x76, 0x4d, 0x65, 0x3b, 0xcf, 0xbe, 0xe6, 0xf3, 0x82, - 0xa9, 0xc1, 0x02, 0x23, 0x34, 0x7e, 0xbd, 0x06, 0xd7, 0x73, 0x2b, 0x0c, 0xfa, 0x06, 0x34, 0x79, - 0x44, 0x2a, 0xaf, 0x74, 0xf7, 0xfe, 0x75, 0x71, 0x9a, 0x5c, 0x35, 0x21, 0x89, 0x75, 0x49, 0x85, - 0xe5, 0x88, 0x3c, 0x00, 0x12, 0x04, 0x34, 0xe8, 0x3a, 0xd4, 0x4d, 0x4b, 0xe9, 0xfd, 0x4b, 0x2b, - 0xd8, 0x65, 0x14, 0x2d, 0xea, 0xca, 0x72, 0x78, 0xc6, 0x88, 0xcb, 0x24, 0xdd, 0x42, 0xb7, 0xa0, - 0x38, 0x20, 0x61, 0x68, 0xf7, 0x08, 0xaf, 0xb2, 0x65, 0xb3, 0x92, 0xc4, 0x7a, 0xba, 0x84, 0xd3, - 0x09, 0xd2, 0x61, 0x91, 0xcb, 0xf0, 0x62, 0x59, 0x36, 0xcb, 0x49, 0xac, 0x8b, 0x05, 0x2c, 0x06, - 0xe3, 0x01, 0x2c, 0x4d, 0x18, 0x83, 0x56, 0xa0, 0xd2, 0xda, 0x6f, 0x77, 0x9f, 0x1d, 0x3c, 0x3a, - 0xe8, 0xbc, 0x38, 0xa8, 0x29, 0x2c, 0xbe, 0x6c, 0xa1, 0xf3, 0xa8, 0xa6, 0xa2, 0x25, 0x28, 0xb3, - 0xf9, 0x2e, 0xc6, 0x1d, 0x5c, 0x2b, 0x18, 0x4d, 0xa8, 0x9d, 0xb7, 0x99, 0xc1, 0x77, 0x31, 0x66, - 0x70, 0x85, 0x71, 0xb1, 0x79, 0xca, 0xa5, 0x1a, 0x3f, 0x2f, 0xc0, 0xca, 0xb9, 0xfc, 0x47, 0x9f, - 0x40, 0x39, 0x3c, 0x0d, 0x23, 0x32, 0xe8, 0x7a, 0x2e, 0x3f, 0x94, 0xb2, 0xb9, 0x94, 0xc4, 0xfa, - 0xd9, 0x22, 0x2e, 0x89, 0xe9, 0x9e, 0x8b, 0xbe, 0x82, 0x62, 0x9a, 0x8f, 0x85, 0xcd, 0x6b, 0x5b, - 0x95, 0xed, 0xcd, 0x99, 0xc5, 0x39, 0xcd, 0x41, 0x1e, 0x17, 0x29, 0x84, 0xd3, 0x09, 0x6b, 0x95, - 0xac, 0x1d, 0xcb, 0x0e, 0x95, 0xdb, 0x2a, 0x2d, 0x1a, 0x46, 0x7b, 0xfe, 0x21, 0x15, 0x3d, 0x8e, - 0xa1, 0x31, 0xff, 0x45, 0x0f, 0xa1, 0xd8, 0x27, 0xf6, 0x71, 0xd4, 0x0f, 0xeb, 0x8b, 0xdc, 0x88, - 0xd9, 0x2d, 0xc8, 0xe2, 0x38, 0x61, 0x83, 0x94, 0xc1, 0xe9, 0x04, 0xfd, 0x38, 0xff, 0xc2, 0x69, - 0x9c, 0xfb, 0x3f, 0xbd, 0x70, 0xb3, 0xaf, 0x1b, 0x3a, 0x49, 0x5b, 0x91, 0xed, 0x44, 0xde, 0x89, - 0x17, 0x9d, 0xa6, 0x95, 0xac, 0x78, 0x41, 0x2b, 0xda, 0x91, 0x78, 0x79, 0x2d, 0x32, 0xad, 0xe8, - 0x1c, 0x93, 0x6c, 0x44, 0x93, 0x78, 0xe3, 0x8f, 0x02, 0xac, 0xe6, 0xf0, 0xa0, 0x2f, 0x59, 0x5e, - 0x06, 0x01, 0x39, 0xb6, 0x23, 0x8f, 0xfa, 0x7b, 0x6d, 0x99, 0x19, 0x28, 0x89, 0xf5, 0x65, 0xe7, - 0x6c, 0x83, 0xa5, 0xc7, 0x24, 0x10, 0x19, 0xa0, 0xed, 0x53, 0x77, 0x74, 0x2c, 0x2e, 0x60, 0x59, - 0x5c, 0xd4, 0x01, 0x5f, 0xc1, 0x72, 0x07, 0xdd, 0x84, 0x05, 0x56, 0x55, 0xe4, 0xd5, 0xc9, 0x3c, - 0x62, 0x78, 0xad, 0xd9, 0x82, 0x52, 0xcb, 0x8e, 0x48, 0x8f, 0x06, 0xa7, 0xf2, 0xde, 0x54, 0x93, - 0x58, 0x2f, 0x39, 0x72, 0x0d, 0x8f, 0x77, 0xd1, 0x10, 0x56, 0x27, 0x1a, 0x3e, 0x73, 0x99, 0xfa, - 0xfc, 0xe1, 0xb0, 0xbc, 0x7d, 0xeb, 0x82, 0x87, 0xc3, 0x0e, 0x07, 0x9b, 0x1f, 0x24, 0xb1, 0x9e, - 0xc7, 0x62, 0x29, 0xf8, 0x7f, 0xfe, 0x14, 0xba, 0x04, 0x9a, 0x8c, 0xdc, 0x3e, 0xac, 0xb4, 0xe9, - 0x6b, 0xff, 0x98, 0xda, 0x6e, 0xda, 0xe1, 0xae, 0xf0, 0x00, 0x34, 0x7e, 0x28, 0xc0, 0x6a, 0xce, - 0xab, 0x06, 0xed, 0x4f, 0x14, 0xcc, 0x4b, 0xbd, 0xe6, 0xf2, 0x4a, 0xe4, 0x1e, 0x68, 0x32, 0x48, - 0x85, 0xcb, 0x04, 0x89, 0x53, 0x09, 0x41, 0x2c, 0x47, 0xf4, 0x1c, 0x2a, 0x32, 0x60, 0xcc, 0x21, - 0x79, 0x95, 0x3f, 0xca, 0x37, 0x8f, 0xc1, 0xda, 0x24, 0x74, 0x02, 0x6f, 0x18, 0xd1, 0xc0, 0x5c, - 0x49, 0x62, 0x3d, 0x2b, 0x8c, 0x41, 0x7c, 0xb0, 0x8b, 0x65, 0xfc, 0xad, 0x42, 0xf5, 0xd9, 0x90, - 0xc5, 0x55, 0xe6, 0xe2, 0x55, 0xde, 0xd5, 0x4f, 0xc6, 0xe1, 0x13, 0xfe, 0x36, 0xf3, 0xa4, 0xb3, - 0xda, 0x1a, 0x4f, 0x03, 0xdb, 0x0f, 0x0f, 0x49, 0x30, 0xa7, 0xcf, 0x18, 0xa0, 0x05, 0xc4, 0x0e, - 0xa9, 0x2f, 0x13, 0x98, 0x63, 0xc4, 0x0a, 0x96, 0xa3, 0xf1, 0x39, 0x2c, 0x4f, 0x32, 0xa1, 0x0a, - 0x14, 0xcf, 0xaa, 0xba, 0x06, 0x05, 0x5e, 0xd1, 0x01, 0xb4, 0x87, 0x3b, 0x7b, 0x8f, 0x77, 0xdb, - 0xb5, 0x82, 0xf1, 0xbb, 0x0a, 0x65, 0x16, 0x81, 0x56, 0x7f, 0xe4, 0x1f, 0xa1, 0x0e, 0x68, 0x7d, - 0x62, 0xbb, 0x24, 0x98, 0x7b, 0xf0, 0x0c, 0x4a, 0x5c, 0x4c, 0x42, 0x3a, 0x0a, 0x1c, 0x62, 0x71, - 0x01, 0x61, 0x8f, 0x10, 0xb6, 0x14, 0x2c, 0x67, 0xc8, 0x12, 0xcd, 0x99, 0x07, 0x62, 0xc6, 0x0b, - 0xf3, 0x1c, 0x1d, 0xff, 0x14, 0x21, 0x65, 0x92, 0x96, 0x82, 0xf9, 0x68, 0x16, 0x61, 0xd1, 0x61, - 0x5b, 0xc6, 0x3b, 0x15, 0xae, 0xe7, 0x9a, 0x70, 0xa5, 0x33, 0x33, 0x40, 0xe3, 0xf4, 0xe2, 0xcc, - 0x16, 0x85, 0x3b, 0x62, 0x05, 0xcb, 0x91, 0xd5, 0x08, 0xa7, 0x4f, 0x9c, 0xa3, 0x70, 0x34, 0x90, - 0x87, 0x20, 0x6a, 0x84, 0x5c, 0xc3, 0xe3, 0x19, 0xfa, 0x0c, 0x80, 0xcb, 0x74, 0x43, 0xef, 0x2d, - 0xe1, 0xf5, 0x64, 0x51, 0xfe, 0xcf, 0x19, 0xaf, 0xe2, 0x32, 0x9f, 0x3f, 0xf1, 0xde, 0x12, 0xe3, - 0x37, 0x15, 0xd6, 0xf2, 0xc2, 0x70, 0x25, 0x8f, 0x6e, 0x33, 0x6b, 0x99, 0x36, 0xcf, 0x95, 0x3e, - 0x49, 0x6b, 0xc5, 0x1a, 0x2e, 0xf2, 0xd9, 0x9e, 0xcb, 0x0a, 0xe3, 0xf8, 0x32, 0x55, 0xcf, 0x22, - 0x2f, 0xe3, 0x7e, 0xef, 0xcf, 0xf7, 0x1b, 0xea, 0xbb, 0xf7, 0x1b, 0xea, 0x5f, 0xef, 0x37, 0xd4, - 0x97, 0x77, 0x7a, 0x5e, 0xd4, 0x1f, 0xbd, 0x6a, 0x38, 0x74, 0xd0, 0xe4, 0x96, 0x34, 0xb9, 0x25, - 0xcd, 0xd0, 0x3d, 0x6a, 0x9e, 0x6c, 0x37, 0xf9, 0xff, 0xd3, 0x07, 0xfc, 0xf7, 0x95, 0xc6, 0x87, - 0xbb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x88, 0x7b, 0xcf, 0x4e, 0x0f, 0x00, 0x00, + // 1371 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, + 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, + 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xa3, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, + 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, + 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0xbd, 0xec, 0x43, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, + 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0xa3, 0xab, + 0xdf, 0xf9, 0x9d, 0x3f, 0xf7, 0xdc, 0x73, 0x64, 0x58, 0xb2, 0xbc, 0xc1, 0xc0, 0x74, 0xed, 0xda, + 0xd0, 0xf7, 0x42, 0x0f, 0xa1, 0xfd, 0xaf, 0x6a, 0x6e, 0xcf, 0x71, 0xdf, 0xd4, 0xcc, 0x1e, 0x71, + 0xc3, 0x5a, 0x60, 0x1f, 0xac, 0x43, 0xcf, 0xeb, 0x79, 0xfc, 0xfd, 0x7a, 0x99, 0xc2, 0x3d, 0x57, + 0x3c, 0x95, 0x38, 0x88, 0x3f, 0x40, 0xdf, 0x0b, 0x12, 0xb9, 0xc4, 0x39, 0x46, 0x3a, 0xee, 0xbe, + 0xd3, 0x13, 0x4f, 0x88, 0x1c, 0x13, 0x37, 0x0c, 0xea, 0x6c, 0x11, 0x7b, 0x57, 0xed, 0x61, 0x37, + 0xf0, 0xf6, 0xc3, 0xd7, 0xa6, 0x4f, 0xba, 0x36, 0x09, 0x4d, 0xe7, 0x30, 0xe0, 0xaf, 0xb4, 0xdf, + 0x00, 0x0a, 0xbb, 0xdc, 0x45, 0x74, 0x17, 0x16, 0x06, 0x24, 0x34, 0xab, 0xf2, 0xa6, 0xbc, 0x55, + 0xda, 0xbe, 0x56, 0x9b, 0xf6, 0xb5, 0xb6, 0x47, 0x42, 0xd3, 0x36, 0x43, 0x53, 0x5f, 0x8c, 0x23, + 0x95, 0xa1, 0x31, 0xfb, 0x45, 0x4d, 0x58, 0x08, 0x4f, 0x86, 0xa4, 0x9a, 0xdb, 0x94, 0xb7, 0x96, + 0xb7, 0x6f, 0x64, 0xe9, 0x0a, 0x33, 0xc9, 0xfa, 0xf4, 0x64, 0x48, 0x38, 0x0d, 0x55, 0xc4, 0xec, + 0x17, 0xbd, 0x04, 0xb0, 0x06, 0x76, 0x37, 0x08, 0xcd, 0xf0, 0x28, 0xa8, 0x5e, 0x62, 0x8e, 0xdc, + 0x9c, 0x43, 0xf6, 0x84, 0x01, 0x31, 0x09, 0x86, 0x9e, 0x1b, 0x10, 0x7d, 0x39, 0x8e, 0xd4, 0x14, + 0x81, 0x21, 0xe1, 0xa2, 0x35, 0x10, 0x20, 0xf4, 0x1c, 0xca, 0x8c, 0xa5, 0xcb, 0xf3, 0x55, 0x5d, + 0x60, 0xec, 0x6a, 0x16, 0x7b, 0x9b, 0x3e, 0xef, 0x32, 0x98, 0x5e, 0x89, 0x23, 0x75, 0x4c, 0xd1, + 0x90, 0x30, 0xcf, 0x3f, 0x07, 0xa0, 0x37, 0x70, 0x25, 0xfd, 0xba, 0xeb, 0x0b, 0x6f, 0xaa, 0x79, + 0x66, 0xe0, 0xc6, 0x39, 0x06, 0x46, 0xce, 0x5f, 0x8d, 0x23, 0x35, 0x9b, 0xc9, 0x90, 0xf0, 0xaa, + 0x3b, 0xad, 0x41, 0x2d, 0x33, 0x4a, 0x8a, 0x77, 0x89, 0x15, 0x76, 0x7d, 0xf2, 0xfd, 0x11, 0x09, + 0xc2, 0xaa, 0x32, 0xdb, 0xf2, 0x0e, 0x95, 0x76, 0x39, 0x1e, 0x73, 0x38, 0xb7, 0x9c, 0xc9, 0x44, + 0x2d, 0x9b, 0xd3, 0x1a, 0xe8, 0x07, 0xf8, 0x68, 0x12, 0x2f, 0x82, 0x2e, 0x30, 0xd3, 0x5b, 0xe7, + 0x9b, 0x16, 0x51, 0xaf, 0xc7, 0x91, 0x3a, 0x83, 0xcb, 0x90, 0xf0, 0x9a, 0x99, 0xa1, 0x83, 0x42, + 0x58, 0x1b, 0x69, 0xf0, 0x3c, 0xf1, 0xb0, 0x17, 0x99, 0xed, 0xcf, 0xe6, 0xd9, 0x66, 0xe9, 0xe3, + 0x51, 0x57, 0xe3, 0x48, 0xcd, 0xe4, 0x31, 0x24, 0x8c, 0xcc, 0x29, 0x3c, 0xad, 0x9f, 0x34, 0xba, + 0x5a, 0x9c, 0x5d, 0x3f, 0x29, 0x6b, 0xbc, 0x7e, 0xd2, 0x8a, 0xb4, 0x7e, 0x52, 0xf4, 0x68, 0x1f, + 0x2a, 0xf4, 0x4a, 0x0d, 0x0f, 0x4d, 0x97, 0x24, 0x95, 0x5f, 0x62, 0xdc, 0x9f, 0x64, 0x71, 0x37, + 0x12, 0x2c, 0x2f, 0x6b, 0x7d, 0x2d, 0x8e, 0xd4, 0x29, 0x02, 0x43, 0xc2, 0x2b, 0xf6, 0x38, 0x10, + 0x7d, 0x07, 0x65, 0xd6, 0x14, 0xba, 0x3e, 0x19, 0x7a, 0x7e, 0x58, 0x2d, 0xcf, 0xce, 0x16, 0xef, + 0x21, 0xb5, 0x26, 0x5d, 0x30, 0x43, 0xf3, 0x30, 0xd2, 0xfa, 0x34, 0x0c, 0x72, 0x06, 0x40, 0x3f, + 0xcb, 0xb0, 0x9e, 0x72, 0x63, 0xa2, 0xdd, 0x54, 0x97, 0x98, 0xb5, 0xcf, 0xe7, 0x47, 0x24, 0x94, + 0x1a, 0x5c, 0x47, 0xdf, 0x88, 0x23, 0x75, 0x0e, 0xa7, 0x21, 0xe1, 0xaa, 0x3d, 0x43, 0x57, 0xbb, + 0x0d, 0xa5, 0x54, 0xa3, 0x41, 0x00, 0x4a, 0xbb, 0x83, 0xf7, 0x76, 0x1e, 0x55, 0x24, 0x54, 0x86, + 0xc5, 0x46, 0xe7, 0x45, 0xfb, 0x51, 0x67, 0xa7, 0x51, 0x91, 0xe9, 0x9b, 0x67, 0x8f, 0x99, 0x9c, + 0xd3, 0x15, 0x58, 0xa0, 0x84, 0xda, 0xef, 0x97, 0xe0, 0x4a, 0x66, 0x87, 0x41, 0xdf, 0x82, 0x22, + 0x8e, 0x48, 0x66, 0x9d, 0xee, 0xce, 0x7b, 0x37, 0xa7, 0xf1, 0x5d, 0x1d, 0xe2, 0x48, 0x15, 0x54, + 0x58, 0xac, 0xc8, 0x01, 0x20, 0xbe, 0xef, 0xf9, 0x5d, 0xcb, 0xb3, 0x93, 0x56, 0x7a, 0xf7, 0x83, + 0x0d, 0x34, 0x29, 0xc5, 0xae, 0x67, 0x8b, 0x76, 0x78, 0xc6, 0x88, 0x8b, 0x24, 0x79, 0x85, 0xae, + 0x43, 0x61, 0x40, 0x82, 0xc0, 0xec, 0x11, 0xd6, 0x65, 0x8b, 0x7a, 0x29, 0x8e, 0xd4, 0x64, 0x0b, + 0x27, 0x02, 0x52, 0x21, 0xcf, 0x74, 0x58, 0xb3, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, + 0x8b, 0x76, 0x0f, 0x96, 0xc6, 0x9c, 0x41, 0x2b, 0x50, 0xda, 0xdd, 0x6b, 0x74, 0x9f, 0xb5, 0x1f, + 0xb6, 0x3b, 0x2f, 0xda, 0x15, 0x89, 0xe6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x04, 0x45, + 0x2a, 0x37, 0x31, 0xee, 0xe0, 0x4a, 0x4e, 0xab, 0x43, 0x65, 0xd2, 0x67, 0x0a, 0x6f, 0x62, 0x4c, + 0xe1, 0x12, 0xe5, 0xa2, 0x72, 0xc2, 0x25, 0x6b, 0xbf, 0x2c, 0xc0, 0xca, 0x44, 0xfd, 0xa3, 0x5b, + 0x50, 0x0c, 0x4e, 0x82, 0x90, 0x0c, 0xba, 0x8e, 0xcd, 0x0e, 0xa5, 0xa8, 0x2f, 0xc5, 0x91, 0x7a, + 0xb6, 0x89, 0x17, 0xb9, 0xd8, 0xb2, 0xd1, 0x03, 0x28, 0x24, 0xf5, 0x98, 0xdb, 0xbc, 0xb4, 0x55, + 0xda, 0xde, 0x9c, 0xd9, 0x9c, 0x93, 0x1a, 0x64, 0x79, 0x11, 0x4a, 0x38, 0x11, 0xe8, 0xa8, 0xa4, + 0xe3, 0x58, 0x4c, 0xa8, 0xcc, 0x51, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0x3e, 0xe3, 0x28, + 0x1a, 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x4e, 0xcc, + 0x1e, 0x41, 0x06, 0xc3, 0x71, 0x1f, 0x84, 0x0e, 0x4e, 0x04, 0xf4, 0xd3, 0xfc, 0x0b, 0xa7, 0x30, + 0xee, 0xff, 0xf5, 0xc2, 0xcd, 0xbe, 0x6e, 0xe8, 0x38, 0x19, 0x45, 0xa6, 0x15, 0x3a, 0xc7, 0x4e, + 0x78, 0x92, 0x74, 0xb2, 0x02, 0x73, 0x63, 0xf6, 0x28, 0xda, 0x11, 0x78, 0x71, 0x2d, 0x52, 0xa3, + 0x68, 0x82, 0x49, 0x0c, 0xa2, 0x71, 0xbc, 0xf6, 0xab, 0x0c, 0xab, 0x19, 0x3c, 0x68, 0x08, 0xab, + 0x63, 0xa3, 0x34, 0x75, 0x69, 0x4b, 0xdb, 0xd7, 0xcf, 0x19, 0xc9, 0xc2, 0x97, 0x8f, 0xe3, 0x48, + 0xcd, 0x62, 0x31, 0x24, 0x7c, 0xd9, 0x9d, 0x42, 0x2f, 0x82, 0x22, 0x7c, 0xfa, 0x4b, 0x86, 0xcb, + 0x53, 0x6c, 0xe8, 0x6b, 0x7a, 0x53, 0x7c, 0x9f, 0x1c, 0x9a, 0xa1, 0xe3, 0xb9, 0xad, 0x86, 0xa8, + 0x55, 0x14, 0x47, 0xea, 0xb2, 0x75, 0xf6, 0x82, 0x16, 0xec, 0x38, 0x10, 0x7d, 0x33, 0xea, 0x39, + 0xbc, 0x25, 0xac, 0x67, 0xb9, 0x3f, 0xa7, 0xad, 0xbc, 0xdf, 0x5d, 0xd7, 0xf6, 0x60, 0xa5, 0xe1, + 0xbd, 0x76, 0x0f, 0x3d, 0xd3, 0x4e, 0x46, 0xde, 0x05, 0xbe, 0x08, 0xb5, 0x1f, 0x73, 0xb0, 0x9a, + 0xf1, 0x99, 0x83, 0xf6, 0xc6, 0x3a, 0xe8, 0x07, 0x7d, 0xde, 0x65, 0x05, 0xd7, 0x02, 0x85, 0x16, + 0x8a, 0xe7, 0x8a, 0xe4, 0x9c, 0x77, 0xb6, 0x3b, 0x0c, 0xcc, 0xa9, 0xb8, 0x22, 0x16, 0x2b, 0x7a, + 0x0e, 0x25, 0x71, 0xce, 0x34, 0x20, 0x71, 0xb7, 0x3f, 0xcd, 0x76, 0x8f, 0xc2, 0x1a, 0x24, 0xb0, + 0x7c, 0x67, 0x18, 0x7a, 0xbe, 0xbe, 0x12, 0x47, 0x6a, 0x5a, 0x19, 0x03, 0x7f, 0xa0, 0x37, 0x4d, + 0xfb, 0x57, 0x86, 0xf2, 0xb3, 0x21, 0xcd, 0xab, 0x28, 0x85, 0x8b, 0x7c, 0x68, 0x3f, 0x99, 0x28, + 0x86, 0x7a, 0x96, 0x76, 0xda, 0x5a, 0xed, 0xa9, 0x6f, 0xba, 0xc1, 0x3e, 0xf1, 0xe7, 0x54, 0x88, + 0x06, 0x8a, 0x4f, 0xcc, 0xc0, 0x73, 0x45, 0x81, 0x30, 0x0c, 0xdf, 0xc1, 0x62, 0xd5, 0xbe, 0x84, + 0xe5, 0x71, 0x26, 0x54, 0x82, 0xc2, 0x59, 0x9b, 0x57, 0x20, 0xc7, 0x5a, 0x3c, 0x80, 0x72, 0x7f, + 0xa7, 0xf5, 0xa8, 0xd9, 0xa8, 0xe4, 0xb4, 0x3f, 0x65, 0x28, 0xd2, 0x0c, 0xec, 0xf6, 0x8f, 0xdc, + 0x03, 0xd4, 0x01, 0xa5, 0x4f, 0x4c, 0x9b, 0xf8, 0x73, 0x0f, 0x9e, 0x42, 0x89, 0x8d, 0x49, 0xe0, + 0x1d, 0xf9, 0x16, 0x31, 0x98, 0x02, 0xf7, 0x87, 0x2b, 0x1b, 0x12, 0x16, 0x12, 0x32, 0xf8, 0xb4, + 0x66, 0x89, 0x98, 0xf1, 0xc9, 0x39, 0x41, 0xc7, 0x1e, 0x79, 0x4a, 0xa9, 0xa6, 0x21, 0x61, 0xb6, + 0xea, 0x05, 0xc8, 0x5b, 0xf4, 0x95, 0xf6, 0x4e, 0x86, 0x2b, 0x99, 0x2e, 0x5c, 0xe8, 0xcc, 0x34, + 0x50, 0x18, 0x3d, 0x3f, 0xb3, 0x3c, 0x0f, 0x87, 0xef, 0x60, 0xb1, 0xa2, 0x2d, 0x58, 0xb4, 0xfa, + 0xc4, 0x3a, 0x08, 0x8e, 0x06, 0xe2, 0x10, 0xca, 0x71, 0xa4, 0x8e, 0xf6, 0xf0, 0x48, 0x42, 0x5f, + 0x00, 0x30, 0x9d, 0x6e, 0xe0, 0xbc, 0x25, 0x6c, 0x30, 0xe7, 0xc5, 0x1f, 0x9f, 0xd1, 0x2e, 0x2e, + 0x32, 0xf9, 0x89, 0xf3, 0x96, 0x68, 0x7f, 0xc8, 0xb0, 0x96, 0x95, 0x86, 0x0b, 0x45, 0x74, 0x83, + 0x7a, 0x4b, 0xad, 0x39, 0xb6, 0x88, 0x49, 0x78, 0xcb, 0xf7, 0x70, 0x81, 0x49, 0x2d, 0x1b, 0x5d, + 0x13, 0x67, 0x44, 0x43, 0x2a, 0x9f, 0x65, 0x9e, 0xe7, 0xfd, 0xd6, 0x56, 0xd2, 0x33, 0x69, 0x2d, + 0x3d, 0x6e, 0xb6, 0x1b, 0xad, 0xf6, 0x83, 0x54, 0x2d, 0x15, 0x21, 0x2f, 0x3e, 0x15, 0xf4, 0x3b, + 0x7f, 0x9f, 0x6e, 0xc8, 0xef, 0x4e, 0x37, 0xe4, 0x7f, 0x4e, 0x37, 0xe4, 0x97, 0x37, 0x7b, 0x4e, + 0xd8, 0x3f, 0x7a, 0x55, 0xb3, 0xbc, 0x41, 0x9d, 0xf9, 0x5c, 0x67, 0x3e, 0xd7, 0x03, 0xfb, 0xa0, + 0x7e, 0xbc, 0x5d, 0x67, 0x7f, 0x6d, 0xef, 0xb1, 0xdf, 0x57, 0x0a, 0x5b, 0x6e, 0xff, 0x17, 0x00, + 0x00, 0xff, 0xff, 0xb6, 0x04, 0xb9, 0x73, 0x89, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1453,17 +1514,19 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if m.AgentActivityStatus != nil { - { - size, err := m.AgentActivityStatus.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.AgentActivityStatus) > 0 { + for iNdEx := len(m.AgentActivityStatus) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.AgentActivityStatus[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) } - i -= size - i = encodeVarintCommand(dAtA, i, uint64(size)) + i-- + dAtA[i] = 0x3a } - i-- - dAtA[i] = 0x3a } if len(m.DataplaneSoftwareDetails) > 0 { for iNdEx := len(m.DataplaneSoftwareDetails) - 1; iNdEx >= 0; iNdEx-- { @@ -1562,26 +1625,65 @@ func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { } } } - if len(m.Category) > 0 { - i -= len(m.Category) - copy(dAtA[i:], m.Category) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Category))) + return len(dAtA) - i, nil +} + +func (m *AgentActivityStatus_NginxConfigStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus_NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.NginxConfigStatus != nil { + { + size, err := m.NginxConfigStatus.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) + } i-- - dAtA[i] = 0x22 + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} +func (m *NginxConfigStatus) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *NginxConfigStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.Type) > 0 { - i -= len(m.Type) - copy(dAtA[i:], m.Type) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Type))) + if len(m.Message) > 0 { + i -= len(m.Message) + copy(dAtA[i:], m.Message) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Message))) i-- dAtA[i] = 0x1a } - if len(m.Module) > 0 { - i -= len(m.Module) - copy(dAtA[i:], m.Module) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Module))) + if m.Status != 0 { + i = encodeVarintCommand(dAtA, i, uint64(m.Status)) i-- - dAtA[i] = 0x12 + dAtA[i] = 0x10 } if len(m.CorrelationID) > 0 { i -= len(m.CorrelationID) @@ -1593,18 +1695,6 @@ func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *AgentActivityStatus_NginxConfigAction) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *AgentActivityStatus_NginxConfigAction) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - i = encodeVarintCommand(dAtA, i, uint64(m.NginxConfigAction)) - i-- - dAtA[i] = 0x28 - return len(dAtA) - i, nil -} func (m *DownloadRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -2147,9 +2237,11 @@ func (m *DataplaneStatus) Size() (n int) { n += 1 + l + sovCommand(uint64(l)) } } - if m.AgentActivityStatus != nil { - l = m.AgentActivityStatus.Size() - n += 1 + l + sovCommand(uint64(l)) + if len(m.AgentActivityStatus) > 0 { + for _, e := range m.AgentActivityStatus { + l = e.Size() + n += 1 + l + sovCommand(uint64(l)) + } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -2163,22 +2255,6 @@ func (m *AgentActivityStatus) Size() (n int) { } var l int _ = l - l = len(m.CorrelationID) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Module) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Type) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Category) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } if m.Status != nil { n += m.Status.Size() } @@ -2188,15 +2264,41 @@ func (m *AgentActivityStatus) Size() (n int) { return n } -func (m *AgentActivityStatus_NginxConfigAction) Size() (n int) { +func (m *AgentActivityStatus_NginxConfigStatus) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.NginxConfigStatus != nil { + l = m.NginxConfigStatus.Size() + n += 1 + l + sovCommand(uint64(l)) + } + return n +} +func (m *NginxConfigStatus) Size() (n int) { if m == nil { return 0 } var l int _ = l - n += 1 + sovCommand(uint64(m.NginxConfigAction)) + l = len(m.CorrelationID) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.Status != 0 { + n += 1 + sovCommand(uint64(m.Status)) + } + l = len(m.Message) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } return n } + func (m *DownloadRequest) Size() (n int) { if m == nil { return 0 @@ -3190,10 +3292,8 @@ func (m *DataplaneStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.AgentActivityStatus == nil { - m.AgentActivityStatus = &AgentActivityStatus{} - } - if err := m.AgentActivityStatus.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.AgentActivityStatus = append(m.AgentActivityStatus, &AgentActivityStatus{}) + if err := m.AgentActivityStatus[len(m.AgentActivityStatus)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -3250,9 +3350,9 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigStatus", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCommand @@ -3262,27 +3362,81 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthCommand } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCommand } if postIndex > l { return io.ErrUnexpectedEOF } - m.CorrelationID = string(dAtA[iNdEx:postIndex]) + v := &NginxConfigStatus{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Status = &AgentActivityStatus_NginxConfigStatus{v} iNdEx = postIndex - case 2: + default: + iNdEx = preIndex + skippy, err := skipCommand(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCommand + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: NginxConfigStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: NginxConfigStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Module", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3310,13 +3464,13 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Module = string(dAtA[iNdEx:postIndex]) + m.CorrelationID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } - var stringLen uint64 + m.Status = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCommand @@ -3326,27 +3480,14 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + m.Status |= Status(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCommand - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCommand - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Type = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Category", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3374,28 +3515,8 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Category = string(dAtA[iNdEx:postIndex]) + m.Message = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigAction", wireType) - } - var v NginxConfigAction - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCommand - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= NginxConfigAction(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Status = &AgentActivityStatus_NginxConfigAction{v} default: iNdEx = preIndex skippy, err := skipCommand(dAtA[iNdEx:]) diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index 1675c748e..204aef138 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -86,19 +86,27 @@ message DataplaneStatus { HostInfo host = 3 [(gogoproto.jsontag) = "host" ]; repeated NginxHealth healths = 5 [(gogoproto.jsontag) = "healths" ]; repeated DataplaneSoftwareDetails dataplane_software_details = 6 [(gogoproto.jsontag) = "dataplane_software_details"]; - AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; + repeated AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; } message AgentActivityStatus { - string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; - string Module = 2 [(gogoproto.jsontag) = "module" ]; - string Type = 3 [(gogoproto.jsontag) = "type" ]; - string Category = 4 [(gogoproto.jsontag) = "category" ]; oneof Status { - NginxConfigAction nginx_config_action = 5 [(gogoproto.jsontag) = "nginx_config_action" ]; + NginxConfigStatus nginx_config_status = 1 [(gogoproto.jsontag) = "nginx_config_status" ]; } } +message NginxConfigStatus { + string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + Status status = 2 [(gogoproto.jsontag) = "status" ]; + string message = 3 [(gogoproto.jsontag) = "message" ]; +} + +enum Status { + PENDING = 0; + OK = 1; + ERROR = 2; +} + message DownloadRequest { Metadata meta = 1 [(gogoproto.jsontag) = "meta" ]; } diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go index b33bd6e39..9a79eb930 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go @@ -31,7 +31,6 @@ const ( NginxConfigAction_TEST NginxConfigAction = 2 NginxConfigAction_ROLLBACK NginxConfigAction = 3 NginxConfigAction_RETURN NginxConfigAction = 4 - NginxConfigAction_PENDING NginxConfigAction = 5 ) var NginxConfigAction_name = map[int32]string{ @@ -40,7 +39,6 @@ var NginxConfigAction_name = map[int32]string{ 2: "TEST", 3: "ROLLBACK", 4: "RETURN", - 5: "PENDING", } var NginxConfigAction_value = map[string]int32{ @@ -49,7 +47,6 @@ var NginxConfigAction_value = map[string]int32{ "TEST": 2, "ROLLBACK": 3, "RETURN": 4, - "PENDING": 5, } func (x NginxConfigAction) String() string { @@ -955,85 +952,85 @@ func init() { func init() { proto.RegisterFile("nginx.proto", fileDescriptor_917f1a70b1fd7255) } var fileDescriptor_917f1a70b1fd7255 = []byte{ - // 1245 bytes of a gzipped FileDescriptorProto + // 1233 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0xc6, - 0x16, 0x0e, 0x2d, 0xd9, 0x22, 0x8f, 0x64, 0x5b, 0x99, 0x7b, 0x2f, 0xa0, 0x04, 0xb9, 0xa6, 0xc1, - 0x7b, 0x83, 0xba, 0x29, 0x6a, 0x23, 0x4e, 0x8b, 0xa2, 0x68, 0xd0, 0x40, 0xb2, 0x94, 0x44, 0x88, - 0xa2, 0x18, 0x63, 0x39, 0x4d, 0x8d, 0x02, 0xea, 0x58, 0x1c, 0xcb, 0x44, 0x28, 0x52, 0x98, 0xa1, - 0x82, 0x24, 0xcf, 0xd0, 0x27, 0xe9, 0xae, 0xcb, 0xbe, 0x41, 0x77, 0xed, 0x13, 0x10, 0x45, 0x96, - 0xdc, 0xf4, 0x15, 0x8a, 0x39, 0x33, 0xa4, 0xe4, 0xbf, 0x26, 0x8b, 0x76, 0x33, 0x9c, 0xf3, 0xcd, - 0x39, 0x1f, 0xe7, 0xfc, 0x92, 0x50, 0x8d, 0xc6, 0x41, 0xf4, 0x7a, 0x7b, 0x2a, 0xe2, 0x24, 0x26, - 0xe4, 0xe4, 0xf3, 0x6d, 0x2d, 0xb3, 0x31, 0x8f, 0x92, 0x6d, 0xe9, 0xbf, 0xbc, 0x09, 0xe3, 0x78, - 0x1c, 0xeb, 0xf3, 0x9b, 0xb5, 0x51, 0x1c, 0x9d, 0x04, 0xe3, 0xb9, 0x34, 0x99, 0xc4, 0x91, 0x96, - 0xbc, 0x17, 0x60, 0xef, 0x87, 0x33, 0xd9, 0x8d, 0x4e, 0x62, 0x72, 0x1b, 0x2a, 0x3c, 0x62, 0xc7, - 0x21, 0xf7, 0x1b, 0xd6, 0xa6, 0xb5, 0x65, 0xb7, 0xaa, 0x59, 0xea, 0xe6, 0x10, 0xcd, 0x37, 0x4a, - 0x4d, 0xf0, 0x90, 0x33, 0xc9, 0x1b, 0x4b, 0x9b, 0xd6, 0x96, 0xa3, 0xd5, 0x0c, 0x44, 0xf3, 0x8d, - 0xd7, 0x81, 0xca, 0xc1, 0x41, 0x0f, 0x89, 0x5d, 0x58, 0x3e, 0x9e, 0x05, 0x61, 0xd2, 0xb0, 0x36, - 0x4b, 0x5b, 0x4e, 0xcb, 0xc9, 0x52, 0x57, 0x03, 0x54, 0x3f, 0xc8, 0x0d, 0x28, 0x89, 0x59, 0xd4, - 0x58, 0xc2, 0xe3, 0x4a, 0x96, 0xba, 0x4a, 0xa4, 0x6a, 0xf1, 0xf6, 0xc0, 0xde, 0x67, 0xc9, 0x29, - 0xf2, 0xdc, 0x80, 0xd2, 0x71, 0x10, 0xe1, 0xe5, 0x8c, 0xda, 0x71, 0x10, 0x51, 0xb5, 0x90, 0x5b, - 0x50, 0x56, 0x5e, 0x9a, 0x1b, 0xd9, 0x59, 0xea, 0xa2, 0x4c, 0x71, 0xf5, 0x7e, 0x5d, 0x86, 0x5a, - 0x5f, 0x45, 0xa8, 0xcd, 0x13, 0x16, 0x84, 0x92, 0x7c, 0x04, 0x36, 0x46, 0x6c, 0x18, 0xf8, 0x86, - 0xae, 0x96, 0xa5, 0x6e, 0x81, 0xd1, 0x0a, 0xee, 0xba, 0xe8, 0xec, 0x2b, 0x2e, 0x64, 0x10, 0x47, - 0x8b, 0xce, 0x1a, 0x88, 0xe6, 0x1b, 0x72, 0x07, 0x1c, 0xf5, 0xa2, 0xe1, 0x94, 0x25, 0xa7, 0x8d, - 0x12, 0x2a, 0xae, 0x66, 0xa9, 0x3b, 0x07, 0xa9, 0xad, 0xb6, 0xca, 0x13, 0xf2, 0x29, 0xc0, 0x54, - 0xc4, 0x23, 0x2e, 0xa5, 0x7a, 0x7b, 0x19, 0x95, 0xd7, 0xb2, 0xd4, 0x5d, 0x40, 0xa9, 0x63, 0xf6, - 0x5d, 0x9f, 0xdc, 0x83, 0x5a, 0x7e, 0x80, 0xec, 0xcb, 0x68, 0x50, 0xcf, 0x52, 0xf7, 0x0c, 0x4e, - 0xab, 0x46, 0xca, 0xdf, 0x21, 0x13, 0x26, 0x92, 0x61, 0x12, 0x4c, 0x78, 0x63, 0x65, 0xd3, 0xda, - 0x2a, 0xe9, 0x77, 0xcc, 0x51, 0xea, 0xe0, 0x7e, 0x10, 0x4c, 0x38, 0x69, 0xc2, 0x75, 0x4c, 0xc4, - 0xf0, 0x44, 0xc4, 0x93, 0xa1, 0x8c, 0x67, 0x62, 0xc4, 0x1b, 0x15, 0xac, 0x81, 0xff, 0x64, 0xa9, - 0x7b, 0xf1, 0x90, 0xae, 0x23, 0xf4, 0x50, 0xc4, 0x93, 0x03, 0x04, 0xc8, 0x03, 0xa8, 0x87, 0x31, - 0xf3, 0x55, 0x89, 0x0c, 0x27, 0xb1, 0x3f, 0x0b, 0xb9, 0x6c, 0xd8, 0x98, 0xcf, 0x7f, 0x67, 0xa9, - 0x7b, 0xe1, 0x8c, 0xae, 0xe7, 0xc8, 0x53, 0x0d, 0x90, 0xfb, 0xb0, 0x2e, 0x66, 0x91, 0xba, 0x59, - 0x61, 0xef, 0xa0, 0xfd, 0xbf, 0xb2, 0xd4, 0x3d, 0x7f, 0x44, 0xd7, 0x0c, 0x90, 0x5b, 0xef, 0x41, - 0x79, 0x1a, 0xce, 0x64, 0x03, 0x36, 0xad, 0xad, 0xea, 0xee, 0xed, 0xed, 0x8b, 0x2d, 0xb1, 0x8d, - 0x05, 0xa0, 0x8a, 0xfd, 0x29, 0x4f, 0x58, 0x9b, 0x25, 0x4c, 0x97, 0x89, 0x32, 0xa3, 0xb8, 0x92, - 0x07, 0x50, 0x92, 0x32, 0x6c, 0x54, 0x91, 0xe3, 0xff, 0x57, 0x72, 0x1c, 0xc8, 0xb0, 0xa0, 0xc0, - 0x2a, 0x94, 0x32, 0xa4, 0x6a, 0x31, 0x61, 0x4f, 0x66, 0x72, 0x38, 0x13, 0x61, 0xa3, 0x36, 0x4f, - 0xed, 0x1c, 0xc5, 0xb0, 0x27, 0x33, 0x79, 0x28, 0x42, 0xf2, 0x25, 0xac, 0xe9, 0xd6, 0x9c, 0x09, - 0x3e, 0x64, 0x62, 0x2c, 0x1b, 0xab, 0xe8, 0x31, 0xc9, 0x52, 0xf7, 0xdc, 0x09, 0x5d, 0x2d, 0xe4, - 0xa6, 0x18, 0x4b, 0x8f, 0xc1, 0xf5, 0x0b, 0xfe, 0xfc, 0xcd, 0x0d, 0xfc, 0xb3, 0x05, 0xf5, 0xf3, - 0xfe, 0x92, 0x23, 0xb0, 0xa5, 0x0c, 0x87, 0xc9, 0x9b, 0x29, 0xc7, 0x77, 0xac, 0xed, 0xde, 0xfd, - 0x90, 0x38, 0x15, 0xc0, 0xe0, 0xcd, 0x94, 0xeb, 0x5e, 0xcb, 0x69, 0x68, 0x45, 0x6a, 0x58, 0xdd, - 0xcb, 0xd7, 0xfd, 0x69, 0x26, 0x01, 0xde, 0xcb, 0x40, 0x34, 0xdf, 0x78, 0x9e, 0xe9, 0x65, 0xc3, - 0x46, 0x1c, 0x58, 0x6e, 0x1d, 0x76, 0x7b, 0x83, 0xfa, 0x35, 0x52, 0x81, 0x12, 0x3d, 0xec, 0xd7, - 0x2d, 0xef, 0x87, 0x25, 0xa8, 0xa2, 0xd2, 0x63, 0xce, 0xc2, 0xe4, 0xf4, 0xc3, 0xfb, 0xfd, 0x7b, - 0xa8, 0x69, 0x50, 0x67, 0x09, 0x03, 0xb4, 0xb6, 0xfb, 0xc9, 0x95, 0x3e, 0x6a, 0x7e, 0xe3, 0x1e, - 0x9a, 0xe8, 0xd6, 0x5c, 0x24, 0xa1, 0x7a, 0x5a, 0xeb, 0x63, 0x55, 0xe7, 0x3e, 0x1f, 0x0b, 0xe6, - 0x73, 0x7f, 0x28, 0x38, 0x93, 0x71, 0x64, 0x06, 0x06, 0xd6, 0xf9, 0xb9, 0x23, 0xba, 0x96, 0x03, - 0x14, 0x65, 0xef, 0x33, 0xe3, 0x97, 0x21, 0xab, 0x42, 0xe5, 0xb0, 0xff, 0xa4, 0xff, 0xec, 0x9b, - 0x7e, 0xfd, 0x1a, 0x01, 0x58, 0x69, 0xee, 0x0d, 0xba, 0xcf, 0x3b, 0x75, 0x8b, 0xd4, 0xc0, 0x6e, - 0x77, 0x1e, 0xd1, 0x66, 0xbb, 0xd3, 0xae, 0x2f, 0x79, 0x7f, 0x94, 0x8d, 0xd9, 0x1e, 0x16, 0x11, - 0xe9, 0xc2, 0x0a, 0x1b, 0x25, 0x6a, 0xa8, 0xe9, 0x1c, 0x5e, 0xdd, 0x2f, 0xda, 0xa0, 0x89, 0xca, - 0x2d, 0xc8, 0x52, 0xd7, 0x18, 0x52, 0xf3, 0x24, 0xcf, 0xa1, 0xaa, 0x2b, 0x73, 0xe8, 0xb3, 0x84, - 0x61, 0xbc, 0xae, 0xe8, 0x1d, 0x4d, 0xd5, 0xe6, 0x72, 0x24, 0x82, 0x69, 0x12, 0x8b, 0xd6, 0x7a, - 0x96, 0xba, 0x8b, 0xc6, 0x14, 0xb4, 0x80, 0x85, 0xd6, 0x81, 0xca, 0x5b, 0x2d, 0x62, 0x78, 0xaa, - 0xbb, 0x1b, 0x97, 0x71, 0x1e, 0x05, 0xd3, 0x29, 0xf7, 0x1f, 0x06, 0x21, 0xd7, 0xc5, 0x62, 0x4c, - 0x68, 0xbe, 0x21, 0xf7, 0xa1, 0xfc, 0x96, 0xcd, 0x5e, 0xe3, 0x98, 0x7d, 0x3f, 0x07, 0x0e, 0x04, - 0xa5, 0x4f, 0x71, 0x25, 0xfb, 0x50, 0x65, 0x23, 0x1c, 0xb1, 0x61, 0x3c, 0x96, 0x38, 0x7a, 0xaf, - 0x20, 0x69, 0xa2, 0x5a, 0x2f, 0x1e, 0x4b, 0xed, 0xd6, 0x82, 0x19, 0x05, 0x56, 0x1c, 0x92, 0x1e, - 0x00, 0x17, 0x22, 0x16, 0x9a, 0x70, 0x05, 0x09, 0xff, 0x7b, 0x19, 0x61, 0x47, 0x69, 0x21, 0x1f, - 0x0e, 0x90, 0xb9, 0x11, 0x75, 0x78, 0x7e, 0x44, 0xbe, 0xd6, 0x03, 0xab, 0x82, 0x34, 0xff, 0xbb, - 0x8c, 0xe6, 0x40, 0x86, 0x7b, 0x5c, 0x24, 0xc1, 0x49, 0x30, 0x62, 0x09, 0x97, 0xe7, 0xe6, 0xd5, - 0x0b, 0x58, 0xf5, 0x03, 0xc1, 0x47, 0x49, 0x2c, 0xde, 0x0c, 0x27, 0x6c, 0xda, 0xb0, 0x91, 0x69, - 0xf3, 0x32, 0xa6, 0x76, 0xae, 0xf8, 0x94, 0x4d, 0x5b, 0xd7, 0xb3, 0xd4, 0x3d, 0x6b, 0x4a, 0x6b, - 0xfe, 0x82, 0x82, 0x77, 0x04, 0xd0, 0x3c, 0xe3, 0xf5, 0x3c, 0x20, 0xf8, 0x17, 0x70, 0x85, 0xd7, - 0x85, 0x8d, 0xf6, 0x7a, 0x6e, 0x44, 0x9d, 0x22, 0x88, 0xde, 0x8f, 0x16, 0x38, 0x85, 0xa2, 0xfa, - 0xf2, 0x47, 0x6c, 0xc2, 0x4d, 0x5b, 0x63, 0x06, 0x95, 0x4c, 0x71, 0x25, 0x1e, 0xac, 0x9c, 0xc4, - 0x62, 0xc2, 0x12, 0x33, 0xea, 0xb0, 0x84, 0x35, 0x42, 0xcd, 0x93, 0xdc, 0x85, 0xea, 0x94, 0x8b, - 0x49, 0x20, 0xd5, 0xa7, 0x5c, 0x9a, 0x6e, 0xc4, 0x2c, 0x2e, 0xc0, 0x74, 0x51, 0x20, 0x5b, 0x60, - 0x0b, 0xae, 0xbf, 0x5f, 0x58, 0x5a, 0xb6, 0x9e, 0x27, 0x39, 0x46, 0x8b, 0x9d, 0x77, 0x08, 0x4e, - 0x91, 0x4a, 0xf2, 0x18, 0x9c, 0x22, 0x91, 0x26, 0x0c, 0xb7, 0xfe, 0x2a, 0xf9, 0xfa, 0x27, 0xa2, - 0x30, 0xa1, 0x76, 0x9e, 0x7a, 0xef, 0x27, 0x0b, 0xec, 0x5c, 0xeb, 0x3d, 0x21, 0xb8, 0x03, 0x4e, - 0x18, 0x8f, 0x87, 0x21, 0x7f, 0xc5, 0x43, 0x13, 0x05, 0xa4, 0x2d, 0x40, 0x6a, 0x87, 0xf1, 0xb8, - 0xa7, 0x76, 0xff, 0x68, 0x28, 0xee, 0x7c, 0x67, 0xbe, 0x59, 0x8b, 0x33, 0xe5, 0xec, 0x04, 0x73, - 0x60, 0xb9, 0xb9, 0xbf, 0xdf, 0xfb, 0xb6, 0x6e, 0x11, 0x1b, 0xca, 0x83, 0xce, 0xc1, 0xa0, 0xbe, - 0xa4, 0x46, 0x19, 0x7d, 0xd6, 0xeb, 0xb5, 0x9a, 0x7b, 0x4f, 0xea, 0x25, 0x35, 0xe4, 0x68, 0x67, - 0x70, 0x48, 0xfb, 0xf5, 0xb2, 0xb2, 0xdd, 0xef, 0xf4, 0xdb, 0xdd, 0xfe, 0xa3, 0xfa, 0x72, 0xeb, - 0x8b, 0x5f, 0xde, 0x6d, 0x58, 0xbf, 0xbd, 0xdb, 0xb0, 0x7e, 0x7f, 0xb7, 0x61, 0x1d, 0x7d, 0x3c, - 0x0e, 0x92, 0xd3, 0xd9, 0xf1, 0xf6, 0x28, 0x9e, 0xec, 0x60, 0x74, 0x77, 0x30, 0xba, 0x3b, 0xd2, - 0x7f, 0xb9, 0xf3, 0x6a, 0x77, 0x07, 0x7f, 0x7e, 0xbf, 0xc2, 0xf5, 0x78, 0x05, 0x1f, 0xf7, 0xfe, - 0x0c, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xe0, 0x9f, 0x5c, 0x54, 0x0b, 0x00, 0x00, + 0x13, 0x0f, 0x2d, 0xd9, 0x22, 0x47, 0xb2, 0xad, 0xec, 0xff, 0x5f, 0x40, 0x09, 0x52, 0xd3, 0x60, + 0x1b, 0xd4, 0x4d, 0x51, 0x1b, 0x71, 0x5a, 0x14, 0x45, 0x83, 0x06, 0x92, 0xa5, 0x34, 0x46, 0x14, + 0xc7, 0x58, 0xcb, 0x69, 0xea, 0x8b, 0xba, 0x16, 0xd7, 0x32, 0x11, 0x8a, 0x14, 0x76, 0xc9, 0x20, + 0xc9, 0x33, 0xf4, 0x49, 0x7a, 0xeb, 0xb1, 0x6f, 0xd0, 0x5b, 0xfb, 0x04, 0x44, 0x91, 0x23, 0x2f, + 0x7d, 0x85, 0x62, 0x67, 0x97, 0x94, 0xfc, 0xd5, 0xe4, 0xd0, 0x5e, 0x96, 0x3b, 0xbf, 0x9d, 0xf9, + 0x71, 0xe7, 0x93, 0x84, 0x7a, 0x34, 0x0e, 0xa2, 0x57, 0x9b, 0x53, 0x11, 0x27, 0x31, 0x21, 0x27, + 0x5f, 0x6e, 0x6a, 0x99, 0x8d, 0x79, 0x94, 0x6c, 0x4a, 0xff, 0xc5, 0x4d, 0x18, 0xc7, 0xe3, 0x58, + 0x9f, 0xdf, 0x6c, 0x8c, 0xe2, 0xe8, 0x24, 0x18, 0xcf, 0xa4, 0xc9, 0x24, 0x8e, 0xb4, 0xe4, 0x3d, + 0x07, 0x7b, 0x3f, 0x4c, 0xe5, 0x6e, 0x74, 0x12, 0x93, 0xdb, 0x50, 0xe3, 0x11, 0x3b, 0x0e, 0xb9, + 0xdf, 0xb2, 0xd6, 0xad, 0x0d, 0xbb, 0x53, 0xcf, 0x33, 0xb7, 0x80, 0x68, 0xb1, 0x51, 0x6a, 0x82, + 0x87, 0x9c, 0x49, 0xde, 0x5a, 0x58, 0xb7, 0x36, 0x1c, 0xad, 0x66, 0x20, 0x5a, 0x6c, 0xbc, 0x1e, + 0xd4, 0x0e, 0x0e, 0xfa, 0x48, 0xec, 0xc2, 0xe2, 0x71, 0x1a, 0x84, 0x49, 0xcb, 0x5a, 0xaf, 0x6c, + 0x38, 0x1d, 0x27, 0xcf, 0x5c, 0x0d, 0x50, 0xfd, 0x20, 0x37, 0xa0, 0x22, 0xd2, 0xa8, 0xb5, 0x80, + 0xc7, 0xb5, 0x3c, 0x73, 0x95, 0x48, 0xd5, 0xe2, 0xed, 0x80, 0xbd, 0xcf, 0x92, 0x53, 0xe4, 0xb9, + 0x01, 0x95, 0xe3, 0x20, 0xc2, 0xcb, 0x19, 0xb5, 0xe3, 0x20, 0xa2, 0x6a, 0x21, 0xb7, 0xa0, 0xaa, + 0xbc, 0x34, 0x37, 0xb2, 0xf3, 0xcc, 0x45, 0x99, 0xe2, 0xea, 0xfd, 0xbe, 0x08, 0x8d, 0x3d, 0x15, + 0xa1, 0x2e, 0x4f, 0x58, 0x10, 0x4a, 0xf2, 0x09, 0xd8, 0x18, 0xb1, 0x61, 0xe0, 0x1b, 0xba, 0x46, + 0x9e, 0xb9, 0x25, 0x46, 0x6b, 0xb8, 0xdb, 0x45, 0x67, 0x5f, 0x72, 0x21, 0x83, 0x38, 0x9a, 0x77, + 0xd6, 0x40, 0xb4, 0xd8, 0x90, 0x3b, 0xe0, 0xa8, 0x17, 0x0d, 0xa7, 0x2c, 0x39, 0x6d, 0x55, 0x50, + 0x71, 0x39, 0xcf, 0xdc, 0x19, 0x48, 0x6d, 0xb5, 0x55, 0x9e, 0x90, 0xcf, 0x01, 0xa6, 0x22, 0x1e, + 0x71, 0x29, 0xd5, 0xdb, 0xab, 0xa8, 0xbc, 0x92, 0x67, 0xee, 0x1c, 0x4a, 0x1d, 0xb3, 0xdf, 0xf5, + 0xc9, 0x3d, 0x68, 0x14, 0x07, 0xc8, 0xbe, 0x88, 0x06, 0xcd, 0x3c, 0x73, 0xcf, 0xe0, 0xb4, 0x6e, + 0xa4, 0xe2, 0x1d, 0x32, 0x61, 0x22, 0x19, 0x26, 0xc1, 0x84, 0xb7, 0x96, 0xd6, 0xad, 0x8d, 0x8a, + 0x7e, 0xc7, 0x0c, 0xa5, 0x0e, 0xee, 0x07, 0xc1, 0x84, 0x93, 0x36, 0x5c, 0xc7, 0x44, 0x0c, 0x4f, + 0x44, 0x3c, 0x19, 0xca, 0x38, 0x15, 0x23, 0xde, 0xaa, 0x61, 0x0d, 0x7c, 0x90, 0x67, 0xee, 0xc5, + 0x43, 0xba, 0x8a, 0xd0, 0x43, 0x11, 0x4f, 0x0e, 0x10, 0x20, 0x0f, 0xa0, 0x19, 0xc6, 0xcc, 0x57, + 0x25, 0x32, 0x9c, 0xc4, 0x7e, 0x1a, 0x72, 0xd9, 0xb2, 0x31, 0x9f, 0xff, 0xcf, 0x33, 0xf7, 0xc2, + 0x19, 0x5d, 0x2d, 0x90, 0x27, 0x1a, 0x20, 0xf7, 0x61, 0x55, 0xa4, 0x91, 0xba, 0x59, 0x69, 0xef, + 0xa0, 0xfd, 0xff, 0xf2, 0xcc, 0x3d, 0x7f, 0x44, 0x57, 0x0c, 0x50, 0x58, 0xef, 0x40, 0x75, 0x1a, + 0xa6, 0xb2, 0x05, 0xeb, 0xd6, 0x46, 0x7d, 0xfb, 0xf6, 0xe6, 0xc5, 0x96, 0xd8, 0xc4, 0x02, 0x50, + 0xc5, 0xfe, 0x84, 0x27, 0xac, 0xcb, 0x12, 0xa6, 0xcb, 0x44, 0x99, 0x51, 0x5c, 0xc9, 0x03, 0xa8, + 0x48, 0x19, 0xb6, 0xea, 0xc8, 0xf1, 0xf1, 0x95, 0x1c, 0x07, 0x32, 0x2c, 0x29, 0xb0, 0x0a, 0xa5, + 0x0c, 0xa9, 0x5a, 0x4c, 0xd8, 0x93, 0x54, 0x0e, 0x53, 0x11, 0xb6, 0x1a, 0xb3, 0xd4, 0xce, 0x50, + 0x0c, 0x7b, 0x92, 0xca, 0x43, 0x11, 0x92, 0xaf, 0x61, 0x45, 0xb7, 0x66, 0x2a, 0xf8, 0x90, 0x89, + 0xb1, 0x6c, 0x2d, 0xa3, 0xc7, 0x24, 0xcf, 0xdc, 0x73, 0x27, 0x74, 0xb9, 0x94, 0xdb, 0x62, 0x2c, + 0x3d, 0x06, 0xd7, 0x2f, 0xf8, 0xf3, 0x2f, 0x37, 0xf0, 0xaf, 0x16, 0x34, 0xcf, 0xfb, 0x4b, 0x8e, + 0xc0, 0x96, 0x32, 0x1c, 0x26, 0xaf, 0xa7, 0x1c, 0xdf, 0xb1, 0xb2, 0x7d, 0xf7, 0x7d, 0xe2, 0x54, + 0x02, 0x83, 0xd7, 0x53, 0xae, 0x7b, 0xad, 0xa0, 0xa1, 0x35, 0xa9, 0x61, 0x75, 0x2f, 0x5f, 0xf7, + 0xa7, 0x99, 0x04, 0x78, 0x2f, 0x03, 0xd1, 0x62, 0xe3, 0x79, 0xa6, 0x97, 0x0d, 0x1b, 0x71, 0x60, + 0xb1, 0x73, 0xb8, 0xdb, 0x1f, 0x34, 0xaf, 0x91, 0x1a, 0x54, 0xe8, 0xe1, 0x5e, 0xd3, 0xf2, 0x7e, + 0x5a, 0x80, 0x3a, 0x2a, 0x3d, 0xe2, 0x2c, 0x4c, 0x4e, 0xdf, 0xbf, 0xdf, 0x7f, 0x84, 0x86, 0x06, + 0x75, 0x96, 0x30, 0x40, 0x2b, 0xdb, 0x9f, 0x5d, 0xe9, 0xa3, 0xe6, 0x37, 0xee, 0xa1, 0x89, 0x6e, + 0xcd, 0x79, 0x12, 0xaa, 0xa7, 0xb5, 0x3e, 0x56, 0x75, 0xee, 0xf3, 0xb1, 0x60, 0x3e, 0xf7, 0x87, + 0x82, 0x33, 0x19, 0x47, 0x66, 0x60, 0x60, 0x9d, 0x9f, 0x3b, 0xa2, 0x2b, 0x05, 0x40, 0x51, 0xf6, + 0xbe, 0x30, 0x7e, 0x19, 0xb2, 0x3a, 0xd4, 0x0e, 0xf7, 0x1e, 0xef, 0x3d, 0xfd, 0x7e, 0xaf, 0x79, + 0x8d, 0x00, 0x2c, 0xb5, 0x77, 0x06, 0xbb, 0xcf, 0x7a, 0x4d, 0x8b, 0x34, 0xc0, 0xee, 0xf6, 0xbe, + 0xa3, 0xed, 0x6e, 0xaf, 0xdb, 0x5c, 0xf0, 0xfe, 0xaa, 0x1a, 0xb3, 0x1d, 0x2c, 0x22, 0xb2, 0x0b, + 0x4b, 0x6c, 0x94, 0xa8, 0xa1, 0xa6, 0x73, 0x78, 0x75, 0xbf, 0x68, 0x83, 0x36, 0x2a, 0x77, 0x20, + 0xcf, 0x5c, 0x63, 0x48, 0xcd, 0x93, 0x3c, 0x83, 0xba, 0xae, 0xcc, 0xa1, 0xcf, 0x12, 0x86, 0xf1, + 0xba, 0xa2, 0x77, 0x34, 0x55, 0x97, 0xcb, 0x91, 0x08, 0xa6, 0x49, 0x2c, 0x3a, 0xab, 0x79, 0xe6, + 0xce, 0x1b, 0x53, 0xd0, 0x02, 0x16, 0x5a, 0x0f, 0x6a, 0x6f, 0xb4, 0x88, 0xe1, 0xa9, 0x6f, 0xaf, + 0x5d, 0xc6, 0x79, 0x14, 0x4c, 0xa7, 0xdc, 0x7f, 0x18, 0x84, 0x5c, 0x17, 0x8b, 0x31, 0xa1, 0xc5, + 0x86, 0xdc, 0x87, 0xea, 0x1b, 0x96, 0xbe, 0xc2, 0x31, 0xfb, 0x6e, 0x0e, 0x1c, 0x08, 0x4a, 0x9f, + 0xe2, 0x4a, 0xf6, 0xa1, 0xce, 0x46, 0x38, 0x62, 0xc3, 0x78, 0x2c, 0x71, 0xf4, 0x5e, 0x41, 0xd2, + 0x46, 0xb5, 0x7e, 0x3c, 0x96, 0xda, 0xad, 0x39, 0x33, 0x0a, 0xac, 0x3c, 0x24, 0x7d, 0x00, 0x2e, + 0x44, 0x2c, 0x34, 0xe1, 0x12, 0x12, 0x7e, 0x78, 0x19, 0x61, 0x4f, 0x69, 0x21, 0x1f, 0x0e, 0x90, + 0x99, 0x11, 0x75, 0x78, 0x71, 0x44, 0xbe, 0xd5, 0x03, 0xab, 0x86, 0x34, 0x1f, 0x5d, 0x46, 0x73, + 0x20, 0xc3, 0x1d, 0x2e, 0x92, 0xe0, 0x24, 0x18, 0xb1, 0x84, 0xcb, 0x73, 0xf3, 0xea, 0x39, 0x2c, + 0xfb, 0x81, 0xe0, 0xa3, 0x24, 0x16, 0xaf, 0x87, 0x13, 0x36, 0x6d, 0xd9, 0xc8, 0xb4, 0x7e, 0x19, + 0x53, 0xb7, 0x50, 0x7c, 0xc2, 0xa6, 0x9d, 0xeb, 0x79, 0xe6, 0x9e, 0x35, 0xa5, 0x0d, 0x7f, 0x4e, + 0xc1, 0x3b, 0x02, 0x68, 0x9f, 0xf1, 0x7a, 0x16, 0x10, 0xfc, 0x0b, 0xb8, 0xc2, 0xeb, 0xd2, 0x46, + 0x7b, 0x3d, 0x33, 0xa2, 0x4e, 0x19, 0x44, 0xef, 0x67, 0x0b, 0x9c, 0x52, 0x51, 0x7d, 0xf9, 0x23, + 0x36, 0xe1, 0xa6, 0xad, 0x31, 0x83, 0x4a, 0xa6, 0xb8, 0x12, 0x0f, 0x96, 0x4e, 0x62, 0x31, 0x61, + 0x89, 0x19, 0x75, 0x58, 0xc2, 0x1a, 0xa1, 0xe6, 0x49, 0xee, 0x42, 0x7d, 0xca, 0xc5, 0x24, 0x90, + 0xea, 0x53, 0x2e, 0x4d, 0x37, 0x62, 0x16, 0xe7, 0x60, 0x3a, 0x2f, 0x90, 0x0d, 0xb0, 0x05, 0xd7, + 0xdf, 0x2f, 0x2c, 0x2d, 0x5b, 0xcf, 0x93, 0x02, 0xa3, 0xe5, 0xce, 0x3b, 0x04, 0xa7, 0x4c, 0x25, + 0x79, 0x04, 0x4e, 0x99, 0x48, 0x13, 0x86, 0x5b, 0xff, 0x94, 0x7c, 0xfd, 0x13, 0x51, 0x9a, 0x50, + 0xbb, 0x48, 0xbd, 0xf7, 0x8b, 0x05, 0x76, 0xa1, 0xf5, 0x8e, 0x10, 0xdc, 0x01, 0x27, 0x8c, 0xc7, + 0xc3, 0x90, 0xbf, 0xe4, 0xa1, 0x89, 0x02, 0xd2, 0x96, 0x20, 0xb5, 0xc3, 0x78, 0xdc, 0x57, 0xbb, + 0xff, 0x34, 0x14, 0x77, 0x9e, 0x9a, 0x6f, 0xd6, 0xfc, 0x4c, 0x39, 0x3b, 0xc1, 0x1c, 0x58, 0x6c, + 0xef, 0xef, 0xf7, 0x7f, 0x68, 0x5a, 0xc4, 0x86, 0xea, 0xa0, 0x77, 0x30, 0x68, 0x2e, 0xa8, 0x51, + 0x46, 0x9f, 0xf6, 0xfb, 0x9d, 0xf6, 0xce, 0xe3, 0x66, 0x45, 0x0d, 0x39, 0xda, 0x1b, 0x1c, 0xd2, + 0xbd, 0x66, 0xb5, 0xf3, 0xd5, 0x6f, 0x6f, 0xd7, 0xac, 0x3f, 0xde, 0xae, 0x59, 0x7f, 0xbe, 0x5d, + 0xb3, 0x8e, 0x3e, 0x1d, 0x07, 0xc9, 0x69, 0x7a, 0xbc, 0x39, 0x8a, 0x27, 0x5b, 0x18, 0xd0, 0x2d, + 0x0c, 0xe8, 0x96, 0xf4, 0x5f, 0x6c, 0xbd, 0xdc, 0xde, 0xc2, 0xff, 0xdd, 0x6f, 0x70, 0x3d, 0x5e, + 0xc2, 0xc7, 0xbd, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x56, 0xdc, 0xdc, 0x47, 0x0b, 0x00, + 0x00, } func (m *PlusInfo) Marshal() (dAtA []byte, err error) { diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto index dcb1386f9..9f6f1ad55 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto @@ -69,7 +69,6 @@ enum NginxConfigAction { TEST = 2; ROLLBACK = 3; RETURN = 4; - PENDING = 5; } message NginxConfig { diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index d0de717b6..dfadb9bb5 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -24,6 +24,34 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +type Status int32 + +const ( + Status_PENDING Status = 0 + Status_OK Status = 1 + Status_ERROR Status = 2 +) + +var Status_name = map[int32]string{ + 0: "PENDING", + 1: "OK", + 2: "ERROR", +} + +var Status_value = map[string]int32{ + "PENDING": 0, + "OK": 1, + "ERROR": 2, +} + +func (x Status) String() string { + return proto.EnumName(Status_name, int32(x)) +} + +func (Status) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{0} +} + type Command_CommandType int32 const ( @@ -130,7 +158,7 @@ func (x UploadStatus_TransferStatus) String() string { } func (UploadStatus_TransferStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6, 0} + return fileDescriptor_213c0bb044472049, []int{7, 0} } // Command is the envelope sent between the management plane and the data plane, requesting some action or reporting a response @@ -422,7 +450,7 @@ type DataplaneStatus struct { Host *HostInfo `protobuf:"bytes,3,opt,name=host,proto3" json:"host"` Healths []*NginxHealth `protobuf:"bytes,5,rep,name=healths,proto3" json:"healths"` DataplaneSoftwareDetails []*DataplaneSoftwareDetails `protobuf:"bytes,6,rep,name=dataplane_software_details,json=dataplaneSoftwareDetails,proto3" json:"dataplane_software_details"` - AgentActivityStatus *AgentActivityStatus `protobuf:"bytes,7,opt,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` + AgentActivityStatus []*AgentActivityStatus `protobuf:"bytes,7,rep,name=agent_activity_status,json=agentActivityStatus,proto3" json:"agent_activity_status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -496,7 +524,7 @@ func (m *DataplaneStatus) GetDataplaneSoftwareDetails() []*DataplaneSoftwareDeta return nil } -func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { +func (m *DataplaneStatus) GetAgentActivityStatus() []*AgentActivityStatus { if m != nil { return m.AgentActivityStatus } @@ -504,12 +532,8 @@ func (m *DataplaneStatus) GetAgentActivityStatus() *AgentActivityStatus { } type AgentActivityStatus struct { - CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` - Module string `protobuf:"bytes,2,opt,name=Module,proto3" json:"module"` - Type string `protobuf:"bytes,3,opt,name=Type,proto3" json:"type"` - Category string `protobuf:"bytes,4,opt,name=Category,proto3" json:"category"` // Types that are valid to be assigned to Status: - // *AgentActivityStatus_NginxConfigAction + // *AgentActivityStatus_NginxConfigStatus Status isAgentActivityStatus_Status `protobuf_oneof:"Status"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -555,11 +579,11 @@ type isAgentActivityStatus_Status interface { Size() int } -type AgentActivityStatus_NginxConfigAction struct { - NginxConfigAction NginxConfigAction `protobuf:"varint,5,opt,name=nginx_config_action,json=nginxConfigAction,proto3,enum=f5.nginx.agent.sdk.NginxConfigAction,oneof" json:"nginx_config_action"` +type AgentActivityStatus_NginxConfigStatus struct { + NginxConfigStatus *NginxConfigStatus `protobuf:"bytes,1,opt,name=nginx_config_status,json=nginxConfigStatus,proto3,oneof" json:"nginx_config_status"` } -func (*AgentActivityStatus_NginxConfigAction) isAgentActivityStatus_Status() {} +func (*AgentActivityStatus_NginxConfigStatus) isAgentActivityStatus_Status() {} func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { if m != nil { @@ -568,46 +592,81 @@ func (m *AgentActivityStatus) GetStatus() isAgentActivityStatus_Status { return nil } -func (m *AgentActivityStatus) GetCorrelationID() string { - if m != nil { - return m.CorrelationID +func (m *AgentActivityStatus) GetNginxConfigStatus() *NginxConfigStatus { + if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigStatus); ok { + return x.NginxConfigStatus } - return "" + return nil } -func (m *AgentActivityStatus) GetModule() string { - if m != nil { - return m.Module +// XXX_OneofWrappers is for the internal use of the proto package. +func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*AgentActivityStatus_NginxConfigStatus)(nil), } - return "" } -func (m *AgentActivityStatus) GetType() string { - if m != nil { - return m.Type +type NginxConfigStatus struct { + CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` + Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *NginxConfigStatus) Reset() { *m = NginxConfigStatus{} } +func (m *NginxConfigStatus) String() string { return proto.CompactTextString(m) } +func (*NginxConfigStatus) ProtoMessage() {} +func (*NginxConfigStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{4} +} +func (m *NginxConfigStatus) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *NginxConfigStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_NginxConfigStatus.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil } - return "" +} +func (m *NginxConfigStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_NginxConfigStatus.Merge(m, src) +} +func (m *NginxConfigStatus) XXX_Size() int { + return m.Size() +} +func (m *NginxConfigStatus) XXX_DiscardUnknown() { + xxx_messageInfo_NginxConfigStatus.DiscardUnknown(m) } -func (m *AgentActivityStatus) GetCategory() string { +var xxx_messageInfo_NginxConfigStatus proto.InternalMessageInfo + +func (m *NginxConfigStatus) GetCorrelationID() string { if m != nil { - return m.Category + return m.CorrelationID } return "" } -func (m *AgentActivityStatus) GetNginxConfigAction() NginxConfigAction { - if x, ok := m.GetStatus().(*AgentActivityStatus_NginxConfigAction); ok { - return x.NginxConfigAction +func (m *NginxConfigStatus) GetStatus() Status { + if m != nil { + return m.Status } - return NginxConfigAction_UNKNOWN + return Status_PENDING } -// XXX_OneofWrappers is for the internal use of the proto package. -func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { - return []interface{}{ - (*AgentActivityStatus_NginxConfigAction)(nil), +func (m *NginxConfigStatus) GetMessage() string { + if m != nil { + return m.Message } + return "" } type DownloadRequest struct { @@ -621,7 +680,7 @@ func (m *DownloadRequest) Reset() { *m = DownloadRequest{} } func (m *DownloadRequest) String() string { return proto.CompactTextString(m) } func (*DownloadRequest) ProtoMessage() {} func (*DownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{4} + return fileDescriptor_213c0bb044472049, []int{5} } func (m *DownloadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -670,7 +729,7 @@ func (m *NginxConfigResponse) Reset() { *m = NginxConfigResponse{} } func (m *NginxConfigResponse) String() string { return proto.CompactTextString(m) } func (*NginxConfigResponse) ProtoMessage() {} func (*NginxConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{5} + return fileDescriptor_213c0bb044472049, []int{6} } func (m *NginxConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -733,7 +792,7 @@ func (m *UploadStatus) Reset() { *m = UploadStatus{} } func (m *UploadStatus) String() string { return proto.CompactTextString(m) } func (*UploadStatus) ProtoMessage() {} func (*UploadStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{6} + return fileDescriptor_213c0bb044472049, []int{7} } func (m *UploadStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -797,7 +856,7 @@ func (m *DataChunk) Reset() { *m = DataChunk{} } func (m *DataChunk) String() string { return proto.CompactTextString(m) } func (*DataChunk) ProtoMessage() {} func (*DataChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{7} + return fileDescriptor_213c0bb044472049, []int{8} } func (m *DataChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -886,7 +945,7 @@ func (m *ChunkedResourceHeader) Reset() { *m = ChunkedResourceHeader{} } func (m *ChunkedResourceHeader) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceHeader) ProtoMessage() {} func (*ChunkedResourceHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{8} + return fileDescriptor_213c0bb044472049, []int{9} } func (m *ChunkedResourceHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -956,7 +1015,7 @@ func (m *ChunkedResourceChunk) Reset() { *m = ChunkedResourceChunk{} } func (m *ChunkedResourceChunk) String() string { return proto.CompactTextString(m) } func (*ChunkedResourceChunk) ProtoMessage() {} func (*ChunkedResourceChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{9} + return fileDescriptor_213c0bb044472049, []int{10} } func (m *ChunkedResourceChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1007,6 +1066,7 @@ func (m *ChunkedResourceChunk) GetData() []byte { } func init() { + proto.RegisterEnum("f5.nginx.agent.sdk.Status", Status_name, Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.Command_CommandType", Command_CommandType_name, Command_CommandType_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandStatus", CommandStatusResponse_CommandStatus_name, CommandStatusResponse_CommandStatus_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandErrorCode", CommandStatusResponse_CommandErrorCode_name, CommandStatusResponse_CommandErrorCode_value) @@ -1015,6 +1075,7 @@ func init() { proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") proto.RegisterType((*DataplaneStatus)(nil), "f5.nginx.agent.sdk.DataplaneStatus") proto.RegisterType((*AgentActivityStatus)(nil), "f5.nginx.agent.sdk.AgentActivityStatus") + proto.RegisterType((*NginxConfigStatus)(nil), "f5.nginx.agent.sdk.NginxConfigStatus") proto.RegisterType((*DownloadRequest)(nil), "f5.nginx.agent.sdk.DownloadRequest") proto.RegisterType((*NginxConfigResponse)(nil), "f5.nginx.agent.sdk.NginxConfigResponse") proto.RegisterType((*UploadStatus)(nil), "f5.nginx.agent.sdk.UploadStatus") @@ -1026,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1375 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x26, 0x15, 0x9b, 0x92, 0x8e, 0x64, 0x5b, 0xff, 0xd8, 0xf9, 0xab, 0x18, 0x81, 0x69, 0xb0, - 0x4d, 0xe3, 0x14, 0xad, 0x84, 0x3a, 0x28, 0x52, 0x24, 0x2b, 0x53, 0x72, 0x4a, 0x23, 0xb1, 0x55, - 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0xe2, 0xa8, 0x24, 0xe5, 0xc4, 0x41, - 0xf7, 0x05, 0x8a, 0x02, 0x5d, 0x14, 0x5d, 0xf4, 0x29, 0xba, 0xec, 0x2b, 0x74, 0x99, 0x27, 0x20, - 0x8a, 0x2c, 0xf9, 0x00, 0x5d, 0x17, 0x73, 0xa1, 0x4c, 0x59, 0x94, 0x5c, 0xc3, 0xdd, 0x68, 0x86, - 0x33, 0xdf, 0xf9, 0xce, 0x65, 0xce, 0x9c, 0x33, 0x82, 0x25, 0x87, 0x0e, 0x06, 0xb6, 0xef, 0x36, - 0x86, 0x01, 0x8d, 0x28, 0x42, 0x87, 0x5f, 0x34, 0xfc, 0x9e, 0xe7, 0xbf, 0x69, 0xd8, 0x3d, 0xe2, - 0x47, 0x8d, 0xd0, 0x3d, 0x5a, 0x87, 0x1e, 0xed, 0x51, 0xb1, 0xbf, 0x5e, 0x65, 0x70, 0xea, 0xcb, - 0xaf, 0x8a, 0x00, 0x89, 0x0f, 0xe8, 0xd3, 0x30, 0x9d, 0x57, 0x04, 0xc7, 0x58, 0xc6, 0x3f, 0xf4, - 0x7a, 0xf2, 0x0b, 0x91, 0x13, 0xe2, 0x47, 0x61, 0x93, 0x0f, 0x72, 0xed, 0x86, 0x3b, 0xec, 0x86, - 0xf4, 0x30, 0x7a, 0x6d, 0x07, 0xa4, 0xeb, 0x92, 0xc8, 0xf6, 0x8e, 0x43, 0xb1, 0x65, 0xfc, 0x02, - 0x50, 0x6c, 0x09, 0x13, 0xd1, 0x7d, 0x58, 0x18, 0x90, 0xc8, 0xae, 0xab, 0x9b, 0xea, 0x56, 0x65, - 0xfb, 0x66, 0x63, 0xda, 0xd6, 0xc6, 0x3e, 0x89, 0x6c, 0xd7, 0x8e, 0x6c, 0xb3, 0x94, 0xc4, 0x3a, - 0x47, 0x63, 0xfe, 0x8b, 0x76, 0x61, 0x21, 0x3a, 0x1d, 0x92, 0x7a, 0x61, 0x53, 0xdd, 0x5a, 0xde, - 0xbe, 0x9d, 0x27, 0x2b, 0xd5, 0xa4, 0xe3, 0xd3, 0xd3, 0x21, 0x11, 0x34, 0x4c, 0x10, 0xf3, 0x5f, - 0xf4, 0x12, 0xc0, 0x19, 0xb8, 0xdd, 0x30, 0xb2, 0xa3, 0x51, 0x58, 0xbf, 0xc6, 0x0d, 0xb9, 0x33, - 0x87, 0xec, 0x09, 0x07, 0x62, 0x12, 0x0e, 0xa9, 0x1f, 0x12, 0x73, 0x39, 0x89, 0xf5, 0x0c, 0x81, - 0xa5, 0xe0, 0xb2, 0x33, 0x90, 0x20, 0xf4, 0x1c, 0xaa, 0x9c, 0xa5, 0x2b, 0xe2, 0x55, 0x5f, 0xe0, - 0xec, 0x7a, 0x1e, 0xfb, 0x01, 0xfb, 0x6e, 0x71, 0x98, 0x59, 0x4b, 0x62, 0x7d, 0x42, 0xd0, 0x52, - 0xb0, 0x88, 0xbf, 0x00, 0xa0, 0x37, 0x70, 0x3d, 0xbb, 0xdd, 0x0d, 0xa4, 0x35, 0xf5, 0x45, 0xae, - 0xe0, 0xf6, 0x05, 0x0a, 0xc6, 0xc6, 0xdf, 0x48, 0x62, 0x3d, 0x9f, 0xc9, 0x52, 0xf0, 0xaa, 0x3f, - 0x2d, 0xc1, 0x34, 0x73, 0x4a, 0x86, 0xf7, 0x89, 0x13, 0x75, 0x03, 0xf2, 0xdd, 0x88, 0x84, 0x51, - 0x5d, 0x9b, 0xad, 0x79, 0x87, 0xcd, 0x5a, 0x02, 0x8f, 0x05, 0x5c, 0x68, 0xce, 0x65, 0x62, 0x9a, - 0xed, 0x69, 0x09, 0xf4, 0x3d, 0xfc, 0xff, 0x3c, 0x5e, 0x3a, 0x5d, 0xe4, 0xaa, 0xb7, 0x2e, 0x56, - 0x2d, 0xbd, 0x5e, 0x4f, 0x62, 0x7d, 0x06, 0x97, 0xa5, 0xe0, 0x35, 0x3b, 0x47, 0x06, 0x45, 0xb0, - 0x36, 0x96, 0x10, 0x71, 0x12, 0x6e, 0x97, 0xb8, 0xee, 0x8f, 0xe7, 0xe9, 0xe6, 0xe1, 0x13, 0x5e, - 0xd7, 0x93, 0x58, 0xcf, 0xe5, 0xb1, 0x14, 0x8c, 0xec, 0x29, 0x3c, 0xcb, 0x9f, 0x2c, 0xba, 0x5e, - 0x9e, 0x9d, 0x3f, 0x19, 0x6d, 0x22, 0x7f, 0xb2, 0x82, 0x2c, 0x7f, 0x32, 0xf4, 0xe8, 0x10, 0x6a, - 0xec, 0x4a, 0x0d, 0x8f, 0x6d, 0x9f, 0xa4, 0x99, 0x5f, 0xe1, 0xdc, 0x1f, 0xe6, 0x71, 0xb7, 0x53, - 0xac, 0x48, 0x6b, 0x73, 0x2d, 0x89, 0xf5, 0x29, 0x02, 0x4b, 0xc1, 0x2b, 0xee, 0x24, 0x10, 0x7d, - 0x0b, 0x55, 0x5e, 0x14, 0xba, 0x01, 0x19, 0xd2, 0x20, 0xaa, 0x57, 0x67, 0x47, 0x4b, 0xd4, 0x90, - 0xc6, 0x2e, 0x1b, 0x30, 0x47, 0x0b, 0x37, 0xb2, 0xf2, 0xcc, 0x0d, 0x72, 0x06, 0x40, 0x3f, 0xa9, - 0xb0, 0x9e, 0x31, 0xe3, 0x5c, 0xb9, 0xa9, 0x2f, 0x71, 0x6d, 0x9f, 0xce, 0xf7, 0x48, 0x0a, 0xb5, - 0x85, 0x8c, 0xb9, 0x91, 0xc4, 0xfa, 0x1c, 0x4e, 0x4b, 0xc1, 0x75, 0x77, 0x86, 0xac, 0x71, 0x17, - 0x2a, 0x99, 0x42, 0x83, 0x00, 0xb4, 0x83, 0x0e, 0xde, 0xdf, 0x79, 0x5c, 0x53, 0x50, 0x15, 0x4a, - 0xed, 0xce, 0x8b, 0x83, 0xc7, 0x9d, 0x9d, 0x76, 0x4d, 0x65, 0x3b, 0xcf, 0xbe, 0xe6, 0xf3, 0x82, - 0xa9, 0xc1, 0x02, 0x23, 0x34, 0x7e, 0xbd, 0x06, 0xd7, 0x73, 0x2b, 0x0c, 0xfa, 0x06, 0x34, 0x79, - 0x44, 0x2a, 0xaf, 0x74, 0xf7, 0xfe, 0x75, 0x71, 0x9a, 0x5c, 0x35, 0x21, 0x89, 0x75, 0x49, 0x85, - 0xe5, 0x88, 0x3c, 0x00, 0x12, 0x04, 0x34, 0xe8, 0x3a, 0xd4, 0x4d, 0x4b, 0xe9, 0xfd, 0x4b, 0x2b, - 0xd8, 0x65, 0x14, 0x2d, 0xea, 0xca, 0x72, 0x78, 0xc6, 0x88, 0xcb, 0x24, 0xdd, 0x42, 0xb7, 0xa0, - 0x38, 0x20, 0x61, 0x68, 0xf7, 0x08, 0xaf, 0xb2, 0x65, 0xb3, 0x92, 0xc4, 0x7a, 0xba, 0x84, 0xd3, - 0x09, 0xd2, 0x61, 0x91, 0xcb, 0xf0, 0x62, 0x59, 0x36, 0xcb, 0x49, 0xac, 0x8b, 0x05, 0x2c, 0x06, - 0xe3, 0x01, 0x2c, 0x4d, 0x18, 0x83, 0x56, 0xa0, 0xd2, 0xda, 0x6f, 0x77, 0x9f, 0x1d, 0x3c, 0x3a, - 0xe8, 0xbc, 0x38, 0xa8, 0x29, 0x2c, 0xbe, 0x6c, 0xa1, 0xf3, 0xa8, 0xa6, 0xa2, 0x25, 0x28, 0xb3, - 0xf9, 0x2e, 0xc6, 0x1d, 0x5c, 0x2b, 0x18, 0x4d, 0xa8, 0x9d, 0xb7, 0x99, 0xc1, 0x77, 0x31, 0x66, - 0x70, 0x85, 0x71, 0xb1, 0x79, 0xca, 0xa5, 0x1a, 0x3f, 0x2f, 0xc0, 0xca, 0xb9, 0xfc, 0x47, 0x9f, - 0x40, 0x39, 0x3c, 0x0d, 0x23, 0x32, 0xe8, 0x7a, 0x2e, 0x3f, 0x94, 0xb2, 0xb9, 0x94, 0xc4, 0xfa, - 0xd9, 0x22, 0x2e, 0x89, 0xe9, 0x9e, 0x8b, 0xbe, 0x82, 0x62, 0x9a, 0x8f, 0x85, 0xcd, 0x6b, 0x5b, - 0x95, 0xed, 0xcd, 0x99, 0xc5, 0x39, 0xcd, 0x41, 0x1e, 0x17, 0x29, 0x84, 0xd3, 0x09, 0x6b, 0x95, - 0xac, 0x1d, 0xcb, 0x0e, 0x95, 0xdb, 0x2a, 0x2d, 0x1a, 0x46, 0x7b, 0xfe, 0x21, 0x15, 0x3d, 0x8e, - 0xa1, 0x31, 0xff, 0x45, 0x0f, 0xa1, 0xd8, 0x27, 0xf6, 0x71, 0xd4, 0x0f, 0xeb, 0x8b, 0xdc, 0x88, - 0xd9, 0x2d, 0xc8, 0xe2, 0x38, 0x61, 0x83, 0x94, 0xc1, 0xe9, 0x04, 0xfd, 0x38, 0xff, 0xc2, 0x69, - 0x9c, 0xfb, 0x3f, 0xbd, 0x70, 0xb3, 0xaf, 0x1b, 0x3a, 0x49, 0x5b, 0x91, 0xed, 0x44, 0xde, 0x89, - 0x17, 0x9d, 0xa6, 0x95, 0xac, 0x78, 0x41, 0x2b, 0xda, 0x91, 0x78, 0x79, 0x2d, 0x32, 0xad, 0xe8, - 0x1c, 0x93, 0x6c, 0x44, 0x93, 0x78, 0xe3, 0x8f, 0x02, 0xac, 0xe6, 0xf0, 0xa0, 0x2f, 0x59, 0x5e, - 0x06, 0x01, 0x39, 0xb6, 0x23, 0x8f, 0xfa, 0x7b, 0x6d, 0x99, 0x19, 0x28, 0x89, 0xf5, 0x65, 0xe7, - 0x6c, 0x83, 0xa5, 0xc7, 0x24, 0x10, 0x19, 0xa0, 0xed, 0x53, 0x77, 0x74, 0x2c, 0x2e, 0x60, 0x59, - 0x5c, 0xd4, 0x01, 0x5f, 0xc1, 0x72, 0x07, 0xdd, 0x84, 0x05, 0x56, 0x55, 0xe4, 0xd5, 0xc9, 0x3c, - 0x62, 0x78, 0xad, 0xd9, 0x82, 0x52, 0xcb, 0x8e, 0x48, 0x8f, 0x06, 0xa7, 0xf2, 0xde, 0x54, 0x93, - 0x58, 0x2f, 0x39, 0x72, 0x0d, 0x8f, 0x77, 0xd1, 0x10, 0x56, 0x27, 0x1a, 0x3e, 0x73, 0x99, 0xfa, - 0xfc, 0xe1, 0xb0, 0xbc, 0x7d, 0xeb, 0x82, 0x87, 0xc3, 0x0e, 0x07, 0x9b, 0x1f, 0x24, 0xb1, 0x9e, - 0xc7, 0x62, 0x29, 0xf8, 0x7f, 0xfe, 0x14, 0xba, 0x04, 0x9a, 0x8c, 0xdc, 0x3e, 0xac, 0xb4, 0xe9, - 0x6b, 0xff, 0x98, 0xda, 0x6e, 0xda, 0xe1, 0xae, 0xf0, 0x00, 0x34, 0x7e, 0x28, 0xc0, 0x6a, 0xce, - 0xab, 0x06, 0xed, 0x4f, 0x14, 0xcc, 0x4b, 0xbd, 0xe6, 0xf2, 0x4a, 0xe4, 0x1e, 0x68, 0x32, 0x48, - 0x85, 0xcb, 0x04, 0x89, 0x53, 0x09, 0x41, 0x2c, 0x47, 0xf4, 0x1c, 0x2a, 0x32, 0x60, 0xcc, 0x21, - 0x79, 0x95, 0x3f, 0xca, 0x37, 0x8f, 0xc1, 0xda, 0x24, 0x74, 0x02, 0x6f, 0x18, 0xd1, 0xc0, 0x5c, - 0x49, 0x62, 0x3d, 0x2b, 0x8c, 0x41, 0x7c, 0xb0, 0x8b, 0x65, 0xfc, 0xad, 0x42, 0xf5, 0xd9, 0x90, - 0xc5, 0x55, 0xe6, 0xe2, 0x55, 0xde, 0xd5, 0x4f, 0xc6, 0xe1, 0x13, 0xfe, 0x36, 0xf3, 0xa4, 0xb3, - 0xda, 0x1a, 0x4f, 0x03, 0xdb, 0x0f, 0x0f, 0x49, 0x30, 0xa7, 0xcf, 0x18, 0xa0, 0x05, 0xc4, 0x0e, - 0xa9, 0x2f, 0x13, 0x98, 0x63, 0xc4, 0x0a, 0x96, 0xa3, 0xf1, 0x39, 0x2c, 0x4f, 0x32, 0xa1, 0x0a, - 0x14, 0xcf, 0xaa, 0xba, 0x06, 0x05, 0x5e, 0xd1, 0x01, 0xb4, 0x87, 0x3b, 0x7b, 0x8f, 0x77, 0xdb, - 0xb5, 0x82, 0xf1, 0xbb, 0x0a, 0x65, 0x16, 0x81, 0x56, 0x7f, 0xe4, 0x1f, 0xa1, 0x0e, 0x68, 0x7d, - 0x62, 0xbb, 0x24, 0x98, 0x7b, 0xf0, 0x0c, 0x4a, 0x5c, 0x4c, 0x42, 0x3a, 0x0a, 0x1c, 0x62, 0x71, - 0x01, 0x61, 0x8f, 0x10, 0xb6, 0x14, 0x2c, 0x67, 0xc8, 0x12, 0xcd, 0x99, 0x07, 0x62, 0xc6, 0x0b, - 0xf3, 0x1c, 0x1d, 0xff, 0x14, 0x21, 0x65, 0x92, 0x96, 0x82, 0xf9, 0x68, 0x16, 0x61, 0xd1, 0x61, - 0x5b, 0xc6, 0x3b, 0x15, 0xae, 0xe7, 0x9a, 0x70, 0xa5, 0x33, 0x33, 0x40, 0xe3, 0xf4, 0xe2, 0xcc, - 0x16, 0x85, 0x3b, 0x62, 0x05, 0xcb, 0x91, 0xd5, 0x08, 0xa7, 0x4f, 0x9c, 0xa3, 0x70, 0x34, 0x90, - 0x87, 0x20, 0x6a, 0x84, 0x5c, 0xc3, 0xe3, 0x19, 0xfa, 0x0c, 0x80, 0xcb, 0x74, 0x43, 0xef, 0x2d, - 0xe1, 0xf5, 0x64, 0x51, 0xfe, 0xcf, 0x19, 0xaf, 0xe2, 0x32, 0x9f, 0x3f, 0xf1, 0xde, 0x12, 0xe3, - 0x37, 0x15, 0xd6, 0xf2, 0xc2, 0x70, 0x25, 0x8f, 0x6e, 0x33, 0x6b, 0x99, 0x36, 0xcf, 0x95, 0x3e, - 0x49, 0x6b, 0xc5, 0x1a, 0x2e, 0xf2, 0xd9, 0x9e, 0xcb, 0x0a, 0xe3, 0xf8, 0x32, 0x55, 0xcf, 0x22, - 0x2f, 0xe3, 0x7e, 0xef, 0xcf, 0xf7, 0x1b, 0xea, 0xbb, 0xf7, 0x1b, 0xea, 0x5f, 0xef, 0x37, 0xd4, - 0x97, 0x77, 0x7a, 0x5e, 0xd4, 0x1f, 0xbd, 0x6a, 0x38, 0x74, 0xd0, 0xe4, 0x96, 0x34, 0xb9, 0x25, - 0xcd, 0xd0, 0x3d, 0x6a, 0x9e, 0x6c, 0x37, 0xf9, 0xff, 0xd3, 0x07, 0xfc, 0xf7, 0x95, 0xc6, 0x87, - 0xbb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x88, 0x7b, 0xcf, 0x4e, 0x0f, 0x00, 0x00, + // 1371 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, + 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, + 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xa3, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, + 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, + 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0xbd, 0xec, 0x43, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, + 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0xa3, 0xab, + 0xdf, 0xf9, 0x9d, 0x3f, 0xf7, 0xdc, 0x73, 0x64, 0x58, 0xb2, 0xbc, 0xc1, 0xc0, 0x74, 0xed, 0xda, + 0xd0, 0xf7, 0x42, 0x0f, 0xa1, 0xfd, 0xaf, 0x6a, 0x6e, 0xcf, 0x71, 0xdf, 0xd4, 0xcc, 0x1e, 0x71, + 0xc3, 0x5a, 0x60, 0x1f, 0xac, 0x43, 0xcf, 0xeb, 0x79, 0xfc, 0xfd, 0x7a, 0x99, 0xc2, 0x3d, 0x57, + 0x3c, 0x95, 0x38, 0x88, 0x3f, 0x40, 0xdf, 0x0b, 0x12, 0xb9, 0xc4, 0x39, 0x46, 0x3a, 0xee, 0xbe, + 0xd3, 0x13, 0x4f, 0x88, 0x1c, 0x13, 0x37, 0x0c, 0xea, 0x6c, 0x11, 0x7b, 0x57, 0xed, 0x61, 0x37, + 0xf0, 0xf6, 0xc3, 0xd7, 0xa6, 0x4f, 0xba, 0x36, 0x09, 0x4d, 0xe7, 0x30, 0xe0, 0xaf, 0xb4, 0xdf, + 0x00, 0x0a, 0xbb, 0xdc, 0x45, 0x74, 0x17, 0x16, 0x06, 0x24, 0x34, 0xab, 0xf2, 0xa6, 0xbc, 0x55, + 0xda, 0xbe, 0x56, 0x9b, 0xf6, 0xb5, 0xb6, 0x47, 0x42, 0xd3, 0x36, 0x43, 0x53, 0x5f, 0x8c, 0x23, + 0x95, 0xa1, 0x31, 0xfb, 0x45, 0x4d, 0x58, 0x08, 0x4f, 0x86, 0xa4, 0x9a, 0xdb, 0x94, 0xb7, 0x96, + 0xb7, 0x6f, 0x64, 0xe9, 0x0a, 0x33, 0xc9, 0xfa, 0xf4, 0x64, 0x48, 0x38, 0x0d, 0x55, 0xc4, 0xec, + 0x17, 0xbd, 0x04, 0xb0, 0x06, 0x76, 0x37, 0x08, 0xcd, 0xf0, 0x28, 0xa8, 0x5e, 0x62, 0x8e, 0xdc, + 0x9c, 0x43, 0xf6, 0x84, 0x01, 0x31, 0x09, 0x86, 0x9e, 0x1b, 0x10, 0x7d, 0x39, 0x8e, 0xd4, 0x14, + 0x81, 0x21, 0xe1, 0xa2, 0x35, 0x10, 0x20, 0xf4, 0x1c, 0xca, 0x8c, 0xa5, 0xcb, 0xf3, 0x55, 0x5d, + 0x60, 0xec, 0x6a, 0x16, 0x7b, 0x9b, 0x3e, 0xef, 0x32, 0x98, 0x5e, 0x89, 0x23, 0x75, 0x4c, 0xd1, + 0x90, 0x30, 0xcf, 0x3f, 0x07, 0xa0, 0x37, 0x70, 0x25, 0xfd, 0xba, 0xeb, 0x0b, 0x6f, 0xaa, 0x79, + 0x66, 0xe0, 0xc6, 0x39, 0x06, 0x46, 0xce, 0x5f, 0x8d, 0x23, 0x35, 0x9b, 0xc9, 0x90, 0xf0, 0xaa, + 0x3b, 0xad, 0x41, 0x2d, 0x33, 0x4a, 0x8a, 0x77, 0x89, 0x15, 0x76, 0x7d, 0xf2, 0xfd, 0x11, 0x09, + 0xc2, 0xaa, 0x32, 0xdb, 0xf2, 0x0e, 0x95, 0x76, 0x39, 0x1e, 0x73, 0x38, 0xb7, 0x9c, 0xc9, 0x44, + 0x2d, 0x9b, 0xd3, 0x1a, 0xe8, 0x07, 0xf8, 0x68, 0x12, 0x2f, 0x82, 0x2e, 0x30, 0xd3, 0x5b, 0xe7, + 0x9b, 0x16, 0x51, 0xaf, 0xc7, 0x91, 0x3a, 0x83, 0xcb, 0x90, 0xf0, 0x9a, 0x99, 0xa1, 0x83, 0x42, + 0x58, 0x1b, 0x69, 0xf0, 0x3c, 0xf1, 0xb0, 0x17, 0x99, 0xed, 0xcf, 0xe6, 0xd9, 0x66, 0xe9, 0xe3, + 0x51, 0x57, 0xe3, 0x48, 0xcd, 0xe4, 0x31, 0x24, 0x8c, 0xcc, 0x29, 0x3c, 0xad, 0x9f, 0x34, 0xba, + 0x5a, 0x9c, 0x5d, 0x3f, 0x29, 0x6b, 0xbc, 0x7e, 0xd2, 0x8a, 0xb4, 0x7e, 0x52, 0xf4, 0x68, 0x1f, + 0x2a, 0xf4, 0x4a, 0x0d, 0x0f, 0x4d, 0x97, 0x24, 0x95, 0x5f, 0x62, 0xdc, 0x9f, 0x64, 0x71, 0x37, + 0x12, 0x2c, 0x2f, 0x6b, 0x7d, 0x2d, 0x8e, 0xd4, 0x29, 0x02, 0x43, 0xc2, 0x2b, 0xf6, 0x38, 0x10, + 0x7d, 0x07, 0x65, 0xd6, 0x14, 0xba, 0x3e, 0x19, 0x7a, 0x7e, 0x58, 0x2d, 0xcf, 0xce, 0x16, 0xef, + 0x21, 0xb5, 0x26, 0x5d, 0x30, 0x43, 0xf3, 0x30, 0xd2, 0xfa, 0x34, 0x0c, 0x72, 0x06, 0x40, 0x3f, + 0xcb, 0xb0, 0x9e, 0x72, 0x63, 0xa2, 0xdd, 0x54, 0x97, 0x98, 0xb5, 0xcf, 0xe7, 0x47, 0x24, 0x94, + 0x1a, 0x5c, 0x47, 0xdf, 0x88, 0x23, 0x75, 0x0e, 0xa7, 0x21, 0xe1, 0xaa, 0x3d, 0x43, 0x57, 0xbb, + 0x0d, 0xa5, 0x54, 0xa3, 0x41, 0x00, 0x4a, 0xbb, 0x83, 0xf7, 0x76, 0x1e, 0x55, 0x24, 0x54, 0x86, + 0xc5, 0x46, 0xe7, 0x45, 0xfb, 0x51, 0x67, 0xa7, 0x51, 0x91, 0xe9, 0x9b, 0x67, 0x8f, 0x99, 0x9c, + 0xd3, 0x15, 0x58, 0xa0, 0x84, 0xda, 0xef, 0x97, 0xe0, 0x4a, 0x66, 0x87, 0x41, 0xdf, 0x82, 0x22, + 0x8e, 0x48, 0x66, 0x9d, 0xee, 0xce, 0x7b, 0x37, 0xa7, 0xf1, 0x5d, 0x1d, 0xe2, 0x48, 0x15, 0x54, + 0x58, 0xac, 0xc8, 0x01, 0x20, 0xbe, 0xef, 0xf9, 0x5d, 0xcb, 0xb3, 0x93, 0x56, 0x7a, 0xf7, 0x83, + 0x0d, 0x34, 0x29, 0xc5, 0xae, 0x67, 0x8b, 0x76, 0x78, 0xc6, 0x88, 0x8b, 0x24, 0x79, 0x85, 0xae, + 0x43, 0x61, 0x40, 0x82, 0xc0, 0xec, 0x11, 0xd6, 0x65, 0x8b, 0x7a, 0x29, 0x8e, 0xd4, 0x64, 0x0b, + 0x27, 0x02, 0x52, 0x21, 0xcf, 0x74, 0x58, 0xb3, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, + 0x8b, 0x76, 0x0f, 0x96, 0xc6, 0x9c, 0x41, 0x2b, 0x50, 0xda, 0xdd, 0x6b, 0x74, 0x9f, 0xb5, 0x1f, + 0xb6, 0x3b, 0x2f, 0xda, 0x15, 0x89, 0xe6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x04, 0x45, + 0x2a, 0x37, 0x31, 0xee, 0xe0, 0x4a, 0x4e, 0xab, 0x43, 0x65, 0xd2, 0x67, 0x0a, 0x6f, 0x62, 0x4c, + 0xe1, 0x12, 0xe5, 0xa2, 0x72, 0xc2, 0x25, 0x6b, 0xbf, 0x2c, 0xc0, 0xca, 0x44, 0xfd, 0xa3, 0x5b, + 0x50, 0x0c, 0x4e, 0x82, 0x90, 0x0c, 0xba, 0x8e, 0xcd, 0x0e, 0xa5, 0xa8, 0x2f, 0xc5, 0x91, 0x7a, + 0xb6, 0x89, 0x17, 0xb9, 0xd8, 0xb2, 0xd1, 0x03, 0x28, 0x24, 0xf5, 0x98, 0xdb, 0xbc, 0xb4, 0x55, + 0xda, 0xde, 0x9c, 0xd9, 0x9c, 0x93, 0x1a, 0x64, 0x79, 0x11, 0x4a, 0x38, 0x11, 0xe8, 0xa8, 0xa4, + 0xe3, 0x58, 0x4c, 0xa8, 0xcc, 0x51, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0x3e, 0xe3, 0x28, + 0x1a, 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x4e, 0xcc, + 0x1e, 0x41, 0x06, 0xc3, 0x71, 0x1f, 0x84, 0x0e, 0x4e, 0x04, 0xf4, 0xd3, 0xfc, 0x0b, 0xa7, 0x30, + 0xee, 0xff, 0xf5, 0xc2, 0xcd, 0xbe, 0x6e, 0xe8, 0x38, 0x19, 0x45, 0xa6, 0x15, 0x3a, 0xc7, 0x4e, + 0x78, 0x92, 0x74, 0xb2, 0x02, 0x73, 0x63, 0xf6, 0x28, 0xda, 0x11, 0x78, 0x71, 0x2d, 0x52, 0xa3, + 0x68, 0x82, 0x49, 0x0c, 0xa2, 0x71, 0xbc, 0xf6, 0xab, 0x0c, 0xab, 0x19, 0x3c, 0x68, 0x08, 0xab, + 0x63, 0xa3, 0x34, 0x75, 0x69, 0x4b, 0xdb, 0xd7, 0xcf, 0x19, 0xc9, 0xc2, 0x97, 0x8f, 0xe3, 0x48, + 0xcd, 0x62, 0x31, 0x24, 0x7c, 0xd9, 0x9d, 0x42, 0x2f, 0x82, 0x22, 0x7c, 0xfa, 0x4b, 0x86, 0xcb, + 0x53, 0x6c, 0xe8, 0x6b, 0x7a, 0x53, 0x7c, 0x9f, 0x1c, 0x9a, 0xa1, 0xe3, 0xb9, 0xad, 0x86, 0xa8, + 0x55, 0x14, 0x47, 0xea, 0xb2, 0x75, 0xf6, 0x82, 0x16, 0xec, 0x38, 0x10, 0x7d, 0x33, 0xea, 0x39, + 0xbc, 0x25, 0xac, 0x67, 0xb9, 0x3f, 0xa7, 0xad, 0xbc, 0xdf, 0x5d, 0xd7, 0xf6, 0x60, 0xa5, 0xe1, + 0xbd, 0x76, 0x0f, 0x3d, 0xd3, 0x4e, 0x46, 0xde, 0x05, 0xbe, 0x08, 0xb5, 0x1f, 0x73, 0xb0, 0x9a, + 0xf1, 0x99, 0x83, 0xf6, 0xc6, 0x3a, 0xe8, 0x07, 0x7d, 0xde, 0x65, 0x05, 0xd7, 0x02, 0x85, 0x16, + 0x8a, 0xe7, 0x8a, 0xe4, 0x9c, 0x77, 0xb6, 0x3b, 0x0c, 0xcc, 0xa9, 0xb8, 0x22, 0x16, 0x2b, 0x7a, + 0x0e, 0x25, 0x71, 0xce, 0x34, 0x20, 0x71, 0xb7, 0x3f, 0xcd, 0x76, 0x8f, 0xc2, 0x1a, 0x24, 0xb0, + 0x7c, 0x67, 0x18, 0x7a, 0xbe, 0xbe, 0x12, 0x47, 0x6a, 0x5a, 0x19, 0x03, 0x7f, 0xa0, 0x37, 0x4d, + 0xfb, 0x57, 0x86, 0xf2, 0xb3, 0x21, 0xcd, 0xab, 0x28, 0x85, 0x8b, 0x7c, 0x68, 0x3f, 0x99, 0x28, + 0x86, 0x7a, 0x96, 0x76, 0xda, 0x5a, 0xed, 0xa9, 0x6f, 0xba, 0xc1, 0x3e, 0xf1, 0xe7, 0x54, 0x88, + 0x06, 0x8a, 0x4f, 0xcc, 0xc0, 0x73, 0x45, 0x81, 0x30, 0x0c, 0xdf, 0xc1, 0x62, 0xd5, 0xbe, 0x84, + 0xe5, 0x71, 0x26, 0x54, 0x82, 0xc2, 0x59, 0x9b, 0x57, 0x20, 0xc7, 0x5a, 0x3c, 0x80, 0x72, 0x7f, + 0xa7, 0xf5, 0xa8, 0xd9, 0xa8, 0xe4, 0xb4, 0x3f, 0x65, 0x28, 0xd2, 0x0c, 0xec, 0xf6, 0x8f, 0xdc, + 0x03, 0xd4, 0x01, 0xa5, 0x4f, 0x4c, 0x9b, 0xf8, 0x73, 0x0f, 0x9e, 0x42, 0x89, 0x8d, 0x49, 0xe0, + 0x1d, 0xf9, 0x16, 0x31, 0x98, 0x02, 0xf7, 0x87, 0x2b, 0x1b, 0x12, 0x16, 0x12, 0x32, 0xf8, 0xb4, + 0x66, 0x89, 0x98, 0xf1, 0xc9, 0x39, 0x41, 0xc7, 0x1e, 0x79, 0x4a, 0xa9, 0xa6, 0x21, 0x61, 0xb6, + 0xea, 0x05, 0xc8, 0x5b, 0xf4, 0x95, 0xf6, 0x4e, 0x86, 0x2b, 0x99, 0x2e, 0x5c, 0xe8, 0xcc, 0x34, + 0x50, 0x18, 0x3d, 0x3f, 0xb3, 0x3c, 0x0f, 0x87, 0xef, 0x60, 0xb1, 0xa2, 0x2d, 0x58, 0xb4, 0xfa, + 0xc4, 0x3a, 0x08, 0x8e, 0x06, 0xe2, 0x10, 0xca, 0x71, 0xa4, 0x8e, 0xf6, 0xf0, 0x48, 0x42, 0x5f, + 0x00, 0x30, 0x9d, 0x6e, 0xe0, 0xbc, 0x25, 0x6c, 0x30, 0xe7, 0xc5, 0x1f, 0x9f, 0xd1, 0x2e, 0x2e, + 0x32, 0xf9, 0x89, 0xf3, 0x96, 0x68, 0x7f, 0xc8, 0xb0, 0x96, 0x95, 0x86, 0x0b, 0x45, 0x74, 0x83, + 0x7a, 0x4b, 0xad, 0x39, 0xb6, 0x88, 0x49, 0x78, 0xcb, 0xf7, 0x70, 0x81, 0x49, 0x2d, 0x1b, 0x5d, + 0x13, 0x67, 0x44, 0x43, 0x2a, 0x9f, 0x65, 0x9e, 0xe7, 0xfd, 0xd6, 0x56, 0xd2, 0x33, 0x69, 0x2d, + 0x3d, 0x6e, 0xb6, 0x1b, 0xad, 0xf6, 0x83, 0x54, 0x2d, 0x15, 0x21, 0x2f, 0x3e, 0x15, 0xf4, 0x3b, + 0x7f, 0x9f, 0x6e, 0xc8, 0xef, 0x4e, 0x37, 0xe4, 0x7f, 0x4e, 0x37, 0xe4, 0x97, 0x37, 0x7b, 0x4e, + 0xd8, 0x3f, 0x7a, 0x55, 0xb3, 0xbc, 0x41, 0x9d, 0xf9, 0x5c, 0x67, 0x3e, 0xd7, 0x03, 0xfb, 0xa0, + 0x7e, 0xbc, 0x5d, 0x67, 0x7f, 0x6d, 0xef, 0xb1, 0xdf, 0x57, 0x0a, 0x5b, 0x6e, 0xff, 0x17, 0x00, + 0x00, 0xff, 0xff, 0xb6, 0x04, 0xb9, 0x73, 0x89, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1453,17 +1514,19 @@ func (m *DataplaneStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if m.AgentActivityStatus != nil { - { - size, err := m.AgentActivityStatus.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.AgentActivityStatus) > 0 { + for iNdEx := len(m.AgentActivityStatus) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.AgentActivityStatus[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) } - i -= size - i = encodeVarintCommand(dAtA, i, uint64(size)) + i-- + dAtA[i] = 0x3a } - i-- - dAtA[i] = 0x3a } if len(m.DataplaneSoftwareDetails) > 0 { for iNdEx := len(m.DataplaneSoftwareDetails) - 1; iNdEx >= 0; iNdEx-- { @@ -1562,26 +1625,65 @@ func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { } } } - if len(m.Category) > 0 { - i -= len(m.Category) - copy(dAtA[i:], m.Category) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Category))) + return len(dAtA) - i, nil +} + +func (m *AgentActivityStatus_NginxConfigStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *AgentActivityStatus_NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.NginxConfigStatus != nil { + { + size, err := m.NginxConfigStatus.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintCommand(dAtA, i, uint64(size)) + } i-- - dAtA[i] = 0x22 + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} +func (m *NginxConfigStatus) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *NginxConfigStatus) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.Type) > 0 { - i -= len(m.Type) - copy(dAtA[i:], m.Type) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Type))) + if len(m.Message) > 0 { + i -= len(m.Message) + copy(dAtA[i:], m.Message) + i = encodeVarintCommand(dAtA, i, uint64(len(m.Message))) i-- dAtA[i] = 0x1a } - if len(m.Module) > 0 { - i -= len(m.Module) - copy(dAtA[i:], m.Module) - i = encodeVarintCommand(dAtA, i, uint64(len(m.Module))) + if m.Status != 0 { + i = encodeVarintCommand(dAtA, i, uint64(m.Status)) i-- - dAtA[i] = 0x12 + dAtA[i] = 0x10 } if len(m.CorrelationID) > 0 { i -= len(m.CorrelationID) @@ -1593,18 +1695,6 @@ func (m *AgentActivityStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *AgentActivityStatus_NginxConfigAction) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *AgentActivityStatus_NginxConfigAction) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - i = encodeVarintCommand(dAtA, i, uint64(m.NginxConfigAction)) - i-- - dAtA[i] = 0x28 - return len(dAtA) - i, nil -} func (m *DownloadRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -2147,9 +2237,11 @@ func (m *DataplaneStatus) Size() (n int) { n += 1 + l + sovCommand(uint64(l)) } } - if m.AgentActivityStatus != nil { - l = m.AgentActivityStatus.Size() - n += 1 + l + sovCommand(uint64(l)) + if len(m.AgentActivityStatus) > 0 { + for _, e := range m.AgentActivityStatus { + l = e.Size() + n += 1 + l + sovCommand(uint64(l)) + } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -2163,22 +2255,6 @@ func (m *AgentActivityStatus) Size() (n int) { } var l int _ = l - l = len(m.CorrelationID) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Module) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Type) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } - l = len(m.Category) - if l > 0 { - n += 1 + l + sovCommand(uint64(l)) - } if m.Status != nil { n += m.Status.Size() } @@ -2188,15 +2264,41 @@ func (m *AgentActivityStatus) Size() (n int) { return n } -func (m *AgentActivityStatus_NginxConfigAction) Size() (n int) { +func (m *AgentActivityStatus_NginxConfigStatus) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.NginxConfigStatus != nil { + l = m.NginxConfigStatus.Size() + n += 1 + l + sovCommand(uint64(l)) + } + return n +} +func (m *NginxConfigStatus) Size() (n int) { if m == nil { return 0 } var l int _ = l - n += 1 + sovCommand(uint64(m.NginxConfigAction)) + l = len(m.CorrelationID) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.Status != 0 { + n += 1 + sovCommand(uint64(m.Status)) + } + l = len(m.Message) + if l > 0 { + n += 1 + l + sovCommand(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } return n } + func (m *DownloadRequest) Size() (n int) { if m == nil { return 0 @@ -3190,10 +3292,8 @@ func (m *DataplaneStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.AgentActivityStatus == nil { - m.AgentActivityStatus = &AgentActivityStatus{} - } - if err := m.AgentActivityStatus.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.AgentActivityStatus = append(m.AgentActivityStatus, &AgentActivityStatus{}) + if err := m.AgentActivityStatus[len(m.AgentActivityStatus)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -3250,9 +3350,9 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigStatus", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCommand @@ -3262,27 +3362,81 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthCommand } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthCommand } if postIndex > l { return io.ErrUnexpectedEOF } - m.CorrelationID = string(dAtA[iNdEx:postIndex]) + v := &NginxConfigStatus{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Status = &AgentActivityStatus_NginxConfigStatus{v} iNdEx = postIndex - case 2: + default: + iNdEx = preIndex + skippy, err := skipCommand(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthCommand + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCommand + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: NginxConfigStatus: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: NginxConfigStatus: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Module", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3310,13 +3464,13 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Module = string(dAtA[iNdEx:postIndex]) + m.CorrelationID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } - var stringLen uint64 + m.Status = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCommand @@ -3326,27 +3480,14 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + m.Status |= Status(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCommand - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCommand - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Type = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 4: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Category", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3374,28 +3515,8 @@ func (m *AgentActivityStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Category = string(dAtA[iNdEx:postIndex]) + m.Message = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field NginxConfigAction", wireType) - } - var v NginxConfigAction - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCommand - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= NginxConfigAction(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Status = &AgentActivityStatus_NginxConfigAction{v} default: iNdEx = preIndex skippy, err := skipCommand(dAtA[iNdEx:]) diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index 1675c748e..204aef138 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -86,19 +86,27 @@ message DataplaneStatus { HostInfo host = 3 [(gogoproto.jsontag) = "host" ]; repeated NginxHealth healths = 5 [(gogoproto.jsontag) = "healths" ]; repeated DataplaneSoftwareDetails dataplane_software_details = 6 [(gogoproto.jsontag) = "dataplane_software_details"]; - AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; + repeated AgentActivityStatus agent_activity_status = 7 [(gogoproto.jsontag) = "agent_activity_status" ]; } message AgentActivityStatus { - string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; - string Module = 2 [(gogoproto.jsontag) = "module" ]; - string Type = 3 [(gogoproto.jsontag) = "type" ]; - string Category = 4 [(gogoproto.jsontag) = "category" ]; oneof Status { - NginxConfigAction nginx_config_action = 5 [(gogoproto.jsontag) = "nginx_config_action" ]; + NginxConfigStatus nginx_config_status = 1 [(gogoproto.jsontag) = "nginx_config_status" ]; } } +message NginxConfigStatus { + string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + Status status = 2 [(gogoproto.jsontag) = "status" ]; + string message = 3 [(gogoproto.jsontag) = "message" ]; +} + +enum Status { + PENDING = 0; + OK = 1; + ERROR = 2; +} + message DownloadRequest { Metadata meta = 1 [(gogoproto.jsontag) = "meta" ]; } diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go index b33bd6e39..9a79eb930 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.pb.go @@ -31,7 +31,6 @@ const ( NginxConfigAction_TEST NginxConfigAction = 2 NginxConfigAction_ROLLBACK NginxConfigAction = 3 NginxConfigAction_RETURN NginxConfigAction = 4 - NginxConfigAction_PENDING NginxConfigAction = 5 ) var NginxConfigAction_name = map[int32]string{ @@ -40,7 +39,6 @@ var NginxConfigAction_name = map[int32]string{ 2: "TEST", 3: "ROLLBACK", 4: "RETURN", - 5: "PENDING", } var NginxConfigAction_value = map[string]int32{ @@ -49,7 +47,6 @@ var NginxConfigAction_value = map[string]int32{ "TEST": 2, "ROLLBACK": 3, "RETURN": 4, - "PENDING": 5, } func (x NginxConfigAction) String() string { @@ -955,85 +952,85 @@ func init() { func init() { proto.RegisterFile("nginx.proto", fileDescriptor_917f1a70b1fd7255) } var fileDescriptor_917f1a70b1fd7255 = []byte{ - // 1245 bytes of a gzipped FileDescriptorProto + // 1233 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0xc6, - 0x16, 0x0e, 0x2d, 0xd9, 0x22, 0x8f, 0x64, 0x5b, 0x99, 0x7b, 0x2f, 0xa0, 0x04, 0xb9, 0xa6, 0xc1, - 0x7b, 0x83, 0xba, 0x29, 0x6a, 0x23, 0x4e, 0x8b, 0xa2, 0x68, 0xd0, 0x40, 0xb2, 0x94, 0x44, 0x88, - 0xa2, 0x18, 0x63, 0x39, 0x4d, 0x8d, 0x02, 0xea, 0x58, 0x1c, 0xcb, 0x44, 0x28, 0x52, 0x98, 0xa1, - 0x82, 0x24, 0xcf, 0xd0, 0x27, 0xe9, 0xae, 0xcb, 0xbe, 0x41, 0x77, 0xed, 0x13, 0x10, 0x45, 0x96, - 0xdc, 0xf4, 0x15, 0x8a, 0x39, 0x33, 0xa4, 0xe4, 0xbf, 0x26, 0x8b, 0x76, 0x33, 0x9c, 0xf3, 0xcd, - 0x39, 0x1f, 0xe7, 0xfc, 0x92, 0x50, 0x8d, 0xc6, 0x41, 0xf4, 0x7a, 0x7b, 0x2a, 0xe2, 0x24, 0x26, - 0xe4, 0xe4, 0xf3, 0x6d, 0x2d, 0xb3, 0x31, 0x8f, 0x92, 0x6d, 0xe9, 0xbf, 0xbc, 0x09, 0xe3, 0x78, - 0x1c, 0xeb, 0xf3, 0x9b, 0xb5, 0x51, 0x1c, 0x9d, 0x04, 0xe3, 0xb9, 0x34, 0x99, 0xc4, 0x91, 0x96, - 0xbc, 0x17, 0x60, 0xef, 0x87, 0x33, 0xd9, 0x8d, 0x4e, 0x62, 0x72, 0x1b, 0x2a, 0x3c, 0x62, 0xc7, - 0x21, 0xf7, 0x1b, 0xd6, 0xa6, 0xb5, 0x65, 0xb7, 0xaa, 0x59, 0xea, 0xe6, 0x10, 0xcd, 0x37, 0x4a, - 0x4d, 0xf0, 0x90, 0x33, 0xc9, 0x1b, 0x4b, 0x9b, 0xd6, 0x96, 0xa3, 0xd5, 0x0c, 0x44, 0xf3, 0x8d, - 0xd7, 0x81, 0xca, 0xc1, 0x41, 0x0f, 0x89, 0x5d, 0x58, 0x3e, 0x9e, 0x05, 0x61, 0xd2, 0xb0, 0x36, - 0x4b, 0x5b, 0x4e, 0xcb, 0xc9, 0x52, 0x57, 0x03, 0x54, 0x3f, 0xc8, 0x0d, 0x28, 0x89, 0x59, 0xd4, - 0x58, 0xc2, 0xe3, 0x4a, 0x96, 0xba, 0x4a, 0xa4, 0x6a, 0xf1, 0xf6, 0xc0, 0xde, 0x67, 0xc9, 0x29, - 0xf2, 0xdc, 0x80, 0xd2, 0x71, 0x10, 0xe1, 0xe5, 0x8c, 0xda, 0x71, 0x10, 0x51, 0xb5, 0x90, 0x5b, - 0x50, 0x56, 0x5e, 0x9a, 0x1b, 0xd9, 0x59, 0xea, 0xa2, 0x4c, 0x71, 0xf5, 0x7e, 0x5d, 0x86, 0x5a, - 0x5f, 0x45, 0xa8, 0xcd, 0x13, 0x16, 0x84, 0x92, 0x7c, 0x04, 0x36, 0x46, 0x6c, 0x18, 0xf8, 0x86, - 0xae, 0x96, 0xa5, 0x6e, 0x81, 0xd1, 0x0a, 0xee, 0xba, 0xe8, 0xec, 0x2b, 0x2e, 0x64, 0x10, 0x47, - 0x8b, 0xce, 0x1a, 0x88, 0xe6, 0x1b, 0x72, 0x07, 0x1c, 0xf5, 0xa2, 0xe1, 0x94, 0x25, 0xa7, 0x8d, - 0x12, 0x2a, 0xae, 0x66, 0xa9, 0x3b, 0x07, 0xa9, 0xad, 0xb6, 0xca, 0x13, 0xf2, 0x29, 0xc0, 0x54, - 0xc4, 0x23, 0x2e, 0xa5, 0x7a, 0x7b, 0x19, 0x95, 0xd7, 0xb2, 0xd4, 0x5d, 0x40, 0xa9, 0x63, 0xf6, - 0x5d, 0x9f, 0xdc, 0x83, 0x5a, 0x7e, 0x80, 0xec, 0xcb, 0x68, 0x50, 0xcf, 0x52, 0xf7, 0x0c, 0x4e, - 0xab, 0x46, 0xca, 0xdf, 0x21, 0x13, 0x26, 0x92, 0x61, 0x12, 0x4c, 0x78, 0x63, 0x65, 0xd3, 0xda, - 0x2a, 0xe9, 0x77, 0xcc, 0x51, 0xea, 0xe0, 0x7e, 0x10, 0x4c, 0x38, 0x69, 0xc2, 0x75, 0x4c, 0xc4, - 0xf0, 0x44, 0xc4, 0x93, 0xa1, 0x8c, 0x67, 0x62, 0xc4, 0x1b, 0x15, 0xac, 0x81, 0xff, 0x64, 0xa9, - 0x7b, 0xf1, 0x90, 0xae, 0x23, 0xf4, 0x50, 0xc4, 0x93, 0x03, 0x04, 0xc8, 0x03, 0xa8, 0x87, 0x31, - 0xf3, 0x55, 0x89, 0x0c, 0x27, 0xb1, 0x3f, 0x0b, 0xb9, 0x6c, 0xd8, 0x98, 0xcf, 0x7f, 0x67, 0xa9, - 0x7b, 0xe1, 0x8c, 0xae, 0xe7, 0xc8, 0x53, 0x0d, 0x90, 0xfb, 0xb0, 0x2e, 0x66, 0x91, 0xba, 0x59, - 0x61, 0xef, 0xa0, 0xfd, 0xbf, 0xb2, 0xd4, 0x3d, 0x7f, 0x44, 0xd7, 0x0c, 0x90, 0x5b, 0xef, 0x41, - 0x79, 0x1a, 0xce, 0x64, 0x03, 0x36, 0xad, 0xad, 0xea, 0xee, 0xed, 0xed, 0x8b, 0x2d, 0xb1, 0x8d, - 0x05, 0xa0, 0x8a, 0xfd, 0x29, 0x4f, 0x58, 0x9b, 0x25, 0x4c, 0x97, 0x89, 0x32, 0xa3, 0xb8, 0x92, - 0x07, 0x50, 0x92, 0x32, 0x6c, 0x54, 0x91, 0xe3, 0xff, 0x57, 0x72, 0x1c, 0xc8, 0xb0, 0xa0, 0xc0, - 0x2a, 0x94, 0x32, 0xa4, 0x6a, 0x31, 0x61, 0x4f, 0x66, 0x72, 0x38, 0x13, 0x61, 0xa3, 0x36, 0x4f, - 0xed, 0x1c, 0xc5, 0xb0, 0x27, 0x33, 0x79, 0x28, 0x42, 0xf2, 0x25, 0xac, 0xe9, 0xd6, 0x9c, 0x09, - 0x3e, 0x64, 0x62, 0x2c, 0x1b, 0xab, 0xe8, 0x31, 0xc9, 0x52, 0xf7, 0xdc, 0x09, 0x5d, 0x2d, 0xe4, - 0xa6, 0x18, 0x4b, 0x8f, 0xc1, 0xf5, 0x0b, 0xfe, 0xfc, 0xcd, 0x0d, 0xfc, 0xb3, 0x05, 0xf5, 0xf3, - 0xfe, 0x92, 0x23, 0xb0, 0xa5, 0x0c, 0x87, 0xc9, 0x9b, 0x29, 0xc7, 0x77, 0xac, 0xed, 0xde, 0xfd, - 0x90, 0x38, 0x15, 0xc0, 0xe0, 0xcd, 0x94, 0xeb, 0x5e, 0xcb, 0x69, 0x68, 0x45, 0x6a, 0x58, 0xdd, - 0xcb, 0xd7, 0xfd, 0x69, 0x26, 0x01, 0xde, 0xcb, 0x40, 0x34, 0xdf, 0x78, 0x9e, 0xe9, 0x65, 0xc3, - 0x46, 0x1c, 0x58, 0x6e, 0x1d, 0x76, 0x7b, 0x83, 0xfa, 0x35, 0x52, 0x81, 0x12, 0x3d, 0xec, 0xd7, - 0x2d, 0xef, 0x87, 0x25, 0xa8, 0xa2, 0xd2, 0x63, 0xce, 0xc2, 0xe4, 0xf4, 0xc3, 0xfb, 0xfd, 0x7b, - 0xa8, 0x69, 0x50, 0x67, 0x09, 0x03, 0xb4, 0xb6, 0xfb, 0xc9, 0x95, 0x3e, 0x6a, 0x7e, 0xe3, 0x1e, - 0x9a, 0xe8, 0xd6, 0x5c, 0x24, 0xa1, 0x7a, 0x5a, 0xeb, 0x63, 0x55, 0xe7, 0x3e, 0x1f, 0x0b, 0xe6, - 0x73, 0x7f, 0x28, 0x38, 0x93, 0x71, 0x64, 0x06, 0x06, 0xd6, 0xf9, 0xb9, 0x23, 0xba, 0x96, 0x03, - 0x14, 0x65, 0xef, 0x33, 0xe3, 0x97, 0x21, 0xab, 0x42, 0xe5, 0xb0, 0xff, 0xa4, 0xff, 0xec, 0x9b, - 0x7e, 0xfd, 0x1a, 0x01, 0x58, 0x69, 0xee, 0x0d, 0xba, 0xcf, 0x3b, 0x75, 0x8b, 0xd4, 0xc0, 0x6e, - 0x77, 0x1e, 0xd1, 0x66, 0xbb, 0xd3, 0xae, 0x2f, 0x79, 0x7f, 0x94, 0x8d, 0xd9, 0x1e, 0x16, 0x11, - 0xe9, 0xc2, 0x0a, 0x1b, 0x25, 0x6a, 0xa8, 0xe9, 0x1c, 0x5e, 0xdd, 0x2f, 0xda, 0xa0, 0x89, 0xca, - 0x2d, 0xc8, 0x52, 0xd7, 0x18, 0x52, 0xf3, 0x24, 0xcf, 0xa1, 0xaa, 0x2b, 0x73, 0xe8, 0xb3, 0x84, - 0x61, 0xbc, 0xae, 0xe8, 0x1d, 0x4d, 0xd5, 0xe6, 0x72, 0x24, 0x82, 0x69, 0x12, 0x8b, 0xd6, 0x7a, - 0x96, 0xba, 0x8b, 0xc6, 0x14, 0xb4, 0x80, 0x85, 0xd6, 0x81, 0xca, 0x5b, 0x2d, 0x62, 0x78, 0xaa, - 0xbb, 0x1b, 0x97, 0x71, 0x1e, 0x05, 0xd3, 0x29, 0xf7, 0x1f, 0x06, 0x21, 0xd7, 0xc5, 0x62, 0x4c, - 0x68, 0xbe, 0x21, 0xf7, 0xa1, 0xfc, 0x96, 0xcd, 0x5e, 0xe3, 0x98, 0x7d, 0x3f, 0x07, 0x0e, 0x04, - 0xa5, 0x4f, 0x71, 0x25, 0xfb, 0x50, 0x65, 0x23, 0x1c, 0xb1, 0x61, 0x3c, 0x96, 0x38, 0x7a, 0xaf, - 0x20, 0x69, 0xa2, 0x5a, 0x2f, 0x1e, 0x4b, 0xed, 0xd6, 0x82, 0x19, 0x05, 0x56, 0x1c, 0x92, 0x1e, - 0x00, 0x17, 0x22, 0x16, 0x9a, 0x70, 0x05, 0x09, 0xff, 0x7b, 0x19, 0x61, 0x47, 0x69, 0x21, 0x1f, - 0x0e, 0x90, 0xb9, 0x11, 0x75, 0x78, 0x7e, 0x44, 0xbe, 0xd6, 0x03, 0xab, 0x82, 0x34, 0xff, 0xbb, - 0x8c, 0xe6, 0x40, 0x86, 0x7b, 0x5c, 0x24, 0xc1, 0x49, 0x30, 0x62, 0x09, 0x97, 0xe7, 0xe6, 0xd5, - 0x0b, 0x58, 0xf5, 0x03, 0xc1, 0x47, 0x49, 0x2c, 0xde, 0x0c, 0x27, 0x6c, 0xda, 0xb0, 0x91, 0x69, - 0xf3, 0x32, 0xa6, 0x76, 0xae, 0xf8, 0x94, 0x4d, 0x5b, 0xd7, 0xb3, 0xd4, 0x3d, 0x6b, 0x4a, 0x6b, - 0xfe, 0x82, 0x82, 0x77, 0x04, 0xd0, 0x3c, 0xe3, 0xf5, 0x3c, 0x20, 0xf8, 0x17, 0x70, 0x85, 0xd7, - 0x85, 0x8d, 0xf6, 0x7a, 0x6e, 0x44, 0x9d, 0x22, 0x88, 0xde, 0x8f, 0x16, 0x38, 0x85, 0xa2, 0xfa, - 0xf2, 0x47, 0x6c, 0xc2, 0x4d, 0x5b, 0x63, 0x06, 0x95, 0x4c, 0x71, 0x25, 0x1e, 0xac, 0x9c, 0xc4, - 0x62, 0xc2, 0x12, 0x33, 0xea, 0xb0, 0x84, 0x35, 0x42, 0xcd, 0x93, 0xdc, 0x85, 0xea, 0x94, 0x8b, - 0x49, 0x20, 0xd5, 0xa7, 0x5c, 0x9a, 0x6e, 0xc4, 0x2c, 0x2e, 0xc0, 0x74, 0x51, 0x20, 0x5b, 0x60, - 0x0b, 0xae, 0xbf, 0x5f, 0x58, 0x5a, 0xb6, 0x9e, 0x27, 0x39, 0x46, 0x8b, 0x9d, 0x77, 0x08, 0x4e, - 0x91, 0x4a, 0xf2, 0x18, 0x9c, 0x22, 0x91, 0x26, 0x0c, 0xb7, 0xfe, 0x2a, 0xf9, 0xfa, 0x27, 0xa2, - 0x30, 0xa1, 0x76, 0x9e, 0x7a, 0xef, 0x27, 0x0b, 0xec, 0x5c, 0xeb, 0x3d, 0x21, 0xb8, 0x03, 0x4e, - 0x18, 0x8f, 0x87, 0x21, 0x7f, 0xc5, 0x43, 0x13, 0x05, 0xa4, 0x2d, 0x40, 0x6a, 0x87, 0xf1, 0xb8, - 0xa7, 0x76, 0xff, 0x68, 0x28, 0xee, 0x7c, 0x67, 0xbe, 0x59, 0x8b, 0x33, 0xe5, 0xec, 0x04, 0x73, - 0x60, 0xb9, 0xb9, 0xbf, 0xdf, 0xfb, 0xb6, 0x6e, 0x11, 0x1b, 0xca, 0x83, 0xce, 0xc1, 0xa0, 0xbe, - 0xa4, 0x46, 0x19, 0x7d, 0xd6, 0xeb, 0xb5, 0x9a, 0x7b, 0x4f, 0xea, 0x25, 0x35, 0xe4, 0x68, 0x67, - 0x70, 0x48, 0xfb, 0xf5, 0xb2, 0xb2, 0xdd, 0xef, 0xf4, 0xdb, 0xdd, 0xfe, 0xa3, 0xfa, 0x72, 0xeb, - 0x8b, 0x5f, 0xde, 0x6d, 0x58, 0xbf, 0xbd, 0xdb, 0xb0, 0x7e, 0x7f, 0xb7, 0x61, 0x1d, 0x7d, 0x3c, - 0x0e, 0x92, 0xd3, 0xd9, 0xf1, 0xf6, 0x28, 0x9e, 0xec, 0x60, 0x74, 0x77, 0x30, 0xba, 0x3b, 0xd2, - 0x7f, 0xb9, 0xf3, 0x6a, 0x77, 0x07, 0x7f, 0x7e, 0xbf, 0xc2, 0xf5, 0x78, 0x05, 0x1f, 0xf7, 0xfe, - 0x0c, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xe0, 0x9f, 0x5c, 0x54, 0x0b, 0x00, 0x00, + 0x13, 0x0f, 0x2d, 0xd9, 0x22, 0x47, 0xb2, 0xad, 0xec, 0xff, 0x5f, 0x40, 0x09, 0x52, 0xd3, 0x60, + 0x1b, 0xd4, 0x4d, 0x51, 0x1b, 0x71, 0x5a, 0x14, 0x45, 0x83, 0x06, 0x92, 0xa5, 0x34, 0x46, 0x14, + 0xc7, 0x58, 0xcb, 0x69, 0xea, 0x8b, 0xba, 0x16, 0xd7, 0x32, 0x11, 0x8a, 0x14, 0x76, 0xc9, 0x20, + 0xc9, 0x33, 0xf4, 0x49, 0x7a, 0xeb, 0xb1, 0x6f, 0xd0, 0x5b, 0xfb, 0x04, 0x44, 0x91, 0x23, 0x2f, + 0x7d, 0x85, 0x62, 0x67, 0x97, 0x94, 0xfc, 0xd5, 0xe4, 0xd0, 0x5e, 0x96, 0x3b, 0xbf, 0x9d, 0xf9, + 0x71, 0xe7, 0x93, 0x84, 0x7a, 0x34, 0x0e, 0xa2, 0x57, 0x9b, 0x53, 0x11, 0x27, 0x31, 0x21, 0x27, + 0x5f, 0x6e, 0x6a, 0x99, 0x8d, 0x79, 0x94, 0x6c, 0x4a, 0xff, 0xc5, 0x4d, 0x18, 0xc7, 0xe3, 0x58, + 0x9f, 0xdf, 0x6c, 0x8c, 0xe2, 0xe8, 0x24, 0x18, 0xcf, 0xa4, 0xc9, 0x24, 0x8e, 0xb4, 0xe4, 0x3d, + 0x07, 0x7b, 0x3f, 0x4c, 0xe5, 0x6e, 0x74, 0x12, 0x93, 0xdb, 0x50, 0xe3, 0x11, 0x3b, 0x0e, 0xb9, + 0xdf, 0xb2, 0xd6, 0xad, 0x0d, 0xbb, 0x53, 0xcf, 0x33, 0xb7, 0x80, 0x68, 0xb1, 0x51, 0x6a, 0x82, + 0x87, 0x9c, 0x49, 0xde, 0x5a, 0x58, 0xb7, 0x36, 0x1c, 0xad, 0x66, 0x20, 0x5a, 0x6c, 0xbc, 0x1e, + 0xd4, 0x0e, 0x0e, 0xfa, 0x48, 0xec, 0xc2, 0xe2, 0x71, 0x1a, 0x84, 0x49, 0xcb, 0x5a, 0xaf, 0x6c, + 0x38, 0x1d, 0x27, 0xcf, 0x5c, 0x0d, 0x50, 0xfd, 0x20, 0x37, 0xa0, 0x22, 0xd2, 0xa8, 0xb5, 0x80, + 0xc7, 0xb5, 0x3c, 0x73, 0x95, 0x48, 0xd5, 0xe2, 0xed, 0x80, 0xbd, 0xcf, 0x92, 0x53, 0xe4, 0xb9, + 0x01, 0x95, 0xe3, 0x20, 0xc2, 0xcb, 0x19, 0xb5, 0xe3, 0x20, 0xa2, 0x6a, 0x21, 0xb7, 0xa0, 0xaa, + 0xbc, 0x34, 0x37, 0xb2, 0xf3, 0xcc, 0x45, 0x99, 0xe2, 0xea, 0xfd, 0xbe, 0x08, 0x8d, 0x3d, 0x15, + 0xa1, 0x2e, 0x4f, 0x58, 0x10, 0x4a, 0xf2, 0x09, 0xd8, 0x18, 0xb1, 0x61, 0xe0, 0x1b, 0xba, 0x46, + 0x9e, 0xb9, 0x25, 0x46, 0x6b, 0xb8, 0xdb, 0x45, 0x67, 0x5f, 0x72, 0x21, 0x83, 0x38, 0x9a, 0x77, + 0xd6, 0x40, 0xb4, 0xd8, 0x90, 0x3b, 0xe0, 0xa8, 0x17, 0x0d, 0xa7, 0x2c, 0x39, 0x6d, 0x55, 0x50, + 0x71, 0x39, 0xcf, 0xdc, 0x19, 0x48, 0x6d, 0xb5, 0x55, 0x9e, 0x90, 0xcf, 0x01, 0xa6, 0x22, 0x1e, + 0x71, 0x29, 0xd5, 0xdb, 0xab, 0xa8, 0xbc, 0x92, 0x67, 0xee, 0x1c, 0x4a, 0x1d, 0xb3, 0xdf, 0xf5, + 0xc9, 0x3d, 0x68, 0x14, 0x07, 0xc8, 0xbe, 0x88, 0x06, 0xcd, 0x3c, 0x73, 0xcf, 0xe0, 0xb4, 0x6e, + 0xa4, 0xe2, 0x1d, 0x32, 0x61, 0x22, 0x19, 0x26, 0xc1, 0x84, 0xb7, 0x96, 0xd6, 0xad, 0x8d, 0x8a, + 0x7e, 0xc7, 0x0c, 0xa5, 0x0e, 0xee, 0x07, 0xc1, 0x84, 0x93, 0x36, 0x5c, 0xc7, 0x44, 0x0c, 0x4f, + 0x44, 0x3c, 0x19, 0xca, 0x38, 0x15, 0x23, 0xde, 0xaa, 0x61, 0x0d, 0x7c, 0x90, 0x67, 0xee, 0xc5, + 0x43, 0xba, 0x8a, 0xd0, 0x43, 0x11, 0x4f, 0x0e, 0x10, 0x20, 0x0f, 0xa0, 0x19, 0xc6, 0xcc, 0x57, + 0x25, 0x32, 0x9c, 0xc4, 0x7e, 0x1a, 0x72, 0xd9, 0xb2, 0x31, 0x9f, 0xff, 0xcf, 0x33, 0xf7, 0xc2, + 0x19, 0x5d, 0x2d, 0x90, 0x27, 0x1a, 0x20, 0xf7, 0x61, 0x55, 0xa4, 0x91, 0xba, 0x59, 0x69, 0xef, + 0xa0, 0xfd, 0xff, 0xf2, 0xcc, 0x3d, 0x7f, 0x44, 0x57, 0x0c, 0x50, 0x58, 0xef, 0x40, 0x75, 0x1a, + 0xa6, 0xb2, 0x05, 0xeb, 0xd6, 0x46, 0x7d, 0xfb, 0xf6, 0xe6, 0xc5, 0x96, 0xd8, 0xc4, 0x02, 0x50, + 0xc5, 0xfe, 0x84, 0x27, 0xac, 0xcb, 0x12, 0xa6, 0xcb, 0x44, 0x99, 0x51, 0x5c, 0xc9, 0x03, 0xa8, + 0x48, 0x19, 0xb6, 0xea, 0xc8, 0xf1, 0xf1, 0x95, 0x1c, 0x07, 0x32, 0x2c, 0x29, 0xb0, 0x0a, 0xa5, + 0x0c, 0xa9, 0x5a, 0x4c, 0xd8, 0x93, 0x54, 0x0e, 0x53, 0x11, 0xb6, 0x1a, 0xb3, 0xd4, 0xce, 0x50, + 0x0c, 0x7b, 0x92, 0xca, 0x43, 0x11, 0x92, 0xaf, 0x61, 0x45, 0xb7, 0x66, 0x2a, 0xf8, 0x90, 0x89, + 0xb1, 0x6c, 0x2d, 0xa3, 0xc7, 0x24, 0xcf, 0xdc, 0x73, 0x27, 0x74, 0xb9, 0x94, 0xdb, 0x62, 0x2c, + 0x3d, 0x06, 0xd7, 0x2f, 0xf8, 0xf3, 0x2f, 0x37, 0xf0, 0xaf, 0x16, 0x34, 0xcf, 0xfb, 0x4b, 0x8e, + 0xc0, 0x96, 0x32, 0x1c, 0x26, 0xaf, 0xa7, 0x1c, 0xdf, 0xb1, 0xb2, 0x7d, 0xf7, 0x7d, 0xe2, 0x54, + 0x02, 0x83, 0xd7, 0x53, 0xae, 0x7b, 0xad, 0xa0, 0xa1, 0x35, 0xa9, 0x61, 0x75, 0x2f, 0x5f, 0xf7, + 0xa7, 0x99, 0x04, 0x78, 0x2f, 0x03, 0xd1, 0x62, 0xe3, 0x79, 0xa6, 0x97, 0x0d, 0x1b, 0x71, 0x60, + 0xb1, 0x73, 0xb8, 0xdb, 0x1f, 0x34, 0xaf, 0x91, 0x1a, 0x54, 0xe8, 0xe1, 0x5e, 0xd3, 0xf2, 0x7e, + 0x5a, 0x80, 0x3a, 0x2a, 0x3d, 0xe2, 0x2c, 0x4c, 0x4e, 0xdf, 0xbf, 0xdf, 0x7f, 0x84, 0x86, 0x06, + 0x75, 0x96, 0x30, 0x40, 0x2b, 0xdb, 0x9f, 0x5d, 0xe9, 0xa3, 0xe6, 0x37, 0xee, 0xa1, 0x89, 0x6e, + 0xcd, 0x79, 0x12, 0xaa, 0xa7, 0xb5, 0x3e, 0x56, 0x75, 0xee, 0xf3, 0xb1, 0x60, 0x3e, 0xf7, 0x87, + 0x82, 0x33, 0x19, 0x47, 0x66, 0x60, 0x60, 0x9d, 0x9f, 0x3b, 0xa2, 0x2b, 0x05, 0x40, 0x51, 0xf6, + 0xbe, 0x30, 0x7e, 0x19, 0xb2, 0x3a, 0xd4, 0x0e, 0xf7, 0x1e, 0xef, 0x3d, 0xfd, 0x7e, 0xaf, 0x79, + 0x8d, 0x00, 0x2c, 0xb5, 0x77, 0x06, 0xbb, 0xcf, 0x7a, 0x4d, 0x8b, 0x34, 0xc0, 0xee, 0xf6, 0xbe, + 0xa3, 0xed, 0x6e, 0xaf, 0xdb, 0x5c, 0xf0, 0xfe, 0xaa, 0x1a, 0xb3, 0x1d, 0x2c, 0x22, 0xb2, 0x0b, + 0x4b, 0x6c, 0x94, 0xa8, 0xa1, 0xa6, 0x73, 0x78, 0x75, 0xbf, 0x68, 0x83, 0x36, 0x2a, 0x77, 0x20, + 0xcf, 0x5c, 0x63, 0x48, 0xcd, 0x93, 0x3c, 0x83, 0xba, 0xae, 0xcc, 0xa1, 0xcf, 0x12, 0x86, 0xf1, + 0xba, 0xa2, 0x77, 0x34, 0x55, 0x97, 0xcb, 0x91, 0x08, 0xa6, 0x49, 0x2c, 0x3a, 0xab, 0x79, 0xe6, + 0xce, 0x1b, 0x53, 0xd0, 0x02, 0x16, 0x5a, 0x0f, 0x6a, 0x6f, 0xb4, 0x88, 0xe1, 0xa9, 0x6f, 0xaf, + 0x5d, 0xc6, 0x79, 0x14, 0x4c, 0xa7, 0xdc, 0x7f, 0x18, 0x84, 0x5c, 0x17, 0x8b, 0x31, 0xa1, 0xc5, + 0x86, 0xdc, 0x87, 0xea, 0x1b, 0x96, 0xbe, 0xc2, 0x31, 0xfb, 0x6e, 0x0e, 0x1c, 0x08, 0x4a, 0x9f, + 0xe2, 0x4a, 0xf6, 0xa1, 0xce, 0x46, 0x38, 0x62, 0xc3, 0x78, 0x2c, 0x71, 0xf4, 0x5e, 0x41, 0xd2, + 0x46, 0xb5, 0x7e, 0x3c, 0x96, 0xda, 0xad, 0x39, 0x33, 0x0a, 0xac, 0x3c, 0x24, 0x7d, 0x00, 0x2e, + 0x44, 0x2c, 0x34, 0xe1, 0x12, 0x12, 0x7e, 0x78, 0x19, 0x61, 0x4f, 0x69, 0x21, 0x1f, 0x0e, 0x90, + 0x99, 0x11, 0x75, 0x78, 0x71, 0x44, 0xbe, 0xd5, 0x03, 0xab, 0x86, 0x34, 0x1f, 0x5d, 0x46, 0x73, + 0x20, 0xc3, 0x1d, 0x2e, 0x92, 0xe0, 0x24, 0x18, 0xb1, 0x84, 0xcb, 0x73, 0xf3, 0xea, 0x39, 0x2c, + 0xfb, 0x81, 0xe0, 0xa3, 0x24, 0x16, 0xaf, 0x87, 0x13, 0x36, 0x6d, 0xd9, 0xc8, 0xb4, 0x7e, 0x19, + 0x53, 0xb7, 0x50, 0x7c, 0xc2, 0xa6, 0x9d, 0xeb, 0x79, 0xe6, 0x9e, 0x35, 0xa5, 0x0d, 0x7f, 0x4e, + 0xc1, 0x3b, 0x02, 0x68, 0x9f, 0xf1, 0x7a, 0x16, 0x10, 0xfc, 0x0b, 0xb8, 0xc2, 0xeb, 0xd2, 0x46, + 0x7b, 0x3d, 0x33, 0xa2, 0x4e, 0x19, 0x44, 0xef, 0x67, 0x0b, 0x9c, 0x52, 0x51, 0x7d, 0xf9, 0x23, + 0x36, 0xe1, 0xa6, 0xad, 0x31, 0x83, 0x4a, 0xa6, 0xb8, 0x12, 0x0f, 0x96, 0x4e, 0x62, 0x31, 0x61, + 0x89, 0x19, 0x75, 0x58, 0xc2, 0x1a, 0xa1, 0xe6, 0x49, 0xee, 0x42, 0x7d, 0xca, 0xc5, 0x24, 0x90, + 0xea, 0x53, 0x2e, 0x4d, 0x37, 0x62, 0x16, 0xe7, 0x60, 0x3a, 0x2f, 0x90, 0x0d, 0xb0, 0x05, 0xd7, + 0xdf, 0x2f, 0x2c, 0x2d, 0x5b, 0xcf, 0x93, 0x02, 0xa3, 0xe5, 0xce, 0x3b, 0x04, 0xa7, 0x4c, 0x25, + 0x79, 0x04, 0x4e, 0x99, 0x48, 0x13, 0x86, 0x5b, 0xff, 0x94, 0x7c, 0xfd, 0x13, 0x51, 0x9a, 0x50, + 0xbb, 0x48, 0xbd, 0xf7, 0x8b, 0x05, 0x76, 0xa1, 0xf5, 0x8e, 0x10, 0xdc, 0x01, 0x27, 0x8c, 0xc7, + 0xc3, 0x90, 0xbf, 0xe4, 0xa1, 0x89, 0x02, 0xd2, 0x96, 0x20, 0xb5, 0xc3, 0x78, 0xdc, 0x57, 0xbb, + 0xff, 0x34, 0x14, 0x77, 0x9e, 0x9a, 0x6f, 0xd6, 0xfc, 0x4c, 0x39, 0x3b, 0xc1, 0x1c, 0x58, 0x6c, + 0xef, 0xef, 0xf7, 0x7f, 0x68, 0x5a, 0xc4, 0x86, 0xea, 0xa0, 0x77, 0x30, 0x68, 0x2e, 0xa8, 0x51, + 0x46, 0x9f, 0xf6, 0xfb, 0x9d, 0xf6, 0xce, 0xe3, 0x66, 0x45, 0x0d, 0x39, 0xda, 0x1b, 0x1c, 0xd2, + 0xbd, 0x66, 0xb5, 0xf3, 0xd5, 0x6f, 0x6f, 0xd7, 0xac, 0x3f, 0xde, 0xae, 0x59, 0x7f, 0xbe, 0x5d, + 0xb3, 0x8e, 0x3e, 0x1d, 0x07, 0xc9, 0x69, 0x7a, 0xbc, 0x39, 0x8a, 0x27, 0x5b, 0x18, 0xd0, 0x2d, + 0x0c, 0xe8, 0x96, 0xf4, 0x5f, 0x6c, 0xbd, 0xdc, 0xde, 0xc2, 0xff, 0xdd, 0x6f, 0x70, 0x3d, 0x5e, + 0xc2, 0xc7, 0xbd, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x56, 0xdc, 0xdc, 0x47, 0x0b, 0x00, + 0x00, } func (m *PlusInfo) Marshal() (dAtA []byte, err error) { diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto index dcb1386f9..9f6f1ad55 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/nginx.proto @@ -69,7 +69,6 @@ enum NginxConfigAction { TEST = 2; ROLLBACK = 3; RETURN = 4; - PENDING = 5; } message NginxConfig { From e8d5dd43692a83efd4bdf149d06eeb304382674b Mon Sep 17 00:00:00 2001 From: dhurley Date: Mon, 26 Sep 2022 17:29:28 +0100 Subject: [PATCH 3/4] Updated NginxConfigStatus message --- sdk/proto/command.pb.go | 188 +++++++++--------- sdk/proto/command.proto | 2 +- .../nginx/agent/sdk/v2/proto/command.pb.go | 188 +++++++++--------- .../nginx/agent/sdk/v2/proto/command.proto | 2 +- .../nginx/agent/sdk/v2/proto/command.pb.go | 188 +++++++++--------- .../nginx/agent/sdk/v2/proto/command.proto | 2 +- 6 files changed, 285 insertions(+), 285 deletions(-) diff --git a/sdk/proto/command.pb.go b/sdk/proto/command.pb.go index dfadb9bb5..b13c38292 100644 --- a/sdk/proto/command.pb.go +++ b/sdk/proto/command.pb.go @@ -607,7 +607,7 @@ func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { } type NginxConfigStatus struct { - CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -648,9 +648,9 @@ func (m *NginxConfigStatus) XXX_DiscardUnknown() { var xxx_messageInfo_NginxConfigStatus proto.InternalMessageInfo -func (m *NginxConfigStatus) GetCorrelationID() string { +func (m *NginxConfigStatus) GetCorrelationId() string { if m != nil { - return m.CorrelationID + return m.CorrelationId } return "" } @@ -1087,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1371 bytes of a gzipped FileDescriptorProto + // 1369 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, - 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xa3, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, + 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xac, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, - 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0xbd, 0xec, 0x43, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, - 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0xa3, 0xab, - 0xdf, 0xf9, 0x9d, 0x3f, 0xf7, 0xdc, 0x73, 0x64, 0x58, 0xb2, 0xbc, 0xc1, 0xc0, 0x74, 0xed, 0xda, - 0xd0, 0xf7, 0x42, 0x0f, 0xa1, 0xfd, 0xaf, 0x6a, 0x6e, 0xcf, 0x71, 0xdf, 0xd4, 0xcc, 0x1e, 0x71, - 0xc3, 0x5a, 0x60, 0x1f, 0xac, 0x43, 0xcf, 0xeb, 0x79, 0xfc, 0xfd, 0x7a, 0x99, 0xc2, 0x3d, 0x57, - 0x3c, 0x95, 0x38, 0x88, 0x3f, 0x40, 0xdf, 0x0b, 0x12, 0xb9, 0xc4, 0x39, 0x46, 0x3a, 0xee, 0xbe, - 0xd3, 0x13, 0x4f, 0x88, 0x1c, 0x13, 0x37, 0x0c, 0xea, 0x6c, 0x11, 0x7b, 0x57, 0xed, 0x61, 0x37, - 0xf0, 0xf6, 0xc3, 0xd7, 0xa6, 0x4f, 0xba, 0x36, 0x09, 0x4d, 0xe7, 0x30, 0xe0, 0xaf, 0xb4, 0xdf, - 0x00, 0x0a, 0xbb, 0xdc, 0x45, 0x74, 0x17, 0x16, 0x06, 0x24, 0x34, 0xab, 0xf2, 0xa6, 0xbc, 0x55, - 0xda, 0xbe, 0x56, 0x9b, 0xf6, 0xb5, 0xb6, 0x47, 0x42, 0xd3, 0x36, 0x43, 0x53, 0x5f, 0x8c, 0x23, - 0x95, 0xa1, 0x31, 0xfb, 0x45, 0x4d, 0x58, 0x08, 0x4f, 0x86, 0xa4, 0x9a, 0xdb, 0x94, 0xb7, 0x96, - 0xb7, 0x6f, 0x64, 0xe9, 0x0a, 0x33, 0xc9, 0xfa, 0xf4, 0x64, 0x48, 0x38, 0x0d, 0x55, 0xc4, 0xec, - 0x17, 0xbd, 0x04, 0xb0, 0x06, 0x76, 0x37, 0x08, 0xcd, 0xf0, 0x28, 0xa8, 0x5e, 0x62, 0x8e, 0xdc, - 0x9c, 0x43, 0xf6, 0x84, 0x01, 0x31, 0x09, 0x86, 0x9e, 0x1b, 0x10, 0x7d, 0x39, 0x8e, 0xd4, 0x14, - 0x81, 0x21, 0xe1, 0xa2, 0x35, 0x10, 0x20, 0xf4, 0x1c, 0xca, 0x8c, 0xa5, 0xcb, 0xf3, 0x55, 0x5d, - 0x60, 0xec, 0x6a, 0x16, 0x7b, 0x9b, 0x3e, 0xef, 0x32, 0x98, 0x5e, 0x89, 0x23, 0x75, 0x4c, 0xd1, - 0x90, 0x30, 0xcf, 0x3f, 0x07, 0xa0, 0x37, 0x70, 0x25, 0xfd, 0xba, 0xeb, 0x0b, 0x6f, 0xaa, 0x79, - 0x66, 0xe0, 0xc6, 0x39, 0x06, 0x46, 0xce, 0x5f, 0x8d, 0x23, 0x35, 0x9b, 0xc9, 0x90, 0xf0, 0xaa, - 0x3b, 0xad, 0x41, 0x2d, 0x33, 0x4a, 0x8a, 0x77, 0x89, 0x15, 0x76, 0x7d, 0xf2, 0xfd, 0x11, 0x09, - 0xc2, 0xaa, 0x32, 0xdb, 0xf2, 0x0e, 0x95, 0x76, 0x39, 0x1e, 0x73, 0x38, 0xb7, 0x9c, 0xc9, 0x44, - 0x2d, 0x9b, 0xd3, 0x1a, 0xe8, 0x07, 0xf8, 0x68, 0x12, 0x2f, 0x82, 0x2e, 0x30, 0xd3, 0x5b, 0xe7, - 0x9b, 0x16, 0x51, 0xaf, 0xc7, 0x91, 0x3a, 0x83, 0xcb, 0x90, 0xf0, 0x9a, 0x99, 0xa1, 0x83, 0x42, - 0x58, 0x1b, 0x69, 0xf0, 0x3c, 0xf1, 0xb0, 0x17, 0x99, 0xed, 0xcf, 0xe6, 0xd9, 0x66, 0xe9, 0xe3, - 0x51, 0x57, 0xe3, 0x48, 0xcd, 0xe4, 0x31, 0x24, 0x8c, 0xcc, 0x29, 0x3c, 0xad, 0x9f, 0x34, 0xba, - 0x5a, 0x9c, 0x5d, 0x3f, 0x29, 0x6b, 0xbc, 0x7e, 0xd2, 0x8a, 0xb4, 0x7e, 0x52, 0xf4, 0x68, 0x1f, - 0x2a, 0xf4, 0x4a, 0x0d, 0x0f, 0x4d, 0x97, 0x24, 0x95, 0x5f, 0x62, 0xdc, 0x9f, 0x64, 0x71, 0x37, - 0x12, 0x2c, 0x2f, 0x6b, 0x7d, 0x2d, 0x8e, 0xd4, 0x29, 0x02, 0x43, 0xc2, 0x2b, 0xf6, 0x38, 0x10, - 0x7d, 0x07, 0x65, 0xd6, 0x14, 0xba, 0x3e, 0x19, 0x7a, 0x7e, 0x58, 0x2d, 0xcf, 0xce, 0x16, 0xef, - 0x21, 0xb5, 0x26, 0x5d, 0x30, 0x43, 0xf3, 0x30, 0xd2, 0xfa, 0x34, 0x0c, 0x72, 0x06, 0x40, 0x3f, - 0xcb, 0xb0, 0x9e, 0x72, 0x63, 0xa2, 0xdd, 0x54, 0x97, 0x98, 0xb5, 0xcf, 0xe7, 0x47, 0x24, 0x94, - 0x1a, 0x5c, 0x47, 0xdf, 0x88, 0x23, 0x75, 0x0e, 0xa7, 0x21, 0xe1, 0xaa, 0x3d, 0x43, 0x57, 0xbb, - 0x0d, 0xa5, 0x54, 0xa3, 0x41, 0x00, 0x4a, 0xbb, 0x83, 0xf7, 0x76, 0x1e, 0x55, 0x24, 0x54, 0x86, - 0xc5, 0x46, 0xe7, 0x45, 0xfb, 0x51, 0x67, 0xa7, 0x51, 0x91, 0xe9, 0x9b, 0x67, 0x8f, 0x99, 0x9c, - 0xd3, 0x15, 0x58, 0xa0, 0x84, 0xda, 0xef, 0x97, 0xe0, 0x4a, 0x66, 0x87, 0x41, 0xdf, 0x82, 0x22, - 0x8e, 0x48, 0x66, 0x9d, 0xee, 0xce, 0x7b, 0x37, 0xa7, 0xf1, 0x5d, 0x1d, 0xe2, 0x48, 0x15, 0x54, - 0x58, 0xac, 0xc8, 0x01, 0x20, 0xbe, 0xef, 0xf9, 0x5d, 0xcb, 0xb3, 0x93, 0x56, 0x7a, 0xf7, 0x83, - 0x0d, 0x34, 0x29, 0xc5, 0xae, 0x67, 0x8b, 0x76, 0x78, 0xc6, 0x88, 0x8b, 0x24, 0x79, 0x85, 0xae, - 0x43, 0x61, 0x40, 0x82, 0xc0, 0xec, 0x11, 0xd6, 0x65, 0x8b, 0x7a, 0x29, 0x8e, 0xd4, 0x64, 0x0b, - 0x27, 0x02, 0x52, 0x21, 0xcf, 0x74, 0x58, 0xb3, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, - 0x8b, 0x76, 0x0f, 0x96, 0xc6, 0x9c, 0x41, 0x2b, 0x50, 0xda, 0xdd, 0x6b, 0x74, 0x9f, 0xb5, 0x1f, - 0xb6, 0x3b, 0x2f, 0xda, 0x15, 0x89, 0xe6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x04, 0x45, - 0x2a, 0x37, 0x31, 0xee, 0xe0, 0x4a, 0x4e, 0xab, 0x43, 0x65, 0xd2, 0x67, 0x0a, 0x6f, 0x62, 0x4c, - 0xe1, 0x12, 0xe5, 0xa2, 0x72, 0xc2, 0x25, 0x6b, 0xbf, 0x2c, 0xc0, 0xca, 0x44, 0xfd, 0xa3, 0x5b, - 0x50, 0x0c, 0x4e, 0x82, 0x90, 0x0c, 0xba, 0x8e, 0xcd, 0x0e, 0xa5, 0xa8, 0x2f, 0xc5, 0x91, 0x7a, - 0xb6, 0x89, 0x17, 0xb9, 0xd8, 0xb2, 0xd1, 0x03, 0x28, 0x24, 0xf5, 0x98, 0xdb, 0xbc, 0xb4, 0x55, - 0xda, 0xde, 0x9c, 0xd9, 0x9c, 0x93, 0x1a, 0x64, 0x79, 0x11, 0x4a, 0x38, 0x11, 0xe8, 0xa8, 0xa4, - 0xe3, 0x58, 0x4c, 0xa8, 0xcc, 0x51, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0x3e, 0xe3, 0x28, - 0x1a, 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x4e, 0xcc, - 0x1e, 0x41, 0x06, 0xc3, 0x71, 0x1f, 0x84, 0x0e, 0x4e, 0x04, 0xf4, 0xd3, 0xfc, 0x0b, 0xa7, 0x30, - 0xee, 0xff, 0xf5, 0xc2, 0xcd, 0xbe, 0x6e, 0xe8, 0x38, 0x19, 0x45, 0xa6, 0x15, 0x3a, 0xc7, 0x4e, - 0x78, 0x92, 0x74, 0xb2, 0x02, 0x73, 0x63, 0xf6, 0x28, 0xda, 0x11, 0x78, 0x71, 0x2d, 0x52, 0xa3, - 0x68, 0x82, 0x49, 0x0c, 0xa2, 0x71, 0xbc, 0xf6, 0xab, 0x0c, 0xab, 0x19, 0x3c, 0x68, 0x08, 0xab, - 0x63, 0xa3, 0x34, 0x75, 0x69, 0x4b, 0xdb, 0xd7, 0xcf, 0x19, 0xc9, 0xc2, 0x97, 0x8f, 0xe3, 0x48, - 0xcd, 0x62, 0x31, 0x24, 0x7c, 0xd9, 0x9d, 0x42, 0x2f, 0x82, 0x22, 0x7c, 0xfa, 0x4b, 0x86, 0xcb, - 0x53, 0x6c, 0xe8, 0x6b, 0x7a, 0x53, 0x7c, 0x9f, 0x1c, 0x9a, 0xa1, 0xe3, 0xb9, 0xad, 0x86, 0xa8, - 0x55, 0x14, 0x47, 0xea, 0xb2, 0x75, 0xf6, 0x82, 0x16, 0xec, 0x38, 0x10, 0x7d, 0x33, 0xea, 0x39, - 0xbc, 0x25, 0xac, 0x67, 0xb9, 0x3f, 0xa7, 0xad, 0xbc, 0xdf, 0x5d, 0xd7, 0xf6, 0x60, 0xa5, 0xe1, - 0xbd, 0x76, 0x0f, 0x3d, 0xd3, 0x4e, 0x46, 0xde, 0x05, 0xbe, 0x08, 0xb5, 0x1f, 0x73, 0xb0, 0x9a, - 0xf1, 0x99, 0x83, 0xf6, 0xc6, 0x3a, 0xe8, 0x07, 0x7d, 0xde, 0x65, 0x05, 0xd7, 0x02, 0x85, 0x16, - 0x8a, 0xe7, 0x8a, 0xe4, 0x9c, 0x77, 0xb6, 0x3b, 0x0c, 0xcc, 0xa9, 0xb8, 0x22, 0x16, 0x2b, 0x7a, - 0x0e, 0x25, 0x71, 0xce, 0x34, 0x20, 0x71, 0xb7, 0x3f, 0xcd, 0x76, 0x8f, 0xc2, 0x1a, 0x24, 0xb0, - 0x7c, 0x67, 0x18, 0x7a, 0xbe, 0xbe, 0x12, 0x47, 0x6a, 0x5a, 0x19, 0x03, 0x7f, 0xa0, 0x37, 0x4d, - 0xfb, 0x57, 0x86, 0xf2, 0xb3, 0x21, 0xcd, 0xab, 0x28, 0x85, 0x8b, 0x7c, 0x68, 0x3f, 0x99, 0x28, - 0x86, 0x7a, 0x96, 0x76, 0xda, 0x5a, 0xed, 0xa9, 0x6f, 0xba, 0xc1, 0x3e, 0xf1, 0xe7, 0x54, 0x88, - 0x06, 0x8a, 0x4f, 0xcc, 0xc0, 0x73, 0x45, 0x81, 0x30, 0x0c, 0xdf, 0xc1, 0x62, 0xd5, 0xbe, 0x84, - 0xe5, 0x71, 0x26, 0x54, 0x82, 0xc2, 0x59, 0x9b, 0x57, 0x20, 0xc7, 0x5a, 0x3c, 0x80, 0x72, 0x7f, - 0xa7, 0xf5, 0xa8, 0xd9, 0xa8, 0xe4, 0xb4, 0x3f, 0x65, 0x28, 0xd2, 0x0c, 0xec, 0xf6, 0x8f, 0xdc, - 0x03, 0xd4, 0x01, 0xa5, 0x4f, 0x4c, 0x9b, 0xf8, 0x73, 0x0f, 0x9e, 0x42, 0x89, 0x8d, 0x49, 0xe0, - 0x1d, 0xf9, 0x16, 0x31, 0x98, 0x02, 0xf7, 0x87, 0x2b, 0x1b, 0x12, 0x16, 0x12, 0x32, 0xf8, 0xb4, - 0x66, 0x89, 0x98, 0xf1, 0xc9, 0x39, 0x41, 0xc7, 0x1e, 0x79, 0x4a, 0xa9, 0xa6, 0x21, 0x61, 0xb6, - 0xea, 0x05, 0xc8, 0x5b, 0xf4, 0x95, 0xf6, 0x4e, 0x86, 0x2b, 0x99, 0x2e, 0x5c, 0xe8, 0xcc, 0x34, - 0x50, 0x18, 0x3d, 0x3f, 0xb3, 0x3c, 0x0f, 0x87, 0xef, 0x60, 0xb1, 0xa2, 0x2d, 0x58, 0xb4, 0xfa, - 0xc4, 0x3a, 0x08, 0x8e, 0x06, 0xe2, 0x10, 0xca, 0x71, 0xa4, 0x8e, 0xf6, 0xf0, 0x48, 0x42, 0x5f, - 0x00, 0x30, 0x9d, 0x6e, 0xe0, 0xbc, 0x25, 0x6c, 0x30, 0xe7, 0xc5, 0x1f, 0x9f, 0xd1, 0x2e, 0x2e, - 0x32, 0xf9, 0x89, 0xf3, 0x96, 0x68, 0x7f, 0xc8, 0xb0, 0x96, 0x95, 0x86, 0x0b, 0x45, 0x74, 0x83, - 0x7a, 0x4b, 0xad, 0x39, 0xb6, 0x88, 0x49, 0x78, 0xcb, 0xf7, 0x70, 0x81, 0x49, 0x2d, 0x1b, 0x5d, - 0x13, 0x67, 0x44, 0x43, 0x2a, 0x9f, 0x65, 0x9e, 0xe7, 0xfd, 0xd6, 0x56, 0xd2, 0x33, 0x69, 0x2d, - 0x3d, 0x6e, 0xb6, 0x1b, 0xad, 0xf6, 0x83, 0x54, 0x2d, 0x15, 0x21, 0x2f, 0x3e, 0x15, 0xf4, 0x3b, - 0x7f, 0x9f, 0x6e, 0xc8, 0xef, 0x4e, 0x37, 0xe4, 0x7f, 0x4e, 0x37, 0xe4, 0x97, 0x37, 0x7b, 0x4e, - 0xd8, 0x3f, 0x7a, 0x55, 0xb3, 0xbc, 0x41, 0x9d, 0xf9, 0x5c, 0x67, 0x3e, 0xd7, 0x03, 0xfb, 0xa0, - 0x7e, 0xbc, 0x5d, 0x67, 0x7f, 0x6d, 0xef, 0xb1, 0xdf, 0x57, 0x0a, 0x5b, 0x6e, 0xff, 0x17, 0x00, - 0x00, 0xff, 0xff, 0xb6, 0x04, 0xb9, 0x73, 0x89, 0x0f, 0x00, 0x00, + 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0x3d, 0xed, 0x3b, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, + 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0x7f, 0xbf, + 0xf3, 0x3b, 0x7f, 0xee, 0xb9, 0xe7, 0xc8, 0xb0, 0x64, 0x79, 0x83, 0x81, 0xe9, 0xda, 0xb5, 0xa1, + 0xef, 0x85, 0x1e, 0x42, 0xfb, 0x5f, 0xd5, 0xdc, 0x9e, 0xe3, 0xbe, 0xa9, 0x99, 0x3d, 0xe2, 0x86, + 0xb5, 0xc0, 0x3e, 0x58, 0x87, 0x9e, 0xd7, 0xf3, 0xf8, 0xf9, 0x7a, 0x99, 0xc2, 0x3d, 0x57, 0xac, + 0x4a, 0x1c, 0xc4, 0x17, 0xd0, 0xf7, 0x82, 0x64, 0x5e, 0xe2, 0x1c, 0x23, 0x19, 0x77, 0xdf, 0xe9, + 0x89, 0x15, 0x22, 0xc7, 0xc4, 0x0d, 0x83, 0x3a, 0x1b, 0xc4, 0xde, 0x55, 0x7b, 0xd8, 0x0d, 0xbc, + 0xfd, 0xf0, 0xb5, 0xe9, 0x93, 0xae, 0x4d, 0x42, 0xd3, 0x39, 0x0c, 0xf8, 0x91, 0xf6, 0x1b, 0x40, + 0x61, 0x97, 0x9b, 0x88, 0xee, 0xc2, 0xc2, 0x80, 0x84, 0x66, 0x55, 0xde, 0x94, 0xb7, 0x4a, 0xdb, + 0xd7, 0x6a, 0xd3, 0xb6, 0xd6, 0xf6, 0x48, 0x68, 0xda, 0x66, 0x68, 0xea, 0x8b, 0x71, 0xa4, 0x32, + 0x34, 0x66, 0xbf, 0xa8, 0x09, 0x0b, 0xe1, 0xc9, 0x90, 0x54, 0x73, 0x9b, 0xf2, 0xd6, 0xf2, 0xf6, + 0x8d, 0x2c, 0x59, 0xa1, 0x26, 0x19, 0x9f, 0x9e, 0x0c, 0x09, 0xa7, 0xa1, 0x82, 0x98, 0xfd, 0xa2, + 0x97, 0x00, 0xd6, 0xc0, 0xee, 0x06, 0xa1, 0x19, 0x1e, 0x05, 0xd5, 0x4b, 0xcc, 0x90, 0x9b, 0x73, + 0xc8, 0x9e, 0x30, 0x20, 0x26, 0xc1, 0xd0, 0x73, 0x03, 0xa2, 0x2f, 0xc7, 0x91, 0x9a, 0x22, 0x30, + 0x24, 0x5c, 0xb4, 0x06, 0x02, 0x84, 0x9e, 0x43, 0x99, 0xb1, 0x74, 0x79, 0xbc, 0xaa, 0x0b, 0x8c, + 0x5d, 0xcd, 0x62, 0x6f, 0xd3, 0xf5, 0x2e, 0x83, 0xe9, 0x95, 0x38, 0x52, 0xc7, 0x04, 0x0d, 0x09, + 0xf3, 0xf8, 0x73, 0x00, 0x7a, 0x03, 0x57, 0xd2, 0xc7, 0x5d, 0x5f, 0x58, 0x53, 0xcd, 0x33, 0x05, + 0x37, 0xce, 0x51, 0x30, 0x32, 0xfe, 0x6a, 0x1c, 0xa9, 0xd9, 0x4c, 0x86, 0x84, 0x57, 0xdd, 0x69, + 0x09, 0xaa, 0x99, 0x51, 0x52, 0xbc, 0x4b, 0xac, 0xb0, 0xeb, 0x93, 0xef, 0x8f, 0x48, 0x10, 0x56, + 0x95, 0xd9, 0x9a, 0x77, 0xe8, 0x6c, 0x97, 0xe3, 0x31, 0x87, 0x73, 0xcd, 0x99, 0x4c, 0x54, 0xb3, + 0x39, 0x2d, 0x81, 0x7e, 0x80, 0x8f, 0x26, 0xf1, 0xc2, 0xe9, 0x02, 0x53, 0xbd, 0x75, 0xbe, 0x6a, + 0xe1, 0xf5, 0x7a, 0x1c, 0xa9, 0x33, 0xb8, 0x0c, 0x09, 0xaf, 0x99, 0x19, 0x32, 0x28, 0x84, 0xb5, + 0x91, 0x04, 0x8f, 0x13, 0x77, 0x7b, 0x91, 0xe9, 0xfe, 0x6c, 0x9e, 0x6e, 0x16, 0x3e, 0xee, 0x75, + 0x35, 0x8e, 0xd4, 0x4c, 0x1e, 0x43, 0xc2, 0xc8, 0x9c, 0xc2, 0xd3, 0xfc, 0x49, 0xa3, 0xab, 0xc5, + 0xd9, 0xf9, 0x93, 0xd2, 0xc6, 0xf3, 0x27, 0x2d, 0x48, 0xf3, 0x27, 0x45, 0x8f, 0xf6, 0xa1, 0x42, + 0x9f, 0xd4, 0xf0, 0xd0, 0x74, 0x49, 0x92, 0xf9, 0x25, 0xc6, 0xfd, 0x49, 0x16, 0x77, 0x23, 0xc1, + 0xf2, 0xb4, 0xd6, 0xd7, 0xe2, 0x48, 0x9d, 0x22, 0x30, 0x24, 0xbc, 0x62, 0x8f, 0x03, 0xd1, 0x77, + 0x50, 0x66, 0x45, 0xa1, 0xeb, 0x93, 0xa1, 0xe7, 0x87, 0xd5, 0xf2, 0xec, 0x68, 0xf1, 0x1a, 0x52, + 0x6b, 0xd2, 0x01, 0x33, 0x34, 0x77, 0x23, 0x2d, 0x4f, 0xdd, 0x20, 0x67, 0x00, 0xf4, 0xb3, 0x0c, + 0xeb, 0x29, 0x33, 0x26, 0xca, 0x4d, 0x75, 0x89, 0x69, 0xfb, 0x7c, 0xbe, 0x47, 0x42, 0xa8, 0xc1, + 0x65, 0xf4, 0x8d, 0x38, 0x52, 0xe7, 0x70, 0x1a, 0x12, 0xae, 0xda, 0x33, 0x64, 0xb5, 0xdb, 0x50, + 0x4a, 0x15, 0x1a, 0x04, 0xa0, 0xb4, 0x3b, 0x78, 0x6f, 0xe7, 0x51, 0x45, 0x42, 0x65, 0x58, 0x6c, + 0x74, 0x5e, 0xb4, 0x1f, 0x75, 0x76, 0x1a, 0x15, 0x99, 0x9e, 0x3c, 0x7b, 0xcc, 0xe6, 0x39, 0x5d, + 0x81, 0x05, 0x4a, 0xa8, 0xfd, 0x7e, 0x09, 0xae, 0x64, 0x56, 0x18, 0xf4, 0x2d, 0x28, 0xe2, 0x8a, + 0x64, 0x56, 0xe9, 0xee, 0xbc, 0x77, 0x71, 0x1a, 0xdf, 0xd5, 0x21, 0x8e, 0x54, 0x41, 0x85, 0xc5, + 0x88, 0x1c, 0x00, 0xe2, 0xfb, 0x9e, 0xdf, 0xb5, 0x3c, 0x3b, 0x29, 0xa5, 0x77, 0x3f, 0x58, 0x41, + 0x93, 0x52, 0xec, 0x7a, 0xb6, 0x28, 0x87, 0x67, 0x8c, 0xb8, 0x48, 0x92, 0x23, 0x74, 0x1d, 0x0a, + 0x03, 0x12, 0x04, 0x66, 0x8f, 0xb0, 0x2a, 0x5b, 0xd4, 0x4b, 0x71, 0xa4, 0x26, 0x5b, 0x38, 0x99, + 0x20, 0x15, 0xf2, 0x4c, 0x86, 0x15, 0xcb, 0xa2, 0x5e, 0x8c, 0x23, 0x95, 0x6f, 0x60, 0x3e, 0x68, + 0xf7, 0x60, 0x69, 0xcc, 0x18, 0xb4, 0x02, 0xa5, 0xdd, 0xbd, 0x46, 0xf7, 0x59, 0xfb, 0x61, 0xbb, + 0xf3, 0xa2, 0x5d, 0x91, 0x68, 0x7c, 0xe9, 0x46, 0xe7, 0x61, 0x45, 0x46, 0x4b, 0x50, 0xa4, 0xf3, + 0x26, 0xc6, 0x1d, 0x5c, 0xc9, 0x69, 0x75, 0xa8, 0x4c, 0xda, 0x4c, 0xe1, 0x4d, 0x8c, 0x29, 0x5c, + 0xa2, 0x5c, 0x74, 0x9e, 0x70, 0xc9, 0xda, 0x2f, 0x0b, 0xb0, 0x32, 0x91, 0xff, 0xe8, 0x16, 0x14, + 0x83, 0x93, 0x20, 0x24, 0x83, 0xae, 0x63, 0xb3, 0x4b, 0x29, 0xea, 0x4b, 0x71, 0xa4, 0x9e, 0x6d, + 0xe2, 0x45, 0x3e, 0x6d, 0xd9, 0xe8, 0x01, 0x14, 0x92, 0x7c, 0xcc, 0x6d, 0x5e, 0xda, 0x2a, 0x6d, + 0x6f, 0xce, 0x2c, 0xce, 0x49, 0x0e, 0xb2, 0xb8, 0x08, 0x21, 0x9c, 0x4c, 0x68, 0xab, 0xa4, 0xed, + 0x58, 0x74, 0xa8, 0xcc, 0x56, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0xde, 0xe3, 0x28, 0x1a, + 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x46, 0xcc, 0x6e, + 0x41, 0x06, 0xc3, 0x71, 0x1b, 0x84, 0x0c, 0x4e, 0x26, 0xe8, 0xa7, 0xf9, 0x0f, 0x4e, 0x61, 0xdc, + 0xff, 0xeb, 0x83, 0x9b, 0xfd, 0xdc, 0xd0, 0x71, 0xd2, 0x8a, 0x4c, 0x2b, 0x74, 0x8e, 0x9d, 0xf0, + 0x24, 0xa9, 0x64, 0x05, 0x66, 0xc6, 0xec, 0x56, 0xb4, 0x23, 0xf0, 0xe2, 0x59, 0xa4, 0x5a, 0xd1, + 0x04, 0x93, 0x68, 0x44, 0xe3, 0x78, 0xed, 0x57, 0x19, 0x56, 0x33, 0x78, 0xd0, 0x10, 0x56, 0xc7, + 0x5a, 0x69, 0xea, 0xd1, 0x96, 0xb6, 0xaf, 0x9f, 0xd3, 0x92, 0x85, 0x2d, 0x1f, 0xc7, 0x91, 0x9a, + 0xc5, 0x62, 0x48, 0xf8, 0xb2, 0x3b, 0x85, 0x5e, 0x04, 0x45, 0xd8, 0xf4, 0x97, 0x0c, 0x97, 0xa7, + 0xd8, 0xd0, 0xd7, 0xb0, 0x6c, 0x79, 0xbe, 0x4f, 0x0e, 0xcd, 0xd0, 0xf1, 0xdc, 0xb3, 0x64, 0x45, + 0x71, 0xa4, 0x4e, 0x9c, 0xe0, 0xa5, 0xd4, 0xba, 0x65, 0xa3, 0x6f, 0x46, 0x45, 0x87, 0xd7, 0x84, + 0xf5, 0x2c, 0xfb, 0xe7, 0xd4, 0x95, 0xf7, 0x7b, 0xec, 0xda, 0x1e, 0xac, 0x34, 0xbc, 0xd7, 0xee, + 0xa1, 0x67, 0xda, 0x49, 0xcf, 0xbb, 0xc0, 0x27, 0xa1, 0xf6, 0x63, 0x0e, 0x56, 0x33, 0xbe, 0x73, + 0xd0, 0xde, 0x58, 0x09, 0xfd, 0xa0, 0xef, 0xbb, 0x2c, 0xe7, 0x5a, 0xa0, 0xd0, 0x4c, 0xf1, 0x5c, + 0x11, 0x9c, 0xf3, 0x2e, 0x77, 0x87, 0x81, 0x39, 0x15, 0x17, 0xc4, 0x62, 0x44, 0xcf, 0xa1, 0x24, + 0x2e, 0x9a, 0x3a, 0x24, 0x1e, 0xf7, 0xa7, 0xd9, 0xe6, 0x51, 0x58, 0x83, 0x04, 0x96, 0xef, 0x0c, + 0x43, 0xcf, 0xd7, 0x57, 0xe2, 0x48, 0x4d, 0x0b, 0x63, 0xe0, 0x0b, 0xfa, 0xd4, 0xb4, 0x7f, 0x65, + 0x28, 0x3f, 0x1b, 0xd2, 0xb8, 0x8a, 0x5c, 0xb8, 0xc8, 0x97, 0xf6, 0x93, 0x89, 0x64, 0xa8, 0x67, + 0x49, 0xa7, 0xb5, 0xd5, 0x9e, 0xfa, 0xa6, 0x1b, 0xec, 0x13, 0x7f, 0x4e, 0x86, 0x68, 0xa0, 0xf8, + 0xc4, 0x0c, 0x3c, 0x57, 0x24, 0x08, 0xc3, 0xf0, 0x1d, 0x2c, 0x46, 0xed, 0x4b, 0x58, 0x1e, 0x67, + 0x42, 0x25, 0x28, 0x9c, 0xd5, 0x79, 0x05, 0x72, 0xac, 0xc6, 0x03, 0x28, 0xf7, 0x77, 0x5a, 0x8f, + 0x9a, 0x8d, 0x4a, 0x4e, 0xfb, 0x53, 0x86, 0x22, 0x8d, 0xc0, 0x6e, 0xff, 0xc8, 0x3d, 0x40, 0x1d, + 0x50, 0xfa, 0xc4, 0xb4, 0x89, 0x3f, 0xf7, 0xe2, 0x29, 0x94, 0xd8, 0x98, 0x04, 0xde, 0x91, 0x6f, + 0x11, 0x83, 0x09, 0x70, 0x7b, 0xb8, 0xb0, 0x21, 0x61, 0x31, 0x43, 0x06, 0x6f, 0xd7, 0x2c, 0x10, + 0x33, 0xbe, 0x39, 0x27, 0xe8, 0xd8, 0x92, 0x87, 0x94, 0x4a, 0x1a, 0x12, 0x66, 0xa3, 0x5e, 0x80, + 0xbc, 0x45, 0x8f, 0xb4, 0x77, 0x32, 0x5c, 0xc9, 0x34, 0xe1, 0x42, 0x77, 0xa6, 0x81, 0xc2, 0xe8, + 0xf9, 0x9d, 0xe5, 0xb9, 0x3b, 0x7c, 0x07, 0x8b, 0x11, 0x6d, 0xc1, 0xa2, 0xd5, 0x27, 0xd6, 0x41, + 0x70, 0x34, 0x10, 0x97, 0x50, 0x8e, 0x23, 0x75, 0xb4, 0x87, 0x47, 0x33, 0xf4, 0x05, 0x00, 0x93, + 0xe9, 0x06, 0xce, 0x5b, 0xc2, 0x3a, 0x73, 0x5e, 0xfc, 0xf3, 0x19, 0xed, 0xe2, 0x22, 0x9b, 0x3f, + 0x71, 0xde, 0x12, 0xed, 0x0f, 0x19, 0xd6, 0xb2, 0xc2, 0x70, 0x21, 0x8f, 0x6e, 0x50, 0x6b, 0xa9, + 0x36, 0xc7, 0x16, 0x3e, 0x09, 0x6b, 0xf9, 0x1e, 0x2e, 0xb0, 0x59, 0xcb, 0x46, 0xd7, 0xc4, 0x1d, + 0x51, 0x97, 0xca, 0x67, 0x91, 0xe7, 0x71, 0xbf, 0xb5, 0x95, 0x14, 0x4d, 0x9a, 0x4b, 0x8f, 0x9b, + 0xed, 0x46, 0xab, 0xfd, 0x20, 0x95, 0x4b, 0x45, 0xc8, 0x8b, 0x6f, 0x05, 0xfd, 0xce, 0xdf, 0xa7, + 0x1b, 0xf2, 0xbb, 0xd3, 0x0d, 0xf9, 0x9f, 0xd3, 0x0d, 0xf9, 0xe5, 0xcd, 0x9e, 0x13, 0xf6, 0x8f, + 0x5e, 0xd5, 0x2c, 0x6f, 0x50, 0x67, 0x36, 0xd7, 0x99, 0xcd, 0xf5, 0xc0, 0x3e, 0xa8, 0x1f, 0x6f, + 0xd7, 0xd9, 0x7f, 0xdb, 0x7b, 0xec, 0xf7, 0x95, 0xc2, 0x86, 0xdb, 0xff, 0x05, 0x00, 0x00, 0xff, + 0xff, 0x0b, 0x95, 0xff, 0x24, 0x8a, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1685,10 +1685,10 @@ func (m *NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x10 } - if len(m.CorrelationID) > 0 { - i -= len(m.CorrelationID) - copy(dAtA[i:], m.CorrelationID) - i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationID))) + if len(m.CorrelationId) > 0 { + i -= len(m.CorrelationId) + copy(dAtA[i:], m.CorrelationId) + i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationId))) i-- dAtA[i] = 0xa } @@ -2282,7 +2282,7 @@ func (m *NginxConfigStatus) Size() (n int) { } var l int _ = l - l = len(m.CorrelationID) + l = len(m.CorrelationId) if l > 0 { n += 1 + l + sovCommand(uint64(l)) } @@ -3436,7 +3436,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationId", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3464,7 +3464,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.CorrelationID = string(dAtA[iNdEx:postIndex]) + m.CorrelationId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { diff --git a/sdk/proto/command.proto b/sdk/proto/command.proto index 204aef138..95952d234 100644 --- a/sdk/proto/command.proto +++ b/sdk/proto/command.proto @@ -96,7 +96,7 @@ message AgentActivityStatus { } message NginxConfigStatus { - string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + string correlation_id = 1 [(gogoproto.jsontag) = "correlation_id" ]; Status status = 2 [(gogoproto.jsontag) = "status" ]; string message = 3 [(gogoproto.jsontag) = "message" ]; } diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index dfadb9bb5..b13c38292 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -607,7 +607,7 @@ func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { } type NginxConfigStatus struct { - CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -648,9 +648,9 @@ func (m *NginxConfigStatus) XXX_DiscardUnknown() { var xxx_messageInfo_NginxConfigStatus proto.InternalMessageInfo -func (m *NginxConfigStatus) GetCorrelationID() string { +func (m *NginxConfigStatus) GetCorrelationId() string { if m != nil { - return m.CorrelationID + return m.CorrelationId } return "" } @@ -1087,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1371 bytes of a gzipped FileDescriptorProto + // 1369 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, - 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xa3, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, + 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xac, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, - 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0xbd, 0xec, 0x43, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, - 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0xa3, 0xab, - 0xdf, 0xf9, 0x9d, 0x3f, 0xf7, 0xdc, 0x73, 0x64, 0x58, 0xb2, 0xbc, 0xc1, 0xc0, 0x74, 0xed, 0xda, - 0xd0, 0xf7, 0x42, 0x0f, 0xa1, 0xfd, 0xaf, 0x6a, 0x6e, 0xcf, 0x71, 0xdf, 0xd4, 0xcc, 0x1e, 0x71, - 0xc3, 0x5a, 0x60, 0x1f, 0xac, 0x43, 0xcf, 0xeb, 0x79, 0xfc, 0xfd, 0x7a, 0x99, 0xc2, 0x3d, 0x57, - 0x3c, 0x95, 0x38, 0x88, 0x3f, 0x40, 0xdf, 0x0b, 0x12, 0xb9, 0xc4, 0x39, 0x46, 0x3a, 0xee, 0xbe, - 0xd3, 0x13, 0x4f, 0x88, 0x1c, 0x13, 0x37, 0x0c, 0xea, 0x6c, 0x11, 0x7b, 0x57, 0xed, 0x61, 0x37, - 0xf0, 0xf6, 0xc3, 0xd7, 0xa6, 0x4f, 0xba, 0x36, 0x09, 0x4d, 0xe7, 0x30, 0xe0, 0xaf, 0xb4, 0xdf, - 0x00, 0x0a, 0xbb, 0xdc, 0x45, 0x74, 0x17, 0x16, 0x06, 0x24, 0x34, 0xab, 0xf2, 0xa6, 0xbc, 0x55, - 0xda, 0xbe, 0x56, 0x9b, 0xf6, 0xb5, 0xb6, 0x47, 0x42, 0xd3, 0x36, 0x43, 0x53, 0x5f, 0x8c, 0x23, - 0x95, 0xa1, 0x31, 0xfb, 0x45, 0x4d, 0x58, 0x08, 0x4f, 0x86, 0xa4, 0x9a, 0xdb, 0x94, 0xb7, 0x96, - 0xb7, 0x6f, 0x64, 0xe9, 0x0a, 0x33, 0xc9, 0xfa, 0xf4, 0x64, 0x48, 0x38, 0x0d, 0x55, 0xc4, 0xec, - 0x17, 0xbd, 0x04, 0xb0, 0x06, 0x76, 0x37, 0x08, 0xcd, 0xf0, 0x28, 0xa8, 0x5e, 0x62, 0x8e, 0xdc, - 0x9c, 0x43, 0xf6, 0x84, 0x01, 0x31, 0x09, 0x86, 0x9e, 0x1b, 0x10, 0x7d, 0x39, 0x8e, 0xd4, 0x14, - 0x81, 0x21, 0xe1, 0xa2, 0x35, 0x10, 0x20, 0xf4, 0x1c, 0xca, 0x8c, 0xa5, 0xcb, 0xf3, 0x55, 0x5d, - 0x60, 0xec, 0x6a, 0x16, 0x7b, 0x9b, 0x3e, 0xef, 0x32, 0x98, 0x5e, 0x89, 0x23, 0x75, 0x4c, 0xd1, - 0x90, 0x30, 0xcf, 0x3f, 0x07, 0xa0, 0x37, 0x70, 0x25, 0xfd, 0xba, 0xeb, 0x0b, 0x6f, 0xaa, 0x79, - 0x66, 0xe0, 0xc6, 0x39, 0x06, 0x46, 0xce, 0x5f, 0x8d, 0x23, 0x35, 0x9b, 0xc9, 0x90, 0xf0, 0xaa, - 0x3b, 0xad, 0x41, 0x2d, 0x33, 0x4a, 0x8a, 0x77, 0x89, 0x15, 0x76, 0x7d, 0xf2, 0xfd, 0x11, 0x09, - 0xc2, 0xaa, 0x32, 0xdb, 0xf2, 0x0e, 0x95, 0x76, 0x39, 0x1e, 0x73, 0x38, 0xb7, 0x9c, 0xc9, 0x44, - 0x2d, 0x9b, 0xd3, 0x1a, 0xe8, 0x07, 0xf8, 0x68, 0x12, 0x2f, 0x82, 0x2e, 0x30, 0xd3, 0x5b, 0xe7, - 0x9b, 0x16, 0x51, 0xaf, 0xc7, 0x91, 0x3a, 0x83, 0xcb, 0x90, 0xf0, 0x9a, 0x99, 0xa1, 0x83, 0x42, - 0x58, 0x1b, 0x69, 0xf0, 0x3c, 0xf1, 0xb0, 0x17, 0x99, 0xed, 0xcf, 0xe6, 0xd9, 0x66, 0xe9, 0xe3, - 0x51, 0x57, 0xe3, 0x48, 0xcd, 0xe4, 0x31, 0x24, 0x8c, 0xcc, 0x29, 0x3c, 0xad, 0x9f, 0x34, 0xba, - 0x5a, 0x9c, 0x5d, 0x3f, 0x29, 0x6b, 0xbc, 0x7e, 0xd2, 0x8a, 0xb4, 0x7e, 0x52, 0xf4, 0x68, 0x1f, - 0x2a, 0xf4, 0x4a, 0x0d, 0x0f, 0x4d, 0x97, 0x24, 0x95, 0x5f, 0x62, 0xdc, 0x9f, 0x64, 0x71, 0x37, - 0x12, 0x2c, 0x2f, 0x6b, 0x7d, 0x2d, 0x8e, 0xd4, 0x29, 0x02, 0x43, 0xc2, 0x2b, 0xf6, 0x38, 0x10, - 0x7d, 0x07, 0x65, 0xd6, 0x14, 0xba, 0x3e, 0x19, 0x7a, 0x7e, 0x58, 0x2d, 0xcf, 0xce, 0x16, 0xef, - 0x21, 0xb5, 0x26, 0x5d, 0x30, 0x43, 0xf3, 0x30, 0xd2, 0xfa, 0x34, 0x0c, 0x72, 0x06, 0x40, 0x3f, - 0xcb, 0xb0, 0x9e, 0x72, 0x63, 0xa2, 0xdd, 0x54, 0x97, 0x98, 0xb5, 0xcf, 0xe7, 0x47, 0x24, 0x94, - 0x1a, 0x5c, 0x47, 0xdf, 0x88, 0x23, 0x75, 0x0e, 0xa7, 0x21, 0xe1, 0xaa, 0x3d, 0x43, 0x57, 0xbb, - 0x0d, 0xa5, 0x54, 0xa3, 0x41, 0x00, 0x4a, 0xbb, 0x83, 0xf7, 0x76, 0x1e, 0x55, 0x24, 0x54, 0x86, - 0xc5, 0x46, 0xe7, 0x45, 0xfb, 0x51, 0x67, 0xa7, 0x51, 0x91, 0xe9, 0x9b, 0x67, 0x8f, 0x99, 0x9c, - 0xd3, 0x15, 0x58, 0xa0, 0x84, 0xda, 0xef, 0x97, 0xe0, 0x4a, 0x66, 0x87, 0x41, 0xdf, 0x82, 0x22, - 0x8e, 0x48, 0x66, 0x9d, 0xee, 0xce, 0x7b, 0x37, 0xa7, 0xf1, 0x5d, 0x1d, 0xe2, 0x48, 0x15, 0x54, - 0x58, 0xac, 0xc8, 0x01, 0x20, 0xbe, 0xef, 0xf9, 0x5d, 0xcb, 0xb3, 0x93, 0x56, 0x7a, 0xf7, 0x83, - 0x0d, 0x34, 0x29, 0xc5, 0xae, 0x67, 0x8b, 0x76, 0x78, 0xc6, 0x88, 0x8b, 0x24, 0x79, 0x85, 0xae, - 0x43, 0x61, 0x40, 0x82, 0xc0, 0xec, 0x11, 0xd6, 0x65, 0x8b, 0x7a, 0x29, 0x8e, 0xd4, 0x64, 0x0b, - 0x27, 0x02, 0x52, 0x21, 0xcf, 0x74, 0x58, 0xb3, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, - 0x8b, 0x76, 0x0f, 0x96, 0xc6, 0x9c, 0x41, 0x2b, 0x50, 0xda, 0xdd, 0x6b, 0x74, 0x9f, 0xb5, 0x1f, - 0xb6, 0x3b, 0x2f, 0xda, 0x15, 0x89, 0xe6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x04, 0x45, - 0x2a, 0x37, 0x31, 0xee, 0xe0, 0x4a, 0x4e, 0xab, 0x43, 0x65, 0xd2, 0x67, 0x0a, 0x6f, 0x62, 0x4c, - 0xe1, 0x12, 0xe5, 0xa2, 0x72, 0xc2, 0x25, 0x6b, 0xbf, 0x2c, 0xc0, 0xca, 0x44, 0xfd, 0xa3, 0x5b, - 0x50, 0x0c, 0x4e, 0x82, 0x90, 0x0c, 0xba, 0x8e, 0xcd, 0x0e, 0xa5, 0xa8, 0x2f, 0xc5, 0x91, 0x7a, - 0xb6, 0x89, 0x17, 0xb9, 0xd8, 0xb2, 0xd1, 0x03, 0x28, 0x24, 0xf5, 0x98, 0xdb, 0xbc, 0xb4, 0x55, - 0xda, 0xde, 0x9c, 0xd9, 0x9c, 0x93, 0x1a, 0x64, 0x79, 0x11, 0x4a, 0x38, 0x11, 0xe8, 0xa8, 0xa4, - 0xe3, 0x58, 0x4c, 0xa8, 0xcc, 0x51, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0x3e, 0xe3, 0x28, - 0x1a, 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x4e, 0xcc, - 0x1e, 0x41, 0x06, 0xc3, 0x71, 0x1f, 0x84, 0x0e, 0x4e, 0x04, 0xf4, 0xd3, 0xfc, 0x0b, 0xa7, 0x30, - 0xee, 0xff, 0xf5, 0xc2, 0xcd, 0xbe, 0x6e, 0xe8, 0x38, 0x19, 0x45, 0xa6, 0x15, 0x3a, 0xc7, 0x4e, - 0x78, 0x92, 0x74, 0xb2, 0x02, 0x73, 0x63, 0xf6, 0x28, 0xda, 0x11, 0x78, 0x71, 0x2d, 0x52, 0xa3, - 0x68, 0x82, 0x49, 0x0c, 0xa2, 0x71, 0xbc, 0xf6, 0xab, 0x0c, 0xab, 0x19, 0x3c, 0x68, 0x08, 0xab, - 0x63, 0xa3, 0x34, 0x75, 0x69, 0x4b, 0xdb, 0xd7, 0xcf, 0x19, 0xc9, 0xc2, 0x97, 0x8f, 0xe3, 0x48, - 0xcd, 0x62, 0x31, 0x24, 0x7c, 0xd9, 0x9d, 0x42, 0x2f, 0x82, 0x22, 0x7c, 0xfa, 0x4b, 0x86, 0xcb, - 0x53, 0x6c, 0xe8, 0x6b, 0x7a, 0x53, 0x7c, 0x9f, 0x1c, 0x9a, 0xa1, 0xe3, 0xb9, 0xad, 0x86, 0xa8, - 0x55, 0x14, 0x47, 0xea, 0xb2, 0x75, 0xf6, 0x82, 0x16, 0xec, 0x38, 0x10, 0x7d, 0x33, 0xea, 0x39, - 0xbc, 0x25, 0xac, 0x67, 0xb9, 0x3f, 0xa7, 0xad, 0xbc, 0xdf, 0x5d, 0xd7, 0xf6, 0x60, 0xa5, 0xe1, - 0xbd, 0x76, 0x0f, 0x3d, 0xd3, 0x4e, 0x46, 0xde, 0x05, 0xbe, 0x08, 0xb5, 0x1f, 0x73, 0xb0, 0x9a, - 0xf1, 0x99, 0x83, 0xf6, 0xc6, 0x3a, 0xe8, 0x07, 0x7d, 0xde, 0x65, 0x05, 0xd7, 0x02, 0x85, 0x16, - 0x8a, 0xe7, 0x8a, 0xe4, 0x9c, 0x77, 0xb6, 0x3b, 0x0c, 0xcc, 0xa9, 0xb8, 0x22, 0x16, 0x2b, 0x7a, - 0x0e, 0x25, 0x71, 0xce, 0x34, 0x20, 0x71, 0xb7, 0x3f, 0xcd, 0x76, 0x8f, 0xc2, 0x1a, 0x24, 0xb0, - 0x7c, 0x67, 0x18, 0x7a, 0xbe, 0xbe, 0x12, 0x47, 0x6a, 0x5a, 0x19, 0x03, 0x7f, 0xa0, 0x37, 0x4d, - 0xfb, 0x57, 0x86, 0xf2, 0xb3, 0x21, 0xcd, 0xab, 0x28, 0x85, 0x8b, 0x7c, 0x68, 0x3f, 0x99, 0x28, - 0x86, 0x7a, 0x96, 0x76, 0xda, 0x5a, 0xed, 0xa9, 0x6f, 0xba, 0xc1, 0x3e, 0xf1, 0xe7, 0x54, 0x88, - 0x06, 0x8a, 0x4f, 0xcc, 0xc0, 0x73, 0x45, 0x81, 0x30, 0x0c, 0xdf, 0xc1, 0x62, 0xd5, 0xbe, 0x84, - 0xe5, 0x71, 0x26, 0x54, 0x82, 0xc2, 0x59, 0x9b, 0x57, 0x20, 0xc7, 0x5a, 0x3c, 0x80, 0x72, 0x7f, - 0xa7, 0xf5, 0xa8, 0xd9, 0xa8, 0xe4, 0xb4, 0x3f, 0x65, 0x28, 0xd2, 0x0c, 0xec, 0xf6, 0x8f, 0xdc, - 0x03, 0xd4, 0x01, 0xa5, 0x4f, 0x4c, 0x9b, 0xf8, 0x73, 0x0f, 0x9e, 0x42, 0x89, 0x8d, 0x49, 0xe0, - 0x1d, 0xf9, 0x16, 0x31, 0x98, 0x02, 0xf7, 0x87, 0x2b, 0x1b, 0x12, 0x16, 0x12, 0x32, 0xf8, 0xb4, - 0x66, 0x89, 0x98, 0xf1, 0xc9, 0x39, 0x41, 0xc7, 0x1e, 0x79, 0x4a, 0xa9, 0xa6, 0x21, 0x61, 0xb6, - 0xea, 0x05, 0xc8, 0x5b, 0xf4, 0x95, 0xf6, 0x4e, 0x86, 0x2b, 0x99, 0x2e, 0x5c, 0xe8, 0xcc, 0x34, - 0x50, 0x18, 0x3d, 0x3f, 0xb3, 0x3c, 0x0f, 0x87, 0xef, 0x60, 0xb1, 0xa2, 0x2d, 0x58, 0xb4, 0xfa, - 0xc4, 0x3a, 0x08, 0x8e, 0x06, 0xe2, 0x10, 0xca, 0x71, 0xa4, 0x8e, 0xf6, 0xf0, 0x48, 0x42, 0x5f, - 0x00, 0x30, 0x9d, 0x6e, 0xe0, 0xbc, 0x25, 0x6c, 0x30, 0xe7, 0xc5, 0x1f, 0x9f, 0xd1, 0x2e, 0x2e, - 0x32, 0xf9, 0x89, 0xf3, 0x96, 0x68, 0x7f, 0xc8, 0xb0, 0x96, 0x95, 0x86, 0x0b, 0x45, 0x74, 0x83, - 0x7a, 0x4b, 0xad, 0x39, 0xb6, 0x88, 0x49, 0x78, 0xcb, 0xf7, 0x70, 0x81, 0x49, 0x2d, 0x1b, 0x5d, - 0x13, 0x67, 0x44, 0x43, 0x2a, 0x9f, 0x65, 0x9e, 0xe7, 0xfd, 0xd6, 0x56, 0xd2, 0x33, 0x69, 0x2d, - 0x3d, 0x6e, 0xb6, 0x1b, 0xad, 0xf6, 0x83, 0x54, 0x2d, 0x15, 0x21, 0x2f, 0x3e, 0x15, 0xf4, 0x3b, - 0x7f, 0x9f, 0x6e, 0xc8, 0xef, 0x4e, 0x37, 0xe4, 0x7f, 0x4e, 0x37, 0xe4, 0x97, 0x37, 0x7b, 0x4e, - 0xd8, 0x3f, 0x7a, 0x55, 0xb3, 0xbc, 0x41, 0x9d, 0xf9, 0x5c, 0x67, 0x3e, 0xd7, 0x03, 0xfb, 0xa0, - 0x7e, 0xbc, 0x5d, 0x67, 0x7f, 0x6d, 0xef, 0xb1, 0xdf, 0x57, 0x0a, 0x5b, 0x6e, 0xff, 0x17, 0x00, - 0x00, 0xff, 0xff, 0xb6, 0x04, 0xb9, 0x73, 0x89, 0x0f, 0x00, 0x00, + 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0x3d, 0xed, 0x3b, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, + 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0x7f, 0xbf, + 0xf3, 0x3b, 0x7f, 0xee, 0xb9, 0xe7, 0xc8, 0xb0, 0x64, 0x79, 0x83, 0x81, 0xe9, 0xda, 0xb5, 0xa1, + 0xef, 0x85, 0x1e, 0x42, 0xfb, 0x5f, 0xd5, 0xdc, 0x9e, 0xe3, 0xbe, 0xa9, 0x99, 0x3d, 0xe2, 0x86, + 0xb5, 0xc0, 0x3e, 0x58, 0x87, 0x9e, 0xd7, 0xf3, 0xf8, 0xf9, 0x7a, 0x99, 0xc2, 0x3d, 0x57, 0xac, + 0x4a, 0x1c, 0xc4, 0x17, 0xd0, 0xf7, 0x82, 0x64, 0x5e, 0xe2, 0x1c, 0x23, 0x19, 0x77, 0xdf, 0xe9, + 0x89, 0x15, 0x22, 0xc7, 0xc4, 0x0d, 0x83, 0x3a, 0x1b, 0xc4, 0xde, 0x55, 0x7b, 0xd8, 0x0d, 0xbc, + 0xfd, 0xf0, 0xb5, 0xe9, 0x93, 0xae, 0x4d, 0x42, 0xd3, 0x39, 0x0c, 0xf8, 0x91, 0xf6, 0x1b, 0x40, + 0x61, 0x97, 0x9b, 0x88, 0xee, 0xc2, 0xc2, 0x80, 0x84, 0x66, 0x55, 0xde, 0x94, 0xb7, 0x4a, 0xdb, + 0xd7, 0x6a, 0xd3, 0xb6, 0xd6, 0xf6, 0x48, 0x68, 0xda, 0x66, 0x68, 0xea, 0x8b, 0x71, 0xa4, 0x32, + 0x34, 0x66, 0xbf, 0xa8, 0x09, 0x0b, 0xe1, 0xc9, 0x90, 0x54, 0x73, 0x9b, 0xf2, 0xd6, 0xf2, 0xf6, + 0x8d, 0x2c, 0x59, 0xa1, 0x26, 0x19, 0x9f, 0x9e, 0x0c, 0x09, 0xa7, 0xa1, 0x82, 0x98, 0xfd, 0xa2, + 0x97, 0x00, 0xd6, 0xc0, 0xee, 0x06, 0xa1, 0x19, 0x1e, 0x05, 0xd5, 0x4b, 0xcc, 0x90, 0x9b, 0x73, + 0xc8, 0x9e, 0x30, 0x20, 0x26, 0xc1, 0xd0, 0x73, 0x03, 0xa2, 0x2f, 0xc7, 0x91, 0x9a, 0x22, 0x30, + 0x24, 0x5c, 0xb4, 0x06, 0x02, 0x84, 0x9e, 0x43, 0x99, 0xb1, 0x74, 0x79, 0xbc, 0xaa, 0x0b, 0x8c, + 0x5d, 0xcd, 0x62, 0x6f, 0xd3, 0xf5, 0x2e, 0x83, 0xe9, 0x95, 0x38, 0x52, 0xc7, 0x04, 0x0d, 0x09, + 0xf3, 0xf8, 0x73, 0x00, 0x7a, 0x03, 0x57, 0xd2, 0xc7, 0x5d, 0x5f, 0x58, 0x53, 0xcd, 0x33, 0x05, + 0x37, 0xce, 0x51, 0x30, 0x32, 0xfe, 0x6a, 0x1c, 0xa9, 0xd9, 0x4c, 0x86, 0x84, 0x57, 0xdd, 0x69, + 0x09, 0xaa, 0x99, 0x51, 0x52, 0xbc, 0x4b, 0xac, 0xb0, 0xeb, 0x93, 0xef, 0x8f, 0x48, 0x10, 0x56, + 0x95, 0xd9, 0x9a, 0x77, 0xe8, 0x6c, 0x97, 0xe3, 0x31, 0x87, 0x73, 0xcd, 0x99, 0x4c, 0x54, 0xb3, + 0x39, 0x2d, 0x81, 0x7e, 0x80, 0x8f, 0x26, 0xf1, 0xc2, 0xe9, 0x02, 0x53, 0xbd, 0x75, 0xbe, 0x6a, + 0xe1, 0xf5, 0x7a, 0x1c, 0xa9, 0x33, 0xb8, 0x0c, 0x09, 0xaf, 0x99, 0x19, 0x32, 0x28, 0x84, 0xb5, + 0x91, 0x04, 0x8f, 0x13, 0x77, 0x7b, 0x91, 0xe9, 0xfe, 0x6c, 0x9e, 0x6e, 0x16, 0x3e, 0xee, 0x75, + 0x35, 0x8e, 0xd4, 0x4c, 0x1e, 0x43, 0xc2, 0xc8, 0x9c, 0xc2, 0xd3, 0xfc, 0x49, 0xa3, 0xab, 0xc5, + 0xd9, 0xf9, 0x93, 0xd2, 0xc6, 0xf3, 0x27, 0x2d, 0x48, 0xf3, 0x27, 0x45, 0x8f, 0xf6, 0xa1, 0x42, + 0x9f, 0xd4, 0xf0, 0xd0, 0x74, 0x49, 0x92, 0xf9, 0x25, 0xc6, 0xfd, 0x49, 0x16, 0x77, 0x23, 0xc1, + 0xf2, 0xb4, 0xd6, 0xd7, 0xe2, 0x48, 0x9d, 0x22, 0x30, 0x24, 0xbc, 0x62, 0x8f, 0x03, 0xd1, 0x77, + 0x50, 0x66, 0x45, 0xa1, 0xeb, 0x93, 0xa1, 0xe7, 0x87, 0xd5, 0xf2, 0xec, 0x68, 0xf1, 0x1a, 0x52, + 0x6b, 0xd2, 0x01, 0x33, 0x34, 0x77, 0x23, 0x2d, 0x4f, 0xdd, 0x20, 0x67, 0x00, 0xf4, 0xb3, 0x0c, + 0xeb, 0x29, 0x33, 0x26, 0xca, 0x4d, 0x75, 0x89, 0x69, 0xfb, 0x7c, 0xbe, 0x47, 0x42, 0xa8, 0xc1, + 0x65, 0xf4, 0x8d, 0x38, 0x52, 0xe7, 0x70, 0x1a, 0x12, 0xae, 0xda, 0x33, 0x64, 0xb5, 0xdb, 0x50, + 0x4a, 0x15, 0x1a, 0x04, 0xa0, 0xb4, 0x3b, 0x78, 0x6f, 0xe7, 0x51, 0x45, 0x42, 0x65, 0x58, 0x6c, + 0x74, 0x5e, 0xb4, 0x1f, 0x75, 0x76, 0x1a, 0x15, 0x99, 0x9e, 0x3c, 0x7b, 0xcc, 0xe6, 0x39, 0x5d, + 0x81, 0x05, 0x4a, 0xa8, 0xfd, 0x7e, 0x09, 0xae, 0x64, 0x56, 0x18, 0xf4, 0x2d, 0x28, 0xe2, 0x8a, + 0x64, 0x56, 0xe9, 0xee, 0xbc, 0x77, 0x71, 0x1a, 0xdf, 0xd5, 0x21, 0x8e, 0x54, 0x41, 0x85, 0xc5, + 0x88, 0x1c, 0x00, 0xe2, 0xfb, 0x9e, 0xdf, 0xb5, 0x3c, 0x3b, 0x29, 0xa5, 0x77, 0x3f, 0x58, 0x41, + 0x93, 0x52, 0xec, 0x7a, 0xb6, 0x28, 0x87, 0x67, 0x8c, 0xb8, 0x48, 0x92, 0x23, 0x74, 0x1d, 0x0a, + 0x03, 0x12, 0x04, 0x66, 0x8f, 0xb0, 0x2a, 0x5b, 0xd4, 0x4b, 0x71, 0xa4, 0x26, 0x5b, 0x38, 0x99, + 0x20, 0x15, 0xf2, 0x4c, 0x86, 0x15, 0xcb, 0xa2, 0x5e, 0x8c, 0x23, 0x95, 0x6f, 0x60, 0x3e, 0x68, + 0xf7, 0x60, 0x69, 0xcc, 0x18, 0xb4, 0x02, 0xa5, 0xdd, 0xbd, 0x46, 0xf7, 0x59, 0xfb, 0x61, 0xbb, + 0xf3, 0xa2, 0x5d, 0x91, 0x68, 0x7c, 0xe9, 0x46, 0xe7, 0x61, 0x45, 0x46, 0x4b, 0x50, 0xa4, 0xf3, + 0x26, 0xc6, 0x1d, 0x5c, 0xc9, 0x69, 0x75, 0xa8, 0x4c, 0xda, 0x4c, 0xe1, 0x4d, 0x8c, 0x29, 0x5c, + 0xa2, 0x5c, 0x74, 0x9e, 0x70, 0xc9, 0xda, 0x2f, 0x0b, 0xb0, 0x32, 0x91, 0xff, 0xe8, 0x16, 0x14, + 0x83, 0x93, 0x20, 0x24, 0x83, 0xae, 0x63, 0xb3, 0x4b, 0x29, 0xea, 0x4b, 0x71, 0xa4, 0x9e, 0x6d, + 0xe2, 0x45, 0x3e, 0x6d, 0xd9, 0xe8, 0x01, 0x14, 0x92, 0x7c, 0xcc, 0x6d, 0x5e, 0xda, 0x2a, 0x6d, + 0x6f, 0xce, 0x2c, 0xce, 0x49, 0x0e, 0xb2, 0xb8, 0x08, 0x21, 0x9c, 0x4c, 0x68, 0xab, 0xa4, 0xed, + 0x58, 0x74, 0xa8, 0xcc, 0x56, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0xde, 0xe3, 0x28, 0x1a, + 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x46, 0xcc, 0x6e, + 0x41, 0x06, 0xc3, 0x71, 0x1b, 0x84, 0x0c, 0x4e, 0x26, 0xe8, 0xa7, 0xf9, 0x0f, 0x4e, 0x61, 0xdc, + 0xff, 0xeb, 0x83, 0x9b, 0xfd, 0xdc, 0xd0, 0x71, 0xd2, 0x8a, 0x4c, 0x2b, 0x74, 0x8e, 0x9d, 0xf0, + 0x24, 0xa9, 0x64, 0x05, 0x66, 0xc6, 0xec, 0x56, 0xb4, 0x23, 0xf0, 0xe2, 0x59, 0xa4, 0x5a, 0xd1, + 0x04, 0x93, 0x68, 0x44, 0xe3, 0x78, 0xed, 0x57, 0x19, 0x56, 0x33, 0x78, 0xd0, 0x10, 0x56, 0xc7, + 0x5a, 0x69, 0xea, 0xd1, 0x96, 0xb6, 0xaf, 0x9f, 0xd3, 0x92, 0x85, 0x2d, 0x1f, 0xc7, 0x91, 0x9a, + 0xc5, 0x62, 0x48, 0xf8, 0xb2, 0x3b, 0x85, 0x5e, 0x04, 0x45, 0xd8, 0xf4, 0x97, 0x0c, 0x97, 0xa7, + 0xd8, 0xd0, 0xd7, 0xb0, 0x6c, 0x79, 0xbe, 0x4f, 0x0e, 0xcd, 0xd0, 0xf1, 0xdc, 0xb3, 0x64, 0x45, + 0x71, 0xa4, 0x4e, 0x9c, 0xe0, 0xa5, 0xd4, 0xba, 0x65, 0xa3, 0x6f, 0x46, 0x45, 0x87, 0xd7, 0x84, + 0xf5, 0x2c, 0xfb, 0xe7, 0xd4, 0x95, 0xf7, 0x7b, 0xec, 0xda, 0x1e, 0xac, 0x34, 0xbc, 0xd7, 0xee, + 0xa1, 0x67, 0xda, 0x49, 0xcf, 0xbb, 0xc0, 0x27, 0xa1, 0xf6, 0x63, 0x0e, 0x56, 0x33, 0xbe, 0x73, + 0xd0, 0xde, 0x58, 0x09, 0xfd, 0xa0, 0xef, 0xbb, 0x2c, 0xe7, 0x5a, 0xa0, 0xd0, 0x4c, 0xf1, 0x5c, + 0x11, 0x9c, 0xf3, 0x2e, 0x77, 0x87, 0x81, 0x39, 0x15, 0x17, 0xc4, 0x62, 0x44, 0xcf, 0xa1, 0x24, + 0x2e, 0x9a, 0x3a, 0x24, 0x1e, 0xf7, 0xa7, 0xd9, 0xe6, 0x51, 0x58, 0x83, 0x04, 0x96, 0xef, 0x0c, + 0x43, 0xcf, 0xd7, 0x57, 0xe2, 0x48, 0x4d, 0x0b, 0x63, 0xe0, 0x0b, 0xfa, 0xd4, 0xb4, 0x7f, 0x65, + 0x28, 0x3f, 0x1b, 0xd2, 0xb8, 0x8a, 0x5c, 0xb8, 0xc8, 0x97, 0xf6, 0x93, 0x89, 0x64, 0xa8, 0x67, + 0x49, 0xa7, 0xb5, 0xd5, 0x9e, 0xfa, 0xa6, 0x1b, 0xec, 0x13, 0x7f, 0x4e, 0x86, 0x68, 0xa0, 0xf8, + 0xc4, 0x0c, 0x3c, 0x57, 0x24, 0x08, 0xc3, 0xf0, 0x1d, 0x2c, 0x46, 0xed, 0x4b, 0x58, 0x1e, 0x67, + 0x42, 0x25, 0x28, 0x9c, 0xd5, 0x79, 0x05, 0x72, 0xac, 0xc6, 0x03, 0x28, 0xf7, 0x77, 0x5a, 0x8f, + 0x9a, 0x8d, 0x4a, 0x4e, 0xfb, 0x53, 0x86, 0x22, 0x8d, 0xc0, 0x6e, 0xff, 0xc8, 0x3d, 0x40, 0x1d, + 0x50, 0xfa, 0xc4, 0xb4, 0x89, 0x3f, 0xf7, 0xe2, 0x29, 0x94, 0xd8, 0x98, 0x04, 0xde, 0x91, 0x6f, + 0x11, 0x83, 0x09, 0x70, 0x7b, 0xb8, 0xb0, 0x21, 0x61, 0x31, 0x43, 0x06, 0x6f, 0xd7, 0x2c, 0x10, + 0x33, 0xbe, 0x39, 0x27, 0xe8, 0xd8, 0x92, 0x87, 0x94, 0x4a, 0x1a, 0x12, 0x66, 0xa3, 0x5e, 0x80, + 0xbc, 0x45, 0x8f, 0xb4, 0x77, 0x32, 0x5c, 0xc9, 0x34, 0xe1, 0x42, 0x77, 0xa6, 0x81, 0xc2, 0xe8, + 0xf9, 0x9d, 0xe5, 0xb9, 0x3b, 0x7c, 0x07, 0x8b, 0x11, 0x6d, 0xc1, 0xa2, 0xd5, 0x27, 0xd6, 0x41, + 0x70, 0x34, 0x10, 0x97, 0x50, 0x8e, 0x23, 0x75, 0xb4, 0x87, 0x47, 0x33, 0xf4, 0x05, 0x00, 0x93, + 0xe9, 0x06, 0xce, 0x5b, 0xc2, 0x3a, 0x73, 0x5e, 0xfc, 0xf3, 0x19, 0xed, 0xe2, 0x22, 0x9b, 0x3f, + 0x71, 0xde, 0x12, 0xed, 0x0f, 0x19, 0xd6, 0xb2, 0xc2, 0x70, 0x21, 0x8f, 0x6e, 0x50, 0x6b, 0xa9, + 0x36, 0xc7, 0x16, 0x3e, 0x09, 0x6b, 0xf9, 0x1e, 0x2e, 0xb0, 0x59, 0xcb, 0x46, 0xd7, 0xc4, 0x1d, + 0x51, 0x97, 0xca, 0x67, 0x91, 0xe7, 0x71, 0xbf, 0xb5, 0x95, 0x14, 0x4d, 0x9a, 0x4b, 0x8f, 0x9b, + 0xed, 0x46, 0xab, 0xfd, 0x20, 0x95, 0x4b, 0x45, 0xc8, 0x8b, 0x6f, 0x05, 0xfd, 0xce, 0xdf, 0xa7, + 0x1b, 0xf2, 0xbb, 0xd3, 0x0d, 0xf9, 0x9f, 0xd3, 0x0d, 0xf9, 0xe5, 0xcd, 0x9e, 0x13, 0xf6, 0x8f, + 0x5e, 0xd5, 0x2c, 0x6f, 0x50, 0x67, 0x36, 0xd7, 0x99, 0xcd, 0xf5, 0xc0, 0x3e, 0xa8, 0x1f, 0x6f, + 0xd7, 0xd9, 0x7f, 0xdb, 0x7b, 0xec, 0xf7, 0x95, 0xc2, 0x86, 0xdb, 0xff, 0x05, 0x00, 0x00, 0xff, + 0xff, 0x0b, 0x95, 0xff, 0x24, 0x8a, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1685,10 +1685,10 @@ func (m *NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x10 } - if len(m.CorrelationID) > 0 { - i -= len(m.CorrelationID) - copy(dAtA[i:], m.CorrelationID) - i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationID))) + if len(m.CorrelationId) > 0 { + i -= len(m.CorrelationId) + copy(dAtA[i:], m.CorrelationId) + i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationId))) i-- dAtA[i] = 0xa } @@ -2282,7 +2282,7 @@ func (m *NginxConfigStatus) Size() (n int) { } var l int _ = l - l = len(m.CorrelationID) + l = len(m.CorrelationId) if l > 0 { n += 1 + l + sovCommand(uint64(l)) } @@ -3436,7 +3436,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationId", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3464,7 +3464,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.CorrelationID = string(dAtA[iNdEx:postIndex]) + m.CorrelationId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index 204aef138..95952d234 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -96,7 +96,7 @@ message AgentActivityStatus { } message NginxConfigStatus { - string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + string correlation_id = 1 [(gogoproto.jsontag) = "correlation_id" ]; Status status = 2 [(gogoproto.jsontag) = "status" ]; string message = 3 [(gogoproto.jsontag) = "message" ]; } diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index dfadb9bb5..b13c38292 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -607,7 +607,7 @@ func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { } type NginxConfigStatus struct { - CorrelationID string `protobuf:"bytes,1,opt,name=CorrelationID,proto3" json:"correlation_id"` + CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -648,9 +648,9 @@ func (m *NginxConfigStatus) XXX_DiscardUnknown() { var xxx_messageInfo_NginxConfigStatus proto.InternalMessageInfo -func (m *NginxConfigStatus) GetCorrelationID() string { +func (m *NginxConfigStatus) GetCorrelationId() string { if m != nil { - return m.CorrelationID + return m.CorrelationId } return "" } @@ -1087,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1371 bytes of a gzipped FileDescriptorProto + // 1369 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, - 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xa3, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, + 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xac, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, - 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0xbd, 0xec, 0x43, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, - 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0xa3, 0xab, - 0xdf, 0xf9, 0x9d, 0x3f, 0xf7, 0xdc, 0x73, 0x64, 0x58, 0xb2, 0xbc, 0xc1, 0xc0, 0x74, 0xed, 0xda, - 0xd0, 0xf7, 0x42, 0x0f, 0xa1, 0xfd, 0xaf, 0x6a, 0x6e, 0xcf, 0x71, 0xdf, 0xd4, 0xcc, 0x1e, 0x71, - 0xc3, 0x5a, 0x60, 0x1f, 0xac, 0x43, 0xcf, 0xeb, 0x79, 0xfc, 0xfd, 0x7a, 0x99, 0xc2, 0x3d, 0x57, - 0x3c, 0x95, 0x38, 0x88, 0x3f, 0x40, 0xdf, 0x0b, 0x12, 0xb9, 0xc4, 0x39, 0x46, 0x3a, 0xee, 0xbe, - 0xd3, 0x13, 0x4f, 0x88, 0x1c, 0x13, 0x37, 0x0c, 0xea, 0x6c, 0x11, 0x7b, 0x57, 0xed, 0x61, 0x37, - 0xf0, 0xf6, 0xc3, 0xd7, 0xa6, 0x4f, 0xba, 0x36, 0x09, 0x4d, 0xe7, 0x30, 0xe0, 0xaf, 0xb4, 0xdf, - 0x00, 0x0a, 0xbb, 0xdc, 0x45, 0x74, 0x17, 0x16, 0x06, 0x24, 0x34, 0xab, 0xf2, 0xa6, 0xbc, 0x55, - 0xda, 0xbe, 0x56, 0x9b, 0xf6, 0xb5, 0xb6, 0x47, 0x42, 0xd3, 0x36, 0x43, 0x53, 0x5f, 0x8c, 0x23, - 0x95, 0xa1, 0x31, 0xfb, 0x45, 0x4d, 0x58, 0x08, 0x4f, 0x86, 0xa4, 0x9a, 0xdb, 0x94, 0xb7, 0x96, - 0xb7, 0x6f, 0x64, 0xe9, 0x0a, 0x33, 0xc9, 0xfa, 0xf4, 0x64, 0x48, 0x38, 0x0d, 0x55, 0xc4, 0xec, - 0x17, 0xbd, 0x04, 0xb0, 0x06, 0x76, 0x37, 0x08, 0xcd, 0xf0, 0x28, 0xa8, 0x5e, 0x62, 0x8e, 0xdc, - 0x9c, 0x43, 0xf6, 0x84, 0x01, 0x31, 0x09, 0x86, 0x9e, 0x1b, 0x10, 0x7d, 0x39, 0x8e, 0xd4, 0x14, - 0x81, 0x21, 0xe1, 0xa2, 0x35, 0x10, 0x20, 0xf4, 0x1c, 0xca, 0x8c, 0xa5, 0xcb, 0xf3, 0x55, 0x5d, - 0x60, 0xec, 0x6a, 0x16, 0x7b, 0x9b, 0x3e, 0xef, 0x32, 0x98, 0x5e, 0x89, 0x23, 0x75, 0x4c, 0xd1, - 0x90, 0x30, 0xcf, 0x3f, 0x07, 0xa0, 0x37, 0x70, 0x25, 0xfd, 0xba, 0xeb, 0x0b, 0x6f, 0xaa, 0x79, - 0x66, 0xe0, 0xc6, 0x39, 0x06, 0x46, 0xce, 0x5f, 0x8d, 0x23, 0x35, 0x9b, 0xc9, 0x90, 0xf0, 0xaa, - 0x3b, 0xad, 0x41, 0x2d, 0x33, 0x4a, 0x8a, 0x77, 0x89, 0x15, 0x76, 0x7d, 0xf2, 0xfd, 0x11, 0x09, - 0xc2, 0xaa, 0x32, 0xdb, 0xf2, 0x0e, 0x95, 0x76, 0x39, 0x1e, 0x73, 0x38, 0xb7, 0x9c, 0xc9, 0x44, - 0x2d, 0x9b, 0xd3, 0x1a, 0xe8, 0x07, 0xf8, 0x68, 0x12, 0x2f, 0x82, 0x2e, 0x30, 0xd3, 0x5b, 0xe7, - 0x9b, 0x16, 0x51, 0xaf, 0xc7, 0x91, 0x3a, 0x83, 0xcb, 0x90, 0xf0, 0x9a, 0x99, 0xa1, 0x83, 0x42, - 0x58, 0x1b, 0x69, 0xf0, 0x3c, 0xf1, 0xb0, 0x17, 0x99, 0xed, 0xcf, 0xe6, 0xd9, 0x66, 0xe9, 0xe3, - 0x51, 0x57, 0xe3, 0x48, 0xcd, 0xe4, 0x31, 0x24, 0x8c, 0xcc, 0x29, 0x3c, 0xad, 0x9f, 0x34, 0xba, - 0x5a, 0x9c, 0x5d, 0x3f, 0x29, 0x6b, 0xbc, 0x7e, 0xd2, 0x8a, 0xb4, 0x7e, 0x52, 0xf4, 0x68, 0x1f, - 0x2a, 0xf4, 0x4a, 0x0d, 0x0f, 0x4d, 0x97, 0x24, 0x95, 0x5f, 0x62, 0xdc, 0x9f, 0x64, 0x71, 0x37, - 0x12, 0x2c, 0x2f, 0x6b, 0x7d, 0x2d, 0x8e, 0xd4, 0x29, 0x02, 0x43, 0xc2, 0x2b, 0xf6, 0x38, 0x10, - 0x7d, 0x07, 0x65, 0xd6, 0x14, 0xba, 0x3e, 0x19, 0x7a, 0x7e, 0x58, 0x2d, 0xcf, 0xce, 0x16, 0xef, - 0x21, 0xb5, 0x26, 0x5d, 0x30, 0x43, 0xf3, 0x30, 0xd2, 0xfa, 0x34, 0x0c, 0x72, 0x06, 0x40, 0x3f, - 0xcb, 0xb0, 0x9e, 0x72, 0x63, 0xa2, 0xdd, 0x54, 0x97, 0x98, 0xb5, 0xcf, 0xe7, 0x47, 0x24, 0x94, - 0x1a, 0x5c, 0x47, 0xdf, 0x88, 0x23, 0x75, 0x0e, 0xa7, 0x21, 0xe1, 0xaa, 0x3d, 0x43, 0x57, 0xbb, - 0x0d, 0xa5, 0x54, 0xa3, 0x41, 0x00, 0x4a, 0xbb, 0x83, 0xf7, 0x76, 0x1e, 0x55, 0x24, 0x54, 0x86, - 0xc5, 0x46, 0xe7, 0x45, 0xfb, 0x51, 0x67, 0xa7, 0x51, 0x91, 0xe9, 0x9b, 0x67, 0x8f, 0x99, 0x9c, - 0xd3, 0x15, 0x58, 0xa0, 0x84, 0xda, 0xef, 0x97, 0xe0, 0x4a, 0x66, 0x87, 0x41, 0xdf, 0x82, 0x22, - 0x8e, 0x48, 0x66, 0x9d, 0xee, 0xce, 0x7b, 0x37, 0xa7, 0xf1, 0x5d, 0x1d, 0xe2, 0x48, 0x15, 0x54, - 0x58, 0xac, 0xc8, 0x01, 0x20, 0xbe, 0xef, 0xf9, 0x5d, 0xcb, 0xb3, 0x93, 0x56, 0x7a, 0xf7, 0x83, - 0x0d, 0x34, 0x29, 0xc5, 0xae, 0x67, 0x8b, 0x76, 0x78, 0xc6, 0x88, 0x8b, 0x24, 0x79, 0x85, 0xae, - 0x43, 0x61, 0x40, 0x82, 0xc0, 0xec, 0x11, 0xd6, 0x65, 0x8b, 0x7a, 0x29, 0x8e, 0xd4, 0x64, 0x0b, - 0x27, 0x02, 0x52, 0x21, 0xcf, 0x74, 0x58, 0xb3, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, - 0x8b, 0x76, 0x0f, 0x96, 0xc6, 0x9c, 0x41, 0x2b, 0x50, 0xda, 0xdd, 0x6b, 0x74, 0x9f, 0xb5, 0x1f, - 0xb6, 0x3b, 0x2f, 0xda, 0x15, 0x89, 0xe6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x04, 0x45, - 0x2a, 0x37, 0x31, 0xee, 0xe0, 0x4a, 0x4e, 0xab, 0x43, 0x65, 0xd2, 0x67, 0x0a, 0x6f, 0x62, 0x4c, - 0xe1, 0x12, 0xe5, 0xa2, 0x72, 0xc2, 0x25, 0x6b, 0xbf, 0x2c, 0xc0, 0xca, 0x44, 0xfd, 0xa3, 0x5b, - 0x50, 0x0c, 0x4e, 0x82, 0x90, 0x0c, 0xba, 0x8e, 0xcd, 0x0e, 0xa5, 0xa8, 0x2f, 0xc5, 0x91, 0x7a, - 0xb6, 0x89, 0x17, 0xb9, 0xd8, 0xb2, 0xd1, 0x03, 0x28, 0x24, 0xf5, 0x98, 0xdb, 0xbc, 0xb4, 0x55, - 0xda, 0xde, 0x9c, 0xd9, 0x9c, 0x93, 0x1a, 0x64, 0x79, 0x11, 0x4a, 0x38, 0x11, 0xe8, 0xa8, 0xa4, - 0xe3, 0x58, 0x4c, 0xa8, 0xcc, 0x51, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0x3e, 0xe3, 0x28, - 0x1a, 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x4e, 0xcc, - 0x1e, 0x41, 0x06, 0xc3, 0x71, 0x1f, 0x84, 0x0e, 0x4e, 0x04, 0xf4, 0xd3, 0xfc, 0x0b, 0xa7, 0x30, - 0xee, 0xff, 0xf5, 0xc2, 0xcd, 0xbe, 0x6e, 0xe8, 0x38, 0x19, 0x45, 0xa6, 0x15, 0x3a, 0xc7, 0x4e, - 0x78, 0x92, 0x74, 0xb2, 0x02, 0x73, 0x63, 0xf6, 0x28, 0xda, 0x11, 0x78, 0x71, 0x2d, 0x52, 0xa3, - 0x68, 0x82, 0x49, 0x0c, 0xa2, 0x71, 0xbc, 0xf6, 0xab, 0x0c, 0xab, 0x19, 0x3c, 0x68, 0x08, 0xab, - 0x63, 0xa3, 0x34, 0x75, 0x69, 0x4b, 0xdb, 0xd7, 0xcf, 0x19, 0xc9, 0xc2, 0x97, 0x8f, 0xe3, 0x48, - 0xcd, 0x62, 0x31, 0x24, 0x7c, 0xd9, 0x9d, 0x42, 0x2f, 0x82, 0x22, 0x7c, 0xfa, 0x4b, 0x86, 0xcb, - 0x53, 0x6c, 0xe8, 0x6b, 0x7a, 0x53, 0x7c, 0x9f, 0x1c, 0x9a, 0xa1, 0xe3, 0xb9, 0xad, 0x86, 0xa8, - 0x55, 0x14, 0x47, 0xea, 0xb2, 0x75, 0xf6, 0x82, 0x16, 0xec, 0x38, 0x10, 0x7d, 0x33, 0xea, 0x39, - 0xbc, 0x25, 0xac, 0x67, 0xb9, 0x3f, 0xa7, 0xad, 0xbc, 0xdf, 0x5d, 0xd7, 0xf6, 0x60, 0xa5, 0xe1, - 0xbd, 0x76, 0x0f, 0x3d, 0xd3, 0x4e, 0x46, 0xde, 0x05, 0xbe, 0x08, 0xb5, 0x1f, 0x73, 0xb0, 0x9a, - 0xf1, 0x99, 0x83, 0xf6, 0xc6, 0x3a, 0xe8, 0x07, 0x7d, 0xde, 0x65, 0x05, 0xd7, 0x02, 0x85, 0x16, - 0x8a, 0xe7, 0x8a, 0xe4, 0x9c, 0x77, 0xb6, 0x3b, 0x0c, 0xcc, 0xa9, 0xb8, 0x22, 0x16, 0x2b, 0x7a, - 0x0e, 0x25, 0x71, 0xce, 0x34, 0x20, 0x71, 0xb7, 0x3f, 0xcd, 0x76, 0x8f, 0xc2, 0x1a, 0x24, 0xb0, - 0x7c, 0x67, 0x18, 0x7a, 0xbe, 0xbe, 0x12, 0x47, 0x6a, 0x5a, 0x19, 0x03, 0x7f, 0xa0, 0x37, 0x4d, - 0xfb, 0x57, 0x86, 0xf2, 0xb3, 0x21, 0xcd, 0xab, 0x28, 0x85, 0x8b, 0x7c, 0x68, 0x3f, 0x99, 0x28, - 0x86, 0x7a, 0x96, 0x76, 0xda, 0x5a, 0xed, 0xa9, 0x6f, 0xba, 0xc1, 0x3e, 0xf1, 0xe7, 0x54, 0x88, - 0x06, 0x8a, 0x4f, 0xcc, 0xc0, 0x73, 0x45, 0x81, 0x30, 0x0c, 0xdf, 0xc1, 0x62, 0xd5, 0xbe, 0x84, - 0xe5, 0x71, 0x26, 0x54, 0x82, 0xc2, 0x59, 0x9b, 0x57, 0x20, 0xc7, 0x5a, 0x3c, 0x80, 0x72, 0x7f, - 0xa7, 0xf5, 0xa8, 0xd9, 0xa8, 0xe4, 0xb4, 0x3f, 0x65, 0x28, 0xd2, 0x0c, 0xec, 0xf6, 0x8f, 0xdc, - 0x03, 0xd4, 0x01, 0xa5, 0x4f, 0x4c, 0x9b, 0xf8, 0x73, 0x0f, 0x9e, 0x42, 0x89, 0x8d, 0x49, 0xe0, - 0x1d, 0xf9, 0x16, 0x31, 0x98, 0x02, 0xf7, 0x87, 0x2b, 0x1b, 0x12, 0x16, 0x12, 0x32, 0xf8, 0xb4, - 0x66, 0x89, 0x98, 0xf1, 0xc9, 0x39, 0x41, 0xc7, 0x1e, 0x79, 0x4a, 0xa9, 0xa6, 0x21, 0x61, 0xb6, - 0xea, 0x05, 0xc8, 0x5b, 0xf4, 0x95, 0xf6, 0x4e, 0x86, 0x2b, 0x99, 0x2e, 0x5c, 0xe8, 0xcc, 0x34, - 0x50, 0x18, 0x3d, 0x3f, 0xb3, 0x3c, 0x0f, 0x87, 0xef, 0x60, 0xb1, 0xa2, 0x2d, 0x58, 0xb4, 0xfa, - 0xc4, 0x3a, 0x08, 0x8e, 0x06, 0xe2, 0x10, 0xca, 0x71, 0xa4, 0x8e, 0xf6, 0xf0, 0x48, 0x42, 0x5f, - 0x00, 0x30, 0x9d, 0x6e, 0xe0, 0xbc, 0x25, 0x6c, 0x30, 0xe7, 0xc5, 0x1f, 0x9f, 0xd1, 0x2e, 0x2e, - 0x32, 0xf9, 0x89, 0xf3, 0x96, 0x68, 0x7f, 0xc8, 0xb0, 0x96, 0x95, 0x86, 0x0b, 0x45, 0x74, 0x83, - 0x7a, 0x4b, 0xad, 0x39, 0xb6, 0x88, 0x49, 0x78, 0xcb, 0xf7, 0x70, 0x81, 0x49, 0x2d, 0x1b, 0x5d, - 0x13, 0x67, 0x44, 0x43, 0x2a, 0x9f, 0x65, 0x9e, 0xe7, 0xfd, 0xd6, 0x56, 0xd2, 0x33, 0x69, 0x2d, - 0x3d, 0x6e, 0xb6, 0x1b, 0xad, 0xf6, 0x83, 0x54, 0x2d, 0x15, 0x21, 0x2f, 0x3e, 0x15, 0xf4, 0x3b, - 0x7f, 0x9f, 0x6e, 0xc8, 0xef, 0x4e, 0x37, 0xe4, 0x7f, 0x4e, 0x37, 0xe4, 0x97, 0x37, 0x7b, 0x4e, - 0xd8, 0x3f, 0x7a, 0x55, 0xb3, 0xbc, 0x41, 0x9d, 0xf9, 0x5c, 0x67, 0x3e, 0xd7, 0x03, 0xfb, 0xa0, - 0x7e, 0xbc, 0x5d, 0x67, 0x7f, 0x6d, 0xef, 0xb1, 0xdf, 0x57, 0x0a, 0x5b, 0x6e, 0xff, 0x17, 0x00, - 0x00, 0xff, 0xff, 0xb6, 0x04, 0xb9, 0x73, 0x89, 0x0f, 0x00, 0x00, + 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0x3d, 0xed, 0x3b, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, + 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0x7f, 0xbf, + 0xf3, 0x3b, 0x7f, 0xee, 0xb9, 0xe7, 0xc8, 0xb0, 0x64, 0x79, 0x83, 0x81, 0xe9, 0xda, 0xb5, 0xa1, + 0xef, 0x85, 0x1e, 0x42, 0xfb, 0x5f, 0xd5, 0xdc, 0x9e, 0xe3, 0xbe, 0xa9, 0x99, 0x3d, 0xe2, 0x86, + 0xb5, 0xc0, 0x3e, 0x58, 0x87, 0x9e, 0xd7, 0xf3, 0xf8, 0xf9, 0x7a, 0x99, 0xc2, 0x3d, 0x57, 0xac, + 0x4a, 0x1c, 0xc4, 0x17, 0xd0, 0xf7, 0x82, 0x64, 0x5e, 0xe2, 0x1c, 0x23, 0x19, 0x77, 0xdf, 0xe9, + 0x89, 0x15, 0x22, 0xc7, 0xc4, 0x0d, 0x83, 0x3a, 0x1b, 0xc4, 0xde, 0x55, 0x7b, 0xd8, 0x0d, 0xbc, + 0xfd, 0xf0, 0xb5, 0xe9, 0x93, 0xae, 0x4d, 0x42, 0xd3, 0x39, 0x0c, 0xf8, 0x91, 0xf6, 0x1b, 0x40, + 0x61, 0x97, 0x9b, 0x88, 0xee, 0xc2, 0xc2, 0x80, 0x84, 0x66, 0x55, 0xde, 0x94, 0xb7, 0x4a, 0xdb, + 0xd7, 0x6a, 0xd3, 0xb6, 0xd6, 0xf6, 0x48, 0x68, 0xda, 0x66, 0x68, 0xea, 0x8b, 0x71, 0xa4, 0x32, + 0x34, 0x66, 0xbf, 0xa8, 0x09, 0x0b, 0xe1, 0xc9, 0x90, 0x54, 0x73, 0x9b, 0xf2, 0xd6, 0xf2, 0xf6, + 0x8d, 0x2c, 0x59, 0xa1, 0x26, 0x19, 0x9f, 0x9e, 0x0c, 0x09, 0xa7, 0xa1, 0x82, 0x98, 0xfd, 0xa2, + 0x97, 0x00, 0xd6, 0xc0, 0xee, 0x06, 0xa1, 0x19, 0x1e, 0x05, 0xd5, 0x4b, 0xcc, 0x90, 0x9b, 0x73, + 0xc8, 0x9e, 0x30, 0x20, 0x26, 0xc1, 0xd0, 0x73, 0x03, 0xa2, 0x2f, 0xc7, 0x91, 0x9a, 0x22, 0x30, + 0x24, 0x5c, 0xb4, 0x06, 0x02, 0x84, 0x9e, 0x43, 0x99, 0xb1, 0x74, 0x79, 0xbc, 0xaa, 0x0b, 0x8c, + 0x5d, 0xcd, 0x62, 0x6f, 0xd3, 0xf5, 0x2e, 0x83, 0xe9, 0x95, 0x38, 0x52, 0xc7, 0x04, 0x0d, 0x09, + 0xf3, 0xf8, 0x73, 0x00, 0x7a, 0x03, 0x57, 0xd2, 0xc7, 0x5d, 0x5f, 0x58, 0x53, 0xcd, 0x33, 0x05, + 0x37, 0xce, 0x51, 0x30, 0x32, 0xfe, 0x6a, 0x1c, 0xa9, 0xd9, 0x4c, 0x86, 0x84, 0x57, 0xdd, 0x69, + 0x09, 0xaa, 0x99, 0x51, 0x52, 0xbc, 0x4b, 0xac, 0xb0, 0xeb, 0x93, 0xef, 0x8f, 0x48, 0x10, 0x56, + 0x95, 0xd9, 0x9a, 0x77, 0xe8, 0x6c, 0x97, 0xe3, 0x31, 0x87, 0x73, 0xcd, 0x99, 0x4c, 0x54, 0xb3, + 0x39, 0x2d, 0x81, 0x7e, 0x80, 0x8f, 0x26, 0xf1, 0xc2, 0xe9, 0x02, 0x53, 0xbd, 0x75, 0xbe, 0x6a, + 0xe1, 0xf5, 0x7a, 0x1c, 0xa9, 0x33, 0xb8, 0x0c, 0x09, 0xaf, 0x99, 0x19, 0x32, 0x28, 0x84, 0xb5, + 0x91, 0x04, 0x8f, 0x13, 0x77, 0x7b, 0x91, 0xe9, 0xfe, 0x6c, 0x9e, 0x6e, 0x16, 0x3e, 0xee, 0x75, + 0x35, 0x8e, 0xd4, 0x4c, 0x1e, 0x43, 0xc2, 0xc8, 0x9c, 0xc2, 0xd3, 0xfc, 0x49, 0xa3, 0xab, 0xc5, + 0xd9, 0xf9, 0x93, 0xd2, 0xc6, 0xf3, 0x27, 0x2d, 0x48, 0xf3, 0x27, 0x45, 0x8f, 0xf6, 0xa1, 0x42, + 0x9f, 0xd4, 0xf0, 0xd0, 0x74, 0x49, 0x92, 0xf9, 0x25, 0xc6, 0xfd, 0x49, 0x16, 0x77, 0x23, 0xc1, + 0xf2, 0xb4, 0xd6, 0xd7, 0xe2, 0x48, 0x9d, 0x22, 0x30, 0x24, 0xbc, 0x62, 0x8f, 0x03, 0xd1, 0x77, + 0x50, 0x66, 0x45, 0xa1, 0xeb, 0x93, 0xa1, 0xe7, 0x87, 0xd5, 0xf2, 0xec, 0x68, 0xf1, 0x1a, 0x52, + 0x6b, 0xd2, 0x01, 0x33, 0x34, 0x77, 0x23, 0x2d, 0x4f, 0xdd, 0x20, 0x67, 0x00, 0xf4, 0xb3, 0x0c, + 0xeb, 0x29, 0x33, 0x26, 0xca, 0x4d, 0x75, 0x89, 0x69, 0xfb, 0x7c, 0xbe, 0x47, 0x42, 0xa8, 0xc1, + 0x65, 0xf4, 0x8d, 0x38, 0x52, 0xe7, 0x70, 0x1a, 0x12, 0xae, 0xda, 0x33, 0x64, 0xb5, 0xdb, 0x50, + 0x4a, 0x15, 0x1a, 0x04, 0xa0, 0xb4, 0x3b, 0x78, 0x6f, 0xe7, 0x51, 0x45, 0x42, 0x65, 0x58, 0x6c, + 0x74, 0x5e, 0xb4, 0x1f, 0x75, 0x76, 0x1a, 0x15, 0x99, 0x9e, 0x3c, 0x7b, 0xcc, 0xe6, 0x39, 0x5d, + 0x81, 0x05, 0x4a, 0xa8, 0xfd, 0x7e, 0x09, 0xae, 0x64, 0x56, 0x18, 0xf4, 0x2d, 0x28, 0xe2, 0x8a, + 0x64, 0x56, 0xe9, 0xee, 0xbc, 0x77, 0x71, 0x1a, 0xdf, 0xd5, 0x21, 0x8e, 0x54, 0x41, 0x85, 0xc5, + 0x88, 0x1c, 0x00, 0xe2, 0xfb, 0x9e, 0xdf, 0xb5, 0x3c, 0x3b, 0x29, 0xa5, 0x77, 0x3f, 0x58, 0x41, + 0x93, 0x52, 0xec, 0x7a, 0xb6, 0x28, 0x87, 0x67, 0x8c, 0xb8, 0x48, 0x92, 0x23, 0x74, 0x1d, 0x0a, + 0x03, 0x12, 0x04, 0x66, 0x8f, 0xb0, 0x2a, 0x5b, 0xd4, 0x4b, 0x71, 0xa4, 0x26, 0x5b, 0x38, 0x99, + 0x20, 0x15, 0xf2, 0x4c, 0x86, 0x15, 0xcb, 0xa2, 0x5e, 0x8c, 0x23, 0x95, 0x6f, 0x60, 0x3e, 0x68, + 0xf7, 0x60, 0x69, 0xcc, 0x18, 0xb4, 0x02, 0xa5, 0xdd, 0xbd, 0x46, 0xf7, 0x59, 0xfb, 0x61, 0xbb, + 0xf3, 0xa2, 0x5d, 0x91, 0x68, 0x7c, 0xe9, 0x46, 0xe7, 0x61, 0x45, 0x46, 0x4b, 0x50, 0xa4, 0xf3, + 0x26, 0xc6, 0x1d, 0x5c, 0xc9, 0x69, 0x75, 0xa8, 0x4c, 0xda, 0x4c, 0xe1, 0x4d, 0x8c, 0x29, 0x5c, + 0xa2, 0x5c, 0x74, 0x9e, 0x70, 0xc9, 0xda, 0x2f, 0x0b, 0xb0, 0x32, 0x91, 0xff, 0xe8, 0x16, 0x14, + 0x83, 0x93, 0x20, 0x24, 0x83, 0xae, 0x63, 0xb3, 0x4b, 0x29, 0xea, 0x4b, 0x71, 0xa4, 0x9e, 0x6d, + 0xe2, 0x45, 0x3e, 0x6d, 0xd9, 0xe8, 0x01, 0x14, 0x92, 0x7c, 0xcc, 0x6d, 0x5e, 0xda, 0x2a, 0x6d, + 0x6f, 0xce, 0x2c, 0xce, 0x49, 0x0e, 0xb2, 0xb8, 0x08, 0x21, 0x9c, 0x4c, 0x68, 0xab, 0xa4, 0xed, + 0x58, 0x74, 0xa8, 0xcc, 0x56, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0xde, 0xe3, 0x28, 0x1a, + 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x46, 0xcc, 0x6e, + 0x41, 0x06, 0xc3, 0x71, 0x1b, 0x84, 0x0c, 0x4e, 0x26, 0xe8, 0xa7, 0xf9, 0x0f, 0x4e, 0x61, 0xdc, + 0xff, 0xeb, 0x83, 0x9b, 0xfd, 0xdc, 0xd0, 0x71, 0xd2, 0x8a, 0x4c, 0x2b, 0x74, 0x8e, 0x9d, 0xf0, + 0x24, 0xa9, 0x64, 0x05, 0x66, 0xc6, 0xec, 0x56, 0xb4, 0x23, 0xf0, 0xe2, 0x59, 0xa4, 0x5a, 0xd1, + 0x04, 0x93, 0x68, 0x44, 0xe3, 0x78, 0xed, 0x57, 0x19, 0x56, 0x33, 0x78, 0xd0, 0x10, 0x56, 0xc7, + 0x5a, 0x69, 0xea, 0xd1, 0x96, 0xb6, 0xaf, 0x9f, 0xd3, 0x92, 0x85, 0x2d, 0x1f, 0xc7, 0x91, 0x9a, + 0xc5, 0x62, 0x48, 0xf8, 0xb2, 0x3b, 0x85, 0x5e, 0x04, 0x45, 0xd8, 0xf4, 0x97, 0x0c, 0x97, 0xa7, + 0xd8, 0xd0, 0xd7, 0xb0, 0x6c, 0x79, 0xbe, 0x4f, 0x0e, 0xcd, 0xd0, 0xf1, 0xdc, 0xb3, 0x64, 0x45, + 0x71, 0xa4, 0x4e, 0x9c, 0xe0, 0xa5, 0xd4, 0xba, 0x65, 0xa3, 0x6f, 0x46, 0x45, 0x87, 0xd7, 0x84, + 0xf5, 0x2c, 0xfb, 0xe7, 0xd4, 0x95, 0xf7, 0x7b, 0xec, 0xda, 0x1e, 0xac, 0x34, 0xbc, 0xd7, 0xee, + 0xa1, 0x67, 0xda, 0x49, 0xcf, 0xbb, 0xc0, 0x27, 0xa1, 0xf6, 0x63, 0x0e, 0x56, 0x33, 0xbe, 0x73, + 0xd0, 0xde, 0x58, 0x09, 0xfd, 0xa0, 0xef, 0xbb, 0x2c, 0xe7, 0x5a, 0xa0, 0xd0, 0x4c, 0xf1, 0x5c, + 0x11, 0x9c, 0xf3, 0x2e, 0x77, 0x87, 0x81, 0x39, 0x15, 0x17, 0xc4, 0x62, 0x44, 0xcf, 0xa1, 0x24, + 0x2e, 0x9a, 0x3a, 0x24, 0x1e, 0xf7, 0xa7, 0xd9, 0xe6, 0x51, 0x58, 0x83, 0x04, 0x96, 0xef, 0x0c, + 0x43, 0xcf, 0xd7, 0x57, 0xe2, 0x48, 0x4d, 0x0b, 0x63, 0xe0, 0x0b, 0xfa, 0xd4, 0xb4, 0x7f, 0x65, + 0x28, 0x3f, 0x1b, 0xd2, 0xb8, 0x8a, 0x5c, 0xb8, 0xc8, 0x97, 0xf6, 0x93, 0x89, 0x64, 0xa8, 0x67, + 0x49, 0xa7, 0xb5, 0xd5, 0x9e, 0xfa, 0xa6, 0x1b, 0xec, 0x13, 0x7f, 0x4e, 0x86, 0x68, 0xa0, 0xf8, + 0xc4, 0x0c, 0x3c, 0x57, 0x24, 0x08, 0xc3, 0xf0, 0x1d, 0x2c, 0x46, 0xed, 0x4b, 0x58, 0x1e, 0x67, + 0x42, 0x25, 0x28, 0x9c, 0xd5, 0x79, 0x05, 0x72, 0xac, 0xc6, 0x03, 0x28, 0xf7, 0x77, 0x5a, 0x8f, + 0x9a, 0x8d, 0x4a, 0x4e, 0xfb, 0x53, 0x86, 0x22, 0x8d, 0xc0, 0x6e, 0xff, 0xc8, 0x3d, 0x40, 0x1d, + 0x50, 0xfa, 0xc4, 0xb4, 0x89, 0x3f, 0xf7, 0xe2, 0x29, 0x94, 0xd8, 0x98, 0x04, 0xde, 0x91, 0x6f, + 0x11, 0x83, 0x09, 0x70, 0x7b, 0xb8, 0xb0, 0x21, 0x61, 0x31, 0x43, 0x06, 0x6f, 0xd7, 0x2c, 0x10, + 0x33, 0xbe, 0x39, 0x27, 0xe8, 0xd8, 0x92, 0x87, 0x94, 0x4a, 0x1a, 0x12, 0x66, 0xa3, 0x5e, 0x80, + 0xbc, 0x45, 0x8f, 0xb4, 0x77, 0x32, 0x5c, 0xc9, 0x34, 0xe1, 0x42, 0x77, 0xa6, 0x81, 0xc2, 0xe8, + 0xf9, 0x9d, 0xe5, 0xb9, 0x3b, 0x7c, 0x07, 0x8b, 0x11, 0x6d, 0xc1, 0xa2, 0xd5, 0x27, 0xd6, 0x41, + 0x70, 0x34, 0x10, 0x97, 0x50, 0x8e, 0x23, 0x75, 0xb4, 0x87, 0x47, 0x33, 0xf4, 0x05, 0x00, 0x93, + 0xe9, 0x06, 0xce, 0x5b, 0xc2, 0x3a, 0x73, 0x5e, 0xfc, 0xf3, 0x19, 0xed, 0xe2, 0x22, 0x9b, 0x3f, + 0x71, 0xde, 0x12, 0xed, 0x0f, 0x19, 0xd6, 0xb2, 0xc2, 0x70, 0x21, 0x8f, 0x6e, 0x50, 0x6b, 0xa9, + 0x36, 0xc7, 0x16, 0x3e, 0x09, 0x6b, 0xf9, 0x1e, 0x2e, 0xb0, 0x59, 0xcb, 0x46, 0xd7, 0xc4, 0x1d, + 0x51, 0x97, 0xca, 0x67, 0x91, 0xe7, 0x71, 0xbf, 0xb5, 0x95, 0x14, 0x4d, 0x9a, 0x4b, 0x8f, 0x9b, + 0xed, 0x46, 0xab, 0xfd, 0x20, 0x95, 0x4b, 0x45, 0xc8, 0x8b, 0x6f, 0x05, 0xfd, 0xce, 0xdf, 0xa7, + 0x1b, 0xf2, 0xbb, 0xd3, 0x0d, 0xf9, 0x9f, 0xd3, 0x0d, 0xf9, 0xe5, 0xcd, 0x9e, 0x13, 0xf6, 0x8f, + 0x5e, 0xd5, 0x2c, 0x6f, 0x50, 0x67, 0x36, 0xd7, 0x99, 0xcd, 0xf5, 0xc0, 0x3e, 0xa8, 0x1f, 0x6f, + 0xd7, 0xd9, 0x7f, 0xdb, 0x7b, 0xec, 0xf7, 0x95, 0xc2, 0x86, 0xdb, 0xff, 0x05, 0x00, 0x00, 0xff, + 0xff, 0x0b, 0x95, 0xff, 0x24, 0x8a, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -1685,10 +1685,10 @@ func (m *NginxConfigStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x10 } - if len(m.CorrelationID) > 0 { - i -= len(m.CorrelationID) - copy(dAtA[i:], m.CorrelationID) - i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationID))) + if len(m.CorrelationId) > 0 { + i -= len(m.CorrelationId) + copy(dAtA[i:], m.CorrelationId) + i = encodeVarintCommand(dAtA, i, uint64(len(m.CorrelationId))) i-- dAtA[i] = 0xa } @@ -2282,7 +2282,7 @@ func (m *NginxConfigStatus) Size() (n int) { } var l int _ = l - l = len(m.CorrelationID) + l = len(m.CorrelationId) if l > 0 { n += 1 + l + sovCommand(uint64(l)) } @@ -3436,7 +3436,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CorrelationID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CorrelationId", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -3464,7 +3464,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.CorrelationID = string(dAtA[iNdEx:postIndex]) + m.CorrelationId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index 204aef138..95952d234 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -96,7 +96,7 @@ message AgentActivityStatus { } message NginxConfigStatus { - string CorrelationID = 1 [(gogoproto.jsontag) = "correlation_id" ]; + string correlation_id = 1 [(gogoproto.jsontag) = "correlation_id" ]; Status status = 2 [(gogoproto.jsontag) = "status" ]; string message = 3 [(gogoproto.jsontag) = "message" ]; } From 7a6ba3417df0d8b0df4f26c83c886dfa132c7381 Mon Sep 17 00:00:00 2001 From: dhurley Date: Tue, 27 Sep 2022 13:33:39 +0100 Subject: [PATCH 4/4] Updated NginxConfigStatus message --- sdk/proto/command.pb.go | 250 +++++++++--------- sdk/proto/command.proto | 11 +- .../nginx/agent/sdk/v2/proto/command.pb.go | 250 +++++++++--------- .../nginx/agent/sdk/v2/proto/command.proto | 11 +- .../nginx/agent/sdk/v2/proto/command.pb.go | 250 +++++++++--------- .../nginx/agent/sdk/v2/proto/command.proto | 11 +- 6 files changed, 393 insertions(+), 390 deletions(-) diff --git a/sdk/proto/command.pb.go b/sdk/proto/command.pb.go index b13c38292..0ff5eec2e 100644 --- a/sdk/proto/command.pb.go +++ b/sdk/proto/command.pb.go @@ -24,34 +24,6 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -type Status int32 - -const ( - Status_PENDING Status = 0 - Status_OK Status = 1 - Status_ERROR Status = 2 -) - -var Status_name = map[int32]string{ - 0: "PENDING", - 1: "OK", - 2: "ERROR", -} - -var Status_value = map[string]int32{ - "PENDING": 0, - "OK": 1, - "ERROR": 2, -} - -func (x Status) String() string { - return proto.EnumName(Status_name, int32(x)) -} - -func (Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{0} -} - type Command_CommandType int32 const ( @@ -133,6 +105,34 @@ func (CommandStatusResponse_CommandErrorCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor_213c0bb044472049, []int{1, 1} } +type NginxConfigStatus_Status int32 + +const ( + NginxConfigStatus_PENDING NginxConfigStatus_Status = 0 + NginxConfigStatus_OK NginxConfigStatus_Status = 1 + NginxConfigStatus_ERROR NginxConfigStatus_Status = 2 +) + +var NginxConfigStatus_Status_name = map[int32]string{ + 0: "PENDING", + 1: "OK", + 2: "ERROR", +} + +var NginxConfigStatus_Status_value = map[string]int32{ + "PENDING": 0, + "OK": 1, + "ERROR": 2, +} + +func (x NginxConfigStatus_Status) String() string { + return proto.EnumName(NginxConfigStatus_Status_name, int32(x)) +} + +func (NginxConfigStatus_Status) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{4, 0} +} + type UploadStatus_TransferStatus int32 const ( @@ -607,12 +607,12 @@ func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { } type NginxConfigStatus struct { - CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` - Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` - Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` + Status NginxConfigStatus_Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.NginxConfigStatus_Status" json:"status"` + Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *NginxConfigStatus) Reset() { *m = NginxConfigStatus{} } @@ -655,11 +655,11 @@ func (m *NginxConfigStatus) GetCorrelationId() string { return "" } -func (m *NginxConfigStatus) GetStatus() Status { +func (m *NginxConfigStatus) GetStatus() NginxConfigStatus_Status { if m != nil { return m.Status } - return Status_PENDING + return NginxConfigStatus_PENDING } func (m *NginxConfigStatus) GetMessage() string { @@ -1066,10 +1066,10 @@ func (m *ChunkedResourceChunk) GetData() []byte { } func init() { - proto.RegisterEnum("f5.nginx.agent.sdk.Status", Status_name, Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.Command_CommandType", Command_CommandType_name, Command_CommandType_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandStatus", CommandStatusResponse_CommandStatus_name, CommandStatusResponse_CommandStatus_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandErrorCode", CommandStatusResponse_CommandErrorCode_name, CommandStatusResponse_CommandErrorCode_value) + proto.RegisterEnum("f5.nginx.agent.sdk.NginxConfigStatus_Status", NginxConfigStatus_Status_name, NginxConfigStatus_Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.UploadStatus_TransferStatus", UploadStatus_TransferStatus_name, UploadStatus_TransferStatus_value) proto.RegisterType((*Command)(nil), "f5.nginx.agent.sdk.Command") proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") @@ -1087,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1369 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, - 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, - 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xac, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, - 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, - 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0x3d, 0xed, 0x3b, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, - 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0x7f, 0xbf, - 0xf3, 0x3b, 0x7f, 0xee, 0xb9, 0xe7, 0xc8, 0xb0, 0x64, 0x79, 0x83, 0x81, 0xe9, 0xda, 0xb5, 0xa1, - 0xef, 0x85, 0x1e, 0x42, 0xfb, 0x5f, 0xd5, 0xdc, 0x9e, 0xe3, 0xbe, 0xa9, 0x99, 0x3d, 0xe2, 0x86, - 0xb5, 0xc0, 0x3e, 0x58, 0x87, 0x9e, 0xd7, 0xf3, 0xf8, 0xf9, 0x7a, 0x99, 0xc2, 0x3d, 0x57, 0xac, - 0x4a, 0x1c, 0xc4, 0x17, 0xd0, 0xf7, 0x82, 0x64, 0x5e, 0xe2, 0x1c, 0x23, 0x19, 0x77, 0xdf, 0xe9, - 0x89, 0x15, 0x22, 0xc7, 0xc4, 0x0d, 0x83, 0x3a, 0x1b, 0xc4, 0xde, 0x55, 0x7b, 0xd8, 0x0d, 0xbc, - 0xfd, 0xf0, 0xb5, 0xe9, 0x93, 0xae, 0x4d, 0x42, 0xd3, 0x39, 0x0c, 0xf8, 0x91, 0xf6, 0x1b, 0x40, - 0x61, 0x97, 0x9b, 0x88, 0xee, 0xc2, 0xc2, 0x80, 0x84, 0x66, 0x55, 0xde, 0x94, 0xb7, 0x4a, 0xdb, - 0xd7, 0x6a, 0xd3, 0xb6, 0xd6, 0xf6, 0x48, 0x68, 0xda, 0x66, 0x68, 0xea, 0x8b, 0x71, 0xa4, 0x32, - 0x34, 0x66, 0xbf, 0xa8, 0x09, 0x0b, 0xe1, 0xc9, 0x90, 0x54, 0x73, 0x9b, 0xf2, 0xd6, 0xf2, 0xf6, - 0x8d, 0x2c, 0x59, 0xa1, 0x26, 0x19, 0x9f, 0x9e, 0x0c, 0x09, 0xa7, 0xa1, 0x82, 0x98, 0xfd, 0xa2, - 0x97, 0x00, 0xd6, 0xc0, 0xee, 0x06, 0xa1, 0x19, 0x1e, 0x05, 0xd5, 0x4b, 0xcc, 0x90, 0x9b, 0x73, - 0xc8, 0x9e, 0x30, 0x20, 0x26, 0xc1, 0xd0, 0x73, 0x03, 0xa2, 0x2f, 0xc7, 0x91, 0x9a, 0x22, 0x30, - 0x24, 0x5c, 0xb4, 0x06, 0x02, 0x84, 0x9e, 0x43, 0x99, 0xb1, 0x74, 0x79, 0xbc, 0xaa, 0x0b, 0x8c, - 0x5d, 0xcd, 0x62, 0x6f, 0xd3, 0xf5, 0x2e, 0x83, 0xe9, 0x95, 0x38, 0x52, 0xc7, 0x04, 0x0d, 0x09, - 0xf3, 0xf8, 0x73, 0x00, 0x7a, 0x03, 0x57, 0xd2, 0xc7, 0x5d, 0x5f, 0x58, 0x53, 0xcd, 0x33, 0x05, - 0x37, 0xce, 0x51, 0x30, 0x32, 0xfe, 0x6a, 0x1c, 0xa9, 0xd9, 0x4c, 0x86, 0x84, 0x57, 0xdd, 0x69, - 0x09, 0xaa, 0x99, 0x51, 0x52, 0xbc, 0x4b, 0xac, 0xb0, 0xeb, 0x93, 0xef, 0x8f, 0x48, 0x10, 0x56, - 0x95, 0xd9, 0x9a, 0x77, 0xe8, 0x6c, 0x97, 0xe3, 0x31, 0x87, 0x73, 0xcd, 0x99, 0x4c, 0x54, 0xb3, - 0x39, 0x2d, 0x81, 0x7e, 0x80, 0x8f, 0x26, 0xf1, 0xc2, 0xe9, 0x02, 0x53, 0xbd, 0x75, 0xbe, 0x6a, - 0xe1, 0xf5, 0x7a, 0x1c, 0xa9, 0x33, 0xb8, 0x0c, 0x09, 0xaf, 0x99, 0x19, 0x32, 0x28, 0x84, 0xb5, - 0x91, 0x04, 0x8f, 0x13, 0x77, 0x7b, 0x91, 0xe9, 0xfe, 0x6c, 0x9e, 0x6e, 0x16, 0x3e, 0xee, 0x75, - 0x35, 0x8e, 0xd4, 0x4c, 0x1e, 0x43, 0xc2, 0xc8, 0x9c, 0xc2, 0xd3, 0xfc, 0x49, 0xa3, 0xab, 0xc5, - 0xd9, 0xf9, 0x93, 0xd2, 0xc6, 0xf3, 0x27, 0x2d, 0x48, 0xf3, 0x27, 0x45, 0x8f, 0xf6, 0xa1, 0x42, - 0x9f, 0xd4, 0xf0, 0xd0, 0x74, 0x49, 0x92, 0xf9, 0x25, 0xc6, 0xfd, 0x49, 0x16, 0x77, 0x23, 0xc1, - 0xf2, 0xb4, 0xd6, 0xd7, 0xe2, 0x48, 0x9d, 0x22, 0x30, 0x24, 0xbc, 0x62, 0x8f, 0x03, 0xd1, 0x77, - 0x50, 0x66, 0x45, 0xa1, 0xeb, 0x93, 0xa1, 0xe7, 0x87, 0xd5, 0xf2, 0xec, 0x68, 0xf1, 0x1a, 0x52, - 0x6b, 0xd2, 0x01, 0x33, 0x34, 0x77, 0x23, 0x2d, 0x4f, 0xdd, 0x20, 0x67, 0x00, 0xf4, 0xb3, 0x0c, - 0xeb, 0x29, 0x33, 0x26, 0xca, 0x4d, 0x75, 0x89, 0x69, 0xfb, 0x7c, 0xbe, 0x47, 0x42, 0xa8, 0xc1, - 0x65, 0xf4, 0x8d, 0x38, 0x52, 0xe7, 0x70, 0x1a, 0x12, 0xae, 0xda, 0x33, 0x64, 0xb5, 0xdb, 0x50, - 0x4a, 0x15, 0x1a, 0x04, 0xa0, 0xb4, 0x3b, 0x78, 0x6f, 0xe7, 0x51, 0x45, 0x42, 0x65, 0x58, 0x6c, - 0x74, 0x5e, 0xb4, 0x1f, 0x75, 0x76, 0x1a, 0x15, 0x99, 0x9e, 0x3c, 0x7b, 0xcc, 0xe6, 0x39, 0x5d, - 0x81, 0x05, 0x4a, 0xa8, 0xfd, 0x7e, 0x09, 0xae, 0x64, 0x56, 0x18, 0xf4, 0x2d, 0x28, 0xe2, 0x8a, - 0x64, 0x56, 0xe9, 0xee, 0xbc, 0x77, 0x71, 0x1a, 0xdf, 0xd5, 0x21, 0x8e, 0x54, 0x41, 0x85, 0xc5, - 0x88, 0x1c, 0x00, 0xe2, 0xfb, 0x9e, 0xdf, 0xb5, 0x3c, 0x3b, 0x29, 0xa5, 0x77, 0x3f, 0x58, 0x41, - 0x93, 0x52, 0xec, 0x7a, 0xb6, 0x28, 0x87, 0x67, 0x8c, 0xb8, 0x48, 0x92, 0x23, 0x74, 0x1d, 0x0a, - 0x03, 0x12, 0x04, 0x66, 0x8f, 0xb0, 0x2a, 0x5b, 0xd4, 0x4b, 0x71, 0xa4, 0x26, 0x5b, 0x38, 0x99, - 0x20, 0x15, 0xf2, 0x4c, 0x86, 0x15, 0xcb, 0xa2, 0x5e, 0x8c, 0x23, 0x95, 0x6f, 0x60, 0x3e, 0x68, - 0xf7, 0x60, 0x69, 0xcc, 0x18, 0xb4, 0x02, 0xa5, 0xdd, 0xbd, 0x46, 0xf7, 0x59, 0xfb, 0x61, 0xbb, - 0xf3, 0xa2, 0x5d, 0x91, 0x68, 0x7c, 0xe9, 0x46, 0xe7, 0x61, 0x45, 0x46, 0x4b, 0x50, 0xa4, 0xf3, - 0x26, 0xc6, 0x1d, 0x5c, 0xc9, 0x69, 0x75, 0xa8, 0x4c, 0xda, 0x4c, 0xe1, 0x4d, 0x8c, 0x29, 0x5c, - 0xa2, 0x5c, 0x74, 0x9e, 0x70, 0xc9, 0xda, 0x2f, 0x0b, 0xb0, 0x32, 0x91, 0xff, 0xe8, 0x16, 0x14, - 0x83, 0x93, 0x20, 0x24, 0x83, 0xae, 0x63, 0xb3, 0x4b, 0x29, 0xea, 0x4b, 0x71, 0xa4, 0x9e, 0x6d, - 0xe2, 0x45, 0x3e, 0x6d, 0xd9, 0xe8, 0x01, 0x14, 0x92, 0x7c, 0xcc, 0x6d, 0x5e, 0xda, 0x2a, 0x6d, - 0x6f, 0xce, 0x2c, 0xce, 0x49, 0x0e, 0xb2, 0xb8, 0x08, 0x21, 0x9c, 0x4c, 0x68, 0xab, 0xa4, 0xed, - 0x58, 0x74, 0xa8, 0xcc, 0x56, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0xde, 0xe3, 0x28, 0x1a, - 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x46, 0xcc, 0x6e, - 0x41, 0x06, 0xc3, 0x71, 0x1b, 0x84, 0x0c, 0x4e, 0x26, 0xe8, 0xa7, 0xf9, 0x0f, 0x4e, 0x61, 0xdc, - 0xff, 0xeb, 0x83, 0x9b, 0xfd, 0xdc, 0xd0, 0x71, 0xd2, 0x8a, 0x4c, 0x2b, 0x74, 0x8e, 0x9d, 0xf0, - 0x24, 0xa9, 0x64, 0x05, 0x66, 0xc6, 0xec, 0x56, 0xb4, 0x23, 0xf0, 0xe2, 0x59, 0xa4, 0x5a, 0xd1, - 0x04, 0x93, 0x68, 0x44, 0xe3, 0x78, 0xed, 0x57, 0x19, 0x56, 0x33, 0x78, 0xd0, 0x10, 0x56, 0xc7, - 0x5a, 0x69, 0xea, 0xd1, 0x96, 0xb6, 0xaf, 0x9f, 0xd3, 0x92, 0x85, 0x2d, 0x1f, 0xc7, 0x91, 0x9a, - 0xc5, 0x62, 0x48, 0xf8, 0xb2, 0x3b, 0x85, 0x5e, 0x04, 0x45, 0xd8, 0xf4, 0x97, 0x0c, 0x97, 0xa7, - 0xd8, 0xd0, 0xd7, 0xb0, 0x6c, 0x79, 0xbe, 0x4f, 0x0e, 0xcd, 0xd0, 0xf1, 0xdc, 0xb3, 0x64, 0x45, - 0x71, 0xa4, 0x4e, 0x9c, 0xe0, 0xa5, 0xd4, 0xba, 0x65, 0xa3, 0x6f, 0x46, 0x45, 0x87, 0xd7, 0x84, - 0xf5, 0x2c, 0xfb, 0xe7, 0xd4, 0x95, 0xf7, 0x7b, 0xec, 0xda, 0x1e, 0xac, 0x34, 0xbc, 0xd7, 0xee, - 0xa1, 0x67, 0xda, 0x49, 0xcf, 0xbb, 0xc0, 0x27, 0xa1, 0xf6, 0x63, 0x0e, 0x56, 0x33, 0xbe, 0x73, - 0xd0, 0xde, 0x58, 0x09, 0xfd, 0xa0, 0xef, 0xbb, 0x2c, 0xe7, 0x5a, 0xa0, 0xd0, 0x4c, 0xf1, 0x5c, - 0x11, 0x9c, 0xf3, 0x2e, 0x77, 0x87, 0x81, 0x39, 0x15, 0x17, 0xc4, 0x62, 0x44, 0xcf, 0xa1, 0x24, - 0x2e, 0x9a, 0x3a, 0x24, 0x1e, 0xf7, 0xa7, 0xd9, 0xe6, 0x51, 0x58, 0x83, 0x04, 0x96, 0xef, 0x0c, - 0x43, 0xcf, 0xd7, 0x57, 0xe2, 0x48, 0x4d, 0x0b, 0x63, 0xe0, 0x0b, 0xfa, 0xd4, 0xb4, 0x7f, 0x65, - 0x28, 0x3f, 0x1b, 0xd2, 0xb8, 0x8a, 0x5c, 0xb8, 0xc8, 0x97, 0xf6, 0x93, 0x89, 0x64, 0xa8, 0x67, - 0x49, 0xa7, 0xb5, 0xd5, 0x9e, 0xfa, 0xa6, 0x1b, 0xec, 0x13, 0x7f, 0x4e, 0x86, 0x68, 0xa0, 0xf8, - 0xc4, 0x0c, 0x3c, 0x57, 0x24, 0x08, 0xc3, 0xf0, 0x1d, 0x2c, 0x46, 0xed, 0x4b, 0x58, 0x1e, 0x67, - 0x42, 0x25, 0x28, 0x9c, 0xd5, 0x79, 0x05, 0x72, 0xac, 0xc6, 0x03, 0x28, 0xf7, 0x77, 0x5a, 0x8f, - 0x9a, 0x8d, 0x4a, 0x4e, 0xfb, 0x53, 0x86, 0x22, 0x8d, 0xc0, 0x6e, 0xff, 0xc8, 0x3d, 0x40, 0x1d, - 0x50, 0xfa, 0xc4, 0xb4, 0x89, 0x3f, 0xf7, 0xe2, 0x29, 0x94, 0xd8, 0x98, 0x04, 0xde, 0x91, 0x6f, - 0x11, 0x83, 0x09, 0x70, 0x7b, 0xb8, 0xb0, 0x21, 0x61, 0x31, 0x43, 0x06, 0x6f, 0xd7, 0x2c, 0x10, - 0x33, 0xbe, 0x39, 0x27, 0xe8, 0xd8, 0x92, 0x87, 0x94, 0x4a, 0x1a, 0x12, 0x66, 0xa3, 0x5e, 0x80, - 0xbc, 0x45, 0x8f, 0xb4, 0x77, 0x32, 0x5c, 0xc9, 0x34, 0xe1, 0x42, 0x77, 0xa6, 0x81, 0xc2, 0xe8, - 0xf9, 0x9d, 0xe5, 0xb9, 0x3b, 0x7c, 0x07, 0x8b, 0x11, 0x6d, 0xc1, 0xa2, 0xd5, 0x27, 0xd6, 0x41, - 0x70, 0x34, 0x10, 0x97, 0x50, 0x8e, 0x23, 0x75, 0xb4, 0x87, 0x47, 0x33, 0xf4, 0x05, 0x00, 0x93, - 0xe9, 0x06, 0xce, 0x5b, 0xc2, 0x3a, 0x73, 0x5e, 0xfc, 0xf3, 0x19, 0xed, 0xe2, 0x22, 0x9b, 0x3f, - 0x71, 0xde, 0x12, 0xed, 0x0f, 0x19, 0xd6, 0xb2, 0xc2, 0x70, 0x21, 0x8f, 0x6e, 0x50, 0x6b, 0xa9, - 0x36, 0xc7, 0x16, 0x3e, 0x09, 0x6b, 0xf9, 0x1e, 0x2e, 0xb0, 0x59, 0xcb, 0x46, 0xd7, 0xc4, 0x1d, - 0x51, 0x97, 0xca, 0x67, 0x91, 0xe7, 0x71, 0xbf, 0xb5, 0x95, 0x14, 0x4d, 0x9a, 0x4b, 0x8f, 0x9b, - 0xed, 0x46, 0xab, 0xfd, 0x20, 0x95, 0x4b, 0x45, 0xc8, 0x8b, 0x6f, 0x05, 0xfd, 0xce, 0xdf, 0xa7, - 0x1b, 0xf2, 0xbb, 0xd3, 0x0d, 0xf9, 0x9f, 0xd3, 0x0d, 0xf9, 0xe5, 0xcd, 0x9e, 0x13, 0xf6, 0x8f, - 0x5e, 0xd5, 0x2c, 0x6f, 0x50, 0x67, 0x36, 0xd7, 0x99, 0xcd, 0xf5, 0xc0, 0x3e, 0xa8, 0x1f, 0x6f, - 0xd7, 0xd9, 0x7f, 0xdb, 0x7b, 0xec, 0xf7, 0x95, 0xc2, 0x86, 0xdb, 0xff, 0x05, 0x00, 0x00, 0xff, - 0xff, 0x0b, 0x95, 0xff, 0x24, 0x8a, 0x0f, 0x00, 0x00, + // 1370 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, + 0x17, 0x26, 0x15, 0x8b, 0xb2, 0x8e, 0x64, 0x5b, 0x19, 0x3b, 0xff, 0xaf, 0x18, 0x81, 0x69, 0xb0, + 0x4d, 0xe3, 0x14, 0xa9, 0x84, 0x3a, 0x28, 0x82, 0x26, 0x2b, 0xd3, 0x52, 0x42, 0x21, 0xb1, 0x14, + 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0x22, 0x55, 0x92, 0x76, 0xe2, 0xa0, + 0xfb, 0x02, 0x45, 0x81, 0xa2, 0x28, 0xba, 0xe8, 0x53, 0xf4, 0x35, 0xba, 0xcc, 0x13, 0x10, 0x45, + 0x96, 0xdc, 0x75, 0xd3, 0x75, 0x31, 0x17, 0x4a, 0x94, 0x44, 0xc9, 0x09, 0xdc, 0x8d, 0xe6, 0xf6, + 0x9d, 0xef, 0x5c, 0xe6, 0xcc, 0x39, 0x14, 0xac, 0x58, 0xde, 0x60, 0x60, 0xba, 0x76, 0x6d, 0xe8, + 0x7b, 0xa1, 0x87, 0xd0, 0xe1, 0x57, 0x35, 0xb7, 0xe7, 0xb8, 0x6f, 0x6a, 0x66, 0x8f, 0xb8, 0x61, + 0x2d, 0xb0, 0x8f, 0x36, 0xa1, 0xe7, 0xf5, 0x3c, 0x7e, 0xbe, 0x59, 0xa6, 0x70, 0xcf, 0x15, 0xab, + 0x12, 0x07, 0xf1, 0x05, 0xf4, 0xbd, 0x20, 0x99, 0x97, 0x38, 0xc7, 0x48, 0xc6, 0x3d, 0x74, 0x7a, + 0x62, 0x85, 0xc8, 0x29, 0x71, 0xc3, 0xa0, 0xce, 0x06, 0xb1, 0x77, 0xd5, 0x1e, 0x76, 0x03, 0xef, + 0x30, 0x7c, 0x6d, 0xfa, 0xa4, 0x6b, 0x93, 0xd0, 0x74, 0x8e, 0x03, 0x7e, 0xa4, 0xfd, 0x0a, 0x50, + 0xd8, 0xe7, 0x26, 0xa2, 0xbb, 0xb0, 0x34, 0x20, 0xa1, 0x59, 0x95, 0xb7, 0xe5, 0x9d, 0xd2, 0xee, + 0xb5, 0xda, 0xac, 0xad, 0xb5, 0x03, 0x12, 0x9a, 0xb6, 0x19, 0x9a, 0xfa, 0x72, 0x1c, 0xa9, 0x0c, + 0x8d, 0xd9, 0x2f, 0x6a, 0xc2, 0x52, 0x78, 0x36, 0x24, 0xd5, 0xdc, 0xb6, 0xbc, 0xb3, 0xba, 0x7b, + 0x23, 0x4b, 0x56, 0xa8, 0x49, 0xc6, 0xa7, 0x67, 0x43, 0xc2, 0x69, 0xa8, 0x20, 0x66, 0xbf, 0xe8, + 0x25, 0x80, 0x35, 0xb0, 0xbb, 0x41, 0x68, 0x86, 0x27, 0x41, 0xf5, 0x12, 0x33, 0xe4, 0xe6, 0x02, + 0xb2, 0x27, 0x0c, 0x88, 0x49, 0x30, 0xf4, 0xdc, 0x80, 0xe8, 0xab, 0x71, 0xa4, 0xa6, 0x08, 0x0c, + 0x09, 0x17, 0xad, 0x81, 0x00, 0xa1, 0xe7, 0x50, 0x66, 0x2c, 0x5d, 0x1e, 0xaf, 0xea, 0x12, 0x63, + 0x57, 0xb3, 0xd8, 0xdb, 0x74, 0xbd, 0xcf, 0x60, 0x7a, 0x25, 0x8e, 0xd4, 0x09, 0x41, 0x43, 0xc2, + 0x3c, 0xfe, 0x1c, 0x80, 0xde, 0xc0, 0x95, 0xf4, 0x71, 0xd7, 0x17, 0xd6, 0x54, 0xf3, 0x4c, 0xc1, + 0x8d, 0x73, 0x14, 0x8c, 0x8c, 0xbf, 0x1a, 0x47, 0x6a, 0x36, 0x93, 0x21, 0xe1, 0x75, 0x77, 0x56, + 0x82, 0x6a, 0x66, 0x94, 0x14, 0xef, 0x12, 0x2b, 0xec, 0xfa, 0xe4, 0xbb, 0x13, 0x12, 0x84, 0x55, + 0x65, 0xbe, 0xe6, 0x3d, 0x3a, 0xdb, 0xe7, 0x78, 0xcc, 0xe1, 0x5c, 0x73, 0x26, 0x13, 0xd5, 0x6c, + 0xce, 0x4a, 0xa0, 0xef, 0xe1, 0x7f, 0xd3, 0x78, 0xe1, 0x74, 0x81, 0xa9, 0xde, 0x39, 0x5f, 0xb5, + 0xf0, 0x7a, 0x33, 0x8e, 0xd4, 0x39, 0x5c, 0x86, 0x84, 0x37, 0xcc, 0x0c, 0x19, 0x14, 0xc2, 0xc6, + 0x48, 0x82, 0xc7, 0x89, 0xbb, 0xbd, 0xcc, 0x74, 0x7f, 0xb6, 0x48, 0x37, 0x0b, 0x1f, 0xf7, 0xba, + 0x1a, 0x47, 0x6a, 0x26, 0x8f, 0x21, 0x61, 0x64, 0xce, 0xe0, 0x69, 0xfe, 0xa4, 0xd1, 0xd5, 0xe2, + 0xfc, 0xfc, 0x49, 0x69, 0xe3, 0xf9, 0x93, 0x16, 0xa4, 0xf9, 0x93, 0xa2, 0x47, 0x87, 0x50, 0xa1, + 0x4f, 0x6a, 0x78, 0x6c, 0xba, 0x24, 0xc9, 0xfc, 0x12, 0xe3, 0xfe, 0x24, 0x8b, 0xbb, 0x91, 0x60, + 0x79, 0x5a, 0xeb, 0x1b, 0x71, 0xa4, 0xce, 0x10, 0x18, 0x12, 0x5e, 0xb3, 0x27, 0x81, 0xe8, 0x5b, + 0x28, 0xb3, 0xa2, 0xd0, 0xf5, 0xc9, 0xd0, 0xf3, 0xc3, 0x6a, 0x79, 0x7e, 0xb4, 0x78, 0x0d, 0xa9, + 0x35, 0xe9, 0x80, 0x19, 0x9a, 0xbb, 0x91, 0x96, 0xa7, 0x6e, 0x90, 0x31, 0x00, 0xfd, 0x24, 0xc3, + 0x66, 0xca, 0x8c, 0xa9, 0x72, 0x53, 0x5d, 0x61, 0xda, 0x6e, 0x2d, 0xf6, 0x48, 0x08, 0x35, 0xb8, + 0x8c, 0xbe, 0x15, 0x47, 0xea, 0x02, 0x4e, 0x43, 0xc2, 0x55, 0x7b, 0x8e, 0xac, 0x76, 0x1b, 0x4a, + 0xa9, 0x42, 0x83, 0x00, 0x94, 0x76, 0x07, 0x1f, 0xec, 0x3d, 0xaa, 0x48, 0xa8, 0x0c, 0xcb, 0x8d, + 0xce, 0x8b, 0xf6, 0xa3, 0xce, 0x5e, 0xa3, 0x22, 0xd3, 0x93, 0x67, 0x8f, 0xd9, 0x3c, 0xa7, 0x2b, + 0xb0, 0x44, 0x09, 0xb5, 0xdf, 0x2e, 0xc1, 0x95, 0xcc, 0x0a, 0x83, 0xbe, 0x01, 0x45, 0x5c, 0x91, + 0xcc, 0x2a, 0xdd, 0x9d, 0x0f, 0x2e, 0x4e, 0x93, 0xbb, 0x3a, 0xc4, 0x91, 0x2a, 0xa8, 0xb0, 0x18, + 0x91, 0x03, 0x40, 0x7c, 0xdf, 0xf3, 0xbb, 0x96, 0x67, 0x27, 0xa5, 0xf4, 0xee, 0x47, 0x2b, 0x68, + 0x52, 0x8a, 0x7d, 0xcf, 0x16, 0xe5, 0x70, 0xcc, 0x88, 0x8b, 0x24, 0x39, 0x42, 0xd7, 0xa1, 0x30, + 0x20, 0x41, 0x60, 0xf6, 0x08, 0xab, 0xb2, 0x45, 0xbd, 0x14, 0x47, 0x6a, 0xb2, 0x85, 0x93, 0x09, + 0x52, 0x21, 0xcf, 0x64, 0x58, 0xb1, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, 0x83, 0x76, + 0x0f, 0x56, 0x26, 0x8c, 0x41, 0x6b, 0x50, 0xda, 0x3f, 0x68, 0x74, 0x9f, 0xb5, 0x1f, 0xb6, 0x3b, + 0x2f, 0xda, 0x15, 0x89, 0xc6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x02, 0x45, 0x3a, 0x6f, + 0x62, 0xdc, 0xc1, 0x95, 0x9c, 0x56, 0x87, 0xca, 0xb4, 0xcd, 0x14, 0xde, 0xc4, 0x98, 0xc2, 0x25, + 0xca, 0x45, 0xe7, 0x09, 0x97, 0xac, 0xfd, 0xbc, 0x04, 0x6b, 0x53, 0xf9, 0x8f, 0x3e, 0x87, 0x62, + 0x70, 0x16, 0x84, 0x64, 0xd0, 0x75, 0x6c, 0x76, 0x29, 0x45, 0x7d, 0x25, 0x8e, 0xd4, 0xf1, 0x26, + 0x5e, 0xe6, 0xd3, 0x96, 0x8d, 0x1e, 0x40, 0x21, 0xc9, 0xc7, 0xdc, 0xf6, 0xa5, 0x9d, 0xd2, 0xee, + 0xf6, 0xdc, 0xe2, 0x9c, 0xe4, 0x20, 0x8b, 0x8b, 0x10, 0xc2, 0xc9, 0x84, 0xb6, 0x4a, 0xda, 0x8e, + 0x45, 0x87, 0xca, 0x6c, 0x95, 0x86, 0x17, 0x84, 0x2d, 0xf7, 0xd0, 0xe3, 0x3d, 0x8e, 0xa2, 0x31, + 0xfb, 0x45, 0xf7, 0xa1, 0xd0, 0x27, 0xe6, 0x71, 0xd8, 0x0f, 0xaa, 0x79, 0x66, 0xc4, 0xfc, 0x16, + 0x64, 0x30, 0x1c, 0xb7, 0x41, 0xc8, 0xe0, 0x64, 0x82, 0x7e, 0x5c, 0xfc, 0xe0, 0x14, 0xc6, 0xfd, + 0x9f, 0x3e, 0xb8, 0xf9, 0xcf, 0x0d, 0x9d, 0x26, 0xad, 0xc8, 0xb4, 0x42, 0xe7, 0xd4, 0x09, 0xcf, + 0x92, 0x4a, 0x56, 0x60, 0x66, 0xcc, 0x6f, 0x45, 0x7b, 0x02, 0x2f, 0x9e, 0x45, 0xaa, 0x15, 0x4d, + 0x31, 0x89, 0x46, 0x34, 0x89, 0xd7, 0x7e, 0x91, 0x61, 0x3d, 0x83, 0x07, 0x0d, 0x61, 0x7d, 0xa2, + 0x95, 0xa6, 0x1e, 0x6d, 0x69, 0xf7, 0xfa, 0x39, 0x2d, 0x59, 0xd8, 0xf2, 0xff, 0x38, 0x52, 0xb3, + 0x58, 0x0c, 0x09, 0x5f, 0x76, 0x67, 0xd0, 0xcb, 0xa0, 0x08, 0x9b, 0xfe, 0x96, 0xe1, 0xf2, 0x0c, + 0x1b, 0xfa, 0x1a, 0x56, 0x2d, 0xcf, 0xf7, 0xc9, 0xb1, 0x19, 0x3a, 0x9e, 0x3b, 0x4e, 0x56, 0x14, + 0x47, 0xea, 0xd4, 0x09, 0x5e, 0x49, 0xad, 0x5b, 0x36, 0x7a, 0x3c, 0x2a, 0x3a, 0xbc, 0x26, 0xdc, + 0xfa, 0x20, 0xfb, 0x6b, 0x0b, 0x2a, 0xcd, 0x87, 0x3d, 0x7f, 0x6d, 0x27, 0xf1, 0x09, 0x95, 0xa0, + 0xf0, 0xb8, 0xd9, 0x6e, 0xb4, 0xda, 0x0f, 0x2a, 0x12, 0x52, 0x20, 0xc7, 0x9e, 0x73, 0x11, 0xf2, + 0xc9, 0x53, 0x3e, 0x80, 0xb5, 0x86, 0xf7, 0xda, 0x3d, 0xf6, 0x4c, 0x3b, 0xe9, 0x97, 0x17, 0xf8, + 0x9c, 0xd4, 0x7e, 0xc8, 0xc1, 0x7a, 0xc6, 0x37, 0x12, 0x3a, 0x98, 0x28, 0xbf, 0x1f, 0xf5, 0x6d, + 0x98, 0x15, 0x86, 0x16, 0x28, 0x34, 0xcb, 0x3c, 0x57, 0x04, 0xf6, 0xbc, 0xc4, 0xd8, 0x63, 0x60, + 0x4e, 0xc5, 0x05, 0xb1, 0x18, 0xd1, 0x73, 0x28, 0x89, 0x24, 0xa1, 0x0e, 0x89, 0xc2, 0xf0, 0x69, + 0xb6, 0x79, 0x14, 0xd6, 0x20, 0x81, 0xe5, 0x3b, 0xc3, 0xd0, 0xf3, 0xf5, 0xb5, 0x38, 0x52, 0xd3, + 0xc2, 0x18, 0xf8, 0x82, 0x3e, 0x53, 0xed, 0x1f, 0x19, 0xca, 0xcf, 0x86, 0x34, 0xae, 0xe2, 0x26, + 0x2e, 0xf2, 0x95, 0xfe, 0x64, 0x2a, 0x91, 0xea, 0x59, 0xd2, 0x69, 0x6d, 0xb5, 0xa7, 0xbe, 0xe9, + 0x06, 0x87, 0xc4, 0x5f, 0x90, 0x4b, 0x1a, 0x28, 0x3e, 0x31, 0x03, 0xcf, 0x15, 0xa9, 0xc4, 0x30, + 0x7c, 0x07, 0x8b, 0x51, 0xfb, 0x12, 0x56, 0x27, 0x99, 0x68, 0x42, 0x8d, 0x7b, 0x44, 0x92, 0x50, + 0x00, 0xca, 0xfd, 0xbd, 0xd6, 0xa3, 0x66, 0xa3, 0x92, 0xd3, 0xfe, 0x90, 0xa1, 0x48, 0x23, 0xb0, + 0xdf, 0x3f, 0x71, 0x8f, 0x50, 0x07, 0x94, 0x3e, 0x31, 0x6d, 0xe2, 0x2f, 0xbc, 0x78, 0x0a, 0x25, + 0x36, 0x26, 0x81, 0x77, 0xe2, 0x5b, 0xc4, 0x60, 0x02, 0xdc, 0x1e, 0x2e, 0x6c, 0x48, 0x58, 0xcc, + 0x90, 0xc1, 0x5b, 0x3d, 0x0b, 0xc4, 0x9c, 0xef, 0xd5, 0x29, 0x3a, 0xb6, 0xe4, 0x21, 0xa5, 0x92, + 0x86, 0x84, 0xd9, 0xa8, 0x17, 0x20, 0x6f, 0xd1, 0x23, 0xed, 0x9d, 0x0c, 0x57, 0x32, 0x4d, 0xb8, + 0xd0, 0x9d, 0x69, 0xa0, 0x30, 0x7a, 0x7e, 0x67, 0x79, 0xee, 0x0e, 0xdf, 0xc1, 0x62, 0x44, 0x3b, + 0xb0, 0x6c, 0xf5, 0x89, 0x75, 0x14, 0x9c, 0x0c, 0xc4, 0x25, 0x94, 0xe3, 0x48, 0x1d, 0xed, 0xe1, + 0xd1, 0x0c, 0x7d, 0x01, 0xc0, 0x64, 0xba, 0x81, 0xf3, 0x96, 0xb0, 0xae, 0x9e, 0x17, 0xff, 0x9a, + 0x46, 0xbb, 0xb8, 0xc8, 0xe6, 0x4f, 0x9c, 0xb7, 0x44, 0xfb, 0x5d, 0x86, 0x8d, 0xac, 0x30, 0x5c, + 0xc8, 0xa3, 0x1b, 0xd4, 0x5a, 0xaa, 0xcd, 0xb1, 0x85, 0x4f, 0xc2, 0x5a, 0xbe, 0x87, 0x0b, 0x6c, + 0xd6, 0xb2, 0xd1, 0x35, 0x71, 0x47, 0xd4, 0xa5, 0xf2, 0x38, 0xf2, 0x22, 0xee, 0x77, 0xfe, 0x7c, + 0xbf, 0x25, 0xbf, 0x7b, 0xbf, 0x25, 0xff, 0xf5, 0x7e, 0x4b, 0x7e, 0x79, 0xb3, 0xe7, 0x84, 0xfd, + 0x93, 0x57, 0x35, 0xcb, 0x1b, 0xd4, 0x99, 0x25, 0x75, 0x66, 0x49, 0x3d, 0xb0, 0x8f, 0xea, 0xa7, + 0xbb, 0x75, 0xf6, 0x6f, 0xf7, 0x1e, 0xfb, 0x7d, 0xa5, 0xb0, 0xe1, 0xf6, 0xbf, 0x01, 0x00, 0x00, + 0xff, 0xff, 0xc1, 0xaf, 0xc7, 0xf2, 0x9c, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -3480,7 +3480,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Status |= Status(b&0x7F) << shift + m.Status |= NginxConfigStatus_Status(b&0x7F) << shift if b < 0x80 { break } diff --git a/sdk/proto/command.proto b/sdk/proto/command.proto index 95952d234..2e1d37c0e 100644 --- a/sdk/proto/command.proto +++ b/sdk/proto/command.proto @@ -99,13 +99,14 @@ message NginxConfigStatus { string correlation_id = 1 [(gogoproto.jsontag) = "correlation_id" ]; Status status = 2 [(gogoproto.jsontag) = "status" ]; string message = 3 [(gogoproto.jsontag) = "message" ]; + + enum Status { + PENDING = 0; + OK = 1; + ERROR = 2; + } } -enum Status { - PENDING = 0; - OK = 1; - ERROR = 2; -} message DownloadRequest { Metadata meta = 1 [(gogoproto.jsontag) = "meta" ]; diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index b13c38292..0ff5eec2e 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -24,34 +24,6 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -type Status int32 - -const ( - Status_PENDING Status = 0 - Status_OK Status = 1 - Status_ERROR Status = 2 -) - -var Status_name = map[int32]string{ - 0: "PENDING", - 1: "OK", - 2: "ERROR", -} - -var Status_value = map[string]int32{ - "PENDING": 0, - "OK": 1, - "ERROR": 2, -} - -func (x Status) String() string { - return proto.EnumName(Status_name, int32(x)) -} - -func (Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{0} -} - type Command_CommandType int32 const ( @@ -133,6 +105,34 @@ func (CommandStatusResponse_CommandErrorCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor_213c0bb044472049, []int{1, 1} } +type NginxConfigStatus_Status int32 + +const ( + NginxConfigStatus_PENDING NginxConfigStatus_Status = 0 + NginxConfigStatus_OK NginxConfigStatus_Status = 1 + NginxConfigStatus_ERROR NginxConfigStatus_Status = 2 +) + +var NginxConfigStatus_Status_name = map[int32]string{ + 0: "PENDING", + 1: "OK", + 2: "ERROR", +} + +var NginxConfigStatus_Status_value = map[string]int32{ + "PENDING": 0, + "OK": 1, + "ERROR": 2, +} + +func (x NginxConfigStatus_Status) String() string { + return proto.EnumName(NginxConfigStatus_Status_name, int32(x)) +} + +func (NginxConfigStatus_Status) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{4, 0} +} + type UploadStatus_TransferStatus int32 const ( @@ -607,12 +607,12 @@ func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { } type NginxConfigStatus struct { - CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` - Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` - Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` + Status NginxConfigStatus_Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.NginxConfigStatus_Status" json:"status"` + Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *NginxConfigStatus) Reset() { *m = NginxConfigStatus{} } @@ -655,11 +655,11 @@ func (m *NginxConfigStatus) GetCorrelationId() string { return "" } -func (m *NginxConfigStatus) GetStatus() Status { +func (m *NginxConfigStatus) GetStatus() NginxConfigStatus_Status { if m != nil { return m.Status } - return Status_PENDING + return NginxConfigStatus_PENDING } func (m *NginxConfigStatus) GetMessage() string { @@ -1066,10 +1066,10 @@ func (m *ChunkedResourceChunk) GetData() []byte { } func init() { - proto.RegisterEnum("f5.nginx.agent.sdk.Status", Status_name, Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.Command_CommandType", Command_CommandType_name, Command_CommandType_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandStatus", CommandStatusResponse_CommandStatus_name, CommandStatusResponse_CommandStatus_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandErrorCode", CommandStatusResponse_CommandErrorCode_name, CommandStatusResponse_CommandErrorCode_value) + proto.RegisterEnum("f5.nginx.agent.sdk.NginxConfigStatus_Status", NginxConfigStatus_Status_name, NginxConfigStatus_Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.UploadStatus_TransferStatus", UploadStatus_TransferStatus_name, UploadStatus_TransferStatus_value) proto.RegisterType((*Command)(nil), "f5.nginx.agent.sdk.Command") proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") @@ -1087,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1369 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, - 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, - 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xac, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, - 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, - 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0x3d, 0xed, 0x3b, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, - 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0x7f, 0xbf, - 0xf3, 0x3b, 0x7f, 0xee, 0xb9, 0xe7, 0xc8, 0xb0, 0x64, 0x79, 0x83, 0x81, 0xe9, 0xda, 0xb5, 0xa1, - 0xef, 0x85, 0x1e, 0x42, 0xfb, 0x5f, 0xd5, 0xdc, 0x9e, 0xe3, 0xbe, 0xa9, 0x99, 0x3d, 0xe2, 0x86, - 0xb5, 0xc0, 0x3e, 0x58, 0x87, 0x9e, 0xd7, 0xf3, 0xf8, 0xf9, 0x7a, 0x99, 0xc2, 0x3d, 0x57, 0xac, - 0x4a, 0x1c, 0xc4, 0x17, 0xd0, 0xf7, 0x82, 0x64, 0x5e, 0xe2, 0x1c, 0x23, 0x19, 0x77, 0xdf, 0xe9, - 0x89, 0x15, 0x22, 0xc7, 0xc4, 0x0d, 0x83, 0x3a, 0x1b, 0xc4, 0xde, 0x55, 0x7b, 0xd8, 0x0d, 0xbc, - 0xfd, 0xf0, 0xb5, 0xe9, 0x93, 0xae, 0x4d, 0x42, 0xd3, 0x39, 0x0c, 0xf8, 0x91, 0xf6, 0x1b, 0x40, - 0x61, 0x97, 0x9b, 0x88, 0xee, 0xc2, 0xc2, 0x80, 0x84, 0x66, 0x55, 0xde, 0x94, 0xb7, 0x4a, 0xdb, - 0xd7, 0x6a, 0xd3, 0xb6, 0xd6, 0xf6, 0x48, 0x68, 0xda, 0x66, 0x68, 0xea, 0x8b, 0x71, 0xa4, 0x32, - 0x34, 0x66, 0xbf, 0xa8, 0x09, 0x0b, 0xe1, 0xc9, 0x90, 0x54, 0x73, 0x9b, 0xf2, 0xd6, 0xf2, 0xf6, - 0x8d, 0x2c, 0x59, 0xa1, 0x26, 0x19, 0x9f, 0x9e, 0x0c, 0x09, 0xa7, 0xa1, 0x82, 0x98, 0xfd, 0xa2, - 0x97, 0x00, 0xd6, 0xc0, 0xee, 0x06, 0xa1, 0x19, 0x1e, 0x05, 0xd5, 0x4b, 0xcc, 0x90, 0x9b, 0x73, - 0xc8, 0x9e, 0x30, 0x20, 0x26, 0xc1, 0xd0, 0x73, 0x03, 0xa2, 0x2f, 0xc7, 0x91, 0x9a, 0x22, 0x30, - 0x24, 0x5c, 0xb4, 0x06, 0x02, 0x84, 0x9e, 0x43, 0x99, 0xb1, 0x74, 0x79, 0xbc, 0xaa, 0x0b, 0x8c, - 0x5d, 0xcd, 0x62, 0x6f, 0xd3, 0xf5, 0x2e, 0x83, 0xe9, 0x95, 0x38, 0x52, 0xc7, 0x04, 0x0d, 0x09, - 0xf3, 0xf8, 0x73, 0x00, 0x7a, 0x03, 0x57, 0xd2, 0xc7, 0x5d, 0x5f, 0x58, 0x53, 0xcd, 0x33, 0x05, - 0x37, 0xce, 0x51, 0x30, 0x32, 0xfe, 0x6a, 0x1c, 0xa9, 0xd9, 0x4c, 0x86, 0x84, 0x57, 0xdd, 0x69, - 0x09, 0xaa, 0x99, 0x51, 0x52, 0xbc, 0x4b, 0xac, 0xb0, 0xeb, 0x93, 0xef, 0x8f, 0x48, 0x10, 0x56, - 0x95, 0xd9, 0x9a, 0x77, 0xe8, 0x6c, 0x97, 0xe3, 0x31, 0x87, 0x73, 0xcd, 0x99, 0x4c, 0x54, 0xb3, - 0x39, 0x2d, 0x81, 0x7e, 0x80, 0x8f, 0x26, 0xf1, 0xc2, 0xe9, 0x02, 0x53, 0xbd, 0x75, 0xbe, 0x6a, - 0xe1, 0xf5, 0x7a, 0x1c, 0xa9, 0x33, 0xb8, 0x0c, 0x09, 0xaf, 0x99, 0x19, 0x32, 0x28, 0x84, 0xb5, - 0x91, 0x04, 0x8f, 0x13, 0x77, 0x7b, 0x91, 0xe9, 0xfe, 0x6c, 0x9e, 0x6e, 0x16, 0x3e, 0xee, 0x75, - 0x35, 0x8e, 0xd4, 0x4c, 0x1e, 0x43, 0xc2, 0xc8, 0x9c, 0xc2, 0xd3, 0xfc, 0x49, 0xa3, 0xab, 0xc5, - 0xd9, 0xf9, 0x93, 0xd2, 0xc6, 0xf3, 0x27, 0x2d, 0x48, 0xf3, 0x27, 0x45, 0x8f, 0xf6, 0xa1, 0x42, - 0x9f, 0xd4, 0xf0, 0xd0, 0x74, 0x49, 0x92, 0xf9, 0x25, 0xc6, 0xfd, 0x49, 0x16, 0x77, 0x23, 0xc1, - 0xf2, 0xb4, 0xd6, 0xd7, 0xe2, 0x48, 0x9d, 0x22, 0x30, 0x24, 0xbc, 0x62, 0x8f, 0x03, 0xd1, 0x77, - 0x50, 0x66, 0x45, 0xa1, 0xeb, 0x93, 0xa1, 0xe7, 0x87, 0xd5, 0xf2, 0xec, 0x68, 0xf1, 0x1a, 0x52, - 0x6b, 0xd2, 0x01, 0x33, 0x34, 0x77, 0x23, 0x2d, 0x4f, 0xdd, 0x20, 0x67, 0x00, 0xf4, 0xb3, 0x0c, - 0xeb, 0x29, 0x33, 0x26, 0xca, 0x4d, 0x75, 0x89, 0x69, 0xfb, 0x7c, 0xbe, 0x47, 0x42, 0xa8, 0xc1, - 0x65, 0xf4, 0x8d, 0x38, 0x52, 0xe7, 0x70, 0x1a, 0x12, 0xae, 0xda, 0x33, 0x64, 0xb5, 0xdb, 0x50, - 0x4a, 0x15, 0x1a, 0x04, 0xa0, 0xb4, 0x3b, 0x78, 0x6f, 0xe7, 0x51, 0x45, 0x42, 0x65, 0x58, 0x6c, - 0x74, 0x5e, 0xb4, 0x1f, 0x75, 0x76, 0x1a, 0x15, 0x99, 0x9e, 0x3c, 0x7b, 0xcc, 0xe6, 0x39, 0x5d, - 0x81, 0x05, 0x4a, 0xa8, 0xfd, 0x7e, 0x09, 0xae, 0x64, 0x56, 0x18, 0xf4, 0x2d, 0x28, 0xe2, 0x8a, - 0x64, 0x56, 0xe9, 0xee, 0xbc, 0x77, 0x71, 0x1a, 0xdf, 0xd5, 0x21, 0x8e, 0x54, 0x41, 0x85, 0xc5, - 0x88, 0x1c, 0x00, 0xe2, 0xfb, 0x9e, 0xdf, 0xb5, 0x3c, 0x3b, 0x29, 0xa5, 0x77, 0x3f, 0x58, 0x41, - 0x93, 0x52, 0xec, 0x7a, 0xb6, 0x28, 0x87, 0x67, 0x8c, 0xb8, 0x48, 0x92, 0x23, 0x74, 0x1d, 0x0a, - 0x03, 0x12, 0x04, 0x66, 0x8f, 0xb0, 0x2a, 0x5b, 0xd4, 0x4b, 0x71, 0xa4, 0x26, 0x5b, 0x38, 0x99, - 0x20, 0x15, 0xf2, 0x4c, 0x86, 0x15, 0xcb, 0xa2, 0x5e, 0x8c, 0x23, 0x95, 0x6f, 0x60, 0x3e, 0x68, - 0xf7, 0x60, 0x69, 0xcc, 0x18, 0xb4, 0x02, 0xa5, 0xdd, 0xbd, 0x46, 0xf7, 0x59, 0xfb, 0x61, 0xbb, - 0xf3, 0xa2, 0x5d, 0x91, 0x68, 0x7c, 0xe9, 0x46, 0xe7, 0x61, 0x45, 0x46, 0x4b, 0x50, 0xa4, 0xf3, - 0x26, 0xc6, 0x1d, 0x5c, 0xc9, 0x69, 0x75, 0xa8, 0x4c, 0xda, 0x4c, 0xe1, 0x4d, 0x8c, 0x29, 0x5c, - 0xa2, 0x5c, 0x74, 0x9e, 0x70, 0xc9, 0xda, 0x2f, 0x0b, 0xb0, 0x32, 0x91, 0xff, 0xe8, 0x16, 0x14, - 0x83, 0x93, 0x20, 0x24, 0x83, 0xae, 0x63, 0xb3, 0x4b, 0x29, 0xea, 0x4b, 0x71, 0xa4, 0x9e, 0x6d, - 0xe2, 0x45, 0x3e, 0x6d, 0xd9, 0xe8, 0x01, 0x14, 0x92, 0x7c, 0xcc, 0x6d, 0x5e, 0xda, 0x2a, 0x6d, - 0x6f, 0xce, 0x2c, 0xce, 0x49, 0x0e, 0xb2, 0xb8, 0x08, 0x21, 0x9c, 0x4c, 0x68, 0xab, 0xa4, 0xed, - 0x58, 0x74, 0xa8, 0xcc, 0x56, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0xde, 0xe3, 0x28, 0x1a, - 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x46, 0xcc, 0x6e, - 0x41, 0x06, 0xc3, 0x71, 0x1b, 0x84, 0x0c, 0x4e, 0x26, 0xe8, 0xa7, 0xf9, 0x0f, 0x4e, 0x61, 0xdc, - 0xff, 0xeb, 0x83, 0x9b, 0xfd, 0xdc, 0xd0, 0x71, 0xd2, 0x8a, 0x4c, 0x2b, 0x74, 0x8e, 0x9d, 0xf0, - 0x24, 0xa9, 0x64, 0x05, 0x66, 0xc6, 0xec, 0x56, 0xb4, 0x23, 0xf0, 0xe2, 0x59, 0xa4, 0x5a, 0xd1, - 0x04, 0x93, 0x68, 0x44, 0xe3, 0x78, 0xed, 0x57, 0x19, 0x56, 0x33, 0x78, 0xd0, 0x10, 0x56, 0xc7, - 0x5a, 0x69, 0xea, 0xd1, 0x96, 0xb6, 0xaf, 0x9f, 0xd3, 0x92, 0x85, 0x2d, 0x1f, 0xc7, 0x91, 0x9a, - 0xc5, 0x62, 0x48, 0xf8, 0xb2, 0x3b, 0x85, 0x5e, 0x04, 0x45, 0xd8, 0xf4, 0x97, 0x0c, 0x97, 0xa7, - 0xd8, 0xd0, 0xd7, 0xb0, 0x6c, 0x79, 0xbe, 0x4f, 0x0e, 0xcd, 0xd0, 0xf1, 0xdc, 0xb3, 0x64, 0x45, - 0x71, 0xa4, 0x4e, 0x9c, 0xe0, 0xa5, 0xd4, 0xba, 0x65, 0xa3, 0x6f, 0x46, 0x45, 0x87, 0xd7, 0x84, - 0xf5, 0x2c, 0xfb, 0xe7, 0xd4, 0x95, 0xf7, 0x7b, 0xec, 0xda, 0x1e, 0xac, 0x34, 0xbc, 0xd7, 0xee, - 0xa1, 0x67, 0xda, 0x49, 0xcf, 0xbb, 0xc0, 0x27, 0xa1, 0xf6, 0x63, 0x0e, 0x56, 0x33, 0xbe, 0x73, - 0xd0, 0xde, 0x58, 0x09, 0xfd, 0xa0, 0xef, 0xbb, 0x2c, 0xe7, 0x5a, 0xa0, 0xd0, 0x4c, 0xf1, 0x5c, - 0x11, 0x9c, 0xf3, 0x2e, 0x77, 0x87, 0x81, 0x39, 0x15, 0x17, 0xc4, 0x62, 0x44, 0xcf, 0xa1, 0x24, - 0x2e, 0x9a, 0x3a, 0x24, 0x1e, 0xf7, 0xa7, 0xd9, 0xe6, 0x51, 0x58, 0x83, 0x04, 0x96, 0xef, 0x0c, - 0x43, 0xcf, 0xd7, 0x57, 0xe2, 0x48, 0x4d, 0x0b, 0x63, 0xe0, 0x0b, 0xfa, 0xd4, 0xb4, 0x7f, 0x65, - 0x28, 0x3f, 0x1b, 0xd2, 0xb8, 0x8a, 0x5c, 0xb8, 0xc8, 0x97, 0xf6, 0x93, 0x89, 0x64, 0xa8, 0x67, - 0x49, 0xa7, 0xb5, 0xd5, 0x9e, 0xfa, 0xa6, 0x1b, 0xec, 0x13, 0x7f, 0x4e, 0x86, 0x68, 0xa0, 0xf8, - 0xc4, 0x0c, 0x3c, 0x57, 0x24, 0x08, 0xc3, 0xf0, 0x1d, 0x2c, 0x46, 0xed, 0x4b, 0x58, 0x1e, 0x67, - 0x42, 0x25, 0x28, 0x9c, 0xd5, 0x79, 0x05, 0x72, 0xac, 0xc6, 0x03, 0x28, 0xf7, 0x77, 0x5a, 0x8f, - 0x9a, 0x8d, 0x4a, 0x4e, 0xfb, 0x53, 0x86, 0x22, 0x8d, 0xc0, 0x6e, 0xff, 0xc8, 0x3d, 0x40, 0x1d, - 0x50, 0xfa, 0xc4, 0xb4, 0x89, 0x3f, 0xf7, 0xe2, 0x29, 0x94, 0xd8, 0x98, 0x04, 0xde, 0x91, 0x6f, - 0x11, 0x83, 0x09, 0x70, 0x7b, 0xb8, 0xb0, 0x21, 0x61, 0x31, 0x43, 0x06, 0x6f, 0xd7, 0x2c, 0x10, - 0x33, 0xbe, 0x39, 0x27, 0xe8, 0xd8, 0x92, 0x87, 0x94, 0x4a, 0x1a, 0x12, 0x66, 0xa3, 0x5e, 0x80, - 0xbc, 0x45, 0x8f, 0xb4, 0x77, 0x32, 0x5c, 0xc9, 0x34, 0xe1, 0x42, 0x77, 0xa6, 0x81, 0xc2, 0xe8, - 0xf9, 0x9d, 0xe5, 0xb9, 0x3b, 0x7c, 0x07, 0x8b, 0x11, 0x6d, 0xc1, 0xa2, 0xd5, 0x27, 0xd6, 0x41, - 0x70, 0x34, 0x10, 0x97, 0x50, 0x8e, 0x23, 0x75, 0xb4, 0x87, 0x47, 0x33, 0xf4, 0x05, 0x00, 0x93, - 0xe9, 0x06, 0xce, 0x5b, 0xc2, 0x3a, 0x73, 0x5e, 0xfc, 0xf3, 0x19, 0xed, 0xe2, 0x22, 0x9b, 0x3f, - 0x71, 0xde, 0x12, 0xed, 0x0f, 0x19, 0xd6, 0xb2, 0xc2, 0x70, 0x21, 0x8f, 0x6e, 0x50, 0x6b, 0xa9, - 0x36, 0xc7, 0x16, 0x3e, 0x09, 0x6b, 0xf9, 0x1e, 0x2e, 0xb0, 0x59, 0xcb, 0x46, 0xd7, 0xc4, 0x1d, - 0x51, 0x97, 0xca, 0x67, 0x91, 0xe7, 0x71, 0xbf, 0xb5, 0x95, 0x14, 0x4d, 0x9a, 0x4b, 0x8f, 0x9b, - 0xed, 0x46, 0xab, 0xfd, 0x20, 0x95, 0x4b, 0x45, 0xc8, 0x8b, 0x6f, 0x05, 0xfd, 0xce, 0xdf, 0xa7, - 0x1b, 0xf2, 0xbb, 0xd3, 0x0d, 0xf9, 0x9f, 0xd3, 0x0d, 0xf9, 0xe5, 0xcd, 0x9e, 0x13, 0xf6, 0x8f, - 0x5e, 0xd5, 0x2c, 0x6f, 0x50, 0x67, 0x36, 0xd7, 0x99, 0xcd, 0xf5, 0xc0, 0x3e, 0xa8, 0x1f, 0x6f, - 0xd7, 0xd9, 0x7f, 0xdb, 0x7b, 0xec, 0xf7, 0x95, 0xc2, 0x86, 0xdb, 0xff, 0x05, 0x00, 0x00, 0xff, - 0xff, 0x0b, 0x95, 0xff, 0x24, 0x8a, 0x0f, 0x00, 0x00, + // 1370 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, + 0x17, 0x26, 0x15, 0x8b, 0xb2, 0x8e, 0x64, 0x5b, 0x19, 0x3b, 0xff, 0xaf, 0x18, 0x81, 0x69, 0xb0, + 0x4d, 0xe3, 0x14, 0xa9, 0x84, 0x3a, 0x28, 0x82, 0x26, 0x2b, 0xd3, 0x52, 0x42, 0x21, 0xb1, 0x14, + 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0x22, 0x55, 0x92, 0x76, 0xe2, 0xa0, + 0xfb, 0x02, 0x45, 0x81, 0xa2, 0x28, 0xba, 0xe8, 0x53, 0xf4, 0x35, 0xba, 0xcc, 0x13, 0x10, 0x45, + 0x96, 0xdc, 0x75, 0xd3, 0x75, 0x31, 0x17, 0x4a, 0x94, 0x44, 0xc9, 0x09, 0xdc, 0x8d, 0xe6, 0xf6, + 0x9d, 0xef, 0x5c, 0xe6, 0xcc, 0x39, 0x14, 0xac, 0x58, 0xde, 0x60, 0x60, 0xba, 0x76, 0x6d, 0xe8, + 0x7b, 0xa1, 0x87, 0xd0, 0xe1, 0x57, 0x35, 0xb7, 0xe7, 0xb8, 0x6f, 0x6a, 0x66, 0x8f, 0xb8, 0x61, + 0x2d, 0xb0, 0x8f, 0x36, 0xa1, 0xe7, 0xf5, 0x3c, 0x7e, 0xbe, 0x59, 0xa6, 0x70, 0xcf, 0x15, 0xab, + 0x12, 0x07, 0xf1, 0x05, 0xf4, 0xbd, 0x20, 0x99, 0x97, 0x38, 0xc7, 0x48, 0xc6, 0x3d, 0x74, 0x7a, + 0x62, 0x85, 0xc8, 0x29, 0x71, 0xc3, 0xa0, 0xce, 0x06, 0xb1, 0x77, 0xd5, 0x1e, 0x76, 0x03, 0xef, + 0x30, 0x7c, 0x6d, 0xfa, 0xa4, 0x6b, 0x93, 0xd0, 0x74, 0x8e, 0x03, 0x7e, 0xa4, 0xfd, 0x0a, 0x50, + 0xd8, 0xe7, 0x26, 0xa2, 0xbb, 0xb0, 0x34, 0x20, 0xa1, 0x59, 0x95, 0xb7, 0xe5, 0x9d, 0xd2, 0xee, + 0xb5, 0xda, 0xac, 0xad, 0xb5, 0x03, 0x12, 0x9a, 0xb6, 0x19, 0x9a, 0xfa, 0x72, 0x1c, 0xa9, 0x0c, + 0x8d, 0xd9, 0x2f, 0x6a, 0xc2, 0x52, 0x78, 0x36, 0x24, 0xd5, 0xdc, 0xb6, 0xbc, 0xb3, 0xba, 0x7b, + 0x23, 0x4b, 0x56, 0xa8, 0x49, 0xc6, 0xa7, 0x67, 0x43, 0xc2, 0x69, 0xa8, 0x20, 0x66, 0xbf, 0xe8, + 0x25, 0x80, 0x35, 0xb0, 0xbb, 0x41, 0x68, 0x86, 0x27, 0x41, 0xf5, 0x12, 0x33, 0xe4, 0xe6, 0x02, + 0xb2, 0x27, 0x0c, 0x88, 0x49, 0x30, 0xf4, 0xdc, 0x80, 0xe8, 0xab, 0x71, 0xa4, 0xa6, 0x08, 0x0c, + 0x09, 0x17, 0xad, 0x81, 0x00, 0xa1, 0xe7, 0x50, 0x66, 0x2c, 0x5d, 0x1e, 0xaf, 0xea, 0x12, 0x63, + 0x57, 0xb3, 0xd8, 0xdb, 0x74, 0xbd, 0xcf, 0x60, 0x7a, 0x25, 0x8e, 0xd4, 0x09, 0x41, 0x43, 0xc2, + 0x3c, 0xfe, 0x1c, 0x80, 0xde, 0xc0, 0x95, 0xf4, 0x71, 0xd7, 0x17, 0xd6, 0x54, 0xf3, 0x4c, 0xc1, + 0x8d, 0x73, 0x14, 0x8c, 0x8c, 0xbf, 0x1a, 0x47, 0x6a, 0x36, 0x93, 0x21, 0xe1, 0x75, 0x77, 0x56, + 0x82, 0x6a, 0x66, 0x94, 0x14, 0xef, 0x12, 0x2b, 0xec, 0xfa, 0xe4, 0xbb, 0x13, 0x12, 0x84, 0x55, + 0x65, 0xbe, 0xe6, 0x3d, 0x3a, 0xdb, 0xe7, 0x78, 0xcc, 0xe1, 0x5c, 0x73, 0x26, 0x13, 0xd5, 0x6c, + 0xce, 0x4a, 0xa0, 0xef, 0xe1, 0x7f, 0xd3, 0x78, 0xe1, 0x74, 0x81, 0xa9, 0xde, 0x39, 0x5f, 0xb5, + 0xf0, 0x7a, 0x33, 0x8e, 0xd4, 0x39, 0x5c, 0x86, 0x84, 0x37, 0xcc, 0x0c, 0x19, 0x14, 0xc2, 0xc6, + 0x48, 0x82, 0xc7, 0x89, 0xbb, 0xbd, 0xcc, 0x74, 0x7f, 0xb6, 0x48, 0x37, 0x0b, 0x1f, 0xf7, 0xba, + 0x1a, 0x47, 0x6a, 0x26, 0x8f, 0x21, 0x61, 0x64, 0xce, 0xe0, 0x69, 0xfe, 0xa4, 0xd1, 0xd5, 0xe2, + 0xfc, 0xfc, 0x49, 0x69, 0xe3, 0xf9, 0x93, 0x16, 0xa4, 0xf9, 0x93, 0xa2, 0x47, 0x87, 0x50, 0xa1, + 0x4f, 0x6a, 0x78, 0x6c, 0xba, 0x24, 0xc9, 0xfc, 0x12, 0xe3, 0xfe, 0x24, 0x8b, 0xbb, 0x91, 0x60, + 0x79, 0x5a, 0xeb, 0x1b, 0x71, 0xa4, 0xce, 0x10, 0x18, 0x12, 0x5e, 0xb3, 0x27, 0x81, 0xe8, 0x5b, + 0x28, 0xb3, 0xa2, 0xd0, 0xf5, 0xc9, 0xd0, 0xf3, 0xc3, 0x6a, 0x79, 0x7e, 0xb4, 0x78, 0x0d, 0xa9, + 0x35, 0xe9, 0x80, 0x19, 0x9a, 0xbb, 0x91, 0x96, 0xa7, 0x6e, 0x90, 0x31, 0x00, 0xfd, 0x24, 0xc3, + 0x66, 0xca, 0x8c, 0xa9, 0x72, 0x53, 0x5d, 0x61, 0xda, 0x6e, 0x2d, 0xf6, 0x48, 0x08, 0x35, 0xb8, + 0x8c, 0xbe, 0x15, 0x47, 0xea, 0x02, 0x4e, 0x43, 0xc2, 0x55, 0x7b, 0x8e, 0xac, 0x76, 0x1b, 0x4a, + 0xa9, 0x42, 0x83, 0x00, 0x94, 0x76, 0x07, 0x1f, 0xec, 0x3d, 0xaa, 0x48, 0xa8, 0x0c, 0xcb, 0x8d, + 0xce, 0x8b, 0xf6, 0xa3, 0xce, 0x5e, 0xa3, 0x22, 0xd3, 0x93, 0x67, 0x8f, 0xd9, 0x3c, 0xa7, 0x2b, + 0xb0, 0x44, 0x09, 0xb5, 0xdf, 0x2e, 0xc1, 0x95, 0xcc, 0x0a, 0x83, 0xbe, 0x01, 0x45, 0x5c, 0x91, + 0xcc, 0x2a, 0xdd, 0x9d, 0x0f, 0x2e, 0x4e, 0x93, 0xbb, 0x3a, 0xc4, 0x91, 0x2a, 0xa8, 0xb0, 0x18, + 0x91, 0x03, 0x40, 0x7c, 0xdf, 0xf3, 0xbb, 0x96, 0x67, 0x27, 0xa5, 0xf4, 0xee, 0x47, 0x2b, 0x68, + 0x52, 0x8a, 0x7d, 0xcf, 0x16, 0xe5, 0x70, 0xcc, 0x88, 0x8b, 0x24, 0x39, 0x42, 0xd7, 0xa1, 0x30, + 0x20, 0x41, 0x60, 0xf6, 0x08, 0xab, 0xb2, 0x45, 0xbd, 0x14, 0x47, 0x6a, 0xb2, 0x85, 0x93, 0x09, + 0x52, 0x21, 0xcf, 0x64, 0x58, 0xb1, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, 0x83, 0x76, + 0x0f, 0x56, 0x26, 0x8c, 0x41, 0x6b, 0x50, 0xda, 0x3f, 0x68, 0x74, 0x9f, 0xb5, 0x1f, 0xb6, 0x3b, + 0x2f, 0xda, 0x15, 0x89, 0xc6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x02, 0x45, 0x3a, 0x6f, + 0x62, 0xdc, 0xc1, 0x95, 0x9c, 0x56, 0x87, 0xca, 0xb4, 0xcd, 0x14, 0xde, 0xc4, 0x98, 0xc2, 0x25, + 0xca, 0x45, 0xe7, 0x09, 0x97, 0xac, 0xfd, 0xbc, 0x04, 0x6b, 0x53, 0xf9, 0x8f, 0x3e, 0x87, 0x62, + 0x70, 0x16, 0x84, 0x64, 0xd0, 0x75, 0x6c, 0x76, 0x29, 0x45, 0x7d, 0x25, 0x8e, 0xd4, 0xf1, 0x26, + 0x5e, 0xe6, 0xd3, 0x96, 0x8d, 0x1e, 0x40, 0x21, 0xc9, 0xc7, 0xdc, 0xf6, 0xa5, 0x9d, 0xd2, 0xee, + 0xf6, 0xdc, 0xe2, 0x9c, 0xe4, 0x20, 0x8b, 0x8b, 0x10, 0xc2, 0xc9, 0x84, 0xb6, 0x4a, 0xda, 0x8e, + 0x45, 0x87, 0xca, 0x6c, 0x95, 0x86, 0x17, 0x84, 0x2d, 0xf7, 0xd0, 0xe3, 0x3d, 0x8e, 0xa2, 0x31, + 0xfb, 0x45, 0xf7, 0xa1, 0xd0, 0x27, 0xe6, 0x71, 0xd8, 0x0f, 0xaa, 0x79, 0x66, 0xc4, 0xfc, 0x16, + 0x64, 0x30, 0x1c, 0xb7, 0x41, 0xc8, 0xe0, 0x64, 0x82, 0x7e, 0x5c, 0xfc, 0xe0, 0x14, 0xc6, 0xfd, + 0x9f, 0x3e, 0xb8, 0xf9, 0xcf, 0x0d, 0x9d, 0x26, 0xad, 0xc8, 0xb4, 0x42, 0xe7, 0xd4, 0x09, 0xcf, + 0x92, 0x4a, 0x56, 0x60, 0x66, 0xcc, 0x6f, 0x45, 0x7b, 0x02, 0x2f, 0x9e, 0x45, 0xaa, 0x15, 0x4d, + 0x31, 0x89, 0x46, 0x34, 0x89, 0xd7, 0x7e, 0x91, 0x61, 0x3d, 0x83, 0x07, 0x0d, 0x61, 0x7d, 0xa2, + 0x95, 0xa6, 0x1e, 0x6d, 0x69, 0xf7, 0xfa, 0x39, 0x2d, 0x59, 0xd8, 0xf2, 0xff, 0x38, 0x52, 0xb3, + 0x58, 0x0c, 0x09, 0x5f, 0x76, 0x67, 0xd0, 0xcb, 0xa0, 0x08, 0x9b, 0xfe, 0x96, 0xe1, 0xf2, 0x0c, + 0x1b, 0xfa, 0x1a, 0x56, 0x2d, 0xcf, 0xf7, 0xc9, 0xb1, 0x19, 0x3a, 0x9e, 0x3b, 0x4e, 0x56, 0x14, + 0x47, 0xea, 0xd4, 0x09, 0x5e, 0x49, 0xad, 0x5b, 0x36, 0x7a, 0x3c, 0x2a, 0x3a, 0xbc, 0x26, 0xdc, + 0xfa, 0x20, 0xfb, 0x6b, 0x0b, 0x2a, 0xcd, 0x87, 0x3d, 0x7f, 0x6d, 0x27, 0xf1, 0x09, 0x95, 0xa0, + 0xf0, 0xb8, 0xd9, 0x6e, 0xb4, 0xda, 0x0f, 0x2a, 0x12, 0x52, 0x20, 0xc7, 0x9e, 0x73, 0x11, 0xf2, + 0xc9, 0x53, 0x3e, 0x80, 0xb5, 0x86, 0xf7, 0xda, 0x3d, 0xf6, 0x4c, 0x3b, 0xe9, 0x97, 0x17, 0xf8, + 0x9c, 0xd4, 0x7e, 0xc8, 0xc1, 0x7a, 0xc6, 0x37, 0x12, 0x3a, 0x98, 0x28, 0xbf, 0x1f, 0xf5, 0x6d, + 0x98, 0x15, 0x86, 0x16, 0x28, 0x34, 0xcb, 0x3c, 0x57, 0x04, 0xf6, 0xbc, 0xc4, 0xd8, 0x63, 0x60, + 0x4e, 0xc5, 0x05, 0xb1, 0x18, 0xd1, 0x73, 0x28, 0x89, 0x24, 0xa1, 0x0e, 0x89, 0xc2, 0xf0, 0x69, + 0xb6, 0x79, 0x14, 0xd6, 0x20, 0x81, 0xe5, 0x3b, 0xc3, 0xd0, 0xf3, 0xf5, 0xb5, 0x38, 0x52, 0xd3, + 0xc2, 0x18, 0xf8, 0x82, 0x3e, 0x53, 0xed, 0x1f, 0x19, 0xca, 0xcf, 0x86, 0x34, 0xae, 0xe2, 0x26, + 0x2e, 0xf2, 0x95, 0xfe, 0x64, 0x2a, 0x91, 0xea, 0x59, 0xd2, 0x69, 0x6d, 0xb5, 0xa7, 0xbe, 0xe9, + 0x06, 0x87, 0xc4, 0x5f, 0x90, 0x4b, 0x1a, 0x28, 0x3e, 0x31, 0x03, 0xcf, 0x15, 0xa9, 0xc4, 0x30, + 0x7c, 0x07, 0x8b, 0x51, 0xfb, 0x12, 0x56, 0x27, 0x99, 0x68, 0x42, 0x8d, 0x7b, 0x44, 0x92, 0x50, + 0x00, 0xca, 0xfd, 0xbd, 0xd6, 0xa3, 0x66, 0xa3, 0x92, 0xd3, 0xfe, 0x90, 0xa1, 0x48, 0x23, 0xb0, + 0xdf, 0x3f, 0x71, 0x8f, 0x50, 0x07, 0x94, 0x3e, 0x31, 0x6d, 0xe2, 0x2f, 0xbc, 0x78, 0x0a, 0x25, + 0x36, 0x26, 0x81, 0x77, 0xe2, 0x5b, 0xc4, 0x60, 0x02, 0xdc, 0x1e, 0x2e, 0x6c, 0x48, 0x58, 0xcc, + 0x90, 0xc1, 0x5b, 0x3d, 0x0b, 0xc4, 0x9c, 0xef, 0xd5, 0x29, 0x3a, 0xb6, 0xe4, 0x21, 0xa5, 0x92, + 0x86, 0x84, 0xd9, 0xa8, 0x17, 0x20, 0x6f, 0xd1, 0x23, 0xed, 0x9d, 0x0c, 0x57, 0x32, 0x4d, 0xb8, + 0xd0, 0x9d, 0x69, 0xa0, 0x30, 0x7a, 0x7e, 0x67, 0x79, 0xee, 0x0e, 0xdf, 0xc1, 0x62, 0x44, 0x3b, + 0xb0, 0x6c, 0xf5, 0x89, 0x75, 0x14, 0x9c, 0x0c, 0xc4, 0x25, 0x94, 0xe3, 0x48, 0x1d, 0xed, 0xe1, + 0xd1, 0x0c, 0x7d, 0x01, 0xc0, 0x64, 0xba, 0x81, 0xf3, 0x96, 0xb0, 0xae, 0x9e, 0x17, 0xff, 0x9a, + 0x46, 0xbb, 0xb8, 0xc8, 0xe6, 0x4f, 0x9c, 0xb7, 0x44, 0xfb, 0x5d, 0x86, 0x8d, 0xac, 0x30, 0x5c, + 0xc8, 0xa3, 0x1b, 0xd4, 0x5a, 0xaa, 0xcd, 0xb1, 0x85, 0x4f, 0xc2, 0x5a, 0xbe, 0x87, 0x0b, 0x6c, + 0xd6, 0xb2, 0xd1, 0x35, 0x71, 0x47, 0xd4, 0xa5, 0xf2, 0x38, 0xf2, 0x22, 0xee, 0x77, 0xfe, 0x7c, + 0xbf, 0x25, 0xbf, 0x7b, 0xbf, 0x25, 0xff, 0xf5, 0x7e, 0x4b, 0x7e, 0x79, 0xb3, 0xe7, 0x84, 0xfd, + 0x93, 0x57, 0x35, 0xcb, 0x1b, 0xd4, 0x99, 0x25, 0x75, 0x66, 0x49, 0x3d, 0xb0, 0x8f, 0xea, 0xa7, + 0xbb, 0x75, 0xf6, 0x6f, 0xf7, 0x1e, 0xfb, 0x7d, 0xa5, 0xb0, 0xe1, 0xf6, 0xbf, 0x01, 0x00, 0x00, + 0xff, 0xff, 0xc1, 0xaf, 0xc7, 0xf2, 0x9c, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -3480,7 +3480,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Status |= Status(b&0x7F) << shift + m.Status |= NginxConfigStatus_Status(b&0x7F) << shift if b < 0x80 { break } diff --git a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index 95952d234..2e1d37c0e 100644 --- a/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/test/performance/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -99,13 +99,14 @@ message NginxConfigStatus { string correlation_id = 1 [(gogoproto.jsontag) = "correlation_id" ]; Status status = 2 [(gogoproto.jsontag) = "status" ]; string message = 3 [(gogoproto.jsontag) = "message" ]; + + enum Status { + PENDING = 0; + OK = 1; + ERROR = 2; + } } -enum Status { - PENDING = 0; - OK = 1; - ERROR = 2; -} message DownloadRequest { Metadata meta = 1 [(gogoproto.jsontag) = "meta" ]; diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go index b13c38292..0ff5eec2e 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.pb.go @@ -24,34 +24,6 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -type Status int32 - -const ( - Status_PENDING Status = 0 - Status_OK Status = 1 - Status_ERROR Status = 2 -) - -var Status_name = map[int32]string{ - 0: "PENDING", - 1: "OK", - 2: "ERROR", -} - -var Status_value = map[string]int32{ - "PENDING": 0, - "OK": 1, - "ERROR": 2, -} - -func (x Status) String() string { - return proto.EnumName(Status_name, int32(x)) -} - -func (Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_213c0bb044472049, []int{0} -} - type Command_CommandType int32 const ( @@ -133,6 +105,34 @@ func (CommandStatusResponse_CommandErrorCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor_213c0bb044472049, []int{1, 1} } +type NginxConfigStatus_Status int32 + +const ( + NginxConfigStatus_PENDING NginxConfigStatus_Status = 0 + NginxConfigStatus_OK NginxConfigStatus_Status = 1 + NginxConfigStatus_ERROR NginxConfigStatus_Status = 2 +) + +var NginxConfigStatus_Status_name = map[int32]string{ + 0: "PENDING", + 1: "OK", + 2: "ERROR", +} + +var NginxConfigStatus_Status_value = map[string]int32{ + "PENDING": 0, + "OK": 1, + "ERROR": 2, +} + +func (x NginxConfigStatus_Status) String() string { + return proto.EnumName(NginxConfigStatus_Status_name, int32(x)) +} + +func (NginxConfigStatus_Status) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_213c0bb044472049, []int{4, 0} +} + type UploadStatus_TransferStatus int32 const ( @@ -607,12 +607,12 @@ func (*AgentActivityStatus) XXX_OneofWrappers() []interface{} { } type NginxConfigStatus struct { - CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` - Status Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.Status" json:"status"` - Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CorrelationId string `protobuf:"bytes,1,opt,name=correlation_id,json=correlationId,proto3" json:"correlation_id"` + Status NginxConfigStatus_Status `protobuf:"varint,2,opt,name=status,proto3,enum=f5.nginx.agent.sdk.NginxConfigStatus_Status" json:"status"` + Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *NginxConfigStatus) Reset() { *m = NginxConfigStatus{} } @@ -655,11 +655,11 @@ func (m *NginxConfigStatus) GetCorrelationId() string { return "" } -func (m *NginxConfigStatus) GetStatus() Status { +func (m *NginxConfigStatus) GetStatus() NginxConfigStatus_Status { if m != nil { return m.Status } - return Status_PENDING + return NginxConfigStatus_PENDING } func (m *NginxConfigStatus) GetMessage() string { @@ -1066,10 +1066,10 @@ func (m *ChunkedResourceChunk) GetData() []byte { } func init() { - proto.RegisterEnum("f5.nginx.agent.sdk.Status", Status_name, Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.Command_CommandType", Command_CommandType_name, Command_CommandType_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandStatus", CommandStatusResponse_CommandStatus_name, CommandStatusResponse_CommandStatus_value) proto.RegisterEnum("f5.nginx.agent.sdk.CommandStatusResponse_CommandErrorCode", CommandStatusResponse_CommandErrorCode_name, CommandStatusResponse_CommandErrorCode_value) + proto.RegisterEnum("f5.nginx.agent.sdk.NginxConfigStatus_Status", NginxConfigStatus_Status_name, NginxConfigStatus_Status_value) proto.RegisterEnum("f5.nginx.agent.sdk.UploadStatus_TransferStatus", UploadStatus_TransferStatus_name, UploadStatus_TransferStatus_value) proto.RegisterType((*Command)(nil), "f5.nginx.agent.sdk.Command") proto.RegisterType((*CommandStatusResponse)(nil), "f5.nginx.agent.sdk.CommandStatusResponse") @@ -1087,93 +1087,93 @@ func init() { func init() { proto.RegisterFile("command.proto", fileDescriptor_213c0bb044472049) } var fileDescriptor_213c0bb044472049 = []byte{ - // 1369 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5f, 0x6b, 0xdb, 0x56, - 0x14, 0x97, 0xdc, 0x58, 0x8e, 0x8f, 0x9d, 0xc4, 0xbd, 0x49, 0x37, 0x37, 0x94, 0x28, 0x68, 0xeb, - 0x9a, 0x96, 0xcd, 0x66, 0x29, 0xa3, 0xac, 0x85, 0x41, 0x14, 0xbb, 0x95, 0x69, 0x63, 0x97, 0xdb, - 0x7f, 0xd0, 0x31, 0x8c, 0x2a, 0xdd, 0xd8, 0x22, 0xb1, 0xe4, 0x49, 0x4a, 0xda, 0x94, 0xbd, 0x0f, - 0xc6, 0x60, 0x8c, 0xb1, 0x87, 0x7d, 0x8a, 0x3d, 0xed, 0x3b, 0xec, 0xb1, 0x9f, 0x40, 0x8c, 0x3c, - 0xea, 0x03, 0xec, 0x79, 0xdc, 0x3f, 0x72, 0x64, 0x5b, 0x76, 0x5a, 0xb2, 0x17, 0xdf, 0x7f, 0xbf, - 0xf3, 0x3b, 0x7f, 0xee, 0xb9, 0xe7, 0xc8, 0xb0, 0x64, 0x79, 0x83, 0x81, 0xe9, 0xda, 0xb5, 0xa1, - 0xef, 0x85, 0x1e, 0x42, 0xfb, 0x5f, 0xd5, 0xdc, 0x9e, 0xe3, 0xbe, 0xa9, 0x99, 0x3d, 0xe2, 0x86, - 0xb5, 0xc0, 0x3e, 0x58, 0x87, 0x9e, 0xd7, 0xf3, 0xf8, 0xf9, 0x7a, 0x99, 0xc2, 0x3d, 0x57, 0xac, - 0x4a, 0x1c, 0xc4, 0x17, 0xd0, 0xf7, 0x82, 0x64, 0x5e, 0xe2, 0x1c, 0x23, 0x19, 0x77, 0xdf, 0xe9, - 0x89, 0x15, 0x22, 0xc7, 0xc4, 0x0d, 0x83, 0x3a, 0x1b, 0xc4, 0xde, 0x55, 0x7b, 0xd8, 0x0d, 0xbc, - 0xfd, 0xf0, 0xb5, 0xe9, 0x93, 0xae, 0x4d, 0x42, 0xd3, 0x39, 0x0c, 0xf8, 0x91, 0xf6, 0x1b, 0x40, - 0x61, 0x97, 0x9b, 0x88, 0xee, 0xc2, 0xc2, 0x80, 0x84, 0x66, 0x55, 0xde, 0x94, 0xb7, 0x4a, 0xdb, - 0xd7, 0x6a, 0xd3, 0xb6, 0xd6, 0xf6, 0x48, 0x68, 0xda, 0x66, 0x68, 0xea, 0x8b, 0x71, 0xa4, 0x32, - 0x34, 0x66, 0xbf, 0xa8, 0x09, 0x0b, 0xe1, 0xc9, 0x90, 0x54, 0x73, 0x9b, 0xf2, 0xd6, 0xf2, 0xf6, - 0x8d, 0x2c, 0x59, 0xa1, 0x26, 0x19, 0x9f, 0x9e, 0x0c, 0x09, 0xa7, 0xa1, 0x82, 0x98, 0xfd, 0xa2, - 0x97, 0x00, 0xd6, 0xc0, 0xee, 0x06, 0xa1, 0x19, 0x1e, 0x05, 0xd5, 0x4b, 0xcc, 0x90, 0x9b, 0x73, - 0xc8, 0x9e, 0x30, 0x20, 0x26, 0xc1, 0xd0, 0x73, 0x03, 0xa2, 0x2f, 0xc7, 0x91, 0x9a, 0x22, 0x30, - 0x24, 0x5c, 0xb4, 0x06, 0x02, 0x84, 0x9e, 0x43, 0x99, 0xb1, 0x74, 0x79, 0xbc, 0xaa, 0x0b, 0x8c, - 0x5d, 0xcd, 0x62, 0x6f, 0xd3, 0xf5, 0x2e, 0x83, 0xe9, 0x95, 0x38, 0x52, 0xc7, 0x04, 0x0d, 0x09, - 0xf3, 0xf8, 0x73, 0x00, 0x7a, 0x03, 0x57, 0xd2, 0xc7, 0x5d, 0x5f, 0x58, 0x53, 0xcd, 0x33, 0x05, - 0x37, 0xce, 0x51, 0x30, 0x32, 0xfe, 0x6a, 0x1c, 0xa9, 0xd9, 0x4c, 0x86, 0x84, 0x57, 0xdd, 0x69, - 0x09, 0xaa, 0x99, 0x51, 0x52, 0xbc, 0x4b, 0xac, 0xb0, 0xeb, 0x93, 0xef, 0x8f, 0x48, 0x10, 0x56, - 0x95, 0xd9, 0x9a, 0x77, 0xe8, 0x6c, 0x97, 0xe3, 0x31, 0x87, 0x73, 0xcd, 0x99, 0x4c, 0x54, 0xb3, - 0x39, 0x2d, 0x81, 0x7e, 0x80, 0x8f, 0x26, 0xf1, 0xc2, 0xe9, 0x02, 0x53, 0xbd, 0x75, 0xbe, 0x6a, - 0xe1, 0xf5, 0x7a, 0x1c, 0xa9, 0x33, 0xb8, 0x0c, 0x09, 0xaf, 0x99, 0x19, 0x32, 0x28, 0x84, 0xb5, - 0x91, 0x04, 0x8f, 0x13, 0x77, 0x7b, 0x91, 0xe9, 0xfe, 0x6c, 0x9e, 0x6e, 0x16, 0x3e, 0xee, 0x75, - 0x35, 0x8e, 0xd4, 0x4c, 0x1e, 0x43, 0xc2, 0xc8, 0x9c, 0xc2, 0xd3, 0xfc, 0x49, 0xa3, 0xab, 0xc5, - 0xd9, 0xf9, 0x93, 0xd2, 0xc6, 0xf3, 0x27, 0x2d, 0x48, 0xf3, 0x27, 0x45, 0x8f, 0xf6, 0xa1, 0x42, - 0x9f, 0xd4, 0xf0, 0xd0, 0x74, 0x49, 0x92, 0xf9, 0x25, 0xc6, 0xfd, 0x49, 0x16, 0x77, 0x23, 0xc1, - 0xf2, 0xb4, 0xd6, 0xd7, 0xe2, 0x48, 0x9d, 0x22, 0x30, 0x24, 0xbc, 0x62, 0x8f, 0x03, 0xd1, 0x77, - 0x50, 0x66, 0x45, 0xa1, 0xeb, 0x93, 0xa1, 0xe7, 0x87, 0xd5, 0xf2, 0xec, 0x68, 0xf1, 0x1a, 0x52, - 0x6b, 0xd2, 0x01, 0x33, 0x34, 0x77, 0x23, 0x2d, 0x4f, 0xdd, 0x20, 0x67, 0x00, 0xf4, 0xb3, 0x0c, - 0xeb, 0x29, 0x33, 0x26, 0xca, 0x4d, 0x75, 0x89, 0x69, 0xfb, 0x7c, 0xbe, 0x47, 0x42, 0xa8, 0xc1, - 0x65, 0xf4, 0x8d, 0x38, 0x52, 0xe7, 0x70, 0x1a, 0x12, 0xae, 0xda, 0x33, 0x64, 0xb5, 0xdb, 0x50, - 0x4a, 0x15, 0x1a, 0x04, 0xa0, 0xb4, 0x3b, 0x78, 0x6f, 0xe7, 0x51, 0x45, 0x42, 0x65, 0x58, 0x6c, - 0x74, 0x5e, 0xb4, 0x1f, 0x75, 0x76, 0x1a, 0x15, 0x99, 0x9e, 0x3c, 0x7b, 0xcc, 0xe6, 0x39, 0x5d, - 0x81, 0x05, 0x4a, 0xa8, 0xfd, 0x7e, 0x09, 0xae, 0x64, 0x56, 0x18, 0xf4, 0x2d, 0x28, 0xe2, 0x8a, - 0x64, 0x56, 0xe9, 0xee, 0xbc, 0x77, 0x71, 0x1a, 0xdf, 0xd5, 0x21, 0x8e, 0x54, 0x41, 0x85, 0xc5, - 0x88, 0x1c, 0x00, 0xe2, 0xfb, 0x9e, 0xdf, 0xb5, 0x3c, 0x3b, 0x29, 0xa5, 0x77, 0x3f, 0x58, 0x41, - 0x93, 0x52, 0xec, 0x7a, 0xb6, 0x28, 0x87, 0x67, 0x8c, 0xb8, 0x48, 0x92, 0x23, 0x74, 0x1d, 0x0a, - 0x03, 0x12, 0x04, 0x66, 0x8f, 0xb0, 0x2a, 0x5b, 0xd4, 0x4b, 0x71, 0xa4, 0x26, 0x5b, 0x38, 0x99, - 0x20, 0x15, 0xf2, 0x4c, 0x86, 0x15, 0xcb, 0xa2, 0x5e, 0x8c, 0x23, 0x95, 0x6f, 0x60, 0x3e, 0x68, - 0xf7, 0x60, 0x69, 0xcc, 0x18, 0xb4, 0x02, 0xa5, 0xdd, 0xbd, 0x46, 0xf7, 0x59, 0xfb, 0x61, 0xbb, - 0xf3, 0xa2, 0x5d, 0x91, 0x68, 0x7c, 0xe9, 0x46, 0xe7, 0x61, 0x45, 0x46, 0x4b, 0x50, 0xa4, 0xf3, - 0x26, 0xc6, 0x1d, 0x5c, 0xc9, 0x69, 0x75, 0xa8, 0x4c, 0xda, 0x4c, 0xe1, 0x4d, 0x8c, 0x29, 0x5c, - 0xa2, 0x5c, 0x74, 0x9e, 0x70, 0xc9, 0xda, 0x2f, 0x0b, 0xb0, 0x32, 0x91, 0xff, 0xe8, 0x16, 0x14, - 0x83, 0x93, 0x20, 0x24, 0x83, 0xae, 0x63, 0xb3, 0x4b, 0x29, 0xea, 0x4b, 0x71, 0xa4, 0x9e, 0x6d, - 0xe2, 0x45, 0x3e, 0x6d, 0xd9, 0xe8, 0x01, 0x14, 0x92, 0x7c, 0xcc, 0x6d, 0x5e, 0xda, 0x2a, 0x6d, - 0x6f, 0xce, 0x2c, 0xce, 0x49, 0x0e, 0xb2, 0xb8, 0x08, 0x21, 0x9c, 0x4c, 0x68, 0xab, 0xa4, 0xed, - 0x58, 0x74, 0xa8, 0xcc, 0x56, 0x69, 0x78, 0x41, 0xd8, 0x72, 0xf7, 0x3d, 0xde, 0xe3, 0x28, 0x1a, - 0xb3, 0x5f, 0x74, 0x1f, 0x0a, 0x7d, 0x62, 0x1e, 0x86, 0xfd, 0xa0, 0x9a, 0x67, 0x46, 0xcc, 0x6e, - 0x41, 0x06, 0xc3, 0x71, 0x1b, 0x84, 0x0c, 0x4e, 0x26, 0xe8, 0xa7, 0xf9, 0x0f, 0x4e, 0x61, 0xdc, - 0xff, 0xeb, 0x83, 0x9b, 0xfd, 0xdc, 0xd0, 0x71, 0xd2, 0x8a, 0x4c, 0x2b, 0x74, 0x8e, 0x9d, 0xf0, - 0x24, 0xa9, 0x64, 0x05, 0x66, 0xc6, 0xec, 0x56, 0xb4, 0x23, 0xf0, 0xe2, 0x59, 0xa4, 0x5a, 0xd1, - 0x04, 0x93, 0x68, 0x44, 0xe3, 0x78, 0xed, 0x57, 0x19, 0x56, 0x33, 0x78, 0xd0, 0x10, 0x56, 0xc7, - 0x5a, 0x69, 0xea, 0xd1, 0x96, 0xb6, 0xaf, 0x9f, 0xd3, 0x92, 0x85, 0x2d, 0x1f, 0xc7, 0x91, 0x9a, - 0xc5, 0x62, 0x48, 0xf8, 0xb2, 0x3b, 0x85, 0x5e, 0x04, 0x45, 0xd8, 0xf4, 0x97, 0x0c, 0x97, 0xa7, - 0xd8, 0xd0, 0xd7, 0xb0, 0x6c, 0x79, 0xbe, 0x4f, 0x0e, 0xcd, 0xd0, 0xf1, 0xdc, 0xb3, 0x64, 0x45, - 0x71, 0xa4, 0x4e, 0x9c, 0xe0, 0xa5, 0xd4, 0xba, 0x65, 0xa3, 0x6f, 0x46, 0x45, 0x87, 0xd7, 0x84, - 0xf5, 0x2c, 0xfb, 0xe7, 0xd4, 0x95, 0xf7, 0x7b, 0xec, 0xda, 0x1e, 0xac, 0x34, 0xbc, 0xd7, 0xee, - 0xa1, 0x67, 0xda, 0x49, 0xcf, 0xbb, 0xc0, 0x27, 0xa1, 0xf6, 0x63, 0x0e, 0x56, 0x33, 0xbe, 0x73, - 0xd0, 0xde, 0x58, 0x09, 0xfd, 0xa0, 0xef, 0xbb, 0x2c, 0xe7, 0x5a, 0xa0, 0xd0, 0x4c, 0xf1, 0x5c, - 0x11, 0x9c, 0xf3, 0x2e, 0x77, 0x87, 0x81, 0x39, 0x15, 0x17, 0xc4, 0x62, 0x44, 0xcf, 0xa1, 0x24, - 0x2e, 0x9a, 0x3a, 0x24, 0x1e, 0xf7, 0xa7, 0xd9, 0xe6, 0x51, 0x58, 0x83, 0x04, 0x96, 0xef, 0x0c, - 0x43, 0xcf, 0xd7, 0x57, 0xe2, 0x48, 0x4d, 0x0b, 0x63, 0xe0, 0x0b, 0xfa, 0xd4, 0xb4, 0x7f, 0x65, - 0x28, 0x3f, 0x1b, 0xd2, 0xb8, 0x8a, 0x5c, 0xb8, 0xc8, 0x97, 0xf6, 0x93, 0x89, 0x64, 0xa8, 0x67, - 0x49, 0xa7, 0xb5, 0xd5, 0x9e, 0xfa, 0xa6, 0x1b, 0xec, 0x13, 0x7f, 0x4e, 0x86, 0x68, 0xa0, 0xf8, - 0xc4, 0x0c, 0x3c, 0x57, 0x24, 0x08, 0xc3, 0xf0, 0x1d, 0x2c, 0x46, 0xed, 0x4b, 0x58, 0x1e, 0x67, - 0x42, 0x25, 0x28, 0x9c, 0xd5, 0x79, 0x05, 0x72, 0xac, 0xc6, 0x03, 0x28, 0xf7, 0x77, 0x5a, 0x8f, - 0x9a, 0x8d, 0x4a, 0x4e, 0xfb, 0x53, 0x86, 0x22, 0x8d, 0xc0, 0x6e, 0xff, 0xc8, 0x3d, 0x40, 0x1d, - 0x50, 0xfa, 0xc4, 0xb4, 0x89, 0x3f, 0xf7, 0xe2, 0x29, 0x94, 0xd8, 0x98, 0x04, 0xde, 0x91, 0x6f, - 0x11, 0x83, 0x09, 0x70, 0x7b, 0xb8, 0xb0, 0x21, 0x61, 0x31, 0x43, 0x06, 0x6f, 0xd7, 0x2c, 0x10, - 0x33, 0xbe, 0x39, 0x27, 0xe8, 0xd8, 0x92, 0x87, 0x94, 0x4a, 0x1a, 0x12, 0x66, 0xa3, 0x5e, 0x80, - 0xbc, 0x45, 0x8f, 0xb4, 0x77, 0x32, 0x5c, 0xc9, 0x34, 0xe1, 0x42, 0x77, 0xa6, 0x81, 0xc2, 0xe8, - 0xf9, 0x9d, 0xe5, 0xb9, 0x3b, 0x7c, 0x07, 0x8b, 0x11, 0x6d, 0xc1, 0xa2, 0xd5, 0x27, 0xd6, 0x41, - 0x70, 0x34, 0x10, 0x97, 0x50, 0x8e, 0x23, 0x75, 0xb4, 0x87, 0x47, 0x33, 0xf4, 0x05, 0x00, 0x93, - 0xe9, 0x06, 0xce, 0x5b, 0xc2, 0x3a, 0x73, 0x5e, 0xfc, 0xf3, 0x19, 0xed, 0xe2, 0x22, 0x9b, 0x3f, - 0x71, 0xde, 0x12, 0xed, 0x0f, 0x19, 0xd6, 0xb2, 0xc2, 0x70, 0x21, 0x8f, 0x6e, 0x50, 0x6b, 0xa9, - 0x36, 0xc7, 0x16, 0x3e, 0x09, 0x6b, 0xf9, 0x1e, 0x2e, 0xb0, 0x59, 0xcb, 0x46, 0xd7, 0xc4, 0x1d, - 0x51, 0x97, 0xca, 0x67, 0x91, 0xe7, 0x71, 0xbf, 0xb5, 0x95, 0x14, 0x4d, 0x9a, 0x4b, 0x8f, 0x9b, - 0xed, 0x46, 0xab, 0xfd, 0x20, 0x95, 0x4b, 0x45, 0xc8, 0x8b, 0x6f, 0x05, 0xfd, 0xce, 0xdf, 0xa7, - 0x1b, 0xf2, 0xbb, 0xd3, 0x0d, 0xf9, 0x9f, 0xd3, 0x0d, 0xf9, 0xe5, 0xcd, 0x9e, 0x13, 0xf6, 0x8f, - 0x5e, 0xd5, 0x2c, 0x6f, 0x50, 0x67, 0x36, 0xd7, 0x99, 0xcd, 0xf5, 0xc0, 0x3e, 0xa8, 0x1f, 0x6f, - 0xd7, 0xd9, 0x7f, 0xdb, 0x7b, 0xec, 0xf7, 0x95, 0xc2, 0x86, 0xdb, 0xff, 0x05, 0x00, 0x00, 0xff, - 0xff, 0x0b, 0x95, 0xff, 0x24, 0x8a, 0x0f, 0x00, 0x00, + // 1370 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcb, 0x6e, 0xdb, 0x46, + 0x17, 0x26, 0x15, 0x8b, 0xb2, 0x8e, 0x64, 0x5b, 0x19, 0x3b, 0xff, 0xaf, 0x18, 0x81, 0x69, 0xb0, + 0x4d, 0xe3, 0x14, 0xa9, 0x84, 0x3a, 0x28, 0x82, 0x26, 0x2b, 0xd3, 0x52, 0x42, 0x21, 0xb1, 0x14, + 0x4c, 0x6e, 0x40, 0x8a, 0x42, 0x60, 0xc8, 0xb1, 0x44, 0xd8, 0x22, 0x55, 0x92, 0x76, 0xe2, 0xa0, + 0xfb, 0x02, 0x45, 0x81, 0xa2, 0x28, 0xba, 0xe8, 0x53, 0xf4, 0x35, 0xba, 0xcc, 0x13, 0x10, 0x45, + 0x96, 0xdc, 0x75, 0xd3, 0x75, 0x31, 0x17, 0x4a, 0x94, 0x44, 0xc9, 0x09, 0xdc, 0x8d, 0xe6, 0xf6, + 0x9d, 0xef, 0x5c, 0xe6, 0xcc, 0x39, 0x14, 0xac, 0x58, 0xde, 0x60, 0x60, 0xba, 0x76, 0x6d, 0xe8, + 0x7b, 0xa1, 0x87, 0xd0, 0xe1, 0x57, 0x35, 0xb7, 0xe7, 0xb8, 0x6f, 0x6a, 0x66, 0x8f, 0xb8, 0x61, + 0x2d, 0xb0, 0x8f, 0x36, 0xa1, 0xe7, 0xf5, 0x3c, 0x7e, 0xbe, 0x59, 0xa6, 0x70, 0xcf, 0x15, 0xab, + 0x12, 0x07, 0xf1, 0x05, 0xf4, 0xbd, 0x20, 0x99, 0x97, 0x38, 0xc7, 0x48, 0xc6, 0x3d, 0x74, 0x7a, + 0x62, 0x85, 0xc8, 0x29, 0x71, 0xc3, 0xa0, 0xce, 0x06, 0xb1, 0x77, 0xd5, 0x1e, 0x76, 0x03, 0xef, + 0x30, 0x7c, 0x6d, 0xfa, 0xa4, 0x6b, 0x93, 0xd0, 0x74, 0x8e, 0x03, 0x7e, 0xa4, 0xfd, 0x0a, 0x50, + 0xd8, 0xe7, 0x26, 0xa2, 0xbb, 0xb0, 0x34, 0x20, 0xa1, 0x59, 0x95, 0xb7, 0xe5, 0x9d, 0xd2, 0xee, + 0xb5, 0xda, 0xac, 0xad, 0xb5, 0x03, 0x12, 0x9a, 0xb6, 0x19, 0x9a, 0xfa, 0x72, 0x1c, 0xa9, 0x0c, + 0x8d, 0xd9, 0x2f, 0x6a, 0xc2, 0x52, 0x78, 0x36, 0x24, 0xd5, 0xdc, 0xb6, 0xbc, 0xb3, 0xba, 0x7b, + 0x23, 0x4b, 0x56, 0xa8, 0x49, 0xc6, 0xa7, 0x67, 0x43, 0xc2, 0x69, 0xa8, 0x20, 0x66, 0xbf, 0xe8, + 0x25, 0x80, 0x35, 0xb0, 0xbb, 0x41, 0x68, 0x86, 0x27, 0x41, 0xf5, 0x12, 0x33, 0xe4, 0xe6, 0x02, + 0xb2, 0x27, 0x0c, 0x88, 0x49, 0x30, 0xf4, 0xdc, 0x80, 0xe8, 0xab, 0x71, 0xa4, 0xa6, 0x08, 0x0c, + 0x09, 0x17, 0xad, 0x81, 0x00, 0xa1, 0xe7, 0x50, 0x66, 0x2c, 0x5d, 0x1e, 0xaf, 0xea, 0x12, 0x63, + 0x57, 0xb3, 0xd8, 0xdb, 0x74, 0xbd, 0xcf, 0x60, 0x7a, 0x25, 0x8e, 0xd4, 0x09, 0x41, 0x43, 0xc2, + 0x3c, 0xfe, 0x1c, 0x80, 0xde, 0xc0, 0x95, 0xf4, 0x71, 0xd7, 0x17, 0xd6, 0x54, 0xf3, 0x4c, 0xc1, + 0x8d, 0x73, 0x14, 0x8c, 0x8c, 0xbf, 0x1a, 0x47, 0x6a, 0x36, 0x93, 0x21, 0xe1, 0x75, 0x77, 0x56, + 0x82, 0x6a, 0x66, 0x94, 0x14, 0xef, 0x12, 0x2b, 0xec, 0xfa, 0xe4, 0xbb, 0x13, 0x12, 0x84, 0x55, + 0x65, 0xbe, 0xe6, 0x3d, 0x3a, 0xdb, 0xe7, 0x78, 0xcc, 0xe1, 0x5c, 0x73, 0x26, 0x13, 0xd5, 0x6c, + 0xce, 0x4a, 0xa0, 0xef, 0xe1, 0x7f, 0xd3, 0x78, 0xe1, 0x74, 0x81, 0xa9, 0xde, 0x39, 0x5f, 0xb5, + 0xf0, 0x7a, 0x33, 0x8e, 0xd4, 0x39, 0x5c, 0x86, 0x84, 0x37, 0xcc, 0x0c, 0x19, 0x14, 0xc2, 0xc6, + 0x48, 0x82, 0xc7, 0x89, 0xbb, 0xbd, 0xcc, 0x74, 0x7f, 0xb6, 0x48, 0x37, 0x0b, 0x1f, 0xf7, 0xba, + 0x1a, 0x47, 0x6a, 0x26, 0x8f, 0x21, 0x61, 0x64, 0xce, 0xe0, 0x69, 0xfe, 0xa4, 0xd1, 0xd5, 0xe2, + 0xfc, 0xfc, 0x49, 0x69, 0xe3, 0xf9, 0x93, 0x16, 0xa4, 0xf9, 0x93, 0xa2, 0x47, 0x87, 0x50, 0xa1, + 0x4f, 0x6a, 0x78, 0x6c, 0xba, 0x24, 0xc9, 0xfc, 0x12, 0xe3, 0xfe, 0x24, 0x8b, 0xbb, 0x91, 0x60, + 0x79, 0x5a, 0xeb, 0x1b, 0x71, 0xa4, 0xce, 0x10, 0x18, 0x12, 0x5e, 0xb3, 0x27, 0x81, 0xe8, 0x5b, + 0x28, 0xb3, 0xa2, 0xd0, 0xf5, 0xc9, 0xd0, 0xf3, 0xc3, 0x6a, 0x79, 0x7e, 0xb4, 0x78, 0x0d, 0xa9, + 0x35, 0xe9, 0x80, 0x19, 0x9a, 0xbb, 0x91, 0x96, 0xa7, 0x6e, 0x90, 0x31, 0x00, 0xfd, 0x24, 0xc3, + 0x66, 0xca, 0x8c, 0xa9, 0x72, 0x53, 0x5d, 0x61, 0xda, 0x6e, 0x2d, 0xf6, 0x48, 0x08, 0x35, 0xb8, + 0x8c, 0xbe, 0x15, 0x47, 0xea, 0x02, 0x4e, 0x43, 0xc2, 0x55, 0x7b, 0x8e, 0xac, 0x76, 0x1b, 0x4a, + 0xa9, 0x42, 0x83, 0x00, 0x94, 0x76, 0x07, 0x1f, 0xec, 0x3d, 0xaa, 0x48, 0xa8, 0x0c, 0xcb, 0x8d, + 0xce, 0x8b, 0xf6, 0xa3, 0xce, 0x5e, 0xa3, 0x22, 0xd3, 0x93, 0x67, 0x8f, 0xd9, 0x3c, 0xa7, 0x2b, + 0xb0, 0x44, 0x09, 0xb5, 0xdf, 0x2e, 0xc1, 0x95, 0xcc, 0x0a, 0x83, 0xbe, 0x01, 0x45, 0x5c, 0x91, + 0xcc, 0x2a, 0xdd, 0x9d, 0x0f, 0x2e, 0x4e, 0x93, 0xbb, 0x3a, 0xc4, 0x91, 0x2a, 0xa8, 0xb0, 0x18, + 0x91, 0x03, 0x40, 0x7c, 0xdf, 0xf3, 0xbb, 0x96, 0x67, 0x27, 0xa5, 0xf4, 0xee, 0x47, 0x2b, 0x68, + 0x52, 0x8a, 0x7d, 0xcf, 0x16, 0xe5, 0x70, 0xcc, 0x88, 0x8b, 0x24, 0x39, 0x42, 0xd7, 0xa1, 0x30, + 0x20, 0x41, 0x60, 0xf6, 0x08, 0xab, 0xb2, 0x45, 0xbd, 0x14, 0x47, 0x6a, 0xb2, 0x85, 0x93, 0x09, + 0x52, 0x21, 0xcf, 0x64, 0x58, 0xb1, 0x2c, 0xea, 0xc5, 0x38, 0x52, 0xf9, 0x06, 0xe6, 0x83, 0x76, + 0x0f, 0x56, 0x26, 0x8c, 0x41, 0x6b, 0x50, 0xda, 0x3f, 0x68, 0x74, 0x9f, 0xb5, 0x1f, 0xb6, 0x3b, + 0x2f, 0xda, 0x15, 0x89, 0xc6, 0x97, 0x6e, 0x74, 0x1e, 0x56, 0x64, 0xb4, 0x02, 0x45, 0x3a, 0x6f, + 0x62, 0xdc, 0xc1, 0x95, 0x9c, 0x56, 0x87, 0xca, 0xb4, 0xcd, 0x14, 0xde, 0xc4, 0x98, 0xc2, 0x25, + 0xca, 0x45, 0xe7, 0x09, 0x97, 0xac, 0xfd, 0xbc, 0x04, 0x6b, 0x53, 0xf9, 0x8f, 0x3e, 0x87, 0x62, + 0x70, 0x16, 0x84, 0x64, 0xd0, 0x75, 0x6c, 0x76, 0x29, 0x45, 0x7d, 0x25, 0x8e, 0xd4, 0xf1, 0x26, + 0x5e, 0xe6, 0xd3, 0x96, 0x8d, 0x1e, 0x40, 0x21, 0xc9, 0xc7, 0xdc, 0xf6, 0xa5, 0x9d, 0xd2, 0xee, + 0xf6, 0xdc, 0xe2, 0x9c, 0xe4, 0x20, 0x8b, 0x8b, 0x10, 0xc2, 0xc9, 0x84, 0xb6, 0x4a, 0xda, 0x8e, + 0x45, 0x87, 0xca, 0x6c, 0x95, 0x86, 0x17, 0x84, 0x2d, 0xf7, 0xd0, 0xe3, 0x3d, 0x8e, 0xa2, 0x31, + 0xfb, 0x45, 0xf7, 0xa1, 0xd0, 0x27, 0xe6, 0x71, 0xd8, 0x0f, 0xaa, 0x79, 0x66, 0xc4, 0xfc, 0x16, + 0x64, 0x30, 0x1c, 0xb7, 0x41, 0xc8, 0xe0, 0x64, 0x82, 0x7e, 0x5c, 0xfc, 0xe0, 0x14, 0xc6, 0xfd, + 0x9f, 0x3e, 0xb8, 0xf9, 0xcf, 0x0d, 0x9d, 0x26, 0xad, 0xc8, 0xb4, 0x42, 0xe7, 0xd4, 0x09, 0xcf, + 0x92, 0x4a, 0x56, 0x60, 0x66, 0xcc, 0x6f, 0x45, 0x7b, 0x02, 0x2f, 0x9e, 0x45, 0xaa, 0x15, 0x4d, + 0x31, 0x89, 0x46, 0x34, 0x89, 0xd7, 0x7e, 0x91, 0x61, 0x3d, 0x83, 0x07, 0x0d, 0x61, 0x7d, 0xa2, + 0x95, 0xa6, 0x1e, 0x6d, 0x69, 0xf7, 0xfa, 0x39, 0x2d, 0x59, 0xd8, 0xf2, 0xff, 0x38, 0x52, 0xb3, + 0x58, 0x0c, 0x09, 0x5f, 0x76, 0x67, 0xd0, 0xcb, 0xa0, 0x08, 0x9b, 0xfe, 0x96, 0xe1, 0xf2, 0x0c, + 0x1b, 0xfa, 0x1a, 0x56, 0x2d, 0xcf, 0xf7, 0xc9, 0xb1, 0x19, 0x3a, 0x9e, 0x3b, 0x4e, 0x56, 0x14, + 0x47, 0xea, 0xd4, 0x09, 0x5e, 0x49, 0xad, 0x5b, 0x36, 0x7a, 0x3c, 0x2a, 0x3a, 0xbc, 0x26, 0xdc, + 0xfa, 0x20, 0xfb, 0x6b, 0x0b, 0x2a, 0xcd, 0x87, 0x3d, 0x7f, 0x6d, 0x27, 0xf1, 0x09, 0x95, 0xa0, + 0xf0, 0xb8, 0xd9, 0x6e, 0xb4, 0xda, 0x0f, 0x2a, 0x12, 0x52, 0x20, 0xc7, 0x9e, 0x73, 0x11, 0xf2, + 0xc9, 0x53, 0x3e, 0x80, 0xb5, 0x86, 0xf7, 0xda, 0x3d, 0xf6, 0x4c, 0x3b, 0xe9, 0x97, 0x17, 0xf8, + 0x9c, 0xd4, 0x7e, 0xc8, 0xc1, 0x7a, 0xc6, 0x37, 0x12, 0x3a, 0x98, 0x28, 0xbf, 0x1f, 0xf5, 0x6d, + 0x98, 0x15, 0x86, 0x16, 0x28, 0x34, 0xcb, 0x3c, 0x57, 0x04, 0xf6, 0xbc, 0xc4, 0xd8, 0x63, 0x60, + 0x4e, 0xc5, 0x05, 0xb1, 0x18, 0xd1, 0x73, 0x28, 0x89, 0x24, 0xa1, 0x0e, 0x89, 0xc2, 0xf0, 0x69, + 0xb6, 0x79, 0x14, 0xd6, 0x20, 0x81, 0xe5, 0x3b, 0xc3, 0xd0, 0xf3, 0xf5, 0xb5, 0x38, 0x52, 0xd3, + 0xc2, 0x18, 0xf8, 0x82, 0x3e, 0x53, 0xed, 0x1f, 0x19, 0xca, 0xcf, 0x86, 0x34, 0xae, 0xe2, 0x26, + 0x2e, 0xf2, 0x95, 0xfe, 0x64, 0x2a, 0x91, 0xea, 0x59, 0xd2, 0x69, 0x6d, 0xb5, 0xa7, 0xbe, 0xe9, + 0x06, 0x87, 0xc4, 0x5f, 0x90, 0x4b, 0x1a, 0x28, 0x3e, 0x31, 0x03, 0xcf, 0x15, 0xa9, 0xc4, 0x30, + 0x7c, 0x07, 0x8b, 0x51, 0xfb, 0x12, 0x56, 0x27, 0x99, 0x68, 0x42, 0x8d, 0x7b, 0x44, 0x92, 0x50, + 0x00, 0xca, 0xfd, 0xbd, 0xd6, 0xa3, 0x66, 0xa3, 0x92, 0xd3, 0xfe, 0x90, 0xa1, 0x48, 0x23, 0xb0, + 0xdf, 0x3f, 0x71, 0x8f, 0x50, 0x07, 0x94, 0x3e, 0x31, 0x6d, 0xe2, 0x2f, 0xbc, 0x78, 0x0a, 0x25, + 0x36, 0x26, 0x81, 0x77, 0xe2, 0x5b, 0xc4, 0x60, 0x02, 0xdc, 0x1e, 0x2e, 0x6c, 0x48, 0x58, 0xcc, + 0x90, 0xc1, 0x5b, 0x3d, 0x0b, 0xc4, 0x9c, 0xef, 0xd5, 0x29, 0x3a, 0xb6, 0xe4, 0x21, 0xa5, 0x92, + 0x86, 0x84, 0xd9, 0xa8, 0x17, 0x20, 0x6f, 0xd1, 0x23, 0xed, 0x9d, 0x0c, 0x57, 0x32, 0x4d, 0xb8, + 0xd0, 0x9d, 0x69, 0xa0, 0x30, 0x7a, 0x7e, 0x67, 0x79, 0xee, 0x0e, 0xdf, 0xc1, 0x62, 0x44, 0x3b, + 0xb0, 0x6c, 0xf5, 0x89, 0x75, 0x14, 0x9c, 0x0c, 0xc4, 0x25, 0x94, 0xe3, 0x48, 0x1d, 0xed, 0xe1, + 0xd1, 0x0c, 0x7d, 0x01, 0xc0, 0x64, 0xba, 0x81, 0xf3, 0x96, 0xb0, 0xae, 0x9e, 0x17, 0xff, 0x9a, + 0x46, 0xbb, 0xb8, 0xc8, 0xe6, 0x4f, 0x9c, 0xb7, 0x44, 0xfb, 0x5d, 0x86, 0x8d, 0xac, 0x30, 0x5c, + 0xc8, 0xa3, 0x1b, 0xd4, 0x5a, 0xaa, 0xcd, 0xb1, 0x85, 0x4f, 0xc2, 0x5a, 0xbe, 0x87, 0x0b, 0x6c, + 0xd6, 0xb2, 0xd1, 0x35, 0x71, 0x47, 0xd4, 0xa5, 0xf2, 0x38, 0xf2, 0x22, 0xee, 0x77, 0xfe, 0x7c, + 0xbf, 0x25, 0xbf, 0x7b, 0xbf, 0x25, 0xff, 0xf5, 0x7e, 0x4b, 0x7e, 0x79, 0xb3, 0xe7, 0x84, 0xfd, + 0x93, 0x57, 0x35, 0xcb, 0x1b, 0xd4, 0x99, 0x25, 0x75, 0x66, 0x49, 0x3d, 0xb0, 0x8f, 0xea, 0xa7, + 0xbb, 0x75, 0xf6, 0x6f, 0xf7, 0x1e, 0xfb, 0x7d, 0xa5, 0xb0, 0xe1, 0xf6, 0xbf, 0x01, 0x00, 0x00, + 0xff, 0xff, 0xc1, 0xaf, 0xc7, 0xf2, 0x9c, 0x0f, 0x00, 0x00, } func (m *Command) Marshal() (dAtA []byte, err error) { @@ -3480,7 +3480,7 @@ func (m *NginxConfigStatus) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Status |= Status(b&0x7F) << shift + m.Status |= NginxConfigStatus_Status(b&0x7F) << shift if b < 0x80 { break } diff --git a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto index 95952d234..2e1d37c0e 100644 --- a/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto +++ b/vendor/github.com/nginx/agent/sdk/v2/proto/command.proto @@ -99,13 +99,14 @@ message NginxConfigStatus { string correlation_id = 1 [(gogoproto.jsontag) = "correlation_id" ]; Status status = 2 [(gogoproto.jsontag) = "status" ]; string message = 3 [(gogoproto.jsontag) = "message" ]; + + enum Status { + PENDING = 0; + OK = 1; + ERROR = 2; + } } -enum Status { - PENDING = 0; - OK = 1; - ERROR = 2; -} message DownloadRequest { Metadata meta = 1 [(gogoproto.jsontag) = "meta" ];