Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

8. Create the CloudRegion with openstack , RegionOne in AAI .

    8.1  create Cloud Owner and Region  

         PUT https://<aai_ip>:8443/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/openstack/RegionOne

-- Request Body
{
"cloud-owner": "openstack",
"cloud-region-id": "RegionOne",
}

  8.2 verify with GET Command

GET https://<aai_ip>:8443/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/openstack/RegionOne

in this Get request you will get the resource-version .

8.3 create the Tenant and put tht the resource version from a.2 into requestBody

PUT https://<aai_ip:8443/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/openstack/RegionOne

RequestBody - request

{
"cloud-owner": "openstack",
"cloud-region-id": "RegionOne",
"resource-version": "1510199020715",
"cloud-type": "openstack",
"owner-defined-type": "owner type",
"cloud-region-version": "v2.5",
"cloud-zone": "cloud zone",
"tenants": {
"tenant": [{
"tenant-id": "74c7fa9e54f246f5878c902c346e590d",
"tenant-name": "onap"

}]
}
}

9. Create the services and  complexes in the A&AI .

...