2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END============================================
20 * ===================================================================
24 export default class LoopCache {
27 constructor(loopJson) {
28 this.loopJsonCache=loopJson;
31 updateMicroServiceProperties(type, newMsProperties) {
32 for (var policy in this.loopJsonCache["microServicePolicies"]) {
33 if (this.loopJsonCache["microServicePolicies"][policy]["name"] === type) {
34 this.loopJsonCache["microServicePolicies"][policy]["properties"] = newMsProperties;
39 updateGlobalProperties(newGlobalProperties) {
40 this.loopJsonCache["globalPropertiesJson"] = newGlobalProperties;
43 updateOperationalPolicyProperties(newOpProperties) {
44 this.loopJsonCache["operationalPolicies"] = newOpProperties;
48 return this.loopJsonCache["name"];
51 getOperationalPolicyConfigurationJson() {
52 return this.loopJsonCache["operationalPolicies"]["0"]["configurationsJson"];
55 getOperationalPolicies() {
56 return this.loopJsonCache["operationalPolicies"];
59 getGlobalProperties() {
60 return this.loopJsonCache["globalPropertiesJson"];
63 getDcaeDeploymentProperties() {
64 return this.loopJsonCache["globalPropertiesJson"]["dcaeDeployParameters"];
67 getMicroServicePolicies() {
68 return this.loopJsonCache["microServicePolicies"];
71 getMicroServiceForName(name) {
72 var msProperties=this.getMicroServicePolicies();
73 for (var policy in msProperties) {
74 if (msProperties[policy]["name"] === name) {
75 return msProperties[policy];
81 getMicroServicePropertiesForName(name) {
82 var msConfig = this.getMicroServiceForName(name);
83 if (msConfig !== null) {
84 return msConfig["properties"];
89 getMicroServiceJsonRepresentationForName(name) {
90 var msConfig = this.getMicroServiceForName(name);
91 if (msConfig !== null) {
92 return msConfig["jsonRepresentation"];
97 getResourceDetailsVfProperty() {
98 return this.loopJsonCache["modelPropertiesJson"]["resourceDetails"]["VF"];
101 getResourceDetailsVfModuleProperty() {
102 return this.loopJsonCache["modelPropertiesJson"]["resourceDetails"]["VFModule"];
106 return this.loopJsonCache.loopLogs;
109 getComponentStates() {
110 return this.loopJsonCache.components;