Skip to content

Commit

Permalink
Update to camel 3.0.0-M4 #811
Browse files Browse the repository at this point in the history
  • Loading branch information
lburgazzoli committed Jul 15, 2019
1 parent f37e79d commit 71cb402
Show file tree
Hide file tree
Showing 14 changed files with 312 additions and 4,338 deletions.
41 changes: 41 additions & 0 deletions assets/json-schema/Integration.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,34 @@
"additionalProperties": false,
"type": "object"
},
"IntegrationCondition": {
"required": [
"type",
"status"
],
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/Time"
},
"lastUpdateTime": {
"$ref": "#/definitions/Time"
},
"message": {
"type": "string"
},
"reason": {
"type": "string"
},
"status": {
"type": "string"
},
"type": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"IntegrationSpec": {
"properties": {
"configuration": {
Expand Down Expand Up @@ -243,6 +271,13 @@
"camelVersion": {
"type": "string"
},
"conditions": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/IntegrationCondition"
},
"type": "array"
},
"configuration": {
"items": {
"$ref": "#/definitions/ConfigurationSpec"
Expand Down Expand Up @@ -277,8 +312,14 @@
"phase": {
"type": "string"
},
"platform": {
"type": "string"
},
"runtimeVersion": {
"type": "string"
},
"version": {
"type": "string"
}
},
"additionalProperties": false,
Expand Down
41 changes: 41 additions & 0 deletions assets/json-schema/IntegrationKit.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,34 @@
"additionalProperties": false,
"type": "object"
},
"IntegrationKitCondition": {
"required": [
"type",
"status"
],
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/Time"
},
"lastUpdateTime": {
"$ref": "#/definitions/Time"
},
"message": {
"type": "string"
},
"reason": {
"type": "string"
},
"status": {
"type": "string"
},
"type": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"IntegrationKitSpec": {
"properties": {
"configuration": {
Expand Down Expand Up @@ -251,6 +279,13 @@
"camelVersion": {
"type": "string"
},
"conditions": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/IntegrationKitCondition"
},
"type": "array"
},
"digest": {
"type": "string"
},
Expand All @@ -264,11 +299,17 @@
"phase": {
"type": "string"
},
"platform": {
"type": "string"
},
"publicImage": {
"type": "string"
},
"runtimeVersion": {
"type": "string"
},
"version": {
"type": "string"
}
},
"additionalProperties": false,
Expand Down
Loading

0 comments on commit 71cb402

Please sign in to comment.