From 7f99acbb8727c8961925f931591031f72f538dd9 Mon Sep 17 00:00:00 2001 From: GuanqunYang193 Date: Mon, 1 Apr 2024 23:20:58 -0400 Subject: [PATCH] minor fix --- agent/agents/process/process.go | 9 +- agent/agents/supervisor/supervisor.go | 2 +- api/agentlocalpb/json/agentlocalpb.json | 12 +- .../client/agent_local/status2_responses.go | 14 +- .../client/agent_local/status_responses.go | 14 +- api/inventorypb/agent_status.dot | 6 +- api/inventorypb/agent_status.pb.go | 22 +- api/inventorypb/agent_status.proto | 6 +- .../add_azure_database_exporter_responses.go | 14 +- .../agents/add_mongo_db_exporter_responses.go | 14 +- .../add_my_s_q_ld_exporter_responses.go | 14 +- .../agents/add_node_exporter_responses.go | 14 +- .../agents/add_postgres_exporter_responses.go | 14 +- .../add_proxy_sql_exporter_responses.go | 14 +- ...d_qan_mongo_db_profiler_agent_responses.go | 14 +- ..._qan_my_sql_perf_schema_agent_responses.go | 14 +- .../add_qan_my_sql_slowlog_agent_responses.go | 14 +- ...gre_sql_pg_stat_monitor_agent_responses.go | 14 +- ...stgre_sql_pg_statements_agent_responses.go | 14 +- .../agents/add_rds_exporter_responses.go | 14 +- ...hange_azure_database_exporter_responses.go | 14 +- .../change_mongo_db_exporter_responses.go | 14 +- .../change_my_s_q_ld_exporter_responses.go | 14 +- .../agents/change_node_exporter_responses.go | 14 +- .../change_postgres_exporter_responses.go | 14 +- .../change_proxy_sql_exporter_responses.go | 14 +- ...e_qan_mongo_db_profiler_agent_responses.go | 14 +- ..._qan_my_sql_perf_schema_agent_responses.go | 14 +- ...ange_qan_my_sql_slowlog_agent_responses.go | 14 +- ...gre_sql_pg_stat_monitor_agent_responses.go | 14 +- ...stgre_sql_pg_statements_agent_responses.go | 14 +- .../agents/change_rds_exporter_responses.go | 14 +- .../json/client/agents/get_agent_responses.go | 182 ++++----- .../client/agents/list_agents_responses.go | 182 ++++----- api/inventorypb/json/inventorypb.json | 300 +++++++------- .../client/mongo_db/add_mongo_db_responses.go | 28 +- .../client/my_sql/add_my_sql_responses.go | 42 +- .../postgre_sql/add_postgre_sql_responses.go | 42 +- .../proxy_sql/add_proxy_sql_responses.go | 14 +- .../json/client/rds/add_rds_responses.go | 70 ++-- api/managementpb/json/managementpb.json | 84 ++-- api/swagger/swagger-dev.json | 384 +++++++++--------- api/swagger/swagger.json | 384 +++++++++--------- 43 files changed, 1067 insertions(+), 1066 deletions(-) diff --git a/agent/agents/process/process.go b/agent/agents/process/process.go index 88462b06a4..901263e818 100644 --- a/agent/agents/process/process.go +++ b/agent/agents/process/process.go @@ -60,7 +60,7 @@ type Process struct { changes chan inventorypb.AgentStatus backoff *backoff.Backoff ctxDone chan struct{} - err chan error + err error initialized chan bool // recreated on each restart @@ -97,8 +97,7 @@ func New(params *Params, redactWords []string, l *logrus.Entry) *Process { changes: make(chan inventorypb.AgentStatus, 10), backoff: backoff.New(backoffMinDelay, backoffMaxDelay), ctxDone: make(chan struct{}), - err: make(chan error), - initialized: make(chan bool, 2), + initialized: make(chan bool), } } @@ -106,7 +105,7 @@ func (p *Process) IsInitialized() <-chan bool { return p.initialized } -func (p *Process) GetError() <-chan error { +func (p *Process) GetError() error { return p.err } @@ -212,8 +211,8 @@ func (p *Process) toFailing(err error) { p.changes <- inventorypb.AgentStatus_INITIALIZATION_ERROR p.l.Infof("Process: exited: %s.", p.cmd.ProcessState) go p.toDone() + p.err = err p.initialized <- false - p.err <- err } // STOPPING -> DONE. diff --git a/agent/agents/supervisor/supervisor.go b/agent/agents/supervisor/supervisor.go index 4e3dcfa1e4..eb6f6d8fc6 100644 --- a/agent/agents/supervisor/supervisor.go +++ b/agent/agents/supervisor/supervisor.go @@ -490,7 +490,7 @@ func (s *Supervisor) startProcess(agentID string, agentProcess *agentpb.SetState if !<-process.IsInitialized() { defer cancel() - return <-process.GetError() + return process.GetError() } //nolint:forcetypeassert diff --git a/api/agentlocalpb/json/agentlocalpb.json b/api/agentlocalpb/json/agentlocalpb.json index 9c4a5c1293..6d5dc8ba61 100644 --- a/api/agentlocalpb/json/agentlocalpb.json +++ b/api/agentlocalpb/json/agentlocalpb.json @@ -149,18 +149,18 @@ "x-order": 4 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 } @@ -343,18 +343,18 @@ "x-order": 4 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 } diff --git a/api/agentlocalpb/json/client/agent_local/status2_responses.go b/api/agentlocalpb/json/client/agent_local/status2_responses.go index 6003827834..a38d6a81be 100644 --- a/api/agentlocalpb/json/client/agent_local/status2_responses.go +++ b/api/agentlocalpb/json/client/agent_local/status2_responses.go @@ -437,13 +437,13 @@ type Status2OKBodyAgentsInfoItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // The current listen port of this Agent (exporter or vmagent). @@ -560,7 +560,7 @@ var status2OkBodyAgentsInfoItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -576,6 +576,9 @@ const ( // Status2OKBodyAgentsInfoItems0StatusSTARTING captures enum value "STARTING" Status2OKBodyAgentsInfoItems0StatusSTARTING string = "STARTING" + // Status2OKBodyAgentsInfoItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + Status2OKBodyAgentsInfoItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // Status2OKBodyAgentsInfoItems0StatusRUNNING captures enum value "RUNNING" Status2OKBodyAgentsInfoItems0StatusRUNNING string = "RUNNING" @@ -590,9 +593,6 @@ const ( // Status2OKBodyAgentsInfoItems0StatusUNKNOWN captures enum value "UNKNOWN" Status2OKBodyAgentsInfoItems0StatusUNKNOWN string = "UNKNOWN" - - // Status2OKBodyAgentsInfoItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - Status2OKBodyAgentsInfoItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/agentlocalpb/json/client/agent_local/status_responses.go b/api/agentlocalpb/json/client/agent_local/status_responses.go index 4a79596407..0b2e9de5ca 100644 --- a/api/agentlocalpb/json/client/agent_local/status_responses.go +++ b/api/agentlocalpb/json/client/agent_local/status_responses.go @@ -474,13 +474,13 @@ type StatusOKBodyAgentsInfoItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // The current listen port of this Agent (exporter or vmagent). @@ -597,7 +597,7 @@ var statusOkBodyAgentsInfoItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -613,6 +613,9 @@ const ( // StatusOKBodyAgentsInfoItems0StatusSTARTING captures enum value "STARTING" StatusOKBodyAgentsInfoItems0StatusSTARTING string = "STARTING" + // StatusOKBodyAgentsInfoItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + StatusOKBodyAgentsInfoItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // StatusOKBodyAgentsInfoItems0StatusRUNNING captures enum value "RUNNING" StatusOKBodyAgentsInfoItems0StatusRUNNING string = "RUNNING" @@ -627,9 +630,6 @@ const ( // StatusOKBodyAgentsInfoItems0StatusUNKNOWN captures enum value "UNKNOWN" StatusOKBodyAgentsInfoItems0StatusUNKNOWN string = "UNKNOWN" - - // StatusOKBodyAgentsInfoItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - StatusOKBodyAgentsInfoItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/agent_status.dot b/api/inventorypb/agent_status.dot index 602fedf279..5b9e21bdce 100644 --- a/api/inventorypb/agent_status.dot +++ b/api/inventorypb/agent_status.dot @@ -9,7 +9,8 @@ digraph { UNKNOWN [fillcolor=yellow]; STARTING -> RUNNING; - STARTING -> FAILING; [style=dotted] + STARTING -> FAILING; + STARTING -> UNKNOWN; [style=dotted] RUNNING -> STOPPING; RUNNING -> WAITING; @@ -19,7 +20,8 @@ digraph { WAITING -> DONE; WAITING -> UNKNOWN; [style=dotted] - FAILING -> DONE; [style=dotted] + FAILING -> DONE; + FAILING -> UNKNOWN; [style=dotted] STOPPING -> DONE; STOPPING -> UNKNOWN; [style=dotted] diff --git a/api/inventorypb/agent_status.pb.go b/api/inventorypb/agent_status.pb.go index 30c5101dde..65268681c8 100644 --- a/api/inventorypb/agent_status.pb.go +++ b/api/inventorypb/agent_status.pb.go @@ -28,9 +28,11 @@ const ( AgentStatus_AGENT_STATUS_INVALID AgentStatus = 0 // Agent is starting. AgentStatus_STARTING AgentStatus = 1 + // Agent encountered error when starting. + AgentStatus_INITIALIZATION_ERROR AgentStatus = 7 // Agent is running. AgentStatus_RUNNING AgentStatus = 2 - // Agent will be restarted automatically soon. + // Agent encountered error when running and will be restarted automatically soon. AgentStatus_WAITING AgentStatus = 3 // Agent is stopping. AgentStatus_STOPPING AgentStatus = 4 @@ -38,8 +40,6 @@ const ( AgentStatus_DONE AgentStatus = 5 // Agent is not connected, we don't know anything about it's state. AgentStatus_UNKNOWN AgentStatus = 6 - // Agent encountered error when starting. - AgentStatus_INITIALIZATION_ERROR AgentStatus = 7 ) // Enum value maps for AgentStatus. @@ -47,22 +47,22 @@ var ( AgentStatus_name = map[int32]string{ 0: "AGENT_STATUS_INVALID", 1: "STARTING", + 7: "INITIALIZATION_ERROR", 2: "RUNNING", 3: "WAITING", 4: "STOPPING", 5: "DONE", 6: "UNKNOWN", - 7: "INITIALIZATION_ERROR", } AgentStatus_value = map[string]int32{ "AGENT_STATUS_INVALID": 0, "STARTING": 1, + "INITIALIZATION_ERROR": 7, "RUNNING": 2, "WAITING": 3, "STOPPING": 4, "DONE": 5, "UNKNOWN": 6, - "INITIALIZATION_ERROR": 7, } ) @@ -102,12 +102,12 @@ var file_inventorypb_agent_status_proto_rawDesc = []byte{ 0x41, 0x67, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x14, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x54, 0x41, 0x52, 0x54, 0x49, 0x4e, - 0x47, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x55, 0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x02, - 0x12, 0x0b, 0x0a, 0x07, 0x57, 0x41, 0x49, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x0c, 0x0a, - 0x08, 0x53, 0x54, 0x4f, 0x50, 0x50, 0x49, 0x4e, 0x47, 0x10, 0x04, 0x12, 0x08, 0x0a, 0x04, 0x44, - 0x4f, 0x4e, 0x45, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, - 0x10, 0x06, 0x12, 0x18, 0x0a, 0x14, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x07, 0x42, 0x8d, 0x01, 0x0a, + 0x47, 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, 0x5a, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x07, 0x12, 0x0b, 0x0a, + 0x07, 0x52, 0x55, 0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x57, 0x41, + 0x49, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x54, 0x4f, 0x50, 0x50, + 0x49, 0x4e, 0x47, 0x10, 0x04, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x4f, 0x4e, 0x45, 0x10, 0x05, 0x12, + 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x06, 0x42, 0x8d, 0x01, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x2e, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x10, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x26, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x70, diff --git a/api/inventorypb/agent_status.proto b/api/inventorypb/agent_status.proto index f4b96a2e58..259c100877 100644 --- a/api/inventorypb/agent_status.proto +++ b/api/inventorypb/agent_status.proto @@ -9,9 +9,11 @@ enum AgentStatus { AGENT_STATUS_INVALID = 0; // Agent is starting. STARTING = 1; + // Agent encountered error when starting. + INITIALIZATION_ERROR = 7; // Agent is running. RUNNING = 2; - // Agent will be restarted automatically soon. + // Agent encountered error when running and will be restarted automatically soon. WAITING = 3; // Agent is stopping. STOPPING = 4; @@ -19,6 +21,4 @@ enum AgentStatus { DONE = 5; // Agent is not connected, we don't know anything about it's state. UNKNOWN = 6; - // Agent encountered error when starting. - INITIALIZATION_ERROR = 7; } diff --git a/api/inventorypb/json/client/agents/add_azure_database_exporter_responses.go b/api/inventorypb/json/client/agents/add_azure_database_exporter_responses.go index cbf0b25057..6a8ea5e3d8 100644 --- a/api/inventorypb/json/client/agents/add_azure_database_exporter_responses.go +++ b/api/inventorypb/json/client/agents/add_azure_database_exporter_responses.go @@ -515,13 +515,13 @@ type AddAzureDatabaseExporterOKBodyAzureDatabaseExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -560,7 +560,7 @@ var addAzureDatabaseExporterOkBodyAzureDatabaseExporterTypeStatusPropEnum []inte func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -576,6 +576,9 @@ const ( // AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusSTARTING captures enum value "STARTING" AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusSTARTING string = "STARTING" + // AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusRUNNING captures enum value "RUNNING" AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusRUNNING string = "RUNNING" @@ -590,9 +593,6 @@ const ( // AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusUNKNOWN captures enum value "UNKNOWN" AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusUNKNOWN string = "UNKNOWN" - - // AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_mongo_db_exporter_responses.go b/api/inventorypb/json/client/agents/add_mongo_db_exporter_responses.go index f49151a927..585595d3c0 100644 --- a/api/inventorypb/json/client/agents/add_mongo_db_exporter_responses.go +++ b/api/inventorypb/json/client/agents/add_mongo_db_exporter_responses.go @@ -551,13 +551,13 @@ type AddMongoDBExporterOKBodyMongodbExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -606,7 +606,7 @@ var addMongoDbExporterOkBodyMongodbExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -622,6 +622,9 @@ const ( // AddMongoDBExporterOKBodyMongodbExporterStatusSTARTING captures enum value "STARTING" AddMongoDBExporterOKBodyMongodbExporterStatusSTARTING string = "STARTING" + // AddMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddMongoDBExporterOKBodyMongodbExporterStatusRUNNING captures enum value "RUNNING" AddMongoDBExporterOKBodyMongodbExporterStatusRUNNING string = "RUNNING" @@ -636,9 +639,6 @@ const ( // AddMongoDBExporterOKBodyMongodbExporterStatusUNKNOWN captures enum value "UNKNOWN" AddMongoDBExporterOKBodyMongodbExporterStatusUNKNOWN string = "UNKNOWN" - - // AddMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_my_s_q_ld_exporter_responses.go b/api/inventorypb/json/client/agents/add_my_s_q_ld_exporter_responses.go index 369384eb78..2d11196da4 100644 --- a/api/inventorypb/json/client/agents/add_my_s_q_ld_exporter_responses.go +++ b/api/inventorypb/json/client/agents/add_my_s_q_ld_exporter_responses.go @@ -558,13 +558,13 @@ type AddMySQLdExporterOKBodyMysqldExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -606,7 +606,7 @@ var addMySQLdExporterOkBodyMysqldExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -622,6 +622,9 @@ const ( // AddMySQLdExporterOKBodyMysqldExporterStatusSTARTING captures enum value "STARTING" AddMySQLdExporterOKBodyMysqldExporterStatusSTARTING string = "STARTING" + // AddMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddMySQLdExporterOKBodyMysqldExporterStatusRUNNING captures enum value "RUNNING" AddMySQLdExporterOKBodyMysqldExporterStatusRUNNING string = "RUNNING" @@ -636,9 +639,6 @@ const ( // AddMySQLdExporterOKBodyMysqldExporterStatusUNKNOWN captures enum value "UNKNOWN" AddMySQLdExporterOKBodyMysqldExporterStatusUNKNOWN string = "UNKNOWN" - - // AddMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_node_exporter_responses.go b/api/inventorypb/json/client/agents/add_node_exporter_responses.go index a002b55711..e1ffb4e8fe 100644 --- a/api/inventorypb/json/client/agents/add_node_exporter_responses.go +++ b/api/inventorypb/json/client/agents/add_node_exporter_responses.go @@ -494,13 +494,13 @@ type AddNodeExporterOKBodyNodeExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -539,7 +539,7 @@ var addNodeExporterOkBodyNodeExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -555,6 +555,9 @@ const ( // AddNodeExporterOKBodyNodeExporterStatusSTARTING captures enum value "STARTING" AddNodeExporterOKBodyNodeExporterStatusSTARTING string = "STARTING" + // AddNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddNodeExporterOKBodyNodeExporterStatusRUNNING captures enum value "RUNNING" AddNodeExporterOKBodyNodeExporterStatusRUNNING string = "RUNNING" @@ -569,9 +572,6 @@ const ( // AddNodeExporterOKBodyNodeExporterStatusUNKNOWN captures enum value "UNKNOWN" AddNodeExporterOKBodyNodeExporterStatusUNKNOWN string = "UNKNOWN" - - // AddNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_postgres_exporter_responses.go b/api/inventorypb/json/client/agents/add_postgres_exporter_responses.go index 42962b3a88..2d2d932bcc 100644 --- a/api/inventorypb/json/client/agents/add_postgres_exporter_responses.go +++ b/api/inventorypb/json/client/agents/add_postgres_exporter_responses.go @@ -540,13 +540,13 @@ type AddPostgresExporterOKBodyPostgresExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -591,7 +591,7 @@ var addPostgresExporterOkBodyPostgresExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -607,6 +607,9 @@ const ( // AddPostgresExporterOKBodyPostgresExporterStatusSTARTING captures enum value "STARTING" AddPostgresExporterOKBodyPostgresExporterStatusSTARTING string = "STARTING" + // AddPostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddPostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddPostgresExporterOKBodyPostgresExporterStatusRUNNING captures enum value "RUNNING" AddPostgresExporterOKBodyPostgresExporterStatusRUNNING string = "RUNNING" @@ -621,9 +624,6 @@ const ( // AddPostgresExporterOKBodyPostgresExporterStatusUNKNOWN captures enum value "UNKNOWN" AddPostgresExporterOKBodyPostgresExporterStatusUNKNOWN string = "UNKNOWN" - - // AddPostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddPostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_proxy_sql_exporter_responses.go b/api/inventorypb/json/client/agents/add_proxy_sql_exporter_responses.go index f50a33f794..4762a01f45 100644 --- a/api/inventorypb/json/client/agents/add_proxy_sql_exporter_responses.go +++ b/api/inventorypb/json/client/agents/add_proxy_sql_exporter_responses.go @@ -527,13 +527,13 @@ type AddProxySQLExporterOKBodyProxysqlExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -572,7 +572,7 @@ var addProxySqlExporterOkBodyProxysqlExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -588,6 +588,9 @@ const ( // AddProxySQLExporterOKBodyProxysqlExporterStatusSTARTING captures enum value "STARTING" AddProxySQLExporterOKBodyProxysqlExporterStatusSTARTING string = "STARTING" + // AddProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddProxySQLExporterOKBodyProxysqlExporterStatusRUNNING captures enum value "RUNNING" AddProxySQLExporterOKBodyProxysqlExporterStatusRUNNING string = "RUNNING" @@ -602,9 +605,6 @@ const ( // AddProxySQLExporterOKBodyProxysqlExporterStatusUNKNOWN captures enum value "UNKNOWN" AddProxySQLExporterOKBodyProxysqlExporterStatusUNKNOWN string = "UNKNOWN" - - // AddProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_qan_mongo_db_profiler_agent_responses.go b/api/inventorypb/json/client/agents/add_qan_mongo_db_profiler_agent_responses.go index 0c80bdfb16..35b1fc2335 100644 --- a/api/inventorypb/json/client/agents/add_qan_mongo_db_profiler_agent_responses.go +++ b/api/inventorypb/json/client/agents/add_qan_mongo_db_profiler_agent_responses.go @@ -535,13 +535,13 @@ type AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -574,7 +574,7 @@ var addQanMongoDbProfilerAgentOkBodyQanMongodbProfilerAgentTypeStatusPropEnum [] func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -590,6 +590,9 @@ const ( // AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusSTARTING captures enum value "STARTING" AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusSTARTING string = "STARTING" + // AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusRUNNING captures enum value "RUNNING" AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusRUNNING string = "RUNNING" @@ -604,9 +607,6 @@ const ( // AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusUNKNOWN captures enum value "UNKNOWN" AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusUNKNOWN string = "UNKNOWN" - - // AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_qan_my_sql_perf_schema_agent_responses.go b/api/inventorypb/json/client/agents/add_qan_my_sql_perf_schema_agent_responses.go index 5188552437..9f26de01b9 100644 --- a/api/inventorypb/json/client/agents/add_qan_my_sql_perf_schema_agent_responses.go +++ b/api/inventorypb/json/client/agents/add_qan_my_sql_perf_schema_agent_responses.go @@ -545,13 +545,13 @@ type AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -584,7 +584,7 @@ var addQanMySqlPerfSchemaAgentOkBodyQanMysqlPerfschemaAgentTypeStatusPropEnum [] func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -600,6 +600,9 @@ const ( // AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusSTARTING captures enum value "STARTING" AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusSTARTING string = "STARTING" + // AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusRUNNING captures enum value "RUNNING" AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusRUNNING string = "RUNNING" @@ -614,9 +617,6 @@ const ( // AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusUNKNOWN captures enum value "UNKNOWN" AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusUNKNOWN string = "UNKNOWN" - - // AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_qan_my_sql_slowlog_agent_responses.go b/api/inventorypb/json/client/agents/add_qan_my_sql_slowlog_agent_responses.go index fc10545e4f..7b0735fdf8 100644 --- a/api/inventorypb/json/client/agents/add_qan_my_sql_slowlog_agent_responses.go +++ b/api/inventorypb/json/client/agents/add_qan_my_sql_slowlog_agent_responses.go @@ -552,13 +552,13 @@ type AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // mod tidy @@ -591,7 +591,7 @@ var addQanMySqlSlowlogAgentOkBodyQanMysqlSlowlogAgentTypeStatusPropEnum []interf func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -607,6 +607,9 @@ const ( // AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusSTARTING captures enum value "STARTING" AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusSTARTING string = "STARTING" + // AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusRUNNING captures enum value "RUNNING" AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusRUNNING string = "RUNNING" @@ -621,9 +624,6 @@ const ( // AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusUNKNOWN captures enum value "UNKNOWN" AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusUNKNOWN string = "UNKNOWN" - - // AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_stat_monitor_agent_responses.go b/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_stat_monitor_agent_responses.go index 39128618b2..dd8d12ce23 100644 --- a/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_stat_monitor_agent_responses.go +++ b/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_stat_monitor_agent_responses.go @@ -536,13 +536,13 @@ type AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgent str // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -575,7 +575,7 @@ var addQanPostgreSqlPgStatMonitorAgentOkBodyQanPostgresqlPgstatmonitorAgentTypeS func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -591,6 +591,9 @@ const ( // AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING captures enum value "STARTING" AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING string = "STARTING" + // AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING captures enum value "RUNNING" AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING string = "RUNNING" @@ -605,9 +608,6 @@ const ( // AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN captures enum value "UNKNOWN" AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN string = "UNKNOWN" - - // AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_statements_agent_responses.go b/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_statements_agent_responses.go index 728e960c42..3136f4fe1d 100644 --- a/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_statements_agent_responses.go +++ b/api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_statements_agent_responses.go @@ -530,13 +530,13 @@ type AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgent struc // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -569,7 +569,7 @@ var addQanPostgreSqlPgStatementsAgentOkBodyQanPostgresqlPgstatementsAgentTypeSta func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -585,6 +585,9 @@ const ( // AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING captures enum value "STARTING" AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING string = "STARTING" + // AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING captures enum value "RUNNING" AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING string = "RUNNING" @@ -599,9 +602,6 @@ const ( // AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN captures enum value "UNKNOWN" AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN string = "UNKNOWN" - - // AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/add_rds_exporter_responses.go b/api/inventorypb/json/client/agents/add_rds_exporter_responses.go index d1b193c973..7bf4b48c50 100644 --- a/api/inventorypb/json/client/agents/add_rds_exporter_responses.go +++ b/api/inventorypb/json/client/agents/add_rds_exporter_responses.go @@ -506,13 +506,13 @@ type AddRDSExporterOKBodyRDSExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -562,7 +562,7 @@ var addRdsExporterOkBodyRdsExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -578,6 +578,9 @@ const ( // AddRDSExporterOKBodyRDSExporterStatusSTARTING captures enum value "STARTING" AddRDSExporterOKBodyRDSExporterStatusSTARTING string = "STARTING" + // AddRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddRDSExporterOKBodyRDSExporterStatusRUNNING captures enum value "RUNNING" AddRDSExporterOKBodyRDSExporterStatusRUNNING string = "RUNNING" @@ -592,9 +595,6 @@ const ( // AddRDSExporterOKBodyRDSExporterStatusUNKNOWN captures enum value "UNKNOWN" AddRDSExporterOKBodyRDSExporterStatusUNKNOWN string = "UNKNOWN" - - // AddRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_azure_database_exporter_responses.go b/api/inventorypb/json/client/agents/change_azure_database_exporter_responses.go index 362222bfca..f973af452a 100644 --- a/api/inventorypb/json/client/agents/change_azure_database_exporter_responses.go +++ b/api/inventorypb/json/client/agents/change_azure_database_exporter_responses.go @@ -473,13 +473,13 @@ type ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -518,7 +518,7 @@ var changeAzureDatabaseExporterOkBodyAzureDatabaseExporterTypeStatusPropEnum []i func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -534,6 +534,9 @@ const ( // ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusSTARTING captures enum value "STARTING" ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusSTARTING string = "STARTING" + // ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusRUNNING captures enum value "RUNNING" ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusRUNNING string = "RUNNING" @@ -548,9 +551,6 @@ const ( // ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusUNKNOWN captures enum value "UNKNOWN" ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusUNKNOWN string = "UNKNOWN" - - // ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeAzureDatabaseExporterOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_mongo_db_exporter_responses.go b/api/inventorypb/json/client/agents/change_mongo_db_exporter_responses.go index e73f59a511..3a2eec45d4 100644 --- a/api/inventorypb/json/client/agents/change_mongo_db_exporter_responses.go +++ b/api/inventorypb/json/client/agents/change_mongo_db_exporter_responses.go @@ -482,13 +482,13 @@ type ChangeMongoDBExporterOKBodyMongodbExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -537,7 +537,7 @@ var changeMongoDbExporterOkBodyMongodbExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -553,6 +553,9 @@ const ( // ChangeMongoDBExporterOKBodyMongodbExporterStatusSTARTING captures enum value "STARTING" ChangeMongoDBExporterOKBodyMongodbExporterStatusSTARTING string = "STARTING" + // ChangeMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeMongoDBExporterOKBodyMongodbExporterStatusRUNNING captures enum value "RUNNING" ChangeMongoDBExporterOKBodyMongodbExporterStatusRUNNING string = "RUNNING" @@ -567,9 +570,6 @@ const ( // ChangeMongoDBExporterOKBodyMongodbExporterStatusUNKNOWN captures enum value "UNKNOWN" ChangeMongoDBExporterOKBodyMongodbExporterStatusUNKNOWN string = "UNKNOWN" - - // ChangeMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeMongoDBExporterOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_my_s_q_ld_exporter_responses.go b/api/inventorypb/json/client/agents/change_my_s_q_ld_exporter_responses.go index d55c408a34..e44e1ca6b2 100644 --- a/api/inventorypb/json/client/agents/change_my_s_q_ld_exporter_responses.go +++ b/api/inventorypb/json/client/agents/change_my_s_q_ld_exporter_responses.go @@ -496,13 +496,13 @@ type ChangeMySQLdExporterOKBodyMysqldExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -544,7 +544,7 @@ var changeMySQLdExporterOkBodyMysqldExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -560,6 +560,9 @@ const ( // ChangeMySQLdExporterOKBodyMysqldExporterStatusSTARTING captures enum value "STARTING" ChangeMySQLdExporterOKBodyMysqldExporterStatusSTARTING string = "STARTING" + // ChangeMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeMySQLdExporterOKBodyMysqldExporterStatusRUNNING captures enum value "RUNNING" ChangeMySQLdExporterOKBodyMysqldExporterStatusRUNNING string = "RUNNING" @@ -574,9 +577,6 @@ const ( // ChangeMySQLdExporterOKBodyMysqldExporterStatusUNKNOWN captures enum value "UNKNOWN" ChangeMySQLdExporterOKBodyMysqldExporterStatusUNKNOWN string = "UNKNOWN" - - // ChangeMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeMySQLdExporterOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_node_exporter_responses.go b/api/inventorypb/json/client/agents/change_node_exporter_responses.go index 0a8999d0c1..0afd3c8bb4 100644 --- a/api/inventorypb/json/client/agents/change_node_exporter_responses.go +++ b/api/inventorypb/json/client/agents/change_node_exporter_responses.go @@ -470,13 +470,13 @@ type ChangeNodeExporterOKBodyNodeExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -515,7 +515,7 @@ var changeNodeExporterOkBodyNodeExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -531,6 +531,9 @@ const ( // ChangeNodeExporterOKBodyNodeExporterStatusSTARTING captures enum value "STARTING" ChangeNodeExporterOKBodyNodeExporterStatusSTARTING string = "STARTING" + // ChangeNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeNodeExporterOKBodyNodeExporterStatusRUNNING captures enum value "RUNNING" ChangeNodeExporterOKBodyNodeExporterStatusRUNNING string = "RUNNING" @@ -545,9 +548,6 @@ const ( // ChangeNodeExporterOKBodyNodeExporterStatusUNKNOWN captures enum value "UNKNOWN" ChangeNodeExporterOKBodyNodeExporterStatusUNKNOWN string = "UNKNOWN" - - // ChangeNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeNodeExporterOKBodyNodeExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_postgres_exporter_responses.go b/api/inventorypb/json/client/agents/change_postgres_exporter_responses.go index 04a984fd29..dc79f7f4b7 100644 --- a/api/inventorypb/json/client/agents/change_postgres_exporter_responses.go +++ b/api/inventorypb/json/client/agents/change_postgres_exporter_responses.go @@ -480,13 +480,13 @@ type ChangePostgresExporterOKBodyPostgresExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -531,7 +531,7 @@ var changePostgresExporterOkBodyPostgresExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -547,6 +547,9 @@ const ( // ChangePostgresExporterOKBodyPostgresExporterStatusSTARTING captures enum value "STARTING" ChangePostgresExporterOKBodyPostgresExporterStatusSTARTING string = "STARTING" + // ChangePostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangePostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangePostgresExporterOKBodyPostgresExporterStatusRUNNING captures enum value "RUNNING" ChangePostgresExporterOKBodyPostgresExporterStatusRUNNING string = "RUNNING" @@ -561,9 +564,6 @@ const ( // ChangePostgresExporterOKBodyPostgresExporterStatusUNKNOWN captures enum value "UNKNOWN" ChangePostgresExporterOKBodyPostgresExporterStatusUNKNOWN string = "UNKNOWN" - - // ChangePostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangePostgresExporterOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_proxy_sql_exporter_responses.go b/api/inventorypb/json/client/agents/change_proxy_sql_exporter_responses.go index 34e2d31493..a60a8ebabe 100644 --- a/api/inventorypb/json/client/agents/change_proxy_sql_exporter_responses.go +++ b/api/inventorypb/json/client/agents/change_proxy_sql_exporter_responses.go @@ -482,13 +482,13 @@ type ChangeProxySQLExporterOKBodyProxysqlExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -527,7 +527,7 @@ var changeProxySqlExporterOkBodyProxysqlExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -543,6 +543,9 @@ const ( // ChangeProxySQLExporterOKBodyProxysqlExporterStatusSTARTING captures enum value "STARTING" ChangeProxySQLExporterOKBodyProxysqlExporterStatusSTARTING string = "STARTING" + // ChangeProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeProxySQLExporterOKBodyProxysqlExporterStatusRUNNING captures enum value "RUNNING" ChangeProxySQLExporterOKBodyProxysqlExporterStatusRUNNING string = "RUNNING" @@ -557,9 +560,6 @@ const ( // ChangeProxySQLExporterOKBodyProxysqlExporterStatusUNKNOWN captures enum value "UNKNOWN" ChangeProxySQLExporterOKBodyProxysqlExporterStatusUNKNOWN string = "UNKNOWN" - - // ChangeProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeProxySQLExporterOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_qan_mongo_db_profiler_agent_responses.go b/api/inventorypb/json/client/agents/change_qan_mongo_db_profiler_agent_responses.go index 911c64e11f..17ecfcc782 100644 --- a/api/inventorypb/json/client/agents/change_qan_mongo_db_profiler_agent_responses.go +++ b/api/inventorypb/json/client/agents/change_qan_mongo_db_profiler_agent_responses.go @@ -482,13 +482,13 @@ type ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -521,7 +521,7 @@ var changeQanMongoDbProfilerAgentOkBodyQanMongodbProfilerAgentTypeStatusPropEnum func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -537,6 +537,9 @@ const ( // ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusSTARTING captures enum value "STARTING" ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusSTARTING string = "STARTING" + // ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusRUNNING captures enum value "RUNNING" ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusRUNNING string = "RUNNING" @@ -551,9 +554,6 @@ const ( // ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusUNKNOWN captures enum value "UNKNOWN" ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusUNKNOWN string = "UNKNOWN" - - // ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeQANMongoDBProfilerAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_qan_my_sql_perf_schema_agent_responses.go b/api/inventorypb/json/client/agents/change_qan_my_sql_perf_schema_agent_responses.go index c61fec36a0..de47bbcf62 100644 --- a/api/inventorypb/json/client/agents/change_qan_my_sql_perf_schema_agent_responses.go +++ b/api/inventorypb/json/client/agents/change_qan_my_sql_perf_schema_agent_responses.go @@ -494,13 +494,13 @@ type ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -533,7 +533,7 @@ var changeQanMySqlPerfSchemaAgentOkBodyQanMysqlPerfschemaAgentTypeStatusPropEnum func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -549,6 +549,9 @@ const ( // ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusSTARTING captures enum value "STARTING" ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusSTARTING string = "STARTING" + // ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusRUNNING captures enum value "RUNNING" ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusRUNNING string = "RUNNING" @@ -563,9 +566,6 @@ const ( // ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusUNKNOWN captures enum value "UNKNOWN" ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusUNKNOWN string = "UNKNOWN" - - // ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeQANMySQLPerfSchemaAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_qan_my_sql_slowlog_agent_responses.go b/api/inventorypb/json/client/agents/change_qan_my_sql_slowlog_agent_responses.go index e155e950eb..5160286828 100644 --- a/api/inventorypb/json/client/agents/change_qan_my_sql_slowlog_agent_responses.go +++ b/api/inventorypb/json/client/agents/change_qan_my_sql_slowlog_agent_responses.go @@ -497,13 +497,13 @@ type ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // mod tidy @@ -536,7 +536,7 @@ var changeQanMySqlSlowlogAgentOkBodyQanMysqlSlowlogAgentTypeStatusPropEnum []int func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -552,6 +552,9 @@ const ( // ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusSTARTING captures enum value "STARTING" ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusSTARTING string = "STARTING" + // ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusRUNNING captures enum value "RUNNING" ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusRUNNING string = "RUNNING" @@ -566,9 +569,6 @@ const ( // ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusUNKNOWN captures enum value "UNKNOWN" ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusUNKNOWN string = "UNKNOWN" - - // ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeQANMySQLSlowlogAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_stat_monitor_agent_responses.go b/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_stat_monitor_agent_responses.go index 5111277367..9441ee549f 100644 --- a/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_stat_monitor_agent_responses.go +++ b/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_stat_monitor_agent_responses.go @@ -485,13 +485,13 @@ type ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgent // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -524,7 +524,7 @@ var changeQanPostgreSqlPgStatMonitorAgentOkBodyQanPostgresqlPgstatmonitorAgentTy func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -540,6 +540,9 @@ const ( // ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING captures enum value "STARTING" ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING string = "STARTING" + // ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING captures enum value "RUNNING" ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING string = "RUNNING" @@ -554,9 +557,6 @@ const ( // ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN captures enum value "UNKNOWN" ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN string = "UNKNOWN" - - // ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeQANPostgreSQLPgStatMonitorAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_statements_agent_responses.go b/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_statements_agent_responses.go index a9c16969d3..03efed4ec5 100644 --- a/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_statements_agent_responses.go +++ b/api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_statements_agent_responses.go @@ -482,13 +482,13 @@ type ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgent st // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -521,7 +521,7 @@ var changeQanPostgreSqlPgStatementsAgentOkBodyQanPostgresqlPgstatementsAgentType func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -537,6 +537,9 @@ const ( // ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING captures enum value "STARTING" ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING string = "STARTING" + // ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING captures enum value "RUNNING" ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING string = "RUNNING" @@ -551,9 +554,6 @@ const ( // ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN captures enum value "UNKNOWN" ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN string = "UNKNOWN" - - // ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeQANPostgreSQLPgStatementsAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/change_rds_exporter_responses.go b/api/inventorypb/json/client/agents/change_rds_exporter_responses.go index 9e92c32b5c..89faa5674e 100644 --- a/api/inventorypb/json/client/agents/change_rds_exporter_responses.go +++ b/api/inventorypb/json/client/agents/change_rds_exporter_responses.go @@ -470,13 +470,13 @@ type ChangeRDSExporterOKBodyRDSExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -526,7 +526,7 @@ var changeRdsExporterOkBodyRdsExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -542,6 +542,9 @@ const ( // ChangeRDSExporterOKBodyRDSExporterStatusSTARTING captures enum value "STARTING" ChangeRDSExporterOKBodyRDSExporterStatusSTARTING string = "STARTING" + // ChangeRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ChangeRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ChangeRDSExporterOKBodyRDSExporterStatusRUNNING captures enum value "RUNNING" ChangeRDSExporterOKBodyRDSExporterStatusRUNNING string = "RUNNING" @@ -556,9 +559,6 @@ const ( // ChangeRDSExporterOKBodyRDSExporterStatusUNKNOWN captures enum value "UNKNOWN" ChangeRDSExporterOKBodyRDSExporterStatusUNKNOWN string = "UNKNOWN" - - // ChangeRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ChangeRDSExporterOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/get_agent_responses.go b/api/inventorypb/json/client/agents/get_agent_responses.go index c06607bbce..cb6bc97c2b 100644 --- a/api/inventorypb/json/client/agents/get_agent_responses.go +++ b/api/inventorypb/json/client/agents/get_agent_responses.go @@ -1048,13 +1048,13 @@ type GetAgentOKBodyAzureDatabaseExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -1093,7 +1093,7 @@ var getAgentOkBodyAzureDatabaseExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1109,6 +1109,9 @@ const ( // GetAgentOKBodyAzureDatabaseExporterStatusSTARTING captures enum value "STARTING" GetAgentOKBodyAzureDatabaseExporterStatusSTARTING string = "STARTING" + // GetAgentOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyAzureDatabaseExporterStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyAzureDatabaseExporterStatusRUNNING string = "RUNNING" @@ -1123,9 +1126,6 @@ const ( // GetAgentOKBodyAzureDatabaseExporterStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyAzureDatabaseExporterStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyAzureDatabaseExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1333,13 +1333,13 @@ type GetAgentOKBodyMongodbExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -1388,7 +1388,7 @@ var getAgentOkBodyMongodbExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1404,6 +1404,9 @@ const ( // GetAgentOKBodyMongodbExporterStatusSTARTING captures enum value "STARTING" GetAgentOKBodyMongodbExporterStatusSTARTING string = "STARTING" + // GetAgentOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyMongodbExporterStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyMongodbExporterStatusRUNNING string = "RUNNING" @@ -1418,9 +1421,6 @@ const ( // GetAgentOKBodyMongodbExporterStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyMongodbExporterStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1575,13 +1575,13 @@ type GetAgentOKBodyMysqldExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -1623,7 +1623,7 @@ var getAgentOkBodyMysqldExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1639,6 +1639,9 @@ const ( // GetAgentOKBodyMysqldExporterStatusSTARTING captures enum value "STARTING" GetAgentOKBodyMysqldExporterStatusSTARTING string = "STARTING" + // GetAgentOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyMysqldExporterStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyMysqldExporterStatusRUNNING string = "RUNNING" @@ -1653,9 +1656,6 @@ const ( // GetAgentOKBodyMysqldExporterStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyMysqldExporterStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1784,13 +1784,13 @@ type GetAgentOKBodyNodeExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -1829,7 +1829,7 @@ var getAgentOkBodyNodeExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1845,6 +1845,9 @@ const ( // GetAgentOKBodyNodeExporterStatusSTARTING captures enum value "STARTING" GetAgentOKBodyNodeExporterStatusSTARTING string = "STARTING" + // GetAgentOKBodyNodeExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyNodeExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyNodeExporterStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyNodeExporterStatusRUNNING string = "RUNNING" @@ -1859,9 +1862,6 @@ const ( // GetAgentOKBodyNodeExporterStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyNodeExporterStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyNodeExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyNodeExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2051,13 +2051,13 @@ type GetAgentOKBodyPostgresExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -2102,7 +2102,7 @@ var getAgentOkBodyPostgresExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2118,6 +2118,9 @@ const ( // GetAgentOKBodyPostgresExporterStatusSTARTING captures enum value "STARTING" GetAgentOKBodyPostgresExporterStatusSTARTING string = "STARTING" + // GetAgentOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyPostgresExporterStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyPostgresExporterStatusRUNNING string = "RUNNING" @@ -2132,9 +2135,6 @@ const ( // GetAgentOKBodyPostgresExporterStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyPostgresExporterStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2275,13 +2275,13 @@ type GetAgentOKBodyProxysqlExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -2320,7 +2320,7 @@ var getAgentOkBodyProxysqlExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2336,6 +2336,9 @@ const ( // GetAgentOKBodyProxysqlExporterStatusSTARTING captures enum value "STARTING" GetAgentOKBodyProxysqlExporterStatusSTARTING string = "STARTING" + // GetAgentOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyProxysqlExporterStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyProxysqlExporterStatusRUNNING string = "RUNNING" @@ -2350,9 +2353,6 @@ const ( // GetAgentOKBodyProxysqlExporterStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyProxysqlExporterStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2493,13 +2493,13 @@ type GetAgentOKBodyQANMongodbProfilerAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -2532,7 +2532,7 @@ var getAgentOkBodyQanMongodbProfilerAgentTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2548,6 +2548,9 @@ const ( // GetAgentOKBodyQANMongodbProfilerAgentStatusSTARTING captures enum value "STARTING" GetAgentOKBodyQANMongodbProfilerAgentStatusSTARTING string = "STARTING" + // GetAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyQANMongodbProfilerAgentStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyQANMongodbProfilerAgentStatusRUNNING string = "RUNNING" @@ -2562,9 +2565,6 @@ const ( // GetAgentOKBodyQANMongodbProfilerAgentStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyQANMongodbProfilerAgentStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyQANMongodbProfilerAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2717,13 +2717,13 @@ type GetAgentOKBodyQANMysqlPerfschemaAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -2756,7 +2756,7 @@ var getAgentOkBodyQanMysqlPerfschemaAgentTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2772,6 +2772,9 @@ const ( // GetAgentOKBodyQANMysqlPerfschemaAgentStatusSTARTING captures enum value "STARTING" GetAgentOKBodyQANMysqlPerfschemaAgentStatusSTARTING string = "STARTING" + // GetAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyQANMysqlPerfschemaAgentStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyQANMysqlPerfschemaAgentStatusRUNNING string = "RUNNING" @@ -2786,9 +2789,6 @@ const ( // GetAgentOKBodyQANMysqlPerfschemaAgentStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyQANMysqlPerfschemaAgentStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyQANMysqlPerfschemaAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2944,13 +2944,13 @@ type GetAgentOKBodyQANMysqlSlowlogAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // mod tidy @@ -2983,7 +2983,7 @@ var getAgentOkBodyQanMysqlSlowlogAgentTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2999,6 +2999,9 @@ const ( // GetAgentOKBodyQANMysqlSlowlogAgentStatusSTARTING captures enum value "STARTING" GetAgentOKBodyQANMysqlSlowlogAgentStatusSTARTING string = "STARTING" + // GetAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyQANMysqlSlowlogAgentStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyQANMysqlSlowlogAgentStatusRUNNING string = "RUNNING" @@ -3013,9 +3016,6 @@ const ( // GetAgentOKBodyQANMysqlSlowlogAgentStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyQANMysqlSlowlogAgentStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyQANMysqlSlowlogAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3156,13 +3156,13 @@ type GetAgentOKBodyQANPostgresqlPgstatementsAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -3195,7 +3195,7 @@ var getAgentOkBodyQanPostgresqlPgstatementsAgentTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3211,6 +3211,9 @@ const ( // GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING captures enum value "STARTING" GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING string = "STARTING" + // GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING string = "RUNNING" @@ -3225,9 +3228,6 @@ const ( // GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3371,13 +3371,13 @@ type GetAgentOKBodyQANPostgresqlPgstatmonitorAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -3410,7 +3410,7 @@ var getAgentOkBodyQanPostgresqlPgstatmonitorAgentTypeStatusPropEnum []interface{ func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3426,6 +3426,9 @@ const ( // GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING captures enum value "STARTING" GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING string = "STARTING" + // GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING string = "RUNNING" @@ -3440,9 +3443,6 @@ const ( // GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3571,13 +3571,13 @@ type GetAgentOKBodyRDSExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -3627,7 +3627,7 @@ var getAgentOkBodyRdsExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3643,6 +3643,9 @@ const ( // GetAgentOKBodyRDSExporterStatusSTARTING captures enum value "STARTING" GetAgentOKBodyRDSExporterStatusSTARTING string = "STARTING" + // GetAgentOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyRDSExporterStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyRDSExporterStatusRUNNING string = "RUNNING" @@ -3657,9 +3660,6 @@ const ( // GetAgentOKBodyRDSExporterStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyRDSExporterStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3778,13 +3778,13 @@ type GetAgentOKBodyVmagent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -3812,7 +3812,7 @@ var getAgentOkBodyVmagentTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3828,6 +3828,9 @@ const ( // GetAgentOKBodyVmagentStatusSTARTING captures enum value "STARTING" GetAgentOKBodyVmagentStatusSTARTING string = "STARTING" + // GetAgentOKBodyVmagentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + GetAgentOKBodyVmagentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // GetAgentOKBodyVmagentStatusRUNNING captures enum value "RUNNING" GetAgentOKBodyVmagentStatusRUNNING string = "RUNNING" @@ -3842,9 +3845,6 @@ const ( // GetAgentOKBodyVmagentStatusUNKNOWN captures enum value "UNKNOWN" GetAgentOKBodyVmagentStatusUNKNOWN string = "UNKNOWN" - - // GetAgentOKBodyVmagentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - GetAgentOKBodyVmagentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/client/agents/list_agents_responses.go b/api/inventorypb/json/client/agents/list_agents_responses.go index 619ca3f174..ead9219ee0 100644 --- a/api/inventorypb/json/client/agents/list_agents_responses.go +++ b/api/inventorypb/json/client/agents/list_agents_responses.go @@ -1289,13 +1289,13 @@ type ListAgentsOKBodyAzureDatabaseExporterItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -1334,7 +1334,7 @@ var listAgentsOkBodyAzureDatabaseExporterItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1350,6 +1350,9 @@ const ( // ListAgentsOKBodyAzureDatabaseExporterItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyAzureDatabaseExporterItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyAzureDatabaseExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyAzureDatabaseExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyAzureDatabaseExporterItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyAzureDatabaseExporterItems0StatusRUNNING string = "RUNNING" @@ -1364,9 +1367,6 @@ const ( // ListAgentsOKBodyAzureDatabaseExporterItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyAzureDatabaseExporterItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyAzureDatabaseExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyAzureDatabaseExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1574,13 +1574,13 @@ type ListAgentsOKBodyMongodbExporterItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -1629,7 +1629,7 @@ var listAgentsOkBodyMongodbExporterItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1645,6 +1645,9 @@ const ( // ListAgentsOKBodyMongodbExporterItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyMongodbExporterItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyMongodbExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyMongodbExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyMongodbExporterItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyMongodbExporterItems0StatusRUNNING string = "RUNNING" @@ -1659,9 +1662,6 @@ const ( // ListAgentsOKBodyMongodbExporterItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyMongodbExporterItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyMongodbExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyMongodbExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1816,13 +1816,13 @@ type ListAgentsOKBodyMysqldExporterItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -1864,7 +1864,7 @@ var listAgentsOkBodyMysqldExporterItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1880,6 +1880,9 @@ const ( // ListAgentsOKBodyMysqldExporterItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyMysqldExporterItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyMysqldExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyMysqldExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyMysqldExporterItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyMysqldExporterItems0StatusRUNNING string = "RUNNING" @@ -1894,9 +1897,6 @@ const ( // ListAgentsOKBodyMysqldExporterItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyMysqldExporterItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyMysqldExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyMysqldExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2025,13 +2025,13 @@ type ListAgentsOKBodyNodeExporterItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -2070,7 +2070,7 @@ var listAgentsOkBodyNodeExporterItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2086,6 +2086,9 @@ const ( // ListAgentsOKBodyNodeExporterItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyNodeExporterItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyNodeExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyNodeExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyNodeExporterItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyNodeExporterItems0StatusRUNNING string = "RUNNING" @@ -2100,9 +2103,6 @@ const ( // ListAgentsOKBodyNodeExporterItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyNodeExporterItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyNodeExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyNodeExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2292,13 +2292,13 @@ type ListAgentsOKBodyPostgresExporterItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -2343,7 +2343,7 @@ var listAgentsOkBodyPostgresExporterItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2359,6 +2359,9 @@ const ( // ListAgentsOKBodyPostgresExporterItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyPostgresExporterItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyPostgresExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyPostgresExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyPostgresExporterItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyPostgresExporterItems0StatusRUNNING string = "RUNNING" @@ -2373,9 +2376,6 @@ const ( // ListAgentsOKBodyPostgresExporterItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyPostgresExporterItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyPostgresExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyPostgresExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2516,13 +2516,13 @@ type ListAgentsOKBodyProxysqlExporterItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -2561,7 +2561,7 @@ var listAgentsOkBodyProxysqlExporterItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2577,6 +2577,9 @@ const ( // ListAgentsOKBodyProxysqlExporterItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyProxysqlExporterItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyProxysqlExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyProxysqlExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyProxysqlExporterItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyProxysqlExporterItems0StatusRUNNING string = "RUNNING" @@ -2591,9 +2594,6 @@ const ( // ListAgentsOKBodyProxysqlExporterItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyProxysqlExporterItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyProxysqlExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyProxysqlExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2734,13 +2734,13 @@ type ListAgentsOKBodyQANMongodbProfilerAgentItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -2773,7 +2773,7 @@ var listAgentsOkBodyQanMongodbProfilerAgentItems0TypeStatusPropEnum []interface{ func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2789,6 +2789,9 @@ const ( // ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusRUNNING string = "RUNNING" @@ -2803,9 +2806,6 @@ const ( // ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyQANMongodbProfilerAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2958,13 +2958,13 @@ type ListAgentsOKBodyQANMysqlPerfschemaAgentItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -2997,7 +2997,7 @@ var listAgentsOkBodyQanMysqlPerfschemaAgentItems0TypeStatusPropEnum []interface{ func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3013,6 +3013,9 @@ const ( // ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusRUNNING string = "RUNNING" @@ -3027,9 +3030,6 @@ const ( // ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyQANMysqlPerfschemaAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3185,13 +3185,13 @@ type ListAgentsOKBodyQANMysqlSlowlogAgentItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // mod tidy @@ -3224,7 +3224,7 @@ var listAgentsOkBodyQanMysqlSlowlogAgentItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3240,6 +3240,9 @@ const ( // ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusRUNNING string = "RUNNING" @@ -3254,9 +3257,6 @@ const ( // ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyQANMysqlSlowlogAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3397,13 +3397,13 @@ type ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -3436,7 +3436,7 @@ var listAgentsOkBodyQanPostgresqlPgstatementsAgentItems0TypeStatusPropEnum []int func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3452,6 +3452,9 @@ const ( // ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusRUNNING string = "RUNNING" @@ -3466,9 +3469,6 @@ const ( // ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyQANPostgresqlPgstatementsAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3612,13 +3612,13 @@ type ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -3651,7 +3651,7 @@ var listAgentsOkBodyQanPostgresqlPgstatmonitorAgentItems0TypeStatusPropEnum []in func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3667,6 +3667,9 @@ const ( // ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusRUNNING string = "RUNNING" @@ -3681,9 +3684,6 @@ const ( // ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyQANPostgresqlPgstatmonitorAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -3812,13 +3812,13 @@ type ListAgentsOKBodyRDSExporterItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -3868,7 +3868,7 @@ var listAgentsOkBodyRdsExporterItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -3884,6 +3884,9 @@ const ( // ListAgentsOKBodyRDSExporterItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyRDSExporterItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyRDSExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyRDSExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyRDSExporterItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyRDSExporterItems0StatusRUNNING string = "RUNNING" @@ -3898,9 +3901,6 @@ const ( // ListAgentsOKBodyRDSExporterItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyRDSExporterItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyRDSExporterItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyRDSExporterItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -4019,13 +4019,13 @@ type ListAgentsOKBodyVMAgentItems0 struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -4053,7 +4053,7 @@ var listAgentsOkBodyVmAgentItems0TypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -4069,6 +4069,9 @@ const ( // ListAgentsOKBodyVMAgentItems0StatusSTARTING captures enum value "STARTING" ListAgentsOKBodyVMAgentItems0StatusSTARTING string = "STARTING" + // ListAgentsOKBodyVMAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + ListAgentsOKBodyVMAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // ListAgentsOKBodyVMAgentItems0StatusRUNNING captures enum value "RUNNING" ListAgentsOKBodyVMAgentItems0StatusRUNNING string = "RUNNING" @@ -4083,9 +4086,6 @@ const ( // ListAgentsOKBodyVMAgentItems0StatusUNKNOWN captures enum value "UNKNOWN" ListAgentsOKBodyVMAgentItems0StatusUNKNOWN string = "UNKNOWN" - - // ListAgentsOKBodyVMAgentItems0StatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - ListAgentsOKBodyVMAgentItems0StatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/inventorypb/json/inventorypb.json b/api/inventorypb/json/inventorypb.json index aba2ee54ed..3902843621 100644 --- a/api/inventorypb/json/inventorypb.json +++ b/api/inventorypb/json/inventorypb.json @@ -186,18 +186,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 } @@ -659,18 +659,18 @@ "x-order": 12 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -932,18 +932,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -1176,18 +1176,18 @@ "x-order": 4 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -1563,18 +1563,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -1815,18 +1815,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -2057,18 +2057,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -2309,18 +2309,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -2588,18 +2588,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -2855,18 +2855,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -3097,18 +3097,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -3339,18 +3339,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -3537,18 +3537,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 } @@ -3930,18 +3930,18 @@ "x-order": 12 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -4146,18 +4146,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -4383,18 +4383,18 @@ "x-order": 4 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -4596,18 +4596,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -4812,18 +4812,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -5010,18 +5010,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -5218,18 +5218,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -5447,18 +5447,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -5670,18 +5670,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -5873,18 +5873,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -6097,18 +6097,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -6256,18 +6256,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 } @@ -6435,18 +6435,18 @@ "x-order": 12 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -6544,18 +6544,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -6674,18 +6674,18 @@ "x-order": 4 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -6815,18 +6815,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -6924,18 +6924,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -7015,18 +7015,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -7116,18 +7116,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -7238,18 +7238,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -7349,18 +7349,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -7450,18 +7450,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -7567,18 +7567,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -7611,18 +7611,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 } @@ -7892,18 +7892,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 } @@ -8077,18 +8077,18 @@ "x-order": 12 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8189,18 +8189,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -8322,18 +8322,18 @@ "x-order": 4 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -8469,18 +8469,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8581,18 +8581,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8675,18 +8675,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -8779,18 +8779,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -8904,18 +8904,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -9018,18 +9018,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -9122,18 +9122,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -9242,18 +9242,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } @@ -9289,18 +9289,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 } diff --git a/api/managementpb/json/client/mongo_db/add_mongo_db_responses.go b/api/managementpb/json/client/mongo_db/add_mongo_db_responses.go index 4b7082022b..507ecc8c78 100644 --- a/api/managementpb/json/client/mongo_db/add_mongo_db_responses.go +++ b/api/managementpb/json/client/mongo_db/add_mongo_db_responses.go @@ -783,13 +783,13 @@ type AddMongoDBOKBodyMongodbExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -838,7 +838,7 @@ var addMongoDbOkBodyMongodbExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -854,6 +854,9 @@ const ( // AddMongoDBOKBodyMongodbExporterStatusSTARTING captures enum value "STARTING" AddMongoDBOKBodyMongodbExporterStatusSTARTING string = "STARTING" + // AddMongoDBOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddMongoDBOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddMongoDBOKBodyMongodbExporterStatusRUNNING captures enum value "RUNNING" AddMongoDBOKBodyMongodbExporterStatusRUNNING string = "RUNNING" @@ -868,9 +871,6 @@ const ( // AddMongoDBOKBodyMongodbExporterStatusUNKNOWN captures enum value "UNKNOWN" AddMongoDBOKBodyMongodbExporterStatusUNKNOWN string = "UNKNOWN" - - // AddMongoDBOKBodyMongodbExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddMongoDBOKBodyMongodbExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1011,13 +1011,13 @@ type AddMongoDBOKBodyQANMongodbProfiler struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -1050,7 +1050,7 @@ var addMongoDbOkBodyQanMongodbProfilerTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1066,6 +1066,9 @@ const ( // AddMongoDBOKBodyQANMongodbProfilerStatusSTARTING captures enum value "STARTING" AddMongoDBOKBodyQANMongodbProfilerStatusSTARTING string = "STARTING" + // AddMongoDBOKBodyQANMongodbProfilerStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddMongoDBOKBodyQANMongodbProfilerStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddMongoDBOKBodyQANMongodbProfilerStatusRUNNING captures enum value "RUNNING" AddMongoDBOKBodyQANMongodbProfilerStatusRUNNING string = "RUNNING" @@ -1080,9 +1083,6 @@ const ( // AddMongoDBOKBodyQANMongodbProfilerStatusUNKNOWN captures enum value "UNKNOWN" AddMongoDBOKBodyQANMongodbProfilerStatusUNKNOWN string = "UNKNOWN" - - // AddMongoDBOKBodyQANMongodbProfilerStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddMongoDBOKBodyQANMongodbProfilerStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/managementpb/json/client/my_sql/add_my_sql_responses.go b/api/managementpb/json/client/my_sql/add_my_sql_responses.go index edcf48d5bb..095913c0b7 100644 --- a/api/managementpb/json/client/my_sql/add_my_sql_responses.go +++ b/api/managementpb/json/client/my_sql/add_my_sql_responses.go @@ -843,13 +843,13 @@ type AddMySQLOKBodyMysqldExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -891,7 +891,7 @@ var addMySqlOkBodyMysqldExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -907,6 +907,9 @@ const ( // AddMySQLOKBodyMysqldExporterStatusSTARTING captures enum value "STARTING" AddMySQLOKBodyMysqldExporterStatusSTARTING string = "STARTING" + // AddMySQLOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddMySQLOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddMySQLOKBodyMysqldExporterStatusRUNNING captures enum value "RUNNING" AddMySQLOKBodyMysqldExporterStatusRUNNING string = "RUNNING" @@ -921,9 +924,6 @@ const ( // AddMySQLOKBodyMysqldExporterStatusUNKNOWN captures enum value "UNKNOWN" AddMySQLOKBodyMysqldExporterStatusUNKNOWN string = "UNKNOWN" - - // AddMySQLOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddMySQLOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1076,13 +1076,13 @@ type AddMySQLOKBodyQANMysqlPerfschema struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -1115,7 +1115,7 @@ var addMySqlOkBodyQanMysqlPerfschemaTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1131,6 +1131,9 @@ const ( // AddMySQLOKBodyQANMysqlPerfschemaStatusSTARTING captures enum value "STARTING" AddMySQLOKBodyQANMysqlPerfschemaStatusSTARTING string = "STARTING" + // AddMySQLOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddMySQLOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddMySQLOKBodyQANMysqlPerfschemaStatusRUNNING captures enum value "RUNNING" AddMySQLOKBodyQANMysqlPerfschemaStatusRUNNING string = "RUNNING" @@ -1145,9 +1148,6 @@ const ( // AddMySQLOKBodyQANMysqlPerfschemaStatusUNKNOWN captures enum value "UNKNOWN" AddMySQLOKBodyQANMysqlPerfschemaStatusUNKNOWN string = "UNKNOWN" - - // AddMySQLOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddMySQLOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1303,13 +1303,13 @@ type AddMySQLOKBodyQANMysqlSlowlog struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // mod tidy @@ -1342,7 +1342,7 @@ var addMySqlOkBodyQanMysqlSlowlogTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1358,6 +1358,9 @@ const ( // AddMySQLOKBodyQANMysqlSlowlogStatusSTARTING captures enum value "STARTING" AddMySQLOKBodyQANMysqlSlowlogStatusSTARTING string = "STARTING" + // AddMySQLOKBodyQANMysqlSlowlogStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddMySQLOKBodyQANMysqlSlowlogStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddMySQLOKBodyQANMysqlSlowlogStatusRUNNING captures enum value "RUNNING" AddMySQLOKBodyQANMysqlSlowlogStatusRUNNING string = "RUNNING" @@ -1372,9 +1375,6 @@ const ( // AddMySQLOKBodyQANMysqlSlowlogStatusUNKNOWN captures enum value "UNKNOWN" AddMySQLOKBodyQANMysqlSlowlogStatusUNKNOWN string = "UNKNOWN" - - // AddMySQLOKBodyQANMysqlSlowlogStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddMySQLOKBodyQANMysqlSlowlogStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/managementpb/json/client/postgre_sql/add_postgre_sql_responses.go b/api/managementpb/json/client/postgre_sql/add_postgre_sql_responses.go index 1486c45237..0f5ffc41da 100644 --- a/api/managementpb/json/client/postgre_sql/add_postgre_sql_responses.go +++ b/api/managementpb/json/client/postgre_sql/add_postgre_sql_responses.go @@ -826,13 +826,13 @@ type AddPostgreSQLOKBodyPostgresExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -877,7 +877,7 @@ var addPostgreSqlOkBodyPostgresExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -893,6 +893,9 @@ const ( // AddPostgreSQLOKBodyPostgresExporterStatusSTARTING captures enum value "STARTING" AddPostgreSQLOKBodyPostgresExporterStatusSTARTING string = "STARTING" + // AddPostgreSQLOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddPostgreSQLOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddPostgreSQLOKBodyPostgresExporterStatusRUNNING captures enum value "RUNNING" AddPostgreSQLOKBodyPostgresExporterStatusRUNNING string = "RUNNING" @@ -907,9 +910,6 @@ const ( // AddPostgreSQLOKBodyPostgresExporterStatusUNKNOWN captures enum value "UNKNOWN" AddPostgreSQLOKBodyPostgresExporterStatusUNKNOWN string = "UNKNOWN" - - // AddPostgreSQLOKBodyPostgresExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddPostgreSQLOKBodyPostgresExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1050,13 +1050,13 @@ type AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -1089,7 +1089,7 @@ var addPostgreSqlOkBodyQanPostgresqlPgstatementsAgentTypeStatusPropEnum []interf func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1105,6 +1105,9 @@ const ( // AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING captures enum value "STARTING" AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusSTARTING string = "STARTING" + // AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING captures enum value "RUNNING" AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusRUNNING string = "RUNNING" @@ -1119,9 +1122,6 @@ const ( // AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN captures enum value "UNKNOWN" AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusUNKNOWN string = "UNKNOWN" - - // AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddPostgreSQLOKBodyQANPostgresqlPgstatementsAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1265,13 +1265,13 @@ type AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgent struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -1304,7 +1304,7 @@ var addPostgreSqlOkBodyQanPostgresqlPgstatmonitorAgentTypeStatusPropEnum []inter func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1320,6 +1320,9 @@ const ( // AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING captures enum value "STARTING" AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusSTARTING string = "STARTING" + // AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING captures enum value "RUNNING" AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusRUNNING string = "RUNNING" @@ -1334,9 +1337,6 @@ const ( // AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN captures enum value "UNKNOWN" AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusUNKNOWN string = "UNKNOWN" - - // AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddPostgreSQLOKBodyQANPostgresqlPgstatmonitorAgentStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/managementpb/json/client/proxy_sql/add_proxy_sql_responses.go b/api/managementpb/json/client/proxy_sql/add_proxy_sql_responses.go index 2c19013ae4..691005641d 100644 --- a/api/managementpb/json/client/proxy_sql/add_proxy_sql_responses.go +++ b/api/managementpb/json/client/proxy_sql/add_proxy_sql_responses.go @@ -702,13 +702,13 @@ type AddProxySQLOKBodyProxysqlExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -747,7 +747,7 @@ var addProxySqlOkBodyProxysqlExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -763,6 +763,9 @@ const ( // AddProxySQLOKBodyProxysqlExporterStatusSTARTING captures enum value "STARTING" AddProxySQLOKBodyProxysqlExporterStatusSTARTING string = "STARTING" + // AddProxySQLOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddProxySQLOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddProxySQLOKBodyProxysqlExporterStatusRUNNING captures enum value "RUNNING" AddProxySQLOKBodyProxysqlExporterStatusRUNNING string = "RUNNING" @@ -777,9 +780,6 @@ const ( // AddProxySQLOKBodyProxysqlExporterStatusUNKNOWN captures enum value "UNKNOWN" AddProxySQLOKBodyProxysqlExporterStatusUNKNOWN string = "UNKNOWN" - - // AddProxySQLOKBodyProxysqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddProxySQLOKBodyProxysqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/managementpb/json/client/rds/add_rds_responses.go b/api/managementpb/json/client/rds/add_rds_responses.go index e598ee6b0b..2b74152217 100644 --- a/api/managementpb/json/client/rds/add_rds_responses.go +++ b/api/managementpb/json/client/rds/add_rds_responses.go @@ -1033,13 +1033,13 @@ type AddRDSOKBodyMysqldExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -1081,7 +1081,7 @@ var addRdsOkBodyMysqldExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1097,6 +1097,9 @@ const ( // AddRDSOKBodyMysqldExporterStatusSTARTING captures enum value "STARTING" AddRDSOKBodyMysqldExporterStatusSTARTING string = "STARTING" + // AddRDSOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddRDSOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddRDSOKBodyMysqldExporterStatusRUNNING captures enum value "RUNNING" AddRDSOKBodyMysqldExporterStatusRUNNING string = "RUNNING" @@ -1111,9 +1114,6 @@ const ( // AddRDSOKBodyMysqldExporterStatusUNKNOWN captures enum value "UNKNOWN" AddRDSOKBodyMysqldExporterStatusUNKNOWN string = "UNKNOWN" - - // AddRDSOKBodyMysqldExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddRDSOKBodyMysqldExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1383,13 +1383,13 @@ type AddRDSOKBodyPostgresqlExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics. @@ -1434,7 +1434,7 @@ var addRdsOkBodyPostgresqlExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1450,6 +1450,9 @@ const ( // AddRDSOKBodyPostgresqlExporterStatusSTARTING captures enum value "STARTING" AddRDSOKBodyPostgresqlExporterStatusSTARTING string = "STARTING" + // AddRDSOKBodyPostgresqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddRDSOKBodyPostgresqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddRDSOKBodyPostgresqlExporterStatusRUNNING captures enum value "RUNNING" AddRDSOKBodyPostgresqlExporterStatusRUNNING string = "RUNNING" @@ -1464,9 +1467,6 @@ const ( // AddRDSOKBodyPostgresqlExporterStatusUNKNOWN captures enum value "UNKNOWN" AddRDSOKBodyPostgresqlExporterStatusUNKNOWN string = "UNKNOWN" - - // AddRDSOKBodyPostgresqlExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddRDSOKBodyPostgresqlExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1619,13 +1619,13 @@ type AddRDSOKBodyQANMysqlPerfschema struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -1658,7 +1658,7 @@ var addRdsOkBodyQanMysqlPerfschemaTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1674,6 +1674,9 @@ const ( // AddRDSOKBodyQANMysqlPerfschemaStatusSTARTING captures enum value "STARTING" AddRDSOKBodyQANMysqlPerfschemaStatusSTARTING string = "STARTING" + // AddRDSOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddRDSOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddRDSOKBodyQANMysqlPerfschemaStatusRUNNING captures enum value "RUNNING" AddRDSOKBodyQANMysqlPerfschemaStatusRUNNING string = "RUNNING" @@ -1688,9 +1691,6 @@ const ( // AddRDSOKBodyQANMysqlPerfschemaStatusUNKNOWN captures enum value "UNKNOWN" AddRDSOKBodyQANMysqlPerfschemaStatusUNKNOWN string = "UNKNOWN" - - // AddRDSOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddRDSOKBodyQANMysqlPerfschemaStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -1831,13 +1831,13 @@ type AddRDSOKBodyQANPostgresqlPgstatements struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Path to exec process. @@ -1870,7 +1870,7 @@ var addRdsOkBodyQanPostgresqlPgstatementsTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -1886,6 +1886,9 @@ const ( // AddRDSOKBodyQANPostgresqlPgstatementsStatusSTARTING captures enum value "STARTING" AddRDSOKBodyQANPostgresqlPgstatementsStatusSTARTING string = "STARTING" + // AddRDSOKBodyQANPostgresqlPgstatementsStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddRDSOKBodyQANPostgresqlPgstatementsStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddRDSOKBodyQANPostgresqlPgstatementsStatusRUNNING captures enum value "RUNNING" AddRDSOKBodyQANPostgresqlPgstatementsStatusRUNNING string = "RUNNING" @@ -1900,9 +1903,6 @@ const ( // AddRDSOKBodyQANPostgresqlPgstatementsStatusUNKNOWN captures enum value "UNKNOWN" AddRDSOKBodyQANPostgresqlPgstatementsStatusUNKNOWN string = "UNKNOWN" - - // AddRDSOKBodyQANPostgresqlPgstatementsStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddRDSOKBodyQANPostgresqlPgstatementsStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum @@ -2031,13 +2031,13 @@ type AddRDSOKBodyRDSExporter struct { // AgentStatus represents actual Agent status. // // - STARTING: Agent is starting. + // - INITIALIZATION_ERROR: Agent encountered error when starting. // - RUNNING: Agent is running. - // - WAITING: Agent will be restarted automatically soon. + // - WAITING: Agent encountered error when running and will be restarted automatically soon. // - STOPPING: Agent is stopping. // - DONE: Agent finished. // - UNKNOWN: Agent is not connected, we don't know anything about it's state. - // - INITIALIZATION_ERROR: Agent encountered error when starting. - // Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE UNKNOWN INITIALIZATION_ERROR] + // Enum: [AGENT_STATUS_INVALID STARTING INITIALIZATION_ERROR RUNNING WAITING STOPPING DONE UNKNOWN] Status *string `json:"status,omitempty"` // Listen port for scraping metrics (the same for several configurations). @@ -2087,7 +2087,7 @@ var addRdsOkBodyRdsExporterTypeStatusPropEnum []interface{} func init() { var res []string - if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE","UNKNOWN","INITIALIZATION_ERROR"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","INITIALIZATION_ERROR","RUNNING","WAITING","STOPPING","DONE","UNKNOWN"]`), &res); err != nil { panic(err) } for _, v := range res { @@ -2103,6 +2103,9 @@ const ( // AddRDSOKBodyRDSExporterStatusSTARTING captures enum value "STARTING" AddRDSOKBodyRDSExporterStatusSTARTING string = "STARTING" + // AddRDSOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" + AddRDSOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" + // AddRDSOKBodyRDSExporterStatusRUNNING captures enum value "RUNNING" AddRDSOKBodyRDSExporterStatusRUNNING string = "RUNNING" @@ -2117,9 +2120,6 @@ const ( // AddRDSOKBodyRDSExporterStatusUNKNOWN captures enum value "UNKNOWN" AddRDSOKBodyRDSExporterStatusUNKNOWN string = "UNKNOWN" - - // AddRDSOKBodyRDSExporterStatusINITIALIZATIONERROR captures enum value "INITIALIZATION_ERROR" - AddRDSOKBodyRDSExporterStatusINITIALIZATIONERROR string = "INITIALIZATION_ERROR" ) // prop value enum diff --git a/api/managementpb/json/managementpb.json b/api/managementpb/json/managementpb.json index 2d759aaabd..d1fe1e2941 100644 --- a/api/managementpb/json/managementpb.json +++ b/api/managementpb/json/managementpb.json @@ -2664,18 +2664,18 @@ "x-order": 12 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -2755,18 +2755,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -3242,18 +3242,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -3369,18 +3369,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -3491,18 +3491,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -4340,18 +4340,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -4436,18 +4436,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -4537,18 +4537,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -4987,18 +4987,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -5475,18 +5475,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -5744,18 +5744,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -5845,18 +5845,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -5956,18 +5956,18 @@ "x-order": 3 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -6073,18 +6073,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 } diff --git a/api/swagger/swagger-dev.json b/api/swagger/swagger-dev.json index f45ad9499a..fe259c9fab 100644 --- a/api/swagger/swagger-dev.json +++ b/api/swagger/swagger-dev.json @@ -4307,18 +4307,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -4776,18 +4776,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -5089,18 +5089,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -5297,18 +5297,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -5687,18 +5687,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -5951,18 +5951,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -6204,18 +6204,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -6471,18 +6471,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -6750,18 +6750,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -7002,18 +7002,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -7244,18 +7244,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -7444,18 +7444,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -7658,18 +7658,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -8047,18 +8047,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8303,18 +8303,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -8504,18 +8504,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -8720,18 +8720,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8948,18 +8948,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -9157,18 +9157,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -9380,18 +9380,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -9609,18 +9609,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -9817,18 +9817,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -10020,18 +10020,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -10202,18 +10202,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -10384,18 +10384,18 @@ "x-order": 1 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 }, @@ -10454,18 +10454,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -10584,18 +10584,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -10698,18 +10698,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -10826,18 +10826,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -10947,18 +10947,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -11074,18 +11074,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -11196,18 +11196,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -11287,18 +11287,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -11383,18 +11383,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -11484,18 +11484,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -11559,18 +11559,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -11732,18 +11732,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -12023,18 +12023,18 @@ "x-order": 1 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 }, @@ -12096,18 +12096,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -12229,18 +12229,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -12346,18 +12346,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -12477,18 +12477,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -12601,18 +12601,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -12731,18 +12731,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -12856,18 +12856,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -12950,18 +12950,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -13049,18 +13049,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -13153,18 +13153,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -13231,18 +13231,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -13410,18 +13410,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -26180,18 +26180,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -26301,18 +26301,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -26798,18 +26798,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -26930,18 +26930,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -27052,18 +27052,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -28320,18 +28320,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -28439,18 +28439,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -28540,18 +28540,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -28968,18 +28968,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -29346,18 +29346,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -29558,18 +29558,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -29690,18 +29690,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -29871,18 +29871,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -29990,18 +29990,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, diff --git a/api/swagger/swagger.json b/api/swagger/swagger.json index c985d2f5e7..67113e5164 100644 --- a/api/swagger/swagger.json +++ b/api/swagger/swagger.json @@ -1463,18 +1463,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -1932,18 +1932,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -2245,18 +2245,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -2453,18 +2453,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -2843,18 +2843,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -3107,18 +3107,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -3360,18 +3360,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -3627,18 +3627,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -3906,18 +3906,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -4158,18 +4158,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -4400,18 +4400,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -4600,18 +4600,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -4814,18 +4814,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -5203,18 +5203,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -5459,18 +5459,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -5660,18 +5660,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -5876,18 +5876,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -6104,18 +6104,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -6313,18 +6313,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -6536,18 +6536,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -6765,18 +6765,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -6973,18 +6973,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -7176,18 +7176,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -7358,18 +7358,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -7540,18 +7540,18 @@ "x-order": 1 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 }, @@ -7610,18 +7610,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -7740,18 +7740,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -7854,18 +7854,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -7982,18 +7982,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8103,18 +8103,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8230,18 +8230,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -8352,18 +8352,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -8443,18 +8443,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -8539,18 +8539,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -8640,18 +8640,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -8715,18 +8715,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -8888,18 +8888,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -9179,18 +9179,18 @@ "x-order": 1 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 2 }, @@ -9252,18 +9252,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -9385,18 +9385,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -9502,18 +9502,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -9633,18 +9633,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -9757,18 +9757,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -9887,18 +9887,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -10012,18 +10012,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -10106,18 +10106,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -10205,18 +10205,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -10309,18 +10309,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -10387,18 +10387,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -10566,18 +10566,18 @@ "x-order": 6 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 7 }, @@ -17803,18 +17803,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -17924,18 +17924,18 @@ "x-order": 8 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 9 }, @@ -18421,18 +18421,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -18553,18 +18553,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -18675,18 +18675,18 @@ "x-order": 14 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 15 }, @@ -19497,18 +19497,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -19616,18 +19616,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -19717,18 +19717,18 @@ "x-order": 10 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 11 }, @@ -20145,18 +20145,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -20523,18 +20523,18 @@ "x-order": 5 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 6 }, @@ -20735,18 +20735,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -20867,18 +20867,18 @@ "x-order": 13 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 14 }, @@ -21048,18 +21048,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 }, @@ -21167,18 +21167,18 @@ "x-order": 9 }, "status": { - "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - RUNNING: Agent is running.\n - WAITING: Agent will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.\n - INITIALIZATION_ERROR: Agent encountered error when starting.", + "description": "AgentStatus represents actual Agent status.\n\n - STARTING: Agent is starting.\n - INITIALIZATION_ERROR: Agent encountered error when starting.\n - RUNNING: Agent is running.\n - WAITING: Agent encountered error when running and will be restarted automatically soon.\n - STOPPING: Agent is stopping.\n - DONE: Agent finished.\n - UNKNOWN: Agent is not connected, we don't know anything about it's state.", "type": "string", "default": "AGENT_STATUS_INVALID", "enum": [ "AGENT_STATUS_INVALID", "STARTING", + "INITIALIZATION_ERROR", "RUNNING", "WAITING", "STOPPING", "DONE", - "UNKNOWN", - "INITIALIZATION_ERROR" + "UNKNOWN" ], "x-order": 10 },