2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright 2019 TechMahindra
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
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()">
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>
37 <mat-form-field class="form-field" >
38 <input matInput placeholder="entry_schema" formControlName="entry_schema" (change)="UploadMetadata()">
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>
46 <mat-form-field class="form-field" >
47 <textarea matInput placeholder="Description" formControlName="_description" (change)="UploadMetadata()"></textarea>