blob: b721b260112da220a1b75b80eaa1b4f23c22c7ce [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import { ComputationalResourceApplicationTemplate } from './computationalResourceApplicationTemplate.model';
import { ResourceShapeTypesModel } from './resourceShapeTypes.model';
import { ImageType } from './imageType.enum';
import { SortUtils } from '../util';
export class ComputationalResourceImage {
image: string;
template_name: string;
description: string;
environment_type: ImageType;
shapes: ResourceShapeTypesModel;
application_templates: Array<ComputationalResourceApplicationTemplate>;
limits: any;
constructor(jsonModel: any) {
this.image = jsonModel.image;
this.template_name = jsonModel.template_name;
this.description = jsonModel.description;
this.environment_type = ImageType.ะกOMPUTATIONAL;
this.application_templates = [];
this.limits = jsonModel.limits;
this.shapes = new ResourceShapeTypesModel(SortUtils.shapesSort(jsonModel.computation_resources_shapes));
if (jsonModel.templates && jsonModel.templates.length > 0) {
for (let index = 0; index < jsonModel.templates.length; index++) {
this.application_templates.push(new ComputationalResourceApplicationTemplate(
jsonModel.templates[index],
this.shapes,
this.image,
this.template_name,
this.description)
);
}
}
}
}