use catalogdb; DELETE FROM activity_spec_to_activity_spec_parameters; DELETE FROM activity_spec_to_activity_spec_categories; DELETE FROM activity_spec_to_user_parameters; DELETE FROM activity_spec; DELETE FROM activity_spec_categories; DELETE FROM activity_spec_parameters; DELETE FROM user_parameters; DELETE FROM workflow; INSERT INTO activity_spec (NAME, DESCRIPTION, VERSION) VALUES ('VNFSetInMaintFlagActivity','Activity to Set InMaint Flag in A&AI',1.0), ('VNFCheckPserversLockedFlagActivity','Activity Check Pservers Locked Flag VNF',1.0), ('VNFCheckInMaintFlagActivity','Activity CheckIn Maint Flag on VNF',1.0), ('VNFCheckClosedLoopDisabledFlagActivity','Activity Check Closed Loop Disabled Flag on VNF',1.0), ('VNFSetClosedLoopDisabledFlagActivity','Activity Set Closed Loop Disabled Flag on VNF',1.0), ('VNFUnsetClosedLoopDisabledFlagActivity','Activity Unset Closed Loop Disabled Flag on VNF',1.0), ('VNFLockActivity','Activity Lock on VNF',1.0), ('VNFUnlockActivity','Activity UnLock on VNF',1.0), ('VNFStopActivity','Activity Stop on VNF',1.0), ('VNFStartActivity','Activity Start on VNF',1.0), ('VNFSnapShotActivity','Activity Snap Shot on VNF',1.0), ('FlowCompleteActivity','Activity Complete on VNF',1.0), ('PauseForManualTaskActivity','Activity Pause For Manual Task on VNF',1.0), ('DistributeTrafficActivity','Activity Distribute Traffic on VNF',1.0), ('DistributeTrafficCheckActivity','Activity Distribute Traffic Check on VNF',1.0), ('VNFHealthCheckActivity','Activity Health Check on VNF',1.0), ('VNFQuiesceTrafficActivity','Activity Quiesce Traffic on VNF',1.0), ('VNFResumeTrafficActivity','Activity Resume Traffic on VNF',1.0), ('VNFUnsetInMaintFlagActivity','Activity Unset InMaint Flag on VNF',1.0), ('VNFUpgradeBackupActivity','Activity Upgrade Backup on VNF',1.0), ('VNFUpgradePostCheckActivity','Activity Upgrade Post Check on VNF',1.0), ('VNFUpgradePreCheckActivity','Activity Upgrade PreCheck on VNF',1.0), ('VNFUpgradeSoftwareActivity','Activity UpgradeS oftware on VNF',1.0), ('VnfInPlaceSoftwareUpdate','Activity InPlace Software Update on VNF',1.0); INSERT INTO activity_spec_categories (NAME) VALUES ('VNF'); INSERT INTO activity_spec_to_activity_spec_categories(ACTIVITY_SPEC_ID, ACTIVITY_SPEC_CATEGORIES_ID) VALUES ((select ID from activity_spec where NAME='VNFSetInMaintFlagActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFCheckPserversLockedFlagActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFCheckInMaintFlagActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFCheckClosedLoopDisabledFlagActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFSetClosedLoopDisabledFlagActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFUnsetClosedLoopDisabledFlagActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFLockActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFUnlockActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFStopActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFStartActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFSnapShotActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='FlowCompleteActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='PauseForManualTaskActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='DistributeTrafficActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='DistributeTrafficCheckActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFHealthCheckActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFQuiesceTrafficActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFResumeTrafficActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFUnsetInMaintFlagActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFUpgradeBackupActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFUpgradePostCheckActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFUpgradePreCheckActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VNFUpgradeSoftwareActivity' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')), ((select ID from activity_spec where NAME='VnfInPlaceSoftwareUpdate' and VERSION=1.0), (select ID from activity_spec_categories where NAME='VNF')); INSERT INTO activity_spec_parameters (NAME, TYPE, DIRECTION, DESCRIPTION) VALUES('WorkflowException','WorkflowException','output','Description'); INSERT INTO activity_spec_to_activity_spec_parameters( ACTIVITY_SPEC_ID, ACTIVITY_SPEC_PARAMETERS_ID) VALUES ((select ID from activity_spec where NAME='VNFSetInMaintFlagActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFCheckPserversLockedFlagActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFCheckInMaintFlagActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFCheckClosedLoopDisabledFlagActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFSetClosedLoopDisabledFlagActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFUnsetClosedLoopDisabledFlagActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFLockActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFUnlockActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFStopActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFStartActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFSnapShotActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='FlowCompleteActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='PauseForManualTaskActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='DistributeTrafficActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='DistributeTrafficCheckActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFHealthCheckActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFQuiesceTrafficActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFResumeTrafficActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFUnsetInMaintFlagActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFUpgradeBackupActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFUpgradePostCheckActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFUpgradePreCheckActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')), ((select ID from activity_spec where NAME='VNFUpgradeSoftwareActivity' and VERSION=1.0), (select ID from activity_spec_parameters where NAME='WorkflowException' and DIRECTION='output')); INSERT INTO `user_parameters`(`NAME`,`PAYLOAD_LOCATION`,`LABEL`,`TYPE`,`DESCRIPTION`,`IS_REQUIRED`,`MAX_LENGTH`,`ALLOWABLE_CHARS`) VALUES ('cloudOwner','cloudConfiguration','Cloud Owner','text','',1,7,''), ('operations_timeout','userParams','Operations Timeout','text','',1,50,''), ('existing_software_version','userParams','Existing Software Version','text','',1,50,''), ('tenantId','cloudConfiguration','Tenant/Project ID','text','',1,36,''), ('new_software_version','userParams','New Software Version','text','',1,50,''), ('book_name','userParams','Name of Commands Book Set','text','',1,50,''), ('node_list','userParams','List of Nodes','text','',1,200,''), ('file_parameter_content','userParams','Configuration File Content','text','',1,50000,''), ('lcpCloudRegionId','cloudConfiguration','Cloud Region ID','text','',1,7,''); INSERT INTO `activity_spec_to_user_parameters`(`ACTIVITY_SPEC_ID`,`USER_PARAMETERS_ID`) VALUES ((select ID from activity_spec where NAME='VNFStopActivity' and VERSION=1.0), (select ID from user_parameters where NAME='lcpCloudRegionId')), ((select ID from activity_spec where NAME='VNFStopActivity' and VERSION=1.0), (select ID from user_parameters where NAME='tenantId')), ((select ID from activity_spec where NAME='VNFStartActivity' and VERSION=1.0), (select ID from user_parameters where NAME='lcpCloudRegionId')), ((select ID from activity_spec where NAME='VNFStartActivity' and VERSION=1.0), (select ID from user_parameters where NAME='tenantId')), ((select ID from activity_spec where NAME='VNFSnapShotActivity' and VERSION=1.0), (select ID from user_parameters where NAME='lcpCloudRegionId')), ((select ID from activity_spec where NAME='VNFSnapShotActivity' and VERSION=1.0), (select ID from user_parameters where NAME='tenantId')), ((select ID from activity_spec where NAME='VNFQuiesceTrafficActivity' and VERSION=1.0), (select ID from user_parameters where NAME='operations_timeout')), ((select ID from activity_spec where NAME='DistributeTrafficActivity' and VERSION=1.0), (select ID from user_parameters where NAME='book_name')), ((select ID from activity_spec where NAME='DistributeTrafficActivity' and VERSION=1.0), (select ID from user_parameters where NAME='node_list')), ((select ID from activity_spec where NAME='DistributeTrafficActivity' and VERSION=1.0), (select ID from user_parameters where NAME='file_parameter_content')), ((select ID from activity_spec where NAME='DistributeTrafficCheckActivity' and VERSION=1.0), (select ID from user_parameters where NAME='book_name')), ((select ID from activity_spec where NAME='DistributeTrafficCheckActivity' and VERSION=1.0), (select ID from user_parameters where NAME='node_list')), ((select ID from activity_spec where NAME='DistributeTrafficCheckActivity' and VERSION=1.0), (select ID from user_parameters where NAME='file_parameter_content')), ((select ID from activity_spec where NAME='VNFUpgradeBackupActivity' and VERSION=1.0), (select ID from user_parameters where NAME='existing_software_version')), ((select ID from activity_spec where NAME='VNFUpgradeBackupActivity' and VERSION=1.0), (select ID from user_parameters where NAME='new_software_version')), ((select ID from activity_spec where NAME='VNFUpgradePostCheckActivity' and VERSION=1.0), (select ID from user_parameters where NAME='existing_software_version')), ((select ID from activity_spec where NAME='VNFUpgradePostCheckActivity' and VERSION=1.0), (select ID from user_parameters where NAME='new_software_version')), ((select ID from activity_spec where NAME='VNFUpgradePreCheckActivity' and VERSION=1.0), (select ID from user_parameters where NAME='existing_software_version')), ((select ID from activity_spec where NAME='VNFUpgradePreCheckActivity' and VERSION=1.0), (select ID from user_parameters where NAME='new_software_version')), ((select ID from activity_spec where NAME='VNFUpgradeSoftwareActivity' and VERSION=1.0), (select ID from user_parameters where NAME='existing_software_version')), ((select ID from activity_spec where NAME='VNFUpgradeSoftwareActivity' and VERSION=1.0), (select ID from user_parameters where NAME='new_software_version')); INSERT INTO `workflow` (`ARTIFACT_UUID`,`ARTIFACT_NAME`,`NAME`,`OPERATION_NAME`,`VERSION`,`DESCRIPTION`,`RESOURCE_TARGET`,`SOURCE`) VALUES ('9d45cd30-1a89-4993-87c1-6dd09c1696cf','VFModule-ScaleOut','VNF Scale Out','ScaleOut',1.0,'native static workflow to support ScaleOut','vfModule','native'), ('da6478e4-ea33-3346-ac12-ab121284a333','VnfInPlaceUpdate.bpmn','VnfInPlaceUpdate','inPlaceSoftwareUpdate',1.0,'native static workflow to support inPlaceSoftwareUpdate','vnf','native'), ('fdb3ac48-70f9-4584-bd92-253bdbdec1e1','VnfConfigUpdate.bpmn','VnfConfigUpdate','applyConfigModify',1.0,'native static workflow to support applyConfigModify','vnf','native'), ('b2fd5627-55e4-4f4f-8064-9e6f443e9152','DummyPnfWorkflow','Dummy Pnf Workflow','DummyPnfWorkflow',1.0,'Dummy Pnf Workflow to test custom Pnf workflow','pnf','native'), ('d752c287-c5a8-40a6-8fce-077e1d54104b','GenericPnfSoftwareUpgrade','GenericPnfSoftwareUpgrade','GenericPnfSoftwareUpgrade',1.0,'Pnf Workflow to upgrade software','pnf','native'), ('h2bfd4d9-6af0-4f8d-bf9b-d1d9ecd28c84','GenericPnfSWUPDownload','GenericPnfSWUPDownload','GenericPnfSWUPDownload',1.0,'Pnf Workflow to download software','pnf','native'), ('s3fct5f2-6af0-4f8d-bf9b-s3f3dca23c19','ServiceLevelUpgrade','ServiceLevelUpgrade','ServiceLevelUpgrade',1.0,'ServiceLevel Upgrade Workflow to upgrade software','service','native');