1ed8dd0975108d4e3dc9af9b353d07cd88397ee2
[ccsdk/cds.git] /
1 <!--/*
2 * ============LICENSE_START=======================================================
3 * ONAP : CDS
4 * ================================================================================
5 * Copyright 2019 TechMahindra
6 *
7 * Modifications Copyright (C) 2019 IBM
8 *=================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *     http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 */-->
22
23
24 <form [formGroup]="ResourceMetadata" (ngSubmit)="UploadMetadata()">
25         <mat-form-field class="form-field">
26       <input matInput placeholder="Name" formControlName="Resource_Name" (change)="UploadMetadata()">
27     </mat-form-field><mat-form-field class="form-field">
28       <input matInput placeholder="Tags" formControlName="_tags" (change)="UploadMetadata()">
29     </mat-form-field>
30     <mat-form-field class="form-field">
31       <mat-select matInput placeholder="Data Type" formControlName="_type" (selectionChange)="UploadMetadata()">
32         <!-- <mat-option value="string">string</mat-option> -->
33         <!-- <mat-option value="list">list</mat-option> -->
34         <mat-option value="string" *ngFor="let item of dataTypeList" >{{item.modelName}}</mat-option>
35       </mat-select>
36     </mat-form-field>
37     <mat-form-field class="form-field" >
38       <input matInput placeholder="entry_schema" formControlName="entry_schema" (change)="UploadMetadata()">
39     </mat-form-field>
40     <mat-form-field class="form-field" >
41       <mat-select matInput placeholder="required" formControlName="required" (selectionChange)="UploadMetadata()">
42         <mat-option value="true">true</mat-option>
43         <mat-option value="false">false</mat-option>
44       </mat-select>
45     </mat-form-field>
46     <mat-form-field class="form-field" >
47       <textarea matInput placeholder="Description" formControlName="_description" (change)="UploadMetadata()"></textarea>
48     </mat-form-field>
49     <br> 
50 </form>