d40dbd95780881b9f1d9eb670303862d9f270919
[ccsdk/cds.git] / cds-ui / client / src / app / feature-modules / resource-definition / resource-edit / resource-metadata / resource-metadata.component.html
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 <form [formGroup]="ResourceMetadata" (ngSubmit)="UploadMetadata()">
24         <mat-form-field class="form-field">
25       <input matInput placeholder="Name" formControlName="Resource_Name">
26     </mat-form-field><mat-form-field class="form-field">
27       <input matInput placeholder="Tags" formControlName="_tags">
28     </mat-form-field>
29     <mat-form-field class="form-field">
30       <mat-select matInput placeholder="Data Type" formControlName="_type">
31         <mat-option value="string">string</mat-option>
32         <mat-option value="list">list</mat-option>
33       </mat-select>
34     </mat-form-field>
35     <mat-form-field class="form-field" >
36       <input matInput placeholder="entry_schema" formControlName="entry_schema">
37     </mat-form-field>
38     <mat-form-field class="form-field" >
39       <mat-select matInput placeholder="required" formControlName="required">
40         <mat-option value="true">true</mat-option>
41         <mat-option value="false">false</mat-option>
42       </mat-select>
43     </mat-form-field>
44     <mat-form-field class="form-field" >
45       <textarea matInput placeholder="Description" formControlName="_description"></textarea>
46     </mat-form-field>
47     <br>
48     <div>
49         <button mat-button class="matStepNextBtn" type="submit">Save Metadata</button>
50     </div>  
51 </form>