summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/src/src/app/views/database/database-list/dbs-modal/hdfs/hdfs.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'components/datalake-handler/admin/src/src/app/views/database/database-list/dbs-modal/hdfs/hdfs.component.html')
-rw-r--r--components/datalake-handler/admin/src/src/app/views/database/database-list/dbs-modal/hdfs/hdfs.component.html144
1 files changed, 0 insertions, 144 deletions
diff --git a/components/datalake-handler/admin/src/src/app/views/database/database-list/dbs-modal/hdfs/hdfs.component.html b/components/datalake-handler/admin/src/src/app/views/database/database-list/dbs-modal/hdfs/hdfs.component.html
deleted file mode 100644
index a12165cd..00000000
--- a/components/datalake-handler/admin/src/src/app/views/database/database-list/dbs-modal/hdfs/hdfs.component.html
+++ /dev/null
@@ -1,144 +0,0 @@
-<!--
- Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file 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.
--->
-<div class="p-1">
- <div class="modal-header pb-0 border-0">
- <div class="container-fluid">
- <div class="row">
- <div class="col-md-12">
- <label class="dl-h3">{{ this.dbInputTitle }}</label>
- </div>
- </div>
- <div class="row">
- <div class="col-md-12">
- <hr>
- </div>
- </div>
- </div>
- </div>
-
- <div class="modal-body border-0">
- <div class="container">
-
- <div class="form-group row row-wrapper">
- <div class="row-half-item usual-item">
- <div>
- <label class="dl-emphasis1" >{{ 'NAME' | translate }}</label>
- </div>
- <div>
- <input [(ngModel)]="this.dbInput.name" class="form-control dl-input-text input_style" placeholder="" type="text"/>
- </div>
- </div>
-
- <div class="row-half-item usual-item">
- <div>
- <label class="dl-emphasis1" >{{ 'STATUS' | translate }}</label>
- </div>
- <div>
- <label class="dl-switch">
- <input [(ngModel)]="this.dbInput.enabled" id="switch" type="checkbox" />
- <span class="dl-slider round"></span>
- </label>
- </div>
- </div>
- </div>
-
- <div class="form-group row row-wrapper">
- <div class="row-half-item usual-item">
- <div>
- <label class="dl-emphasis1" >{{ 'HOST' | translate }}</label>
- </div>
- <div>
- <input [(ngModel)]="this.dbInput.host" class="form-control dl-input-text input_style" type="text" placeholder="" required="required" />
- </div>
- </div>
-
- <div class="row-half-item usual-item">
- <div>
- <label class="dl-emphasis1" >{{ 'PORT' | translate }}</label>
- </div>
- <div>
- <input [(ngModel)]="this.dbInput.port" class="form-control dl-input-text input_style" type="text" placeholder="" required="required" />
- </div>
- </div>
- </div>
-
- <div class="form-group row row-wrapper">
- <div class="row-half-item usual-item">
- <div>
- <label class="dl-emphasis1">{{ 'SECURE_COMMUNICATION' | translate }}</label>
- </div>
- <div class="input-group" style="width: 120px">
- <label class="input-group-text dl-input-chk-label">
- <input [(ngModel)]="this.dbInput.encrypt" id="chkSaveRaw" type="checkbox" />
- <span class="dl-input-checkmark"></span>
- </label>
- <label class="form-control dl-input-chk" for="chkSaveRaw">
- Secure
- </label>
- </div>
- </div>
-
- <div class="row-half-item usual-item">
- <div>
- <label class="dl-emphasis1" >{{ 'DB_TYPE' | translate }}</label>
- </div>
- <div>
- <select #d_dbTypeId class="custom-select dl-input-text input_style" disabled>
- <option *ngFor="let item of this.dbTypeIdList" [selected]="item == this.defaultDbType">{{ item }}</option>
- </select>
- </div>
- </div>
- </div>
-
- <div class="form-group row row-wrapper">
- <div class="row-half-item usual-item">
- <div>
- <label class="dl-emphasis1" >{{ 'DATABASE' | translate }}</label>
- </div>
- <div>
- <input [(ngModel)]="this.dbInput.database" class="form-control dl-input-text input_style" type="text" required="required" />
- </div>
- </div>
- </div>
- </div>
- </div>
-
-
- <div class="modal-footer border-0 pt-0 pb-2">
- <div class="container">
- <div class="row">
- <div class="col-md-6 p-0">
-
- </div>
- <div class="col-md-3 p-1">
- <span>
- <button type="button" class="btn dl-btn-dark btn-block" (click)="this.passBack()">
- Save
- </button>
- </span>
- </div>
- <div class="col-md-3 p-1">
- <span>
- <button type="button" class="btn dl-btn-light btn-block" (click)="activeModal.close('Close click')">
- Cancel
- </button>
- </span>
- </div>
- </div>
- </div>
- </div>
-</div>
-