diff options
Diffstat (limited to 'src')
20 files changed, 369 insertions, 1065 deletions
diff --git a/src/main/java/org/onap/clamp/loop/CsarInstaller.java b/src/main/java/org/onap/clamp/loop/CsarInstaller.java index 38a6f931..ab8069f3 100644 --- a/src/main/java/org/onap/clamp/loop/CsarInstaller.java +++ b/src/main/java/org/onap/clamp/loop/CsarInstaller.java @@ -52,8 +52,6 @@ import org.onap.clamp.policy.operational.OperationalPolicy; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Component; -import org.springframework.transaction.annotation.Propagation; -import org.springframework.transaction.annotation.Transactional; /** * This class will be instantiated by spring config, and used by Sdc Controller. @@ -129,7 +127,6 @@ public class CsarInstaller { * @throws SdcArtifactInstallerException The SdcArtifactInstallerException * @throws InterruptedException The InterruptedException */ - @Transactional(propagation = Propagation.REQUIRES_NEW) public void installTheLoop(CsarHandler csar, Service service) throws SdcArtifactInstallerException, InterruptedException { try { diff --git a/src/main/java/org/onap/clamp/loop/Loop.java b/src/main/java/org/onap/clamp/loop/Loop.java index 38378304..6b9a924b 100644 --- a/src/main/java/org/onap/clamp/loop/Loop.java +++ b/src/main/java/org/onap/clamp/loop/Loop.java @@ -127,8 +127,8 @@ public class Loop extends AuditEntity implements Serializable { @Expose @ManyToMany(cascade = { CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH }, fetch = FetchType.EAGER) - @JoinTable(name = "loops_microservicepolicies", joinColumns = @JoinColumn(name = "loop_id"), - inverseJoinColumns = @JoinColumn(name = "microservicepolicy_id")) + @JoinTable(name = "loops_to_microservicepolicies", joinColumns = @JoinColumn(name = "loop_name"), + inverseJoinColumns = @JoinColumn(name = "microservicepolicy_name")) private Set<MicroServicePolicy> microServicePolicies = new HashSet<>(); @Expose diff --git a/src/main/java/org/onap/clamp/loop/template/MicroServiceModel.java b/src/main/java/org/onap/clamp/loop/template/LoopElementModel.java index 1e2b140e..c22ca1a6 100644 --- a/src/main/java/org/onap/clamp/loop/template/MicroServiceModel.java +++ b/src/main/java/org/onap/clamp/loop/template/LoopElementModel.java @@ -28,6 +28,8 @@ import com.google.gson.annotations.Expose; import java.io.Serializable; import java.util.HashSet; import java.util.Set; +import java.util.SortedSet; +import java.util.TreeSet; import javax.persistence.CascadeType; import javax.persistence.Column; @@ -35,11 +37,12 @@ import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.JoinColumn; -import javax.persistence.JoinColumns; -import javax.persistence.ManyToOne; +import javax.persistence.JoinTable; +import javax.persistence.ManyToMany; import javax.persistence.OneToMany; import javax.persistence.Table; +import org.hibernate.annotations.SortNatural; import org.onap.clamp.loop.common.AuditEntity; /** @@ -47,9 +50,9 @@ import org.onap.clamp.loop.common.AuditEntity; */ @Entity -@Table(name = "micro_service_models") -public class MicroServiceModel extends AuditEntity implements Serializable { - +@Table(name = "loop_element_models") +public class LoopElementModel extends AuditEntity implements Serializable { + public static final String DEFAULT_GROUP_NAME = "DEFAULT"; /** * The serial version id. */ @@ -61,41 +64,50 @@ public class MicroServiceModel extends AuditEntity implements Serializable { private String name; /** - * This variable is used to store the type mentioned in the micro-service - * blueprint. + * Here we store the blueprint coming from DCAE. */ - @Expose - @Column(nullable = false, name = "policy_type") - private String policyType; - @Column(nullable = false, name = "blueprint_yaml") private String blueprint; + /** + * The type of element + */ + @Column(nullable = false, name = "loop_element_type") + private String loopElementType; + + /** + * This variable is used to store the type mentioned in the micro-service + * blueprint. + */ @Expose - @ManyToOne(fetch = FetchType.EAGER, cascade = { CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH }) - @JoinColumns({ @JoinColumn(name = "policy_model_type", referencedColumnName = "policy_model_type"), - @JoinColumn(name = "policy_model_version", referencedColumnName = "version") }) - private PolicyModel policyModel; + @ManyToMany(fetch = FetchType.EAGER, cascade = { CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH }) + @JoinTable(name = "loopelementmodels_to_policymodels", + joinColumns = @JoinColumn(name = "loop_element_name", referencedColumnName = "name"), + inverseJoinColumns = { @JoinColumn(name = "policy_model_type", referencedColumnName = "policy_model_type"), + @JoinColumn(name = "policy_model_version", referencedColumnName = "version") }) + @SortNatural + private SortedSet<PolicyModel> policyModels = new TreeSet<>(); - @OneToMany(fetch = FetchType.LAZY, mappedBy = "microServiceModel", orphanRemoval = true) - private Set<TemplateMicroServiceModel> usedByLoopTemplates = new HashSet<>(); + @OneToMany(fetch = FetchType.LAZY, mappedBy = "loopElementModel", orphanRemoval = true) + private Set<LoopTemplateLoopElementModel> usedByLoopTemplates = new HashSet<>(); /** - * policyModel getter. + * policyModels getter. * * @return the policyModel */ - public PolicyModel getPolicyModel() { - return policyModel; + public SortedSet<PolicyModel> getPolicyModels() { + return policyModels; } /** - * policyModel setter. + * Method to add a new policyModel to the list. * - * @param policyModel the policyModel to set + * @param policyModel */ - public void setPolicyModel(PolicyModel policyModel) { - this.policyModel = policyModel; + public void addPolicyModel(PolicyModel policyModel) { + policyModels.add(policyModel); + policyModel.getUsedByElementModels().add(this); } /** @@ -117,24 +129,6 @@ public class MicroServiceModel extends AuditEntity implements Serializable { } /** - * policyType getter. - * - * @return the policyType - */ - public String getPolicyType() { - return policyType; - } - - /** - * policyType setter. - * - * @param policyType the policyType to set - */ - public void setPolicyType(String policyType) { - this.policyType = policyType; - } - - /** * blueprint getter. * * @return the blueprint @@ -153,35 +147,46 @@ public class MicroServiceModel extends AuditEntity implements Serializable { } /** + * @return the loopElementType + */ + public String getLoopElementType() { + return loopElementType; + } + + /** + * @param loopElementType the loopElementType to set + */ + public void setLoopElementType(String loopElementType) { + this.loopElementType = loopElementType; + } + + /** * usedByLoopTemplates getter. * * @return the usedByLoopTemplates */ - public Set<TemplateMicroServiceModel> getUsedByLoopTemplates() { + public Set<LoopTemplateLoopElementModel> getUsedByLoopTemplates() { return usedByLoopTemplates; } /** * Default constructor for serialization. */ - public MicroServiceModel() { + public LoopElementModel() { } /** * Constructor. * - * @param name The name id - * @param policyType The policy model type like - * onap.policies.controlloop.operational.common.Apex - * @param blueprint The blueprint defined for dcae that contains the policy - * type to use - * @param policyModel The policy model for the policy type mentioned here + * @param name The name id + * @param loopElementType The type of loop element + * @param blueprint The blueprint defined for dcae that contains the + * policy type to use */ - public MicroServiceModel(String name, String policyType, String blueprint, PolicyModel policyModel) { + public LoopElementModel(String name, String loopElementType, String blueprint) { this.name = name; - this.policyType = policyType; + this.loopElementType = loopElementType; this.blueprint = blueprint; - this.policyModel = policyModel; } @Override @@ -203,7 +208,7 @@ public class MicroServiceModel extends AuditEntity implements Serializable { if (getClass() != obj.getClass()) { return false; } - MicroServiceModel other = (MicroServiceModel) obj; + LoopElementModel other = (LoopElementModel) obj; if (name == null) { if (other.name != null) { return false; diff --git a/src/main/java/org/onap/clamp/loop/template/MicroServiceModelsRepository.java b/src/main/java/org/onap/clamp/loop/template/LoopElementModelsRepository.java index 2b187048..27b82189 100644 --- a/src/main/java/org/onap/clamp/loop/template/MicroServiceModelsRepository.java +++ b/src/main/java/org/onap/clamp/loop/template/LoopElementModelsRepository.java @@ -27,5 +27,5 @@ import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository -public interface MicroServiceModelsRepository extends JpaRepository<MicroServiceModel, String> { +public interface LoopElementModelsRepository extends JpaRepository<LoopElementModel, String> { } diff --git a/src/main/java/org/onap/clamp/loop/template/LoopTemplate.java b/src/main/java/org/onap/clamp/loop/template/LoopTemplate.java index 10367e77..20574ff6 100644 --- a/src/main/java/org/onap/clamp/loop/template/LoopTemplate.java +++ b/src/main/java/org/onap/clamp/loop/template/LoopTemplate.java @@ -72,7 +72,7 @@ public class LoopTemplate extends AuditEntity implements Serializable { @Expose @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "loopTemplate", orphanRemoval = true) @SortNatural - private SortedSet<TemplateMicroServiceModel> microServiceModelUsed = new TreeSet<>(); + private SortedSet<LoopTemplateLoopElementModel> loopElementModelsUsed = new TreeSet<>(); @Expose @ManyToOne(fetch = FetchType.EAGER, cascade = { CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH }) @@ -138,12 +138,12 @@ public class LoopTemplate extends AuditEntity implements Serializable { } /** - * microServiceModelUsed getter. + * loopElementModelsUsed getter. * - * @return the microServiceModelUsed + * @return the loopElementModelsUsed */ - public SortedSet<TemplateMicroServiceModel> getMicroServiceModelUsed() { - return microServiceModelUsed; + public SortedSet<LoopTemplateLoopElementModel> getLoopElementModelsUsed() { + return loopElementModelsUsed; } /** @@ -165,29 +165,30 @@ public class LoopTemplate extends AuditEntity implements Serializable { } /** - * Add a microService model to the current template, the microservice is added - * at the end of the list so the flowOrder is computed automatically. + * Add a loopElement to the current template, the loopElementModel is added at + * the end of the list so the flowOrder is computed automatically. * - * @param microServiceModel The microserviceModel to add + * @param loopElementModel The loopElementModel to add */ - public void addMicroServiceModel(MicroServiceModel microServiceModel) { - TemplateMicroServiceModel jointEntry = new TemplateMicroServiceModel(this, microServiceModel, - this.microServiceModelUsed.size()); - this.microServiceModelUsed.add(jointEntry); - microServiceModel.getUsedByLoopTemplates().add(jointEntry); + public void addLoopElementModel(LoopElementModel loopElementModel) { + LoopTemplateLoopElementModel jointEntry = new LoopTemplateLoopElementModel(this, loopElementModel, + this.loopElementModelsUsed.size()); + this.loopElementModelsUsed.add(jointEntry); + loopElementModel.getUsedByLoopTemplates().add(jointEntry); } /** - * Add a microService model to the current template, the flow order must be + * Add a loopElement model to the current template, the flow order must be * specified manually. * - * @param microServiceModel The microserviceModel to add - * @param listPosition The position in the flow + * @param loopElementModel The loopElementModel to add + * @param listPosition The position in the flow */ - public void addMicroServiceModel(MicroServiceModel microServiceModel, Integer listPosition) { - TemplateMicroServiceModel jointEntry = new TemplateMicroServiceModel(this, microServiceModel, listPosition); - this.microServiceModelUsed.add(jointEntry); - microServiceModel.getUsedByLoopTemplates().add(jointEntry); + public void addLoopElementModel(LoopElementModel loopElementModel, Integer listPosition) { + LoopTemplateLoopElementModel jointEntry = new LoopTemplateLoopElementModel(this, loopElementModel, + listPosition); + this.loopElementModelsUsed.add(jointEntry); + loopElementModel.getUsedByLoopTemplates().add(jointEntry); } /** diff --git a/src/main/java/org/onap/clamp/loop/template/TemplateMicroServiceModel.java b/src/main/java/org/onap/clamp/loop/template/LoopTemplateLoopElementModel.java index 7547c1f7..aca16bc0 100644 --- a/src/main/java/org/onap/clamp/loop/template/TemplateMicroServiceModel.java +++ b/src/main/java/org/onap/clamp/loop/template/LoopTemplateLoopElementModel.java @@ -38,8 +38,8 @@ import javax.persistence.MapsId; import javax.persistence.Table; @Entity -@Table(name = "templates_microservicemodels") -public class TemplateMicroServiceModel implements Serializable, Comparable<TemplateMicroServiceModel> { +@Table(name = "looptemplates_to_loopelementmodels") +public class LoopTemplateLoopElementModel implements Serializable, Comparable<LoopTemplateLoopElementModel> { /** * Serial ID. @@ -47,7 +47,7 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ private static final long serialVersionUID = 5924989899078094245L; @EmbeddedId - private TemplateMicroServiceModelId templateMicroServiceModelId; + private LoopTemplateLoopElementModelId loopTemplateLoopElementModelId; @ManyToOne(fetch = FetchType.LAZY) @MapsId("loopTemplateName") @@ -56,9 +56,9 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ @Expose @ManyToOne(fetch = FetchType.EAGER, cascade = { CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH }) - @MapsId("microServiceModelName") - @JoinColumn(name = "micro_service_model_name") - private MicroServiceModel microServiceModel; + @MapsId("loopElementModelName") + @JoinColumn(name = "loop_element_model_name") + private LoopElementModel loopElementModel; @Expose @Column(nullable = false, name = "flow_order") @@ -67,24 +67,24 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ /** * Default constructor for serialization. */ - public TemplateMicroServiceModel() { + public LoopTemplateLoopElementModel() { } /** * Constructor. * - * @param loopTemplate The loop template object - * @param microServiceModel The microServiceModel object - * @param flowOrder The position of the micro service in the flow + * @param loopTemplate The loop template object + * @param loopElementModel The loopElementModel object + * @param flowOrder The position of the micro service in the flow */ - public TemplateMicroServiceModel(LoopTemplate loopTemplate, MicroServiceModel microServiceModel, + public LoopTemplateLoopElementModel(LoopTemplate loopTemplate, LoopElementModel loopElementModel, Integer flowOrder) { this.loopTemplate = loopTemplate; - this.microServiceModel = microServiceModel; + this.loopElementModel = loopElementModel; this.flowOrder = flowOrder; - this.templateMicroServiceModelId = new TemplateMicroServiceModelId(loopTemplate.getName(), - microServiceModel.getName()); + this.loopTemplateLoopElementModelId = new LoopTemplateLoopElementModelId(loopTemplate.getName(), + loopElementModel.getName()); } /** @@ -106,21 +106,21 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ } /** - * microServiceModel getter. + * loopElementModel getter. * - * @return the microServiceModel + * @return the loopElementModel */ - public MicroServiceModel getMicroServiceModel() { - return microServiceModel; + public LoopElementModel getLoopElementModel() { + return loopElementModel; } /** - * microServiceModel setter. + * loopElementModel setter. * - * @param microServiceModel the microServiceModel to set + * @param loopElementModel the loopElementModel to set */ - public void setMicroServiceModel(MicroServiceModel microServiceModel) { - this.microServiceModel = microServiceModel; + public void setLoopElementModel(LoopElementModel loopElementModel) { + this.loopElementModel = loopElementModel; } /** @@ -142,7 +142,7 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ } @Override - public int compareTo(TemplateMicroServiceModel arg0) { + public int compareTo(LoopTemplateLoopElementModel arg0) { // Reverse it, so that by default we have the latest if (getFlowOrder() == null) { return 1; @@ -158,7 +158,7 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ final int prime = 31; int result = 1; result = prime * result + ((loopTemplate == null) ? 0 : loopTemplate.hashCode()); - result = prime * result + ((microServiceModel == null) ? 0 : microServiceModel.hashCode()); + result = prime * result + ((loopElementModel == null) ? 0 : loopElementModel.hashCode()); return result; } @@ -173,7 +173,7 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ if (getClass() != obj.getClass()) { return false; } - TemplateMicroServiceModel other = (TemplateMicroServiceModel) obj; + LoopTemplateLoopElementModel other = (LoopTemplateLoopElementModel) obj; if (loopTemplate == null) { if (other.loopTemplate != null) { return false; @@ -181,11 +181,11 @@ public class TemplateMicroServiceModel implements Serializable, Comparable<Templ } else if (!loopTemplate.equals(other.loopTemplate)) { return false; } - if (microServiceModel == null) { - if (other.microServiceModel != null) { + if (loopElementModel == null) { + if (other.loopElementModel != null) { return false; } - } else if (!microServiceModel.equals(other.microServiceModel)) { + } else if (!loopElementModel.equals(other.loopElementModel)) { return false; } return true; diff --git a/src/main/java/org/onap/clamp/loop/template/TemplateMicroServiceModelId.java b/src/main/java/org/onap/clamp/loop/template/LoopTemplateLoopElementModelId.java index 74c76897..3e2f8ad4 100644 --- a/src/main/java/org/onap/clamp/loop/template/TemplateMicroServiceModelId.java +++ b/src/main/java/org/onap/clamp/loop/template/LoopTemplateLoopElementModelId.java @@ -31,7 +31,7 @@ import javax.persistence.Column; import javax.persistence.Embeddable; @Embeddable -public class TemplateMicroServiceModelId implements Serializable { +public class LoopTemplateLoopElementModelId implements Serializable { /** * Serial ID. @@ -43,13 +43,13 @@ public class TemplateMicroServiceModelId implements Serializable { private String loopTemplateName; @Expose - @Column(name = "micro_service_model_name") - private String microServiceModelName; + @Column(name = "loop_element_model_name") + private String loopElementModelName; /** * Default constructor for serialization. */ - public TemplateMicroServiceModelId() { + public LoopTemplateLoopElementModelId() { } @@ -59,9 +59,9 @@ public class TemplateMicroServiceModelId implements Serializable { * @param loopTemplateName The loop template name id * @param microServiceModelName THe micro Service name id */ - public TemplateMicroServiceModelId(String loopTemplateName, String microServiceModelName) { + public LoopTemplateLoopElementModelId(String loopTemplateName, String microServiceModelName) { this.loopTemplateName = loopTemplateName; - this.microServiceModelName = microServiceModelName; + this.loopElementModelName = microServiceModelName; } /** @@ -87,16 +87,16 @@ public class TemplateMicroServiceModelId implements Serializable { * * @return the microServiceModelName */ - public String getMicroServiceModelName() { - return microServiceModelName; + public String getLoopElementModelName() { + return loopElementModelName; } /** - * microServiceModelName setter. + * loopElementModelName setter. * - * @param microServiceModelName the microServiceModelName to set + * @param loopElementModelName the loopElementModelName to set */ - public void setMicroServiceModelName(String microServiceModelName) { - this.microServiceModelName = microServiceModelName; + public void setLoopElementModelName(String loopElementModelName) { + this.loopElementModelName = loopElementModelName; } } diff --git a/src/main/java/org/onap/clamp/loop/template/PolicyModel.java b/src/main/java/org/onap/clamp/loop/template/PolicyModel.java index e6580bee..00d58a82 100644 --- a/src/main/java/org/onap/clamp/loop/template/PolicyModel.java +++ b/src/main/java/org/onap/clamp/loop/template/PolicyModel.java @@ -26,11 +26,15 @@ package org.onap.clamp.loop.template; import com.google.gson.annotations.Expose; import java.io.Serializable; +import java.util.HashSet; +import java.util.Set; import javax.persistence.Column; import javax.persistence.Entity; +import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.IdClass; +import javax.persistence.ManyToMany; import javax.persistence.Table; import org.onap.clamp.loop.common.AuditEntity; @@ -74,9 +78,15 @@ public class PolicyModel extends AuditEntity implements Serializable, Comparable @Column(name = "policy_acronym") private String policyAcronym; - @Expose - @Column(name = "policy_variant") - private String policyVariant; + @ManyToMany(mappedBy = "policyModels", fetch = FetchType.EAGER) + private Set<LoopElementModel> usedByElementModels = new HashSet<>(); + + /** + * @return the usedByElementModels + */ + public Set<LoopElementModel> getUsedByElementModels() { + return usedByElementModels; + } /** * policyModelTosca getter. @@ -152,24 +162,6 @@ public class PolicyModel extends AuditEntity implements Serializable, Comparable } /** - * policyVariant getter. - * - * @return the policyVariant value - */ - public String getPolicyVariant() { - return policyVariant; - } - - /** - * policyVariant setter. - * - * @param policyVariant The policyVariant to set - */ - public void setPolicyVariant(String policyVariant) { - this.policyVariant = policyVariant; - } - - /** * Default constructor for serialization. */ public PolicyModel() { @@ -181,16 +173,13 @@ public class PolicyModel extends AuditEntity implements Serializable, Comparable * @param policyType The policyType (referenced in the blueprint) * @param policyModelTosca The policy tosca model in yaml * @param version the version like 1.0.0 - * @param policyAcronym Short policy name if it exists * @param policyVariant Subtype for policy if it exists (could be used by UI) */ - public PolicyModel(String policyType, String policyModelTosca, String version, String policyAcronym, - String policyVariant) { + public PolicyModel(String policyType, String policyModelTosca, String version, String policyAcronym) { this.policyModelType = policyType; this.policyModelTosca = policyModelTosca; this.version = version; this.policyAcronym = policyAcronym; - this.policyVariant = policyVariant; } @Override diff --git a/src/main/java/org/onap/clamp/policy/Policy.java b/src/main/java/org/onap/clamp/policy/Policy.java index fc097bd6..c6568205 100644 --- a/src/main/java/org/onap/clamp/policy/Policy.java +++ b/src/main/java/org/onap/clamp/policy/Policy.java @@ -24,37 +24,148 @@ package org.onap.clamp.policy; import com.google.gson.JsonObject; +import com.google.gson.annotations.Expose; import java.io.UnsupportedEncodingException; -public interface Policy { +import javax.persistence.Column; +import javax.persistence.FetchType; +import javax.persistence.JoinColumn; +import javax.persistence.ManyToOne; +import javax.persistence.MappedSuperclass; - String getName(); +import org.hibernate.annotations.Type; +import org.hibernate.annotations.TypeDef; +import org.hibernate.annotations.TypeDefs; +import org.onap.clamp.dao.model.jsontype.StringJsonUserType; +import org.onap.clamp.loop.common.AuditEntity; +import org.onap.clamp.loop.template.LoopElementModel; - JsonObject getJsonRepresentation(); +@MappedSuperclass +@TypeDefs({ @TypeDef(name = "json", typeClass = StringJsonUserType.class) }) +public abstract class Policy extends AuditEntity { - String createPolicyPayload() throws UnsupportedEncodingException; + @Expose + @Type(type = "json") + @Column(columnDefinition = "json", name = "json_representation", nullable = false) + private JsonObject jsonRepresentation; + + @Expose + @Type(type = "json") + @Column(columnDefinition = "json", name = "configurations_json") + private JsonObject configurationsJson; + + @Expose + @ManyToOne(fetch = FetchType.EAGER) + @JoinColumn(name = "loop_element_model_id") + private LoopElementModel loopElementModel; + + @Expose + @Column(name = "pdp_group") + private String pdpGroup; + + public abstract String createPolicyPayload() throws UnsupportedEncodingException; + + /** + * Name getter. + * + * @return the name + */ + public abstract String getName(); + + /** + * Name setter. + * + */ + public abstract void setName(String name); + + /** + * jsonRepresentation getter. + * + * @return the jsonRepresentation + */ + public JsonObject getJsonRepresentation() { + return jsonRepresentation; + } + + /** + * jsonRepresentation setter. + * + * @param jsonRepresentation The jsonRepresentation to set + */ + public void setJsonRepresentation(JsonObject jsonRepresentation) { + this.jsonRepresentation = jsonRepresentation; + } + + /** + * configurationsJson getter. + * + * @return The configurationsJson + */ + public JsonObject getConfigurationsJson() { + return configurationsJson; + } + + /** + * configurationsJson setter. + * + * @param configurationsJson the configurationsJson to set + */ + public void setConfigurationsJson(JsonObject configurationsJson) { + this.configurationsJson = configurationsJson; + } + + /** + * loopElementModel getter. + * + * @return the loopElementModel + */ + public LoopElementModel getLoopElementModel() { + return loopElementModel; + } + + /** + * loopElementModel setter. + * + * @param loopElementModel the loopElementModel to set + */ + public void setLoopElementModel(LoopElementModel loopElementModel) { + this.loopElementModel = loopElementModel; + } + + /** + * pdpGroup getter. + * + * @return the pdpGroup + */ + public String getPdpGroup() { + return pdpGroup; + } + + /** + * pdpGroup setter. + * + * @param pdpGroup the pdpGroup to set + */ + public void setPdpGroup(String pdpGroup) { + this.pdpGroup = pdpGroup; + } /** * Generate the policy name. * - * @param policyType - * The policy type - * @param serviceName - * The service name - * @param serviceVersion - * The service version - * @param resourceName - * The resource name - * @param blueprintFilename - * The blueprint file name + * @param policyType The policy type + * @param serviceName The service name + * @param serviceVersion The service version + * @param resourceName The resource name + * @param blueprintFilename The blueprint file name * @return The generated policy name */ - static String generatePolicyName(String policyType, String serviceName, String serviceVersion, String resourceName, - String blueprintFilename) { + public static String generatePolicyName(String policyType, String serviceName, String serviceVersion, + String resourceName, String blueprintFilename) { StringBuilder buffer = new StringBuilder(policyType).append("_").append(serviceName).append("_v") - .append(serviceVersion).append("_").append(resourceName).append("_") - .append(blueprintFilename.replaceAll(".yaml", "")); + .append(serviceVersion).append("_").append(resourceName).append("_") + .append(blueprintFilename.replaceAll(".yaml", "")); return buffer.toString().replace('.', '_').replaceAll(" ", ""); } diff --git a/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicy.java b/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicy.java index 3e4dd8fd..445c1d5d 100644 --- a/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicy.java +++ b/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicy.java @@ -40,13 +40,10 @@ import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Id; -import javax.persistence.JoinColumn; import javax.persistence.ManyToMany; -import javax.persistence.ManyToOne; import javax.persistence.Table; import javax.persistence.Transient; -import org.hibernate.annotations.Type; import org.hibernate.annotations.TypeDef; import org.hibernate.annotations.TypeDefs; import org.json.JSONObject; @@ -54,15 +51,13 @@ import org.onap.clamp.clds.tosca.ToscaYamlToJsonConvertor; import org.onap.clamp.clds.util.JsonUtils; import org.onap.clamp.dao.model.jsontype.StringJsonUserType; import org.onap.clamp.loop.Loop; -import org.onap.clamp.loop.common.AuditEntity; -import org.onap.clamp.loop.template.MicroServiceModel; import org.onap.clamp.policy.Policy; import org.yaml.snakeyaml.Yaml; @Entity @Table(name = "micro_service_policies") @TypeDefs({ @TypeDef(name = "json", typeClass = StringJsonUserType.class) }) -public class MicroServicePolicy extends AuditEntity implements Serializable, Policy { +public class MicroServicePolicy extends Policy implements Serializable { /** * The serial version ID. */ @@ -89,31 +84,16 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol private String deviceTypeScope; @Expose - @Type(type = "json") - @Column(columnDefinition = "json", name = "properties") - private JsonObject properties; - - @Expose @Column(name = "shared", nullable = false) private Boolean shared; @Column(columnDefinition = "MEDIUMTEXT", name = "policy_tosca", nullable = false) private String policyTosca; - @Expose - @Type(type = "json") - @Column(columnDefinition = "json", name = "json_representation", nullable = false) - private JsonObject jsonRepresentation; - @ManyToMany(mappedBy = "microServicePolicies", fetch = FetchType.EAGER) private Set<Loop> usedByLoops = new HashSet<>(); @Expose - @ManyToOne(fetch = FetchType.EAGER) - @JoinColumn(name = "micro_service_model_id") - private MicroServiceModel microServiceModel; - - @Expose @Column(name = "dcae_deployment_id") private String dcaeDeploymentId; @@ -141,8 +121,8 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol this.modelType = modelType; this.policyTosca = policyTosca; this.shared = shared; - this.jsonRepresentation = JsonUtils.GSON_JPA_MODEL - .fromJson(new ToscaYamlToJsonConvertor().parseToscaYaml(policyTosca, modelType), JsonObject.class); + this.setJsonRepresentation(JsonUtils.GSON_JPA_MODEL + .fromJson(new ToscaYamlToJsonConvertor().parseToscaYaml(policyTosca, modelType), JsonObject.class)); this.usedByLoops = usedByLoops; } @@ -171,7 +151,7 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol this.policyTosca = policyTosca; this.shared = shared; this.usedByLoops = usedByLoops; - this.jsonRepresentation = jsonRepresentation; + this.setJsonRepresentation(jsonRepresentation); } @Override @@ -179,6 +159,16 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol return name; } + /** + * name setter. + * + * @param name the name to set + */ + @Override + public void setName(String name) { + this.name = name; + } + public String getModelType() { return modelType; } @@ -187,14 +177,6 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol this.modelType = modelType; } - public JsonObject getProperties() { - return properties; - } - - public void setProperties(JsonObject properties) { - this.properties = properties; - } - public Boolean getShared() { return shared; } @@ -211,15 +193,6 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol this.policyTosca = policyTosca; } - @Override - public JsonObject getJsonRepresentation() { - return jsonRepresentation; - } - - void setJsonRepresentation(JsonObject jsonRepresentation) { - this.jsonRepresentation = jsonRepresentation; - } - public Set<Loop> getUsedByLoops() { return usedByLoops; } @@ -245,24 +218,8 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol } /** - * microServiceModel getter. - * - * @return the microServiceModel - */ - public MicroServiceModel getMicroServiceModel() { - return microServiceModel; - } - - /** - * microServiceModel setter. + * dcaeDeploymentId getter. * - * @param microServiceModel the microServiceModel to set - */ - public void setMicroServiceModel(MicroServiceModel microServiceModel) { - this.microServiceModel = microServiceModel; - } - - /** * @return the dcaeDeploymentId */ public String getDcaeDeploymentId() { @@ -270,6 +227,8 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol } /** + * dcaeDeploymentId setter. + * * @param dcaeDeploymentId the dcaeDeploymentId to set */ public void setDcaeDeploymentId(String dcaeDeploymentId) { @@ -277,6 +236,8 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol } /** + * dcaeDeploymentStatusUrl getter. + * * @return the dcaeDeploymentStatusUrl */ public String getDcaeDeploymentStatusUrl() { @@ -284,21 +245,14 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol } /** + * dcaeDeploymentStatusUrl setter. + * * @param dcaeDeploymentStatusUrl the dcaeDeploymentStatusUrl to set */ public void setDcaeDeploymentStatusUrl(String dcaeDeploymentStatusUrl) { this.dcaeDeploymentStatusUrl = dcaeDeploymentStatusUrl; } - /** - * name setter. - * - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } - @Override public int hashCode() { final int prime = 31; @@ -362,7 +316,7 @@ public class MicroServicePolicy extends AuditEntity implements Serializable, Pol JsonObject policyProperties = new JsonObject(); policyDetails.add("properties", policyProperties); - policyProperties.add(this.getMicroServicePropertyNameFromTosca(toscaJson), this.getProperties()); + policyProperties.add(this.getMicroServicePropertyNameFromTosca(toscaJson), this.getConfigurationsJson()); String policyPayload = new GsonBuilder().setPrettyPrinting().create().toJson(policyPayloadResult); logger.info("Micro service policy payload: " + policyPayload); return policyPayload; diff --git a/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicyService.java b/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicyService.java index 346cdf62..c431767f 100644 --- a/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicyService.java +++ b/src/main/java/org/onap/clamp/policy/microservice/MicroServicePolicyService.java @@ -73,7 +73,7 @@ public class MicroServicePolicyService implements PolicyService<MicroServicePoli private MicroServicePolicy updateMicroservicePolicyProperties(MicroServicePolicy oldPolicy, MicroServicePolicy newPolicy, Loop loop) { - oldPolicy.setProperties(newPolicy.getProperties()); + oldPolicy.setConfigurationsJson(newPolicy.getConfigurationsJson()); if (!oldPolicy.getUsedByLoops().contains(loop)) { oldPolicy.getUsedByLoops().add(loop); } diff --git a/src/main/java/org/onap/clamp/policy/operational/OperationalPolicy.java b/src/main/java/org/onap/clamp/policy/operational/OperationalPolicy.java index d9e8a57d..a1c8cdbd 100644 --- a/src/main/java/org/onap/clamp/policy/operational/OperationalPolicy.java +++ b/src/main/java/org/onap/clamp/policy/operational/OperationalPolicy.java @@ -51,7 +51,6 @@ import javax.persistence.ManyToOne; import javax.persistence.Table; import javax.persistence.Transient; -import org.hibernate.annotations.Type; import org.hibernate.annotations.TypeDef; import org.hibernate.annotations.TypeDefs; import org.onap.clamp.dao.model.jsontype.StringJsonUserType; @@ -64,7 +63,7 @@ import org.yaml.snakeyaml.Yaml; @Entity @Table(name = "operational_policies") @TypeDefs({ @TypeDef(name = "json", typeClass = StringJsonUserType.class) }) -public class OperationalPolicy implements Serializable, Policy { +public class OperationalPolicy extends Policy implements Serializable { /** * The serial version ID. */ @@ -78,16 +77,6 @@ public class OperationalPolicy implements Serializable, Policy { @Column(nullable = false, name = "name", unique = true) private String name; - @Expose - @Type(type = "json") - @Column(columnDefinition = "json", name = "configurations_json") - private JsonObject configurationsJson; - - @Expose - @Type(type = "json") - @Column(columnDefinition = "json", name = "json_representation", nullable = false) - private JsonObject jsonRepresentation; - @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "loop_id", nullable = false) private Loop loop; @@ -113,22 +102,17 @@ public class OperationalPolicy implements Serializable, Policy { public OperationalPolicy(String name, Loop loop, JsonObject configurationsJson) { this.name = name; this.loop = loop; - this.configurationsJson = configurationsJson; - LegacyOperationalPolicy.preloadConfiguration(this.configurationsJson, loop); + this.setConfigurationsJson(configurationsJson); + LegacyOperationalPolicy.preloadConfiguration(configurationsJson, loop); try { - this.jsonRepresentation = OperationalPolicyRepresentationBuilder - .generateOperationalPolicySchema(loop.getModelService()); + this.setJsonRepresentation( + OperationalPolicyRepresentationBuilder.generateOperationalPolicySchema(loop.getModelService())); } catch (JsonSyntaxException | IOException | NullPointerException e) { logger.error("Unable to generate the operational policy Schema ... ", e); - this.jsonRepresentation = new JsonObject(); + this.setJsonRepresentation(new JsonObject()); } } - @Override - public String getName() { - return name; - } - public void setLoop(Loop loopName) { this.loop = loopName; } @@ -137,12 +121,19 @@ public class OperationalPolicy implements Serializable, Policy { return loop; } - public JsonObject getConfigurationsJson() { - return configurationsJson; + @Override + public String getName() { + return name; } - public void setConfigurationsJson(JsonObject configurationsJson) { - this.configurationsJson = configurationsJson; + /** + * name setter. + * + * @param name the name to set + */ + @Override + public void setName(String name) { + this.name = name; } /** @@ -163,24 +154,6 @@ public class OperationalPolicy implements Serializable, Policy { this.policyModel = policyModel; } - /** - * name setter. - * - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } - - @Override - public JsonObject getJsonRepresentation() { - return jsonRepresentation; - } - - void setJsonRepresentation(JsonObject jsonRepresentation) { - this.jsonRepresentation = jsonRepresentation; - } - @Override public int hashCode() { final int prime = 31; @@ -240,7 +213,7 @@ public class OperationalPolicy implements Serializable, Policy { metadata.addProperty("policy-id", this.name); operationalPolicyDetails.add("properties", LegacyOperationalPolicy - .reworkPayloadAttributes(this.configurationsJson.get("operational_policy").deepCopy())); + .reworkPayloadAttributes(this.getConfigurationsJson().get("operational_policy").deepCopy())); DumperOptions options = new DumperOptions(); options.setIndent(2); @@ -256,8 +229,11 @@ public class OperationalPolicy implements Serializable, Policy { // Now using the legacy payload fo Dublin JsonObject payload = new JsonObject(); payload.addProperty("policy-id", this.getName()); - payload.addProperty("content", URLEncoder.encode(LegacyOperationalPolicy.createPolicyPayloadYamlLegacy( - this.configurationsJson.get("operational_policy")), StandardCharsets.UTF_8.toString())); + payload.addProperty("content", + URLEncoder.encode( + LegacyOperationalPolicy + .createPolicyPayloadYamlLegacy(this.getConfigurationsJson().get("operational_policy")), + StandardCharsets.UTF_8.toString())); String opPayload = new GsonBuilder().setPrettyPrinting().create().toJson(payload); logger.info("Operational policy payload: " + opPayload); return opPayload; @@ -283,16 +259,16 @@ public class OperationalPolicy implements Serializable, Policy { } /** - * Regenerate the Operational Policy Json Representation. - * - */ + * Regenerate the Operational Policy Json Representation. + * + */ public void updateJsonRepresentation() { try { - this.jsonRepresentation = OperationalPolicyRepresentationBuilder - .generateOperationalPolicySchema(loop.getModelService()); + this.setJsonRepresentation( + OperationalPolicyRepresentationBuilder.generateOperationalPolicySchema(loop.getModelService())); } catch (JsonSyntaxException | IOException | NullPointerException e) { logger.error("Unable to generate the operational policy Schema ... ", e); - this.jsonRepresentation = new JsonObject(); + this.setJsonRepresentation(new JsonObject()); } } } diff --git a/src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java b/src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java index 7f5b6901..2274fcf6 100644 --- a/src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java +++ b/src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java @@ -20,6 +20,7 @@ * =================================================================== * */ + package org.onap.clamp.clds.tosca; import static org.assertj.core.api.Assertions.assertThat; @@ -60,7 +61,7 @@ public class DictionaryRepositoriesTestItCase { element1.setSubDictionary("subDictionary1"); element1.setType("type1"); element1.setDescription("description1"); - + LinkedList<DictionaryElement> elementList1 = new LinkedList<DictionaryElement>(); elementList1.add(element1); dictionaryTest1.setDictionaryElements(elementList1); diff --git a/src/test/java/org/onap/clamp/loop/DcaeComponentTest.java b/src/test/java/org/onap/clamp/loop/DcaeComponentTest.java index 4daab2ec..0a7c424d 100644 --- a/src/test/java/org/onap/clamp/loop/DcaeComponentTest.java +++ b/src/test/java/org/onap/clamp/loop/DcaeComponentTest.java @@ -61,7 +61,7 @@ public class DcaeComponentTest { MicroServicePolicy microServicePolicy = new MicroServicePolicy("configPolicyTest", "", "tosca_definitions_version: tosca_simple_yaml_1_0_0", true, new Gson().fromJson("{\"configtype\":\"json\"}", JsonObject.class), new HashSet<>()); - microServicePolicy.setProperties(new Gson().fromJson("{\"param1\":\"value1\"}", JsonObject.class)); + microServicePolicy.setConfigurationsJson(new Gson().fromJson("{\"param1\":\"value1\"}", JsonObject.class)); loopTest.addMicroServicePolicy(microServicePolicy); return loopTest; diff --git a/src/test/java/org/onap/clamp/loop/LoopRepositoriesItCase.java b/src/test/java/org/onap/clamp/loop/LoopRepositoriesItCase.java index 44feaebd..e0c112cb 100644 --- a/src/test/java/org/onap/clamp/loop/LoopRepositoriesItCase.java +++ b/src/test/java/org/onap/clamp/loop/LoopRepositoriesItCase.java @@ -42,10 +42,10 @@ import org.onap.clamp.loop.log.LoopLog; import org.onap.clamp.loop.log.LoopLogRepository; import org.onap.clamp.loop.service.Service; import org.onap.clamp.loop.service.ServicesRepository; +import org.onap.clamp.loop.template.LoopElementModel; +import org.onap.clamp.loop.template.LoopElementModelsRepository; import org.onap.clamp.loop.template.LoopTemplate; import org.onap.clamp.loop.template.LoopTemplatesRepository; -import org.onap.clamp.loop.template.MicroServiceModel; -import org.onap.clamp.loop.template.MicroServiceModelsRepository; import org.onap.clamp.loop.template.PolicyModel; import org.onap.clamp.loop.template.PolicyModelId; import org.onap.clamp.loop.template.PolicyModelsRepository; @@ -80,7 +80,7 @@ public class LoopRepositoriesItCase { private LoopTemplatesRepository loopTemplateRepository; @Autowired - private MicroServiceModelsRepository microServiceModelsRepository; + private LoopElementModelsRepository microServiceModelsRepository; @Autowired private PolicyModelsRepository policyModelsRepository; @@ -96,21 +96,22 @@ public class LoopRepositoriesItCase { return new OperationalPolicy(name, null, new Gson().fromJson(configJson, JsonObject.class)); } - private MicroServiceModel getMicroServiceModel(String yaml, String name, String policyType, String createdBy, + private LoopElementModel getLoopElementModel(String yaml, String name, String policyType, String createdBy, PolicyModel policyModel) { - MicroServiceModel model = new MicroServiceModel(name, policyType, yaml, policyModel); + LoopElementModel model = new LoopElementModel(name, policyType, yaml); + model.addPolicyModel(policyModel); return model; } private PolicyModel getPolicyModel(String policyType, String policyModelTosca, String version, String policyAcronym, String policyVariant, String createdBy) { - return new PolicyModel(policyType, policyModelTosca, version, policyAcronym, policyVariant); + return new PolicyModel(policyType, policyModelTosca, version, policyAcronym); } private LoopTemplate getLoopTemplate(String name, String blueprint, String svgRepresentation, String createdBy, Integer maxInstancesAllowed) { LoopTemplate template = new LoopTemplate(name, blueprint, svgRepresentation, maxInstancesAllowed, null); - template.addMicroServiceModel(getMicroServiceModel("yaml", "microService1", "org.onap.policy.drools", createdBy, + template.addLoopElementModel(getLoopElementModel("yaml", "microService1", "org.onap.policy.drools", createdBy, getPolicyModel("org.onap.policy.drools", "yaml", "1.0.0", "Drools", "type1", createdBy))); return template; } @@ -134,7 +135,7 @@ public class LoopRepositoriesItCase { String policyTosca, String jsonProperties, boolean shared) { MicroServicePolicy microService = new MicroServicePolicy(name, modelType, policyTosca, shared, gson.fromJson(jsonRepresentation, JsonObject.class), new HashSet<>()); - microService.setProperties(new Gson().fromJson(jsonProperties, JsonObject.class)); + microService.setConfigurationsJson(new Gson().fromJson(jsonProperties, JsonObject.class)); return microService; } @@ -182,13 +183,13 @@ public class LoopRepositoriesItCase { assertThat(loopTemplateRepository.existsById(loopInDb.getLoopTemplate().getName())).isEqualTo(true); assertThat(servicesRepository.existsById(loopInDb.getModelService().getServiceUuid())).isEqualTo(true); assertThat(microServiceModelsRepository.existsById( - loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel().getName())) + loopInDb.getLoopTemplate().getLoopElementModelsUsed().first().getLoopElementModel().getName())) .isEqualTo(true); assertThat(policyModelsRepository.existsById(new PolicyModelId( - loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel().getPolicyModel() - .getPolicyModelType(), - loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel().getPolicyModel() - .getVersion()))).isEqualTo(true); + loopInDb.getLoopTemplate().getLoopElementModelsUsed().first().getLoopElementModel().getPolicyModels() + .first().getPolicyModelType(), + loopInDb.getLoopTemplate().getLoopElementModelsUsed().first().getLoopElementModel().getPolicyModels() + .first().getVersion()))).isEqualTo(true); // Now attempt to read from database Loop loopInDbRetrieved = loopRepository.findById(loopTest.getName()).get(); @@ -198,7 +199,16 @@ public class LoopRepositoriesItCase { "createdBy", "updatedBy"); assertThat((LoopLog) loopInDbRetrieved.getLoopLogs().toArray()[0]).isEqualToComparingFieldByField(loopLog); assertThat((OperationalPolicy) loopInDbRetrieved.getOperationalPolicies().toArray()[0]) - .isEqualToComparingFieldByField(opPolicy); + .isEqualToIgnoringGivenFields(opPolicy, "createdDate", "updatedDate", "createdBy", "updatedBy"); + assertThat(((OperationalPolicy) loopInDbRetrieved.getOperationalPolicies().toArray()[0]).getCreatedDate()) + .isNotNull(); + assertThat(((OperationalPolicy) loopInDbRetrieved.getOperationalPolicies().toArray()[0]).getUpdatedDate()) + .isNotNull(); + assertThat(((OperationalPolicy) loopInDbRetrieved.getOperationalPolicies().toArray()[0]).getCreatedBy()) + .isNotNull(); + assertThat(((OperationalPolicy) loopInDbRetrieved.getOperationalPolicies().toArray()[0]).getUpdatedBy()) + .isNotNull(); + assertThat((MicroServicePolicy) loopInDbRetrieved.getMicroServicePolicies().toArray()[0]) .isEqualToIgnoringGivenFields(microServicePolicy, "createdDate", "updatedDate", "createdBy", "updatedBy"); @@ -230,23 +240,14 @@ public class LoopRepositoriesItCase { assertThat(loopTemplateRepository.existsById(loopInDb.getLoopTemplate().getName())).isEqualTo(true); assertThat(servicesRepository.existsById(loopInDb.getModelService().getServiceUuid())).isEqualTo(true); assertThat(microServiceModelsRepository.existsById( - loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel().getName())) + loopInDb.getLoopTemplate().getLoopElementModelsUsed().first().getLoopElementModel().getName())) .isEqualTo(true); assertThat(policyModelsRepository.existsById(new PolicyModelId( - loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel().getPolicyModel() - .getPolicyModelType(), - loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel().getPolicyModel() - .getVersion()))).isEqualTo(true); - - // Cleanup - // microServiceModelsRepository - // .delete(loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel()); - // - // policyModelsRepository.delete( - // loopInDb.getLoopTemplate().getMicroServiceModelUsed().first().getMicroServiceModel().getPolicyModel()); - // loopTemplateRepository.delete(loopInDb.getLoopTemplate()); - // servicesRepository.delete(service); + loopInDb.getLoopTemplate().getLoopElementModelsUsed().first().getLoopElementModel().getPolicyModels() + .first().getPolicyModelType(), + loopInDb.getLoopTemplate().getLoopElementModelsUsed().first().getLoopElementModel().getPolicyModels() + .first().getVersion()))).isEqualTo(true); } } diff --git a/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java b/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java index d19c8a80..338aaa3e 100644 --- a/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java +++ b/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java @@ -110,7 +110,9 @@ public class LoopServiceTestItCase { assertThat(actualLoop.getName()).isEqualTo(EXAMPLE_LOOP_NAME); Set<OperationalPolicy> savedPolicies = actualLoop.getOperationalPolicies(); assertThat(savedPolicies).hasSize(1); - assertThat(savedPolicies).usingElementComparatorIgnoringFields("loop").contains(operationalPolicy); + assertThat(savedPolicies) + .usingElementComparatorIgnoringFields("loop", "createdBy", "createdDate", "updatedBy", "updatedDate") + .contains(operationalPolicy); OperationalPolicy savedPolicy = savedPolicies.iterator().next(); assertThat(savedPolicy.getLoop().getName()).isEqualTo(EXAMPLE_LOOP_NAME); @@ -154,7 +156,8 @@ public class LoopServiceTestItCase { JsonUtils.GSON.fromJson("{}", JsonObject.class), null); // when - firstMicroServicePolicy.setProperties(JsonUtils.GSON.fromJson("{\"name1\":\"value1\"}", JsonObject.class)); + firstMicroServicePolicy + .setConfigurationsJson(JsonUtils.GSON.fromJson("{\"name1\":\"value1\"}", JsonObject.class)); Loop actualLoop = loopService.updateAndSaveMicroservicePolicies(EXAMPLE_LOOP_NAME, Lists.newArrayList(firstMicroServicePolicy, secondMicroServicePolicy)); @@ -229,7 +232,8 @@ public class LoopServiceTestItCase { assertThat(actualLoop.getName()).isEqualTo(EXAMPLE_LOOP_NAME); Set<OperationalPolicy> savedPolicies = actualLoop.getOperationalPolicies(); assertThat(savedPolicies).hasSize(2); - assertThat(savedPolicies).usingElementComparatorIgnoringFields("loop") + assertThat(savedPolicies) + .usingElementComparatorIgnoringFields("loop", "createdDate", "updatedDate", "createdBy", "updatedBy") .containsExactlyInAnyOrder(firstOperationalPolicy, secondOperationalPolicy); Set<String> policiesLoops = Lists.newArrayList(savedPolicies).stream().map(OperationalPolicy::getLoop) .map(Loop::getName).collect(Collectors.toSet()); @@ -258,7 +262,9 @@ public class LoopServiceTestItCase { assertThat(actualLoop.getName()).isEqualTo(EXAMPLE_LOOP_NAME); Set<OperationalPolicy> savedPolicies = actualLoop.getOperationalPolicies(); assertThat(savedPolicies).hasSize(1); - assertThat(savedPolicies).usingElementComparatorIgnoringFields("loop").containsExactly(secondOperationalPolicy); + assertThat(savedPolicies) + .usingElementComparatorIgnoringFields("loop", "createdDate", "updatedDate", "createdBy", "updatedBy") + .containsExactly(secondOperationalPolicy); OperationalPolicy savedPolicy = savedPolicies.iterator().next(); assertThat(savedPolicy.getLoop().getName()).isEqualTo(EXAMPLE_LOOP_NAME); diff --git a/src/test/java/org/onap/clamp/loop/LoopToJsonTest.java b/src/test/java/org/onap/clamp/loop/LoopToJsonTest.java index 914c64ea..af8f2271 100644 --- a/src/test/java/org/onap/clamp/loop/LoopToJsonTest.java +++ b/src/test/java/org/onap/clamp/loop/LoopToJsonTest.java @@ -44,8 +44,8 @@ import org.onap.clamp.loop.components.external.PolicyComponent; import org.onap.clamp.loop.log.LogType; import org.onap.clamp.loop.log.LoopLog; import org.onap.clamp.loop.service.Service; +import org.onap.clamp.loop.template.LoopElementModel; import org.onap.clamp.loop.template.LoopTemplate; -import org.onap.clamp.loop.template.MicroServiceModel; import org.onap.clamp.loop.template.PolicyModel; import org.onap.clamp.policy.microservice.MicroServicePolicy; import org.onap.clamp.policy.operational.OperationalPolicy; @@ -74,27 +74,28 @@ public class LoopToJsonTest { String policyTosca, String jsonProperties, boolean shared) { MicroServicePolicy microService = new MicroServicePolicy(name, modelType, policyTosca, shared, gson.fromJson(jsonRepresentation, JsonObject.class), new HashSet<>()); - microService.setProperties(new Gson().fromJson(jsonProperties, JsonObject.class)); + microService.setConfigurationsJson(new Gson().fromJson(jsonProperties, JsonObject.class)); return microService; } - private MicroServiceModel getMicroServiceModel(String yaml, String name, PolicyModel policyModel) { - MicroServiceModel model = new MicroServiceModel(); + private LoopElementModel getLoopElementModel(String yaml, String name, PolicyModel policyModel) { + LoopElementModel model = new LoopElementModel(); model.setBlueprint(yaml); model.setName(name); - model.setPolicyModel(policyModel); + model.addPolicyModel(policyModel); + model.setLoopElementType("OPERATIONAL_POLICY"); return model; } private PolicyModel getPolicyModel(String policyType, String policyModelTosca, String version, String policyAcronym, String policyVariant) { - return new PolicyModel(policyType, policyModelTosca, version, policyAcronym, policyVariant); + return new PolicyModel(policyType, policyModelTosca, version, policyAcronym); } private LoopTemplate getLoopTemplate(String name, String blueprint, String svgRepresentation, Integer maxInstancesAllowed) { LoopTemplate template = new LoopTemplate(name, blueprint, svgRepresentation, maxInstancesAllowed, null); - template.addMicroServiceModel(getMicroServiceModel("yaml", "microService1", + template.addLoopElementModel(getLoopElementModel("yaml", "microService1", getPolicyModel("org.onap.policy.drools", "yaml", "1.0.0", "Drools", "type1"))); return template; } diff --git a/src/test/java/org/onap/clamp/loop/PolicyModelServiceItCase.java b/src/test/java/org/onap/clamp/loop/PolicyModelServiceItCase.java index b284dd79..39468a1c 100644 --- a/src/test/java/org/onap/clamp/loop/PolicyModelServiceItCase.java +++ b/src/test/java/org/onap/clamp/loop/PolicyModelServiceItCase.java @@ -66,7 +66,6 @@ public class PolicyModelServiceItCase { policyModel.setPolicyAcronym(policyAcronym); policyModel.setPolicyModelTosca(policyModelTosca); policyModel.setPolicyModelType(policyType); - policyModel.setPolicyVariant(policyVariant); policyModel.setUpdatedBy(createdBy); policyModel.setVersion(version); return policyModel; @@ -92,7 +91,6 @@ public class PolicyModelServiceItCase { assertThat(actualPolicyModel.getCreatedDate()).isNotNull(); assertThat(actualPolicyModel.getPolicyAcronym()).isEqualTo(policyModel.getPolicyAcronym()); assertThat(actualPolicyModel.getPolicyModelTosca()).isEqualTo(policyModel.getPolicyModelTosca()); - assertThat(actualPolicyModel.getPolicyVariant()).isEqualTo(policyModel.getPolicyVariant()); assertThat(actualPolicyModel.getUpdatedBy()).isEqualTo(""); assertThat(actualPolicyModel.getUpdatedDate()).isNotNull(); assertThat(actualPolicyModel.getVersion()).isEqualTo(policyModel.getVersion()); diff --git a/src/test/java/org/onap/clamp/policy/microservice/MicroServicePayloadTest.java b/src/test/java/org/onap/clamp/policy/microservice/MicroServicePayloadTest.java index 68925a91..1556ac6d 100644 --- a/src/test/java/org/onap/clamp/policy/microservice/MicroServicePayloadTest.java +++ b/src/test/java/org/onap/clamp/policy/microservice/MicroServicePayloadTest.java @@ -39,7 +39,7 @@ public class MicroServicePayloadTest { public void testPayloadConstruction() throws IOException { MicroServicePolicy policy = new MicroServicePolicy("testPolicy", "onap.policies.monitoring.cdap.tca.hi.lo.app", ResourceFileUtil.getResourceAsString("tosca/tosca_example.yaml"), false, new HashSet<>()); - policy.setProperties(JsonUtils.GSON.fromJson( + policy.setConfigurationsJson(JsonUtils.GSON.fromJson( ResourceFileUtil.getResourceAsString("tosca/micro-service-policy-properties.json"), JsonObject.class)); JSONAssert.assertEquals(ResourceFileUtil.getResourceAsString("tosca/micro-service-policy-payload.json"), policy.createPolicyPayload(), false); diff --git a/src/test/resources/sql/loop-examples.sql b/src/test/resources/sql/loop-examples.sql deleted file mode 100644 index 5694621b..00000000 --- a/src/test/resources/sql/loop-examples.sql +++ /dev/null @@ -1,736 +0,0 @@ --- MySQL dump 10.17 Distrib 10.3.12-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: cldsdb4 --- ------------------------------------------------------ --- Server version 10.3.12-MariaDB-1:10.3.12+maria~bionic-log - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Current Database: `cldsdb4` --- - -CREATE DATABASE /*!32312 IF NOT EXISTS*/ `cldsdb4` /*!40100 DEFAULT CHARACTER SET latin1 */; - -USE `cldsdb4`; - --- --- Dumping data for table `dictionary` --- - -LOCK TABLES `dictionary` WRITE; -/*!40000 ALTER TABLE `dictionary` DISABLE KEYS */; -/*!40000 ALTER TABLE `dictionary` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `dictionary_elements` --- - -LOCK TABLES `dictionary_elements` WRITE; -/*!40000 ALTER TABLE `dictionary_elements` DISABLE KEYS */; -/*!40000 ALTER TABLE `dictionary_elements` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `event` --- - -LOCK TABLES `event` WRITE; -/*!40000 ALTER TABLE `event` DISABLE KEYS */; -/*!40000 ALTER TABLE `event` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `hibernate_sequence` --- - -LOCK TABLES `hibernate_sequence` WRITE; -/*!40000 ALTER TABLE `hibernate_sequence` DISABLE KEYS */; -INSERT INTO `hibernate_sequence` VALUES (520); -/*!40000 ALTER TABLE `hibernate_sequence` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `loop_logs` --- - -LOCK TABLES `loop_logs` WRITE; -/*!40000 ALTER TABLE `loop_logs` DISABLE KEYS */; -INSERT INTO `loop_logs` VALUES (1,'CLAMP','2019-08-21 13:33:46','INFO','Micro Service policies UPDATED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (2,'CLAMP','2019-08-21 13:34:47','INFO','Operational and Guard policies UPDATED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (3,'CLAMP','2019-08-21 13:35:04','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (4,'CLAMP','2019-08-21 13:35:08','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (5,'CLAMP','2019-08-21 13:35:09','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (6,'CLAMP','2019-08-21 13:35:11','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (7,'CLAMP','2019-08-21 13:35:14','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (8,'CLAMP','2019-08-21 13:35:16','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (9,'CLAMP','2019-08-21 13:35:19','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (10,'CLAMP','2019-08-21 13:35:24','INFO','PDP Group push ALL status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (11,'CLAMP','2019-08-21 13:35:24','ERROR','SUBMIT request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/pap/v1/pdps/policies?connectionTimeToLive=5000 with statusCode: 404 - Body: <html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"/>\n<title>Error 404 Not Found</title>\n</head>\n<body><h2>HTTP ERROR 404</h2>\n<p>Problem accessing /policy/pap/v1/pdps/policies. Reason:\n<pre> Not Found</pre></p><hr><a href=\"http://eclipse.org/jetty\">Powered by Jetty:// 9.4.14.v20181114</a><hr/>\n\n</body>\n</html>\n','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (12,'CLAMP','2019-08-21 13:35:26','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (13,'CLAMP','2019-08-21 13:35:28','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (14,'CLAMP','2019-08-21 13:35:30','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (15,'CLAMP','2019-08-21 13:35:30','ERROR','Get Status request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies/TCA_ejh5S_v1_0_ResourceInstanceName1_tca/versions/deployed?connectionTimeToLive=5000 with statusCode: 404 - Body: {\"code\":\"NOT_FOUND\",\"error\":\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\",\"details\":[\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\"]}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (16,'CLAMP','2019-08-21 13:35:54','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (17,'CLAMP','2019-08-21 13:35:56','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (18,'CLAMP','2019-08-21 13:35:59','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (19,'CLAMP','2019-08-21 13:35:59','ERROR','Get Status request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies/TCA_ejh5S_v1_0_ResourceInstanceName1_tca/versions/deployed?connectionTimeToLive=5000 with statusCode: 404 - Body: {\"code\":\"NOT_FOUND\",\"error\":\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\",\"details\":[\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\"]}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (20,'CLAMP','2019-08-21 14:03:44','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (21,'CLAMP','2019-08-21 14:03:48','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (22,'CLAMP','2019-08-21 14:03:49','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (23,'CLAMP','2019-08-21 14:03:51','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (24,'CLAMP','2019-08-21 14:03:53','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (25,'CLAMP','2019-08-21 14:03:55','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (26,'CLAMP','2019-08-21 14:03:57','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (27,'CLAMP','2019-08-21 14:04:02','INFO','PDP Group push ALL status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (28,'CLAMP','2019-08-21 14:04:02','ERROR','SUBMIT request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.1:31684/policy/pap/v1/pdps/policies?connectionTimeToLive=5000 with statusCode: 400 - Body: {\"errorDetails\":\"group defaultGroup subgroup xacml has no active PDPs\"}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (29,'CLAMP','2019-08-21 14:04:05','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (30,'CLAMP','2019-08-21 14:04:06','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (31,'CLAMP','2019-08-21 14:04:09','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (32,'CLAMP','2019-08-21 14:04:09','ERROR','Get Status request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies/TCA_ejh5S_v1_0_ResourceInstanceName1_tca/versions/deployed?connectionTimeToLive=5000 with statusCode: 404 - Body: {\"code\":\"NOT_FOUND\",\"error\":\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\",\"details\":[\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\"]}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (33,'CLAMP','2019-08-21 14:13:39','INFO','Operational and Guard policies UPDATED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (34,'CLAMP','2019-08-21 14:13:43','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (35,'CLAMP','2019-08-21 14:13:44','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (36,'CLAMP','2019-08-21 14:13:46','INFO','guard.minmax.new PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (37,'CLAMP','2019-08-21 14:13:48','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (38,'CLAMP','2019-08-21 14:13:50','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (39,'CLAMP','2019-08-21 14:13:51','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (40,'CLAMP','2019-08-21 14:13:53','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (41,'CLAMP','2019-08-21 14:13:55','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (42,'CLAMP','2019-08-21 14:13:57','INFO','guard.minmax.new removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (43,'CLAMP','2019-08-21 14:13:58','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (44,'CLAMP','2019-08-21 14:14:03','INFO','PDP Group push ALL status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (45,'CLAMP','2019-08-21 14:14:03','ERROR','SUBMIT request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.1:31684/policy/pap/v1/pdps/policies?connectionTimeToLive=5000 with statusCode: 400 - Body: {\"errorDetails\":\"group defaultGroup subgroup xacml has no active PDPs\"}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (46,'CLAMP','2019-08-21 14:14:12','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (47,'CLAMP','2019-08-21 14:14:13','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (48,'CLAMP','2019-08-21 14:14:15','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (49,'CLAMP','2019-08-21 14:14:15','ERROR','Get Status request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies/TCA_ejh5S_v1_0_ResourceInstanceName1_tca/versions/deployed?connectionTimeToLive=5000 with statusCode: 404 - Body: {\"code\":\"NOT_FOUND\",\"error\":\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\",\"details\":[\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\"]}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (50,'CLAMP','2019-08-21 15:18:52','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (51,'CLAMP','2019-08-21 15:18:56','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (52,'CLAMP','2019-08-21 15:18:58','INFO','guard.minmax.new PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (53,'CLAMP','2019-08-21 15:19:00','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (54,'CLAMP','2019-08-21 15:19:02','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (55,'CLAMP','2019-08-21 15:19:05','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (56,'CLAMP','2019-08-21 15:19:07','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (57,'CLAMP','2019-08-21 15:19:11','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (58,'CLAMP','2019-08-21 15:19:13','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (59,'CLAMP','2019-08-21 15:19:15','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (60,'CLAMP','2019-08-21 15:19:20','INFO','PDP Group push ALL status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (61,'CLAMP','2019-08-21 15:19:20','ERROR','SUBMIT request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.1:31684/policy/pap/v1/pdps/policies?connectionTimeToLive=5000 with statusCode: 400 - Body: {\"errorDetails\":\"group defaultGroup subgroup xacml has no active PDPs\"}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (62,'CLAMP','2019-08-21 15:19:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (63,'CLAMP','2019-08-21 15:19:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (64,'CLAMP','2019-08-21 15:19:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (65,'CLAMP','2019-08-21 15:19:31','ERROR','Get Status request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies/TCA_ejh5S_v1_0_ResourceInstanceName1_tca/versions/deployed?connectionTimeToLive=5000 with statusCode: 404 - Body: {\"code\":\"NOT_FOUND\",\"error\":\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\",\"details\":[\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\"]}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (66,'CLAMP','2019-08-21 15:25:38','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (67,'POLICY','2019-08-21 15:25:42','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (68,'POLICY','2019-08-21 15:25:44','INFO','guard.minmax.new PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (69,'POLICY','2019-08-21 15:25:45','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (70,'POLICY','2019-08-21 15:25:47','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (71,'POLICY','2019-08-21 15:25:50','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (72,'POLICY','2019-08-21 15:25:52','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (73,'POLICY','2019-08-21 15:25:54','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (74,'POLICY','2019-08-21 15:25:56','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (75,'POLICY','2019-08-21 15:25:58','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (76,'POLICY','2019-08-21 15:26:04','INFO','PDP Group push ALL status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (77,'CLAMP','2019-08-21 15:26:04','ERROR','SUBMIT request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.1:31684/policy/pap/v1/pdps/policies?connectionTimeToLive=5000 with statusCode: 400 - Body: {\"errorDetails\":\"group defaultGroup subgroup xacml has no active PDPs\"}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (78,'CLAMP','2019-08-21 15:26:06','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (79,'POLICY','2019-08-21 15:26:08','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (80,'POLICY','2019-08-21 15:26:10','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (81,'CLAMP','2019-08-21 15:26:10','ERROR','Get Status request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies/TCA_ejh5S_v1_0_ResourceInstanceName1_tca/versions/deployed?connectionTimeToLive=5000 with statusCode: 404 - Body: {\"code\":\"NOT_FOUND\",\"error\":\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\",\"details\":[\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\"]}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (82,'CLAMP','2019-08-22 01:54:37','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (83,'POLICY','2019-08-22 01:54:40','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (84,'POLICY','2019-08-22 01:54:41','INFO','guard.minmax.new PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (85,'POLICY','2019-08-22 01:54:43','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (86,'POLICY','2019-08-22 01:54:46','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (87,'POLICY','2019-08-22 01:54:48','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (88,'POLICY','2019-08-22 01:54:50','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (89,'POLICY','2019-08-22 01:54:52','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (90,'POLICY','2019-08-22 01:54:54','INFO','guard.minmax.new removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (91,'POLICY','2019-08-22 01:54:55','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (92,'POLICY','2019-08-22 01:55:00','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (93,'CLAMP','2019-08-22 01:55:00','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (94,'CLAMP','2019-08-22 01:55:24','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (95,'POLICY','2019-08-22 01:55:25','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (96,'POLICY','2019-08-22 01:55:28','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (97,'POLICY','2019-08-22 01:55:30','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (98,'POLICY','2019-08-22 01:55:32','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (99,'POLICY','2019-08-22 01:55:34','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (100,'POLICY','2019-08-22 01:55:36','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (101,'POLICY','2019-08-22 01:55:36','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (102,'DCAE','2019-08-22 01:55:36','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (103,'CLAMP','2019-08-22 01:55:37','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (104,'CLAMP','2019-08-22 01:55:37','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (105,'CLAMP','2019-08-22 02:16:54','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (106,'POLICY','2019-08-22 02:16:56','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (107,'POLICY','2019-08-22 02:16:58','INFO','guard.minmax.new PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (108,'POLICY','2019-08-22 02:17:00','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (109,'POLICY','2019-08-22 02:17:02','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (110,'POLICY','2019-08-22 02:17:04','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (111,'POLICY','2019-08-22 02:17:07','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (112,'POLICY','2019-08-22 02:17:09','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (113,'POLICY','2019-08-22 02:17:11','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (114,'POLICY','2019-08-22 02:17:13','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (115,'POLICY','2019-08-22 02:17:18','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (116,'CLAMP','2019-08-22 02:17:18','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (117,'CLAMP','2019-08-22 02:17:22','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (118,'POLICY','2019-08-22 02:17:24','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (119,'POLICY','2019-08-22 02:17:26','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (120,'POLICY','2019-08-22 02:17:28','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (121,'POLICY','2019-08-22 02:17:30','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (122,'POLICY','2019-08-22 02:17:31','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (123,'POLICY','2019-08-22 02:17:34','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (124,'POLICY','2019-08-22 02:17:34','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (125,'DCAE','2019-08-22 02:17:34','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (126,'CLAMP','2019-08-22 02:17:35','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (127,'CLAMP','2019-08-22 02:17:35','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (128,'CLAMP','2019-08-22 02:31:15','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (129,'POLICY','2019-08-22 02:31:17','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (130,'POLICY','2019-08-22 02:31:19','INFO','guard.minmax.new PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (131,'POLICY','2019-08-22 02:31:20','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (132,'POLICY','2019-08-22 02:31:22','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (133,'POLICY','2019-08-22 02:31:24','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (134,'POLICY','2019-08-22 02:31:26','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (135,'POLICY','2019-08-22 02:31:28','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (136,'POLICY','2019-08-22 02:31:30','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (137,'POLICY','2019-08-22 02:31:32','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (138,'POLICY','2019-08-22 02:31:36','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (139,'CLAMP','2019-08-22 02:31:37','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (140,'CLAMP','2019-08-22 02:31:41','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (141,'POLICY','2019-08-22 02:31:44','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (142,'POLICY','2019-08-22 02:31:46','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (143,'POLICY','2019-08-22 02:31:48','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (144,'POLICY','2019-08-22 02:31:50','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (145,'POLICY','2019-08-22 02:31:52','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (146,'POLICY','2019-08-22 02:31:54','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (147,'POLICY','2019-08-22 02:32:22','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (148,'DCAE','2019-08-22 02:32:22','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (149,'CLAMP','2019-08-22 02:32:22','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (150,'CLAMP','2019-08-22 02:32:22','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (151,'CLAMP','2019-08-22 02:58:14','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (152,'POLICY','2019-08-22 02:58:18','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (153,'POLICY','2019-08-22 02:58:20','INFO','guard.minmax.new PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (154,'POLICY','2019-08-22 02:58:21','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (155,'POLICY','2019-08-22 02:58:23','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (156,'POLICY','2019-08-22 02:58:26','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (157,'POLICY','2019-08-22 02:58:29','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (158,'POLICY','2019-08-22 02:58:30','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (159,'POLICY','2019-08-22 02:58:32','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (160,'POLICY','2019-08-22 02:58:34','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (161,'POLICY','2019-08-22 02:58:39','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (162,'CLAMP','2019-08-22 02:58:39','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (163,'CLAMP','2019-08-22 02:58:42','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (164,'POLICY','2019-08-22 02:58:44','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (165,'POLICY','2019-08-22 02:58:46','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (166,'POLICY','2019-08-22 02:58:48','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (167,'POLICY','2019-08-22 02:58:50','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (168,'POLICY','2019-08-22 02:58:51','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (169,'POLICY','2019-08-22 02:58:53','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (170,'POLICY','2019-08-22 02:58:53','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (171,'DCAE','2019-08-22 02:58:53','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (172,'CLAMP','2019-08-22 02:58:54','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (173,'CLAMP','2019-08-22 02:58:54','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (174,'CLAMP','2019-08-22 05:25:59','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (175,'POLICY','2019-08-22 05:26:03','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (176,'POLICY','2019-08-22 05:26:05','INFO','guard.minmax.new PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (177,'POLICY','2019-08-22 05:26:07','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (178,'POLICY','2019-08-22 05:26:09','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (179,'POLICY','2019-08-22 05:26:12','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (180,'POLICY','2019-08-22 05:26:14','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (181,'POLICY','2019-08-22 05:26:15','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (182,'POLICY','2019-08-22 05:26:17','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (183,'POLICY','2019-08-22 05:26:19','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (184,'POLICY','2019-08-22 05:26:24','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (185,'CLAMP','2019-08-22 05:26:24','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (186,'CLAMP','2019-08-22 05:26:26','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (187,'POLICY','2019-08-22 05:26:28','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (188,'POLICY','2019-08-22 05:26:30','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (189,'POLICY','2019-08-22 05:26:33','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (190,'POLICY','2019-08-22 05:26:35','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (191,'POLICY','2019-08-22 05:26:37','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (192,'POLICY','2019-08-22 05:26:39','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (193,'POLICY','2019-08-22 05:26:40','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (194,'DCAE','2019-08-22 05:26:40','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (195,'CLAMP','2019-08-22 05:26:40','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (196,'CLAMP','2019-08-22 05:26:40','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (197,'CLAMP','2019-08-22 05:31:26','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (198,'POLICY','2019-08-22 05:31:31','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (199,'POLICY','2019-08-22 05:31:32','INFO','guard.minmax.new PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (200,'POLICY','2019-08-22 05:31:34','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (201,'POLICY','2019-08-22 05:31:36','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (202,'POLICY','2019-08-22 05:31:39','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (203,'POLICY','2019-08-22 05:31:40','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (204,'POLICY','2019-08-22 05:31:42','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (205,'POLICY','2019-08-22 05:31:44','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (206,'POLICY','2019-08-22 05:31:46','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (207,'POLICY','2019-08-22 05:31:51','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (208,'CLAMP','2019-08-22 05:31:51','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (209,'CLAMP','2019-08-22 05:31:54','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (210,'POLICY','2019-08-22 05:31:56','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (211,'POLICY','2019-08-22 05:31:57','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (212,'POLICY','2019-08-22 05:31:59','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (213,'POLICY','2019-08-22 05:32:01','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (214,'POLICY','2019-08-22 05:32:04','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (215,'POLICY','2019-08-22 05:32:06','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (216,'POLICY','2019-08-22 05:32:06','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (217,'DCAE','2019-08-22 05:32:06','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (218,'CLAMP','2019-08-22 05:32:06','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (219,'CLAMP','2019-08-22 05:32:06','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (220,'CLAMP','2019-08-22 05:48:50','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (221,'POLICY','2019-08-22 05:48:52','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (222,'POLICY','2019-08-22 05:48:54','INFO','guard.minmax.new PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (223,'POLICY','2019-08-22 05:48:55','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (224,'POLICY','2019-08-22 05:48:57','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (225,'POLICY','2019-08-22 05:48:59','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (226,'POLICY','2019-08-22 05:49:01','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (227,'POLICY','2019-08-22 05:49:04','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (228,'POLICY','2019-08-22 05:49:06','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (229,'POLICY','2019-08-22 05:49:08','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (230,'POLICY','2019-08-22 05:49:13','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (231,'CLAMP','2019-08-22 05:49:13','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (232,'CLAMP','2019-08-22 05:50:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (233,'POLICY','2019-08-22 05:50:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (234,'POLICY','2019-08-22 05:50:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (235,'POLICY','2019-08-22 05:50:33','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (236,'POLICY','2019-08-22 05:50:35','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (237,'POLICY','2019-08-22 05:50:37','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (238,'POLICY','2019-08-22 05:50:39','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (239,'CLAMP','2019-08-22 05:52:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (240,'POLICY','2019-08-22 05:52:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (241,'POLICY','2019-08-22 05:52:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (242,'POLICY','2019-08-22 05:52:32','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (243,'POLICY','2019-08-22 05:52:34','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (244,'POLICY','2019-08-22 05:52:36','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (245,'POLICY','2019-08-22 05:52:38','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (246,'CLAMP','2019-08-22 05:54:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (247,'POLICY','2019-08-22 05:54:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (248,'POLICY','2019-08-22 05:54:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (249,'POLICY','2019-08-22 05:54:33','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (250,'POLICY','2019-08-22 05:54:35','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (251,'POLICY','2019-08-22 05:54:37','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (252,'POLICY','2019-08-22 05:54:39','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (253,'CLAMP','2019-08-22 05:56:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (254,'POLICY','2019-08-22 05:56:30','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (255,'POLICY','2019-08-22 05:56:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (256,'POLICY','2019-08-22 05:56:33','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (257,'POLICY','2019-08-22 05:56:35','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (258,'POLICY','2019-08-22 05:56:37','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (259,'POLICY','2019-08-22 05:56:39','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (260,'CLAMP','2019-08-22 05:58:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (261,'POLICY','2019-08-22 05:58:30','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (262,'POLICY','2019-08-22 05:58:32','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (263,'POLICY','2019-08-22 05:58:34','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (264,'POLICY','2019-08-22 05:58:36','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (265,'POLICY','2019-08-22 05:58:38','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (266,'POLICY','2019-08-22 05:58:40','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (267,'CLAMP','2019-08-22 06:00:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (268,'POLICY','2019-08-22 06:00:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (269,'POLICY','2019-08-22 06:00:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (270,'POLICY','2019-08-22 06:00:33','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (271,'POLICY','2019-08-22 06:00:34','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (272,'POLICY','2019-08-22 06:00:36','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (273,'POLICY','2019-08-22 06:00:38','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (274,'CLAMP','2019-08-22 06:02:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (275,'POLICY','2019-08-22 06:02:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (276,'POLICY','2019-08-22 06:02:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (277,'POLICY','2019-08-22 06:02:34','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (278,'POLICY','2019-08-22 06:02:36','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (279,'POLICY','2019-08-22 06:02:38','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (280,'POLICY','2019-08-22 06:02:40','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (281,'POLICY','2019-08-22 06:02:57','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (282,'DCAE','2019-08-22 06:02:57','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (283,'CLAMP','2019-08-22 06:02:57','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (284,'CLAMP','2019-08-22 06:02:58','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (285,'POLICY','2019-08-22 06:03:00','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (286,'DCAE','2019-08-22 06:03:00','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (287,'CLAMP','2019-08-22 06:03:00','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (288,'CLAMP','2019-08-22 06:03:00','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (289,'CLAMP','2019-08-22 06:04:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (290,'POLICY','2019-08-22 06:04:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (291,'POLICY','2019-08-22 06:04:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (292,'POLICY','2019-08-22 06:04:33','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (293,'POLICY','2019-08-22 06:04:35','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (294,'POLICY','2019-08-22 06:04:37','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (295,'POLICY','2019-08-22 06:04:37','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (296,'DCAE','2019-08-22 06:04:37','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (297,'CLAMP','2019-08-22 06:04:38','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (298,'CLAMP','2019-08-22 06:04:38','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (299,'POLICY','2019-08-22 06:04:39','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (300,'POLICY','2019-08-22 06:04:39','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (301,'DCAE','2019-08-22 06:04:39','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (302,'CLAMP','2019-08-22 06:04:39','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (303,'CLAMP','2019-08-22 06:04:39','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (304,'POLICY','2019-08-22 06:04:43','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (305,'DCAE','2019-08-22 06:04:44','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (306,'CLAMP','2019-08-22 06:04:44','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (307,'CLAMP','2019-08-22 06:04:44','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (308,'POLICY','2019-08-22 06:04:46','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (309,'DCAE','2019-08-22 06:04:46','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (310,'CLAMP','2019-08-22 06:04:47','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (311,'CLAMP','2019-08-22 06:04:47','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (312,'POLICY','2019-08-22 06:04:49','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (313,'DCAE','2019-08-22 06:04:49','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (314,'CLAMP','2019-08-22 06:04:49','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (315,'CLAMP','2019-08-22 06:04:49','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (316,'POLICY','2019-08-22 06:04:50','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (317,'DCAE','2019-08-22 06:04:50','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (318,'CLAMP','2019-08-22 06:04:50','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (319,'CLAMP','2019-08-22 06:04:50','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (320,'CLAMP','2019-08-22 06:24:58','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (321,'POLICY','2019-08-22 06:25:04','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (322,'POLICY','2019-08-22 06:25:06','INFO','guard.minmax.new PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (323,'POLICY','2019-08-22 06:25:08','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (324,'POLICY','2019-08-22 06:25:09','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (325,'POLICY','2019-08-22 06:25:13','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (326,'POLICY','2019-08-22 06:25:14','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (327,'POLICY','2019-08-22 06:25:16','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (328,'POLICY','2019-08-22 06:25:19','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (329,'POLICY','2019-08-22 06:25:21','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (330,'POLICY','2019-08-22 06:25:25','INFO','PDP Group push ALL status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (331,'CLAMP','2019-08-22 06:25:26','ERROR','SUBMIT request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.1:31684/policy/pap/v1/pdps/policies?connectionTimeToLive=5000 with statusCode: 400 - Body: {\"errorDetails\":\"group defaultGroup subgroup xacml has no active PDPs\"}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (332,'CLAMP','2019-08-22 06:25:27','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (333,'POLICY','2019-08-22 06:25:29','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (334,'POLICY','2019-08-22 06:25:31','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (335,'CLAMP','2019-08-22 06:25:31','ERROR','Get Status request failed, Error reported: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking https://10.12.6.112:32251/policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies/TCA_ejh5S_v1_0_ResourceInstanceName1_tca/versions/deployed?connectionTimeToLive=5000 with statusCode: 404 - Body: {\"code\":\"NOT_FOUND\",\"error\":\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\",\"details\":[\"could not find policy with ID TCA_ejh5S_v1_0_ResourceInstanceName1_tca and type onap.policies.monitoring.cdap.tca.hi.lo.app:1.0.0 deployed in any pdp group\"]}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (336,'CLAMP','2019-08-22 06:26:37','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (337,'POLICY','2019-08-22 06:26:39','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (338,'POLICY','2019-08-22 06:26:41','INFO','guard.minmax.new PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (339,'POLICY','2019-08-22 06:26:42','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (340,'POLICY','2019-08-22 06:26:45','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (341,'POLICY','2019-08-22 06:26:46','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (342,'POLICY','2019-08-22 06:26:49','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (343,'POLICY','2019-08-22 06:26:51','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (344,'POLICY','2019-08-22 06:26:53','INFO','guard.minmax.new removal status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (345,'POLICY','2019-08-22 06:26:55','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (346,'POLICY','2019-08-22 06:26:59','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (347,'CLAMP','2019-08-22 06:27:00','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (348,'CLAMP','2019-08-22 06:27:21','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (349,'POLICY','2019-08-22 06:27:23','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (350,'POLICY','2019-08-22 06:27:25','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (351,'POLICY','2019-08-22 06:27:27','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (352,'POLICY','2019-08-22 06:28:35','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (353,'CLAMP','2019-08-22 06:29:21','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (354,'POLICY','2019-08-22 06:29:23','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (355,'POLICY','2019-08-22 06:29:25','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (356,'POLICY','2019-08-22 06:29:27','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (357,'POLICY','2019-08-22 06:29:46','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (358,'POLICY','2019-08-22 06:29:49','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (359,'POLICY','2019-08-22 06:29:55','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (360,'POLICY','2019-08-22 06:29:58','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (361,'DCAE','2019-08-22 06:29:59','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (362,'CLAMP','2019-08-22 06:29:59','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (363,'CLAMP','2019-08-22 06:29:59','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (364,'POLICY','2019-08-22 06:30:06','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (365,'POLICY','2019-08-22 06:30:07','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (366,'POLICY','2019-08-22 06:30:15','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (367,'DCAE','2019-08-22 06:30:15','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (368,'CLAMP','2019-08-22 06:30:16','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (369,'CLAMP','2019-08-22 06:30:16','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (370,'CLAMP','2019-08-22 06:34:26','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (371,'POLICY','2019-08-22 06:34:28','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (372,'POLICY','2019-08-22 06:34:30','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (373,'POLICY','2019-08-22 06:34:32','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (374,'POLICY','2019-08-22 06:34:44','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (375,'POLICY','2019-08-22 06:34:50','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (376,'POLICY','2019-08-22 06:34:52','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (377,'CLAMP','2019-08-22 06:36:26','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (378,'POLICY','2019-08-22 06:36:28','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (379,'POLICY','2019-08-22 06:36:30','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (380,'POLICY','2019-08-22 06:36:32','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (381,'POLICY','2019-08-22 06:36:37','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (382,'DCAE','2019-08-22 06:36:37','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (383,'CLAMP','2019-08-22 06:36:38','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (384,'CLAMP','2019-08-22 06:36:38','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (385,'POLICY','2019-08-22 06:36:45','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (386,'POLICY','2019-08-22 06:36:51','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (387,'POLICY','2019-08-22 06:36:53','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (388,'POLICY','2019-08-22 06:36:56','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (389,'DCAE','2019-08-22 06:36:56','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (390,'CLAMP','2019-08-22 06:36:57','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (391,'CLAMP','2019-08-22 06:36:57','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (392,'CLAMP','2019-08-23 06:09:13','INFO','POLICY SUBMIT request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (393,'POLICY','2019-08-23 06:09:17','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (394,'POLICY','2019-08-23 06:09:19','INFO','guard.minmax.new PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (395,'POLICY','2019-08-23 06:09:20','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca PDP Group removal status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (396,'POLICY','2019-08-23 06:09:23','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 404 : Not Found','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (397,'POLICY','2019-08-23 06:09:26','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (398,'POLICY','2019-08-23 06:09:28','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca removal\n status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (399,'POLICY','2019-08-23 06:09:30','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca creation\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (400,'POLICY','2019-08-23 06:09:32','INFO','guard.minmax.new removal status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (401,'POLICY','2019-08-23 06:09:33','INFO','guard.minmax.new creation status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (402,'POLICY','2019-08-23 06:09:38','INFO','PDP Group push ALL status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (403,'CLAMP','2019-08-23 06:09:38','INFO','SUBMIT request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (404,'CLAMP','2019-08-23 06:09:42','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (405,'POLICY','2019-08-23 06:09:44','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (406,'POLICY','2019-08-23 06:09:46','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (407,'POLICY','2019-08-23 06:09:48','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (408,'POLICY','2019-08-23 06:09:49','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (409,'POLICY','2019-08-23 06:09:51','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (410,'POLICY','2019-08-23 06:09:53','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (411,'POLICY','2019-08-23 06:09:53','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (412,'DCAE','2019-08-23 06:09:53','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (413,'CLAMP','2019-08-23 06:09:53','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (414,'CLAMP','2019-08-23 06:09:54','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (415,'CLAMP','2019-08-23 06:15:57','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (416,'POLICY','2019-08-23 06:16:00','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (417,'POLICY','2019-08-23 06:16:02','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (418,'POLICY','2019-08-23 06:16:04','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (419,'POLICY','2019-08-23 06:16:06','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (420,'POLICY','2019-08-23 06:16:08','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (421,'POLICY','2019-08-23 06:16:10','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (422,'POLICY','2019-08-23 06:16:10','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (423,'DCAE','2019-08-23 06:16:10','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (424,'CLAMP','2019-08-23 06:16:10','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (425,'CLAMP','2019-08-23 06:16:10','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (426,'CLAMP','2019-08-23 06:17:13','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (427,'POLICY','2019-08-23 06:17:15','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (428,'POLICY','2019-08-23 06:17:17','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (429,'POLICY','2019-08-23 06:17:19','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (430,'POLICY','2019-08-23 06:17:21','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (431,'POLICY','2019-08-23 06:17:23','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (432,'POLICY','2019-08-23 06:17:24','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (433,'POLICY','2019-08-23 06:17:25','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (434,'DCAE','2019-08-23 06:17:25','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (435,'CLAMP','2019-08-23 06:17:25','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (436,'CLAMP','2019-08-23 06:17:25','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (437,'CLAMP','2019-08-23 06:17:56','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (438,'POLICY','2019-08-23 06:17:58','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (439,'POLICY','2019-08-23 06:17:59','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (440,'POLICY','2019-08-23 06:18:01','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (441,'POLICY','2019-08-23 06:18:03','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (442,'POLICY','2019-08-23 06:18:05','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (443,'POLICY','2019-08-23 06:18:07','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (444,'POLICY','2019-08-23 06:18:07','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (445,'DCAE','2019-08-23 06:18:07','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (446,'CLAMP','2019-08-23 06:18:08','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (447,'CLAMP','2019-08-23 06:18:08','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (448,'CLAMP','2019-08-23 07:00:34','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (449,'POLICY','2019-08-23 07:00:39','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (450,'POLICY','2019-08-23 07:00:41','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (451,'CLAMP','2019-08-23 07:02:35','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (452,'POLICY','2019-08-23 07:02:37','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (453,'POLICY','2019-08-23 07:02:39','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (454,'POLICY','2019-08-23 07:02:43','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (455,'POLICY','2019-08-23 07:02:45','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (456,'CLAMP','2019-08-23 07:04:34','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (457,'POLICY','2019-08-23 07:04:36','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (458,'POLICY','2019-08-23 07:04:39','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (459,'CLAMP','2019-08-23 07:06:35','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (460,'POLICY','2019-08-23 07:06:36','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (461,'POLICY','2019-08-23 07:06:38','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (462,'CLAMP','2019-08-23 07:08:34','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (463,'POLICY','2019-08-23 07:08:36','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (464,'POLICY','2019-08-23 07:08:38','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (465,'CLAMP','2019-08-23 07:10:34','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (466,'POLICY','2019-08-23 07:10:36','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (467,'POLICY','2019-08-23 07:10:38','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (468,'POLICY','2019-08-23 07:10:45','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (469,'POLICY','2019-08-23 07:10:46','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (470,'CLAMP','2019-08-23 07:12:34','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (471,'POLICY','2019-08-23 07:12:36','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (472,'POLICY','2019-08-23 07:12:38','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (473,'POLICY','2019-08-23 07:13:58','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (474,'POLICY','2019-08-23 07:13:58','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (475,'POLICY','2019-08-23 07:13:58','INFO','guard.minmax.new GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (476,'POLICY','2019-08-23 07:13:58','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (477,'POLICY','2019-08-23 07:13:58','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - : ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (478,'POLICY','2019-08-23 07:13:58','INFO','guard.minmax.new GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (479,'POLICY','2019-08-23 07:13:59','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (480,'POLICY','2019-08-23 07:14:01','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (481,'POLICY','2019-08-23 07:14:03','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (482,'POLICY','2019-08-23 07:14:05','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (483,'POLICY','2019-08-23 07:14:05','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (484,'DCAE','2019-08-23 07:14:05','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (485,'CLAMP','2019-08-23 07:14:05','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (486,'CLAMP','2019-08-23 07:14:05','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (487,'CLAMP','2019-08-23 07:20:28','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (488,'POLICY','2019-08-23 07:20:32','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (489,'POLICY','2019-08-23 07:20:33','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (490,'POLICY','2019-08-23 07:20:35','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (491,'POLICY','2019-08-23 07:20:37','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (492,'POLICY','2019-08-23 07:20:39','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (493,'POLICY','2019-08-23 07:20:41','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (494,'POLICY','2019-08-23 07:20:41','INFO','Policy state set to: IN_ERROR','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (495,'DCAE','2019-08-23 07:20:41','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (496,'CLAMP','2019-08-23 07:20:41','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (497,'CLAMP','2019-08-23 07:20:41','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (498,'CLAMP','2019-08-23 07:27:46','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (499,'POLICY','2019-08-23 07:27:49','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (500,'POLICY','2019-08-23 07:27:50','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (501,'POLICY','2019-08-23 07:27:52','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (502,'POLICY','2019-08-23 07:27:54','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (503,'POLICY','2019-08-23 07:27:55','INFO','guard.minmax.new GET\n Policy status - 400 : Bad Request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (504,'POLICY','2019-08-23 07:27:57','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (505,'POLICY','2019-08-23 07:27:57','INFO','Policy state set to: IN_ERROR','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (506,'DCAE','2019-08-23 07:27:57','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (507,'CLAMP','2019-08-23 07:27:58','INFO','New loop state is: IN_ERROR','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (508,'CLAMP','2019-08-23 07:27:58','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (509,'CLAMP','2019-08-23 08:28:55','INFO','GET STATUS request','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (510,'POLICY','2019-08-23 08:28:59','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (511,'POLICY','2019-08-23 08:29:01','INFO','TCA_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (512,'POLICY','2019-08-23 08:29:03','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (513,'POLICY','2019-08-23 08:29:04','INFO','OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (514,'POLICY','2019-08-23 08:29:06','INFO','guard.minmax.new GET\n Policy status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (515,'POLICY','2019-08-23 08:29:08','INFO','guard.minmax.new GET Policy deployment\n status - 200 : OK','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (516,'POLICY','2019-08-23 08:29:08','INFO','Policy state set to: SENT_AND_DEPLOYED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (517,'DCAE','2019-08-23 08:29:08','INFO','DCAE state set to: BLUEPRINT_DEPLOYED - message: ','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (518,'CLAMP','2019-08-23 08:29:09','INFO','New loop state is: SUBMITTED','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loop_logs` VALUES (519,'CLAMP','2019-08-23 08:29:09','INFO','Get Status request successfully executed','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -/*!40000 ALTER TABLE `loop_logs` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `loops` --- - -LOCK TABLES `loops` WRITE; -/*!40000 ALTER TABLE `loops` DISABLE KEYS */; -INSERT INTO `loops` VALUES ('LOOP_ejh5S_v1_0_ResourceInstanceName1_tca','tosca_definitions_version: cloudify_dsl_1_3\nimports:\n- http://www.getcloudify.org/spec/cloudify/3.4/types.yaml\n- https://onap.org:8443/repository/solutioning01-mte2-raw/type_files/docker/2.2.0/node-type.yaml\n- https://onap.org:8443/repository/solutioning01-mte2-raw/type_files/relationship/1.0.0/node-type.yaml\n- http://onap.org:8081/repository/solutioning01-mte2-raw/type_files/dmaap/dmaap_mr.yaml\ninputs:\n location_id:\n type: string\n service_id:\n type: string\n policy_id:\n type: string\nnode_templates:\n policy_0:\n type: dcae.nodes.policy\n properties:\n policy_id: \n get_input: policy_id\n policy_model_id: \"onap.policies.monitoring.cdap.tca.hi.lo.app\"\n cdap_host_host:\n type: dcae.nodes.StreamingAnalytics.SelectedCDAPInfrastructure\n properties:\n location_id:\n get_input: location_id\n scn_override: cdap_broker.solutioning-central.dcae.onap.org\n interfaces:\n cloudify.interfaces.lifecycle: {\n }\n tca_tca:\n type: dcae.nodes.MicroService.cdap\n properties:\n app_config:\n appDescription: DCAE Analytics Threshold Crossing Alert Application\n appName: dcae-tca\n tcaSubscriberOutputStreamName: TCASubscriberOutputStream\n tcaVESAlertsTableName: TCAVESAlertsTable\n tcaVESAlertsTableTTLSeconds: \'1728000\'\n tcaVESMessageStatusTableName: TCAVESMessageStatusTable\n tcaVESMessageStatusTableTTLSeconds: \'86400\'\n thresholdCalculatorFlowletInstances: \'2\'\n app_preferences:\n publisherContentType: application/json\n publisherHostName: mrlocal-mtnjftle01.onap.org\n publisherHostPort: \'3905\'\n publisherMaxBatchSize: \'10\'\n publisherMaxRecoveryQueueSize: \'100000\'\n publisherPollingInterval: \'20000\'\n publisherProtocol: https\n publisherTopicName: org.onap.dcae.dmaap.mtnje2.DcaeTestVESPub\n publisherUserName: test@tca.af.dcae.onap.org\n publisherUserPassword: password\n subscriberConsumerGroup: OpenDCAE-c12\n subscriberConsumerId: c12\n subscriberContentType: application/json\n subscriberHostName: mrlocal-mtnjftle01.onap.org\n subscriberHostPort: \'3905\'\n subscriberMessageLimit: \'-1\'\n subscriberPollingInterval: \'20000\'\n subscriberProtocol: https\n subscriberTimeoutMS: \'-1\'\n subscriberTopicName: org.onap.dcae.dmaap.mtnje2.DcaeTestVESSub\n subscriberUserName: test@tca.af.dcae.onap.org\n subscriberUserPassword: password\n tca_policy: null\n artifact_name: dcae-analytics-tca\n artifact_version: 1.0.0\n connections:\n streams_publishes: [\n ]\n streams_subscribes: [\n ]\n jar_url: http://somejar\n location_id:\n get_input: location_id\n namespace: cdap_tca_hi_lo\n programs:\n - program_id: TCAVESCollectorFlow\n program_type: flows\n - program_id: TCADMaaPMRSubscriberWorker\n program_type: workers\n - program_id: TCADMaaPMRPublisherWorker\n program_type: workers\n service_component_type: cdap_app_tca\n service_id:\n get_input: service_id\n streamname: TCASubscriberOutputStream\n relationships:\n - target: topic0\n type: dcae.relationships.subscribe_to_events\n - target: topic1\n type: dcae.relationships.publish_events\n - target: cdap_host_host\n type: dcae.relationships.component_contained_in\n - target: policy_0\n type: dcae.relationships.depends_on\n topic0:\n type: dcae.nodes.Topic\n properties:\n topic_name: \'\'\n topic1:\n type: dcae.nodes.Topic\n properties:\n topic_name: \'\'\n \n','typeId-cb3bc48d-86a3-4580-92ed-c0697d9ec963',NULL,NULL,'{\n \"dcaeDeployParameters\": {\n \"location_id\": \"\",\n \"service_id\": \"\",\n \"policy_id\": \"TCA_ejh5S_v1_0_ResourceInstanceName1_tca\"\n }\n}','SUBMITTED','{\n \"serviceDetails\": {\n \"serviceType\": \"\",\n \"serviceRole\": \"\",\n \"description\": \"vLBMS\",\n \"type\": \"Service\",\n \"instantiationType\": \"A-la-carte\",\n \"namingPolicy\": \"\",\n \"serviceEcompNaming\": \"true\",\n \"environmentContext\": \"General_Revenue-Bearing\",\n \"name\": \"vLoadBalancerMS\",\n \"invariantUUID\": \"30ec5b59-4799-48d8-ac5f-1058a6b0e48f\",\n \"ecompGeneratedNaming\": \"true\",\n \"UUID\": \"63cac700-ab9a-4115-a74f-7eac85e3fce0\",\n \"category\": \"Network L4+\"\n },\n \"resourceDetails\": {\n \"CP\": {},\n \"VL\": {},\n \"VF\": {\n \"vLoadBalancerMS 0\": {\n \"resourceVendor\": \"Test\",\n \"name\": \"vLoadBalancerMS\",\n \"resourceVendorModelNumber\": \"\",\n \"description\": \"vLBMS\",\n \"invariantUUID\": \"1a31b9f2-e50d-43b7-89b3-a040250cf506\",\n \"UUID\": \"b4c4f3d7-929e-4b6d-a1cd-57e952ddc3e6\",\n \"type\": \"VF\",\n \"category\": \"Application L4+\",\n \"subcategory\": \"Load Balancer\",\n \"version\": \"1.0\",\n \"customizationUUID\": \"465246dc-7748-45f4-a013-308d92922552\",\n \"resourceVendorRelease\": \"1.0\"\n }\n },\n \"CR\": {},\n \"VFC\": {},\n \"PNF\": {},\n \"Service\": {},\n \"CVFC\": {},\n \"Service Proxy\": {},\n \"Configuration\": {},\n \"AllottedResource\": {},\n \"VFModule\": {\n \"Vloadbalancerms..vpkg..module-1\": {\n \"vfModuleModelInvariantUUID\": \"ca052563-eb92-4b5b-ad41-9111768ce043\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vpkg..module-1\",\n \"vfModuleModelUUID\": \"1e725ccc-b823-4f67-82b9-4f4367070dbc\",\n \"vfModuleModelCustomizationUUID\": \"1bffdc31-a37d-4dee-b65c-dde623a76e52\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vpkg\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n },\n \"Vloadbalancerms..vdns..module-3\": {\n \"vfModuleModelInvariantUUID\": \"4c10ba9b-f88f-415e-9de3-5d33336047fa\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vdns..module-3\",\n \"vfModuleModelUUID\": \"4fa73b49-8a6c-493e-816b-eb401567b720\",\n \"vfModuleModelCustomizationUUID\": \"bafcdab0-801d-4d81-9ead-f464640a38b1\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vdns\",\n \"max_vf_module_instances\": 50,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n },\n \"Vloadbalancerms..base_template..module-0\": {\n \"vfModuleModelInvariantUUID\": \"921f7c96-ebdd-42e6-81b9-1cfc0c9796f3\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..base_template..module-0\",\n \"vfModuleModelUUID\": \"63734409-f745-4e4d-a38b-131638a0edce\",\n \"vfModuleModelCustomizationUUID\": \"86baddea-c730-4fb8-9410-cd2e17fd7f27\",\n \"min_vf_module_instances\": 1,\n \"vf_module_label\": \"base_template\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Base\",\n \"isBase\": true,\n \"initial_count\": 1,\n \"volume_group\": false\n },\n \"Vloadbalancerms..vlb..module-2\": {\n \"vfModuleModelInvariantUUID\": \"a772a1f4-0064-412c-833d-4749b15828dd\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vlb..module-2\",\n \"vfModuleModelUUID\": \"0f5c3f6a-650a-4303-abb6-fff3e573a07a\",\n \"vfModuleModelCustomizationUUID\": \"96a78aad-4ffb-4ef0-9c4f-deb03bf1d806\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vlb\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n }\n }\n }\n}','{\n \"schema\": {\n \"uniqueItems\": \"true\",\n \"format\": \"tabs\",\n \"type\": \"array\",\n \"minItems\": 1,\n \"maxItems\": 1,\n \"title\": \"Operational policies\",\n \"items\": {\n \"type\": \"object\",\n \"title\": \"Operational Policy Item\",\n \"id\": \"operational_policy_item\",\n \"headerTemplate\": \"{{self.name}}\",\n \"required\": [\n \"name\",\n \"configurationsJson\"\n ],\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"title\": \"Operational policy name\",\n \"readOnly\": \"True\"\n },\n \"configurationsJson\": {\n \"type\": \"object\",\n \"title\": \"Configuration\",\n \"required\": [\n \"operational_policy\",\n \"guard_policies\"\n ],\n \"properties\": {\n \"operational_policy\": {\n \"type\": \"object\",\n \"title\": \"Related Parameters\",\n \"required\": [\n \"controlLoop\",\n \"policies\"\n ],\n \"properties\": {\n \"controlLoop\": {\n \"type\": \"object\",\n \"title\": \"Control Loop details\",\n \"required\": [\n \"timeout\",\n \"abatement\",\n \"trigger_policy\",\n \"controlLoopName\"\n ],\n \"properties\": {\n \"timeout\": {\n \"type\": \"string\",\n \"title\": \"Overall Time Limit\",\n \"default\": \"0\",\n \"format\": \"number\"\n },\n \"abatement\": {\n \"type\": \"string\",\n \"title\": \"Abatement\",\n \"enum\": [\n \"True\",\n \"False\"\n ]\n },\n \"trigger_policy\": {\n \"type\": \"string\",\n \"title\": \"Policy Decision Entry\"\n },\n \"controlLoopName\": {\n \"type\": \"string\",\n \"title\": \"Control loop name\",\n \"readOnly\": \"True\"\n }\n }\n },\n \"policies\": {\n \"uniqueItems\": \"true\",\n \"id\": \"policies_array\",\n \"type\": \"array\",\n \"title\": \"Policy Decision Tree\",\n \"format\": \"tabs-top\",\n \"items\": {\n \"title\": \"Policy Decision\",\n \"type\": \"object\",\n \"id\": \"policy_item\",\n \"headerTemplate\": \"{{self.id}} - {{self.recipe}}\",\n \"format\": \"categories\",\n \"basicCategoryTitle\": \"recipe\",\n \"required\": [\n \"id\",\n \"recipe\",\n \"retry\",\n \"timeout\",\n \"actor\",\n \"success\",\n \"failure\",\n \"failure_timeout\",\n \"failure_retries\",\n \"failure_exception\",\n \"failure_guard\",\n \"target\"\n ],\n \"properties\": {\n \"id\": {\n \"default\": \"Policy 1\",\n \"title\": \"Policy ID\",\n \"type\": \"string\"\n },\n \"recipe\": {\n \"title\": \"Recipe\",\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"retry\": {\n \"default\": \"0\",\n \"title\": \"Number of Retry\",\n \"type\": \"string\",\n \"format\": \"number\"\n },\n \"timeout\": {\n \"default\": \"0\",\n \"title\": \"Timeout\",\n \"type\": \"string\",\n \"format\": \"number\"\n },\n \"actor\": {\n \"title\": \"Actor\",\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"payload\": {\n \"title\": \"Payload (YAML)\",\n \"type\": \"string\",\n \"format\": \"textarea\"\n },\n \"success\": {\n \"default\": \"final_success\",\n \"title\": \"When Success\",\n \"type\": \"string\"\n },\n \"failure\": {\n \"default\": \"final_failure\",\n \"title\": \"When Failure\",\n \"type\": \"string\"\n },\n \"failure_timeout\": {\n \"default\": \"final_failure_timeout\",\n \"title\": \"When Failure Timeout\",\n \"type\": \"string\"\n },\n \"failure_retries\": {\n \"default\": \"final_failure_retries\",\n \"title\": \"When Failure Retries\",\n \"type\": \"string\"\n },\n \"failure_exception\": {\n \"default\": \"final_failure_exception\",\n \"title\": \"When Failure Exception\",\n \"type\": \"string\"\n },\n \"failure_guard\": {\n \"default\": \"final_failure_guard\",\n \"title\": \"When Failure Guard\",\n \"type\": \"string\"\n },\n \"target\": {\n \"type\": \"object\",\n \"required\": [\n \"type\",\n \"resourceID\"\n ],\n \"anyOf\": [\n {\n \"title\": \"User Defined\",\n \"additionalProperties\": \"True\",\n \"properties\": {\n \"type\": {\n \"title\": \"Target type\",\n \"type\": \"string\",\n \"default\": \"\",\n \"enum\": [\n \"VNF\",\n \"VFMODULE\",\n \"VM\"\n ]\n },\n \"resourceID\": {\n \"title\": \"Target type\",\n \"type\": \"string\",\n \"default\": \"\"\n }\n }\n },\n {\n \"title\": \"VNF-vLoadBalancerMS 0\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VNF\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"vLoadBalancerMS\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vpkg..module-1\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vpkg..module-1\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"ca052563-eb92-4b5b-ad41-9111768ce043\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"1e725ccc-b823-4f67-82b9-4f4367070dbc\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vpkg..module-1\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"1bffdc31-a37d-4dee-b65c-dde623a76e52\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vdns..module-3\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vdns..module-3\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"4c10ba9b-f88f-415e-9de3-5d33336047fa\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"4fa73b49-8a6c-493e-816b-eb401567b720\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vdns..module-3\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"bafcdab0-801d-4d81-9ead-f464640a38b1\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..base_template..module-0\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..base_template..module-0\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"921f7c96-ebdd-42e6-81b9-1cfc0c9796f3\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"63734409-f745-4e4d-a38b-131638a0edce\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..base_template..module-0\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"86baddea-c730-4fb8-9410-cd2e17fd7f27\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vlb..module-2\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vlb..module-2\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"a772a1f4-0064-412c-833d-4749b15828dd\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"0f5c3f6a-650a-4303-abb6-fff3e573a07a\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vlb..module-2\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"96a78aad-4ffb-4ef0-9c4f-deb03bf1d806\",\n \"readOnly\": \"True\"\n }\n }\n }\n ]\n }\n }\n }\n }\n }\n },\n \"guard_policies\": {\n \"type\": \"array\",\n \"format\": \"tabs-top\",\n \"title\": \"Associated Guard policies\",\n \"items\": {\n \"headerTemplate\": \"{{self.policy-id}} - {{self.content.recipe}}\",\n \"anyOf\": [\n {\n \"title\": \"Guard MinMax\",\n \"type\": \"object\",\n \"properties\": {\n \"policy-id\": {\n \"type\": \"string\",\n \"default\": \"guard.minmax.new\",\n \"pattern\": \"^(guard.minmax\\\\..*)$\"\n },\n \"content\": {\n \"properties\": {\n \"actor\": {\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"recipe\": {\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"targets\": {\n \"type\": \"string\",\n \"default\": \".*\"\n },\n \"clname\": {\n \"type\": \"string\",\n \"template\": \"{{loopName}}\",\n \"watch\": {\n \"loopName\": \"operational_policy_item.configurationsJson.operational_policy.controlLoop.controlLoopName\"\n }\n },\n \"guardActiveStart\": {\n \"type\": \"string\",\n \"default\": \"00:00:00Z\"\n },\n \"guardActiveEnd\": {\n \"type\": \"string\",\n \"default\": \"10:00:00Z\"\n },\n \"min\": {\n \"type\": \"string\",\n \"default\": \"0\"\n },\n \"max\": {\n \"type\": \"string\",\n \"default\": \"1\"\n }\n }\n }\n }\n },\n {\n \"title\": \"Guard Frequency\",\n \"type\": \"object\",\n \"properties\": {\n \"policy-id\": {\n \"type\": \"string\",\n \"default\": \"guard.frequency.new\",\n \"pattern\": \"^(guard.frequency\\\\..*)$\"\n },\n \"content\": {\n \"properties\": {\n \"actor\": {\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"recipe\": {\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"targets\": {\n \"type\": \"string\",\n \"default\": \".*\"\n },\n \"clname\": {\n \"type\": \"string\",\n \"template\": \"{{loopName}}\",\n \"watch\": {\n \"loopName\": \"operational_policy_item.configurationsJson.operational_policy.controlLoop.controlLoopName\"\n }\n },\n \"guardActiveStart\": {\n \"type\": \"string\",\n \"default\": \"00:00:00Z\"\n },\n \"guardActiveEnd\": {\n \"type\": \"string\",\n \"default\": \"10:00:00Z\"\n },\n \"limit\": {\n \"type\": \"string\"\n },\n \"timeWindow\": {\n \"type\": \"string\"\n },\n \"timeUnits\": {\n \"type\": \"string\",\n \"enum\": [\n \"minute\",\n \"hour\",\n \"day\",\n \"week\",\n \"month\",\n \"year\"\n ]\n }\n }\n }\n }\n }\n ]\n }\n }\n }\n }\n }\n }\n }\n}','<svg xmlns=\"http://www.w3.org/2000/svg\"><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"start-circle\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><circle fill=\"none\" r=\"17\" cx=\"18\" cy=\"41\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-443509bf-0a3a-4c17-9634-41b92426a677\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"35\" x2=\"123\" y1=\"41\"/><polygon fill=\"none\" points=\" 121 39 121 43 125 41\"/><polygon points=\" 121 39 121 43 125 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"VES\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"127\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"127\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"176.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">VES</text><line y2=\"83\" fill=\"none\" x1=\"147\" x2=\"147\" y1=\"1\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-82faaf2f-b3b5-4919-a5e6-839e75e0a2a1\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"250\" x2=\"338\" y1=\"41\"/><polygon fill=\"none\" points=\" 336 39 336 43 340 41\"/><polygon points=\" 336 39 336 43 340 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"TCA_ejh5S_v1_0_ResourceInstanceName1_tca\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"342\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"342\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"392\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">TCA</text><line y2=\"61\" fill=\"none\" x1=\"342\" x2=\"465\" y1=\"61\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-6ae3deea-0b32-4125-b7cc-dd472d3fbd1a\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"465\" x2=\"553\" y1=\"41\"/><polygon fill=\"none\" points=\" 551 39 551 43 555 41\"/><polygon points=\" 551 39 551 43 555 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"OperationalPolicy\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"557\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"557\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"564.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">OperationalPolicy</text><line y2=\"1\" fill=\"none\" x1=\"557\" x2=\"618\" y1=\"42\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-0536883f-3779-4456-85fa-d9169c3c5ea6\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"680\" x2=\"768\" y1=\"41\"/><polygon fill=\"none\" points=\" 766 39 766 43 770 41\"/><polygon points=\" 766 39 766 43 770 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"stop-circle\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"4\"><circle fill=\"none\" r=\"17\" cx=\"789\" cy=\"41\"/></g></g></g></svg>'); -INSERT INTO `loops` VALUES ('LOOP_ejh5S_v1_0_ResourceInstanceName1_tca_3','tosca_definitions_version: cloudify_dsl_1_3\n\ndescription: >\n This blueprint deploys/manages the TCA module as a Docker container\n\nimports:\n - http://www.getcloudify.org/spec/cloudify/3.4/types.yaml\n - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R4/k8splugin/1.4.12/k8splugin_types.yaml\n - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R4/dcaepolicyplugin/2.3.0/dcaepolicyplugin_types.yaml\ninputs:\n aaiEnrichmentHost:\n type: string\n default: \"aai.onap.svc.cluster.local\"\n aaiEnrichmentPort:\n type: string\n default: \"8443\"\n enableAAIEnrichment:\n type: string\n default: true\n dmaap_host:\n type: string\n default: message-router.onap.svc.cluster.local\n dmaap_port:\n type: string\n default: \"3904\"\n enableRedisCaching:\n type: string\n default: false\n redisHosts:\n type: string\n default: dcae-redis.onap.svc.cluster.local:6379\n tag_version:\n type: string\n default: \"nexus3.onap.org:10001/onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.0-STAGING-latest\"\n consul_host:\n type: string\n default: consul-server.onap.svc.cluster.local\n consul_port:\n type: string\n default: \"8500\"\n cbs_host:\n type: string\n default: \"config-binding-service.dcae.svc.cluster.local\"\n cbs_port:\n type: string\n default: \"10000\"\n policy_id:\n type: string\n default: \"none\"\n external_port:\n type: string\n description: Kubernetes node port on which CDAPgui is exposed\n default: \"32012\"\n policy_model_id:\n type: string\n default: \"onap.policies.monitoring.cdap.tca.hi.lo.app\"\n\nnode_templates:\n tca_k8s:\n type: dcae.nodes.ContainerizedServiceComponent\n relationships:\n - target: tca_policy\n type: cloudify.relationships.depends_on\n properties:\n service_component_type: \'dcaegen2-analytics-tca\'\n application_config: {}\n docker_config: {}\n image:\n get_input: tag_version\n log_info:\n log_directory: \"/opt/app/TCAnalytics/logs\"\n application_config:\n app_config:\n appDescription: DCAE Analytics Threshold Crossing Alert Application\n appName: dcae-tca\n tcaAlertsAbatementTableName: TCAAlertsAbatementTable\n tcaAlertsAbatementTableTTLSeconds: \'1728000\'\n tcaSubscriberOutputStreamName: TCASubscriberOutputStream\n tcaVESAlertsTableName: TCAVESAlertsTable\n tcaVESAlertsTableTTLSeconds: \'1728000\'\n tcaVESMessageStatusTableName: TCAVESMessageStatusTable\n tcaVESMessageStatusTableTTLSeconds: \'86400\'\n thresholdCalculatorFlowletInstances: \'2\'\n app_preferences:\n aaiEnrichmentHost:\n get_input: aaiEnrichmentHost\n aaiEnrichmentIgnoreSSLCertificateErrors: \'true\'\n aaiEnrichmentPortNumber: \'8443\'\n aaiEnrichmentProtocol: https\n aaiEnrichmentUserName: dcae@dcae.onap.org\n aaiEnrichmentUserPassword: demo123456!\n aaiVMEnrichmentAPIPath: /aai/v11/search/nodes-query\n aaiVNFEnrichmentAPIPath: /aai/v11/network/generic-vnfs/generic-vnf\n enableAAIEnrichment:\n get_input: enableAAIEnrichment\n enableRedisCaching:\n get_input: enableRedisCaching\n redisHosts:\n get_input: redisHosts\n enableAlertCEFFormat: \'false\'\n publisherContentType: application/json\n publisherHostName:\n get_input: dmaap_host\n publisherHostPort:\n get_input: dmaap_port\n publisherMaxBatchSize: \'1\'\n publisherMaxRecoveryQueueSize: \'100000\'\n publisherPollingInterval: \'20000\'\n publisherProtocol: http\n publisherTopicName: unauthenticated.DCAE_CL_OUTPUT\n subscriberConsumerGroup: OpenDCAE-c12\n subscriberConsumerId: c12\n subscriberContentType: application/json\n subscriberHostName:\n get_input: dmaap_host\n subscriberHostPort:\n get_input: dmaap_port\n subscriberMessageLimit: \'-1\'\n subscriberPollingInterval: \'30000\'\n subscriberProtocol: http\n subscriberTimeoutMS: \'-1\'\n subscriberTopicName: unauthenticated.VES_MEASUREMENT_OUTPUT\n tca_policy: \'\'\n service_component_type: dcaegen2-analytics_tca\n interfaces:\n cloudify.interfaces.lifecycle:\n start:\n inputs:\n envs:\n DMAAPHOST:\n { get_input: dmaap_host }\n DMAAPPORT:\n { get_input: dmaap_port }\n DMAAPPUBTOPIC: \"unauthenticated.DCAE_CL_OUTPUT\"\n DMAAPSUBTOPIC: \"unauthenticated.VES_MEASUREMENT_OUTPUT\"\n AAIHOST:\n { get_input: aaiEnrichmentHost }\n AAIPORT:\n { get_input: aaiEnrichmentPort }\n CONSUL_HOST:\n { get_input: consul_host }\n CONSUL_PORT:\n { get_input: consul_port }\n CBS_HOST:\n { get_input: cbs_host }\n CBS_PORT:\n { get_input: cbs_port }\n CONFIG_BINDING_SERVICE: \"config_binding_service\"\n ports:\n - concat: [\"11011:\", { get_input: external_port }]\n tca_policy:\n type: dcae.nodes.policy\n properties:\n policy_id:\n get_input: policy_id\n policy_model_id: \n get_input: policy_model_id\n','typeId-dee5b365-edb4-4131-89af-f729d3e0972f',NULL,NULL,'{\n \"dcaeDeployParameters\": {\n \"aaiEnrichmentHost\": \"aai.onap.svc.cluster.local\",\n \"aaiEnrichmentPort\": \"8443\",\n \"enableAAIEnrichment\": true,\n \"dmaap_host\": \"message-router.onap.svc.cluster.local\",\n \"dmaap_port\": \"3904\",\n \"enableRedisCaching\": false,\n \"redisHosts\": \"dcae-redis.onap.svc.cluster.local:6379\",\n \"tag_version\": \"nexus3.onap.org:10001/onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.0-STAGING-latest\",\n \"consul_host\": \"consul-server.onap.svc.cluster.local\",\n \"consul_port\": \"8500\",\n \"cbs_host\": \"config-binding-service.dcae.svc.cluster.local\",\n \"cbs_port\": \"10000\",\n \"external_port\": \"32012\",\n \"policy_model_id\": \"onap.policies.monitoring.cdap.tca.hi.lo.app\",\n \"policy_id\": \"tca_k8s_ejh5S_v1_0_ResourceInstanceName1_tca_3\"\n }\n}','DESIGN','{\n \"serviceDetails\": {\n \"serviceType\": \"\",\n \"serviceRole\": \"\",\n \"description\": \"vLBMS\",\n \"type\": \"Service\",\n \"instantiationType\": \"A-la-carte\",\n \"namingPolicy\": \"\",\n \"serviceEcompNaming\": \"true\",\n \"environmentContext\": \"General_Revenue-Bearing\",\n \"name\": \"vLoadBalancerMS\",\n \"invariantUUID\": \"30ec5b59-4799-48d8-ac5f-1058a6b0e48f\",\n \"ecompGeneratedNaming\": \"true\",\n \"UUID\": \"63cac700-ab9a-4115-a74f-7eac85e3fce0\",\n \"category\": \"Network L4+\"\n },\n \"resourceDetails\": {\n \"CP\": {},\n \"VL\": {},\n \"VF\": {\n \"vLoadBalancerMS 0\": {\n \"resourceVendor\": \"Test\",\n \"name\": \"vLoadBalancerMS\",\n \"resourceVendorModelNumber\": \"\",\n \"description\": \"vLBMS\",\n \"invariantUUID\": \"1a31b9f2-e50d-43b7-89b3-a040250cf506\",\n \"UUID\": \"b4c4f3d7-929e-4b6d-a1cd-57e952ddc3e6\",\n \"type\": \"VF\",\n \"category\": \"Application L4+\",\n \"subcategory\": \"Load Balancer\",\n \"version\": \"1.0\",\n \"customizationUUID\": \"465246dc-7748-45f4-a013-308d92922552\",\n \"resourceVendorRelease\": \"1.0\"\n }\n },\n \"CR\": {},\n \"VFC\": {},\n \"PNF\": {},\n \"Service\": {},\n \"CVFC\": {},\n \"Service Proxy\": {},\n \"Configuration\": {},\n \"AllottedResource\": {},\n \"VFModule\": {\n \"Vloadbalancerms..vpkg..module-1\": {\n \"vfModuleModelInvariantUUID\": \"ca052563-eb92-4b5b-ad41-9111768ce043\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vpkg..module-1\",\n \"vfModuleModelUUID\": \"1e725ccc-b823-4f67-82b9-4f4367070dbc\",\n \"vfModuleModelCustomizationUUID\": \"1bffdc31-a37d-4dee-b65c-dde623a76e52\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vpkg\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n },\n \"Vloadbalancerms..vdns..module-3\": {\n \"vfModuleModelInvariantUUID\": \"4c10ba9b-f88f-415e-9de3-5d33336047fa\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vdns..module-3\",\n \"vfModuleModelUUID\": \"4fa73b49-8a6c-493e-816b-eb401567b720\",\n \"vfModuleModelCustomizationUUID\": \"bafcdab0-801d-4d81-9ead-f464640a38b1\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vdns\",\n \"max_vf_module_instances\": 50,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n },\n \"Vloadbalancerms..base_template..module-0\": {\n \"vfModuleModelInvariantUUID\": \"921f7c96-ebdd-42e6-81b9-1cfc0c9796f3\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..base_template..module-0\",\n \"vfModuleModelUUID\": \"63734409-f745-4e4d-a38b-131638a0edce\",\n \"vfModuleModelCustomizationUUID\": \"86baddea-c730-4fb8-9410-cd2e17fd7f27\",\n \"min_vf_module_instances\": 1,\n \"vf_module_label\": \"base_template\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Base\",\n \"isBase\": true,\n \"initial_count\": 1,\n \"volume_group\": false\n },\n \"Vloadbalancerms..vlb..module-2\": {\n \"vfModuleModelInvariantUUID\": \"a772a1f4-0064-412c-833d-4749b15828dd\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vlb..module-2\",\n \"vfModuleModelUUID\": \"0f5c3f6a-650a-4303-abb6-fff3e573a07a\",\n \"vfModuleModelCustomizationUUID\": \"96a78aad-4ffb-4ef0-9c4f-deb03bf1d806\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vlb\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n }\n }\n }\n}','{\n \"schema\": {\n \"uniqueItems\": \"true\",\n \"format\": \"tabs\",\n \"type\": \"array\",\n \"minItems\": 1,\n \"maxItems\": 1,\n \"title\": \"Operational policies\",\n \"items\": {\n \"type\": \"object\",\n \"title\": \"Operational Policy Item\",\n \"id\": \"operational_policy_item\",\n \"headerTemplate\": \"{{self.name}}\",\n \"required\": [\n \"name\",\n \"configurationsJson\"\n ],\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"title\": \"Operational policy name\",\n \"readOnly\": \"True\"\n },\n \"configurationsJson\": {\n \"type\": \"object\",\n \"title\": \"Configuration\",\n \"required\": [\n \"operational_policy\",\n \"guard_policies\"\n ],\n \"properties\": {\n \"operational_policy\": {\n \"type\": \"object\",\n \"title\": \"Related Parameters\",\n \"required\": [\n \"controlLoop\",\n \"policies\"\n ],\n \"properties\": {\n \"controlLoop\": {\n \"type\": \"object\",\n \"title\": \"Control Loop details\",\n \"required\": [\n \"timeout\",\n \"abatement\",\n \"trigger_policy\",\n \"controlLoopName\"\n ],\n \"properties\": {\n \"timeout\": {\n \"type\": \"string\",\n \"title\": \"Overall Time Limit\",\n \"default\": \"0\",\n \"format\": \"number\"\n },\n \"abatement\": {\n \"type\": \"string\",\n \"title\": \"Abatement\",\n \"enum\": [\n \"True\",\n \"False\"\n ]\n },\n \"trigger_policy\": {\n \"type\": \"string\",\n \"title\": \"Policy Decision Entry\"\n },\n \"controlLoopName\": {\n \"type\": \"string\",\n \"title\": \"Control loop name\",\n \"readOnly\": \"True\"\n }\n }\n },\n \"policies\": {\n \"uniqueItems\": \"true\",\n \"id\": \"policies_array\",\n \"type\": \"array\",\n \"title\": \"Policy Decision Tree\",\n \"format\": \"tabs-top\",\n \"items\": {\n \"title\": \"Policy Decision\",\n \"type\": \"object\",\n \"id\": \"policy_item\",\n \"headerTemplate\": \"{{self.id}} - {{self.recipe}}\",\n \"format\": \"categories\",\n \"basicCategoryTitle\": \"recipe\",\n \"required\": [\n \"id\",\n \"recipe\",\n \"retry\",\n \"timeout\",\n \"actor\",\n \"success\",\n \"failure\",\n \"failure_timeout\",\n \"failure_retries\",\n \"failure_exception\",\n \"failure_guard\",\n \"target\"\n ],\n \"properties\": {\n \"id\": {\n \"default\": \"Policy 1\",\n \"title\": \"Policy ID\",\n \"type\": \"string\"\n },\n \"recipe\": {\n \"title\": \"Recipe\",\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"retry\": {\n \"default\": \"0\",\n \"title\": \"Number of Retry\",\n \"type\": \"string\",\n \"format\": \"number\"\n },\n \"timeout\": {\n \"default\": \"0\",\n \"title\": \"Timeout\",\n \"type\": \"string\",\n \"format\": \"number\"\n },\n \"actor\": {\n \"title\": \"Actor\",\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"payload\": {\n \"title\": \"Payload (YAML)\",\n \"type\": \"string\",\n \"format\": \"textarea\"\n },\n \"success\": {\n \"default\": \"final_success\",\n \"title\": \"When Success\",\n \"type\": \"string\"\n },\n \"failure\": {\n \"default\": \"final_failure\",\n \"title\": \"When Failure\",\n \"type\": \"string\"\n },\n \"failure_timeout\": {\n \"default\": \"final_failure_timeout\",\n \"title\": \"When Failure Timeout\",\n \"type\": \"string\"\n },\n \"failure_retries\": {\n \"default\": \"final_failure_retries\",\n \"title\": \"When Failure Retries\",\n \"type\": \"string\"\n },\n \"failure_exception\": {\n \"default\": \"final_failure_exception\",\n \"title\": \"When Failure Exception\",\n \"type\": \"string\"\n },\n \"failure_guard\": {\n \"default\": \"final_failure_guard\",\n \"title\": \"When Failure Guard\",\n \"type\": \"string\"\n },\n \"target\": {\n \"type\": \"object\",\n \"required\": [\n \"type\",\n \"resourceID\"\n ],\n \"anyOf\": [\n {\n \"title\": \"User Defined\",\n \"additionalProperties\": \"True\",\n \"properties\": {\n \"type\": {\n \"title\": \"Target type\",\n \"type\": \"string\",\n \"default\": \"\",\n \"enum\": [\n \"VNF\",\n \"VFMODULE\",\n \"VM\"\n ]\n },\n \"resourceID\": {\n \"title\": \"Target type\",\n \"type\": \"string\",\n \"default\": \"\"\n }\n }\n },\n {\n \"title\": \"VNF-vLoadBalancerMS 0\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VNF\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"vLoadBalancerMS\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vpkg..module-1\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vpkg..module-1\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"ca052563-eb92-4b5b-ad41-9111768ce043\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"1e725ccc-b823-4f67-82b9-4f4367070dbc\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vpkg..module-1\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"1bffdc31-a37d-4dee-b65c-dde623a76e52\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vdns..module-3\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vdns..module-3\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"4c10ba9b-f88f-415e-9de3-5d33336047fa\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"4fa73b49-8a6c-493e-816b-eb401567b720\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vdns..module-3\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"bafcdab0-801d-4d81-9ead-f464640a38b1\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..base_template..module-0\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..base_template..module-0\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"921f7c96-ebdd-42e6-81b9-1cfc0c9796f3\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"63734409-f745-4e4d-a38b-131638a0edce\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..base_template..module-0\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"86baddea-c730-4fb8-9410-cd2e17fd7f27\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vlb..module-2\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vlb..module-2\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"a772a1f4-0064-412c-833d-4749b15828dd\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"0f5c3f6a-650a-4303-abb6-fff3e573a07a\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vlb..module-2\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"96a78aad-4ffb-4ef0-9c4f-deb03bf1d806\",\n \"readOnly\": \"True\"\n }\n }\n }\n ]\n }\n }\n }\n }\n }\n },\n \"guard_policies\": {\n \"type\": \"array\",\n \"format\": \"tabs-top\",\n \"title\": \"Associated Guard policies\",\n \"items\": {\n \"headerTemplate\": \"{{self.policy-id}} - {{self.content.recipe}}\",\n \"anyOf\": [\n {\n \"title\": \"Guard MinMax\",\n \"type\": \"object\",\n \"properties\": {\n \"policy-id\": {\n \"type\": \"string\",\n \"default\": \"guard.minmax.new\",\n \"pattern\": \"^(guard.minmax\\\\..*)$\"\n },\n \"content\": {\n \"properties\": {\n \"actor\": {\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"recipe\": {\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"targets\": {\n \"type\": \"string\",\n \"default\": \".*\"\n },\n \"clname\": {\n \"type\": \"string\",\n \"template\": \"{{loopName}}\",\n \"watch\": {\n \"loopName\": \"operational_policy_item.configurationsJson.operational_policy.controlLoop.controlLoopName\"\n }\n },\n \"guardActiveStart\": {\n \"type\": \"string\",\n \"default\": \"00:00:00Z\"\n },\n \"guardActiveEnd\": {\n \"type\": \"string\",\n \"default\": \"10:00:00Z\"\n },\n \"min\": {\n \"type\": \"string\",\n \"default\": \"0\"\n },\n \"max\": {\n \"type\": \"string\",\n \"default\": \"1\"\n }\n }\n }\n }\n },\n {\n \"title\": \"Guard Frequency\",\n \"type\": \"object\",\n \"properties\": {\n \"policy-id\": {\n \"type\": \"string\",\n \"default\": \"guard.frequency.new\",\n \"pattern\": \"^(guard.frequency\\\\..*)$\"\n },\n \"content\": {\n \"properties\": {\n \"actor\": {\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"recipe\": {\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"targets\": {\n \"type\": \"string\",\n \"default\": \".*\"\n },\n \"clname\": {\n \"type\": \"string\",\n \"template\": \"{{loopName}}\",\n \"watch\": {\n \"loopName\": \"operational_policy_item.configurationsJson.operational_policy.controlLoop.controlLoopName\"\n }\n },\n \"guardActiveStart\": {\n \"type\": \"string\",\n \"default\": \"00:00:00Z\"\n },\n \"guardActiveEnd\": {\n \"type\": \"string\",\n \"default\": \"10:00:00Z\"\n },\n \"limit\": {\n \"type\": \"string\"\n },\n \"timeWindow\": {\n \"type\": \"string\"\n },\n \"timeUnits\": {\n \"type\": \"string\",\n \"enum\": [\n \"minute\",\n \"hour\",\n \"day\",\n \"week\",\n \"month\",\n \"year\"\n ]\n }\n }\n }\n }\n }\n ]\n }\n }\n }\n }\n }\n }\n }\n}','<svg xmlns=\"http://www.w3.org/2000/svg\"><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"start-circle\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><circle fill=\"none\" r=\"17\" cx=\"18\" cy=\"41\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-50fe7213-6127-48d8-a460-22907d574a32\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"35\" x2=\"123\" y1=\"41\"/><polygon fill=\"none\" points=\" 121 39 121 43 125 41\"/><polygon points=\" 121 39 121 43 125 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"VES\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"127\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"127\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"176.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">VES</text><line y2=\"83\" fill=\"none\" x1=\"147\" x2=\"147\" y1=\"1\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-d05ff912-d920-407b-9507-783b1de740a2\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"250\" x2=\"338\" y1=\"41\"/><polygon fill=\"none\" points=\" 336 39 336 43 340 41\"/><polygon points=\" 336 39 336 43 340 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"tca_k8s_ejh5S_v1_0_ResourceInstanceName1_tca_3\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"342\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"342\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"379.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">tca_k8s</text><line y2=\"61\" fill=\"none\" x1=\"342\" x2=\"465\" y1=\"61\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-4a91f1ac-3543-48c8-b42a-0fa52f077471\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"465\" x2=\"553\" y1=\"41\"/><polygon fill=\"none\" points=\" 551 39 551 43 555 41\"/><polygon points=\" 551 39 551 43 555 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"OperationalPolicy\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"557\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"557\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"564.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">OperationalPolicy</text><line y2=\"1\" fill=\"none\" x1=\"557\" x2=\"618\" y1=\"42\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-a0213bb1-47d0-4115-a69f-5c857d663719\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"680\" x2=\"768\" y1=\"41\"/><polygon fill=\"none\" points=\" 766 39 766 43 770 41\"/><polygon points=\" 766 39 766 43 770 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"stop-circle\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"4\"><circle fill=\"none\" r=\"17\" cx=\"789\" cy=\"41\"/></g></g></g></svg>'); -INSERT INTO `loops` VALUES ('LOOP_ejh5S_v1_0_ResourceInstanceName2_tca_2','#\n# ============LICENSE_START====================================================\n# =============================================================================\n# Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.\n# =============================================================================\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n# ============LICENSE_END======================================================\n\ntosca_definitions_version: cloudify_dsl_1_3\n\ndescription: >\n This blueprint deploys/manages the TCA module as a Docker container\n\nimports:\n - http://www.getcloudify.org/spec/cloudify/3.4/types.yaml\n - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R4/k8splugin/1.4.12/k8splugin_types.yaml\n# - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R4/dcaepolicyplugin/2.3.0/dcaepolicyplugin_types.yaml\n - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R4/clamppolicyplugin/1.0.0/clamppolicyplugin_types.yaml\ninputs:\n aaiEnrichmentHost:\n type: string\n default: \"aai.onap.svc.cluster.local\"\n aaiEnrichmentPort:\n type: string\n default: \"8443\"\n enableAAIEnrichment:\n type: string\n default: true\n dmaap_host:\n type: string\n default: message-router.onap\n dmaap_port:\n type: string\n default: \"3904\"\n enableRedisCaching:\n type: string\n default: false\n redisHosts:\n type: string\n default: dcae-redis.onap.svc.cluster.local:6379\n tag_version:\n type: string\n default: \"nexus3.onap.org:10001/onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.1\"\n consul_host:\n type: string\n default: consul-server.onap\n consul_port:\n type: string\n default: \"8500\"\n cbs_host:\n type: string\n default: \"config-binding-servicel\"\n cbs_port:\n type: string\n default: \"10000\"\n policy_id:\n type: string\n default: \"onap.restart.tca\"\n external_port:\n type: string\n description: Kubernetes node port on which CDAPgui is exposed\n default: \"32012\"\n policy_model_id:\n type: string\n default: \"onap.policies.monitoring.cdap.tca.hi.lo.app\"\nnode_templates:\n tca_k8s:\n type: dcae.nodes.ContainerizedServiceComponent\n relationships:\n - target: tca_policy\n type: cloudify.relationships.depends_on\n properties:\n service_component_type: \'dcaegen2-analytics-tca\'\n application_config: {}\n docker_config: {}\n image:\n get_input: tag_version\n log_info:\n log_directory: \"/opt/app/TCAnalytics/logs\"\n application_config:\n app_config:\n appDescription: DCAE Analytics Threshold Crossing Alert Application\n appName: dcae-tca\n tcaAlertsAbatementTableName: TCAAlertsAbatementTable\n tcaAlertsAbatementTableTTLSeconds: \'1728000\'\n tcaSubscriberOutputStreamName: TCASubscriberOutputStream\n tcaVESAlertsTableName: TCAVESAlertsTable\n tcaVESAlertsTableTTLSeconds: \'1728000\'\n tcaVESMessageStatusTableName: TCAVESMessageStatusTable\n tcaVESMessageStatusTableTTLSeconds: \'86400\'\n thresholdCalculatorFlowletInstances: \'2\'\n app_preferences:\n aaiEnrichmentHost:\n get_input: aaiEnrichmentHost\n aaiEnrichmentIgnoreSSLCertificateErrors: \'true\'\n aaiEnrichmentPortNumber: \'8443\'\n aaiEnrichmentProtocol: https\n aaiEnrichmentUserName: dcae@dcae.onap.org\n aaiEnrichmentUserPassword: demo123456!\n aaiVMEnrichmentAPIPath: /aai/v11/search/nodes-query\n aaiVNFEnrichmentAPIPath: /aai/v11/network/generic-vnfs/generic-vnf\n enableAAIEnrichment:\n get_input: enableAAIEnrichment\n enableRedisCaching:\n get_input: enableRedisCaching\n redisHosts:\n get_input: redisHosts\n enableAlertCEFFormat: \'false\'\n publisherContentType: application/json\n publisherHostName:\n get_input: dmaap_host\n publisherHostPort:\n get_input: dmaap_port\n publisherMaxBatchSize: \'1\'\n publisherMaxRecoveryQueueSize: \'100000\'\n publisherPollingInterval: \'20000\'\n publisherProtocol: http\n publisherTopicName: unauthenticated.DCAE_CL_OUTPUT\n subscriberConsumerGroup: OpenDCAE-clamp\n subscriberConsumerId: c12\n subscriberContentType: application/json\n subscriberHostName:\n get_input: dmaap_host\n subscriberHostPort:\n get_input: dmaap_port\n subscriberMessageLimit: \'-1\'\n subscriberPollingInterval: \'30000\'\n subscriberProtocol: http\n subscriberTimeoutMS: \'-1\'\n subscriberTopicName: unauthenticated.VES_MEASUREMENT_OUTPUT\n# tca_policy: \'{\"domain\":\"measurementsForVfScaling\",\"metricsPerEventName\":[{\"eventName\":\"vFirewallBroadcastPackets\",\"controlLoopSchemaType\":\"VNF\",\"policyScope\":\"DCAE\",\"policyName\":\"DCAE.Config_tca-hi-lo\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\",\"thresholdValue\":300,\"direction\":\"LESS_OR_EQUAL\",\"severity\":\"MAJOR\",\"closedLoopEventStatus\":\"ONSET\"},{\"closedLoopControlName\":\"ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\",\"thresholdValue\":700,\"direction\":\"GREATER_OR_EQUAL\",\"severity\":\"CRITICAL\",\"closedLoopEventStatus\":\"ONSET\"}]},{\"eventName\":\"vLoadBalancer\",\"controlLoopSchemaType\":\"VM\",\"policyScope\":\"DCAE\",\"policyName\":\"DCAE.Config_tca-hi-lo\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\",\"thresholdValue\":300,\"direction\":\"GREATER_OR_EQUAL\",\"severity\":\"CRITICAL\",\"closedLoopEventStatus\":\"ONSET\"}]},{\"eventName\":\"Measurement_vGMUX\",\"controlLoopSchemaType\":\"VNF\",\"policyScope\":\"DCAE\",\"policyName\":\"DCAE.Config_tca-hi-lo\",\"policyVersion\":\"v0.0.1\",\"thresholds\":[{\"closedLoopControlName\":\"ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\",\"thresholdValue\":0,\"direction\":\"EQUAL\",\"severity\":\"MAJOR\",\"closedLoopEventStatus\":\"ABATED\"},{\"closedLoopControlName\":\"ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e\",\"version\":\"1.0.2\",\"fieldPath\":\"$.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\",\"thresholdValue\":0,\"direction\":\"GREATER\",\"severity\":\"CRITICAL\",\"closedLoopEventStatus\":\"ONSET\"}]}]}\'\n service_component_type: dcaegen2-analytics_tca\n interfaces:\n cloudify.interfaces.lifecycle:\n start:\n inputs:\n envs:\n DMAAPHOST:\n { get_input: dmaap_host }\n DMAAPPORT:\n { get_input: dmaap_port }\n DMAAPPUBTOPIC: \"unauthenticated.DCAE_CL_OUTPUT\"\n DMAAPSUBTOPIC: \"unauthenticated.VES_MEASUREMENT_OUTPUT\"\n AAIHOST:\n { get_input: aaiEnrichmentHost }\n AAIPORT:\n { get_input: aaiEnrichmentPort }\n CONSUL_HOST:\n { get_input: consul_host }\n CONSUL_PORT:\n { get_input: consul_port }\n CBS_HOST:\n { get_input: cbs_host }\n CBS_PORT:\n { get_input: cbs_port }\n CONFIG_BINDING_SERVICE: \"config_binding_service\"\n ports:\n - concat: [\"11011:\", { get_input: external_port }]\n tca_policy:\n type: clamp.nodes.policy\n properties:\n policy_id:\n get_input: policy_id\n policy_model_id: \"onap.policies.monitoring.cdap.tca.hi.lo.app\"\n','typeId-709a8102-811f-48f4-bfb4-690a8f280ece',NULL,NULL,'{\n \"dcaeDeployParameters\": {\n \"aaiEnrichmentHost\": \"aai.onap.svc.cluster.local\",\n \"aaiEnrichmentPort\": \"8443\",\n \"enableAAIEnrichment\": true,\n \"dmaap_host\": \"message-router.onap\",\n \"dmaap_port\": \"3904\",\n \"enableRedisCaching\": false,\n \"redisHosts\": \"dcae-redis.onap.svc.cluster.local:6379\",\n \"tag_version\": \"nexus3.onap.org:10001/onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.1\",\n \"consul_host\": \"consul-server.onap\",\n \"consul_port\": \"8500\",\n \"cbs_host\": \"config-binding-servicel\",\n \"cbs_port\": \"10000\",\n \"external_port\": \"32012\",\n \"policy_model_id\": \"onap.policies.monitoring.cdap.tca.hi.lo.app\",\n \"policy_id\": \"tca_k8s_ejh5S_v1_0_ResourceInstanceName2_tca_2\"\n }\n}','DESIGN','{\n \"serviceDetails\": {\n \"serviceType\": \"\",\n \"serviceRole\": \"\",\n \"description\": \"vLBMS\",\n \"type\": \"Service\",\n \"instantiationType\": \"A-la-carte\",\n \"namingPolicy\": \"\",\n \"serviceEcompNaming\": \"true\",\n \"environmentContext\": \"General_Revenue-Bearing\",\n \"name\": \"vLoadBalancerMS\",\n \"invariantUUID\": \"30ec5b59-4799-48d8-ac5f-1058a6b0e48f\",\n \"ecompGeneratedNaming\": \"true\",\n \"UUID\": \"63cac700-ab9a-4115-a74f-7eac85e3fce0\",\n \"category\": \"Network L4+\"\n },\n \"resourceDetails\": {\n \"CP\": {},\n \"VL\": {},\n \"VF\": {\n \"vLoadBalancerMS 0\": {\n \"resourceVendor\": \"Test\",\n \"name\": \"vLoadBalancerMS\",\n \"resourceVendorModelNumber\": \"\",\n \"description\": \"vLBMS\",\n \"invariantUUID\": \"1a31b9f2-e50d-43b7-89b3-a040250cf506\",\n \"UUID\": \"b4c4f3d7-929e-4b6d-a1cd-57e952ddc3e6\",\n \"type\": \"VF\",\n \"category\": \"Application L4+\",\n \"subcategory\": \"Load Balancer\",\n \"version\": \"1.0\",\n \"customizationUUID\": \"465246dc-7748-45f4-a013-308d92922552\",\n \"resourceVendorRelease\": \"1.0\"\n }\n },\n \"CR\": {},\n \"VFC\": {},\n \"PNF\": {},\n \"Service\": {},\n \"CVFC\": {},\n \"Service Proxy\": {},\n \"Configuration\": {},\n \"AllottedResource\": {},\n \"VFModule\": {\n \"Vloadbalancerms..vpkg..module-1\": {\n \"vfModuleModelInvariantUUID\": \"ca052563-eb92-4b5b-ad41-9111768ce043\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vpkg..module-1\",\n \"vfModuleModelUUID\": \"1e725ccc-b823-4f67-82b9-4f4367070dbc\",\n \"vfModuleModelCustomizationUUID\": \"1bffdc31-a37d-4dee-b65c-dde623a76e52\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vpkg\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n },\n \"Vloadbalancerms..vdns..module-3\": {\n \"vfModuleModelInvariantUUID\": \"4c10ba9b-f88f-415e-9de3-5d33336047fa\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vdns..module-3\",\n \"vfModuleModelUUID\": \"4fa73b49-8a6c-493e-816b-eb401567b720\",\n \"vfModuleModelCustomizationUUID\": \"bafcdab0-801d-4d81-9ead-f464640a38b1\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vdns\",\n \"max_vf_module_instances\": 50,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n },\n \"Vloadbalancerms..base_template..module-0\": {\n \"vfModuleModelInvariantUUID\": \"921f7c96-ebdd-42e6-81b9-1cfc0c9796f3\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..base_template..module-0\",\n \"vfModuleModelUUID\": \"63734409-f745-4e4d-a38b-131638a0edce\",\n \"vfModuleModelCustomizationUUID\": \"86baddea-c730-4fb8-9410-cd2e17fd7f27\",\n \"min_vf_module_instances\": 1,\n \"vf_module_label\": \"base_template\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Base\",\n \"isBase\": true,\n \"initial_count\": 1,\n \"volume_group\": false\n },\n \"Vloadbalancerms..vlb..module-2\": {\n \"vfModuleModelInvariantUUID\": \"a772a1f4-0064-412c-833d-4749b15828dd\",\n \"vfModuleModelVersion\": \"1\",\n \"vfModuleModelName\": \"Vloadbalancerms..vlb..module-2\",\n \"vfModuleModelUUID\": \"0f5c3f6a-650a-4303-abb6-fff3e573a07a\",\n \"vfModuleModelCustomizationUUID\": \"96a78aad-4ffb-4ef0-9c4f-deb03bf1d806\",\n \"min_vf_module_instances\": 0,\n \"vf_module_label\": \"vlb\",\n \"max_vf_module_instances\": 1,\n \"vf_module_type\": \"Expansion\",\n \"isBase\": false,\n \"initial_count\": 0,\n \"volume_group\": false\n }\n }\n }\n}','{\n \"schema\": {\n \"uniqueItems\": \"true\",\n \"format\": \"tabs\",\n \"type\": \"array\",\n \"minItems\": 1,\n \"maxItems\": 1,\n \"title\": \"Operational policies\",\n \"items\": {\n \"type\": \"object\",\n \"title\": \"Operational Policy Item\",\n \"id\": \"operational_policy_item\",\n \"headerTemplate\": \"{{self.name}}\",\n \"required\": [\n \"name\",\n \"configurationsJson\"\n ],\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"title\": \"Operational policy name\",\n \"readOnly\": \"True\"\n },\n \"configurationsJson\": {\n \"type\": \"object\",\n \"title\": \"Configuration\",\n \"required\": [\n \"operational_policy\",\n \"guard_policies\"\n ],\n \"properties\": {\n \"operational_policy\": {\n \"type\": \"object\",\n \"title\": \"Related Parameters\",\n \"required\": [\n \"controlLoop\",\n \"policies\"\n ],\n \"properties\": {\n \"controlLoop\": {\n \"type\": \"object\",\n \"title\": \"Control Loop details\",\n \"required\": [\n \"timeout\",\n \"abatement\",\n \"trigger_policy\",\n \"controlLoopName\"\n ],\n \"properties\": {\n \"timeout\": {\n \"type\": \"string\",\n \"title\": \"Overall Time Limit\",\n \"default\": \"0\",\n \"format\": \"number\"\n },\n \"abatement\": {\n \"type\": \"string\",\n \"title\": \"Abatement\",\n \"enum\": [\n \"True\",\n \"False\"\n ]\n },\n \"trigger_policy\": {\n \"type\": \"string\",\n \"title\": \"Policy Decision Entry\"\n },\n \"controlLoopName\": {\n \"type\": \"string\",\n \"title\": \"Control loop name\",\n \"readOnly\": \"True\"\n }\n }\n },\n \"policies\": {\n \"uniqueItems\": \"true\",\n \"id\": \"policies_array\",\n \"type\": \"array\",\n \"title\": \"Policy Decision Tree\",\n \"format\": \"tabs-top\",\n \"items\": {\n \"title\": \"Policy Decision\",\n \"type\": \"object\",\n \"id\": \"policy_item\",\n \"headerTemplate\": \"{{self.id}} - {{self.recipe}}\",\n \"format\": \"categories\",\n \"basicCategoryTitle\": \"recipe\",\n \"required\": [\n \"id\",\n \"recipe\",\n \"retry\",\n \"timeout\",\n \"actor\",\n \"success\",\n \"failure\",\n \"failure_timeout\",\n \"failure_retries\",\n \"failure_exception\",\n \"failure_guard\",\n \"target\"\n ],\n \"properties\": {\n \"id\": {\n \"default\": \"Policy 1\",\n \"title\": \"Policy ID\",\n \"type\": \"string\"\n },\n \"recipe\": {\n \"title\": \"Recipe\",\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"retry\": {\n \"default\": \"0\",\n \"title\": \"Number of Retry\",\n \"type\": \"string\",\n \"format\": \"number\"\n },\n \"timeout\": {\n \"default\": \"0\",\n \"title\": \"Timeout\",\n \"type\": \"string\",\n \"format\": \"number\"\n },\n \"actor\": {\n \"title\": \"Actor\",\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"payload\": {\n \"title\": \"Payload (YAML)\",\n \"type\": \"string\",\n \"format\": \"textarea\"\n },\n \"success\": {\n \"default\": \"final_success\",\n \"title\": \"When Success\",\n \"type\": \"string\"\n },\n \"failure\": {\n \"default\": \"final_failure\",\n \"title\": \"When Failure\",\n \"type\": \"string\"\n },\n \"failure_timeout\": {\n \"default\": \"final_failure_timeout\",\n \"title\": \"When Failure Timeout\",\n \"type\": \"string\"\n },\n \"failure_retries\": {\n \"default\": \"final_failure_retries\",\n \"title\": \"When Failure Retries\",\n \"type\": \"string\"\n },\n \"failure_exception\": {\n \"default\": \"final_failure_exception\",\n \"title\": \"When Failure Exception\",\n \"type\": \"string\"\n },\n \"failure_guard\": {\n \"default\": \"final_failure_guard\",\n \"title\": \"When Failure Guard\",\n \"type\": \"string\"\n },\n \"target\": {\n \"type\": \"object\",\n \"required\": [\n \"type\",\n \"resourceID\"\n ],\n \"anyOf\": [\n {\n \"title\": \"User Defined\",\n \"additionalProperties\": \"True\",\n \"properties\": {\n \"type\": {\n \"title\": \"Target type\",\n \"type\": \"string\",\n \"default\": \"\",\n \"enum\": [\n \"VNF\",\n \"VFMODULE\",\n \"VM\"\n ]\n },\n \"resourceID\": {\n \"title\": \"Target type\",\n \"type\": \"string\",\n \"default\": \"\"\n }\n }\n },\n {\n \"title\": \"VNF-vLoadBalancerMS 0\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VNF\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"vLoadBalancerMS\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vpkg..module-1\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vpkg..module-1\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"ca052563-eb92-4b5b-ad41-9111768ce043\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"1e725ccc-b823-4f67-82b9-4f4367070dbc\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vpkg..module-1\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"1bffdc31-a37d-4dee-b65c-dde623a76e52\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vdns..module-3\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vdns..module-3\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"4c10ba9b-f88f-415e-9de3-5d33336047fa\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"4fa73b49-8a6c-493e-816b-eb401567b720\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vdns..module-3\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"bafcdab0-801d-4d81-9ead-f464640a38b1\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..base_template..module-0\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..base_template..module-0\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"921f7c96-ebdd-42e6-81b9-1cfc0c9796f3\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"63734409-f745-4e4d-a38b-131638a0edce\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..base_template..module-0\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"86baddea-c730-4fb8-9410-cd2e17fd7f27\",\n \"readOnly\": \"True\"\n }\n }\n },\n {\n \"title\": \"VFMODULE-Vloadbalancerms..vlb..module-2\",\n \"properties\": {\n \"type\": {\n \"title\": \"Type\",\n \"type\": \"string\",\n \"default\": \"VFMODULE\",\n \"readOnly\": \"True\"\n },\n \"resourceID\": {\n \"title\": \"Resource ID\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vlb..module-2\",\n \"readOnly\": \"True\"\n },\n \"modelInvariantId\": {\n \"title\": \"Model Invariant Id (ModelInvariantUUID)\",\n \"type\": \"string\",\n \"default\": \"a772a1f4-0064-412c-833d-4749b15828dd\",\n \"readOnly\": \"True\"\n },\n \"modelVersionId\": {\n \"title\": \"Model Version Id (ModelUUID)\",\n \"type\": \"string\",\n \"default\": \"0f5c3f6a-650a-4303-abb6-fff3e573a07a\",\n \"readOnly\": \"True\"\n },\n \"modelName\": {\n \"title\": \"Model Name\",\n \"type\": \"string\",\n \"default\": \"Vloadbalancerms..vlb..module-2\",\n \"readOnly\": \"True\"\n },\n \"modelVersion\": {\n \"title\": \"Model Version\",\n \"type\": \"string\",\n \"default\": \"1\",\n \"readOnly\": \"True\"\n },\n \"modelCustomizationId\": {\n \"title\": \"Customization ID\",\n \"type\": \"string\",\n \"default\": \"96a78aad-4ffb-4ef0-9c4f-deb03bf1d806\",\n \"readOnly\": \"True\"\n }\n }\n }\n ]\n }\n }\n }\n }\n }\n },\n \"guard_policies\": {\n \"type\": \"array\",\n \"format\": \"tabs-top\",\n \"title\": \"Associated Guard policies\",\n \"items\": {\n \"headerTemplate\": \"{{self.policy-id}} - {{self.content.recipe}}\",\n \"anyOf\": [\n {\n \"title\": \"Guard MinMax\",\n \"type\": \"object\",\n \"properties\": {\n \"policy-id\": {\n \"type\": \"string\",\n \"default\": \"guard.minmax.new\",\n \"pattern\": \"^(guard.minmax\\\\..*)$\"\n },\n \"content\": {\n \"properties\": {\n \"actor\": {\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"recipe\": {\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"targets\": {\n \"type\": \"string\",\n \"default\": \".*\"\n },\n \"clname\": {\n \"type\": \"string\",\n \"template\": \"{{loopName}}\",\n \"watch\": {\n \"loopName\": \"operational_policy_item.configurationsJson.operational_policy.controlLoop.controlLoopName\"\n }\n },\n \"guardActiveStart\": {\n \"type\": \"string\",\n \"default\": \"00:00:00Z\"\n },\n \"guardActiveEnd\": {\n \"type\": \"string\",\n \"default\": \"10:00:00Z\"\n },\n \"min\": {\n \"type\": \"string\",\n \"default\": \"0\"\n },\n \"max\": {\n \"type\": \"string\",\n \"default\": \"1\"\n }\n }\n }\n }\n },\n {\n \"title\": \"Guard Frequency\",\n \"type\": \"object\",\n \"properties\": {\n \"policy-id\": {\n \"type\": \"string\",\n \"default\": \"guard.frequency.new\",\n \"pattern\": \"^(guard.frequency\\\\..*)$\"\n },\n \"content\": {\n \"properties\": {\n \"actor\": {\n \"type\": \"string\",\n \"enum\": [\n \"APPC\",\n \"SO\",\n \"VFC\",\n \"SDNC\",\n \"SDNR\"\n ]\n },\n \"recipe\": {\n \"type\": \"string\",\n \"enum\": [\n \"Restart\",\n \"Rebuild\",\n \"Migrate\",\n \"Health-Check\",\n \"ModifyConfig\",\n \"VF Module Create\",\n \"VF Module Delete\",\n \"Reroute\"\n ]\n },\n \"targets\": {\n \"type\": \"string\",\n \"default\": \".*\"\n },\n \"clname\": {\n \"type\": \"string\",\n \"template\": \"{{loopName}}\",\n \"watch\": {\n \"loopName\": \"operational_policy_item.configurationsJson.operational_policy.controlLoop.controlLoopName\"\n }\n },\n \"guardActiveStart\": {\n \"type\": \"string\",\n \"default\": \"00:00:00Z\"\n },\n \"guardActiveEnd\": {\n \"type\": \"string\",\n \"default\": \"10:00:00Z\"\n },\n \"limit\": {\n \"type\": \"string\"\n },\n \"timeWindow\": {\n \"type\": \"string\"\n },\n \"timeUnits\": {\n \"type\": \"string\",\n \"enum\": [\n \"minute\",\n \"hour\",\n \"day\",\n \"week\",\n \"month\",\n \"year\"\n ]\n }\n }\n }\n }\n }\n ]\n }\n }\n }\n }\n }\n }\n }\n}','<svg xmlns=\"http://www.w3.org/2000/svg\"><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"start-circle\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><circle fill=\"none\" r=\"17\" cx=\"18\" cy=\"41\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-75d5a3c5-3f47-4bcc-9c73-7c14a018643b\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"35\" x2=\"123\" y1=\"41\"/><polygon fill=\"none\" points=\" 121 39 121 43 125 41\"/><polygon points=\" 121 39 121 43 125 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"VES\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"127\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"127\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"176.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">VES</text><line y2=\"83\" fill=\"none\" x1=\"147\" x2=\"147\" y1=\"1\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-13e0b331-ffed-46c0-afee-a61535eb64e4\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"250\" x2=\"338\" y1=\"41\"/><polygon fill=\"none\" points=\" 336 39 336 43 340 41\"/><polygon points=\" 336 39 336 43 340 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"tca_k8s_ejh5S_v1_0_ResourceInstanceName2_tca_2\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"342\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"342\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"379.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">tca_k8s</text><line y2=\"61\" fill=\"none\" x1=\"342\" x2=\"465\" y1=\"61\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-875d4430-9af1-44ba-a524-bb1f56a9b2f9\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"465\" x2=\"553\" y1=\"41\"/><polygon fill=\"none\" points=\" 551 39 551 43 555 41\"/><polygon points=\" 551 39 551 43 555 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"OperationalPolicy\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><rect fill=\"none\" x=\"557\" width=\"123\" y=\"1\" height=\"82\"/></g><g fill-opacity=\"0\" fill=\"rgb(0,0,0)\" text-rendering=\"optimizeQuality\" shape-rendering=\"geometricPrecision\" stroke=\"rgb(0,0,0)\" stroke-opacity=\"0\" stroke-width=\"2\"><rect x=\"557\" width=\"123\" y=\"1\" height=\"82\" stroke=\"none\"/></g><g text-rendering=\"optimizeQuality\" stroke-width=\"2\" shape-rendering=\"geometricPrecision\" font-family=\"sans-serif\"><text x=\"564.5\" xml:space=\"preserve\" y=\"46.5\" stroke=\"none\">OperationalPolicy</text><line y2=\"1\" fill=\"none\" x1=\"557\" x2=\"618\" y1=\"42\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"Arrow-a2c37cff-448d-46df-9af0-0b51076b0954\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"2\"><line y2=\"41\" fill=\"none\" x1=\"680\" x2=\"768\" y1=\"41\"/><polygon fill=\"none\" points=\" 766 39 766 43 770 41\"/><polygon points=\" 766 39 766 43 770 41\" stroke=\"none\"/></g></g></g><g fill-opacity=\"1\" color-rendering=\"auto\" color-interpolation=\"auto\" text-rendering=\"auto\" stroke=\"black\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" shape-rendering=\"auto\" stroke-opacity=\"1\" fill=\"black\" stroke-dasharray=\"none\" font-weight=\"normal\" stroke-width=\"1\" font-family=\"\'Dialog\'\" font-style=\"normal\" data-element-id=\"stop-circle\" stroke-linejoin=\"miter\" font-size=\"12px\" image-rendering=\"auto\" stroke-dashoffset=\"0\"><!--Generated by the Batik Graphics2D SVG Generator--><defs id=\"genericDefs\"/><g><g shape-rendering=\"geometricPrecision\" text-rendering=\"optimizeQuality\" stroke-width=\"4\"><circle fill=\"none\" r=\"17\" cx=\"789\" cy=\"41\"/></g></g></g></svg>'); -/*!40000 ALTER TABLE `loops` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `loops_microservicepolicies` --- - -LOCK TABLES `loops_microservicepolicies` WRITE; -/*!40000 ALTER TABLE `loops_microservicepolicies` DISABLE KEYS */; -INSERT INTO `loops_microservicepolicies` VALUES ('LOOP_ejh5S_v1_0_ResourceInstanceName1_tca','TCA_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `loops_microservicepolicies` VALUES ('LOOP_ejh5S_v1_0_ResourceInstanceName1_tca_3','tca_k8s_ejh5S_v1_0_ResourceInstanceName1_tca_3'); -INSERT INTO `loops_microservicepolicies` VALUES ('LOOP_ejh5S_v1_0_ResourceInstanceName2_tca_2','tca_k8s_ejh5S_v1_0_ResourceInstanceName2_tca_2'); -/*!40000 ALTER TABLE `loops_microservicepolicies` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `micro_service_policies` --- - -LOCK TABLES `micro_service_policies` WRITE; -/*!40000 ALTER TABLE `micro_service_policies` DISABLE KEYS */; -INSERT INTO `micro_service_policies` VALUES ('TCA_ejh5S_v1_0_ResourceInstanceName1_tca','{\n \"schema\": {\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"type\": \"array\",\n \"title\": \"TCA Policy JSON\",\n \"items\": {\n \"type\": \"object\",\n \"title\": \"TCA Policy JSON\",\n \"required\": [\n \"domain\",\n \"metricsPerEventName\"\n ],\n \"properties\": {\n \"domain\": {\n \"propertyOrder\": 1001,\n \"default\": \"measurementsForVfScaling\",\n \"title\": \"Domain name to which TCA needs to be applied\",\n \"type\": \"string\"\n },\n \"metricsPerEventName\": {\n \"propertyOrder\": 1002,\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"title\": \"Contains eventName and threshold details that need to be applied to given eventName\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": [\n \"controlLoopSchemaType\",\n \"eventName\",\n \"policyName\",\n \"policyScope\",\n \"policyVersion\",\n \"thresholds\"\n ],\n \"properties\": {\n \"policyVersion\": {\n \"propertyOrder\": 1007,\n \"title\": \"TCA Policy Scope Version\",\n \"type\": \"string\"\n },\n \"thresholds\": {\n \"propertyOrder\": 1008,\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"title\": \"Thresholds associated with eventName\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": [\n \"closedLoopControlName\",\n \"closedLoopEventStatus\",\n \"direction\",\n \"fieldPath\",\n \"severity\",\n \"thresholdValue\",\n \"version\"\n ],\n \"properties\": {\n \"severity\": {\n \"propertyOrder\": 1013,\n \"title\": \"Threshold Event Severity\",\n \"type\": \"string\",\n \"enum\": [\n \"CRITICAL\",\n \"MAJOR\",\n \"MINOR\",\n \"WARNING\",\n \"NORMAL\"\n ]\n },\n \"fieldPath\": {\n \"propertyOrder\": 1012,\n \"title\": \"Json field Path as per CEF message which needs to be analyzed for TCA\",\n \"type\": \"string\",\n \"enum\": [\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuIdle\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageInterrupt\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageNice\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSoftIrq\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSteal\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSystem\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuWait\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].percentUsage\",\n \"$.event.measurementsForVfScalingFields.meanRequestLatency\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryBuffered\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryCached\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryConfigured\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryFree\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryUsed\",\n \"$.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\"\n ]\n },\n \"thresholdValue\": {\n \"propertyOrder\": 1014,\n \"title\": \"Threshold value for the field Path inside CEF message\",\n \"type\": \"integer\"\n },\n \"closedLoopEventStatus\": {\n \"propertyOrder\": 1010,\n \"title\": \"Closed Loop Event Status of the threshold\",\n \"type\": \"string\",\n \"enum\": [\n \"ONSET\",\n \"ABATED\"\n ]\n },\n \"closedLoopControlName\": {\n \"propertyOrder\": 1009,\n \"title\": \"Closed Loop Control Name associated with the threshold\",\n \"type\": \"string\"\n },\n \"version\": {\n \"propertyOrder\": 1015,\n \"title\": \"Version number associated with the threshold\",\n \"type\": \"string\"\n },\n \"direction\": {\n \"propertyOrder\": 1011,\n \"title\": \"Direction of the threshold\",\n \"type\": \"string\",\n \"enum\": [\n \"LESS\",\n \"LESS_OR_EQUAL\",\n \"GREATER\",\n \"GREATER_OR_EQUAL\",\n \"EQUAL\"\n ]\n }\n }\n }\n },\n \"policyName\": {\n \"propertyOrder\": 1005,\n \"title\": \"TCA Policy Scope Name\",\n \"type\": \"string\"\n },\n \"controlLoopSchemaType\": {\n \"propertyOrder\": 1003,\n \"title\": \"Specifies Control Loop Schema Type for the event Name e.g. VNF, VM\",\n \"type\": \"string\",\n \"enum\": [\n \"VM\",\n \"VNF\"\n ]\n },\n \"policyScope\": {\n \"propertyOrder\": 1006,\n \"title\": \"TCA Policy Scope\",\n \"type\": \"string\"\n },\n \"eventName\": {\n \"propertyOrder\": 1004,\n \"title\": \"Event name to which thresholds need to be applied\",\n \"type\": \"string\"\n }\n }\n }\n }\n }\n }\n }\n}','onap.policies.monitoring.cdap.tca.hi.lo.app','tosca_definitions_version: tosca_simple_yaml_1_0_0\npolicy_types:\n onap.policies.Monitoring:\n derived_from: tosca.policies.Root\n description: a base policy type for all policies that governs monitoring provisioning\n onap.policies.monitoring.cdap.tca.hi.lo.app:\n derived_from: onap.policies.Monitoring\n version: 1.0.0\n properties:\n tca_policy:\n type: map\n description: TCA Policy JSON\n entry_schema:\n type: onap.datatypes.monitoring.tca_policy\ndata_types:\n onap.datatypes.monitoring.metricsPerEventName:\n derived_from: tosca.datatypes.Root\n properties:\n controlLoopSchemaType:\n type: string\n required: true\n description: Specifies Control Loop Schema Type for the event Name e.g. VNF, VM\n constraints:\n - valid_values:\n - VM\n - VNF\n eventName:\n type: string\n required: true\n description: Event name to which thresholds need to be applied\n policyName:\n type: string\n required: true\n description: TCA Policy Scope Name\n policyScope:\n type: string\n required: true\n description: TCA Policy Scope\n policyVersion:\n type: string\n required: true\n description: TCA Policy Scope Version\n thresholds:\n type: list\n required: true\n description: Thresholds associated with eventName\n entry_schema:\n type: onap.datatypes.monitoring.thresholds\n onap.datatypes.monitoring.tca_policy:\n derived_from: tosca.datatypes.Root\n properties:\n domain:\n type: string\n required: true\n description: Domain name to which TCA needs to be applied\n default: measurementsForVfScaling\n constraints:\n - equal: measurementsForVfScaling\n metricsPerEventName:\n type: list\n required: true\n description: Contains eventName and threshold details that need to be applied to given eventName\n entry_schema:\n type: onap.datatypes.monitoring.metricsPerEventName\n onap.datatypes.monitoring.thresholds:\n derived_from: tosca.datatypes.Root\n properties:\n closedLoopControlName:\n type: string\n required: true\n description: Closed Loop Control Name associated with the threshold\n closedLoopEventStatus:\n type: string\n required: true\n description: Closed Loop Event Status of the threshold\n constraints:\n - valid_values:\n - ONSET\n - ABATED\n direction:\n type: string\n required: true\n description: Direction of the threshold\n constraints:\n - valid_values:\n - LESS\n - LESS_OR_EQUAL\n - GREATER\n - GREATER_OR_EQUAL\n - EQUAL\n fieldPath:\n type: string\n required: true\n description: Json field Path as per CEF message which needs to be analyzed for TCA\n constraints:\n - valid_values:\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsAccumulated\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuIdle\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageInterrupt\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageNice\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSoftIrq\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSteal\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSystem\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuWait\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].percentUsage\n - $.event.measurementsForVfScalingFields.meanRequestLatency\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryBuffered\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryCached\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryConfigured\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryFree\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryUsed\n - $.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\n severity:\n type: string\n required: true\n description: Threshold Event Severity\n constraints:\n - valid_values:\n - CRITICAL\n - MAJOR\n - MINOR\n - WARNING\n - NORMAL\n thresholdValue:\n type: integer\n required: true\n description: Threshold value for the field Path inside CEF message\n version:\n type: string\n required: true\n description: Version number associated with the threshold\n','{\n \"domain\": \"measurementsForVfScaling\",\n \"metricsPerEventName\": [\n {\n \"policyVersion\": \"1.0.0\",\n \"thresholds\": [\n {\n \"severity\": \"CRITICAL\",\n \"fieldPath\": \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\",\n \"thresholdValue\": 10,\n \"closedLoopEventStatus\": \"ONSET\",\n \"closedLoopControlName\": \"LOOP_ejh5S_v1_0_ResourceInstanceName1_tca\",\n \"version\": \"1.0.2\",\n \"direction\": \"LESS\"\n }\n ],\n \"policyName\": \"test\",\n \"controlLoopSchemaType\": \"VM\",\n \"policyScope\": \"test\",\n \"eventName\": \"test\"\n }\n ]\n}','\0'); -INSERT INTO `micro_service_policies` VALUES ('tca_k8s_ejh5S_v1_0_ResourceInstanceName1_tca_3','{\n \"schema\": {\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"type\": \"array\",\n \"title\": \"TCA Policy JSON\",\n \"items\": {\n \"type\": \"object\",\n \"title\": \"TCA Policy JSON\",\n \"required\": [\n \"domain\",\n \"metricsPerEventName\"\n ],\n \"properties\": {\n \"domain\": {\n \"propertyOrder\": 1001,\n \"default\": \"measurementsForVfScaling\",\n \"title\": \"Domain name to which TCA needs to be applied\",\n \"type\": \"string\"\n },\n \"metricsPerEventName\": {\n \"propertyOrder\": 1002,\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"title\": \"Contains eventName and threshold details that need to be applied to given eventName\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": [\n \"controlLoopSchemaType\",\n \"eventName\",\n \"policyName\",\n \"policyScope\",\n \"policyVersion\",\n \"thresholds\"\n ],\n \"properties\": {\n \"policyVersion\": {\n \"propertyOrder\": 1007,\n \"title\": \"TCA Policy Scope Version\",\n \"type\": \"string\"\n },\n \"thresholds\": {\n \"propertyOrder\": 1008,\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"title\": \"Thresholds associated with eventName\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": [\n \"closedLoopControlName\",\n \"closedLoopEventStatus\",\n \"direction\",\n \"fieldPath\",\n \"severity\",\n \"thresholdValue\",\n \"version\"\n ],\n \"properties\": {\n \"severity\": {\n \"propertyOrder\": 1013,\n \"title\": \"Threshold Event Severity\",\n \"type\": \"string\",\n \"enum\": [\n \"CRITICAL\",\n \"MAJOR\",\n \"MINOR\",\n \"WARNING\",\n \"NORMAL\"\n ]\n },\n \"fieldPath\": {\n \"propertyOrder\": 1012,\n \"title\": \"Json field Path as per CEF message which needs to be analyzed for TCA\",\n \"type\": \"string\",\n \"enum\": [\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuIdle\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageInterrupt\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageNice\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSoftIrq\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSteal\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSystem\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuWait\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].percentUsage\",\n \"$.event.measurementsForVfScalingFields.meanRequestLatency\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryBuffered\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryCached\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryConfigured\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryFree\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryUsed\",\n \"$.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\"\n ]\n },\n \"thresholdValue\": {\n \"propertyOrder\": 1014,\n \"title\": \"Threshold value for the field Path inside CEF message\",\n \"type\": \"integer\"\n },\n \"closedLoopEventStatus\": {\n \"propertyOrder\": 1010,\n \"title\": \"Closed Loop Event Status of the threshold\",\n \"type\": \"string\",\n \"enum\": [\n \"ONSET\",\n \"ABATED\"\n ]\n },\n \"closedLoopControlName\": {\n \"propertyOrder\": 1009,\n \"title\": \"Closed Loop Control Name associated with the threshold\",\n \"type\": \"string\"\n },\n \"version\": {\n \"propertyOrder\": 1015,\n \"title\": \"Version number associated with the threshold\",\n \"type\": \"string\"\n },\n \"direction\": {\n \"propertyOrder\": 1011,\n \"title\": \"Direction of the threshold\",\n \"type\": \"string\",\n \"enum\": [\n \"LESS\",\n \"LESS_OR_EQUAL\",\n \"GREATER\",\n \"GREATER_OR_EQUAL\",\n \"EQUAL\"\n ]\n }\n }\n }\n },\n \"policyName\": {\n \"propertyOrder\": 1005,\n \"title\": \"TCA Policy Scope Name\",\n \"type\": \"string\"\n },\n \"controlLoopSchemaType\": {\n \"propertyOrder\": 1003,\n \"title\": \"Specifies Control Loop Schema Type for the event Name e.g. VNF, VM\",\n \"type\": \"string\",\n \"enum\": [\n \"VM\",\n \"VNF\"\n ]\n },\n \"policyScope\": {\n \"propertyOrder\": 1006,\n \"title\": \"TCA Policy Scope\",\n \"type\": \"string\"\n },\n \"eventName\": {\n \"propertyOrder\": 1004,\n \"title\": \"Event name to which thresholds need to be applied\",\n \"type\": \"string\"\n }\n }\n }\n }\n }\n }\n }\n}','onap.policies.monitoring.cdap.tca.hi.lo.app','tosca_definitions_version: tosca_simple_yaml_1_0_0\npolicy_types:\n onap.policies.Monitoring:\n derived_from: tosca.policies.Root\n description: a base policy type for all policies that governs monitoring provisioning\n onap.policies.monitoring.cdap.tca.hi.lo.app:\n derived_from: onap.policies.Monitoring\n version: 1.0.0\n properties:\n tca_policy:\n type: map\n description: TCA Policy JSON\n entry_schema:\n type: onap.datatypes.monitoring.tca_policy\ndata_types:\n onap.datatypes.monitoring.metricsPerEventName:\n derived_from: tosca.datatypes.Root\n properties:\n controlLoopSchemaType:\n type: string\n required: true\n description: Specifies Control Loop Schema Type for the event Name e.g. VNF, VM\n constraints:\n - valid_values:\n - VM\n - VNF\n eventName:\n type: string\n required: true\n description: Event name to which thresholds need to be applied\n policyName:\n type: string\n required: true\n description: TCA Policy Scope Name\n policyScope:\n type: string\n required: true\n description: TCA Policy Scope\n policyVersion:\n type: string\n required: true\n description: TCA Policy Scope Version\n thresholds:\n type: list\n required: true\n description: Thresholds associated with eventName\n entry_schema:\n type: onap.datatypes.monitoring.thresholds\n onap.datatypes.monitoring.tca_policy:\n derived_from: tosca.datatypes.Root\n properties:\n domain:\n type: string\n required: true\n description: Domain name to which TCA needs to be applied\n default: measurementsForVfScaling\n constraints:\n - equal: measurementsForVfScaling\n metricsPerEventName:\n type: list\n required: true\n description: Contains eventName and threshold details that need to be applied to given eventName\n entry_schema:\n type: onap.datatypes.monitoring.metricsPerEventName\n onap.datatypes.monitoring.thresholds:\n derived_from: tosca.datatypes.Root\n properties:\n closedLoopControlName:\n type: string\n required: true\n description: Closed Loop Control Name associated with the threshold\n closedLoopEventStatus:\n type: string\n required: true\n description: Closed Loop Event Status of the threshold\n constraints:\n - valid_values:\n - ONSET\n - ABATED\n direction:\n type: string\n required: true\n description: Direction of the threshold\n constraints:\n - valid_values:\n - LESS\n - LESS_OR_EQUAL\n - GREATER\n - GREATER_OR_EQUAL\n - EQUAL\n fieldPath:\n type: string\n required: true\n description: Json field Path as per CEF message which needs to be analyzed for TCA\n constraints:\n - valid_values:\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsAccumulated\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuIdle\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageInterrupt\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageNice\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSoftIrq\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSteal\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSystem\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuWait\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].percentUsage\n - $.event.measurementsForVfScalingFields.meanRequestLatency\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryBuffered\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryCached\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryConfigured\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryFree\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryUsed\n - $.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\n severity:\n type: string\n required: true\n description: Threshold Event Severity\n constraints:\n - valid_values:\n - CRITICAL\n - MAJOR\n - MINOR\n - WARNING\n - NORMAL\n thresholdValue:\n type: integer\n required: true\n description: Threshold value for the field Path inside CEF message\n version:\n type: string\n required: true\n description: Version number associated with the threshold\n',NULL,'\0'); -INSERT INTO `micro_service_policies` VALUES ('tca_k8s_ejh5S_v1_0_ResourceInstanceName2_tca_2','{\n \"schema\": {\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"type\": \"array\",\n \"title\": \"TCA Policy JSON\",\n \"items\": {\n \"type\": \"object\",\n \"title\": \"TCA Policy JSON\",\n \"required\": [\n \"domain\",\n \"metricsPerEventName\"\n ],\n \"properties\": {\n \"domain\": {\n \"propertyOrder\": 1001,\n \"default\": \"measurementsForVfScaling\",\n \"title\": \"Domain name to which TCA needs to be applied\",\n \"type\": \"string\"\n },\n \"metricsPerEventName\": {\n \"propertyOrder\": 1002,\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"title\": \"Contains eventName and threshold details that need to be applied to given eventName\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": [\n \"controlLoopSchemaType\",\n \"eventName\",\n \"policyName\",\n \"policyScope\",\n \"policyVersion\",\n \"thresholds\"\n ],\n \"properties\": {\n \"policyVersion\": {\n \"propertyOrder\": 1007,\n \"title\": \"TCA Policy Scope Version\",\n \"type\": \"string\"\n },\n \"thresholds\": {\n \"propertyOrder\": 1008,\n \"uniqueItems\": \"true\",\n \"format\": \"tabs-top\",\n \"title\": \"Thresholds associated with eventName\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": [\n \"closedLoopControlName\",\n \"closedLoopEventStatus\",\n \"direction\",\n \"fieldPath\",\n \"severity\",\n \"thresholdValue\",\n \"version\"\n ],\n \"properties\": {\n \"severity\": {\n \"propertyOrder\": 1013,\n \"title\": \"Threshold Event Severity\",\n \"type\": \"string\",\n \"enum\": [\n \"CRITICAL\",\n \"MAJOR\",\n \"MINOR\",\n \"WARNING\",\n \"NORMAL\"\n ]\n },\n \"fieldPath\": {\n \"propertyOrder\": 1012,\n \"title\": \"Json field Path as per CEF message which needs to be analyzed for TCA\",\n \"type\": \"string\",\n \"enum\": [\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsDelta\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsAccumulated\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuIdle\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageInterrupt\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageNice\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSoftIrq\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSteal\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSystem\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuWait\",\n \"$.event.measurementsForVfScalingFields.cpuUsageArray[*].percentUsage\",\n \"$.event.measurementsForVfScalingFields.meanRequestLatency\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryBuffered\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryCached\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryConfigured\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryFree\",\n \"$.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryUsed\",\n \"$.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\"\n ]\n },\n \"thresholdValue\": {\n \"propertyOrder\": 1014,\n \"title\": \"Threshold value for the field Path inside CEF message\",\n \"type\": \"integer\"\n },\n \"closedLoopEventStatus\": {\n \"propertyOrder\": 1010,\n \"title\": \"Closed Loop Event Status of the threshold\",\n \"type\": \"string\",\n \"enum\": [\n \"ONSET\",\n \"ABATED\"\n ]\n },\n \"closedLoopControlName\": {\n \"propertyOrder\": 1009,\n \"title\": \"Closed Loop Control Name associated with the threshold\",\n \"type\": \"string\"\n },\n \"version\": {\n \"propertyOrder\": 1015,\n \"title\": \"Version number associated with the threshold\",\n \"type\": \"string\"\n },\n \"direction\": {\n \"propertyOrder\": 1011,\n \"title\": \"Direction of the threshold\",\n \"type\": \"string\",\n \"enum\": [\n \"LESS\",\n \"LESS_OR_EQUAL\",\n \"GREATER\",\n \"GREATER_OR_EQUAL\",\n \"EQUAL\"\n ]\n }\n }\n }\n },\n \"policyName\": {\n \"propertyOrder\": 1005,\n \"title\": \"TCA Policy Scope Name\",\n \"type\": \"string\"\n },\n \"controlLoopSchemaType\": {\n \"propertyOrder\": 1003,\n \"title\": \"Specifies Control Loop Schema Type for the event Name e.g. VNF, VM\",\n \"type\": \"string\",\n \"enum\": [\n \"VM\",\n \"VNF\"\n ]\n },\n \"policyScope\": {\n \"propertyOrder\": 1006,\n \"title\": \"TCA Policy Scope\",\n \"type\": \"string\"\n },\n \"eventName\": {\n \"propertyOrder\": 1004,\n \"title\": \"Event name to which thresholds need to be applied\",\n \"type\": \"string\"\n }\n }\n }\n }\n }\n }\n }\n}','onap.policies.monitoring.cdap.tca.hi.lo.app','tosca_definitions_version: tosca_simple_yaml_1_0_0\npolicy_types:\n onap.policies.Monitoring:\n derived_from: tosca.policies.Root\n description: a base policy type for all policies that governs monitoring provisioning\n onap.policies.monitoring.cdap.tca.hi.lo.app:\n derived_from: onap.policies.Monitoring\n version: 1.0.0\n properties:\n tca_policy:\n type: map\n description: TCA Policy JSON\n entry_schema:\n type: onap.datatypes.monitoring.tca_policy\ndata_types:\n onap.datatypes.monitoring.metricsPerEventName:\n derived_from: tosca.datatypes.Root\n properties:\n controlLoopSchemaType:\n type: string\n required: true\n description: Specifies Control Loop Schema Type for the event Name e.g. VNF, VM\n constraints:\n - valid_values:\n - VM\n - VNF\n eventName:\n type: string\n required: true\n description: Event name to which thresholds need to be applied\n policyName:\n type: string\n required: true\n description: TCA Policy Scope Name\n policyScope:\n type: string\n required: true\n description: TCA Policy Scope\n policyVersion:\n type: string\n required: true\n description: TCA Policy Scope Version\n thresholds:\n type: list\n required: true\n description: Thresholds associated with eventName\n entry_schema:\n type: onap.datatypes.monitoring.thresholds\n onap.datatypes.monitoring.tca_policy:\n derived_from: tosca.datatypes.Root\n properties:\n domain:\n type: string\n required: true\n description: Domain name to which TCA needs to be applied\n default: measurementsForVfScaling\n constraints:\n - equal: measurementsForVfScaling\n metricsPerEventName:\n type: list\n required: true\n description: Contains eventName and threshold details that need to be applied to given eventName\n entry_schema:\n type: onap.datatypes.monitoring.metricsPerEventName\n onap.datatypes.monitoring.thresholds:\n derived_from: tosca.datatypes.Root\n properties:\n closedLoopControlName:\n type: string\n required: true\n description: Closed Loop Control Name associated with the threshold\n closedLoopEventStatus:\n type: string\n required: true\n description: Closed Loop Event Status of the threshold\n constraints:\n - valid_values:\n - ONSET\n - ABATED\n direction:\n type: string\n required: true\n description: Direction of the threshold\n constraints:\n - valid_values:\n - LESS\n - LESS_OR_EQUAL\n - GREATER\n - GREATER_OR_EQUAL\n - EQUAL\n fieldPath:\n type: string\n required: true\n description: Json field Path as per CEF message which needs to be analyzed for TCA\n constraints:\n - valid_values:\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedOctetsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedUnicastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedMulticastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedErrorPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsDelta\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedTotalPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedOctetsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedUnicastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedMulticastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedBroadcastPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedDiscardedPacketsAccumulated\n - $.event.measurementsForVfScalingFields.vNicPerformanceArray[*].transmittedErrorPacketsAccumulated\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuIdle\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageInterrupt\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageNice\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSoftIrq\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSteal\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuUsageSystem\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].cpuWait\n - $.event.measurementsForVfScalingFields.cpuUsageArray[*].percentUsage\n - $.event.measurementsForVfScalingFields.meanRequestLatency\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryBuffered\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryCached\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryConfigured\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryFree\n - $.event.measurementsForVfScalingFields.memoryUsageArray[*].memoryUsed\n - $.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\n severity:\n type: string\n required: true\n description: Threshold Event Severity\n constraints:\n - valid_values:\n - CRITICAL\n - MAJOR\n - MINOR\n - WARNING\n - NORMAL\n thresholdValue:\n type: integer\n required: true\n description: Threshold value for the field Path inside CEF message\n version:\n type: string\n required: true\n description: Version number associated with the threshold\n',NULL,'\0'); -/*!40000 ALTER TABLE `micro_service_policies` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `model` --- - -LOCK TABLES `model` WRITE; -/*!40000 ALTER TABLE `model` DISABLE KEYS */; -/*!40000 ALTER TABLE `model` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `model_blueprint` --- - -LOCK TABLES `model_blueprint` WRITE; -/*!40000 ALTER TABLE `model_blueprint` DISABLE KEYS */; -/*!40000 ALTER TABLE `model_blueprint` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `model_instance` --- - -LOCK TABLES `model_instance` WRITE; -/*!40000 ALTER TABLE `model_instance` DISABLE KEYS */; -/*!40000 ALTER TABLE `model_instance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `model_properties` --- - -LOCK TABLES `model_properties` WRITE; -/*!40000 ALTER TABLE `model_properties` DISABLE KEYS */; -/*!40000 ALTER TABLE `model_properties` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `operational_policies` --- - -LOCK TABLES `operational_policies` WRITE; -/*!40000 ALTER TABLE `operational_policies` DISABLE KEYS */; -INSERT INTO `operational_policies` VALUES ('OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca','{\n \"operational_policy\": {\n \"controlLoop\": {\n \"timeout\": \"200\",\n \"abatement\": \"True\",\n \"trigger_policy\": \"Policy1\",\n \"controlLoopName\": \"LOOP_ejh5S_v1_0_ResourceInstanceName1_tca\"\n },\n \"policies\": [\n {\n \"id\": \"Policy1\",\n \"recipe\": \"Restart\",\n \"retry\": \"0\",\n \"timeout\": \"0\",\n \"actor\": \"APPC\",\n \"payload\": \"\",\n \"success\": \"final_success\",\n \"failure\": \"final_failure\",\n \"failure_timeout\": \"final_failure_timeout\",\n \"failure_retries\": \"final_failure_retries\",\n \"failure_exception\": \"final_failure_exception\",\n \"failure_guard\": \"final_failure_guard\",\n \"target\": {\n \"type\": \"VNF\",\n \"resourceID\": \"vLoadBalancerMS\"\n }\n }\n ]\n },\n \"guard_policies\": [\n {\n \"policy-id\": \"guard.minmax.new\",\n \"content\": {\n \"actor\": \"APPC\",\n \"recipe\": \"Restart\",\n \"targets\": \".*\",\n \"clname\": \"LOOP_ejh5S_v1_0_ResourceInstanceName1_tca\",\n \"guardActiveStart\": \"00:00:00Z\",\n \"guardActiveEnd\": \"10:00:00Z\",\n \"min\": \"0\",\n \"max\": \"1\"\n }\n }\n ]\n}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca'); -INSERT INTO `operational_policies` VALUES ('OPERATIONAL_ejh5S_v1_0_ResourceInstanceName1_tca_3','{\n \"operational_policy\": {\n \"controlLoop\": {\n \"controlLoopName\": \"LOOP_ejh5S_v1_0_ResourceInstanceName1_tca_3\"\n }\n }\n}','LOOP_ejh5S_v1_0_ResourceInstanceName1_tca_3'); -INSERT INTO `operational_policies` VALUES ('OPERATIONAL_ejh5S_v1_0_ResourceInstanceName2_tca_2','{\n \"operational_policy\": {\n \"controlLoop\": {\n \"controlLoopName\": \"LOOP_ejh5S_v1_0_ResourceInstanceName2_tca_2\"\n }\n }\n}','LOOP_ejh5S_v1_0_ResourceInstanceName2_tca_2'); -/*!40000 ALTER TABLE `operational_policies` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `template` --- - -LOCK TABLES `template` WRITE; -/*!40000 ALTER TABLE `template` DISABLE KEYS */; -/*!40000 ALTER TABLE `template` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `template_bpmn` --- - -LOCK TABLES `template_bpmn` WRITE; -/*!40000 ALTER TABLE `template_bpmn` DISABLE KEYS */; -/*!40000 ALTER TABLE `template_bpmn` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `template_doc` --- - -LOCK TABLES `template_doc` WRITE; -/*!40000 ALTER TABLE `template_doc` DISABLE KEYS */; -/*!40000 ALTER TABLE `template_doc` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `template_image` --- - -LOCK TABLES `template_image` WRITE; -/*!40000 ALTER TABLE `template_image` DISABLE KEYS */; -/*!40000 ALTER TABLE `template_image` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `tosca_model` --- - -LOCK TABLES `tosca_model` WRITE; -/*!40000 ALTER TABLE `tosca_model` DISABLE KEYS */; -/*!40000 ALTER TABLE `tosca_model` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping data for table `tosca_model_revision` --- - -LOCK TABLES `tosca_model_revision` WRITE; -/*!40000 ALTER TABLE `tosca_model_revision` DISABLE KEYS */; -/*!40000 ALTER TABLE `tosca_model_revision` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2019-08-27 11:53:07 |