Fix [H405] pep rule in bin
Implements bp docstring-improvements Change-Id: If2daff413814fe0a7b5d5fbc4e2262b06aa90c5e
This commit is contained in:
parent
00b2c9da15
commit
2f9ea624de
@ -13,15 +13,16 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
"""Heat API Server.
|
||||||
|
|
||||||
|
An OpenStack REST API to Heat.
|
||||||
|
"""
|
||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
||||||
"system level heat binaries installed to start "
|
"system level heat binaries installed to start "
|
||||||
"any of the heat services.", DeprecationWarning)
|
"any of the heat services.", DeprecationWarning)
|
||||||
|
|
||||||
"""
|
|
||||||
Heat API Server. An OpenStack REST API to Heat.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -13,17 +13,18 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
"""Heat CFN API Server.
|
||||||
|
|
||||||
|
This implements an approximation of the Amazon CloudFormation API and
|
||||||
|
translates it into a native representation. It then calls the heat-engine via
|
||||||
|
AMQP RPC to implement them.
|
||||||
|
"""
|
||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
||||||
"system level heat binaries installed to start "
|
"system level heat binaries installed to start "
|
||||||
"any of the heat services.", DeprecationWarning)
|
"any of the heat services.", DeprecationWarning)
|
||||||
|
|
||||||
"""
|
|
||||||
Heat API Server. This implements an approximation of the Amazon
|
|
||||||
CloudFormation API and translates it into a native representation. It then
|
|
||||||
calls the heat-engine via AMQP RPC to implement them.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -13,17 +13,18 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
"""Heat cloudwatch API Server.
|
||||||
|
|
||||||
|
This implements an approximation of the Amazon CloudWatch API and translates it
|
||||||
|
into a native representation. It then calls the heat-engine via AMQP RPC to
|
||||||
|
implement them.
|
||||||
|
"""
|
||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
||||||
"system level heat binaries installed to start "
|
"system level heat binaries installed to start "
|
||||||
"any of the heat services.", DeprecationWarning)
|
"any of the heat services.", DeprecationWarning)
|
||||||
|
|
||||||
"""
|
|
||||||
Heat API Server. This implements an approximation of the Amazon
|
|
||||||
CloudWatch API and translates it into a native representation. It then
|
|
||||||
calls the heat-engine via AMQP RPC to implement them.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -13,17 +13,18 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
"""Heat Engine Server.
|
||||||
|
|
||||||
|
This does the work of actually implementing the API calls made by the user.
|
||||||
|
Normal communications is done via the heat API which then calls into this
|
||||||
|
engine.
|
||||||
|
"""
|
||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
warnings.warn("DEPRECATED: This script is deprecated. Please use the "
|
||||||
"system level heat binaries installed to start "
|
"system level heat binaries installed to start "
|
||||||
"any of the heat services.", DeprecationWarning)
|
"any of the heat services.", DeprecationWarning)
|
||||||
|
|
||||||
"""
|
|
||||||
Heat Engine Server. This does the work of actually implementing the API
|
|
||||||
calls made by the user. Normal communications is done via the heat API
|
|
||||||
which then calls into this engine.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user