Files
python-neutronclient/neutronclient/osc/v2/utils.py
Akihiro Motoki 0b7ee51ae8 Add common utilities for OSC plugin implementation
This patch introduces two utility modules.
* osc/utils.py for OSC plugin general stuff which are
  planned to move to osc-lib potentially
* osc/v2/utils.py for Networking v2.0 API related methods

Co-Authored-By: Yushiro FURUKAWA <y.furukawa_2@jp.fujitsu.com>
Change-Id: Ia36687843c56ebde0d3705ef11435ec7f5cff9d8
2016-12-12 09:15:08 +09:00

22 lines
778 B
Python

# Copyright 2016 NEC Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""This module is intended to contain methods specific
to Networking v2 API and its extensions.
"""
def format_admin_state(state):
return 'UP' if state else 'DOWN'