blob: 79e2df83b8b40ed1a69391bb91c0d0d28e8a1474 [file] [log] [blame]
Scott Baker62c7eaf2018-05-22 15:59:26 -07001
2# Copyright 2017-present Open Networking Foundation
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 implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
17from synchronizers.new_base.modelaccessor import OpenStackService
18from newopenstacksyncstep import NewOpenStackSyncStep
19
20class SyncOpenStackService(NewOpenStackSyncStep):
21 provides=[OpenStackService]
22 requested_interval=0
23 observes=OpenStackService
24
25 def sync_record(self, service):
26 # nothing to do
27 pass
28
29 def delete_record(self, service):
30 # nothing to do
31 pass
32