diff options
author | Dan Timoney <dtimoney@att.com> | 2019-01-22 14:17:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-22 14:17:44 +0000 |
commit | a7cd714978711ff56e4e5dd493512b9b7fce3cc2 (patch) | |
tree | 85f5e986a69a2b434a4c15d0f88ef4d5af911ccf /cds-ui/server/src/models/blueprint.model.ts | |
parent | f9fba481abeaea4016aa8b44e74e71d7174fd76e (diff) | |
parent | e679ac7fe9e8f421f13efaf43262b5e654c6b6fc (diff) |
Merge "Blueprint controller"
Diffstat (limited to 'cds-ui/server/src/models/blueprint.model.ts')
-rw-r--r-- | cds-ui/server/src/models/blueprint.model.ts | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/cds-ui/server/src/models/blueprint.model.ts b/cds-ui/server/src/models/blueprint.model.ts new file mode 100644 index 000000000..d9fe1a84a --- /dev/null +++ b/cds-ui/server/src/models/blueprint.model.ts @@ -0,0 +1,52 @@ +/* +============LICENSE_START========================================== +=================================================================== +Copyright (C) 2018-19 IBM Intellectual Property. All rights reserved. +=================================================================== + +Unless otherwise specified, all software contained herein is licensed +under the Apache License, Version 2.0 (the License); +you may not use this software except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +============LICENSE_END============================================ +*/ + + +import {Entity, model, property} from '@loopback/repository'; + +@model() +export class Blueprint extends Entity { + @property({ + type: 'number', + id: true, + }) + id?: number; + + @property({ + type: 'object', + }) + metadata?: object; + + @property({ + type: 'array', + itemType: 'object', + }) + fileImports?: object[]; + + @property({ + type: 'object', + }) + topologyTemplates?: object; + + constructor(data?: Partial<Blueprint>) { + super(data); + } +} |