| Mark Beierl | 52019d7 | 2023-03-22 10:07:35 -0400 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 13 | # implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | ####################################################################################### |
| 17 | |
| 18 | LCM_TASK_QUEUE = "lcm-task-queue" |
| Mark Beierl | a8d016d | 2023-03-23 10:24:59 +0000 | [diff] [blame] | 19 | |
| 20 | # Activities |
| Mark Beierl | 248cb40 | 2023-04-05 20:01:05 +0000 | [diff] [blame^] | 21 | ACTIVITY_NSLCM_NO_OP = "nslcm-no-op" |
| 22 | ACTIVITY_EXECUTE_NS_LCM_WORKFLOW = "execute-ns-lcm-workflow" |
| 23 | ACTIVITY_UPDATE_LCM_OPERATION_STATE = "update-lcm-operation-state" |
| Mark Beierl | 30e0507 | 2023-03-28 18:04:47 +0000 | [diff] [blame] | 24 | ACTIVITY_DELETE_VIM = "delete-vim" |
| Mark Beierl | a8d016d | 2023-03-23 10:24:59 +0000 | [diff] [blame] | 25 | ACTIVITY_TEST_VIM_CONNECTIVITY = "test-vim-connectivity" |
| Mark Beierl | 248cb40 | 2023-04-05 20:01:05 +0000 | [diff] [blame^] | 26 | ACTIVITY_UPDATE_VIM_OPERATION_STATE = "update-vim-operation-state" |
| Gulsum Atici | 654c377 | 2023-03-23 15:59:56 +0300 | [diff] [blame] | 27 | ACTIVITY_UPDATE_VIM_STATE = "update-vim-state" |
| Mark Beierl | 248cb40 | 2023-04-05 20:01:05 +0000 | [diff] [blame^] | 28 | ACTIVITY_UPDATE_LCM_OPERATION_STATE = "update-lcm-operation-state" |
| Mark Beierl | a8d016d | 2023-03-23 10:24:59 +0000 | [diff] [blame] | 29 | |
| 30 | # Workflows |
| Mark Beierl | 248cb40 | 2023-04-05 20:01:05 +0000 | [diff] [blame^] | 31 | WORKFLOW_NSLCM_NO_OP = "nslcm-no-op" |
| Mark Beierl | a8d016d | 2023-03-23 10:24:59 +0000 | [diff] [blame] | 32 | WORKFLOW_VIM_CREATE = "vim-create" |
| Mark Beierl | 30e0507 | 2023-03-28 18:04:47 +0000 | [diff] [blame] | 33 | WORKFLOW_VIM_UPDATE = "vim-update" |
| 34 | WORKFLOW_VIM_DELETE = "vim-delete" |