Skip to content

Commit

Permalink
fix merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
juaduan committed Nov 9, 2021
1 parent c2d340d commit e809b0f
Showing 1 changed file with 34 additions and 85 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,13 @@
"x-nullable": false,
"example": 10
},
"lastUpdatedTime": {
"maxCount": {
"type": "integer",
"description": "Max number of models that can be trained for this subscription.",
"x-nullable": false,
"example": 20
},
"nextLink": {
"type": "string",
"description": "The link to fetch more models."
}
Expand Down Expand Up @@ -914,13 +920,6 @@
"modelAsString": false
}
},
"timestamps": {
"type": "array",
"description": "Error message when detection is failed.",
"items": {
"type": "string"
}
},
"errors": {
"type": "array",
"description": "Error message when detection is failed.",
Expand Down Expand Up @@ -963,6 +962,30 @@
"endTime": "2019-04-01T00:25:00Z",
"errors": []
},
{
"variable": "cpu",
"filledNARatio": 0,
"effectiveCount": 26,
"startTime": "2019-04-01T00:00:00Z",
"endTime": "2019-04-01T00:25:00Z",
"errors": []
},
{
"variable": "data_in_speed",
"filledNARatio": 0,
"effectiveCount": 26,
"startTime": "2019-04-01T00:00:00Z",
"endTime": "2019-04-01T00:25:00Z",
"errors": []
},
{
"variable": "data_out_speed",
"filledNARatio": 0,
"effectiveCount": 26,
"startTime": "2019-04-01T00:00:00Z",
"endTime": "2019-04-01T00:25:00Z",
"errors": []
},
{
"variable": "last_check_point_duration",
"filledNARatio": 0,
Expand Down Expand Up @@ -1056,11 +1079,7 @@
},
"type": "object"
},
"LastDetectionRequest": {
"required": [
"length",
"variables"
],
"AnomalyContributor": {
"properties": {
"contributionScore": {
"type": "number",
Expand All @@ -1069,77 +1088,7 @@
"minimum": 0,
"maximum": 2
},
"length": {
"type": "integer",
"description": "length",
"example": 2
}
},
"type": "object"
},
"VariableValues": {
"required": [
"name",
"timestamps",
"values"
],
"properties": {
"name": {
"type": "string",
"description": "variable name",
"example": "variable_1"
},
"timestamps": {
"type": "array",
"description": "timestamps",
"items": {
"type": "string"
}
},
"values": {
"type": "array",
"description": "values",
"items": {
"type": "number"
}
}
},
"type": "object"
},
"LastDetectionResult": {
"required": [
"results"
],
"properties": {
"variableStates": {
"type": "array",
"items": {
"$ref": "#/definitions/VariableState"
}
},
"results": {
"type": "array",
"items": {
"$ref": "#/definitions/AnomalyValue"
}
},
"errors": {
"type": "array",
"items": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"type": "object"
},
"AnomalyInterpretation": {
"required": [
"contributorScores",
"contributors",
"correlationChanges"
],
"properties": {
"resultId": {
"variable": {
"type": "string",
"description": "Name of the variable.",
"example": "Variable_1"
Expand Down Expand Up @@ -1202,7 +1151,7 @@
"variableStates": {
"type": "array",
"items": {
"type": "number"
"$ref": "#/definitions/VariableState"
}
},
"results": {
Expand Down

0 comments on commit e809b0f

Please sign in to comment.