summaryrefslogtreecommitdiffstats
.highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.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 */
mvn clean install -Pcatalog -pl catalog-be -am "$@"
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
{
  "vnffgs": [
    {
      "vnffg_id": "vnffg1",
      "description": "",
      "members": [
        "path1",
        "path2"
      ],
      "properties": {
        "vendor": "zte",
        "connection_point": [
          "m6000_data_in",
          "m600_tunnel_cp",
          "m6000_data_out"
        ],
        "version": "1.0",
        "constituent_vnfs": [
          "VFW",
          "VNAT"
        ],
        "number_of_endpoints": 3,
        "dependent_virtual_link": [
          "sfc_data_network",
          "ext_datanet_net",
          "ext_mnet_net"
        ]
      }
    }
  ],
  "inputs": {
    "sfc_data_network": {
      "type": "string",
      "value": "sfc_data_network"
    },
    "externalDataNetworkName": {
      "type": "string",
      "value": "vlan_4004_tunnel_net"
    },
    "externalManageNetworkName": {
      "type": "string",
      "value": "vlan_4008_mng_net"
    },
    "NatIpRange": {
      "type": "string",
      "value": "192.167.0.10-192.168.0.20"
    },
    "externalPluginManageNetworkName": {
      "type": "string",
      "value": "vlan_4007_plugin_net"
    }
  },
  "pnfs": [
    {
      "pnf_id": "m6000_s",
      "cps": [],
      "description": "",
      "properties": {
        "vendor": "zte",
        "request_reclassification": " False",
        "pnf_type": "m6000s",
        "version": "1.0",
        "management_address": "111111",
        "id": "m6000_s",
        "nsh_aware": "False"
      }
    }
  ],
  "fps": [
    {
      "properties": {
        "symmetric": "False",
        "policy": {
          "type": "ACL",
          "criteria": {
            "dest_port_range": "1-100",
            "ip_protocol": "tcp",
            "source_ip_range": [
              "119.1.1.1-119.1.1.10"
            ],
            "dest_ip_range": [
              {
                "get_input": "NatIpRange"
              }
            ],
            "dscp": 0,
            "source_port_range": "1-100"
          }
        }
      },
      "forwarder_list": [
        {
          "capability": "",
          "type": "cp",
          "node_name": "m6000_data_out"
        },
        {
          "capability": "",
          "type": "cp",
          "node_name": "m600_tunnel_cp"
        },
        {
          "capability": "vnat_fw_inout",
          "type": "vnf",
          "node_name": "VNAT"
        }
      ],
      "description": "",
      "fp_id": "path2"
    },
    {
      "properties": {
        "symmetric": "True",
        "policy": {
          "type": "ACL",
          "criteria": {
            "dest_port_range": "1-100",
            "ip_protocol": "tcp",
            "source_ip_range": [
              "1-100"
            ],
            "dest_ip_range": [
              "1-100"
            ],
            "dscp": 4,
            "source_port_range": "1-100"
          }
        }
      },
      "forwarder_list": [
        {
          "capability": "",
          "type": "cp",
          "node_name": "m6000_data_in"
        },
        {
          "capability": "",
          "type": "cp",
          "node_name": "m600_tunnel_cp"
        },
        {
          "capability": "vfw_fw_inout",
          "type": "vnf",
          "node_name": "VFW"
        },
        {
          "capability": "vnat_fw_inout",
          "type": "vnf",
          "node_name": "VNAT"
        },
        {
          "capability": "",
          "type": "cp",
          "node_name": "m600_tunnel_cp"
        },
        {
          "capability": "",
          "type": "cp",
          "node_name": "m6000_data_out"
        }
      ],
      "description": "",
      "fp_id": "path1"
    }
  ],
  "routers": [],
  "vnfs": [
    {
      "vnf_id": "VFW",
      "description": "",
      "properties": {
        "plugin_info": "vbrasplugin_1.0",
        "vendor": "zte",
        "is_shared": "False",
        "adjust_vnf_capacity": "True",
        "name": "VFW",
        "vnf_extend_type": "driver",
        "csarVersion": "v1.0",
        "csarType": "NFAR",
        "csarProvider": "ZTE",
        "version": "1.0",
        "nsh_aware": "True",
        "cross_dc": "False",
        "vnf_type": "VFW",
        "vmnumber_overquota_alarm": "True",
        "vnfd_version": "1.0.0",
        "externalPluginManageNetworkName": "vlan_4007_plugin_net",
        "id": "vcpe_vfw_zte_1_0",
        "request_reclassification": "False"
      },
      "dependencies": [
        {
          "key_name": "vfw_ctrl_by_manager_cp",
          "vl_id": "ext_mnet_net"
        },
        {
          "key_name": "vfw_data_cp",
          "vl_id": "sfc_data_network"
        }
      ],
      "type": "tosca.nodes.nfv.ext.zte.VNF.VFW",
      "networks": []
    }
  ],
  "ns_exposed": {
    "external_cps": [],
    "forward_cps": []
  },
  "policies": [
    {
      "file_url": "policies/abc.drl",
      "name": "aaa"
    }
  ],
  "vls": [
    {
      "route_id": "",
      "vl_id": "ext_mnet_net",
      "route_external": "False",
      "description": "",
      "properties": {
        "name": "vlan_4008_mng_net",
        "mtu": 1500,
        "location_info": {
          "tenant": "admin",
          "vimid": 2,
          "availability_zone": "nova"
        },
        "ip_version": 4,
        "dhcp_enabled": "True",
        "network_name": "vlan_4008_mng_net",
        "network_type": "vlan"
      }
    },
    {
      "route_id": "",
      "vl_id": "ext_datanet_net",
      "route_external": "False",
      "description": "",
      "properties": {
        "name": "vlan_4004_tunnel_net",
        "mtu": 1500,
        "location_info": {
          "tenant": "admin",
          "vimid": 2,
          "availability_zone": "nova"
        },
        "ip_version": 4,
        "dhcp_enabled": "True",
        "network_name": "vlan_4004_tunnel_net",
        "network_type": "vlan"
      }
    },
    {
      "route_id": "",
      "vl_id": "sfc_data_network",
      "route_external": "False",
      "description": "",
      "properties": {
        "name": "sfc_data_network",
        "dhcp_enabled": "True",
        "is_predefined": "False",
        "location_info": {
          "tenant": "admin",
          "vimid": 2,
          "availability_zone": "nova"
        },
        "ip_version": 4,
        "mtu": 1500,
        "network_name": "sfc_data_network",
        "network_type": "vlan"
      }
    }
  ],
  "cps": [
    {
      "pnf_id": "m6000_s",
      "vl_id": "path2",
      "description": "",
      "cp_id": "m6000_data_out",
      "properties": {
        "direction": "bidirectional",
        "vnic_type": "normal",
        "bandwidth": 0,
        "mac_address": "11-22-33-22-11-44",
        "interface_name": "xgei-0/4/1/5",
        "ip_address": "176.1.1.2",
        "order": 0,
        "sfc_encapsulation": "mac"
      }
    },
    {
      "pnf_id": "m6000_s",
      "vl_id": "ext_datanet_net",
      "description": "",
      "cp_id": "m600_tunnel_cp",
      "properties": {
        "direction": "bidirectional",
        "vnic_type": "normal",
        "bandwidth": 0,
        "mac_address": "00-11-00-22-33-00",
        "interface_name": "gei-0/4/0/13",
        "ip_address": "191.167.100.5",
        "order": 0,
        "sfc_encapsulation": "mac"
      }
    },
    {
      "pnf_id": "m6000_s",
      "vl_id": "path2",
      "description": "",
      "cp_id": "m6000_data_in",
      "properties": {
        "direction": "bidirectional",
        "vnic_type": "normal",
        "bandwidth": 0,
        "mac_address": "11-22-33-22-11-41",
        "interface_name": "gei-0/4/0/7",
        "ip_address": "1.1.1.1",
        "order": 0,
        "sfc_encapsulation": "mac",
        "bond": "none"
      }
    },
    {
      "pnf_id": "m6000_s",
      "vl_id": "ext_mnet_net",
      "description": "",
      "cp_id": "m600_mnt_cp",
      "properties": {
        "direction": "bidirectional",
        "vnic_type": "normal",
        "bandwidth": 0,
        "mac_address": "00-11-00-22-33-11",
        "interface_name": "gei-0/4/0/1",
        "ip_address": "10.46.244.51",
        "order": 0,
        "sfc_encapsulation": "mac",
        "bond": "none"
      }
    }
  ],
  "metadata": {
    "invariant_id": "vcpe_ns_sff_1",
    "name": "VCPE_NS",
    "csarVersion": "v1.0",
    "csarType": "NSAR",
    "csarProvider": "ZTE",
    "version": 1,
    "vendor": "ZTE",
    "id": "VCPE_NS",
    "description": "vcpe_ns"
  }
}