blob: 37ad49f7ce3894aad7134a977d1d97ab13793755 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from onapsdk.aai.cloud_infrastructure import Complex
from onapsdk.configuration import settings
from ..base import BaseStep
class ComplexCreateStep(BaseStep):
"""Complex creation step."""
def execute(self):
"""Create complex.
Use settings values:
- COMPLEX_PHYSICAL_LOCATION_ID,
- COMPLEX_DATA_CENTER_CODE.
"""
super().execute()
Complex.create(
physical_location_id=settings.COMPLEX_PHYSICAL_LOCATION_ID,
data_center_code=settings.COMPLEX_DATA_CENTER_CODE,
name=settings.COMPLEX_PHYSICAL_LOCATION_ID
)
|