changedInput schema / properties / eventTypes / description
Previous value: -"AppD event types, e.g. APPLICATION_DEPLOYMENT, APPLICATION_ERROR, DIAGNOSTIC_SESSION, CUSTOM, RESOURCE_POOL_LIMIT_REACHED, etc. At least one required."New value: +"AppD event types, e.g. APPLICATION_DEPLOYMENT, APPLICATION_ERROR, DIAGNOSTIC_SESSION, CUSTOM, RESOURCE_POOL_LIMIT_REACHED, etc. At least one required, up to 50."
changedInput schema / properties / timeRange / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "durationMinutes": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "type": {
- "const": "BEFORE_NOW",
- "type": "string"
- }
- },
- "required": [
- "type",
- "durationMinutes"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "durationMinutes": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "endTimeMs": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "type": {
- "const": "BEFORE_TIME",
- "type": "string"
- }
- },
- "required": [
- "type",
- "durationMinutes",
- "endTimeMs"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "durationMinutes": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "startTimeMs": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "type": {
- "const": "AFTER_TIME",
- "type": "string"
- }
- },
- "required": [
- "type",
- "durationMinutes",
- "startTimeMs"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "endTimeMs": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "startTimeMs": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "type": {
- "const": "BETWEEN_TIMES",
- "type": "string"
- }
- },
- "required": [
- "type",
- "startTimeMs",
- "endTimeMs"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "durationMinutes": {
+ "exclusiveMinimum": 0,
+ "maximum": 525600,
+ "type": "integer"
+ },
+ "type": {
+ "const": "BEFORE_NOW",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "durationMinutes"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "durationMinutes": {
+ "$ref": "#/properties/timeRange/anyOf/0/properties/durationMinutes"
+ },
+ "endTimeMs": {
+ "exclusiveMinimum": 0,
+ "maximum": 253402300799000,
+ "type": "integer"
+ },
+ "type": {
+ "const": "BEFORE_TIME",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "durationMinutes",
+ "endTimeMs"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "durationMinutes": {
+ "$ref": "#/properties/timeRange/anyOf/0/properties/durationMinutes"
+ },
+ "startTimeMs": {
+ "$ref": "#/properties/timeRange/anyOf/1/properties/endTimeMs"
+ },
+ "type": {
+ "const": "AFTER_TIME",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "durationMinutes",
+ "startTimeMs"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "endTimeMs": {
+ "$ref": "#/properties/timeRange/anyOf/1/properties/endTimeMs"
+ },
+ "startTimeMs": {
+ "$ref": "#/properties/timeRange/anyOf/1/properties/endTimeMs"
+ },
+ "type": {
+ "const": "BETWEEN_TIMES",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "startTimeMs",
+ "endTimeMs"
+ ],
+ "type": "object"
+ }
+]