summaryrefslogtreecommitdiffstats
path: root/vid-app-common/.settings/org.eclipse.wst.validation.prefs
blob: 6f1cba68d5f82a12e1f80e8798437495567e43e7 (plain)
1
2
disabled=06target
eclipse.preferences.version=1
me.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
org.openecomp.groups.heat.HeatStack:
  derived_from: tosca.groups.Root
  description: Grouped all heat resources which are in the same heat stack
  properties:
    heat_file:
      type: string
      description: Heat file which associate to this group/heat stack
      required: true
      status: supported
    description:
      type: string
      description: group description
      required: true
      status: supported
org.openecomp.groups.VfModule:
  derived_from: tosca.groups.Root
  description: Grouped all heat resources which are in the same VF Module
  properties:
    isBase:
      type: boolean
      description: Whether this module should be deployed before other modules
      required: true
      default: false
      status: supported
    vf_module_label: 
      type: string
      required: true
      description: > 
        Alternate textual key used to reference this VF-Module model. 
        Must be unique within the VNF model
    vf_module_description:
      type: string
      required: true
      description: >
        Description of the VF-modules contents and purpose  
        (e.g. "Front-End" or "Database Cluster")
    min_vf_module_instances:
      type: integer
      required: true
      description: The minimum instances of this VF-Module
    max_vf_module_instances: 
      type: integer
      required: false
      description: The maximum instances of this VF-Module
    initial_count:
      type: integer
      required: false
      description: >
        The initial count of instances of the VF-Module. The value must be in the 
        range between min_vfmodule_instances and max_vfmodule_instances.
        If no value provided the initial count is the min_vfmodule_instances.
    vf_module_type:
      type: string
      required: true
      constraint:
        - valid_values: ["Base", "Expansion"]
    volume_group:
      type: boolean
      required: true
      default: false
      description: >
        "true" indicates that this VF Module model requires attachment to a Volume  
        Group. 
        VID operator must select the Volume Group instance to attach to a VF-Module 
        at deployment time.
    availability_zone_count:
      type: integer
      required: false
      description: >
        Quantity of Availability Zones needed for this VF-Module    
        (source: Extracted from VF-Module HEAT template)
    vfc_list:
      type: map
      entry_schema: 
        description: <vfc_id>:<count>
        type: string
      required: false
      description: >
        Identifies the set of VM types and their count included in the VF-Module
tosca.groups.Root:
  description: The TOSCA Group Type all other TOSCA Group Types derive from
  interfaces: 
    Standard:
      type: tosca.interfaces.node.lifecycle.Standard